/* === Moving Lead Capture — Fresh Green/Teal Theme === */
:root {
  --teal-900: #0d3d35;
  --teal-800: #115846;
  --teal-700: #167557;
  --teal-600: #1a9369;
  --teal-500: #22b07a;
  --teal-400: #3ec98f;
  --teal-300: #6fdfb2;
  --teal-100: #d4f7e6;
  --teal-50:  #eefcf5;
  --amber-500: #f59e0b;
  --amber-400: #fbbf24;
  --green-600: #16a34a;
  --bg: #ffffff;
  --bg-warm: #f4faf7;
  --bg-surface: #fafdfb;
  --fg: #0d3d35;
  --fg-muted: #3d6b5e;
  --border: #b8d9ce;
  --border-light: #e4f2eb;
  --accent: var(--teal-600);
  --accent-light: var(--teal-500);
  --accent-dim: rgba(26, 147, 105, 0.1);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --shadow-soft: 0 4px 24px rgba(13, 61, 53, 0.08);
  --shadow-card: 0 2px 16px rgba(13, 61, 53, 0.06);
  --radius: 16px;
  --radius-sm: 10px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ── TYPOGRAPHY ── */
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.8vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 12px;
}

.section-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--fg-muted);
  max-width: 520px;
  margin-bottom: 0;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--teal-700);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 18px 36px;
  border-radius: 10px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  box-shadow: 0 4px 20px rgba(22, 117, 87, 0.3);
  letter-spacing: 0.01em;
  width: 100%;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(22, 117, 87, 0.4);
  background: var(--teal-800);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--accent);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.18s ease;
}
.btn-ghost:hover { background: var(--accent-dim); }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--teal-900) 0%, var(--teal-700) 100%);
  color: white;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(62, 201, 143, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: white;
  margin-bottom: 20px;
}

.hero-content h1 span {
  color: var(--amber-400);
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 440px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stat-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
  color: white;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

/* Hero form */
.hero-form-wrap {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.hero-form-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--fg);
  margin-bottom: 6px;
}

.hero-form-sub {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-bottom: 28px;
}

/* ── FORMS ── */
.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 6px;
}

.form-input,
.form-select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--fg);
  background: var(--bg);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
  outline: none;
  -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}

.form-input::placeholder { color: #7dbfaa; }

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%233d6b5e' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-error {
  color: #dc2626;
  font-size: 0.85rem;
  margin-top: 10px;
  display: none;
}
.form-error.show { display: block; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--teal-50);
  border-bottom: 1px solid var(--border-light);
  padding: 20px 48px;
}

.trust-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--fg-muted);
  font-weight: 500;
}

.trust-icon {
  width: 36px;
  height: 36px;
  background: var(--accent-dim);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ── WHY US ── */
.why-us {
  padding: 100px 48px;
  background: var(--bg);
}

.why-us-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
  text-align: left;
}

.why-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.why-icon {
  width: 56px;
  height: 56px;
  background: var(--accent-dim);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.6rem;
}

.why-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--fg);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.92rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ── PROBLEMS (CHECKLIST) ── */
.problems {
  padding: 100px 48px;
  background: var(--bg-warm);
  border-top: 1px solid var(--border-light);
}

.problems-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.problems-inner .section-sub {
  margin: 0 auto 56px;
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.problem-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 32px 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: var(--accent);
}

.problem-icon {
  width: 52px;
  height: 52px;
  background: var(--accent-dim);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.problem-card h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--fg);
  text-align: center;
}

/* ── HOW IT WORKS ── */
.how-it-works {
  padding: 100px 48px;
  background: var(--bg);
}

.how-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
  position: relative;
}

/* connecting line */
.how-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.66% + 30px);
  right: calc(16.66% + 30px);
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 72px;
  height: 72px;
  background: var(--teal-700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
  color: white;
  flex-shrink: 0;
}

.step h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--fg);
  margin-bottom: 6px;
}

.step p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
  max-width: 220px;
}

/* ── FAQ ── */
.faq {
  padding: 100px 48px;
  background: var(--bg-warm);
  border-top: 1px solid var(--border-light);
}

.faq-inner {
  max-width: 800px;
  margin: 0 auto;
}

.faq-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border-light);
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--fg);
  text-align: left;
  transition: color 0.15s ease;
}
.faq-question:hover { color: var(--accent); }

.faq-toggle {
  width: 30px;
  height: 30px;
  background: var(--accent-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
  background: var(--accent);
  color: white;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 160px;
  padding-bottom: 20px;
}

.faq-answer p {
  font-size: 0.93rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ── FOOTER CTA ── */
.footer-cta {
  padding: 100px 48px;
  background: linear-gradient(135deg, var(--teal-900) 0%, var(--teal-700) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.footer-cta::before {
  content: '';
  position: absolute;
  bottom: -120px;
  left: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(62, 201, 143, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.footer-cta-inner {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.footer-cta h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: white;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.footer-cta p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 48px;
  line-height: 1.7;
}

.footer-cta .btn-primary {
  background: var(--amber-400);
  color: var(--teal-900);
  box-shadow: 0 4px 24px rgba(245, 158, 11, 0.3);
  width: auto;
  padding: 18px 48px;
}
.footer-cta .btn-primary:hover {
  background: var(--amber-400);
  transform: translateY(-2px);
}

.footer-form-wrap {
  background: white;
  border-radius: 20px;
  padding: 36px;
  margin-top: 48px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.footer-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.site-footer {
  padding: 28px 48px;
  background: var(--teal-900);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: white;
}

.footer-tagline {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* Thank you state */
.thank-you {
  text-align: center;
  padding: 48px 32px;
  display: none;
}
.thank-you.show { display: block; }
.thank-you-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}
.thank-you h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--fg);
  margin-bottom: 12px;
}
.thank-you p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .problems-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-form-wrap { max-width: 480px; margin: 0 auto; }
  .how-steps { grid-template-columns: 1fr; gap: 40px; }
  .how-steps::before { display: none; }
  .footer-form-row { grid-template-columns: 1fr; }
  .why-us-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero-inner { padding: 60px 24px; }
  .trust-bar { padding: 16px 24px; }
  .trust-bar-inner { gap: 20px; }
  .why-us, .problems, .how-it-works, .faq, .footer-cta { padding: 72px 24px; }
  .problems-grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer, .footer-inner { padding: 20px 24px; flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-inner { padding: 48px 16px; }
  .hero-form-wrap { padding: 28px 20px; }
  .trust-bar { padding: 14px 16px; }
  .trust-bar-inner { gap: 16px; }
  .why-us, .problems, .how-it-works, .faq, .footer-cta { padding: 56px 16px; }
  .problems-grid { grid-template-columns: 1fr; }
  .btn-primary { padding: 16px 28px; font-size: 0.95rem; }
}