/* ── Reset & Tokens ─────────────────────────── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}

:root{
  --dark:       #1A1A1A;
  --dark-2:     #242424;
  --dark-3:     #2E2E2E;
  --amber:      #E9A020;
  --amber-hover:#D4901A;
  --amber-pale: #FFF6E6;
  --white:      #FFFFFF;
  --off-white:  #F8F7F5;
  --text:       #1A1A1A;
  --muted:      #666666;
  --border:     #E5E5E5;
  --radius:     8px;
  --radius-lg:  14px;
  --shadow:     0 1px 3px rgba(0,0,0,.07),0 4px 16px rgba(0,0,0,.07);
  --font:       'Poppins',system-ui,-apple-system,sans-serif;
  --max:        1200px;
}

html{font-size:16px;scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{font-family:var(--font);color:var(--text);background:var(--white);line-height:1.6;-webkit-font-smoothing:antialiased}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
ul{list-style:none}
:focus-visible{outline:2px solid var(--amber);outline-offset:3px;border-radius:2px}

h1,h2,h3,h4{line-height:1.15;font-weight:700;letter-spacing:-0.01em}
h1{font-size:clamp(2rem,5.5vw,3.4rem);font-weight:800;line-height:1.2;letter-spacing:-0.02em}
h2{font-size:clamp(1.5rem,3.5vw,2.4rem)}
h3{font-size:clamp(1rem,2vw,1.15rem)}
h4{font-size:0.95rem;font-weight:600}
p{max-width:64ch}

.container{max-width:var(--max);margin:0 auto;padding:0 1.5rem}

/* ── Buttons ─────────────────────────────────── */
.btn-amber{
  display:inline-block;background:var(--amber);color:var(--white);
  font-family:var(--font);font-size:1rem;font-weight:700;
  padding:0.875rem 2.25rem;border-radius:var(--radius);
  text-decoration:none;white-space:nowrap;
  transition:background 0.2s,transform 0.15s;
}
.btn-amber:hover{background:var(--amber-hover);transform:translateY(-1px)}

.btn-dark{
  display:inline-block;background:var(--dark);color:var(--white);
  font-family:var(--font);font-size:0.95rem;font-weight:700;
  padding:0.8rem 2rem;border-radius:var(--radius);
  text-decoration:none;white-space:nowrap;transition:background 0.2s;
}
.btn-dark:hover{background:#333}

.btn-white{
  display:inline-block;background:var(--white);color:var(--dark);
  font-family:var(--font);font-size:1rem;font-weight:700;
  padding:0.875rem 2.25rem;border-radius:var(--radius);
  text-decoration:none;white-space:nowrap;transition:transform 0.15s;
}
.btn-white:hover{transform:translateY(-1px)}

/* ── Header ──────────────────────────────────── */
.site-header{
  background:var(--white);border-bottom:1px solid var(--border);
  position:sticky;top:0;z-index:200;box-shadow:0 1px 8px rgba(0,0,0,.06);
}
.header-inner{
  display:flex;align-items:center;justify-content:space-between;
  padding:0.85rem 1.5rem;max-width:var(--max);margin:0 auto;gap:1rem;
}
.logo{display:flex;align-items:center;gap:0.6rem;text-decoration:none;flex-shrink:0}
.logo-mark{width:40px;height:40px;flex-shrink:0}
.logo-name{font-size:0.88rem;font-weight:700;color:var(--dark);line-height:1.15}
.logo-name span{display:block;font-size:0.68rem;font-weight:500;color:var(--muted);letter-spacing:0.02em}
.logo-text{font-size:1.05rem;font-weight:800;color:var(--dark);letter-spacing:-0.01em}
.logo-text span{color:var(--amber)}

.header-right{display:flex;align-items:center;gap:1rem}
.header-nav{display:none;gap:1.5rem}
.header-nav a{font-size:0.875rem;font-weight:500;color:var(--muted);transition:color 0.2s}
.header-nav a:hover{color:var(--dark)}

.btn-header{
  display:inline-block;background:var(--dark);color:var(--white);
  font-family:var(--font);font-size:0.875rem;font-weight:700;
  padding:0.6rem 1.5rem;border-radius:var(--radius);
  text-decoration:none;white-space:nowrap;flex-shrink:0;
  transition:background 0.2s;
}
.btn-header:hover{background:var(--dark-3)}

.hamburger{
  background:none;border:none;cursor:pointer;
  padding:0.4rem;display:flex;flex-direction:column;gap:5px;flex-shrink:0;
}
.hamburger span{display:block;width:22px;height:2px;background:var(--dark);border-radius:2px;transition:transform 0.2s,opacity 0.2s}
.hamburger.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.hamburger.open span:nth-child(2){opacity:0}
.hamburger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

.nav-links{display:none;flex-direction:column;background:var(--white);border-top:1px solid var(--border);padding:0.5rem 0}
.nav-links.open{display:flex}
.nav-links li a{display:block;padding:0.75rem 1.5rem;font-size:0.9rem;font-weight:500;color:var(--dark)}

/* ── Hero ────────────────────────────────────── */
.hero{
  position:relative;
  min-height:calc(100vh - 68px);
  background-color:var(--dark-2);
  /* Place your hero photo: background-image:url('assets/hero-bg.jpg'); */
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}
.hero::before{
  content:'';position:absolute;inset:0;
  background:rgba(8,8,8,0.60);z-index:1;
}
.hero-inner{
  position:relative;z-index:2;
  width:100%;max-width:820px;margin:0 auto;
  padding:clamp(5rem,10vh,9rem) 2rem clamp(4rem,8vh,7rem);
  text-align:center;
  display:flex;flex-direction:column;align-items:center;
}

.hero-stat{
  font-size:0.88rem;font-style:italic;
  color:rgba(255,255,255,0.72);
  margin-bottom:1.25rem;max-width:540px;
}
.hero-inner h1{color:var(--white);margin-bottom:0.75rem}
.hero-sub{font-size:1rem;color:rgba(255,255,255,0.78);margin-bottom:clamp(2.5rem,4vh,3.5rem)}

/* ── Hero Form ───────────────────────────────── */
.hero-form{
  width:100%;max-width:600px;
  background:var(--white);border-radius:var(--radius-lg);
  padding:2rem 2rem 1.5rem;
  box-shadow:0 24px 64px rgba(0,0,0,0.5);
}
.hero-form-title{font-size:1rem;font-weight:700;color:var(--dark);margin-bottom:0.2rem}
.hero-form-sub{font-size:0.8rem;color:var(--muted);margin-bottom:1rem}
.quiz-container{min-height:280px}
.form-privacy{
  display:flex;align-items:flex-start;gap:0.35rem;
  font-size:0.72rem;color:var(--muted);margin-top:0.875rem;line-height:1.4;
}
.form-privacy svg{flex-shrink:0;color:var(--amber);margin-top:1px}

/* ── Trust Bar ───────────────────────────────── */
.trust-bar{background:var(--off-white);border-bottom:1px solid var(--border);padding:1.75rem 0}
.trust-items{display:grid;grid-template-columns:repeat(4,auto);justify-content:center;gap:0.75rem 2.5rem}
.trust-item{display:flex;align-items:center;gap:0.5rem;font-size:0.85rem;color:var(--text);white-space:nowrap}
.trust-item svg{color:var(--amber);flex-shrink:0}

/* ── Sections ────────────────────────────────── */
.section{padding:clamp(4rem,7vw,6rem) 0}
.section--dark{background:var(--dark-2);color:var(--white)}
.section--amber{background:var(--amber)}
.section--off{background:var(--off-white);padding:clamp(5.5rem,10vw,8rem) 0}

.eyebrow{
  display:block;font-size:0.7rem;font-weight:700;
  letter-spacing:0.1em;text-transform:uppercase;
  color:var(--amber);margin-bottom:0.6rem;
}
.section--amber .eyebrow{color:var(--dark-2)}
.section-header{margin-bottom:3rem}
.section-header--center{text-align:center}
.section-header--center p{margin:0 auto}
.section-desc{font-size:1rem;color:var(--muted);margin-top:0.75rem;line-height:1.75}
.section--dark .section-desc{color:rgba(255,255,255,0.58)}
.section-cta{margin-top:2rem}

/* ── Savings section (dark) ──────────────────── */
.savings-layout{
  display:grid;grid-template-columns:1fr 1fr;
  gap:5rem;align-items:center;
}
.savings-copy h2{color:var(--white);margin-bottom:1rem}
.section--dark h2{line-height:1.25}
.savings-copy p{color:rgba(255,255,255,0.62);font-size:0.95rem;line-height:1.8}
.savings-copy p strong{color:var(--white)}

.stats-grid{
  display:grid;grid-template-columns:1fr 1fr;gap:1.25rem;
}
.stat-card{
  background:var(--dark-3);border:1px solid rgba(255,255,255,0.07);
  border-radius:var(--radius-lg);padding:1.75rem 1.5rem;
}
.stat-card__num{
  font-size:2.25rem;font-weight:800;color:var(--amber);
  line-height:1;margin-bottom:0.4rem;font-family:var(--font);
}
.stat-card__label{font-size:0.8rem;font-weight:600;color:rgba(255,255,255,0.55);line-height:1.4}

/* ── How it works ────────────────────────────── */
.steps-grid{display:flex;flex-direction:column;gap:0;max-width:660px;margin:0 auto}
.step-card{
  background:transparent;border:none;box-shadow:none;border-radius:0;
  border-top:1px solid var(--border);
  padding:2.5rem 0 2.5rem 5rem;
  position:relative;
  opacity:0;transform:translateY(16px);
  transition:opacity 0.5s,transform 0.5s;
}
.step-card:last-child{border-bottom:1px solid var(--border)}
.step-card.visible{opacity:1;transform:none}
.step-number{
  position:absolute;left:0;top:2.5rem;
  font-size:2rem;font-weight:800;color:var(--amber);
  line-height:1;
}
.step-body h3{color:var(--dark);margin-bottom:0.5rem;font-size:1.05rem;font-weight:700}
.step-body p{color:var(--muted);font-size:0.9rem;line-height:1.75;max-width:55ch}

/* ── Amber CTA section ───────────────────────── */
.amber-inner{
  display:grid;grid-template-columns:1fr 1fr;
  gap:4rem;align-items:center;
}
.amber-copy h2{font-size:clamp(1.5rem,3.5vw,2.2rem);color:var(--dark);margin-bottom:0.75rem}
.amber-copy p{color:var(--dark-2);font-size:0.95rem;line-height:1.75;margin-bottom:0.75rem}
.amber-copy p strong{font-weight:700}

.img-block{
  background:var(--dark-3);border-radius:var(--radius-lg);
  overflow:hidden;aspect-ratio:4/3;
  display:flex;align-items:center;justify-content:center;
}
.img-block img{width:100%;height:100%;object-fit:cover}

/* ── FAQ ─────────────────────────────────────── */
.faq-list{display:flex;flex-direction:column;max-width:760px;margin:0 auto}
.faq-list details{
  border-bottom:1px solid var(--border);
  opacity:0;transform:translateY(10px);
  transition:opacity 0.4s,transform 0.4s;
}
.faq-list details.visible{opacity:1;transform:none}
.faq-list details:first-child{border-top:1px solid var(--border)}

.faq-list summary{
  display:flex;justify-content:space-between;align-items:center;
  padding:1.1rem 0;cursor:pointer;
  font-size:0.95rem;font-weight:600;color:var(--dark);
  list-style:none;gap:1rem;
}
.faq-list summary::-webkit-details-marker{display:none}
.faq-list summary::after{content:'+';font-size:1.25rem;font-weight:400;color:var(--amber);flex-shrink:0}
.faq-list details[open] summary::after{content:'−'}
.faq-body{font-size:0.9rem;color:var(--muted);line-height:1.75;padding-bottom:1.1rem}

/* ── Closing CTA ─────────────────────────────── */
.cta-close{text-align:center}
.cta-close h2{color:var(--white);margin-bottom:0.75rem}
.cta-close p{color:rgba(255,255,255,0.65);font-size:1rem;line-height:1.75;margin-bottom:2rem;max-width:52ch;margin-left:auto;margin-right:auto}

/* ── Footer ──────────────────────────────────── */
.site-footer{background:var(--dark);color:rgba(255,255,255,0.5);padding:0}
.footer-top{
  display:flex;align-items:flex-start;justify-content:space-between;
  flex-wrap:wrap;gap:1.5rem;
  padding:2.5rem 1.5rem 2rem;max-width:var(--max);margin:0 auto;
  border-bottom:1px solid rgba(255,255,255,0.08);
}
.footer-logo{font-size:1rem;font-weight:700;color:var(--white);flex-shrink:0}
.footer-logo span{color:var(--amber)}
.footer-nav{display:flex;flex-wrap:wrap;gap:0.6rem 1.5rem}
.footer-nav a{font-size:0.8rem;color:rgba(255,255,255,0.4);transition:color 0.2s}
.footer-nav a:hover{color:var(--white)}
.disclaimer{font-size:0.73rem;color:rgba(255,255,255,0.35);line-height:1.75;max-width:var(--max);margin:0 auto;padding:1.5rem 1.5rem 0}
.copyright{font-size:0.73rem;color:rgba(255,255,255,0.27);text-align:center;padding:1.25rem 1.5rem 2rem}

/* ── Mobile sticky CTA ───────────────────────── */
.mobile-cta{
  display:none;position:fixed;bottom:0;left:0;right:0;
  background:var(--white);border-top:1px solid var(--border);
  padding:0.875rem 1.25rem;z-index:150;box-shadow:0 -4px 20px rgba(0,0,0,.1);
}
.mobile-cta .btn-amber{display:block;width:100%;text-align:center;font-size:0.95rem;padding:0.875rem 1rem}

/* ── Legal / Contact ─────────────────────────── */
.legal-hero{background:var(--off-white);padding:3rem 1.5rem;border-bottom:1px solid var(--border)}
.legal-hero h1{font-size:clamp(1.75rem,4vw,2.5rem);color:var(--dark);margin-bottom:0.5rem}
.legal-hero .updated{font-size:0.85rem;color:var(--muted)}
.legal-body{max-width:720px;margin:4rem auto;padding:0 1.5rem}
.legal-body h2{font-size:1.05rem;color:var(--dark);margin:2rem 0 0.5rem;font-weight:700}
.legal-body p{font-size:0.9rem;color:var(--muted);line-height:1.8;margin-bottom:1rem;max-width:none}
.legal-body a{color:var(--amber);text-decoration:underline}
.legal-back{display:inline-flex;align-items:center;gap:0.3rem;font-size:0.85rem;font-weight:600;color:var(--amber);margin-bottom:2rem;text-decoration:none}
.legal-back:hover{text-decoration:underline}

.contact-hero{background:var(--off-white);padding:3rem 1.5rem;border-bottom:1px solid var(--border)}
.contact-hero h1{color:var(--dark);margin-bottom:0.4rem}
.contact-hero p{color:var(--muted);font-size:1rem}
.contact-wrap{max-width:480px;margin:4rem auto;padding:0 1.5rem}
.contact-card{background:var(--white);border:1px solid var(--border);border-radius:var(--radius-lg);padding:2rem 2.5rem;box-shadow:var(--shadow)}
.contact-card .label{font-size:0.72rem;font-weight:700;text-transform:uppercase;letter-spacing:0.08em;color:var(--muted);margin-bottom:0.5rem}
.contact-card a{font-size:1.1rem;font-weight:600;color:var(--amber);text-decoration:underline}

/* ── Responsive ──────────────────────────────── */
@media(min-width:769px){.header-nav{display:flex}.hamburger{display:none}}

/* ── Testimonials ────────────────────────────── */
.testimonials-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2.5rem;margin-top:2.5rem}
.testimonial{display:flex;flex-direction:column;gap:1rem;padding:2rem;border-top:1px solid rgba(255,255,255,0.1)}
.testimonial-stars{color:var(--amber);font-size:1.05rem;letter-spacing:0.08em}
.testimonial-text{font-size:0.975rem;line-height:1.8;font-style:italic;color:rgba(255,255,255,0.82);max-width:100%}
.testimonial-author{font-size:0.75rem;font-weight:600;color:rgba(255,255,255,0.4);letter-spacing:0.06em;text-transform:uppercase}

@media(max-width:960px){
  .savings-layout{grid-template-columns:1fr;gap:3rem}
  .amber-inner{grid-template-columns:1fr;gap:2.5rem}
  .stats-grid{grid-template-columns:1fr 1fr}
  .footer-top{flex-direction:column}
}

@media(max-width:768px){
  .testimonials-grid{grid-template-columns:1fr}
  .mobile-cta{display:block}
  body{padding-bottom:72px}
  .section{padding:3.5rem 0}
  .section--off{padding:4.5rem 0}
  .hero{min-height:auto}
}

@media(max-width:560px){
  .trust-items{grid-template-columns:repeat(2,auto);gap:0.75rem 1.5rem}
  .trust-item{font-size:0.8rem;white-space:normal}
  .hero-inner{padding:4rem 1.25rem 3.5rem}
  .hero-form{padding:1.75rem 1.25rem 1.5rem}
  .stats-grid{grid-template-columns:1fr 1fr}
  .step-card{padding:2rem 0 2rem 3.5rem}
  .step-number{font-size:1.5rem;top:2rem}
}

@media(prefers-reduced-motion:reduce){
  .step-card,.faq-list details{transition:none;opacity:1;transform:none}
  .btn-amber,.btn-dark,.btn-white,.btn-header{transition:none}
}
