/* ==================================================================
   Ravel Corporate Advisors — style.css
   Mobile-first. Lightweight. No frameworks.
   Retheme by editing the CSS variables in :root.
   ================================================================== */

:root {
  /* Brand palette */
  --navy-900: #071e36;
  --navy-800: #0b2a4a;
  --navy-700: #103a63;
  --navy-600: #1b4f83;
  --gold-500: #c9a24b;
  --gold-400: #d8b56a;
  --gold-100: #f6edd8;

  --ink:      #16202b;
  --body:     #3a4653;
  --muted:    #667381;
  --line:     #e3e8ee;
  --bg:       #ffffff;
  --bg-soft:  #f6f8fb;
  --bg-tint:  #eef3f9;
  --white:    #ffffff;

  --wa:       #25d366;
  --wa-dark:  #128c4a;

  /* Modern corporate gradients */
  --grad-navy:   linear-gradient(135deg, #103a63 0%, #1b4f83 55%, #2a6aa8 100%);
  --grad-gold:   linear-gradient(135deg, #d8b56a 0%, #c9a24b 100%);
  --grad-hero:   linear-gradient(155deg, #061a30 0%, #0b2a4a 45%, #123a63 100%);
  /* Vibrant hover accent: blue → indigo → gold */
  --grad-accent: linear-gradient(120deg, #1b6fb3 0%, #5b6ad0 50%, #d8a94b 100%);
  --grad-cta:    linear-gradient(120deg, #0b2a4a 0%, #1b4f83 45%, #2f7ac0 100%);

  --radius:   14px;
  --radius-sm:9px;
  --shadow-sm: 0 1px 2px rgba(11,42,74,.06), 0 2px 8px rgba(11,42,74,.05);
  --shadow-md: 0 6px 24px rgba(11,42,74,.10);
  --shadow-lg: 0 18px 48px rgba(11,42,74,.16);

  --wrap: 1200px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --header-h: 68px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, iframe { max-width: 100%; }
img { height: auto; display: block; }
a { color: var(--navy-600); text-decoration: none; transition: color .18s ease, transform .18s ease, background .18s ease; }
/* Underlines only inside body copy — never on nav, cards, buttons or box links */
.prose p a, .prose li a, .prose blockquote a { text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; text-decoration-color: rgba(27,79,131,.4); }
.prose p a:hover, .prose li a:hover, .prose blockquote a:hover { text-decoration-color: var(--gold-500); }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.2; margin: 0 0 .5em; font-weight: 700; letter-spacing: -0.01em; }
h1 { font-size: clamp(1.9rem, 4.5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3.2vw, 2.1rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1rem; text-align: justify; -webkit-hyphens: auto; hyphens: auto; }
ul, ol { margin: 0 0 1rem; padding-left: 1.25rem; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(16px, 4vw, 32px); }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--navy-800); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 3px solid var(--gold-500); outline-offset: 2px; border-radius: 4px; }

/* ---------- Buttons ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 600; font-size: .95rem; line-height: 1;
  padding: .8rem 1.3rem; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; transition: transform .18s ease, box-shadow .22s ease, background .22s ease, filter .22s ease;
  text-decoration: none; white-space: nowrap; background-size: 160% 160%; background-position: 0% 50%;
}
.btn:hover { text-decoration: none; transform: translateY(-2px) scale(1.04); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0) scale(.99); }
.btn--primary { background: var(--grad-gold); color: var(--navy-900); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--grad-accent); color: #fff; background-position: 100% 50%; }
.btn--navy { background: var(--grad-navy); color: #fff; }
.btn--navy:hover { background: var(--grad-accent); background-position: 100% 50%; }
.btn--ghost { background: transparent; border-color: var(--line); color: var(--ink); }
.btn--ghost:hover { border-color: transparent; background: var(--grad-accent); color: #fff; }
.btn--wa { background: linear-gradient(135deg, #2bd66c, #128c4a); color: #fff; }
.btn--wa:hover { filter: saturate(1.2) brightness(1.05); }
.btn--lg { padding: 1rem 1.7rem; font-size: 1.02rem; }
.btn--block { display: flex; width: 100%; justify-content: center; }

/* ---------- Top bar ---------- */
.topbar { background: var(--navy-900); color: #cdd9e6; font-size: .82rem; }
.topbar__inner { display: flex; justify-content: space-between; align-items: center; min-height: 38px; gap: 1rem; }
.topbar__item { opacity: .9; }
.topbar__contact { display: flex; gap: 1.2rem; }
.topbar__link { color: #cdd9e6; }
.topbar__link:hover { color: #fff; text-decoration: none; }
.topbar__link--strong { color: var(--gold-400); font-weight: 600; }
@media (max-width: 640px) { .topbar__item { display: none; } .topbar__inner { justify-content: center; } }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92); backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }
.header__inner { display: flex; align-items: center; gap: 1rem; min-height: var(--header-h); }

.logo { display: inline-flex; align-items: center; gap: .6rem; }
.logo:hover { text-decoration: none; }
.logo__mark {
  width: 40px; height: 40px; border-radius: 10px; flex: none;
  display: grid; place-items: center; font-weight: 800; font-size: 1.25rem;
  color: var(--navy-900); background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  box-shadow: var(--shadow-sm);
}
.logo__text { display: flex; flex-direction: column; line-height: 1.05; }
.logo__brand { font-weight: 800; font-size: 1.2rem; color: var(--navy-800); letter-spacing: -.01em; }
.logo__sub { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }

.mainnav { margin-left: auto; }
.mainnav__close { display: none; }
.mainnav__list { display: flex; align-items: center; gap: .25rem; list-style: none; margin: 0; padding: 0; }
.mainnav__link {
  display: inline-flex; align-items: center; gap: .3rem;
  padding: .6rem .8rem; border-radius: 8px; font-weight: 500; font-size: .95rem; color: var(--ink);
}
.mainnav__link:hover { background: var(--bg-tint); text-decoration: none; }
.mainnav__link.is-active { color: var(--navy-700); font-weight: 600; }
.caret { font-size: .7rem; color: var(--muted); }

/* Mega menu — anchored to the header bar and centred in the viewport
   (position: static on .has-mega makes the sticky .site-header the
   containing block, so left/right:0 span the viewport, never clipping). */
.has-mega { position: static; }
.mega {
  position: absolute; top: calc(100% + 8px); left: 0; right: 0; margin-inline: auto;
  transform: translateY(6px);
  width: min(1160px, 96vw); background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 1.25rem 1.5rem;
  opacity: 0; visibility: hidden; transition: opacity .16s ease, transform .16s ease, visibility .16s ease; z-index: 120;
  max-height: min(80vh, 720px); overflow-y: auto;
}
.has-mega:hover .mega, .has-mega:focus-within .mega { opacity: 1; visibility: visible; transform: translateY(0); }
/* Multi-column flow packs every group tightly, adding columns as width allows */
.mega__grid { column-width: 200px; column-gap: 1.75rem; }
.mega__col { break-inside: avoid; -webkit-column-break-inside: avoid; page-break-inside: avoid; display: inline-block; width: 100%; margin-bottom: 1.35rem; }
.mega__title { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--gold-500); font-weight: 700; margin: 0 0 .45rem; }
.mega__col ul { list-style: none; margin: 0; padding: 0; }
.mega__col li { margin: 0; }
.mega__col a { display: block; padding: .26rem 0; font-size: .9rem; color: var(--body); line-height: 1.3; }
.mega__col a:hover { color: var(--navy-700); text-decoration: none; }
.mega__foot { margin-top: 1rem; padding-top: .9rem; border-top: 1px solid var(--line); }
.mega__all { font-weight: 600; color: var(--navy-700); }

.header__cta { display: flex; align-items: center; gap: .6rem; margin-left: 1rem; }
.header__cta .btn--wa span { display: none; }
.header__cta .btn--wa { padding: .6rem; }

.navtoggle { display: none; }

/* Mobile nav */
@media (max-width: 900px) {
  .header__cta { margin-left: auto; }
  .header__call { display: none; }
  .navtoggle {
    display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 44px; height: 44px; padding: 10px; border: 1px solid var(--line);
    background: #fff; border-radius: 10px; cursor: pointer;
  }
  .navtoggle span { display: block; height: 2px; background: var(--navy-800); border-radius: 2px; transition: .2s; }

  .mainnav {
    position: fixed; top: 0; right: 0; height: 100dvh; width: min(340px, 88vw);
    background: #fff; box-shadow: var(--shadow-lg); padding: 4.5rem 1.25rem 2rem;
    transform: translateX(105%); transition: transform .25s ease; overflow-y: auto; z-index: 130;
  }
  body.nav-open .mainnav { transform: translateX(0); }
  .mainnav__close {
    display: block; position: absolute; top: 1rem; right: 1rem;
    width: 42px; height: 42px; border: none; background: var(--bg-soft); border-radius: 10px;
    font-size: 1.6rem; line-height: 1; color: var(--ink); cursor: pointer;
  }
  .mainnav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .mainnav__item { border-bottom: 1px solid var(--line); }
  .mainnav__link { padding: .95rem .4rem; font-size: 1.05rem; justify-content: space-between; }
  .mega {
    position: static; transform: none; width: 100%; opacity: 1; visibility: visible;
    box-shadow: none; border: none; padding: 0 0 .5rem; display: none; max-height: none; overflow: visible;
  }
  .has-mega.is-open .mega { display: block; }
  .mega__grid { column-width: auto; column-count: 1; }
  .mega__col { margin-bottom: .9rem; }
  .mega__col a { padding: .4rem .4rem; }

  .nav-backdrop { position: fixed; inset: 0; background: rgba(7,30,54,.45); z-index: 125; }
}

/* ---------- Breadcrumb ---------- */
.breadcrumb-wrap { padding-top: 1rem; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: .4rem; list-style: none; margin: 0; padding: 0; font-size: .85rem; }
.breadcrumb li { color: var(--muted); }
.breadcrumb li:not(:last-child)::after { content: "›"; margin-left: .4rem; color: var(--line); }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--navy-700); }
.breadcrumb li[aria-current] { color: var(--ink); font-weight: 500; }

/* ---------- Sections / layout ---------- */
.section { padding: clamp(2.5rem, 6vw, 5rem) 0; }
.section--soft { background: var(--bg-soft); }
.section--navy { background: var(--navy-800); color: #d6e2ef; }
.section--navy h2, .section--navy h3 { color: #fff; }
.section__head { max-width: 720px; margin: 0 auto clamp(1.75rem, 4vw, 3rem); text-align: center; }
.section__head p { color: var(--muted); font-size: 1.05rem; }
.eyebrow { display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-bottom: .6rem;
  background: var(--grad-accent); -webkit-background-clip: text; background-clip: text; color: transparent; }
.section--navy .eyebrow, .hero .eyebrow { background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lead { font-size: 1.15rem; color: var(--body); }

.grid { display: grid; gap: 1.25rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

/* ---------- Cards ---------- */
.card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .22s ease, border-color .2s;
  height: 100%; overflow: hidden;
}
/* Gradient accent bar that reveals on hover */
.card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: var(--grad-accent); opacity: 0; transition: opacity .22s ease;
}
.card:hover { transform: translateY(-5px) scale(1.015); box-shadow: var(--shadow-lg); border-color: transparent; }
.card:hover::before { opacity: 1; }
.card h3 { margin-bottom: .35rem; font-size: 1.12rem; transition: color .2s ease; }
.card p { color: var(--muted); font-size: .95rem; margin: 0; }
.card__icon {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: var(--bg-tint); color: var(--navy-700); margin-bottom: 1rem; font-size: 1.3rem;
  transition: transform .2s ease;
}
.card:hover .card__icon { background: var(--grad-accent); color: #fff; transform: scale(1.06); }
.card--link { display: flex; flex-direction: column; }
.card--link .card__more { margin-top: auto; padding-top: .9rem; color: var(--navy-700); font-weight: 600; font-size: .9rem; transition: transform .2s ease; }
.card--link:hover h3 {
  background: var(--grad-accent); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.card--link:hover .card__more { transform: translateX(5px); color: var(--gold-500); }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 460px at 88% -15%, rgba(201,162,75,.22), transparent 60%),
    radial-gradient(760px 500px at 5% 110%, rgba(47,122,192,.30), transparent 60%),
    var(--grad-hero);
  color: #e9f0f8;
}
.hero__inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2.5rem; align-items: center; padding: clamp(3rem, 7vw, 5.5rem) 0; }
.hero h1 { color: #fff; }
.hero__lead { font-size: 1.15rem; color: #c4d3e4; max-width: 40ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 1.4rem; margin-top: 2rem; font-size: .85rem; color: #9fb4cc; }
.hero__trust b { color: var(--gold-400); font-size: 1.4rem; display: block; }
.hero__card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius); padding: 1.5rem; backdrop-filter: blur(6px);
}
.hero__card h2 { color: #fff; font-size: 1.15rem; }
.hero__card ul { list-style: none; padding: 0; margin: 0; }
.hero__card li { display: flex; gap: .6rem; padding: .5rem 0; border-bottom: 1px solid rgba(255,255,255,.08); color: #d6e2ef; font-size: .95rem; }
.hero__card li::before { content: "✓"; color: var(--gold-400); font-weight: 700; }
.hero__card li a { display: inline-block; transition: transform .18s ease, color .18s ease; }
.hero__card li:hover { border-bottom-color: rgba(216,181,106,.5); }
.hero__card li:hover a {
  transform: translateX(4px) scale(1.03); transform-origin: left center;
  background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent;
}
@media (max-width: 860px) { .hero__inner { grid-template-columns: 1fr; gap: 1.75rem; } .hero__card { order: 2; } }

/* ---------- Trust / stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; text-align: center; }
.stats__num { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; line-height: 1;
  background: var(--grad-accent); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stats__label { color: var(--muted); font-size: .9rem; margin-top: .4rem; }
@media (max-width: 600px) { .stats { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1rem; } }

/* ---------- Prose (article/location body) ---------- */
.prose { max-width: 760px; }
.prose > h2 { margin-top: 2.2rem; }
.prose > h3 { margin-top: 1.6rem; }
.prose ul li, .prose ol li { margin-bottom: .4rem; }
.prose table { width: 100%; border-collapse: collapse; margin: 1.25rem 0; font-size: .95rem; }
.prose th, .prose td { border: 1px solid var(--line); padding: .7rem .9rem; text-align: left; }
.prose th { background: var(--bg-soft); font-weight: 600; color: var(--ink); }
.prose blockquote { margin: 1.5rem 0; padding: 1rem 1.25rem; border-left: 4px solid var(--gold-500); background: var(--gold-100); border-radius: 0 8px 8px 0; }

.layout-2col { display: grid; grid-template-columns: minmax(0,1fr) 320px; gap: 2.5rem; align-items: start; }
@media (max-width: 960px) { .layout-2col { grid-template-columns: 1fr; } }
.sidebar { position: sticky; top: calc(var(--header-h) + 16px); display: grid; gap: 1.25rem; }

/* Callout / key takeaways (GEO-friendly) */
.callout { background: var(--bg-tint); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.25rem 1.4rem; }
.callout h3 { margin-top: 0; }
.callout--gold { background: var(--gold-100); border-color: #ecdcae; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: .75rem; }
.faq__item { border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; overflow: hidden; }
.faq__q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  font: inherit; font-weight: 600; color: var(--ink); padding: 1rem 1.2rem;
  display: flex; justify-content: space-between; gap: 1rem; align-items: center;
}
.faq__q::after { content: "+"; color: var(--gold-500); font-size: 1.4rem; line-height: 1; flex: none; }
.faq__item.is-open .faq__q::after { content: "–"; }
.faq__a { padding: 0 1.2rem; max-height: 0; overflow: hidden; transition: max-height .25s ease, padding .25s ease; color: var(--body); }
.faq__item.is-open .faq__a { padding: 0 1.2rem 1.1rem; max-height: 800px; }
/* No-JS fallback: show all answers */
.no-js .faq__a { max-height: none; padding: 0 1.2rem 1.1rem; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: var(--grad-cta); color: #fff; border-radius: var(--radius); padding: clamp(1.75rem, 4vw, 2.75rem); text-align: center; }
.cta-band::after { content: ""; position: absolute; top: -40%; right: -10%; width: 340px; height: 340px; background: radial-gradient(circle, rgba(216,181,106,.28), transparent 65%); pointer-events: none; }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #cddbec; max-width: 52ch; margin-inline: auto; }
.cta-band__row { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; margin-top: 1.4rem; }

/* ---------- Testimonials ---------- */
.quote { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow-sm); }
.quote p { font-size: 1rem; color: var(--body); }
.quote__author { display: flex; align-items: center; gap: .75rem; margin-top: 1rem; }
.quote__avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--navy-700); color: #fff; display: grid; place-items: center; font-weight: 700; }
.quote__name { font-weight: 600; color: var(--ink); font-size: .95rem; }
.quote__meta { color: var(--muted); font-size: .82rem; }
.stars { color: var(--gold-500); letter-spacing: 2px; }

/* ---------- Pills / chips ---------- */
.pills { display: flex; flex-wrap: wrap; gap: .5rem; list-style: none; padding: 0; margin: 0; }
.pills a { display: inline-block; padding: .4rem .85rem; border: 1px solid var(--line); border-radius: 999px; font-size: .85rem; color: var(--body); background: #fff; }
.pills a { transition: transform .16s ease, color .16s ease, background .16s ease, border-color .16s ease; }
.pills a:hover { border-color: transparent; background: var(--grad-accent); color: #fff; text-decoration: none; transform: translateY(-2px) scale(1.04); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: #a9bccf; font-size: .92rem; margin-top: 3rem; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1.4fr; gap: 2rem; padding: clamp(2.5rem, 5vw, 3.5rem) 0 2rem; }
.footer__col p { color: #94a9be; }
.logo--footer .logo__brand { color: #fff; }
.logo--footer .logo__sub { color: #7f96ac; }
.footer__title { color: #fff; font-size: .95rem; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 1rem; }
.footer__links { list-style: none; padding: 0; margin: 0; }
.footer__links li { margin-bottom: .55rem; }
.footer__links a { color: #a9bccf; }
.footer__links a:hover { color: #fff; text-decoration: none; }
.footer__more { color: var(--gold-400) !important; font-weight: 600; }
.footer__social { display: flex; gap: .5rem; margin-top: 1rem; }
.footer__social a { width: 36px; height: 36px; border-radius: 8px; display: grid; place-items: center; background: rgba(255,255,255,.08); color: #fff; font-weight: 700; }
.footer__social a:hover { background: var(--gold-500); color: var(--navy-900); text-decoration: none; }
.footer__contact address { font-style: normal; }
.footer__contact a { color: #cdd9e6; }
.footer__hours { color: #7f96ac !important; font-size: .85rem; }
.footer__map iframe { width: 100%; height: 150px; border: 0; border-radius: 10px; margin-top: .75rem; filter: grayscale(.2); }
.footer__bar { border-top: 1px solid rgba(255,255,255,.08); }
.footer__bar-inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.1rem 0; font-size: .85rem; flex-wrap: wrap; }
.footer__legal { display: flex; gap: 1.2rem; list-style: none; padding: 0; margin: 0; }
.footer__legal a { color: #94a9be; }
@media (max-width: 960px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } .footer__bar-inner { flex-direction: column; } }

/* ---------- Floating widgets ---------- */
.fab {
  position: fixed; z-index: 90; width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center; box-shadow: var(--shadow-lg); cursor: pointer; border: none;
  transition: transform .15s ease;
}
.fab:hover { transform: scale(1.06); text-decoration: none; }
.fab--wa { right: 20px; bottom: 20px; background: var(--wa); color: #fff; }
.fab--wa::after { content: ""; position: absolute; inset: 0; border-radius: 50%; box-shadow: 0 0 0 0 rgba(37,211,102,.5); animation: pulse 2.4s infinite; }
@keyframes pulse { to { box-shadow: 0 0 0 16px rgba(37,211,102,0); } }
.fab--top { right: 20px; bottom: 86px; background: #fff; color: var(--navy-700); border: 1px solid var(--line); }

/* ---------- Sticky mobile action bar ---------- */
.mobilebar { display: none; }
@media (max-width: 720px) {
  .mobilebar {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: .5rem;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
    background: #fff; border-top: 1px solid var(--line); padding: .5rem .6rem;
    padding-bottom: calc(.5rem + env(safe-area-inset-bottom));
  }
  .mobilebar__btn { text-align: center; padding: .7rem; border-radius: 10px; font-weight: 600; font-size: .9rem; background: var(--navy-800); color: #fff; }
  .mobilebar__btn--wa { background: var(--wa); }
  .mobilebar__btn--alt { background: var(--gold-500); color: var(--navy-900); }
  .mobilebar__btn:hover { text-decoration: none; }
  .fab--wa { bottom: 74px; }
  .fab--top { bottom: 140px; }
  body { padding-bottom: 64px; }
}

/* ---------- Utilities ---------- */
/* Keep intentionally-centered contexts centered even though <p> defaults to justify */
.text-center, .text-center p,
.section__head p,
.cta-band p,
.hero__trust,
.stats__label,
.quote__meta { text-align: center; }

.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.muted { color: var(--muted); }
.hr { height: 1px; background: var(--line); border: 0; margin: 2rem 0; }
.badge { display: inline-block; background: var(--gold-100); color: #7a5c14; font-size: .78rem; font-weight: 600; padding: .25rem .7rem; border-radius: 999px; }
.updated { font-size: .82rem; color: var(--muted); }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
