/* ── BRAND NAVY FROM LOGO: #021C41 ── */

:root[data-theme="dark"] {
  --bg:         #010E22;
  --bg2:        #021529;
  --bg3:        #031A31;
  --surface:    rgba(255,255,255,0.04);
  --surface2:   rgba(255,255,255,0.07);
  --line:       rgba(255,255,255,0.06);
  --line2:      rgba(255,255,255,0.11);
  --navy:       #021C41;
  --navy-light: #0A3068;
  --gold:       #C9A84C;
  --gold10:     rgba(201,168,76,.10);
  --gold20:     rgba(201,168,76,.20);
  --gold40:     rgba(201,168,76,.40);
  --ink:        #EEF1FA;
  --ink2:       #8492B4;
  --ink3:       #3D4E70;
  --ink-on-navy:#EEF1FA;
  --logo-filter: brightness(0) invert(1);
  --nav-bg:     rgba(1,14,34,.85);
  --mob-bg:     rgba(1,14,34,.97);
  --card-bg:    rgba(2,21,41,0.92);
  --toggle-bg:  rgba(255,255,255,.07);
  --btn-text:   #010E22;
  --orb1:       rgba(2,28,65,.9);
  --orb2:       rgba(201,168,76,.06);
  --orb3:       rgba(10,48,104,.4);
}

:root[data-theme="light"] {
  --bg:         #F4F6FB;
  --bg2:        #EAECF5;
  --bg3:        #DDE1EF;
  --surface:    rgba(255,255,255,0.75);
  --surface2:   rgba(255,255,255,0.92);
  --line:       rgba(2,28,65,.08);
  --line2:      rgba(2,28,65,.14);
  --navy:       #021C41;
  --navy-light: #0A3068;
  --gold:       #8A6415;
  --gold10:     rgba(138,100,21,.10);
  --gold20:     rgba(138,100,21,.22);
  --gold40:     rgba(138,100,21,.40);
  --ink:        #021C41;
  --ink2:       #3A4E70;
  --ink3:       #7A8FB5;
  --ink-on-navy:#EEF1FA;
  --logo-filter: none;
  --nav-bg:     rgba(244,246,251,.88);
  --mob-bg:     rgba(244,246,251,.97);
  --card-bg:    rgba(255,255,255,0.92);
  --toggle-bg:  rgba(2,28,65,.07);
  --btn-text:   #021C41;
  --orb1:       rgba(180,195,230,.6);
  --orb2:       rgba(138,100,21,.09);
  --orb3:       rgba(140,165,210,.35);
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Plus Jakarta Sans', 'Outfit', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.6;
  transition: background .45s cubic-bezier(0.23,1,0.32,1), color .45s cubic-bezier(0.23,1,0.32,1);
}

/* grain — fixed, pointer-none */
body::after {
  content: ''; position: fixed; inset: 0; z-index: 998;
  pointer-events: none; opacity: .022;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 140px;
}

/* orbs */
.orb { position: fixed; border-radius: 50%; pointer-events: none; z-index: 0; }
.orb-a { width:900px; height:900px; top:-300px; left:-250px; background:radial-gradient(ellipse at center, var(--orb1) 0%, rgba(2,28,65,.18) 40%, transparent 70%); }
.orb-b { width:700px; height:700px; top:35vh; right:-200px; background:radial-gradient(ellipse at center, var(--orb2) 0%, rgba(201,168,76,.03) 45%, transparent 72%); }
.orb-c { width:1000px; height:1000px; bottom:-200px; left:15%; background:radial-gradient(ellipse at center, var(--orb3) 0%, rgba(10,48,104,.12) 45%, transparent 68%); }

/* ── FLOATING NAV ── */
.nav-shell { position: fixed; top: 18px; left: 0; right: 0; z-index: 900; display: flex; justify-content: center; pointer-events: none; padding: 0 20px; }
nav {
  pointer-events: all;
  display: flex; align-items: center; justify-content: space-between;
  width: min(1100px, 100%);
  padding: 7px 8px 7px 18px;
  background: var(--nav-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--line2);
  border-radius: 100px;
  box-shadow: 0 1px 0 rgba(255,255,255,.04) inset, 0 20px 60px rgba(1,14,34,.3);
  transition: background .45s cubic-bezier(0.23,1,0.32,1), border-color .45s;
  gap: 8px;
}

/* ── LOGO: icon + VOYAGR (navy) ONE (ink) ── */
.nav-logo {
  display: flex; align-items: center; gap: 9px;
  text-decoration: none; flex-shrink: 0;
  transition: opacity .2s;
}
.nav-logo:hover { opacity: .85; }
.nav-logo-icon { height: 32px; width: auto; filter: var(--logo-filter); flex-shrink: 0; transition: filter .45s; }
.nav-logo-word {
  font-family: 'Plus Jakarta Sans', 'Outfit', sans-serif;
  font-weight: 800; font-size: .98rem;
  letter-spacing: -.02em; line-height: 1;
  white-space: nowrap; transition: color .45s;
}
/* VOYAGR in brand navy — works on both themes since navy has enough contrast */
.nav-logo-word .voyagr { color: var(--navy); }
[data-theme="dark"] .nav-logo-word .voyagr { color: #3E6FBF; } /* lighter navy for dark bg visibility */
.nav-logo-word .one { color: var(--ink); }

.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; flex: 1; justify-content: center; }
.nav-links a {
  text-decoration: none; color: var(--ink2);
  font-size: .82rem; font-weight: 600;
  padding: 7px 14px; border-radius: 100px;
  transition: color .18s cubic-bezier(0.23,1,0.32,1), background .18s cubic-bezier(0.23,1,0.32,1);
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); background: var(--surface2); }

.nav-right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

/* theme toggle */
.theme-btn {
  display: flex; align-items: center; gap: 6px;
  background: var(--toggle-bg); border: 1px solid var(--line2);
  border-radius: 100px; padding: 6px 12px;
  cursor: pointer; font-size: .72rem; font-weight: 700;
  color: var(--ink2); letter-spacing: .06em; text-transform: uppercase;
  transition: color .18s cubic-bezier(0.23,1,0.32,1), border-color .18s, background .18s;
  font-family: 'Plus Jakarta Sans', 'Outfit', sans-serif; border: none; outline: none;
  background: var(--toggle-bg); border: 1px solid var(--line2);
}
.theme-btn:hover { color: var(--ink); border-color: var(--gold20); }
.theme-btn .ti { font-size: 15px; transition: transform .4s cubic-bezier(0.34,1.56,0.64,1); display: block; }
.theme-btn:hover .ti { transform: rotate(22deg); }

/* CTA button */
.nav-cta {
  display: inline-flex; align-items: center;
  background: var(--navy); color: var(--ink-on-navy);
  font-weight: 700; font-size: .82rem; border-radius: 100px;
  padding: 7px 7px 7px 18px; text-decoration: none; white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
  transition: transform .2s cubic-bezier(0.23,1,0.32,1), opacity .2s;
}
.nav-cta:hover { transform: scale(.97); opacity: .9; }
.nav-cta:active { transform: scale(.95); }
.nav-cta .arr {
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  margin-left: 8px; font-size: 11px;
  transition: transform .2s cubic-bezier(0.23,1,0.32,1);
}
.nav-cta:hover .arr { transform: translate(2px,-2px); }

/* hamburger */
.ham-btn {
  display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  width: 38px; height: 38px; cursor: pointer;
  background: var(--surface); border: 1px solid var(--line2); border-radius: 50%; flex-shrink: 0;
  transition: background .2s;
}
.ham-btn:hover { background: var(--surface2); }
.hb {
  width: 15px; height: 1.5px; background: var(--ink2); border-radius: 2px;
  transition: transform .32s cubic-bezier(0.23,1,0.32,1), opacity .32s, width .32s;
  transform-origin: center;
}
.ham-btn.open .hb:nth-child(1) { transform: translateY(6.5px) rotate(45deg); width: 17px; }
.ham-btn.open .hb:nth-child(2) { opacity: 0; transform: scaleX(0); }
.ham-btn.open .hb:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); width: 17px; }

/* mobile overlay */
.mob {
  position: fixed; inset: 0; z-index: 899;
  background: var(--mob-bg);
  backdrop-filter: blur(28px); -webkit-backdrop-filter: blur(28px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  opacity: 0; pointer-events: none;
  transition: opacity .35s cubic-bezier(0.23,1,0.32,1);
}
.mob.open { opacity: 1; pointer-events: all; }
.mob a {
  font-size: 2.8rem; font-weight: 800; letter-spacing: -.03em;
  color: var(--ink); text-decoration: none;
  opacity: 0; transform: translateY(18px);
  transition: opacity .45s cubic-bezier(0.23,1,0.32,1), transform .45s cubic-bezier(0.23,1,0.32,1), color .18s;
}
.mob.open a:nth-child(1) { opacity:1; transform:none; transition-delay:.06s; }
.mob.open a:nth-child(2) { opacity:1; transform:none; transition-delay:.11s; }
.mob.open a:nth-child(3) { opacity:1; transform:none; transition-delay:.16s; }
.mob.open a:nth-child(4) { opacity:1; transform:none; transition-delay:.21s; }
.mob.open a:nth-child(5) { opacity:1; transform:none; transition-delay:.26s; }
.mob a:hover { color: var(--gold); }

/* ── TICKER ── */
.ticker { position: relative; z-index: 2; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg2); overflow: hidden; padding: 10px 0; }
.ticker-track { display: flex; width: max-content; animation: ticker 30s linear infinite; }
.tick { display: inline-flex; align-items: center; gap: 14px; padding: 0 22px; white-space: nowrap; font-family: 'DM Mono', monospace; font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink3); }
.tick-dot { color: var(--navy); opacity: .5; }
[data-theme="dark"] .tick-dot { color: #3E6FBF; opacity: .6; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SHARED ── */
.section { position: relative; z-index: 2; }
.inner { max-width: 1120px; margin: 0 auto; padding: 110px 40px; }
.sh {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 800; letter-spacing: -.03em;
  line-height: 1.04; color: var(--ink);
  text-wrap: balance;
}
.sb { font-size: .95rem; font-weight: 400; color: var(--ink2); line-height: 1.8; max-width: 480px; }

/* ── SCROLL REVEAL ── */
[data-rev] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s cubic-bezier(0.23,1,0.32,1), transform .75s cubic-bezier(0.23,1,0.32,1);
}
[data-rev].in { opacity: 1; transform: none; }
[data-rev][data-d="1"] { transition-delay: .07s; }
[data-rev][data-d="2"] { transition-delay: .14s; }
[data-rev][data-d="3"] { transition-delay: .21s; }
[data-rev][data-d="4"] { transition-delay: .28s; }
[data-rev][data-d="5"] { transition-delay: .35s; }

/* ── BUTTONS ── */
.btn-navy {
  display: inline-flex; align-items: center;
  background: var(--navy); color: var(--ink-on-navy);
  font-weight: 700; font-size: .9rem; border-radius: 100px;
  padding: 6px 6px 6px 24px; text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 4px 20px rgba(2,28,65,.25);
  transition: transform .2s cubic-bezier(0.23,1,0.32,1), box-shadow .2s, opacity .2s;
}
.btn-navy:hover { transform: scale(.97); opacity: .92; }
.btn-navy:active { transform: scale(.95); }
.btn-navy .ico {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  margin-left: 10px; font-size: 13px;
  transition: transform .2s cubic-bezier(0.23,1,0.32,1);
}
.btn-navy:hover .ico { transform: translate(2px,-2px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--ink2); font-size: .88rem; font-weight: 600;
  border: 1px solid var(--line2); border-radius: 100px; padding: 11px 20px;
  text-decoration: none; background: var(--surface);
  transition: color .2s, border-color .2s, background .2s;
}
.btn-ghost:hover { color: var(--ink); border-color: var(--navy-light); background: var(--surface2); }

/* ── DOUBLE-BEZEL CARD ── */
.dbl {
  background: var(--surface); border: 1px solid var(--line2);
  border-radius: 20px; padding: 5px;
  box-shadow: 0 2px 0 rgba(255,255,255,.04) inset, 0 24px 64px rgba(1,14,34,.22);
}
.dbl-inner {
  background: var(--card-bg);
  border-radius: 15px; border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
  overflow: hidden;
}

/* standard card */
.card {
  background: var(--bg2); border: 1px solid var(--line2); border-radius: 14px;
  padding: 28px; position: relative; overflow: hidden;
  transition: border-color .28s cubic-bezier(0.23,1,0.32,1), transform .28s cubic-bezier(0.23,1,0.32,1);
}
.card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(2,28,65,.15), transparent); }
[data-theme="dark"] .card::before { background: linear-gradient(90deg, transparent, rgba(62,111,191,.12), transparent); }
.card:hover { border-color: rgba(2,28,65,.3); transform: translateY(-2px); }
[data-theme="dark"] .card:hover { border-color: rgba(62,111,191,.3); }

/* photo cards */
.photo-frame {
  border-radius: 14px; overflow: hidden;
  position: relative;
  box-shadow: 0 16px 48px rgba(1,14,34,.18);
}
.photo-frame img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .7s cubic-bezier(0.23,1,0.32,1);
}
.photo-frame:hover img { transform: scale(1.04); }
.photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(1,14,34,.75) 0%, transparent 50%);
}

/* SVG graphic frame */
.g-frame { background: var(--card-bg); border: 1px solid var(--line2); border-radius: 14px; padding: 5px; box-shadow: 0 16px 48px rgba(1,14,34,.16); }
.g-inner { background: var(--bg2); border-radius: 10px; border: 1px solid var(--line); padding: 28px; display: flex; align-items: center; justify-content: center; min-height: 260px; }

/* feature list */
.feat-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }
.feat-list li { display: flex; align-items: center; gap: 10px; font-size: .875rem; color: var(--ink2); font-weight: 400; line-height: 1.55; }
.feat-ck { width: 20px; height: 20px; border-radius: 6px; background: var(--gold10); border: 1px solid var(--gold20); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 10px; color: var(--gold); }

/* ── CTA BLOCK ── */
.cta-wrap { position: relative; z-index: 2; padding: 0 40px 110px; }
.cta-out {
  max-width: 1120px; margin: 0 auto;
  background: var(--navy);
  border-radius: 22px; padding: 5px;
  box-shadow: 0 40px 100px rgba(2,28,65,.35), inset 0 1px 0 rgba(255,255,255,.08);
}
.cta-in {
  border-radius: 17px; padding: 88px 56px; text-align: center;
  border: 1px solid rgba(255,255,255,.07); position: relative; overflow: hidden;
  background: linear-gradient(135deg, #021C41 0%, #031A31 60%, #010E22 100%);
}
.cta-in::before {
  content: ''; position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.07) 0%, transparent 60%);
  pointer-events: none;
}
.cta-logo { height: 56px; width: auto; filter: brightness(0) invert(1); display: block; margin: 0 auto 28px; position: relative; z-index: 1; }
.cta-h { font-size: clamp(1.8rem,3.5vw,3rem); font-weight: 800; letter-spacing: -.03em; line-height: 1.08; color: #EEF1FA; margin-bottom: 14px; position: relative; z-index: 1; text-wrap: balance; }
.cta-p { font-size: .95rem; font-weight: 400; color: rgba(238,241,250,.65); margin-bottom: 36px; position: relative; z-index: 1; }
.cta-fine { font-size: .7rem; color: rgba(238,241,250,.38); margin-top: 14px; position: relative; z-index: 1; }
.btn-cta {
  display: inline-flex; align-items: center;
  background: #EEF1FA; color: #021C41;
  font-weight: 800; font-size: .9rem; border-radius: 100px;
  padding: 6px 6px 6px 24px; text-decoration: none;
  box-shadow: 0 4px 24px rgba(238,241,250,.15);
  transition: transform .2s cubic-bezier(0.23,1,0.32,1), opacity .2s;
}
.btn-cta:hover { transform: scale(.97); }
.btn-cta:active { transform: scale(.95); }
.btn-cta .ico { width: 32px; height: 32px; border-radius: 50%; background: rgba(2,28,65,.12); display: flex; align-items: center; justify-content: center; margin-left: 10px; font-size: 13px; transition: transform .2s cubic-bezier(0.23,1,0.32,1); }
.btn-cta:hover .ico { transform: translate(2px,-2px); }

/* ── FOOTER ── */
footer { position: relative; z-index: 2; border-top: 1px solid var(--line); padding: 32px 40px; max-width: 1120px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.f-logo { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.f-logo img { height: 22px; width: auto; filter: var(--logo-filter); opacity: .45; transition: filter .45s; }
.f-logo-word { font-weight: 800; font-size: .88rem; letter-spacing: -.02em; }
.f-logo-word .v { color: var(--navy); }
[data-theme="dark"] .f-logo-word .v { color: #3E6FBF; }
.f-logo-word .o { color: var(--ink3); }
.f-links { display: flex; gap: 22px; list-style: none; }
.f-links a { font-size: .78rem; font-weight: 500; color: var(--ink3); text-decoration: none; transition: color .18s; }
.f-links a:hover { color: var(--ink2); }
.f-copy { font-family: 'DM Mono', monospace; font-size: .63rem; color: var(--ink3); letter-spacing: .06em; }

/* ── PAGE HERO ── */
.page-hero { position: relative; z-index: 2; padding: 170px 40px 80px; max-width: 1120px; margin: 0 auto; }
.page-tag { display: inline-flex; align-items: center; gap: 8px; background: var(--gold10); border: 1px solid var(--gold20); color: var(--gold); font-size: .67rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; padding: 5px 13px; border-radius: 100px; margin-bottom: 22px; }

/* ── RESPONSIVE ── */
@media (max-width: 880px) {
  .inner { padding: 80px 24px; }
  .page-hero { padding: 130px 24px 60px; }
  .cta-wrap { padding: 0 24px 80px; }
  .cta-in { padding: 56px 28px; }
  footer { flex-direction: column; align-items: flex-start; padding: 28px 24px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .ham-btn { display: flex; }
}
/* nav-logo-word always visible — handled in 880px block above */
@media (prefers-reduced-motion: reduce) {
  [data-rev] { transition: opacity .3s !important; transform: none !important; }
  .ticker-track { animation: none; }
  .photo-frame img { transition: none; }
}

/* ── PERFORMANCE FIXES ── */
nav {
  will-change: transform;
  transform: translateZ(0);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.orb { transform: translateZ(0); }
/* Remove body bg transition — was causing repaint on scroll in some browsers */
body { transition: color .35s cubic-bezier(0.23,1,0.32,1); }

/* ── MOBILE NAV: show wordmark, hide toggle label ── */
@media (max-width: 880px) {
  .nav-logo-word {
    display: flex !important;
    font-size: .85rem;
    align-items: center;
  }
  .nav-logo-icon { height: 28px; }
  .nav-logo { gap: 8px; }
  #themeLabel { display: none !important; }
  .theme-btn { padding: 6px 8px; }
}
@media (max-width: 360px) {
  .nav-logo-word { font-size: .78rem; }
}

/* ── SCROLL TO TOP ── */
#stt {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 800;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line2);
  background: var(--navy);
  color: #EEF1FA;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  outline: none;
  box-shadow: 0 4px 16px rgba(2,28,65,.22);
  /* hidden state */
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition:
    opacity .28s cubic-bezier(0.23,1,0.32,1),
    transform .28s cubic-bezier(0.23,1,0.32,1),
    background .18s,
    box-shadow .18s;
  will-change: transform, opacity;
}
[data-theme="light"] #stt { background: var(--navy); color: #EEF1FA; }
[data-theme="dark"]  #stt { background: #1A3A6E; color: #EEF1FA; border-color: rgba(62,111,191,.3); }
#stt.stt-show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
#stt:hover {
  background: var(--navy-light);
  box-shadow: 0 6px 24px rgba(2,28,65,.32);
  transform: translateY(-2px);
}
#stt:active { transform: translateY(0) scale(.95); }
#stt svg { display: block; flex-shrink: 0; }

@media (max-width: 880px) {
  #stt {
    width: 40px;
    height: 40px;
    bottom: 20px;
    right: 16px;
  }
}

/* Force space between VOYAGR and ONE at all sizes */
.nav-logo-word .one { margin-left: 5px; }

/* ── CONSULTATION BUTTON ── */
.btn-consult {
  display: inline-flex; align-items: center;
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  font-weight: 700; font-size: .9rem; border-radius: 100px;
  padding: 10px 10px 10px 24px; text-decoration: none;
  transition: background .22s cubic-bezier(0.23,1,0.32,1),
              color .22s cubic-bezier(0.23,1,0.32,1),
              transform .18s cubic-bezier(0.23,1,0.32,1),
              box-shadow .22s;
  white-space: nowrap;
}
[data-theme="dark"] .btn-consult {
  color: #6B9FD4;
  border-color: #3E6FBF;
}
.btn-consult:hover {
  background: var(--navy);
  color: #EEF1FA;
  transform: scale(.97);
  box-shadow: 0 4px 20px rgba(2,28,65,.22);
}
[data-theme="dark"] .btn-consult:hover {
  background: #1A3A6E;
  color: #EEF1FA;
  border-color: #1A3A6E;
}
.btn-consult:active { transform: scale(.95); }
.btn-consult .ico {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(2,28,65,.08);
  display: flex; align-items: center; justify-content: center;
  margin-left: 10px; font-size: 13px;
  transition: transform .18s cubic-bezier(0.23,1,0.32,1), background .22s;
}
.btn-consult:hover .ico {
  transform: translate(2px,-2px);
  background: rgba(255,255,255,.15);
}
[data-theme="dark"] .btn-consult .ico { background: rgba(62,111,191,.15); }

/* Fix hero badge wrapping on mobile */
@media (max-width: 480px) {
  .badge { font-size: .58rem; padding: 4px 10px; }
}
