/* ============================================================
   FOGS Consultants — Shared Design System
   Brand: Authoritative · Corporate Modern · Kerala-focused
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Inter:wght@400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:wght,FILL@100..700,0..1&display=swap');

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

:root {
  /* Brand Colors */
  --navy:       #0F172A;
  --navy-light: #1E293B;
  --blue:       #3755C3;
  --blue-light: #708CFC;
  --gold:       #F59E0B;
  --gold-light: #FCD34D;

  /* Surface / Neutral */
  --surface:        #f8f9ff;
  --surface-low:    #eff4ff;
  --surface-card:   #ffffff;
  --surface-dim:    #cbdbf5;
  --on-surface:     #0b1c30;
  --on-surface-muted: #45464d;
  --outline:        #76777d;
  --outline-soft:   #c6c6cd;

  /* Semantic */
  --primary:   var(--navy);
  --secondary: var(--blue);
  --accent:    var(--gold);

  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Spacing */
  --container-max: 1280px;
  --section-desktop: 5rem;
  --section-mobile:  3.5rem;
  --gutter: 1.5rem;

  /* Radius */
  --radius-sm:  0.375rem;
  --radius:     0.5rem;
  --radius-md:  0.75rem;
  --radius-lg:  1rem;
  --radius-xl:  1.5rem;
  --radius-full: 9999px;

  /* Shadow */
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow:    0 4px 6px -1px rgba(0,0,0,.08), 0 2px 4px -2px rgba(0,0,0,.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,.08), 0 4px 6px -4px rgba(0,0,0,.06);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,.1),  0 8px 10px -6px rgba(0,0,0,.04);
  --shadow-blue: 0 10px 30px rgba(55,85,195,.2);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--on-surface);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; height: auto; }
button { font-family: inherit; cursor: pointer; border: none; }
h1,h2,h3,h4,h5 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; color: var(--navy); }
::selection { background: rgba(55,85,195,.15); }

/* ── CONTAINER ── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
@media(min-width:768px){ .container { padding: 0 2rem; } }

/* ── MATERIAL SYMBOLS ── */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  vertical-align: middle;
  font-size: 1.25rem;
}

/* ── GLASS CARD ── */
.glass-card {
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.35);
}

/* ============================================================
   NAVBAR
   ============================================================ */
#site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 72px;
  background: rgba(248,249,255,.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(200,210,255,.35);
  box-shadow: var(--shadow-sm);
  transition: background .3s, box-shadow .3s;
}
#site-nav.scrolled {
  background: rgba(255,255,255,.95);
  box-shadow: var(--shadow);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1rem;
}

/* Brand / Logo */
.nav-brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-shrink: 0;
}
.nav-brand img {
  height: 48px;
  width: auto;
  object-fit: contain;
}
.nav-brand-text { display: flex; flex-direction: column; }
.nav-brand-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: .9rem;
  color: var(--navy);
  line-height: 1.15;
}
.nav-brand-tag {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--blue);
  text-transform: uppercase;
}

/* Desktop Links */
.nav-links {
  display: none;
  align-items: center;
  gap: .15rem;
  list-style: none;
}
@media(min-width:900px){ .nav-links { display: flex; } }
.nav-links a {
  padding: .45rem .85rem;
  border-radius: var(--radius-sm);
  font-size: .875rem;
  font-weight: 600;
  color: var(--on-surface-muted);
  letter-spacing: .03em;
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--blue);
  background: rgba(55,85,195,.07);
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-shrink: 0;
}
.btn-nav-cta {
  display: none;
  align-items: center;
  gap: .35rem;
  padding: .55rem 1.1rem;
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .03em;
  transition: background .2s, transform .2s, box-shadow .2s;
  white-space: nowrap;
}
@media(min-width:640px){ .btn-nav-cta { display: flex; } }
.btn-nav-cta:hover {
  background: var(--blue);
  transform: translateY(-1px);
  box-shadow: var(--shadow-blue);
}
.btn-wa-nav {
  display: flex;
  align-items: center;
  gap: .3rem;
  padding: .55rem .9rem;
  background: #0f7a32;
  color: #fff;
  border-radius: var(--radius);
  font-size: .78rem;
  font-weight: 700;
  transition: background .2s, transform .2s;
  white-space: nowrap;
}
.btn-wa-nav:hover { background: #0d6829; transform: translateY(-1px); }

/* Mobile Hamburger */
.nav-hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  background: var(--surface-low);
  border: 1px solid var(--outline-soft);
  cursor: pointer;
  transition: background .2s;
  color: var(--navy);
}
.nav-hamburger:hover { background: rgba(55,85,195,.1); }
@media(min-width:900px){ .nav-hamburger { display: none; } }

/* Mobile Menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: 72px; left: .75rem; right: .75rem;
  z-index: 99;
  flex-direction: column;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(200,210,255,.4);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: .75rem;
  gap: .15rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: .65rem .9rem;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 600;
  color: var(--on-surface);
  transition: background .15s, color .15s;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.nav-mobile a:hover { background: var(--surface-low); color: var(--blue); }
.nav-mobile-divider {
  border: none;
  border-top: 1px solid var(--outline-soft);
  margin: .4rem 0;
}
.nav-mobile-wa {
  background: #0f7a32 !important;
  color: #fff !important;
  border-radius: var(--radius) !important;
  justify-content: center !important;
  margin-top: .2rem;
}
.nav-mobile-wa:hover { background: #0d6829 !important; }

/* Body offset for fixed nav */
body { padding-top: 72px; }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.85);
  padding: 3.5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}
@media(min-width:640px){  .footer-grid { grid-template-columns: 1fr 1fr; } }
@media(min-width:1024px){ .footer-grid { grid-template-columns: 2.2fr 1fr 1fr 1.1fr; gap: 3rem; } }

/* Footer Brand Column */
.footer-brand {}
.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: .85rem;
}
.footer-brand-logo img {
  height: 36px;
  width: auto;
  /* tint logo white for dark bg */
  filter: brightness(0) invert(1);
}
.footer-brand-logo span {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
}
.footer-brand-desc {
  font-size: .83rem;
  line-height: 1.65;
  color: rgba(255,255,255,.6);
  max-width: 270px;
  margin-bottom: 1rem;
}
.footer-social {
  display: flex;
  gap: .5rem;
  margin-bottom: 1.2rem;
}
.footer-social a {
  width: 32px; height: 32px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; font-weight: 800;
  color: rgba(255,255,255,.8);
  transition: background .2s, transform .2s;
}
.footer-social a:hover { background: var(--blue); transform: translateY(-2px); }
.footer-reg {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: .65rem .85rem;
}
.footer-reg-title {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .35rem;
}
.footer-reg p {
  font-size: .68rem;
  line-height: 1.8;
  color: rgba(255,255,255,.55);
}

/* Footer Column headers */
.footer-col-title {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: .85rem;
}

/* Footer Links */
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.footer-links a {
  font-size: .83rem;
  color: rgba(255,255,255,.65);
  transition: color .2s, padding-left .2s;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.footer-links a:hover { color: #fff; padding-left: 3px; }

/* Footer Bottom Bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.1rem 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
}
.footer-copy {
  font-size: .72rem;
  color: rgba(255,255,255,.45);
  line-height: 1.6;
}
.footer-policies {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-policies a {
  font-size: .72rem;
  color: rgba(255,255,255,.45);
  transition: color .2s;
}
.footer-policies a:hover { color: rgba(255,255,255,.8); }

/* ============================================================
   REUSABLE SECTION UTILITIES
   ============================================================ */
.section { padding: var(--section-mobile) 0; }
@media(min-width:768px){ .section { padding: var(--section-desktop) 0; } }
.section-alt { background: var(--surface-low); }
.section-dark { background: var(--navy-light); color: #fff; }
.section-dark h2, .section-dark h3 { color: #fff; }

.section-head { text-align: center; max-width: 680px; margin: 0 auto 3rem; }
.section-head .eyebrow { margin-bottom: .75rem; }
.section-head h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: .6rem; }
.section-head p { font-size: 1rem; color: var(--on-surface-muted); line-height: 1.75; }

/* Eyebrow Label */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .3rem .9rem;
  border-radius: var(--radius-full);
  background: rgba(55,85,195,.08);
  border: 1px solid rgba(55,85,195,.2);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .4rem;
  padding: .75rem 1.6rem;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .875rem;
  letter-spacing: .03em;
  transition: transform .2s, box-shadow .2s, background .2s;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn:active { transform: scale(.98) !important; }
.btn-primary {
  background: var(--navy);
  color: #fff;
}
.btn-primary:hover { background: var(--blue); transform: translateY(-2px); box-shadow: var(--shadow-blue); }
.btn-secondary {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-secondary:hover { background: rgba(55,85,195,.07); transform: translateY(-2px); }
.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 10px 25px rgba(245,158,11,.3); }
.btn-wa {
  background: #0f7a32;
  color: #fff;
}
.btn-wa:hover { background: #0d6829; transform: translateY(-2px); }

/* ── CARDS ── */
.card {
  background: var(--surface-card);
  border: 1px solid var(--outline-soft);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); border-color: rgba(55,85,195,.25); }

/* ── GRIDS ── */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media(min-width:640px){ .grid-2 { grid-template-columns: repeat(2,1fr); } }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media(min-width:640px){ .grid-3 { grid-template-columns: repeat(2,1fr); } }
@media(min-width:1024px){ .grid-3 { grid-template-columns: repeat(3,1fr); } }
.grid-4 { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
@media(min-width:1024px){ .grid-4 { grid-template-columns: repeat(4,1fr); } }

/* ── HERO BASE ── */
.hero {
  padding: 4rem 0 3.5rem;
  background: linear-gradient(135deg, #f8f9ff 0%, #eff4ff 100%);
  border-bottom: 1px solid var(--surface-dim);
  overflow: hidden;
  position: relative;
}
@media(min-width:768px){ .hero { padding: 5.5rem 0 4.5rem; } }
.hero-badge { margin-bottom: 1.25rem; }
.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: .85rem;
}
.hero h1 .accent { color: var(--blue); }
.hero p.lead {
  font-size: clamp(.95rem, 1.5vw, 1.1rem);
  color: var(--on-surface-muted);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 2rem; }
.hero-decoration {
  position: absolute; right: -8rem; top: -4rem;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(55,85,195,.07) 0%, transparent 70%);
  pointer-events: none;
}

/* ── STATS BAR ── */
.stats-bar { background: var(--navy); padding: 3rem 0; }
.stats-bar .stat-val {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.stats-bar .stat-label {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-top: .3rem;
}
.stats-bar .stat-gold { color: var(--gold); }

/* ── PROCESS STEPS ── */
.steps { counter-reset: step; }
.step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  counter-increment: step;
}
.step-num {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: var(--radius-full);
  background: var(--blue);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: .88rem;
  display: flex; align-items: center; justify-content: center;
}
.step h4 { font-size: .98rem; margin-bottom: .25rem; }
.step p { font-size: .84rem; color: var(--on-surface-muted); line-height: 1.6; }

/* ── TRUST BADGES ── */
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .4rem .85rem;
  border-radius: var(--radius-full);
  background: var(--surface-card);
  border: 1px solid var(--outline-soft);
  font-size: .78rem;
  font-weight: 600;
  color: var(--on-surface);
  box-shadow: var(--shadow-sm);
}
.trust-badge .dot { width: 7px; height: 7px; border-radius: var(--radius-full); background: #16a34a; flex-shrink: 0; }

/* ── CHECKLIST ── */
.check-list { display: flex; flex-direction: column; gap: .5rem; }
.check-item {
  display: flex; gap: .55rem; align-items: flex-start;
  font-size: .875rem; color: var(--on-surface-muted); line-height: 1.55;
}
.check-item::before {
  content: "✓";
  color: #16a34a;
  font-weight: 800;
  font-size: .75rem;
  flex-shrink: 0;
  margin-top: .18rem;
  width: 1rem;
}

/* ── SERVICE CARD ── */
.service-card {
  background: var(--surface-card);
  border: 1px solid var(--outline-soft);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  opacity: 0;
  transition: opacity .3s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); border-color: rgba(55,85,195,.25); }
.service-card:hover::after { opacity: 1; }
.service-card .icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: rgba(55,85,195,.09);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}
.service-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; color: var(--navy); }
.service-card p { font-size: .84rem; color: var(--on-surface-muted); line-height: 1.65; }
.service-card .card-link {
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: .81rem; font-weight: 700;
  color: var(--blue);
  margin-top: .85rem;
  transition: gap .2s;
}
.service-card .card-link:hover { gap: .5rem; }

/* ── HIGHLIGHTED SERVICE CARD ── */
.service-card.featured {
  background: var(--navy);
  border-color: transparent;
  color: rgba(255,255,255,.85);
}
.service-card.featured h3 { color: #fff; }
.service-card.featured p { color: rgba(255,255,255,.65); }
.service-card.featured .icon { background: rgba(255,255,255,.1); }
.service-card.featured .card-link { color: var(--gold); }

/* ── TESTIMONIAL ── */
.testi {
  background: var(--surface-card);
  border: 1px solid var(--outline-soft);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
}
.testi-stars { color: var(--gold); font-size: 1rem; letter-spacing: .1em; margin-bottom: .75rem; }
.testi-quote { font-size: .9rem; line-height: 1.7; color: var(--on-surface-muted); margin-bottom: 1.1rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: .6rem; }
.testi-avatar {
  width: 36px; height: 36px;
  border-radius: var(--radius-full);
  background: var(--blue);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700; font-size: .85rem;
}
.testi-name { font-size: .82rem; font-weight: 700; color: var(--navy); }
.testi-role { font-size: .72rem; color: var(--on-surface-muted); }

/* ── FAQ ── */
.faq-item {
  border-bottom: 1px solid var(--outline-soft);
}
.faq-summary {
  list-style: none;
  padding: 1.1rem 0;
  font-size: .93rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
}
.faq-summary::-webkit-details-marker { display: none; }
.faq-summary::after {
  content: "+";
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--blue);
  flex-shrink: 0;
  transition: transform .3s;
}
details[open] .faq-summary::after { content: "−"; }
.faq-body {
  padding: 0 0 1rem;
  font-size: .875rem;
  color: var(--on-surface-muted);
  line-height: 1.7;
}

/* ── CONTACT FORM ── */
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-label { font-size: .8rem; font-weight: 600; color: var(--navy); letter-spacing: .03em; }
.form-input, .form-select, .form-textarea {
  padding: .75rem 1rem;
  border: 1.5px solid var(--outline-soft);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--on-surface);
  background: var(--surface-card);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(55,85,195,.1);
}
.form-textarea { resize: vertical; min-height: 120px; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 3.5rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(55,85,195,.25) 0%, transparent 60%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .breadcrumb {
  display: flex; align-items: center; gap: .4rem;
  font-size: .75rem; color: rgba(255,255,255,.5);
  margin-bottom: 1rem; flex-wrap: wrap;
}
.page-hero .breadcrumb a { color: rgba(255,255,255,.7); transition: color .2s; }
.page-hero .breadcrumb a:hover { color: #fff; }
.page-hero .breadcrumb span { color: rgba(255,255,255,.35); }
.page-hero h1 {
  color: #fff;
  font-size: clamp(1.75rem, 3.5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: .65rem;
}
.page-hero h1 .accent { color: var(--gold); }
.page-hero p {
  color: rgba(255,255,255,.7);
  font-size: clamp(.9rem, 1.2vw, 1.05rem);
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.page-hero-badges { display: flex; flex-wrap: wrap; gap: .5rem; }
.page-hero-badge {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .3rem .75rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-full);
  font-size: .72rem; font-weight: 600;
  color: rgba(255,255,255,.8);
}

/* ── MOBILE STICKY CTA ── */
.mob-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 80;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--outline-soft);
  padding: .6rem .75rem;
  gap: .5rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,.08);
}
@media(max-width:767px){ .mob-cta { display: flex; } }
.mob-cta a {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: .3rem;
  padding: .7rem .5rem;
  border-radius: var(--radius);
  font-size: .8rem; font-weight: 700;
  font-family: var(--font-heading);
  letter-spacing: .03em;
  transition: transform .2s;
}
.mob-cta a:active { transform: scale(.97); }
.mob-cta-call { background: var(--navy); color: #fff; }
.mob-cta-wa   { background: #0f7a32; color: #fff; }
@media(max-width:767px){ body { padding-bottom: 70px; } }

/* ── REVEAL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media(prefers-reduced-motion:reduce){ .reveal { opacity: 1; transform: none; transition: none; } }

/* ── DIVIDER ── */
hr.divider { border: none; border-top: 1px solid var(--outline-soft); }

/* ── INLINE HIGHLIGHT ── */
.text-blue  { color: var(--blue) !important; }
.text-gold  { color: var(--gold) !important; }
.text-navy  { color: var(--navy) !important; }
.text-muted { color: var(--on-surface-muted) !important; }
