/* ============================================
   WindowsRenew — LP1 Smart Homeowner
   Design: Forest green + amber | Fraunces + Plus Jakarta Sans
   Mobile-first | Meta ads traffic
   ============================================ */

/* Self-hosted variable fonts */
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
  src: url('../fonts/fraunces-variable.woff2') format('woff2');
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/plus-jakarta-sans-variable.woff2') format('woff2');
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}

:root {
  --green-900:  #0F2D1F;
  --green-800:  #1E4D3A;
  --green-700:  #2D6B52;
  --green-600:  #3A8A69;
  --green-100:  #EAF4EF;
  --amber:      #E8A838;
  --amber-dark: #C8901E;
  --off-white:  #F7F5F0;
  --white:      #FFFFFF;
  --text:       #1A1A1A;
  --text-muted: #5A5A5A;
  --border:     #E5E0D8;
  --gray-bg:    #F0EDE8;
  --gray-text:  #767676;
  --max:        1180px;
  --radius:     12px;
  --radius-lg:  20px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  color: var(--text);
  background: var(--off-white);
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-700); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }

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

.hide-mobile { display: none; }
@media (min-width: 768px) { .hide-mobile { display: inline; } }


/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  display: inline-block;
  background: var(--amber);
  color: var(--green-900);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.85rem 2rem;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 20px rgba(232, 168, 56, 0.35);
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--amber-dark);
  color: var(--white);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(200, 144, 30, 0.4);
}
.btn-primary:active { transform: translateY(0); }

.btn-small {
  font-size: 0.9rem;
  padding: 0.65rem 1.5rem;
}

.btn-lg {
  font-size: 1.1rem;
  padding: 1rem 2.75rem;
}

.btn-header {
  display: inline-block;
  background: var(--amber);
  color: var(--green-900);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-header:hover {
  background: var(--amber-dark);
  color: var(--white);
  text-decoration: none;
}


/* ============================================
   HEADER — minimal LP header, no nav
   ============================================ */
.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,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 1.25rem;
  max-width: var(--max);
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo img { height: 38px; width: auto; }
.logo-text {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green-900);
  letter-spacing: -0.3px;
}
.logo-text span { color: var(--green-600); }

.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header-nav {
  display: none;
  gap: 1.5rem;
}
.header-nav a {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
}
.header-nav a:hover { color: var(--green-700); text-decoration: none; }

.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(--text);
  transition: 0.25s ease;
  border-radius: 2px;
}
.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;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 1.25rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.nav-links.open { display: flex; }
.nav-links li a {
  display: block;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
}
.nav-links li:last-child a { border-bottom: none; }
.nav-links li a:hover { color: var(--green-700); text-decoration: none; }

@media (min-width: 768px) {
  .logo img { height: 44px; }
  .logo-text { font-size: 1.3rem; }
  .hamburger { display: none; }
  .header-nav { display: flex; }
  .nav-links { display: none !important; }
  .btn-header { font-size: 0.9rem; padding: 0.6rem 1.5rem; }
}


/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  background-image: url('../assets/hero-bg-mobile.webp');
  background-size: cover;
  background-position: center top;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    150deg,
    rgba(10, 30, 20, 0.88) 0%,
    rgba(15, 45, 31, 0.80) 50%,
    rgba(10, 25, 18, 0.65) 100%
  );
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

@media (min-width: 960px) {
  .hero { min-height: 100svh; background-image: url('../assets/hero-bg-opt.webp'); }
  .hero-inner { min-height: 100svh; }
}

/* Hero content — left column */
.hero-content {
  padding: 2.5rem 1.25rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.25);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
  letter-spacing: 0.2px;
}
.hero-badge svg { flex-shrink: 0; color: var(--amber); }

.hero-content h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.2rem, 7vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.hero-content h1 em {
  font-style: italic;
  color: var(--amber);
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: rgba(255,255,255,0.88);
  margin-bottom: 1.75rem;
  line-height: 1.65;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.78);
  margin: 0;
}
.hero-trust svg { color: rgba(255,255,255,0.7); flex-shrink: 0; }

/* Hero form panel — right column */
.hero-form-panel {
  padding: 1.5rem 1.25rem 2.5rem;
}

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem 1.25rem;
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}

.form-card-title {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--green-900);
  margin-bottom: 0.2rem;
}
.form-card-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.form-privacy {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.74rem;
  color: var(--text-muted);
  margin-top: 0.85rem;
  line-height: 1.4;
}
.form-privacy svg { flex-shrink: 0; color: var(--green-600); }

/* Desktop: side-by-side */
@media (min-width: 960px) {
  .hero-inner {
    flex-direction: row;
    align-items: stretch;
  }
  .hero-content {
    flex: 1 1 0;
    min-width: 0;
    padding: 5rem 2rem 4rem 3.5rem;
    justify-content: center;
  }
  .hero-form-panel {
    flex: 0 0 520px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 3rem 1.5rem 3rem 2.5rem;
    background: linear-gradient(to left, rgba(0,0,0,0.18) 0%, transparent 100%);
  }
  .form-card {
    width: 100%;
    max-width: 460px;
    padding: 1.75rem 1.5rem 1.5rem;
  }
}

@media (min-width: 1200px) {
  .hero-content { padding: 5rem 2.5rem 4rem 4rem; }
  .hero-form-panel {
    flex: 0 0 560px;
    padding: 3rem 2rem 3rem 3rem;
  }
  .form-card { max-width: 480px; }
}


/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 1.25rem;
}

.trust-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
  max-width: var(--max);
  margin: 0 auto;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.trust-item svg { flex-shrink: 0; color: var(--green-700); }
.trust-item strong { color: var(--text); }

@media (min-width: 480px) {
  .trust-items { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
}
@media (min-width: 760px) {
  .trust-items { grid-template-columns: repeat(4, 1fr); }
}


/* ============================================
   SHARED SECTION STYLES
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .section-header { margin-bottom: 2.5rem; }
}

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 0.6rem;
}

.section-header h2,
.faq-header h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.6rem, 4.5vw, 2.4rem);
  font-weight: 700;
  color: var(--green-900);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 0.65rem;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-cta {
  text-align: center;
  margin-top: 2.5rem;
}


/* ============================================
   CONTRAST SECTION — Old Way vs New Way
   ============================================ */
.contrast-section {
  background: var(--off-white);
  padding: 3.5rem 1.25rem;
}
@media (min-width: 768px) {
  .contrast-section { padding: 5rem 1.25rem; }
}

.contrast-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .contrast-grid { grid-template-columns: 1fr 1fr; }
}

/* Base card */
.contrast-card {
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  /* scroll reveal */
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.contrast-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.contrast-card.new-way { transition-delay: 0.12s; }

/* Old Way — muted */
.contrast-card.old-way {
  background: var(--gray-bg);
  border: 1px solid var(--border);
}
.contrast-card.old-way .contrast-card-label {
  color: var(--gray-text);
}
.contrast-card.old-way h3 {
  color: #595959;
}
.contrast-card.old-way .contrast-list li {
  color: var(--text-muted);
}
.contrast-card.old-way .contrast-list li::before {
  background: #ccc;
}

/* New Way — brand */
.contrast-card.new-way {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--green-600);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.contrast-card.new-way .contrast-card-label {
  color: var(--green-600);
}
.contrast-card.new-way h3 {
  color: var(--green-900);
}
.contrast-card.new-way .contrast-list li {
  color: var(--text-muted);
}
.contrast-card.new-way .contrast-list li::before {
  background: var(--green-600);
}

/* Label row */
.contrast-card-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.contrast-card-label svg { flex-shrink: 0; }

/* Card heading */
.contrast-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

/* Bullet list */
.contrast-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}
.contrast-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  line-height: 1.55;
}
.contrast-list li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.45em;
}


/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
  background: var(--white);
  padding: 3.5rem 1.25rem;
}
@media (min-width: 768px) {
  .how-it-works { padding: 5rem 1.25rem; }
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}

.step-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  /* scroll reveal */
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.step-card.visible { opacity: 1; transform: translateY(0); }
.step-card:nth-child(2) { transition-delay: 0.1s; }
.step-card:nth-child(3) { transition-delay: 0.2s; }

.step-number {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  min-width: 2.5rem;
  flex-shrink: 0;
}
.step-body h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--green-900);
  margin-bottom: 0.4rem;
}
.step-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (min-width: 700px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  .step-card { flex-direction: column; gap: 0.85rem; }
}


/* ============================================
   STATS / SOCIAL PROOF
   ============================================ */
.stats-section {
  background: var(--green-900);
  padding: 3.5rem 1.25rem;
}
@media (min-width: 768px) {
  .stats-section { padding: 4rem 1.25rem; }
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 1rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
@media (min-width: 640px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 1rem; }
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  /* scroll reveal */
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.stat-item.visible { opacity: 1; transform: translateY(0); }
.stat-item:nth-child(2) { transition-delay: 0.08s; }
.stat-item:nth-child(3) { transition-delay: 0.16s; }
.stat-item:nth-child(4) { transition-delay: 0.24s; }

.stat-number {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.4;
  max-width: 120px;
}


/* ============================================
   FAQ
   ============================================ */
.faq-section {
  background: var(--off-white);
  padding: 3.5rem 1.25rem;
}
@media (min-width: 768px) {
  .faq-section { padding: 5rem 1.25rem; }
}

.faq-layout {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: var(--max);
  margin: 0 auto;
}

.faq-header .eyebrow { display: block; }

.faq-header h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.6rem, 4.5vw, 2.4rem);
  font-weight: 700;
  color: var(--green-900);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.faq-list { flex: 1; }

details {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  /* scroll reveal */
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
details.visible { opacity: 1; transform: translateY(0); }
details:nth-child(2) { transition-delay: 0.07s; }
details:nth-child(3) { transition-delay: 0.14s; }

details[open] { border-color: var(--green-600); }
details[open] summary { border-bottom: 1px solid var(--border); }

summary {
  padding: 1.1rem 1.25rem;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
  -webkit-user-select: none;
  user-select: none;
  line-height: 1.4;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--green-700);
  flex-shrink: 0;
  margin-left: 1rem;
  line-height: 1;
}
details[open] summary::after { content: '−'; }

.faq-body {
  padding: 1rem 1.25rem 1.25rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.faq-body strong { color: var(--text); }

.faq-header-cta { display: none; }

.faq-cta {
  text-align: center;
  margin-top: 2.5rem;
}

@media (min-width: 860px) {
  .faq-layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 4rem;
  }
  .faq-header {
    flex: 0 0 280px;
    position: sticky;
    top: 5rem;
  }
  .faq-list { flex: 1; }
  .faq-cta { text-align: center; }
  .faq-header-cta { display: inline-block; margin-top: 1.5rem; }
  .faq-mobile-cta { display: none; }
}


/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  background-image: url('../assets/cta-bg-opt.webp');
  background-size: cover;
  background-position: center;
}
@media (min-width: 960px) {
  .final-cta { background-attachment: fixed; }
}

.final-cta-inner {
  background: rgba(10, 30, 20, 0.82);
  padding: 5rem 1.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.eyebrow-light {
  color: rgba(255,255,255,0.78);
}

.final-cta-inner h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
}

.final-cta-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  margin: 0;
}

.final-trust-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: center;
  color: rgba(255,255,255,0.78);
  font-size: 0.82rem;
  margin-top: 0.25rem;
}


/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--green-900);
  padding: 3rem 1.25rem 2rem;
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: var(--max);
  margin: 0 auto 2rem;
}

.footer-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.3px;
}
.footer-logo span { color: var(--amber); }

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.25rem;
}
.footer-nav a {
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
}
.footer-nav a:hover { color: var(--white); text-decoration: none; }

.disclaimer {
  font-size: 0.72rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  max-width: var(--max);
  margin: 0 auto 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
}

.copyright {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  max-width: var(--max);
  margin: 0 auto;
}

@media (min-width: 768px) {
  .footer-top {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}


/* ============================================
   STICKY MOBILE CTA BAR
   ============================================ */
.sticky-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 300;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  padding: 0.75rem 1.25rem;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  pointer-events: none;
}
.sticky-cta-bar.visible {
  transform: translateY(0);
  pointer-events: auto;
}
.btn-sticky {
  width: 100%;
  text-align: center;
  padding: 0.9rem 2rem;
}
/* Hide sticky bar on desktop — form is always visible */
@media (min-width: 960px) {
  .sticky-cta-bar { display: none; }
}
/* Add bottom padding to footer so sticky bar doesn't cover content */
@media (max-width: 959px) {
  .site-footer { padding-bottom: 5rem; }
}


/* ============================================
   QUIZ CONTAINER — reserve space to prevent CLS
   ============================================ */
.quiz-container {
  min-height: 360px;
}

/* ============================================
   QUIZ LOADING STATE
   ============================================ */
.quiz-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 2.5rem 1rem;
  color: var(--text-muted);
  font-size: 0.85rem;
}
.quiz-spinner {
  width: 28px;
  height: 28px;
  border: 3px solid var(--border);
  border-top-color: var(--green-600);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
/* Hidden by JS once LeadShook injects content */
.quiz-loading.hidden {
  display: none;
}


/* ============================================
   MOBILE HERO — CONTENT-FIRST
   Hero copy builds trust above the form on mobile.
   Applies to both LP1 and LP2.
   ============================================ */
@media (max-width: 959px) {
  .hero-inner {
    display: flex;
    flex-direction: column;
  }
  .hero-form-panel {
    padding-top: 0.5rem;
    padding-bottom: 2rem;
  }
  .hero-content {
    padding: 2rem 1.25rem 1.25rem;
  }
  /* Remove the hero's repeat CTA on mobile — form is right below */
  .hero-actions .btn-primary {
    display: none;
  }
  /* Hide redundant form title/subtitle on mobile — H1 already says it */
  .form-card-title,
  .form-card-sub {
    display: none;
  }
  /* Tighter form card padding so it feels lighter */
  .form-card {
    padding: 1rem 1rem 1rem;
  }
}


/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-hero {
  background: var(--green-900);
  padding: 3rem 1.25rem 2.5rem;
}
.legal-hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}
.legal-hero .updated {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}
.legal-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 5rem;
}
.legal-body h2 {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green-900);
  margin: 2.25rem 0 0.6rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--border);
}
.legal-body p {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 1rem;
  line-height: 1.75;
}
.legal-body ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.legal-body li {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 0.5rem;
  line-height: 1.65;
}
.legal-body strong { color: var(--text); }
.legal-body a { color: var(--green-700); }
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--amber-dark);
  margin-bottom: 1.75rem;
}
.legal-back:hover { text-decoration: underline; color: var(--amber-dark); }


/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-hero {
  background: var(--green-900);
  padding: 3rem 1.25rem 2.5rem;
}
.contact-hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}
.contact-hero p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
}
.contact-wrap {
  max-width: 600px;
  margin: 0 auto;
  padding: 3rem 1.25rem 5rem;
  text-align: center;
}
.contact-wrap h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--green-900);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.contact-wrap .intro {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 2rem;
}
.contact-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 2rem;
}
.contact-card .label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.contact-card a {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green-900);
}
.disclaimer-box {
  background: var(--off-white);
  border-left: 3px solid var(--amber);
  padding: 1rem 1.1rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: left;
  line-height: 1.65;
}


/* ============================================
   DO NOT SELL
   ============================================ */
.opt-out-cta {
  background: var(--off-white);
  border: 1px solid var(--amber);
  border-left: 4px solid var(--amber);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin: 1.5rem 0;
  font-size: 0.95rem;
  line-height: 1.65;
}
.opt-out-cta a { color: var(--green-900); font-weight: 600; }
