/* ============================================================
   Go Reinstate — Global Stylesheet
   Anthos Minimal Design System — Warm Earthy Editorial
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Anthos Minimal Colour System */
  --background:      #F5F3EE;
  --surface:         #F9F7F2;
  --surface-card:    #FDFCF9;
  --surface-high:    #EDE9E3;
  --border:          #E8E5DF;
  --text-primary:    #31332E;
  --text-secondary:  #6B6B63;
  --text-muted:      #9E9D99;
  --primary:         #D97757;
  --primary-dark:    #9A462A;
  --primary-hover:   #C56644;
  --secondary:       #605D5B;
  --tertiary:        #8F733B;
  --white:           #FDFCF9;
  --navy:            #252F3E;
  --wa-green:        #25D366;
  --wa-dark:         #128C7E;WhatsApp
  --border-radius:   0.75rem;
  --border-radius-sm: 0.375rem;

  /* Legacy aliases — keeps existing HTML working */
  --amazon-orange: var(--primary);
  --amazon-dark:   var(--navy);
  --green:         var(--wa-green);
  --text:          var(--text-primary);
  --muted:         var(--text-secondary);
  --light-bg:      var(--surface);
  --white-pure:    #ffffff;
  --max-w:         1140px;
  --radius:        var(--border-radius);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-primary);
  background: var(--background);
  line-height: 1.65;
  font-size: 16px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { padding-left: 1.4rem; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--navy);
  padding: 11px 20px;
  text-align: center;
  font-weight: 700;
  font-size: .84rem;
  color: #F5F3EE;
  letter-spacing: .4px;
  font-family: 'Manrope', sans-serif;
  text-transform: uppercase;
}
.trust-bar em, .trust-bar strong { color: var(--primary); font-style: normal; }

/* ── NAV ── */
.site-nav {
  background: rgba(245, 243, 238, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
  transition: box-shadow .3s ease;
}
.site-nav.scrolled {
  box-shadow: 0 4px 32px rgba(37, 47, 62, .12);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 20px;
  max-width: var(--max-w);
  margin: 0 auto;
  gap: 10px;
  position: relative;
}
.logo {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -.5px;
  font-family: 'Manrope', sans-serif;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.logo span { color: var(--primary); }
.logo-check {
  display: inline-flex;
  width: 18px; height: 18px;
  background: var(--primary);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin-left: 3px;
  flex-shrink: 0;
}
.logo-check svg { width: 10px; height: 10px; stroke: #fff; stroke-width: 2.5; fill: none; }

.nav-badges {
  display: flex;
  gap: 5px;
  align-items: center;
  flex-shrink: 0;
}
.nav-badge {
  background: var(--navy);
  color: #F5F3EE;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 20px;
  white-space: nowrap;
  font-family: 'Manrope', sans-serif;
}

.nav-links {
  display: flex;
  gap: 0;
  flex-wrap: nowrap;
  list-style: none;
  padding: 0;
  align-items: center;
}
.nav-links a {
  color: var(--text-secondary);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .3px;
  text-transform: uppercase;
  padding: 5px 7px;
  border-radius: 6px;
  transition: background .2s, color .2s;
  font-family: 'Manrope', sans-serif;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active {
  background: rgba(217, 119, 87, .1);
  color: var(--primary);
  text-decoration: none;
}
.nav-cta {
  background: #25D366 !important;
  color: #FDFCF9 !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  padding: 5px 13px !important;
  border-radius: 50px !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  white-space: nowrap !important;
}
.nav-cta:hover {
  background: var(--primary-hover) !important;
  color: #FDFCF9 !important;
  text-decoration: none !important;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 7px;
  border: none;
  background: transparent;
  border-radius: 6px;
  transition: background .2s;
  margin-left: auto;
  flex-shrink: 0;
}
.nav-hamburger:hover { background: var(--surface-high); }
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer — drops below nav bar, desktop-hidden */
.nav-drawer {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--surface-card);
  border-top: 1px solid var(--border);
  border-bottom: 2px solid var(--primary);
  box-shadow: 0 8px 32px rgba(37, 47, 62, .15);
  z-index: 199;
  padding: 12px 16px 16px;
  flex-direction: column;
  gap: 2px;
  overflow-y: auto;
  max-height: calc(100vh - 60px);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: transform .28s cubic-bezier(0.22, 1, 0.36, 1),
              opacity .28s ease;
}
.nav-drawer.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.nav-drawer a {
  display: block;
  padding: 11px 14px;
  color: var(--text-primary);
  font-size: .9rem;
  font-weight: 600;
  border-radius: 8px;
  transition: background .2s, color .2s;
  font-family: 'Manrope', sans-serif;
  text-decoration: none;
}
.nav-drawer a:hover {
  background: rgba(217, 119, 87, .08);
  color: var(--primary);
  text-decoration: none;
}
.nav-drawer .nav-cta-drawer {
  margin-top: 8px;
  background: #D97757;
  color: #FDFCF9 !important;
  text-align: center;
  border-radius: 50px;
  font-size: .88rem;
  padding: 12px 14px;
  display: block;
  font-weight: 700;
}
.nav-drawer .nav-cta-drawer:hover {
  background: var(--primary-hover);
  color: #FDFCF9 !important;
  text-decoration: none;
}

/* ── ACCESS SECURITY BAR ── */
.access-bar {
  background: #EAF5EB;
  border-bottom: 1px solid #C3E8C5;
  padding: 9px 20px;
  font-size: .81rem;
  color: #2D6A31;
  text-align: center;
  line-height: 1.5;
  font-family: 'Manrope', sans-serif;
}
.access-bar strong { color: #1a4a1e; }
.access-bar a { color: #2D6A31; text-decoration: underline; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  transition: transform .15s cubic-bezier(0.22,1,0.36,1),
              box-shadow .15s ease,
              background .15s ease;
  border: none;
  text-decoration: none;
  font-family: 'Manrope', sans-serif;
  letter-spacing: .1px;
}
.btn:hover { transform: scale(1.02) translateY(-1px); text-decoration: none; }
.btn:active { transform: scale(0.98) !important; }
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-hover); box-shadow: 0 8px 28px rgba(217,119,87,.4); color: var(--white); }
.btn-white { background: var(--white); color: var(--text-primary); border: 1px solid var(--border); }
.btn-white:hover { background: var(--surface-high); box-shadow: 0 4px 16px rgba(37,47,62,.1); color: var(--text-primary); }
.btn-green { background: var(--wa-green); color: #fff; }
.btn-green:hover { background: var(--wa-dark); box-shadow: 0 8px 28px rgba(37,211,102,.4); color: #fff; }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: #1a2230; box-shadow: 0 8px 28px rgba(37,47,62,.3); color: var(--white); }
.btn-lg { padding: 17px 36px; font-size: 1.05rem; }

/* ── HERO ── */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 72px 20px;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(217,119,87,.2);
  color: #F5A98A;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
  border: 1px solid rgba(217,119,87,.3);
  font-family: 'Manrope', sans-serif;
}
.hero h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.12;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: 'Newsreader', Georgia, serif;
  font-style: italic;
}
.hero h1 em {
  color: var(--primary);
  font-style: italic;
}
.hero-sub {
  font-size: 1.05rem;
  color: #B8B4AE;
  margin-bottom: 32px;
  max-width: 500px;
  font-family: 'Manrope', sans-serif;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-img { border-radius: 14px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,.35); }
.hero-img img { width: 100%; border-radius: 14px; }
.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(245,243,238,.1);
  flex-wrap: wrap;
}
.stat { text-align: left; position: relative; padding-top: 14px; }
.stat::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 28px; height: 3px;
  background: var(--primary);
  border-radius: 2px;
}
.stat-num {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  font-family: 'Newsreader', Georgia, serif;
}
.stat-label {
  font-size: .78rem;
  color: #8A8780;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-top: 4px;
  font-family: 'Manrope', sans-serif;
}

/* ── SECTIONS ── */
.section { padding: 80px 20px; }
.section-alt { background: var(--surface); }
.section-dark { background: var(--navy); color: var(--white); }
.section-header { text-align: center; margin-bottom: 52px; }
.section-header .eyebrow {
  display: inline-block;
  background: rgba(217,119,87,.12);
  color: var(--primary);
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
  font-family: 'Manrope', sans-serif;
}
.section-header h2 {
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--text-primary);
  font-family: 'Newsreader', Georgia, serif;
}
.section-header p {
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto;
  font-size: 1.02rem;
}
.section-dark .section-header p { color: #9A9791; }
.section-dark .section-header h2 { color: var(--white); }

/* ── CARDS ── */
.card-grid { display: grid; gap: 24px; }
.card-grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.card-grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.card-grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.card {
  background: var(--surface-card);
  border-radius: var(--border-radius);
  padding: 28px;
  border: 1px solid var(--border);
  transition: box-shadow .25s ease, transform .25s cubic-bezier(0.22,1,0.36,1), border-color .25s ease;
  position: relative;
  overflow: hidden;
}
.card:hover {
  box-shadow: 0 8px 36px rgba(37,47,62,.1);
  transform: translateY(-4px);
  border-color: rgba(217,119,87,.3);
}
.card-icon {
  width: 52px; height: 52px;
  background: rgba(217,119,87,.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
  transition: background .25s ease, transform .25s cubic-bezier(0.22,1,0.36,1);
}
.card:hover .card-icon {
  background: rgba(217,119,87,.18);
  transform: scale(1.08) rotate(-3deg);
}
.card-icon svg {
  width: 22px; height: 22px;
  stroke: var(--primary);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-primary);
  font-family: 'Newsreader', Georgia, serif;
}
.card p { color: var(--text-secondary); font-size: .93rem; }

/* ── STEPS ── */
.steps {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  counter-reset: step;
}
.step { position: relative; padding-left: 70px; }
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0; top: 0;
  width: 50px; height: 50px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  font-family: 'Manrope', sans-serif;
  transition: box-shadow .25s ease;
}
.step:hover::before {
  box-shadow: 0 4px 16px rgba(217,119,87,.45);
}
.step h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
  margin-top: 6px;
  color: var(--text-primary);
  font-family: 'Newsreader', Georgia, serif;
}
.step p { color: var(--text-secondary); font-size: .93rem; }

/* ── SPN BADGE ── */
.spn-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(37,47,62,.08);
  border: 1px solid rgba(37,47,62,.2);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: .76rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .3px;
  white-space: nowrap;
  font-family: 'Manrope', sans-serif;
  text-transform: uppercase;
}
.spn-badge::before { content: '✓'; color: var(--wa-green); font-weight: 900; }

/* ── BREADCRUMB ── */
.breadcrumb {
  background: var(--surface);
  padding: 10px 20px;
  font-size: .81rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  font-family: 'Manrope', sans-serif;
}
.breadcrumb-inner { max-width: var(--max-w); margin: 0 auto; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--primary); text-decoration: none; }
.breadcrumb span { margin: 0 6px; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 60px 20px 52px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(217,119,87,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217,119,87,.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
.page-hero h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 600;
  margin-bottom: 14px;
  font-family: 'Newsreader', Georgia, serif;
  font-style: italic;
  position: relative;
}
.page-hero h1 em { color: var(--primary); font-style: italic; }
.page-hero p {
  color: #9A9791;
  max-width: 580px;
  margin: 0 auto 28px;
  font-size: 1.02rem;
  position: relative;
}

/* ── PRICING BOX ── */
.pricing-box {
  background: var(--navy);
  color: var(--white);
  border-radius: 16px;
  padding: 44px 40px;
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(217,119,87,.2);
}
.pricing-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #F0A882, var(--primary));
}
.price-tag {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  font-family: 'Newsreader', Georgia, serif;
}
.price-tag sup { font-size: 1.8rem; vertical-align: super; }
.price-note { color: #8A8780; font-size: .9rem; margin: 8px 0 24px; }
.price-features { list-style: none; padding: 0; text-align: left; margin-bottom: 28px; }
.price-features li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(245,243,238,.07);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .93rem;
  color: #C8C4BE;
}
.price-features li::before { content: '✓'; color: var(--primary); font-weight: 900; }

/* ── RESULTS / TESTIMONIALS ── */
.result-card {
  background: var(--surface-card);
  border-radius: var(--border-radius);
  padding: 28px;
  border-left: 4px solid var(--primary);
  box-shadow: 0 2px 12px rgba(37,47,62,.06);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
}
.result-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}
.result-badge {
  background: rgba(217,119,87,.1);
  color: var(--primary);
  font-size: .73rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-family: 'Manrope', sans-serif;
}
.result-card blockquote {
  font-size: .97rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 12px;
  font-family: 'Newsreader', Georgia, serif;
}
.result-card cite { display: block; margin-top: 10px; font-size: .85rem; color: var(--text-muted); font-style: normal; }

/* ── FAQ ── */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  transition: background .2s ease;
  border-radius: 8px;
  padding-left: 8px;
  padding-right: 8px;
  margin: 0 -8px;
}
.faq-item:last-child { border-bottom: none; }
.faq-item:hover { background: rgba(217,119,87,.04); }
.faq-q {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-primary);
  font-family: 'Manrope', sans-serif;
}
.faq-q span { color: var(--primary); font-size: 1.2rem; flex-shrink: 0; }
.faq-a {
  color: var(--text-secondary);
  font-size: .95rem;
  line-height: 1.7;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height .4s cubic-bezier(0.22,1,0.36,1),
              opacity .3s ease,
              padding .3s ease;
  padding-top: 0;
}
.faq-item.open .faq-a {
  max-height: 600px;
  opacity: 1;
  padding-top: 10px;
}
.faq-item.open .faq-q span { transform: rotate(45deg); }

/* ── CTA BAND ── */
.cta-band {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(217,119,87,.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 600;
  margin-bottom: 16px;
  font-family: 'Newsreader', Georgia, serif;
  font-style: italic;
  position: relative;
}
.cta-band h2 em { color: var(--primary); font-style: italic; }
.cta-band p {
  color: #9A9791;
  margin-bottom: 32px;
  font-size: 1.05rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ── VIOLATION LINKS ── */
.violation-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; }
.violation-link {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--border-radius-sm);
  padding: 14px 18px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background .2s, border-color .2s, transform .2s cubic-bezier(0.22,1,0.36,1);
  cursor: pointer;
  font-family: 'Manrope', sans-serif;
}
.violation-link:hover {
  background: rgba(217,119,87,.08);
  border-color: var(--primary);
  color: var(--primary-dark);
  text-decoration: none;
  transform: translateX(4px);
}
.violation-link .icon {
  font-size: 1rem;
  display: flex;
  align-items: center;
}
.violation-link svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  stroke: var(--primary);
  stroke-width: 2;
  fill: none;
}

/* ── IMAGE FEATURE ── */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.feature-split.reverse { direction: rtl; }
.feature-split.reverse > * { direction: ltr; }
.feature-content h2 {
  font-size: clamp(1.4rem, 2.5vw, 2.1rem);
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-primary);
  font-family: 'Newsreader', Georgia, serif;
}
.feature-content p { color: var(--text-secondary); margin-bottom: 20px; }
.feature-img img {
  border-radius: 14px;
  box-shadow: 0 16px 48px rgba(37,47,62,.12);
  transition: transform .4s cubic-bezier(0.22,1,0.36,1), box-shadow .4s ease;
}
.feature-img:hover img {
  transform: scale(1.03) rotate(-1deg);
  box-shadow: 0 24px 64px rgba(37,47,62,.18);
}

/* ── CALCULATOR ── */
.calc-box {
  background: var(--navy);
  color: var(--white);
  border-radius: 16px;
  padding: 40px;
  max-width: 560px;
  border: 1px solid rgba(217,119,87,.15);
}
.calc-box h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--primary);
  font-family: 'Newsreader', Georgia, serif;
}
.calc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(245,243,238,.07);
}
.calc-row:last-of-type { border-bottom: none; }
.calc-label { font-size: .93rem; color: #9A9791; }
.calc-val { font-size: 1rem; font-weight: 700; color: #FDFCF9; }
.calc-total {
  background: rgba(217,119,87,.15);
  border-radius: 10px;
  padding: 16px 20px;
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.calc-total-label { font-weight: 700; font-size: 1.05rem; color: #FDFCF9; }
.calc-total-val { font-size: 1.5rem; font-weight: 800; color: var(--primary); font-family: 'Newsreader', Georgia, serif; }

/* ── CHILD ACCESS CARD ── */
.access-card {
  background: var(--navy);
  border-left: 4px solid var(--primary);
  border-radius: var(--border-radius);
  padding: 40px 44px;
  color: var(--white);
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid rgba(217,119,87,.2);
  border-left: 4px solid var(--primary);
  position: relative;
}
.access-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #F0A882, var(--primary));
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}
.access-card .access-eyebrow {
  display: inline-block;
  background: rgba(217,119,87,.2);
  color: #F5A98A;
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
  border: 1px solid rgba(217,119,87,.3);
  font-family: 'Manrope', sans-serif;
}
.access-card h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: #FDFCF9;
  margin-bottom: 16px;
  line-height: 1.3;
  font-family: 'Newsreader', Georgia, serif;
}
.access-card p {
  color: #9A9791;
  line-height: 1.78;
  font-size: .95rem;
}
.access-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.access-pill {
  background: rgba(37, 211, 102, .12);
  color: #4ade80;
  border: 1px solid rgba(37, 211, 102, .25);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .3px;
  font-family: 'Manrope', sans-serif;
}

/* ── WHATSAPP CONCIERGE SECTION ── */
.wa-concierge {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 40px 44px;
  max-width: 820px;
  margin: 0 auto;
  box-shadow: 0 4px 32px rgba(37,47,62,.08);
}
.wa-concierge-heading {
  font-family: 'Newsreader', Georgia, serif;
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--text-primary);
  margin-bottom: 8px;
}
.wa-concierge-sub {
  color: var(--text-secondary);
  font-size: .95rem;
  margin-bottom: 24px;
  font-family: 'Manrope', sans-serif;
}
.wa-input-row {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
.wa-input {
  flex: 1;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: .93rem;
  background: var(--background);
  color: var(--text-primary);
  font-family: 'Manrope', sans-serif;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  min-width: 0;
}
.wa-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(217,119,87,.12);
}
.wa-input::placeholder { color: var(--text-muted); }
.wa-fix-btn {
  padding: 14px 26px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: .93rem;
  cursor: pointer;
  font-family: 'Manrope', sans-serif;
  transition: background .2s, transform .15s;
  white-space: nowrap;
  flex-shrink: 0;
}
.wa-fix-btn:hover { background: var(--primary-hover); transform: scale(1.02); }
.wa-second-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.wa-live-label {
  font-size: .85rem;
  color: var(--text-secondary);
  font-family: 'Manrope', sans-serif;
  display: flex;
  align-items: center;
  gap: 6px;
}
.wa-live-dot {
  width: 8px; height: 8px;
  background: var(--wa-green);
  border-radius: 50%;
  animation: live-pulse 2s infinite;
}
@keyframes live-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
  50% { box-shadow: 0 0 0 5px rgba(37,211,102,0); }
}
.wa-main-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 26px;
  background: var(--wa-green);
  color: #fff;
  border-radius: 50px;
  font-weight: 700;
  font-size: .93rem;
  text-decoration: none;
  font-family: 'Manrope', sans-serif;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(37,211,102,.3);
}
.wa-main-btn:hover {
  background: var(--wa-dark);
  transform: scale(1.02);
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
  text-decoration: none;
  color: #fff;
}
.wa-main-btn svg { width: 18px; height: 18px; fill: #fff; flex-shrink: 0; }
.wa-response-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(37,211,102,.1);
  color: #15803d;
  border: 1px solid rgba(37,211,102,.25);
  border-radius: 20px;
  padding: 5px 12px;
  font-size: .78rem;
  font-weight: 700;
  font-family: 'Manrope', sans-serif;
}
.wa-trust-strip {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: .78rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.8;
  font-family: 'Manrope', sans-serif;
  letter-spacing: .2px;
}

/* ── FOOTER ── */
footer {
  background: var(--navy);
  color: #9A9791;
  padding: 56px 20px 32px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(245,243,238,.08);
}
.footer-brand .logo {
  font-size: 1.3rem;
  margin-bottom: 12px;
  display: flex;
  color: #FDFCF9;
}
.footer-brand p {
  font-size: .87rem;
  line-height: 1.7;
  color: #7A7770;
  max-width: 300px;
}
.footer-cta {
  margin-top: 20px;
  padding: 16px 20px;
  background: rgba(217,119,87,.08);
  border: 1px solid rgba(217,119,87,.2);
  border-radius: var(--border-radius);
}
.footer-cta p {
  font-size: .88rem;
  color: #FDFCF9;
  margin-bottom: 12px;
  font-family: 'Newsreader', Georgia, serif;
  font-style: italic;
  max-width: none;
}
footer h4 {
  color: #FDFCF9;
  font-size: .8rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .8px;
  font-family: 'Manrope', sans-serif;
}
footer ul { list-style: none; padding: 0; }
footer ul li { margin-bottom: 10px; }
footer ul li a {
  color: #6B6B5E;
  font-size: .87rem;
  transition: color .2s;
}
footer ul li a:hover { color: var(--primary); text-decoration: none; }
.footer-bottom {
  max-width: var(--max-w);
  margin: 28px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .78rem;
  color: #5A5A53;
  flex-wrap: wrap;
  gap: 10px;
  font-family: 'Manrope', sans-serif;
}
.footer-disclaimer {
  font-size: .76rem;
  color: #4A4A43;
  margin: 20px auto 0;
  max-width: var(--max-w);
  line-height: 1.6;
  padding: 0 20px;
}

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--wa-green);
  color: #fff;
  border-radius: 50px;
  padding: 13px 22px;
  font-weight: 700;
  font-size: .93rem;
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  animation: wa-pulse 3s infinite;
  font-family: 'Manrope', sans-serif;
}
.wa-float:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 32px rgba(37,211,102,.55);
  text-decoration: none;
  color: #fff;
}
.wa-icon {
  display: flex;
  align-items: center;
  width: 20px; height: 20px;
  flex-shrink: 0;
}
.wa-icon svg { fill: #fff; }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,.4); }
  50% { box-shadow: 0 6px 40px rgba(37,211,102,.65); }
}

/* ── ALERTS ── */
.alert {
  padding: 14px 20px;
  border-radius: var(--border-radius-sm);
  margin-bottom: 20px;
  font-size: .93rem;
  font-family: 'Manrope', sans-serif;
}
.alert-warning {
  background: rgba(217,119,87,.1);
  border-left: 4px solid var(--primary);
  color: var(--primary-dark);
}
.alert-success {
  background: rgba(37,211,102,.08);
  border-left: 4px solid var(--wa-green);
  color: #15803d;
}

/* ── UTILITIES ── */
.text-center { text-align: center; }
.text-orange, .text-primary-color { color: var(--primary); }
.text-green { color: var(--wa-green); }
.text-red { color: var(--red); }
.fw-800 { font-weight: 800; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-0 { margin-bottom: 0 !important; }

/* ── SPN HERO TRUST BANNER ── */
.spn-hero-banner {
  background: var(--navy);
  border-bottom: 1px solid rgba(217,119,87,.2);
  padding: 22px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.spn-hero-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(217,119,87,.1) 0%, transparent 65%);
  pointer-events: none;
}
.spn-hero-banner-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
}
.spn-hero-heading {
  font-family: 'Newsreader', Georgia, serif;
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 600;
  color: #FDFCF9;
  letter-spacing: -.01em;
}
.spn-hero-sub {
  font-family: 'Manrope', sans-serif;
  font-size: .82rem;
  color: #7A7770;
  max-width: 680px;
  line-height: 1.55;
}
.spn-glow-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(217,119,87,.15);
  border: 1px solid rgba(217,119,87,.35);
  border-radius: 20px;
  padding: 5px 16px;
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: var(--primary);
  font-family: 'Manrope', sans-serif;
  animation: badge-glow 3s ease-in-out infinite;
  margin-bottom: 4px;
}
.spn-glow-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--primary);
  animation: badge-pulse 2s ease-in-out infinite;
}
@keyframes badge-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(217,119,87,0); }
  50%       { box-shadow: 0 0 12px 3px rgba(217,119,87,.25); }
}

/* ── SCROLL TOP ── */
.scroll-top {
  position: fixed;
  bottom: 88px;
  right: 26px;
  width: 42px; height: 42px;
  background: rgba(245,243,238,.9);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .3s ease, transform .3s ease, background .2s ease;
  z-index: 990;
  backdrop-filter: blur(8px);
}
.scroll-top.visible { opacity: 1; transform: none; }
.scroll-top:hover { background: rgba(217,119,87,.1); border-color: var(--primary); }
.scroll-top svg {
  width: 16px; height: 16px;
  stroke: var(--primary);
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round; stroke-linejoin: round;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .nav-badges { display: none; }
}
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-img { order: -1; }
  .feature-split { grid-template-columns: 1fr; }
  .feature-split.reverse { direction: ltr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 18px; }
  .pricing-box { padding: 32px 24px; }
  .calc-box { padding: 28px 20px; }
  .access-card { padding: 28px 24px; }
  .wa-concierge { padding: 28px 24px; }
  .wa-input-row { flex-direction: column; gap: 10px; }
  .wa-input { border-radius: 10px; }
  .wa-fix-btn { border-radius: 10px; width: 100%; justify-content: center; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-drawer { display: flex; opacity: 0; pointer-events: none; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .wa-float { bottom: 16px; right: 16px; padding: 12px 16px; font-size: .88rem; }
  .section { padding: 52px 20px; }
  .wa-second-row { flex-direction: column; align-items: flex-start; }
}

/* ── FOCUS STATES ── */
a:focus-visible,
.btn:focus-visible,
.faq-q:focus-visible,
.violation-link:focus-visible,
.wa-fix-btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── PREFERS REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}