/* =============================================================
   HALLAL. — INDONESIA HALAL CERTIFICATION
   style.css — Main stylesheet
   ============================================================= */

/* ---- Custom Properties — Brand Manual v2, April 2026 ---- */
:root {
  /* Primary brand colours */
  --navy:         #0E2A47;   /* Trust Navy — nav, hero, dark containers */
  --navy-dark:    #091c30;
  --navy-mid:     #163454;
  --teal:         #00A896;   /* Digital Teal — links, icons, accents */
  --teal-dark:    #007A6E;
  --teal-light:   #E0F7F5;
  --amber:        #F59E0B;   /* Certified Amber — CTAs, badges */
  --amber-dark:   #D97706;
  --amber-light:  #FEF3C7;

  /* Kept for BPJPH badge (official colour) */
  --purple:       #6b2f8a;

  /* Neutrals */
  --white:        #ffffff;
  --off-white:    #F8FAFC;
  --border:       #E2E8F0;
  --text:         #0F172A;
  --muted:        #64748B;
  --danger:       #dc2626;

  /* Legacy aliases — keeps existing markup working */
  --green:        var(--teal);
  --green-dark:   var(--navy);
  --green-mid:    var(--teal-dark);
  --green-light:  var(--teal-light);
  --gold:         var(--amber);
  --gold-dark:    var(--amber-dark);
  --gold-light:   var(--amber-light);

  --radius-sm:    6px;
  --radius:       12px;
  --radius-lg:    18px;
  --radius-xl:    24px;

  --shadow-sm:    0 1px 4px rgba(14,42,71,.07);
  --shadow:       0 4px 20px rgba(14,42,71,.09);
  --shadow-lg:    0 8px 40px rgba(14,42,71,.14);

  --transition:   all .2s ease;
  --font:         'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Plus Jakarta Sans', 'Inter', -apple-system, sans-serif;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--text); background: var(--white); line-height: 1.65; -webkit-font-smoothing: antialiased; }
img, svg { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul, ol { list-style: none; }
address { font-style: normal; }
button { cursor: pointer; font-family: var(--font); }

/* ---- Language switching ---- */
[data-lang]           { display: none; }
body[data-active-lang="en"] [data-lang="en"] { display: revert; }
body[data-active-lang="id"] [data-lang="id"] { display: revert; }
/* Fix: revert has higher specificity (0,2,1) than .btn (0,1,0) — restore inline-flex
   when data-lang is placed directly on a .btn or .lang-btn element */
body[data-active-lang="en"] .btn[data-lang="en"],
body[data-active-lang="id"] .btn[data-lang="id"]  { display: inline-flex; }
body[data-active-lang="en"] .lang-btn[data-lang="en"],
body[data-active-lang="id"] .lang-btn[data-lang="id"] { display: inline-flex; }
span[data-lang]       { display: none; }
body[data-active-lang="en"] span[data-lang="en"] { display: inline; }
body[data-active-lang="id"] span[data-lang="id"] { display: inline; }

/* ---- Layout helpers ---- */
.container   { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section     { padding: 96px 0; }
.section--alt  { background: var(--off-white); }
.section--dark { background: var(--green-dark); color: var(--white); }
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.mt-48 { margin-top: 48px; }

/* ---- Section headers ---- */
.section__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section__title {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 1.18;
  color: var(--navy);
  margin-bottom: 16px;
  font-family: var(--font-display);
  letter-spacing: -.4px;
}
.section--dark .section__title { color: var(--white); }
.section__sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 680px;
  margin-bottom: 56px;
  line-height: 1.7;
}
.section--dark .section__sub { color: rgba(255,255,255,.72); }
.text-center .section__sub { margin-left: auto; margin-right: auto; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 15px;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  line-height: 1;
}
/* Primary — Trust Navy */
.btn--green  { background: var(--navy); color: var(--white); }
.btn--green:hover { background: var(--navy-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(14,42,71,.3); }
/* CTA — Certified Amber */
.btn--gold   { background: var(--amber); color: #0F172A; font-weight: 800; }
.btn--gold:hover { background: var(--amber-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(245,158,11,.35); color: #0F172A; }
/* Outline — Teal */
.btn--outline { border-color: var(--teal); color: var(--teal); background: transparent; }
.btn--outline:hover { background: var(--teal); color: var(--white); }
/* Ghost white (on dark bg) */
.btn--outline-white { border-color: rgba(255,255,255,.4); color: var(--white); background: transparent; }
.btn--outline-white:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.65); }
.btn--lg { padding: 15px 32px; font-size: 16px; }
.btn--full { width: 100%; }

/* ====================================================
   NAVBAR  — Brand Manual v2 (Trust Navy)
==================================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 2px 16px rgba(14,42,71,.35);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}

/* ── Logo ── */
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -.4px;
  flex-shrink: 0;
  font-family: var(--font-display);
}
.navbar__logo-img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  flex-shrink: 0;
  display: block;
  /* subtle ring to lift icon off dark bg */
  box-shadow: 0 0 0 1.5px rgba(255,255,255,.15);
}
.navbar__logo-text { white-space: nowrap; }
.navbar__logo-dot { color: var(--amber); margin-left: -1px; }

/* ── Nav links (centered, takes remaining space) ── */
.navbar__links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
.navbar__links a {
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,.92);
  padding: 6px 13px;
  border-radius: 6px;
  transition: color .18s, background .18s;
  position: relative;
  white-space: nowrap;
}
.navbar__links a:hover {
  color: #ffffff;
  background: rgba(255,255,255,.07);
}
/* Teal underline on active/hover */
.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
  transition: width .2s ease;
}
.navbar__links a:hover::after { width: calc(100% - 16px); }

/* ── Right cluster ── */
.navbar__right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Language switcher */
.lang-switch {
  display: flex;
  gap: 2px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 6px;
  padding: 3px;
}
.lang-btn {
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  border: none;
  background: transparent;
  color: rgba(255,255,255,.5);
  transition: var(--transition);
  cursor: pointer;
}
.lang-btn.active {
  background: rgba(255,255,255,.14);
  color: #ffffff;
}
.lang-btn:hover:not(.active) { color: rgba(255,255,255,.8); }

/* CTA button — Amber */
.navbar__cta {
  font-size: 13.5px;
  font-weight: 700;
  padding: 9px 20px;
  background: var(--amber);
  color: #0F172A;
  border-radius: var(--radius-sm);
  border: none;
  transition: background .18s, transform .15s, box-shadow .18s;
  white-space: nowrap;
}
.navbar__cta:hover {
  background: var(--amber-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(245,158,11,.35);
  color: #0F172A;
}

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}
.navbar__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,.8);
  border-radius: 2px;
  transition: var(--transition);
}

/* ====================================================
   URGENCY BANNER
==================================================== */
.urgency-banner {
  background: #7c1d1d;
  color: var(--white);
  padding: 10px 0;
  font-size: 13px;
  line-height: 1.5;
}
.urgency-banner__inner {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.urgency-banner__icon { font-size: 16px; flex-shrink: 0; }
.urgency-banner a { color: #fca5a5; text-decoration: underline; font-weight: 700; }

/* ====================================================
   HERO
==================================================== */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #163d5e 100%);
  color: var(--white);
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 700px 500px at 85% -10%, rgba(0,168,150,.12) 0%, transparent 68%),
    radial-gradient(ellipse 500px 400px at 5% 110%, rgba(245,158,11,.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,168,150,.15);
  border: 1px solid rgba(0,168,150,.4);
  color: var(--amber);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero__title {
  font-size: clamp(30px, 4.2vw, 54px);
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 22px;
  letter-spacing: -.5px;
}
.hero__title { font-family: var(--font-display); letter-spacing: -.5px; }
.hero__title em { font-style: normal; color: var(--amber); }
.hero__sub {
  font-size: 17px;
  color: rgba(255,255,255,.8);
  margin-bottom: 36px;
  max-width: 540px;
  line-height: 1.7;
}
.hero__sub strong { color: rgba(255,255,255,.95); }
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.hero__trust {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero__trust li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.7);
}

/* ---- Cert Card (Hero right) ---- */
.cert-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-xl);
  padding: 28px;
  backdrop-filter: blur(6px);
}
.cert-card__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 20px;
}
.cert-card__logo-wrap {
  background: linear-gradient(135deg, #1f8f4e 0%, #27ae60 50%, #1f8f4e 100%);
  border: 2px solid #27ae60;
  box-shadow: 0 4px 18px rgba(39,174,96,.35), inset 0 0 0 4px rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: center;
  margin-bottom: 20px;
}
.cert-card__logo {
  width: 140px;
  height: 140px;
  margin: 0 auto 12px;
}
.cert-card__logo-caption {
  font-size: 11px;
  color: rgba(255,255,255,.55);
  line-height: 1.55;
}
.cert-card__number {
  background: rgba(255,255,255,.06);
  border-radius: var(--radius-sm);
  padding: 14px;
  margin-bottom: 16px;
}
.cert-card__number-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 6px;
}
.cert-card__number-value {
  font-size: 15px;
  font-weight: 700;
  font-family: 'Courier New', monospace;
  color: var(--amber);
  letter-spacing: .04em;
  margin-bottom: 6px;
}
.cert-card__number-note {
  font-size: 11px;
  color: rgba(255,255,255,.5);
  line-height: 1.5;
}
.cert-card__number-note strong { color: rgba(255,255,255,.8); }
.cert-card__facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.cert-card__fact {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: rgba(255,255,255,.05);
  border-radius: var(--radius-sm);
  padding: 10px;
}
.cert-card__fact-icon { font-size: 16px; flex-shrink: 0; }
.cert-card__fact strong {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 2px;
}
.cert-card__fact span {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.85);
}

/* ====================================================
   PROOF BAR
==================================================== */
.proof-bar {
  background: var(--teal-light);
  padding: 22px 0;
  border-bottom: 1px solid #b2e8e3;
}
.proof-bar__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.proof-bar__label {
  font-size: 11px;
  font-weight: 700;
  color: var(--teal-dark);
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
}
.proof-bar__divider {
  width: 1px;
  height: 32px;
  background: #8dd8d3;
}
.proof-stat { text-align: center; }
.proof-stat__num {
  font-size: 22px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 3px;
}
.proof-stat__label { font-size: 11px; color: var(--muted); }

/* ====================================================
   PRODUCT CATEGORIES
==================================================== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.cat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  transition: var(--transition);
}
.cat-card:hover {
  border-color: var(--teal);
  box-shadow: 0 4px 20px rgba(0,168,150,.1);
  transform: translateY(-3px);
}
.cat-card__icon {
  font-size: 36px;
  margin-bottom: 14px;
}
.cat-card__name {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.cat-card__desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 14px;
}
.cat-card__tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}
.cat-card__tag--mandatory { background: #fee2e2; color: #b91c1c; }
.cat-card__tag--deadline  { background: #fef3c7; color: #92400e; }
.cat-card__tag--case      { background: var(--teal-light); color: var(--teal-dark); }

/* ====================================================
   THREE PATHWAYS
==================================================== */
.pathway {
  border-radius: var(--radius-xl);
  margin-bottom: 28px;
  overflow: hidden;
}
.pathway__badge {
  padding: 8px 24px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.pathway--primary   { border: 2px solid var(--navy); }
.pathway--primary .pathway__badge   { background: var(--navy); color: rgba(255,255,255,.7); }
.pathway--secondary { border: 2px solid var(--gold); }
.pathway--secondary .pathway__badge { background: var(--gold-light); color: var(--gold-dark); }
.pathway--tertiary  { border: 2px solid var(--purple); }
.pathway--tertiary .pathway__badge  { background: rgba(107,47,138,.08); color: var(--purple); }

.pathway__inner { padding: 32px; }
.pathway__head {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}
.pathway__num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 900;
  flex-shrink: 0;
}
.pathway--primary   .pathway__num { background: var(--navy); color: var(--white); }
.pathway--secondary .pathway__num { background: var(--amber); color: #0F172A; }
.pathway--tertiary  .pathway__num { background: var(--purple); color: var(--white); }

.pathway__kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.pathway--primary   .pathway__kicker { color: var(--teal-dark); }
.pathway--secondary .pathway__kicker { color: var(--amber-dark); }
.pathway--tertiary  .pathway__kicker { color: var(--purple); }

.pathway__title {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  font-family: var(--font-display);
  line-height: 1.25;
}
.pathway__desc {
  font-size: 15px;
  color: #374151;
  line-height: 1.75;
  margin-bottom: 20px;
}
.pathway__cols {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  margin-top: 20px;
}
.pathway__col-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 12px;
}
.pathway__list { display: flex; flex-direction: column; gap: 8px; }
.pathway__list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: #374151;
  line-height: 1.55;
}
.pathway__list li::before {
  content: '→';
  flex-shrink: 0;
  font-weight: 700;
  margin-top: 1px;
}
.pathway--primary   .pathway__list li::before { color: var(--teal); }
.pathway--secondary .pathway__list li::before { color: var(--amber-dark); }
.pathway--tertiary  .pathway__list li::before { color: var(--purple); }

.pathway__meta { display: flex; flex-direction: column; gap: 14px; }
.pathway__meta-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  padding: 14px;
}
.pathway__meta-icon { font-size: 18px; flex-shrink: 0; }
.pathway__meta-item strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
  margin-bottom: 4px;
}
.pathway__meta-item span {
  font-size: 13px;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.5;
}

/* Callout box (important rule) */
.pathway__callout {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fffbeb;
  border: 1px solid #fbbf24;
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.6;
}
.pathway__callout-icon { font-size: 20px; flex-shrink: 0; }
.pathway__callout strong { display: block; font-weight: 700; margin-bottom: 4px; color: #92400e; }
.pathway__callout span { color: #374151; }

.pathways__cta-note {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 20px;
}

/* ====================================================
   HOW IT WORKS
==================================================== */
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  position: relative;
  margin-bottom: 48px;
}
.steps::before {
  content: '';
  position: absolute;
  top: 35px;
  left: calc(10% + 36px);
  right: calc(10% + 36px);
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.step {
  text-align: center;
  padding: 0 10px;
  position: relative;
  z-index: 1;
}
.step__num {
  width: 72px;
  height: 72px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 900;
  margin: 0 auto 18px;
  border: 4px solid var(--white);
  box-shadow: 0 0 0 2px var(--teal);
}
.step__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.35;
}
.step__desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}

/* ====================================================
   MANDATORY DEADLINE TIMELINE
==================================================== */
.timeline {
  max-width: 760px;
  margin: 0 auto 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 40px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: rgba(255,255,255,.2);
}
.timeline__item {
  position: relative;
  padding: 0 0 36px 28px;
}
.timeline__item:last-child { padding-bottom: 0; }
.timeline__dot {
  position: absolute;
  left: -34px;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 3px solid;
}
.timeline__item--done   .timeline__dot { background: rgba(255,255,255,.4); border-color: rgba(255,255,255,.5); }
.timeline__item--urgent .timeline__dot { background: #f5c842; border-color: #f5c842; box-shadow: 0 0 0 4px rgba(245,200,66,.3); }
.timeline__date {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 6px;
}
.timeline__item--urgent .timeline__date { color: #f5c842; }
.timeline__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.timeline__desc {
  font-size: 14px;
  color: rgba(255,255,255,.7);
  line-height: 1.65;
}

/* ====================================================
   TEAM
==================================================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  transition: var(--transition);
}
.team-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.team-card__photo-wrap {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
  border: 3px solid var(--green-light);
  flex-shrink: 0;
}
.team-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.team-card__avatar {
  width: 88px;
  height: 88px;
  background: var(--green-dark);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 800;
  margin: 0 auto 16px;
}
.team-card__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 4px;
  line-height: 1.35;
}
.team-card__role {
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 12px;
}
.team-card__bio {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* Group affiliation banner */
.group-banner {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--green-light);
  border: 1px solid #b0d9be;
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-top: 40px;
}
.group-banner__logo { font-size: 32px; flex-shrink: 0; }
.group-banner__title {
  font-size: 17px;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 8px;
}
.group-banner__desc {
  font-size: 14px;
  color: #374151;
  line-height: 1.7;
}
.group-banner__desc a { color: var(--green); font-weight: 700; }
.group-banner__desc a:hover { text-decoration: underline; }

/* ====================================================
   TESTIMONIALS
==================================================== */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.testi-card__stars {
  color: var(--gold);
  font-size: 15px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testi-card__quote {
  font-size: 14px;
  color: #374151;
  line-height: 1.72;
  font-style: italic;
  flex: 1;
  margin-bottom: 20px;
}
.testi-card__author { display: flex; align-items: center; gap: 12px; }
.testi-card__avatar {
  width: 42px;
  height: 42px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.testi-card__avatar-img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--green);
}
.testi-card__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--green-dark);
  font-style: normal;
}
.testi-card__role { font-size: 12px; color: var(--muted); }

/* ====================================================
   FAQ
==================================================== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--green-dark);
  line-height: 1.45;
}
.faq-q:hover { color: var(--green); }
.faq-icon {
  font-size: 22px;
  color: var(--green);
  flex-shrink: 0;
  transition: transform .2s;
  font-weight: 400;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  display: none;
  font-size: 15px;
  color: var(--muted);
  padding-bottom: 22px;
  line-height: 1.75;
}
.faq-item.open .faq-a { display: block; }
.faq-a strong { color: var(--green-dark); font-weight: 700; }

/* ====================================================
   BLOG
==================================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.blog-card__thumb {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  overflow: hidden;
  position: relative;
  background: var(--green-dark);
}
.blog-card__thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}
.blog-card:hover .blog-card__thumb-img { transform: scale(1.05); }
.blog-card__thumb--1 { background: linear-gradient(135deg, #091c30, #0E2A47); }
.blog-card__thumb--2 { background: linear-gradient(135deg, #1a3a0a, #4a7a1a); }
.blog-card__thumb--3 { background: linear-gradient(135deg, #3a200a, #8a6a1a); }
.blog-card__body { padding: 22px; }
.blog-card__cat {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 8px;
}
.blog-card__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.45;
  margin-bottom: 8px;
}
.blog-card__meta {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 14px;
}
.blog-card__link {
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
}
.blog-card__link:hover { text-decoration: underline; }

/* ====================================================
   LEAD GEN / CONTACT
==================================================== */
.leadgen {
  background: linear-gradient(135deg, #091c30 0%, #0E2A47 100%);
  padding: 96px 0;
}
.leadgen__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.leadgen__pitch .section__label { color: var(--gold); }
.leadgen__title {
  font-size: clamp(24px, 3.2vw, 38px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 16px;
}
.leadgen__title em { font-style: normal; color: #f5c842; }
.leadgen__sub {
  font-size: 15px;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
  margin-bottom: 28px;
}
.leadgen__checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.leadgen__checks li {
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.85);
  line-height: 1.5;
}
body[data-active-lang="en"] .leadgen__checks li[data-lang="en"],
body[data-active-lang="id"] .leadgen__checks li[data-lang="id"] {
  display: flex;
}
body[data-active-lang="en"] .leadgen__checks li[data-lang="id"],
body[data-active-lang="id"] .leadgen__checks li[data-lang="en"] {
  display: none !important;
}
.leadgen__checks li::before {
  content: '✓';
  color: #f5c842;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}
.leadgen__note {
  font-size: 13px;
  color: rgba(255,255,255,.45);
}

/* Form card */
.leadgen__form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px;
}
.leadgen__form-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 4px;
}
.leadgen__form-sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 28px;
}

/* Form elements */
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form__field {
  margin-bottom: 16px;
}
.form__field label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: #374151;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 6px;
}
.form__field input,
.form__field select,
.form__field textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  color: var(--text);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: 14px;
  font-family: var(--font);
  outline: none;
  transition: border-color .15s;
  background: var(--white);
  line-height: 1.5;
}
.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus { border-color: var(--green); }
.form__field input.error,
.form__field select.error { border-color: var(--danger); }
.form__error {
  display: block;
  font-size: 11px;
  color: var(--danger);
  margin-top: 4px;
  min-height: 16px;
}
.form__field--checkbox { margin-bottom: 20px; }
.form__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #374151;
  cursor: pointer;
  line-height: 1.5;
}
.form__checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--green);
  cursor: pointer;
  margin-top: 1px;
}
.form__note {
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  margin-top: 12px;
}
.form__success {
  text-align: center;
  padding: 32px 16px;
}
.form__success-icon {
  width: 64px;
  height: 64px;
  background: var(--green-light);
  color: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 900;
  margin: 0 auto 16px;
}
.form__success h4 {
  font-size: 18px;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 8px;
}
.form__success p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ====================================================
   FOOTER
==================================================== */
.footer {
  background: #060e08;
  color: rgba(255,255,255,.55);
  padding: 72px 0 32px;
}
.footer__top {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.3fr;
  gap: 40px;
  margin-bottom: 56px;
}
/* Footer logo — matches first-version style */
.footer__logo {
  display: inline-block;
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.4px;
  margin-bottom: 14px;
}
.footer__logo-dot { color: var(--gold); }
.footer__desc { font-size: 13px; line-height: 1.75; margin-bottom: 16px; }
.footer__group-note {
  font-size: 12px;
  color: rgba(255,255,255,.4);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.footer__group-link {
  color: rgba(255,255,255,.7);
  font-weight: 600;
  transition: var(--transition);
}
.footer__group-link:hover { color: var(--white); text-decoration: underline; }
.footer__socials { display: flex; gap: 8px; }
.footer__social-btn {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  transition: var(--transition);
}
.footer__social-btn:hover { border-color: var(--gold); color: var(--gold); }
.footer__col-title {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,.9);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer__links { display: flex; flex-direction: column; gap: 9px; }
.footer__links a { font-size: 13px; transition: color .15s; }
.footer__links a:hover { color: var(--white); }
.footer__address { display: flex; flex-direction: column; gap: 8px; font-size: 13px; margin-bottom: 16px; }
.footer__address a:hover { color: var(--white); }
.footer__hours { color: rgba(255,255,255,.35); font-size: 12px; }
.footer__lang {
  display: flex;
  gap: 3px;
  background: rgba(255,255,255,.06);
  border-radius: 6px;
  padding: 3px;
  margin-top: 16px;
  width: fit-content;
}
.footer__lang-btn {
  padding: 5px 11px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  border: none;
  background: transparent;
  color: rgba(255,255,255,.4);
  transition: var(--transition);
}
.footer__lang-btn.active {
  background: rgba(255,255,255,.12);
  color: var(--white);
}
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom-left { font-size: 12px; line-height: 1.6; }
.footer__bottom-left a { color: rgba(255,255,255,.55); }
.footer__bottom-left a:hover { color: var(--white); }
.footer__bottom-right { display: flex; gap: 20px; }
.footer__bottom-right a { font-size: 12px; transition: color .15s; }
.footer__bottom-right a:hover { color: var(--white); }

/* ─── SCROLL-REVEAL ANIMATION ─────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s ease var(--reveal-delay, 0ms),
              transform .5s ease var(--reveal-delay, 0ms);
}
.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── FORM ERROR / FEEDBACK STYLES ───────────────────────── */
.form__error {
  display: block;
  font-size: 12px;
  color: var(--danger);
  margin-top: 4px;
}
.form__field input.is-invalid,
.form__field select.is-invalid,
.form__field textarea.is-invalid {
  border-color: var(--danger);
  outline: 2px solid rgba(220,38,38,.15);
}

.form__feedback {
  display: none;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  margin-top: 16px;
}
.form__feedback--success {
  background: var(--green-light);
  color: var(--green-dark);
  border: 1px solid rgba(0,168,150,.25);
}
.form__feedback--warning {
  background: #fef9c3;
  color: #92400e;
  border: 1px solid #fde047;
}
.form__feedback--error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

/* ─── SPINNER (button loading state) ─────────────────────── */
@keyframes spin { to { transform: rotate(360deg); } }
.spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
  vertical-align: middle;
}

/* ─── NAVBAR SCROLLED STATE ───────────────────────────────── */
.navbar--scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,.12);
}

/* ─── HAMBURGER BUTTON ────────────────────────────────────── */
.navbar__hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--green-dark);
  padding: 4px 8px;
  line-height: 1;
  z-index: 9999;
}

/* ─── MOBILE NAV OVERLAY CLOSE BUTTON ────────────────────── */
.navbar__links.is-open a {
  font-weight: 700;
  letter-spacing: .02em;
}

/* =============================================================
   NEW SECTIONS — Added for CRO improvements
   ============================================================= */

/* ── Sticky CTA Bar ─────────────────────────────────────────── */
.sticky-cta {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--navy-dark);
  border-bottom: 2px solid var(--amber);
  padding: 8px 16px;
  max-height: 8vh;
  overflow: hidden;
  transition: transform .3s ease, opacity .3s ease;
}
.sticky-cta.is-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}
.sticky-cta__inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.sticky-cta__text {
  color: #fff;
  font-size: 13px;
  line-height: 1.4;
}
.sticky-cta__btn {
  display: inline-flex;
  align-items: center;
  background: var(--amber);
  color: #0F172A;
  font-weight: 800;
  font-size: 13px;
  padding: 7px 18px;
  border-radius: 6px;
  white-space: nowrap;
  transition: var(--transition);
  min-height: 36px;
}
.sticky-cta__btn:hover { background: var(--amber-dark); color: #fff; }

/* Offset content for sticky bar */
body { padding-top: 46px; }

/* ── Adjust navbar when sticky CTA is present ───────────────── */
/* Navbar sticks just below the fixed CTA bar (46px tall) */
.navbar { top: 46px; transition: top .3s ease; }
/* When CTA slides away, navbar rises to top */
.sticky-cta.is-hidden ~ .navbar { top: 0; }

/* ── Button small variant ───────────────────────────────────── */
.btn--sm { padding: 9px 18px; font-size: 13px; min-height: 48px; }

/* ── Hero bullets ───────────────────────────────────────────── */
.hero__trust--bullets {
  margin: 20px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
}
.hero__trust--bullets li {
  font-size: 15px;
  color: rgba(255,255,255,.9);
  padding: 0;
}

/* ── Consequences Section ───────────────────────────────────── */
.section--danger {
  background: #991b1b;
  color: #fff;
  padding: 80px 0;
}
.section--danger .section__label { color: #fca5a5; }
.section--danger .section__title { color: #fff; }
.section--danger .section__sub { color: rgba(255,255,255,.8); margin-bottom: 40px; }

.consequences-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 0;
}
.consequence-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: var(--transition);
}
.consequence-card:hover {
  background: rgba(255,255,255,.15);
  transform: translateY(-2px);
}
.consequence-card__icon { font-size: 36px; margin-bottom: 12px; }
.consequence-card__title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.consequence-card p {
  font-size: 14px;
  color: rgba(255,255,255,.8);
  line-height: 1.6;
  margin: 0;
}

/* ── Path Comparison Table ──────────────────────────────────── */
.path-table-wrap {
  overflow-x: auto;
  margin-bottom: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.path-table__hint {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 12px;
}
.path-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
}
.path-table thead {
  background: var(--green-dark);
  color: #fff;
}
.path-table th {
  padding: 14px 16px;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.path-table__row {
  cursor: pointer;
  transition: background .15s;
  border-bottom: 1px solid var(--border);
}
.path-table__row:hover { background: var(--off-white); }
.path-table__row--highlight { background: #f0fdf4; }
.path-table__row--highlight:hover { background: #dcfce7; }
.path-table__row td {
  padding: 16px;
  font-size: 14px;
  vertical-align: middle;
}
.path-table__row td:first-child { font-weight: 600; }

.path-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-weight: 900;
  font-size: 13px;
  margin-right: 8px;
  flex-shrink: 0;
}
.path-badge--a { background: var(--green-dark); color: #fff; }
.path-badge--b { background: var(--gold); color: #fff; }
.path-badge--c { background: var(--purple); color: #fff; }

.path-popular-tag {
  display: inline-block;
  background: #dcfce7;
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  margin-right: 6px;
}

.path-cost { font-size: 20px; font-weight: 800; color: var(--gold-dark); letter-spacing: 2px; }
.path-cost--low { color: var(--green); }
.path-card__stat-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.cost-dollar { display: inline-block; }
.cost-dollar--active { color: var(--gold-dark); }
.cost-dollar--inactive { color: #d1d5db; opacity: 0.4; }

.path-table__detail td { padding: 0; }
.path-detail {
  background: #f8faf8;
  border-left: 4px solid var(--green);
  padding: 20px 24px;
}
.path-detail p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 16px;
}
.path-detail__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ── Countdown Timer ────────────────────────────────────────── */
.countdown-wrap {
  background: #7f1d1d;
  border: 2px solid #ef4444;
  border-radius: var(--radius);
  padding: 24px 28px;
  text-align: center;
  margin-bottom: 28px;
}
.countdown-label {
  color: #fca5a5;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 12px;
}
.countdown-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
}
.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.countdown-num {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  min-width: 60px;
  text-align: center;
}
.countdown-text {
  font-size: 11px;
  font-weight: 600;
  color: #fca5a5;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.countdown-sep {
  font-size: 36px;
  font-weight: 900;
  color: #ef4444;
  line-height: 1;
  margin-top: -8px;
}
.countdown-sub {
  font-size: 12px;
  color: rgba(255,255,255,.7);
  line-height: 1.5;
}

/* ── Exit Popup ─────────────────────────────────────────────── */
.exit-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.exit-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(4px);
}
.exit-popup__box {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  max-width: 460px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.exit-popup__close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 20px;
  color: var(--muted);
  padding: 4px 8px;
}
.exit-popup__close:hover { color: var(--text); }
.exit-popup__icon { font-size: 40px; margin-bottom: 12px; }
.exit-popup__title {
  font-size: 22px;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}
.exit-popup__box p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.6;
}
.exit-popup__note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 10px !important;
}

/* ── Lead Gen section with countdown ─────────────────────────── */
.leadgen__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 900px) {
  .leadgen__inner { grid-template-columns: 1fr; gap: 32px; }
  .countdown-wrap { margin-bottom: 0; }
}

/* ── Mobile Enhancements ──────────────────────────────────────── */
@media (max-width: 768px) {
  /* Sticky CTA smaller on mobile */
  .sticky-cta { max-height: 56px; padding: 8px 12px; }
  .sticky-cta__text { display: none; }
  .sticky-cta__btn { font-size: 12px; padding: 8px 14px; min-height: 40px; width: 100%; justify-content: center; }

  body { padding-top: 0; }

  /* Sections background alternation for visual separation */
  .section { padding: 60px 0; }
  .section:nth-of-type(even) { background: var(--off-white); }

  /* Form full width */
  .leadgen__form-card { padding: 24px 20px; }
  .form__field input,
  .form__field select,
  .form__field textarea { font-size: 16px; /* prevents iOS zoom */ }

  /* Buttons touch friendly */
  .btn { min-height: 48px; min-width: 48px; }
  .btn--sm { min-height: 44px; }

  /* Table on mobile: stack columns */
  .path-table thead { display: none; }
  .path-table, .path-table tbody, .path-table tr, .path-table td { display: block; width: 100%; }
  .path-table__row td { padding: 10px 16px; border-bottom: 1px solid var(--border); }
  .path-table__row td:first-child { background: var(--green-dark); color: #fff; padding: 14px 16px; font-size: 15px; }
  .path-table__row--highlight td:first-child { background: var(--gold); }
  .path-table__row td::before {
    content: attr(data-label);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--muted);
    display: block;
    margin-bottom: 4px;
  }

  /* Consequences grid */
  .consequences-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .consequence-card { padding: 20px 16px; }

  /* Countdown */
  .countdown-num { font-size: 32px; min-width: 48px; }

  /* Navigation hamburger */
  .navbar__hamburger { display: flex; }
  .navbar__links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--green-dark);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 999;
  }
  .navbar__links.is-open { display: flex; }
  .navbar__links a {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
  }
  .navbar__cta { display: none; }
  .lang-switch { display: none; }
}

@media (max-width: 480px) {
  .consequences-grid { grid-template-columns: 1fr; }
  .sticky-cta { max-height: 52px; }
}

/* =============================================================
   HORIZONTAL PATH COMPARISON TABLE — v3
   ============================================================= */

/* ====================================================
   PATH CARDS (simplified 3-column layout)
==================================================== */
.path-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.path-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition);
  position: relative;
}
.path-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }

.path-card--featured {
  border-color: var(--amber);
  box-shadow: 0 4px 24px rgba(243,162,27,.18);
}

.path-card__featured-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.path-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 6px;
}

.path-card__name {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1.2;
}

.path-card__sub {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

.path-card__meta {
  display: flex;
  gap: 20px;
  padding: 12px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.path-card__stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.path-card__stat-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
}

.path-card__stat-val {
  font-size: 15px;
  font-weight: 700;
  color: var(--green-dark);
}

.path-card__desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
}

.path-card__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: auto;
}

.path-compare {
  margin-bottom: 40px;
}

.path-compare__scroll {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 32px rgba(0,0,0,.11);
}

.path-compare__table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  min-width: 640px;
  table-layout: fixed;
}

/* ── Header ──────────────────────────────────────────────────── */
.path-compare__th-label {
  width: 130px;
  background: #0e2a47;
}

.path-compare__th {
  background: #0e2a47;
  padding: 0 24px 24px;
  text-align: center;
  vertical-align: top;
  border-left: 1px solid rgba(255,255,255,.1);
}

.path-compare__th--featured {
  background: #0e2a47;
  border-left: 3px solid var(--gold) !important;
  border-right: 3px solid var(--gold) !important;
}

/* Tag zone — reserves same height in all 3 columns */
.path-th-tag-zone {
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.path-th-featured-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--gold);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: .07em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Badge overrides on dark header */
.path-compare__th .path-badge {
  width: 32px;
  height: 32px;
  font-size: 14px;
  flex-shrink: 0;
}

.path-compare__th .path-badge--a {
  background: rgba(255,255,255,.18);
  color: #fff;
}

.path-compare__th .path-badge--b {
  background: var(--gold);
  color: #fff;
}

.path-compare__th .path-badge--c {
  background: var(--purple);
  color: #fff;
}

.path-th-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: left;
}

.path-th-inner > div { min-width: 0; }

.path-th-inner strong {
  display: block;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
}

.path-th-inner small {
  display: block;
  color: rgba(255,255,255,.55);
  font-size: 12px;
  margin-top: 3px;
  line-height: 1.4;
}

/* ── Row label column ─────────────────────────────────────────── */
.path-compare__row th[scope="row"] {
  background: #fff;
  padding: 18px 16px;
  font-size: 11px;
  font-weight: 700;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: .1em;
  text-align: left;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

.path-compare__row--alt th[scope="row"] {
  background: #f9fafb;
}

/* ── Data cells ───────────────────────────────────────────────── */
.path-compare__row td {
  padding: 18px 20px;
  font-size: 14px;
  color: var(--text);
  text-align: center;
  border-bottom: 1px solid var(--border);
  border-left: 1px solid var(--border);
  vertical-align: middle;
  line-height: 1.6;
}

.path-compare__row--alt td {
  background: #f9fafb;
}

/* Featured column — Path B */
.path-compare__td--featured {
  background: #f0fdf4 !important;
  border-left: 3px solid #16a34a !important;
  border-right: 3px solid #16a34a !important;
}

.path-compare__row--alt .path-compare__td--featured {
  background: #e7f9ee !important;
}

/* ── CTA row ──────────────────────────────────────────────────── */
.path-compare__row--cta th[scope="row"],
.path-compare__row--cta td {
  padding: 16px 14px 20px;
  border-bottom: none;
  background: #fff;
  vertical-align: top;
}

.path-compare__row--cta .path-compare__td--featured {
  background: #f0fdf4 !important;
}

.path-compare__row--cta a {
  display: block;
  margin-bottom: 8px;
  width: 100%;
  text-align: center;
  /* More compact buttons in table */
  padding: 10px 14px;
  font-size: 13px;
  min-height: 40px;
}

.path-compare__row--cta a:last-child {
  margin-bottom: 0;
}

/* btn--outline-invert */
.btn--outline-invert {
  border: 2px solid var(--green);
  color: var(--green);
  background: transparent;
}
.btn--outline-invert:hover {
  background: var(--green);
  color: #fff;
}

/* ── Mobile: horizontal scroll ─────────────────────────────────── */
@media (max-width: 767px) {
  .path-compare__table { min-width: 540px; }
  .path-compare__th { padding: 0 12px 18px; }
  .path-compare__th-label { width: 100px; }
  .path-th-inner { gap: 8px; }
  .path-th-inner strong { font-size: 13px; }
  .path-th-inner small { display: none; }
  .path-compare__row td,
  .path-compare__row th[scope="row"] { padding: 13px 10px; font-size: 13px; }
  .path-compare__row--cta a { font-size: 12px; padding: 8px 10px; }
}


/* =============================================================
   NAVBAR — Design Polish v2
   ============================================================= */

/* Nav links — white on dark navbar */
.navbar__links a {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: color .15s, background .15s;
}

.navbar__links a:hover {
  color: #ffffff;
  background: rgba(255,255,255,.12);
}

.navbar__links a.is-active {
  color: #ffffff;
  font-weight: 600;
}

/* CTA button */
.navbar__cta {
  font-size: 13.5px;
  padding: 10px 22px;
  letter-spacing: .01em;
}


/* =============================================================
   DESIGN SYSTEM REFINEMENTS — General Polish v2
   ============================================================= */

/* Section title — tighter, stronger */
.section__title {
  letter-spacing: -.02em;
  margin-bottom: 14px;
}

/* Section label — slightly more refined */
.section__label {
  font-size: 11px;
  letter-spacing: .16em;
}

/* Proof bar — tighten spacing */
.proof-bar {
  border-bottom: 1px solid var(--border);
}

/* Section alternation — more distinct */
.section--alt {
  background: #f8fafc;
}

/* Category cards — improve hover */
.cat-card {
  transition: transform .2s ease, box-shadow .2s ease;
}

.cat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,.1);
}

/* FAQ — better visual */
.faq-q {
  transition: color .15s;
}

.faq-q:hover {
  color: var(--green);
}

/* Blog card — lift on hover */
.blog-card {
  transition: transform .2s ease, box-shadow .2s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0,0,0,.1);
}

/* Team card — consistent */
.team-card {
  transition: transform .2s ease, box-shadow .2s ease;
}

.team-card:hover {
  transform: translateY(-3px);
}

/* Testimonial — star color */
.testi-card__stars {
  color: #f59e0b;
}

/* Steps — connecting line refinement */
.steps {
  position: relative;
}

/* Form — improve focus states */
.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(14,42,71,.12);
}

/* Urgency banner — slightly more polished */
.urgency-banner {
  background: linear-gradient(90deg, #7c1d1d 0%, #991b1b 100%);
  font-size: 13.5px;
}

/* Sticky CTA — brand override */
.sticky-cta {
  background: var(--navy-dark);
  border-bottom: 2px solid var(--amber);
}

/* Lead gen section — improve spacing */
.leadgen__inner {
  grid-template-columns: 1fr 300px 1fr;
  gap: 48px;
}

@media (max-width: 1000px) {
  .leadgen__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Footer — cleaner brand strip */
.footer__bottom {
  border-top-color: rgba(0,0,0,.08);
}

/* =============================================================
   MOBILE POLISH — Additional fixes
   ============================================================= */

@media (max-width: 768px) {
  /* Navbar hamburger area */
  .navbar__hamburger {
    display: flex;
    padding: 8px;
    border-radius: var(--radius-sm);
  }

  .navbar__hamburger:hover {
    background: rgba(255,255,255,.1);
  }

  /* Mobile nav overlay */
  .navbar__links.is-open {
    padding-top: 80px;
  }

  /* Close button in mobile overlay */
  .navbar__links.is-open::before {
    content: '✕';
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 24px;
    color: rgba(255,255,255,.8);
    cursor: pointer;
  }

  /* Comparison table on mobile — just scroll */
  .path-compare__scroll {
    border-radius: var(--radius);
  }

  /* Section spacing tighter */
  .section {
    padding: 64px 0;
  }

  /* Process steps on mobile */
  .steps {
    gap: 32px;
  }

  /* Form section */
  .leadgen {
    padding: 64px 0;
  }
}

@media (max-width: 480px) {
  /* Navbar height */
  .navbar__inner {
    height: 58px;
  }

  /* Hero buttons stacked */
  .hero__actions {
    flex-direction: column;
    gap: 12px;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* Path compare even more compact */
  .path-compare__table { min-width: 480px; }
  .path-th-inner small { display: none; }
}

/* ====================================================
   LICENSE HOLDING SECTION  (#4)
==================================================== */
.license-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 48px 0 32px;
}
.license-benefit {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  transition: var(--transition);
}
.license-benefit:hover {
  background: rgba(255,255,255,.10);
  border-color: var(--teal);
  transform: translateY(-3px);
}
.license-benefit__icon {
  font-size: 36px;
  margin-bottom: 14px;
}
.license-benefit__title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  font-family: var(--font-display);
}
.license-benefit__desc {
  font-size: 13px;
  color: rgba(255,255,255,.65);
  line-height: 1.6;
}

/* Import support callout (#6) */
.import-callout {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(0,168,150,.12);
  border: 1px solid rgba(0,168,150,.35);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 24px;
}
.import-callout__icon { font-size: 28px; flex-shrink: 0; margin-top: 2px; }
.import-callout strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 6px;
}
.import-callout p {
  font-size: 14px;
  color: rgba(255,255,255,.75);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 900px) {
  .license-benefits { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .license-benefits { grid-template-columns: 1fr; }
}

/* ====================================================
   POST-CERTIFICATION SECTION  (#5)
==================================================== */
.postcert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 48px 0 40px;
}
.postcert-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition);
}
.postcert-card:hover {
  border-color: var(--teal);
  box-shadow: 0 4px 20px rgba(0,168,150,.10);
  transform: translateY(-3px);
}
.postcert-card__icon {
  font-size: 32px;
  margin-bottom: 14px;
}
.postcert-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  font-family: var(--font-display);
}
.postcert-card__desc {
  font-size: 13.5px;
  color: #374151;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .postcert-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .postcert-grid { grid-template-columns: 1fr; }
}

/* ====================================================
   REQUIRED DOCUMENTS EXPANDED  (#7)
==================================================== */
.doc-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 12px;
}
.doc-col__title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border);
}
.doc-col ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.doc-col ul li {
  font-size: 12px;
  color: #374151;
  line-height: 1.5;
  padding-left: 14px;
  position: relative;
}
.doc-col ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
  font-size: 11px;
}
.doc-note {
  font-size: 11px;
  color: var(--muted);
  font-style: italic;
  margin-top: 10px;
}

@media (max-width: 600px) {
  .doc-cols { grid-template-columns: 1fr; }
}

/* ====================================================
   PRI CROSS-SELL CALLOUT  (#8)
==================================================== */
.pri-callout {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-xl);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 48px;
  border: 1px solid rgba(255,255,255,.08);
}
.pri-callout__body { flex: 1; }
.pri-callout__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}
.pri-callout__title {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  font-family: var(--font-display);
  line-height: 1.25;
}
.pri-callout__desc {
  font-size: 14px;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
}
.pri-callout__cta { flex-shrink: 0; }

@media (max-width: 768px) {
  .pri-callout {
    flex-direction: column;
    padding: 28px 24px;
    gap: 24px;
    text-align: center;
  }
  .pri-callout__cta { width: 100%; }
  .pri-callout__cta .btn { width: 100%; }
}

/* ====================================================
   PHOTO STRIP — real-world market context
==================================================== */
.photo-strip {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  height: 260px;
  overflow: hidden;
}
.photo-strip__item {
  position: relative;
  overflow: hidden;
}
.photo-strip__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease, filter .5s ease;
  filter: grayscale(100%) brightness(.85);
}
.photo-strip__item:hover .photo-strip__img {
  transform: scale(1.06);
  filter: grayscale(0%) brightness(1);
}
.photo-strip__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 20px 16px;
  background: linear-gradient(transparent, rgba(9,28,48,.78));
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  pointer-events: none;
}
.photo-strip__caption span {
  display: block;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -.2px;
  text-transform: none;
  font-family: var(--font-display);
  margin-top: 4px;
}

@media (max-width: 767px) {
  .photo-strip {
    grid-template-columns: 1fr;
    height: auto;
  }
  .photo-strip__item {
    height: 220px;
  }
}

/* ====================================================
   PROCESS PHOTO BLOCK — alongside certification steps
==================================================== */
.process-photo-block {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.process-photo-block__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 400px;
  position: relative;
}
.process-photo-block__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.process-photo-block__image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  border: 2px solid rgba(0,168,150,.25);
  pointer-events: none;
}
.process-photo-block__copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.process-photo-block__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--amber);
}
.process-photo-block__title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: var(--navy);
  font-family: var(--font-display);
  line-height: 1.2;
  letter-spacing: -.3px;
}
.process-photo-block__desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
}
.process-photo-block__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 8px;
}
.process-photo-stat {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 16px;
  text-align: center;
}
.process-photo-stat__num {
  font-size: 28px;
  font-weight: 900;
  color: var(--navy);
  font-family: var(--font-display);
  line-height: 1;
  margin-bottom: 4px;
}
.process-photo-stat__label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

@media (max-width: 767px) {
  .process-photo-block {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .process-photo-block__image {
    height: 260px;
  }
}

/* ====================================================
   HERO — photo background overlay
==================================================== */
.hero {
  background:
    linear-gradient(135deg, rgba(9,28,48,.94) 0%, rgba(14,42,71,.88) 55%, rgba(22,61,94,.82) 100%),
    url('../images/photo-family-dining.jpg') center 30% / cover no-repeat;
}
