:root {
  --primary: #f97316;
  /* orange for energy/urgency */
  --primary-dark: #ea580c;
  --text: #111827;
  --text-light: #4b5563;
  --bg: #f9fafb;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.container img.center {
  display: block !important; /* override any sneaky inline or parent styles */
  margin: 0 auto 2rem auto; /* centers horizontally + bottom space */
  max-width: 80%; /* or 100%, or fixed px like 400px */
  height: auto;
}

header {
  background: linear-gradient(135deg, #1e293b 0%, #111827 100%);
  color: white;
  padding: 1.5rem 0;
  text-align: center;
  border-bottom: 2px solid var(--primary);
}

.logo-icon {
  width: 120px;
  height: 120px;
  border-radius: 24px;
  overflow: hidden;
  margin: 0 auto 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.tagline {
  font-size: 1.4rem;
  color: #cbd5e1;
  margin-bottom: 1rem;
  font-weight: 500;
}

.hero-tag {
  font-size: 1.25rem;
  color: var(--primary);
  font-weight: 600;
  margin: 1.5rem 0;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin: 2rem 0 3rem;
}

.btn-center {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.btn-primary,
.btn-secondary {
  padding: 0.9rem 1.8rem;
  font-size: 1.1rem;
  font-weight: 600;
  width: 450px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none; /* removes default button border */
}

.btn-primary {
  background: #f97316;          /* orange */
  color: white;
}

.btn-primary:hover {
  background: #ea580c;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
}

.btn-secondary {
  background: transparent;
  color: #f97316;
  border: 2px solid #f97316;
}

.btn-secondary:hover {
  background: rgba(249, 115, 22, 0.1);
  transform: translateY(-2px);
}

/* Mobile stack */
@media (max-width: 640px) {
  .hero-buttons {
    flex-direction: column;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
  }
}

/* Centered container for How It Works */
#how-it-works {
  background: #111827;           /* your dark theme */
  color: white;
  padding: 5rem 1rem;
}

.how-container {
  max-width: 900px;              /* keeps content readable – adjust if you want wider/narrower */
  margin: 0 auto;                /* centers the whole block */
  text-align: center;
}

.how-container h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
}

/* Steps Grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.step-card {
  background: #1f2937;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease;
}

.step-card:hover {
  transform: translateY(-8px);
}

.step-icon {
  font-size: 4rem;
  margin-bottom: 1.2rem;
  color: #f97316;                /* orange pop */
}

.step-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}

.step-card p {
  font-size: 1.1rem;
  color: #cbd5e1;
  line-height: 1.6;
}

/* Closing punchline */
.closing-statement {
  font-size: 1.5rem;
  font-weight: 600;
  color: #f97316;
  line-height: 1.4;
  margin-top: 3rem;
}

/* Mobile adjustments */
@media (max-width: 640px) {
  .how-container {
    max-width: 100%;
    padding: 0 1rem;
  }

  #how-it-works {
    padding: 4rem 0 3rem;
  }

  .how-container h2 {
    font-size: 2rem;
  }
}
main {
  padding: 4rem 0 6rem;
}

.form-section {
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 2.5rem;
  max-width: 600px;
  margin: 0 auto;
}

.form-section h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

input,
sample.button {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1.2rem;
  border-radius: 8px;
  font-size: 1rem;
  border: 1px solid #d1d5db;
}

input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.2);
}

button {
  background: var(--primary);
  color: white;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

button:hover {
  background: var(--primary-dark);
}

input,
button {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1.2rem;
  border-radius: 8px;
  font-size: 1rem;
  border: 1px solid #d1d5db;
}

input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.2);
}

button {
  background: var(--primary);
  color: white;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

button:hover {
  background: var(--primary-dark);
}

footer {
  text-align: center;
  padding: 3rem 0;
  color: var(--text-light);
  font-size: 0.95rem;
}

@media (max-width: 640px) {
  h1 {
    font-size: 2.2rem;
  }

  .tagline {
    font-size: 1.2rem;
  }

  .form-section {
    padding: 2rem 1.5rem;
  }
}

.centered-image {
  max-width: 100%;
  margin: 2rem auto;
  border-radius: 8px; /* optional nice touch */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* subtle depth */
}
