/* ── RESET & VARIABLES ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --green:       #1a3a2a;
  --green-dark:  #0f2119;
  --green-light: #243d2e;
  --lime:        #c8f04a;
  --lime-dim:    rgba(200,240,74,0.12);
  --cream:       #f5f2eb;
  --sage:        #6b7b6e;
  --white:       #ffffff;
  --t1:          #c8f04a;
  --t2:          #7dd8a8;
  --t3:          #b0cfc0;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--green);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── TYPOGRAPHY ────────────────────────────────────────── */
h1,h2,h3,h4 { font-family: 'Syne', sans-serif; line-height: 1.15; }
h1 { font-size: clamp(2.2rem,7vw,4.8rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem,4vw,2.6rem); font-weight: 700; letter-spacing: -0.02em; }
h3 { font-size: clamp(1rem,2.5vw,1.3rem); font-weight: 700; }
p { line-height: 1.65; }
.accent { color: var(--lime); }
.ul-lime { text-decoration: underline; text-decoration-color: var(--lime); text-underline-offset: 6px; }

/* ── NAV ───────────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--green);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; height: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-logo { font-family:'Syne',sans-serif; font-weight:800; font-size:1.25rem; color:var(--cream); text-decoration:none; letter-spacing:-0.02em; }
.nav-logo span { color:var(--lime); }
.nav-links { display:none; gap:24px; align-items:center; }
.nav-links a { color:rgba(245,242,235,0.72); text-decoration:none; font-size:0.88rem; font-weight:500; transition:color 0.2s; }
.nav-links a:hover { color:var(--cream); }
.nav-cta { background:var(--lime)!important; color:var(--green)!important; padding:8px 18px; border-radius:6px; font-weight:700!important; }
.hamburger { background:none; border:none; cursor:pointer; display:flex; flex-direction:column; gap:5px; padding:4px; }
.hamburger span { display:block; width:22px; height:2px; background:var(--cream); border-radius:2px; }
.mobile-menu { display:none; position:fixed; top:60px; left:0; right:0; background:var(--green); padding:20px 24px 28px; z-index:99; border-bottom:2px solid var(--lime); flex-direction:column; gap:4px; }
.mobile-menu.open { display:flex; }
.mobile-menu a { color:rgba(245,242,235,0.78); text-decoration:none; font-size:1.05rem; font-weight:500; padding:10px 0; border-bottom:1px solid rgba(255,255,255,0.06); }
.mob-cta { background:var(--lime)!important; color:var(--green)!important; text-align:center; border-radius:8px; padding:14px!important; font-weight:700!important; margin-top:8px; border-bottom:none!important; }
@media(min-width:768px){ .nav-links{display:flex;} .hamburger{display:none;} nav{padding:0 40px;} }

/* ── BUTTONS ───────────────────────────────────────────── */
.btn-lime { display:inline-block; background:var(--lime); color:var(--green); padding:15px 30px; border-radius:8px; font-family:'Syne',sans-serif; font-weight:700; font-size:0.95rem; text-decoration:none; text-align:center; transition:transform 0.15s,opacity 0.15s; border:none; cursor:pointer; }
.btn-lime:hover { transform:translateY(-2px); opacity:0.9; }
.btn-dark { display:inline-block; background:var(--green); color:var(--cream); padding:15px 30px; border-radius:8px; font-family:'Syne',sans-serif; font-weight:700; font-size:0.95rem; text-decoration:none; text-align:center; transition:transform 0.15s,opacity 0.15s; border:none; cursor:pointer; }
.btn-dark:hover { transform:translateY(-2px); opacity:0.9; }
.btn-outline { display:inline-block; background:transparent; color:var(--cream); padding:14px 30px; border-radius:8px; border:1px solid rgba(245,242,235,0.3); font-family:'Syne',sans-serif; font-weight:600; font-size:0.95rem; text-decoration:none; text-align:center; transition:border-color 0.2s,background 0.2s; }
.btn-outline:hover { border-color:var(--lime); background:var(--lime-dim); }
.btn-outline-green { display:inline-block; background:transparent; color:var(--green); padding:14px 30px; border-radius:8px; border:2px solid var(--green); font-family:'Syne',sans-serif; font-weight:700; font-size:0.95rem; text-decoration:none; text-align:center; transition:background 0.2s,color 0.2s; }
.btn-outline-green:hover { background:var(--green); color:var(--cream); }

/* ── SECTION LABELS ────────────────────────────────────── */
.section-label { font-size:0.72rem; font-weight:700; letter-spacing:0.12em; text-transform:uppercase; color:var(--sage); margin-bottom:14px; display:block; }
.section-label.light { color:rgba(200,240,74,0.55); }

/* ── HERO (dark) ───────────────────────────────────────── */
.hero {
  position:relative; background:var(--green); overflow:hidden;
  padding: 72px 24px 80px;
}
.hero-glow {
  position:absolute; border-radius:50%;
  background:radial-gradient(circle,rgba(200,240,74,0.07) 0%,transparent 70%);
  pointer-events:none;
}
.hero-glow.tl { width:500px; height:500px; top:-180px; right:-120px; }
.hero-glow.br { width:350px; height:350px; bottom:-130px; left:-80px; }
.hero-inner { position:relative; max-width:860px; margin:0 auto; z-index:1; }
.hero-eyebrow {
  display:inline-flex; align-items:center; gap:8px;
  background:var(--lime-dim); border:1px solid rgba(200,240,74,0.25);
  color:var(--lime); padding:6px 14px; border-radius:100px;
  font-size:0.78rem; font-weight:600; letter-spacing:0.05em; text-transform:uppercase;
  margin-bottom:24px;
}
.hero-eyebrow::before { content:'●'; font-size:0.45rem; }
.hero h1 { color:var(--cream); margin-bottom:24px; }
.hero-sub { font-size:clamp(0.95rem,2.5vw,1.2rem); color:rgba(245,242,235,0.68); max-width:520px; margin-bottom:36px; font-weight:300; }
.hero-btns { display:flex; flex-direction:column; gap:12px; }
@media(min-width:480px){ .hero-btns{flex-direction:row;} .hero{padding:88px 32px 96px;} }

/* ── HERO (light variant) ──────────────────────────────── */
.hero-light { background:var(--cream); border-bottom:2px solid rgba(26,58,42,0.08); }
.hero-light h1 { color:var(--green); }
.hero-light .hero-sub { color:var(--sage); }
.hero-light .hero-eyebrow { background:rgba(26,58,42,0.07); border-color:rgba(26,58,42,0.15); color:var(--green); }
.hero-light .hero-eyebrow::before { content:'●'; color:var(--lime); }

/* ── STAT STRIP ────────────────────────────────────────── */
.stat-strip {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:1px; margin-top:56px;
  border:1px solid rgba(255,255,255,0.08); border-radius:12px; overflow:hidden;
}
.stat-block { background:rgba(255,255,255,0.04); padding:18px 14px; text-align:center; }
.stat-num { font-family:'Syne',sans-serif; font-size:clamp(1.4rem,4vw,2rem); font-weight:800; color:var(--lime); line-height:1; }
.stat-lbl { font-size:0.72rem; color:rgba(245,242,235,0.45); margin-top:4px; font-weight:300; }

/* ── SECTION WRAPPERS ──────────────────────────────────── */
.section { padding:72px 24px; }
.section-white { background:var(--white); }
.section-cream { background:var(--cream); }
.section-green { background:var(--green); position:relative; overflow:hidden; }
.section-lime { background:var(--lime); }
.inner { max-width:900px; margin:0 auto; }
.inner-sm { max-width:680px; margin:0 auto; }

/* ── STRIPE BG ─────────────────────────────────────────── */
.stripe-bg::before {
  content:''; position:absolute; inset:0; pointer-events:none;
  background:repeating-linear-gradient(-45deg,transparent,transparent 40px,rgba(200,240,74,0.025) 40px,rgba(200,240,74,0.025) 41px);
}

/* ── PAIN CARDS ────────────────────────────────────────── */
.pain-grid { display:grid; grid-template-columns:1fr; gap:14px; }
.pain-card { background:var(--cream); border-radius:12px; padding:22px; border-left:4px solid var(--lime); }
.pain-icon { font-size:1.5rem; margin-bottom:10px; }
.pain-card h3 { font-size:1rem; margin-bottom:6px; }
.pain-card p { font-size:0.88rem; color:var(--sage); line-height:1.6; }
@media(min-width:600px){ .pain-grid{grid-template-columns:1fr 1fr;} }
@media(min-width:900px){ .pain-grid{grid-template-columns:repeat(3,1fr);} }

/* ── AUTOMATION CARDS ──────────────────────────────────── */
.auto-grid { display:grid; grid-template-columns:1fr; gap:14px; }
.auto-card { background:var(--white); border-radius:12px; padding:22px; border:1px solid rgba(26,58,42,0.08); }
.auto-card h3 { font-size:1rem; margin-bottom:8px; display:flex; align-items:center; gap:8px; }
.auto-card h3::before { content:'→'; color:var(--lime); font-weight:900; }
.auto-card p { font-size:0.88rem; color:var(--sage); line-height:1.6; }
@media(min-width:600px){ .auto-grid{grid-template-columns:1fr 1fr;} }
@media(min-width:900px){ .auto-grid{grid-template-columns:repeat(3,1fr);} }

/* ── INTEGRATION ROWS ──────────────────────────────────── */
.intg-table { background:var(--white); border-radius:12px; border:1px solid rgba(26,58,42,0.08); overflow:hidden; }
.intg-header { padding:10px 16px; background:var(--cream); border-bottom:1px solid rgba(26,58,42,0.08); font-size:0.7rem; font-weight:700; color:var(--sage); text-transform:uppercase; letter-spacing:0.1em; }
.intg-row { padding:16px; border-top:1px solid rgba(26,58,42,0.05); }
.intg-row:first-of-type { border-top:none; }
.intg-top { display:flex; justify-content:space-between; align-items:flex-start; gap:10px; margin-bottom:6px; }
.intg-name { font-weight:700; font-size:0.95rem; }
.intg-type { background:rgba(200,240,74,0.25); color:var(--green); padding:3px 10px; border-radius:4px; font-size:0.7rem; font-weight:700; flex-shrink:0; }
.intg-notes { font-size:0.85rem; color:var(--sage); line-height:1.55; }

/* ── PROMISE CARDS ─────────────────────────────────────── */
.promise-grid { display:grid; grid-template-columns:1fr; gap:16px; }
.promise-card { background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.08); border-radius:12px; padding:24px 22px; }
.promise-num { font-family:'Syne',sans-serif; font-size:2.2rem; font-weight:800; color:var(--lime); opacity:0.35; line-height:1; margin-bottom:10px; }
.promise-card h3 { color:var(--cream); margin-bottom:8px; font-size:1.05rem; }
.promise-card p { color:rgba(245,242,235,0.58); font-size:0.88rem; line-height:1.65; font-weight:300; }
@media(min-width:600px){ .promise-grid{grid-template-columns:1fr 1fr;} }
@media(min-width:900px){ .promise-grid{grid-template-columns:repeat(4,1fr);} }

/* ── STEPS ─────────────────────────────────────────────── */
.steps { display:grid; grid-template-columns:1fr; gap:28px; }
.step { display:flex; gap:18px; align-items:flex-start; }
.step-num { font-family:'Syne',sans-serif; font-size:2.8rem; font-weight:800; color:var(--lime); line-height:1; flex-shrink:0; width:48px; }
.step h3 { margin-bottom:6px; }
.step p { color:var(--sage); font-size:0.9rem; font-weight:300; line-height:1.65; }
.step-tag { display:inline-block; background:var(--cream); border:1px solid rgba(26,58,42,0.12); border-radius:4px; padding:3px 10px; font-size:0.72rem; color:var(--sage); margin-top:8px; font-family:monospace; }
@media(min-width:600px){ .steps{grid-template-columns:1fr 1fr;} }
@media(min-width:900px){ .steps{grid-template-columns:repeat(4,1fr);} }

/* ── TOOLS STRIP ───────────────────────────────────────── */
.tools-row { display:flex; flex-wrap:wrap; gap:10px; justify-content:center; }
.tool-chip { background:var(--white); border:1px solid rgba(26,58,42,0.1); border-radius:8px; padding:8px 16px; font-size:0.82rem; font-weight:500; color:var(--green); display:flex; align-items:center; gap:6px; }
.tool-dot { width:6px; height:6px; border-radius:50%; background:var(--lime); flex-shrink:0; }

/* ── FAQ ───────────────────────────────────────────────── */
.faq-item { border-bottom:1px solid rgba(26,58,42,0.1); }
.faq-q { width:100%; background:none; border:none; padding:18px 0; text-align:left; font-family:'Syne',sans-serif; font-weight:700; font-size:1rem; color:var(--green); cursor:pointer; display:flex; justify-content:space-between; align-items:center; gap:16px; }
.faq-q::after { content:'+'; font-size:1.4rem; color:var(--lime); flex-shrink:0; transition:transform 0.2s; }
.faq-item.open .faq-q::after { transform:rotate(45deg); }
.faq-a { max-height:0; overflow:hidden; transition:max-height 0.3s ease; }
.faq-a-inner { padding-bottom:18px; color:var(--sage); font-size:0.92rem; line-height:1.7; font-weight:300; }

/* ── CTA SECTIONS ──────────────────────────────────────── */
.cta-green-inner { text-align:center; position:relative; z-index:1; }
.cta-green-inner h2 { color:var(--cream); margin-bottom:14px; }
.cta-green-inner p { color:rgba(245,242,235,0.62); font-size:1rem; margin-bottom:14px; font-weight:300; }
.cta-note { font-size:0.8rem; color:rgba(245,242,235,0.32); margin-bottom:32px; display:block; }
.cta-btns { display:flex; flex-direction:column; gap:12px; align-items:center; }
.reassurance { display:flex; flex-direction:column; gap:8px; align-items:center; margin-top:32px; }
.reassurance span { font-size:0.82rem; color:rgba(245,242,235,0.42); display:flex; align-items:center; gap:6px; }
.reassurance span::before { content:'✓'; color:var(--lime); font-weight:700; }
@media(min-width:500px){ .cta-btns{flex-direction:row;justify-content:center;} .reassurance{flex-direction:row;gap:24px;} }

.cta-lime-inner { text-align:center; }
.cta-lime-inner h2 { color:var(--green); margin-bottom:14px; }
.cta-lime-inner p { color:rgba(26,58,42,0.68); font-size:1rem; margin-bottom:32px; font-weight:300; }

/* ── BADGE / TAG / PILL ────────────────────────────────── */
.badge { display:inline-block; padding:4px 12px; border-radius:4px; font-size:0.7rem; font-weight:700; letter-spacing:0.08em; text-transform:uppercase; }
.badge-t1 { background:var(--t1); color:var(--green); }
.badge-t2 { background:var(--t2); color:var(--green); }
.badge-t3 { background:var(--t3); color:var(--green); }
.tag { display:inline-block; padding:5px 12px; background:var(--green); color:var(--cream); border-radius:20px; font-size:0.78rem; margin:3px 3px 3px 0; }
.highlight-box { background:rgba(200,240,74,0.15); border:1px solid rgba(200,240,74,0.5); border-radius:10px; padding:16px 20px; }

/* ── QUIZ ──────────────────────────────────────────────── */
.quiz-arena { background:var(--green); border-radius:16px; padding:32px 24px; color:var(--cream); }
.progress-bar { display:flex; gap:5px; margin-bottom:20px; }
.prog-seg { flex:1; height:4px; border-radius:2px; background:rgba(255,255,255,0.15); transition:background 0.3s; }
.prog-seg.done { background:var(--lime); }
.q-label { font-size:0.78rem; color:rgba(245,242,235,0.5); margin-bottom:8px; }
.q-text { font-family:'Syne',sans-serif; font-size:clamp(1.1rem,3vw,1.5rem); font-weight:700; margin-bottom:24px; line-height:1.3; }
.q-opt { display:block; width:100%; padding:16px 18px; margin-bottom:10px; background:rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.12); border-radius:10px; color:var(--cream); text-align:left; cursor:pointer; font-size:0.95rem; font-family:'DM Sans',sans-serif; line-height:1.4; transition:background 0.15s,border-color 0.15s; }
.q-opt:hover { background:rgba(255,255,255,0.14); border-color:rgba(200,240,74,0.4); }
.result-grade-box { width:72px; height:72px; border-radius:14px; display:flex; align-items:center; justify-content:center; font-family:'Syne',sans-serif; font-size:1.6rem; font-weight:900; margin:0 auto 16px; }
.wins-box { background:rgba(255,255,255,0.08); border-radius:10px; padding:16px; margin:0 auto 24px; max-width:400px; text-align:left; }
.wins-title { font-size:0.7rem; color:var(--lime); font-weight:700; letter-spacing:0.1em; text-transform:uppercase; margin-bottom:10px; }
.win-row { font-size:0.88rem; margin-bottom:8px; display:flex; gap:8px; }
.win-row::before { content:'→'; color:var(--lime); flex-shrink:0; }

/* ── FORM ──────────────────────────────────────────────── */
.form-group { margin-bottom:20px; }
.form-group label { display:block; font-weight:600; font-size:0.88rem; margin-bottom:6px; color:var(--green); }
.form-group input, .form-group select, .form-group textarea {
  width:100%; padding:12px 14px; border:1.5px solid rgba(26,58,42,0.2); border-radius:8px;
  font-family:'DM Sans',sans-serif; font-size:0.95rem; color:var(--green);
  background:var(--white); transition:border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline:none; border-color:var(--lime);
  box-shadow:0 0 0 3px rgba(200,240,74,0.15);
}
.form-group textarea { resize:vertical; min-height:90px; }
.form-group select { appearance:none; 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='%236b7b6e' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 14px center; padding-right:36px; }
.form-hint { font-size:0.78rem; color:var(--sage); margin-top:5px; font-style:italic; }
.form-section-title { font-family:'Syne',sans-serif; font-weight:700; font-size:0.8rem; letter-spacing:0.08em; text-transform:uppercase; color:var(--sage); margin:28px 0 16px; padding-bottom:8px; border-bottom:1px solid rgba(26,58,42,0.1); }
.checkboxes { display:flex; flex-wrap:wrap; gap:8px; }
.checkbox-option { display:flex; align-items:center; gap:6px; }
.checkbox-option input[type=checkbox] { accent-color:var(--lime); width:16px; height:16px; cursor:pointer; }
.checkbox-option label { font-size:0.88rem; cursor:pointer; }
.submit-btn { width:100%; padding:16px; background:var(--lime); color:var(--green); border:none; border-radius:8px; font-family:'Syne',sans-serif; font-weight:700; font-size:1rem; cursor:pointer; transition:transform 0.15s,opacity 0.15s; }
.submit-btn:hover { transform:translateY(-2px); opacity:0.9; }

/* ── GRID UTILITIES ────────────────────────────────────── */
.two-col { display:grid; grid-template-columns:1fr; gap:20px; }
@media(min-width:640px){ .two-col{grid-template-columns:1fr 1fr;} }

/* ── FOOTER ────────────────────────────────────────────── */
footer { background:var(--green-dark); padding:40px 24px; color:rgba(245,242,235,0.4); }
.footer-wrap { max-width:900px; margin:0 auto; }
.footer-top { display:flex; flex-direction:column; gap:20px; padding-bottom:24px; border-bottom:1px solid rgba(255,255,255,0.06); }
.footer-logo { font-family:'Syne',sans-serif; font-weight:800; font-size:1.15rem; color:var(--cream); }
.footer-logo span { color:var(--lime); }
.footer-tagline { font-size:0.82rem; color:rgba(245,242,235,0.38); font-style:italic; margin-top:3px; }
.footer-links { display:flex; flex-wrap:wrap; gap:14px; align-items:flex-start; }
.footer-links a { color:rgba(245,242,235,0.4); text-decoration:none; font-size:0.82rem; transition:color 0.2s; }
.footer-links a:hover { color:var(--cream); }
.footer-bottom { display:flex; flex-direction:column; gap:6px; margin-top:20px; font-size:0.75rem; }
@media(min-width:640px){
  .footer-top{flex-direction:row;justify-content:space-between;align-items:flex-start;}
  .footer-bottom{flex-direction:row;justify-content:space-between;}
}

/* ── ANIMATIONS ────────────────────────────────────────── */
@keyframes fadeUp { from{opacity:0;transform:translateY(18px)} to{opacity:1;transform:translateY(0)} }
.hero-inner > * { animation: fadeUp 0.55s ease both; }
.hero-inner > *:nth-child(1){ animation-delay:0s; }
.hero-inner > *:nth-child(2){ animation-delay:0.08s; }
.hero-inner > *:nth-child(3){ animation-delay:0.16s; }
.hero-inner > *:nth-child(4){ animation-delay:0.24s; }
.hero-inner > *:nth-child(5){ animation-delay:0.32s; }
.reveal { opacity:0; transform:translateY(22px); transition:opacity 0.55s ease,transform 0.55s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }
