/* ============================================================
   HabeshAir — premium aviation charter site styles
   Mobile-first. Single file. No framework.
   ============================================================ */

/* === DESIGN TOKENS === */
:root {
  --navy-900: #0a1628;
  --navy-800: #0f2540;
  --navy-700: #14365e;
  --gold-500: #d4a447;
  --gold-400: #e6b961;
  --gold-100: #faf2e0;
  --white: #ffffff;
  --off-white: #fafbfc;
  --gray-100: #f5f6f8;
  --gray-200: #e7e9ee;
  --gray-300: #cdd2dc;
  --gray-500: #8a93a4;
  --gray-600: #6b7280;
  --text: #1a1a1a;
  --text-soft: #4b5563;
  --danger: #b91c1c;
  --success: #047857;
  --warn: #b45309;

  --radius: 10px;
  --radius-sm: 6px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(10,22,40,.08);
  --shadow-md: 0 8px 24px rgba(10,22,40,.12);
  --shadow-lg: 0 24px 60px rgba(10,22,40,.18);

  --container: 1180px;
  --gap: 1.25rem;

  --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: 'Playfair Display', Georgia, "Times New Roman", serif;
  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;

  --gold-gradient: linear-gradient(135deg, #f0d488 0%, var(--gold-500) 52%, #b9852e 100%);
  --ease-out-soft: cubic-bezier(.16, 1, .3, 1);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; }
a { color: var(--navy-800); text-decoration: none; }
a:hover, a:focus { text-decoration: underline; }
:focus-visible { outline: 3px solid var(--gold-400); outline-offset: 2px; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 .5em;
  color: var(--navy-900);
}
h1 { font-size: clamp(2rem, 4.5vw + 1rem, 3.4rem); letter-spacing: -.01em; }
h2 { font-size: clamp(1.6rem, 2.5vw + 1rem, 2.4rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.05rem; font-family: var(--font-sans); font-weight: 600; }
p  { margin: 0 0 1em; }
.eyebrow {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
  font-weight: 600;
  color: var(--gold-500);
  margin: 0 0 .65em;
}
.lede { font-size: 1.15rem; color: var(--text-soft); }

/* === LAYOUT === */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 4rem 0; }
.section-tight { padding: 2.5rem 0; }
.grid { display: grid; gap: var(--gap); }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
.text-center { text-align: center; }
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--navy-900); color: white; padding: .75rem 1rem; z-index: 100;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5em;
  padding: .85rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  border: 2px solid transparent;
  text-decoration: none;
  transition: transform .12s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--navy-900);
  box-shadow: var(--shadow-sm);
}
.btn-gold:hover { box-shadow: var(--shadow-md); }
.btn-navy { background: var(--navy-900); color: white; }
.btn-navy:hover { background: var(--navy-800); color: white; }
.btn-outline { background: transparent; color: var(--navy-900); border-color: var(--navy-900); }
.btn-outline:hover { background: var(--navy-900); color: white; }
.btn-outline-light { background: transparent; color: white; border-color: rgba(255,255,255,.6); }
.btn-outline-light:hover { background: white; color: var(--navy-900); border-color: white; }
.btn-block { width: 100%; }
.btn-lg { padding: 1.05rem 1.75rem; font-size: 1rem; }

/* === HEADER / NAV === */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,22,40,.98);
  color: white;
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header-row {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 72px;
}
.brand {
  display: inline-flex; align-items: center; gap: .55rem;
  color: white; font-weight: 700; font-size: 1.15rem; text-decoration: none;
  font-family: var(--font-display);
}
.brand:hover { text-decoration: none; }
.brand-mark { color: var(--gold-500); display: inline-flex; }
.brand-accent { color: var(--gold-500); }
.nav-toggle {
  display: inline-flex; flex-direction: column; gap: 4px;
  width: 40px; height: 40px; padding: 10px;
  background: transparent; border: 0; border-radius: 6px;
  margin-left: auto;
}
.nav-toggle span { display: block; height: 2px; background: white; border-radius: 2px; transition: transform .15s, opacity .15s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.primary-nav {
  position: absolute; top: 72px; left: 0; right: 0;
  background: var(--navy-900);
  padding: 1rem 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  display: none;
}
.primary-nav.is-open { display: block; }
.primary-nav ul { list-style: none; padding: 0; margin: 0 0 1rem; }
.primary-nav li a {
  display: block; padding: .85rem 0;
  color: rgba(255,255,255,.85); font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.primary-nav li a:hover, .primary-nav li a.active { color: var(--gold-400); text-decoration: none; }
.nav-cta { width: 100%; }

/* === HERO === */
.hero {
  position: relative;
  background:
    linear-gradient(180deg, rgba(10,22,40,.78), rgba(10,22,40,.92)),
    radial-gradient(circle at 30% 30%, rgba(212,164,71,.18), transparent 60%),
    var(--navy-900);
  color: white;
  padding: 4.5rem 0 5.5rem;
  overflow: hidden;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5em;
  padding: .35rem .85rem;
  border: 1px solid rgba(212,164,71,.5);
  border-radius: 100px;
  font-size: .8rem; letter-spacing: .04em;
  color: var(--gold-400);
  margin-bottom: 1.25rem;
}
.hero h1 { color: white; margin-bottom: 1rem; }
.hero .lede { color: rgba(255,255,255,.85); max-width: 60ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.75rem; }
.hero-trust {
  margin-top: 2.5rem;
  display: flex; flex-wrap: wrap; gap: 1.25rem 2rem;
  color: rgba(255,255,255,.7); font-size: .92rem;
}
.hero-trust span::before { content: "•"; margin-right: .65em; color: var(--gold-500); }

/* === CARDS === */
.card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: transform .15s, box-shadow .2s;
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.card h3 { margin-top: 0; }
.service-card .icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--navy-900); color: var(--gold-400);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.service-card .card-cta { color: var(--navy-900); font-weight: 600; }

/* === STEPS === */
.step {
  display: grid; grid-template-columns: 64px 1fr; gap: 1.25rem; align-items: start;
  padding: 1.25rem 0;
  border-top: 1px solid var(--gray-200);
}
.step:first-child { border-top: 0; }
.step-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--navy-900); color: var(--gold-400);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 700;
}

/* === FORMS === */
.form-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}
.form-grid { display: grid; grid-template-columns: 1fr; gap: 1.1rem; }
.form-group { display: flex; flex-direction: column; gap: .35rem; }
.form-group label, .form-group .label {
  font-weight: 600; font-size: .92rem;
  color: var(--navy-900);
}
.form-group .hint { font-size: .82rem; color: var(--gray-600); }
.form-group input[type=text],
.form-group input[type=email],
.form-group input[type=tel],
.form-group input[type=number],
.form-group input[type=date],
.form-group input[type=password],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem .9rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font: inherit;
  background: white;
  color: var(--text);
  transition: border-color .15s, box-shadow .15s;
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--navy-700);
  box-shadow: 0 0 0 3px rgba(20,54,94,.18);
}
.form-group input.has-error,
.form-group select.has-error,
.form-group textarea.has-error { border-color: var(--danger); }
.error-msg { color: var(--danger); font-size: .85rem; }
.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }

.radio-row, .check-row { display: flex; flex-wrap: wrap; gap: .5rem; }
.radio-pill {
  display: inline-flex; align-items: center; gap: .4em;
  padding: .7rem 1rem;
  min-height: 44px;
  border: 1px solid var(--gray-300);
  border-radius: 100px;
  cursor: pointer;
  background: white;
  font-size: .92rem;
  user-select: none;
  transition: border-color .15s, background .15s, color .15s;
}
.radio-pill input { position: absolute; opacity: 0; pointer-events: none; }
.radio-pill:has(input:checked),
.radio-pill.is-checked {
  background: var(--navy-900); color: white; border-color: var(--navy-900);
}
.checkbox-row {
  display: grid; grid-template-columns: 20px 1fr; gap: .65rem; align-items: start;
  font-size: .92rem; color: var(--text-soft);
}
.checkbox-row input { margin-top: 3px; }

.form-actions { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; }
.alert {
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  font-size: .95rem;
  margin-bottom: 1.25rem;
  border-left: 4px solid;
}
.alert-error    { background: #fee2e2; border-color: var(--danger); color: #7f1d1d; }
.alert-success  { background: #d1fae5; border-color: var(--success); color: #064e3b; }
.alert-info     { background: #dbeafe; border-color: #1d4ed8; color: #1e3a8a; }

/* === SECTIONS === */
.section-band-light { background: var(--gray-100); }
.section-band-navy  { background: var(--navy-900); color: white; }
.section-band-navy h1, .section-band-navy h2, .section-band-navy h3 { color: white; }
.section-band-navy .lede { color: rgba(255,255,255,.85); }

.metric-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.metric { padding: 1.25rem; border-radius: var(--radius); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); }
.metric .num { font-family: var(--font-display); font-size: 1.9rem; color: var(--gold-400); }
.metric .lbl { color: rgba(255,255,255,.75); font-size: .92rem; }

.ribbon-list { list-style: none; padding: 0; margin: 1.25rem 0; display: grid; gap: .75rem; }
.ribbon-list li {
  padding: .85rem 1rem .85rem 2.5rem;
  background: white; border-radius: var(--radius-sm); border: 1px solid var(--gray-200);
  position: relative;
}
.ribbon-list li::before {
  content: ""; position: absolute; left: 1rem; top: 50%; transform: translateY(-50%);
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(212,164,71,.2);
}

/* === CONTACT STRIP / FOOTER === */
.contact-strip {
  background: linear-gradient(120deg, var(--navy-900), var(--navy-800));
  color: white;
  padding: 3rem 0;
}
.contact-strip h2 { color: white; margin: 0; font-size: 1.6rem; }
.contact-strip .eyebrow { color: var(--gold-400); }
.contact-strip-row { display: grid; grid-template-columns: 1fr; gap: 1.5rem; align-items: center; }
.contact-strip-actions { display: flex; flex-wrap: wrap; gap: .75rem; }

.site-footer {
  background: #06101e;
  color: rgba(255,255,255,.78);
  padding: 3rem 0 1.5rem;
}
.brand-light { color: white; }
.footer-tagline { color: rgba(255,255,255,.6); font-size: .92rem; max-width: 36ch; margin-top: .75rem; }
.footer-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.site-footer h4 { color: white; margin-bottom: .85rem; font-size: .95rem; letter-spacing: .04em; text-transform: uppercase; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.footer-links a { color: rgba(255,255,255,.7); }
.footer-links a:hover { color: var(--gold-400); }
.footer-bottom {
  display: grid; grid-template-columns: 1fr; gap: .75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .85rem; color: rgba(255,255,255,.5);
}
.footer-meta { list-style: none; padding: 0; margin: 0; display: flex; gap: 1.25rem; }
.footer-meta a { color: rgba(255,255,255,.7); }

/* === MISC === */
.badge { display: inline-block; padding: .2rem .55rem; border-radius: 100px; background: var(--gold-100); color: var(--navy-900); font-size: .78rem; font-weight: 600; }
.list-clean { list-style: none; padding: 0; margin: 0; }
.list-check { padding: 0; list-style: none; }
.list-check li { padding-left: 1.6rem; position: relative; margin-bottom: .55rem; }
.list-check li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 12px; height: 6px; border-left: 2px solid var(--gold-500); border-bottom: 2px solid var(--gold-500);
  transform: rotate(-45deg);
}

.faq dt { font-weight: 600; color: var(--navy-900); margin-top: 1.25rem; }
.faq dd { margin: .35rem 0 1rem; color: var(--text-soft); }

.notfound { text-align: center; padding: 5rem 0; }
.notfound .code { font-family: var(--font-display); font-size: 6rem; color: var(--gold-500); line-height: 1; }

/* Centered narrow content */
.prose { max-width: 720px; margin: 0 auto; }
.prose h2 { margin-top: 2rem; }

/* === RESPONSIVE === */
/* === WHATSAPP FLOAT === */
.wa-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem;
  width: 56px; height: 56px;
  background: #25d366; color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  z-index: 200;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.wa-float:hover, .wa-float:focus-visible {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.6);
  text-decoration: none;
}

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .form-grid.cols-2 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .contact-strip-row { grid-template-columns: 1fr auto; }
  .footer-bottom { grid-template-columns: 1fr auto; align-items: center; }
  .metric-row { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 1100px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .nav-toggle { display: none; }
  .primary-nav {
    position: static; display: flex; align-items: center; gap: 2rem;
    padding: 0; background: transparent; border: 0;
  }
  .primary-nav ul { display: flex; gap: 1.5rem; margin: 0; }
  .primary-nav li a { padding: .25rem 0; border: 0; }
  .primary-nav li a.active { border-bottom: 2px solid var(--gold-400); padding-bottom: 3px; }
  .nav-cta { width: auto; }
}

/* ============================================================
   PREMIUM LAYER — logo, hero motion, scroll reveals, polish
   Added in the 2026 premium pass. Additive only.
   ============================================================ */

/* --- Brand mark glow --- */
.brand-mark { filter: drop-shadow(0 2px 6px rgba(212,164,71,.28)); transition: transform .4s var(--ease-out-soft); }
.brand:hover .brand-mark { transform: rotate(8deg) scale(1.06); }
.brand-name { letter-spacing: .005em; }

/* --- Sticky header: refined scrolled state --- */
.site-header { transition: background .3s ease, box-shadow .3s ease, border-color .3s ease; }
.site-header.scrolled {
  background: rgba(8,18,33,.96);
  box-shadow: 0 8px 30px rgba(3,8,16,.45);
  border-bottom-color: rgba(212,164,71,.18);
}

/* --- Gold button sheen sweep --- */
.btn-gold { position: relative; overflow: hidden; isolation: isolate; }
.btn-gold::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,.55) 50%, transparent 80%);
  transform: translateX(-120%);
  transition: transform .7s var(--ease-out-soft);
}
.btn-gold:hover::after { transform: translateX(120%); }
.btn-lg { letter-spacing: .01em; }

/* --- HERO: layered, animated, premium --- */
.hero { isolation: isolate; }
.hero .container { position: relative; z-index: 2; }

/* Homepage hero golden-hour jet art (right side, masked to fade into navy) */
.hero-art {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 62%; z-index: 0; pointer-events: none;
  background: url('/assets/images/hero-jet.svg') right center / cover no-repeat;
  opacity: .92;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.35) 30%, #000 62%);
          mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.35) 30%, #000 62%);
  animation: heroArtIn 1.4s var(--ease-out-soft) both;
  animation-delay: .2s;
}
@keyframes heroArtIn { from { opacity: 0; transform: scale(1.06); } to { opacity: .92; transform: none; } }
@media (max-width: 980px) {
  .hero-art { width: 100%; opacity: .28;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 55%);
            mask-image: linear-gradient(to bottom, transparent 0%, #000 55%); }
}
.hero::before {
  content: ""; position: absolute; inset: -20% -10% auto -10%; height: 120%;
  background:
    radial-gradient(38% 55% at 22% 28%, rgba(212,164,71,.20), transparent 70%),
    radial-gradient(45% 60% at 85% 18%, rgba(36,86,150,.30), transparent 72%);
  z-index: -2;
  animation: heroGlow 16s ease-in-out infinite alternate;
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: .9;
  background:
    linear-gradient(118deg, transparent 0 60%, rgba(212,164,71,.07) 72%, transparent 86%);
  mix-blend-mode: screen;
  pointer-events: none;
}
@keyframes heroGlow {
  0%   { transform: translate3d(0,0,0) scale(1);   }
  100% { transform: translate3d(2%, -3%, 0) scale(1.08); }
}
.hero .container > * { will-change: transform, opacity; }
.js .hero-badge,
.js .hero h1,
.js .hero .lede,
.js .hero-cta,
.js .hero-trust,
.js .hero-disclosure { opacity: 0; animation: heroRise .9s var(--ease-out-soft) forwards; }
.js .hero-badge      { animation-delay: .05s; }
.js .hero h1         { animation-delay: .15s; }
.js .hero .lede      { animation-delay: .28s; }
.js .hero-cta        { animation-delay: .40s; }
.js .hero-trust      { animation-delay: .52s; }
.js .hero-disclosure { animation-delay: .60s; }
@keyframes heroRise {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* Elegant serif headline */
.hero h1 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2.4rem, 5vw + 1rem, 4.1rem);
  letter-spacing: .002em;
  line-height: 1.06;
}
.hero-badge { backdrop-filter: blur(4px); background: rgba(212,164,71,.06); }

/* Hero broker micro-disclosure */
.hero-disclosure {
  margin-top: 1.4rem; font-size: .82rem; line-height: 1.5;
  color: rgba(255,255,255,.55); max-width: 56ch;
}
.hero-disclosure strong { color: rgba(255,255,255,.7); font-weight: 600; }

/* --- SCROLL REVEAL --- */
.js [data-reveal] {
  opacity: 0; transform: translateY(24px);
  transition: opacity .8s var(--ease-out-soft), transform .8s var(--ease-out-soft);
  transition-delay: var(--reveal-delay, 0s);
}
.js [data-reveal].is-visible { opacity: 1; transform: none; }

/* --- Eyebrow gold tick --- */
.eyebrow { display: inline-flex; align-items: center; gap: .55rem; }
.eyebrow::before {
  content: ""; width: 22px; height: 1px; background: var(--gold-500); display: inline-block;
}
.text-center .eyebrow { justify-content: center; }

/* --- Section headings to gradient-gold on dark bands --- */
.section-band-navy .eyebrow { color: var(--gold-400); }

/* --- CARDS: gold edge + deeper lift --- */
.card { position: relative; overflow: hidden; transition: transform .35s var(--ease-out-soft), box-shadow .35s var(--ease-out-soft); }
.card::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: var(--gold-gradient); transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease-out-soft);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card:hover::before { transform: scaleX(1); }
.service-card .icon { transition: transform .35s var(--ease-out-soft), background .3s ease; }
.service-card:hover .icon { transform: translateY(-2px) scale(1.06); }
.card-cta { transition: gap .25s ease, color .2s ease; display: inline-flex; gap: .25rem; }
.service-card:hover .card-cta { gap: .55rem; color: var(--gold-500); }

/* --- METRICS: count-up polish --- */
.metric { transition: transform .35s var(--ease-out-soft), border-color .3s ease, background .3s ease; }
.metric:hover { transform: translateY(-3px); border-color: rgba(212,164,71,.4); background: rgba(212,164,71,.07); }
.metric .num { font-weight: 700; letter-spacing: -.01em; }

/* --- STEPS: numbered accent --- */
.step-num { position: relative; box-shadow: 0 6px 18px rgba(10,22,40,.18); transition: transform .35s var(--ease-out-soft); }
.step:hover .step-num { transform: scale(1.08); }

/* --- Desktop nav underline grow --- */
@media (min-width: 1100px) {
  .primary-nav li a { position: relative; }
  .primary-nav li a::after {
    content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 100%;
    background: var(--gold-400); transform: scaleX(0); transform-origin: left;
    transition: transform .3s var(--ease-out-soft);
  }
  .primary-nav li a:hover::after { transform: scaleX(1); }
  .primary-nav li a.active::after { transform: scaleX(1); }
  .primary-nav li a.active { border-bottom: 0; padding-bottom: .25rem; }
}

/* --- WhatsApp float: ambient pulse --- */
.wa-float::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37,211,102,.5);
  animation: waPulse 2.6s ease-out infinite;
}
@keyframes waPulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,.45); }
  70%  { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* --- Contact strip: gold hairline + glow --- */
.contact-strip { position: relative; overflow: hidden; }
.contact-strip::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 2px;
  background: var(--gold-gradient); opacity: .8;
}
.contact-strip::after {
  content: ""; position: absolute; right: -10%; top: -60%; width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(212,164,71,.16), transparent 65%);
  pointer-events: none;
}

/* --- Footer disclosure (legal) --- */
.footer-disclosure {
  padding-top: 1.5rem; margin-top: .5rem;
  border-top: 1px solid rgba(255,255,255,.07);
}
.footer-disclosure p {
  margin: 0; font-size: .8rem; line-height: 1.6;
  color: rgba(255,255,255,.42); max-width: 90ch;
}
.footer-attribution { margin-top: 6px; font-size: .85em; opacity: .8; }
.footer-attribution a { color: inherit; text-decoration: underline; }

/* --- Prose legal readability --- */
.prose.legal { max-width: 760px; }
.prose.legal h2 { margin-top: 2.4rem; font-size: 1.5rem; }
.prose.legal h3 { margin-top: 1.5rem; font-size: 1.12rem; color: var(--navy-800); }
.prose.legal ul { margin: .5rem 0 1.2rem; padding-left: 0; }
.prose .updated { color: var(--gray-600); font-size: .9rem; }
.legal-toc {
  background: var(--gray-100); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 1rem 1.25rem; margin: 1.5rem 0 2rem;
}
.legal-toc strong { display: block; font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--gold-500); margin-bottom: .6rem; }
.legal-toc ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .4rem; }
.legal-toc a { color: var(--text-soft); font-size: .92rem; }

/* --- Disclosure callout box --- */
.disclosure-box {
  background: var(--navy-900); color: rgba(255,255,255,.88);
  border-radius: var(--radius-lg); border: 1px solid rgba(212,164,71,.25);
  padding: 1.4rem 1.5rem; margin: 1.5rem 0;
}
.disclosure-box h3,
.prose .disclosure-box h3,
.prose.legal .disclosure-box h3 {
  color: #fff; margin-top: 0; font-family: var(--font-sans);
  font-size: 1.05rem; letter-spacing: .02em;
}
.disclosure-box p { margin-bottom: 0; color: rgba(255,255,255,.82); font-size: .95rem; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0s !important; animation-iteration-count: 1 !important; transition: none !important; scroll-behavior: auto !important; }
  .js [data-reveal] { opacity: 1 !important; transform: none !important; }
  .js .hero-badge, .js .hero h1, .js .hero .lede, .js .hero-cta, .js .hero-trust, .js .hero-disclosure { opacity: 1 !important; }
}
