/* ================================================================
   NVCC — WORLD CLASS DESIGN SYSTEM v2
   Built from scratch. Inspired by Stripe, Linear, Mercury, Phoenix.
   Every decision serves trust, speed, and premium feel.
================================================================ */

/* ── IMPORT ──────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,200..900;1,9..144,200..900&family=Manrope:wght@300;400;500;600;700;800;900&family=IBM+Plex+Mono:wght@400;500;700&display=swap');

/* ── TOKENS ──────────────────────────────────────────────────────── */
:root {
  /* Core palette */
  --ink:          #06091A;
  --navy-1:       #06122E;
  --navy-2:       #0A1A3E;
  --navy-3:       #142C5C;
  --navy-4:       #1E3D7A;
  --gold-1:       #96680A;
  --gold-2:       #C9A84C;
  --gold-3:       #D4B86A;
  --gold-4:       #E8D49A;
  --ivory:        #FAF8F4;
  --bone:         #F3EFE6;
  --cream:        #FAF8F4;
  --white:        #FFFFFF;

  /* Semantic */
  --bg:           var(--ivory);
  --surface:      var(--white);
  --surface-2:    var(--bone);
  --border:       rgba(10,26,62,.1);
  --border-strong:rgba(10,26,62,.18);
  --text-1:       var(--navy-2);
  --text-2:       #3D4F6E;
  --text-3:       #6B7A99;
  --accent:       var(--gold-2);

  /* Green / Red for status */
  --green:        #059669;
  --green-bg:     #F0FDF4;
  --red:          #DC2626;
  --red-bg:       #FEF2F2;
  --amber:        #D97706;
  --amber-bg:     #FFFBEB;
  --blue:         #2563EB;

  /* Typography */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Manrope', -apple-system, system-ui, sans-serif;
  --font-mono:    'IBM Plex Mono', 'Cascadia Code', monospace;

  /* Type scale */
  --text-xs:   11px;
  --text-sm:   13px;
  --text-base: 15px;
  --text-md:   17px;
  --text-lg:   20px;
  --text-xl:   24px;
  --text-2xl:  32px;
  --text-3xl:  40px;
  --text-4xl:  52px;
  --text-5xl:  68px;
  --text-6xl:  88px;

  /* Spacing */
  --sp-1: 4px;  --sp-2: 8px;   --sp-3: 12px;  --sp-4: 16px;
  --sp-5: 20px; --sp-6: 24px;  --sp-7: 28px;  --sp-8: 32px;  --sp-10: 40px;
  --sp-12: 48px;--sp-16: 64px; --sp-20: 80px; --sp-24: 96px;

  /* Compatibility aliases — used by animations.css and style.css */
  --navy:     var(--navy-2);
  --grey-200: #e5e7eb;
  --grey-300: #d1d5db;
  --grey-400: #9ca3af;

  /* Radii */
  --r-sm: 6px; --r-md: 10px; --r-lg: 14px; --r-xl: 20px; --r-2xl: 28px; --r-full: 999px;

  /* Shadows */
  --s-xs: 0 1px 3px rgba(6,9,26,.06), 0 1px 2px rgba(6,9,26,.04);
  --s-sm: 0 2px 8px rgba(6,9,26,.08), 0 1px 3px rgba(6,9,26,.06);
  --s-md: 0 8px 24px rgba(6,9,26,.1),  0 2px 8px rgba(6,9,26,.06);
  --s-lg: 0 16px 48px rgba(6,9,26,.12), 0 4px 16px rgba(6,9,26,.08);
  --s-xl: 0 24px 64px rgba(6,9,26,.16), 0 8px 24px rgba(6,9,26,.1);
  --s-gold: 0 8px 32px rgba(201,168,76,.3);

  /* Motion */
  --ease-spring: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out:    cubic-bezier(0, 0, 0.2, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast:  150ms;
  --dur-base:  250ms;
  --dur-slow:  400ms;
  --dur-reveal:700ms;

  /* Layout */
  --max-w: 1200px;
  --nav-h: 68px;
}

/* ── RESET ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); font-size: var(--text-base); color: var(--text-1); background: var(--bg); line-height: 1.6; overflow-x: hidden; }
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select, textarea { font-family: inherit; }
::selection { background: rgba(201,168,76,.25); color: var(--navy-2); }
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(201,168,76,.3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(201,168,76,.6); }

/* ── LAYOUT ──────────────────────────────────────────────────────── */
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--sp-6); }
@media (max-width: 640px) { .wrap { padding: 0 var(--sp-4); } }

/* ── KEYFRAMES ───────────────────────────────────────────────────── */
@keyframes fade-up    { from { opacity:0; transform:translateY(28px);   } to { opacity:1; transform:none; } }
@keyframes fade-in    { from { opacity:0; }                               to { opacity:1; } }
@keyframes fade-left  { from { opacity:0; transform:translateX(28px);  } to { opacity:1; transform:none; } }
@keyframes fade-right { from { opacity:0; transform:translateX(-28px); } to { opacity:1; transform:none; } }
@keyframes scale-in   { from { opacity:0; transform:scale(.94); }        to { opacity:1; transform:scale(1); } }
@keyframes ripple     { from { opacity:.45; transform:scale(0); } to { opacity:0; transform:scale(2.4); } }
@keyframes ticker     { from { transform:translateX(0); } to { transform:translateX(-50%); } }
@keyframes marquee    { from { transform:translateX(0); } to { transform:translateX(-50%); } }
@keyframes pulse-gold { 0%,100% { box-shadow:0 0 0 0 rgba(201,168,76,.5); } 60% { box-shadow:0 0 0 12px rgba(201,168,76,0); } }
@keyframes float      { 0%,100% { transform:translateY(0px) rotate(0deg); } 33% { transform:translateY(-8px) rotate(.5deg); } 66% { transform:translateY(-4px) rotate(-.5deg); } }
@keyframes gradient-x { 0%,100% { background-position:0% 50%; } 50% { background-position:100% 50%; } }
@keyframes spin       { to { transform:rotate(360deg); } }
@keyframes flap       { 0%,100% { transform:rotateX(0); } 45%,55% { transform:rotateX(-90deg); } }
@keyframes dot-pulse  { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:.3; transform:scale(1.5); } }
@keyframes shimmer    { 0% { background-position:-600px 0; } 100% { background-position:600px 0; } }
@keyframes toast-in   { from { opacity:0; transform:translateX(-50%) translateY(80px) scale(.92); } to { opacity:1; transform:translateX(-50%) translateY(0) scale(1); } }
@keyframes toast-out  { from { opacity:1; transform:translateX(-50%) translateY(0); } to { opacity:0; transform:translateX(-50%) translateY(40px); } }
@keyframes mesh-move  { 0% { transform:rotate(0deg) scale(1); } 50% { transform:rotate(180deg) scale(1.1); } 100% { transform:rotate(360deg) scale(1); } }
@keyframes border-anim{ 0% { background-position:0% 50%; } 50% { background-position:100% 50%; } 100% { background-position:0% 50%; } }

/* ── TOPBAR ──────────────────────────────────────────────────────── */
.topbar {
  background: var(--navy-1);
  height: 36px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.tb-left {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex: 1;
  overflow: hidden;
  min-width: 0;
}
.tb-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34d399;
  flex-shrink: 0;
  animation: dot-pulse 2.5s ease-in-out infinite;
}
.tb-ticker-wrap {
  overflow: hidden;
  flex: 1;
  min-width: 0;
  position: relative;
}
.tb-ticker-track {
  display: inline-block;
  white-space: nowrap;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  animation: ticker 32s linear infinite;
  will-change: transform;
}
.tb-right {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-shrink: 0;
}
.tb-right a {
  font-size: 11px;
  color: rgba(255,255,255,.5);
  transition: color var(--dur-fast);
  white-space: nowrap;
}
.tb-right a:hover { color: rgba(255,255,255,.85); }
.tb-portal {
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: var(--r-sm);
  padding: 3px 10px;
  color: var(--gold-3) !important;
  font-weight: 700 !important;
  font-size: 10px !important;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: all var(--dur-fast) !important;
}
.tb-portal:hover { background: rgba(201,168,76,.25) !important; color: #fff !important; }

/* ── RATES STRIP ──────────────────────────────────────────────────── */
.rates-strip {
  background: rgba(10,26,62,.97);
  border-bottom: 1px solid rgba(201,168,76,.12);
  height: 32px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.rates-strip .wrap {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  width: 100%;
}
.rates-strip-label {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(201,168,76,.5);
  flex-shrink: 0;
  border-right: 1px solid rgba(255,255,255,.08);
  padding-right: var(--sp-4);
  white-space: nowrap;
}
.rates-strip-items { flex: 1; overflow: hidden; min-width: 0; }
.rates-strip-track {
  display: inline-flex;
  gap: 0;
  animation: ticker 28s linear infinite;
  will-change: transform;
}
.rate-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,.06);
  white-space: nowrap;
}
.rate-currency { font-size: 9px; font-weight: 800; letter-spacing: .1em; color: rgba(201,168,76,.6); text-transform: uppercase; }
.rate-value    { font-size: 11px; font-weight: 700; color: rgba(255,255,255,.8); font-family: var(--font-mono); }
.rate-base     { font-size: 9px; color: rgba(255,255,255,.25); }
.rates-strip-updated { font-size: 9px; color: rgba(255,255,255,.2); flex-shrink: 0; white-space: nowrap; }

/* ── SITE HEADER ─────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--nav-h);
  background: rgba(250,248,244,.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-base), background var(--dur-base), box-shadow var(--dur-base);
}
.site-header.scrolled {
  background: rgba(250,248,244,.98);
  border-bottom-color: var(--border);
  box-shadow: var(--s-sm);
}
.site-header .wrap {
  height: 100%;
  display: flex;
  align-items: center;
  gap: var(--sp-8);
}
.brand {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
  text-decoration: none;
}
.brand-mark {
  width: 40px;
  height: 40px;
  object-fit: contain;
  animation: float 8s ease-in-out infinite;
  filter: drop-shadow(0 4px 12px rgba(10,26,62,.2));
}
.brand-text {
  line-height: 1;
  font-weight: 800;
  font-size: 16px;
  color: var(--navy-2);
  letter-spacing: -.01em;
}
.brand-text span {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--text-3);
  margin-top: 2px;
  text-transform: none;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  margin-left: auto;
}
.site-nav a {
  padding: 7px 13px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-2);
  border-radius: var(--r-md);
  transition: all var(--dur-fast) var(--ease-out);
  position: relative;
  white-space: nowrap;
}
.site-nav a:hover { color: var(--navy-2); background: rgba(10,26,62,.05); }
.site-nav a.active { color: var(--navy-2); font-weight: 700; }
.site-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 13px;
  right: 13px;
  height: 2px;
  background: var(--gold-2);
  border-radius: 2px;
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 9px 20px !important;
  background: var(--navy-2) !important;
  color: #fff !important;
  border-radius: var(--r-md) !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  transition: all var(--dur-base) var(--ease-spring) !important;
  overflow: hidden;
  position: relative;
  margin-left: var(--sp-2);
}
.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
  opacity: 0;
  transition: opacity var(--dur-base);
}
.nav-cta:hover::before { opacity: 1; }
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(10,26,62,.25); }
.nav-cta:active { transform: translateY(0) scale(.97); }
.nav-cta span { position: relative; z-index: 1; }
.menu-toggle {
  display: none;
  width: 36px;
  height: 36px;
  border-radius: var(--r-md);
  border: 1.5px solid var(--border);
  background: var(--surface);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-left: auto;
}
.menu-toggle .bar {
  width: 18px;
  height: 1.5px;
  background: var(--navy-2);
  border-radius: 2px;
  transition: all var(--dur-base) var(--ease-spring);
}
@media (max-width: 900px) {
  .menu-toggle { display: flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: var(--sp-3);
    flex-direction: column;
    align-items: stretch;
    box-shadow: var(--s-lg);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px 16px; border-radius: var(--r-md); }
  .nav-cta { margin-left: 0; justify-content: center; }
}

/* ── BUTTONS ─────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 12px 24px;
  border-radius: var(--r-md);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .01em;
  transition: all var(--dur-base) var(--ease-spring);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  text-decoration: none;
  font-family: var(--font-body);
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(255,255,255,0);
  transition: background var(--dur-fast);
}
.btn:hover::after { background: rgba(255,255,255,.08); }
.btn:active { transform: scale(.97); }

/* Ripple */
.btn-ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple .5s ease-out;
  background: rgba(255,255,255,.25);
  pointer-events: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--navy-2), var(--navy-3));
  color: #fff;
  box-shadow: 0 2px 8px rgba(10,26,62,.2);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(10,26,62,.3); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
  color: #fff;
  box-shadow: 0 2px 8px rgba(201,168,76,.3);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: var(--s-gold); filter: brightness(1.05); }

.btn-outline {
  background: transparent;
  border: 2px solid var(--navy-2);
  color: var(--navy-2);
}
.btn-outline:hover { background: var(--navy-2); color: #fff; transform: translateY(-1px); }

.btn-ghost {
  background: rgba(10,26,62,.06);
  color: var(--navy-2);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: rgba(10,26,62,.1); }

.btn-white {
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
}
.btn-white:hover { background: rgba(255,255,255,.2); transform: translateY(-1px); }

.btn-light {
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.25);
}
.btn-light:hover { background: rgba(255,255,255,.22); transform: translateY(-1px); }

.btn-sm { padding: 9px 18px; font-size: 13px; border-radius: var(--r-md); }
.btn-lg { padding: 15px 32px; font-size: 15px; border-radius: var(--r-lg); }
.btn-xl { padding: 18px 40px; font-size: 16px; border-radius: var(--r-lg); letter-spacing: .02em; }
.btn-block { width: 100%; }
.btn-icon { width: 40px; height: 40px; padding: 0; border-radius: var(--r-md); }

/* Pulse animation on primary CTA */
.btn-pulse { animation: pulse-gold 2.5s ease infinite; }

/* ── HERO ────────────────────────────────────────────────────────── */
.hero {
  background: var(--navy-1);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 80px 0 60px;
}

/* Animated mesh gradient background */
.hero-mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-mesh::before {
  content: '';
  position: absolute;
  width: 900px;
  height: 900px;
  top: -30%;
  right: -15%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.12) 0%, transparent 70%);
  animation: mesh-move 20s linear infinite;
}
.hero-mesh::after {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  bottom: -20%;
  left: -10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,.09) 0%, transparent 70%);
  animation: mesh-move 28s linear infinite reverse;
}
.hero-noise {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

/* Grid lines */
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 80%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-inner .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 960px) {
  .hero-inner .wrap {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: var(--r-full);
  padding: 6px 14px;
  margin-bottom: var(--sp-6);
}
.hero-kicker-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-3);
  animation: dot-pulse 2s ease-in-out infinite;
}
.hero-kicker-text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-3);
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.5vw, 80px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -.03em;
  color: #fff;
  margin-bottom: var(--sp-6);
}
.hero-headline em {
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(201,168,76,.8);
  background: linear-gradient(135deg, var(--gold-2), var(--gold-3));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.hero-sub {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,255,255,.6);
  max-width: 480px;
  margin-bottom: var(--sp-8);
}
.hero-cta {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-wrap: wrap;
  margin-bottom: var(--sp-10);
}
.hero-stats {
  display: flex;
  gap: var(--sp-8);
  padding-top: var(--sp-8);
  border-top: 1px solid rgba(255,255,255,.08);
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-num em { color: var(--gold-3); font-style: normal; }
.hero-stat-label { font-size: 11.5px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.35); }

@media (max-width: 960px) {
  .hero-inner .wrap { grid-template-columns: 1fr; gap: var(--sp-12); }
  .hero-headline { font-size: clamp(38px, 8vw, 60px); }
}

/* ── FIDS BOARD (Airport Departure Board) ────────────────────────── */
.fids-wrap {
  background: #04070F;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,.15);
  box-shadow: 0 0 0 1px rgba(201,168,76,.04), 0 32px 64px rgba(0,0,0,.6);
}
.fids-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  background: rgba(201,168,76,.06);
  border-bottom: 1px solid rgba(201,168,76,.1);
}
.fids-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  color: #F5D06A;
  text-transform: uppercase;
}
.fids-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 4px rgba(52,211,153,.2);
  animation: dot-pulse 2s ease-in-out infinite;
}
.fids-clock {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(201,168,76,.5);
  letter-spacing: .06em;
}
.fids-cols {
  display: grid;
  grid-template-columns: 2.2fr 1.1fr 1fr 0.9fr 0.9fr;
  gap: 8px;
  padding: 7px 20px;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(201,168,76,.35);
  border-bottom: 1px solid rgba(201,168,76,.06);
}
.fids-row {
  display: grid;
  grid-template-columns: 2.2fr 1.1fr 1fr 0.9fr 0.9fr;
  gap: 8px;
  padding: 10px 20px;
  border-bottom: 1px solid rgba(255,255,255,.03);
  transition: background var(--dur-fast);
  font-family: var(--font-mono);
  font-size: 12px;
}
.fids-row:hover { background: rgba(255,255,255,.025); }
.fids-row:last-child { border-bottom: none; }
.fids-dest { color: #F5D06A; font-weight: 700; font-size: 11.5px; }
.fids-type { color: rgba(255,255,255,.45); font-size: 11px; }
.fids-time { color: rgba(201,168,76,.6); font-size: 11px; }
.fids-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: var(--r-full);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.fids-open { background: rgba(52,211,153,.15); color: #34d399; }
.fids-ltd  { background: rgba(251,191,36,.15);  color: #fbbf24; }

/* Flap animation for cells */
.flap-cell {
  display: inline-block;
  min-width: 1ch;
}
.flap-cell.flipping {
  animation: flap .1s ease-in-out;
}

/* ── MARQUEE ─────────────────────────────────────────────────────── */
.marquee-band {
  padding: 14px 0;
  overflow: hidden;
  background: var(--navy-2);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.marquee-track {
  display: inline-flex;
  gap: 0;
  animation: marquee 36s linear infinite;
  will-change: transform;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 28px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  white-space: nowrap;
  border-right: 1px solid rgba(255,255,255,.06);
}
.marquee-item-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-2);
  flex-shrink: 0;
}

/* Light marquee variant */
.marquee-band-light {
  background: var(--bone);
  border-color: var(--border);
}
.marquee-band-light .marquee-item { color: var(--text-3); }

/* ── SECTIONS ────────────────────────────────────────────────────── */
.sec       { padding: var(--sp-24) 0; }
.sec-sm    { padding: var(--sp-16) 0; }
.sec-lg    { padding: 120px 0; }
.sec-dark  { background: var(--navy-1); }
.sec-navy  { background: var(--navy-2); }
.sec-cream { background: var(--bone); }
.sec-white { background: var(--white); }

.section-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-1);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--sp-3);
}
.section-label::before {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--gold-2);
  flex-shrink: 0;
}
.section-label-dark { color: var(--gold-3); }
.section-label-dark::before { background: var(--gold-3); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -.025em;
  color: var(--navy-2);
}
.section-title em {
  font-style: italic;
  color: var(--gold-1);
}
.section-title-dark { color: #fff; }
.section-title-dark em { color: var(--gold-3); }

.section-sub {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-3);
  max-width: 560px;
}
.section-sub-dark { color: rgba(255,255,255,.55); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--sp-12);
}
.section-header .section-label { justify-content: center; }

/* ── CARDS ───────────────────────────────────────────────────────── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  transition: all var(--dur-slow) var(--ease-spring);
}
.card:hover {
  border-color: rgba(10,26,62,.18);
  box-shadow: var(--s-md);
  transform: translateY(-3px);
}
.card-dark {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.07);
}
.card-dark:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(201,168,76,.25);
  box-shadow: 0 16px 48px rgba(0,0,0,.4);
}

/* Glow border card */
.card-glow {
  position: relative;
  background: var(--surface);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  overflow: hidden;
}
.card-glow::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, var(--gold-2), transparent 50%, var(--navy-3));
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  transition: opacity var(--dur-slow);
}
.card-glow:hover::before { opacity: 1; }

/* ── STATS BAND ──────────────────────────────────────────────────── */
.stats-band {
  background: var(--navy-1);
  padding: var(--sp-20) 0;
}
.stats-band-head {
  text-align: center;
  margin-bottom: var(--sp-12);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.06);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.stat-card {
  background: rgba(255,255,255,.03);
  padding: var(--sp-8);
  position: relative;
  overflow: hidden;
  transition: background var(--dur-base);
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-1), var(--gold-2));
  opacity: 0;
  transition: opacity var(--dur-base);
}
.stat-card:hover { background: rgba(255,255,255,.06); }
.stat-card:hover::before { opacity: 1; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  line-height: 1;
  color: #fff;
  letter-spacing: -.03em;
  margin-bottom: var(--sp-3);
}
.stat-suffix { color: var(--gold-3); font-size: .6em; }
.stat-label {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.35);
  margin-bottom: var(--sp-2);
}
.stat-desc { font-size: 13px; color: rgba(255,255,255,.35); line-height: 1.6; }

@media (max-width: 760px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ── EDITORIAL DROP CAP ──────────────────────────────────────────── */
.ae-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: var(--sp-16);
  align-items: start;
}
.ae-eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: var(--sp-4);
}
.ae-numeral {
  font-family: var(--font-display);
  font-size: 120px;
  font-weight: 300;
  line-height: 1;
  color: var(--border);
  letter-spacing: -.05em;
  margin-top: var(--sp-4);
}
.dropcap-text { font-size: 17px; line-height: 1.8; color: var(--text-2); }
.dropcap-text .dropcap {
  float: left;
  font-family: var(--font-display);
  font-size: 5.2em;
  font-style: italic;
  font-weight: 400;
  line-height: .78;
  padding-right: .18em;
  padding-top: .06em;
  margin-right: .04em;
  color: var(--navy-2);
}
.dropcap-text::after { content: ''; display: table; clear: both; }
.ae-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-top: var(--sp-6);
}
.ae-tag {
  padding: 5px 13px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-full);
  font-size: 12px;
  font-weight: 600;
  color: var(--navy-2);
  background: var(--surface);
  transition: all var(--dur-fast);
}
.ae-tag:hover { border-color: var(--navy-2); background: rgba(10,26,62,.05); }

@media (max-width: 800px) { .ae-grid { grid-template-columns: 1fr; gap: var(--sp-8); } }

/* ── DESTINATION CARDS ───────────────────────────────────────────── */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--sp-4);
}
.dest-card {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  text-decoration: none;
  transition: all var(--dur-slow) var(--ease-spring);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  position: relative;
}
.dest-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--s-lg);
  border-color: rgba(10,26,62,.2);
}
.dest-card.featured {
  border-color: var(--navy-2);
  box-shadow: var(--s-sm);
}
.dest-card-top {
  padding: var(--sp-6) var(--sp-5) var(--sp-5);
  background: linear-gradient(160deg, #F0EDE6, var(--bone));
  position: relative;
}
.dest-card.featured .dest-card-top {
  background: linear-gradient(160deg, var(--navy-2), var(--navy-3));
}
.dest-flag {
  font-size: 52px;
  line-height: 1;
  margin-bottom: var(--sp-3);
  display: block;
  transition: transform var(--dur-slow) var(--ease-spring);
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.15));
}
.dest-card:hover .dest-flag { transform: scale(1.15) rotate(-4deg); }
.dest-name { font-size: 20px; font-weight: 800; color: var(--navy-2); margin-bottom: 4px; }
.dest-card.featured .dest-name { color: #fff; }
.dest-desc { font-size: 12.5px; color: var(--text-3); line-height: 1.5; }
.dest-card.featured .dest-desc { color: rgba(255,255,255,.6); }
.dest-featured-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--gold-2);
  color: var(--navy-2);
  font-size: 9px;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: var(--r-full);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.dest-card-body { padding: var(--sp-4) var(--sp-5); flex: 1; }
.dest-types {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-1);
  margin-bottom: var(--sp-3);
}
.dest-type-tag {
  font-size: 11px;
  font-weight: 600;
  background: rgba(10,26,62,.06);
  color: var(--navy-2);
  padding: 3px 9px;
  border-radius: var(--r-full);
}
.dest-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--sp-3);
  border-top: 1px solid var(--border);
  margin-top: var(--sp-3);
}
.dest-time { font-size: 12.5px; font-weight: 700; color: var(--navy-2); }
.dest-time span { font-size: 10px; font-weight: 600; color: var(--text-3); display: block; margin-bottom: 1px; text-transform: uppercase; letter-spacing: .08em; }
.dest-fee { font-size: 13px; font-weight: 700; color: var(--gold-1); text-align: right; }
.dest-fee span { font-size: 10px; color: var(--text-3); display: block; text-transform: uppercase; letter-spacing: .08em; }
.dest-arrow {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(10,26,62,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--navy-2);
  transition: all var(--dur-base) var(--ease-spring);
  flex-shrink: 0;
}
.dest-card:hover .dest-arrow {
  background: var(--navy-2);
  color: #fff;
  transform: translateX(3px);
}
.dest-card.featured .dest-arrow {
  background: rgba(255,255,255,.15);
  color: #fff;
}
.dest-card.featured:hover .dest-arrow {
  background: var(--gold-2);
  color: var(--navy-2);
}

/* ── SERVICES ACCORDION ──────────────────────────────────────────── */
.services-accordion { border-top: 1px solid var(--border); }
.sa-row {
  display: grid;
  grid-template-columns: 64px 1fr 40px;
  gap: var(--sp-6);
  align-items: center;
  padding: var(--sp-6) 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: all var(--dur-fast);
}
.sa-row:hover { background: rgba(10,26,62,.025); padding-left: var(--sp-4); border-radius: var(--r-md); }
.sa-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  color: var(--border-strong);
  line-height: 1;
}
.sa-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy-2);
  margin-bottom: 4px;
}
.sa-desc { font-size: 14px; color: var(--text-3); line-height: 1.6; }
.sa-arrow-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--r-full);
  background: rgba(10,26,62,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-2);
  font-size: 16px;
  transition: all var(--dur-base) var(--ease-spring);
  flex-shrink: 0;
}
.sa-row:hover .sa-arrow-icon {
  background: var(--navy-2);
  color: #fff;
  transform: translateX(4px);
}

/* ── VISA TOOL CARDS (embassy status, converter, etc) ─────────────── */
.tool-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
  margin-top: var(--sp-8);
}
.tool-card-v2 {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  transition: all var(--dur-base) var(--ease-spring);
}
.tool-card-v2:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(201,168,76,.2);
  transform: translateY(-2px);
}
.tool-label {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-3);
  margin-bottom: var(--sp-5);
}
.tool-label::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-2);
  box-shadow: 0 0 0 3px rgba(201,168,76,.18);
  flex-shrink: 0;
}
.tool-full { grid-column: span 2; }
@media (max-width: 760px) {
  .tool-grid { grid-template-columns: 1fr; }
  .tool-full { grid-column: span 1; }
}

/* Embassy status rows */
.embassy-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.embassy-row:last-child { border-bottom: none; }
.embassy-name { font-size: 13.5px; font-weight: 700; color: rgba(255,255,255,.85); }
.embassy-type { font-size: 11px; color: rgba(255,255,255,.3); margin-top: 2px; }
.status-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-family: var(--font-mono);
}
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.status-open  { color: #34d399; }
.status-open .status-dot  { background: #34d399; box-shadow: 0 0 0 3px rgba(52,211,153,.2); animation: dot-pulse 2s infinite; }
.status-closed { color: rgba(255,255,255,.3); }
.status-closed .status-dot { background: rgba(255,255,255,.2); }

/* World clock */
.clock-row-v2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.clock-row-v2:last-child { border-bottom: none; }
.clock-city { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.75); }
.clock-tz   { font-size: 10px; color: rgba(255,255,255,.3); margin-top: 1px; }
.clock-time-v2 {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .03em;
  font-variant-numeric: tabular-nums;
}
.clock-ampm { font-size: 10px; color: var(--gold-3); margin-left: 3px; }

/* Currency converter */
.cc-inp-v2 {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 600;
  padding: 11px 14px;
  outline: none;
  transition: border-color var(--dur-fast);
  width: 100%;
}
.cc-inp-v2:focus { border-color: var(--gold-2); }
.cc-sel-v2 {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 11px 12px;
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
  min-width: 72px;
}
.cc-result-v2 {
  background: rgba(201,168,76,.08);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: var(--r-md);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 17px;
  font-weight: 700;
  padding: 11px 14px;
  flex: 1;
}
.cc-swap {
  width: 100%;
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: var(--r-md);
  color: var(--gold-3);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 9px;
  transition: background var(--dur-fast);
  font-family: var(--font-body);
}
.cc-swap:hover { background: rgba(201,168,76,.2); }
.cc-note-v2 { font-size: 11px; color: rgba(255,255,255,.3); text-align: center; margin-top: 6px; letter-spacing: .03em; }

/* ── PROCESS STEPS ───────────────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.process-line {
  position: absolute;
  top: 26px;
  left: calc(10% + 20px);
  right: calc(10% + 20px);
  height: 1px;
  background: linear-gradient(90deg, var(--border), rgba(10,26,62,.06), var(--border));
}
.process-step { text-align: center; padding: 0 var(--sp-3); position: relative; z-index: 1; }
.process-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  margin: 0 auto var(--sp-4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background: var(--surface);
  border: 2px solid var(--border);
  transition: all var(--dur-slow) var(--ease-spring);
  position: relative;
}
.process-circle::after {
  content: attr(data-num);
  position: absolute;
  top: -8px;
  right: -8px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--navy-2);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
}
.process-step:hover .process-circle {
  background: var(--navy-2);
  border-color: var(--navy-2);
  transform: scale(1.1);
  box-shadow: 0 0 0 8px rgba(10,26,62,.08);
}
.process-step:hover .process-circle::after { background: var(--gold-2); }
.process-title { font-size: 13.5px; font-weight: 700; color: var(--navy-2); margin-bottom: var(--sp-2); }
.process-desc  { font-size: 12.5px; color: var(--text-3); line-height: 1.5; }

@media (max-width: 800px) {
  .process-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-6); }
  .process-line { display: none; }
}
@media (max-width: 500px) {
  .process-grid { grid-template-columns: 1fr; }
}

/* ── TESTIMONIALS ────────────────────────────────────────────────── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
.testi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  transition: all var(--dur-slow) var(--ease-spring);
  position: relative;
  overflow: hidden;
}
.testi-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: var(--sp-6);
  font-family: var(--font-display);
  font-size: 120px;
  color: rgba(10,26,62,.04);
  line-height: 1;
  pointer-events: none;
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--s-md);
  border-color: rgba(10,26,62,.15);
}
.testi-stars { color: var(--gold-2); font-size: 14px; letter-spacing: 2px; margin-bottom: var(--sp-4); }
.testi-text {
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: var(--sp-5);
  position: relative;
  z-index: 1;
}
.testi-author { display: flex; align-items: center; gap: var(--sp-3); }
.testi-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-2), var(--navy-3));
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testi-name { font-size: 14px; font-weight: 700; color: var(--navy-2); }
.testi-visa { font-size: 12px; color: var(--text-3); margin-top: 1px; }

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

/* ── CHINA TABS ──────────────────────────────────────────────────── */
.ch-grid-v2 {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--sp-16);
  align-items: start;
}
.ch-tabs-v2 { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-bottom: var(--sp-5); }
.ch-tab-v2 {
  padding: 8px 16px;
  border-radius: var(--r-full);
  border: 1.5px solid var(--border);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-3);
  background: var(--surface);
  transition: all var(--dur-base) var(--ease-spring);
}
.ch-tab-v2:hover { border-color: var(--navy-2); color: var(--navy-2); }
.ch-tab-v2.active { background: var(--navy-2); border-color: var(--navy-2); color: #fff; }
.ch-panel-v2 { display: none; animation: fade-up var(--dur-slow) var(--ease-spring); }
.ch-panel-v2.active { display: block; }
.ch-meta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-3); margin: var(--sp-4) 0; }
.ch-meta-item { background: var(--bone); border-radius: var(--r-lg); padding: 14px 16px; }
.ch-meta-label { font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--text-3); margin-bottom: 4px; }
.ch-meta-val   { font-size: 14.5px; font-weight: 700; color: var(--navy-2); }
.ch-docs-title { font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--text-3); margin-bottom: var(--sp-3); }
.ch-docs-list  { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.ch-docs-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
  font-size: 13.5px;
  color: var(--text-2);
  padding: 8px 12px;
  background: var(--ivory);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
}
.ch-docs-list li::before { content: '→'; color: var(--gold-2); font-weight: 700; flex-shrink: 0; font-size: 12px; margin-top: 1px; }
.ch-facts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; margin-top: var(--sp-6); }
.ch-fact { background: var(--bone); padding: 16px 18px; }
.ch-fact-label { font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--text-3); margin-bottom: 4px; }
.ch-fact-val { font-size: 15px; font-weight: 700; color: var(--navy-2); }
@media (max-width: 900px) { .ch-grid-v2 { grid-template-columns: 1fr; gap: var(--sp-10); } }

/* ── PHOENIX FAMILY ──────────────────────────────────────────────── */
.family-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}
.family-card {
  padding: var(--sp-8);
  border-radius: var(--r-xl);
  border: 2px solid var(--border);
  background: var(--surface);
  transition: all var(--dur-base) var(--ease-spring);
  text-decoration: none;
  display: block;
}
.family-card:hover { border-color: var(--navy-2); box-shadow: var(--s-md); transform: translateY(-3px); }
.family-card.active { border-color: var(--navy-2); background: var(--navy-2); }
.family-card-logo { font-size: 40px; margin-bottom: var(--sp-4); display: block; }
.family-card-name { font-size: 16px; font-weight: 700; color: var(--navy-2); margin-bottom: 4px; }
.family-card.active .family-card-name { color: #fff; }
.family-card-tag { font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-1); margin-bottom: var(--sp-3); }
.family-card.active .family-card-tag { color: var(--gold-3); }
.family-card-desc { font-size: 13px; color: var(--text-3); line-height: 1.6; margin-bottom: var(--sp-4); }
.family-card.active .family-card-desc { color: rgba(255,255,255,.6); }
.family-card-link { font-size: 13px; font-weight: 700; color: var(--gold-1); }
.family-card.active .family-card-link { color: var(--gold-3); }

/* ── CTA SECTION ─────────────────────────────────────────────────── */
.cta-section {
  background: var(--navy-1);
  padding: var(--sp-24) 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  top: -50%;
  right: -20%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: start;
}
.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.05;
  color: #fff;
  letter-spacing: -.025em;
  margin-bottom: var(--sp-5);
}
.cta-headline em { color: transparent; -webkit-text-stroke: 1.5px var(--gold-3); font-style: italic; }
.cta-sub { font-size: 16px; color: rgba(255,255,255,.55); line-height: 1.75; margin-bottom: var(--sp-8); }
.cta-actions { display: flex; gap: var(--sp-3); flex-wrap: wrap; }
.cta-links { display: flex; flex-direction: column; gap: var(--sp-3); }
.cta-link-card {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r-lg);
  padding: 16px 18px;
  color: #fff;
  transition: all var(--dur-base) var(--ease-spring);
  cursor: pointer;
  text-decoration: none;
}
.cta-link-card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(201,168,76,.3);
  transform: translateX(4px);
}
.cta-link-icon { font-size: 22px; flex-shrink: 0; }
.cta-link-title { font-size: 14px; font-weight: 700; }
.cta-link-desc  { font-size: 12px; color: rgba(255,255,255,.4); margin-top: 2px; }
.cta-link-arrow { margin-left: auto; color: rgba(255,255,255,.3); font-size: 16px; transition: transform var(--dur-fast); }
.cta-link-card:hover .cta-link-arrow { transform: translateX(4px); color: var(--gold-3); }
@media (max-width: 900px) { .cta-inner { grid-template-columns: 1fr; gap: var(--sp-10); } }

/* ── FOOTER ──────────────────────────────────────────────────────── */
.site-footer { background: var(--ink); }
.footer-main { padding: var(--sp-20) 0 var(--sp-12); border-bottom: 1px solid rgba(255,255,255,.06); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-12);
}
.footer-brand { margin-bottom: var(--sp-5); }
.footer-desc { font-size: 13.5px; color: rgba(255,255,255,.35); line-height: 1.8; max-width: 300px; margin-bottom: var(--sp-5); }
.footer-contact { display: flex; gap: var(--sp-2); flex-wrap: wrap; }
.footer-contact a {
  font-size: 12px;
  color: rgba(255,255,255,.4);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.07);
  padding: 7px 13px;
  border-radius: var(--r-md);
  transition: all var(--dur-fast);
}
.footer-contact a:hover { color: #fff; border-color: rgba(201,168,76,.3); background: rgba(201,168,76,.08); }
.footer-col h5 {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.25);
  margin-bottom: var(--sp-4);
}
.footer-col a {
  display: block;
  font-size: 13.5px;
  color: rgba(255,255,255,.4);
  margin-bottom: var(--sp-3);
  transition: all var(--dur-fast);
}
.footer-col a:hover { color: rgba(255,255,255,.85); padding-left: 4px; }
.footer-sub-brand {
  margin-top: var(--sp-5);
  padding-top: var(--sp-5);
  border-top: 1px solid rgba(255,255,255,.07);
}
.footer-sub-label { font-size: 10px; color: rgba(255,255,255,.2); letter-spacing: .12em; text-transform: uppercase; margin-bottom: var(--sp-2); }
.footer-sub-link { font-size: 13px; color: rgba(255,255,255,.4); display: flex; align-items: center; gap: var(--sp-2); transition: color var(--dur-fast); }
.footer-sub-link:hover { color: rgba(255,255,255,.7); }
.footer-bot { padding: var(--sp-5) 0; }
.footer-bot-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(255,255,255,.2);
}
.footer-legal { display: flex; gap: var(--sp-5); }
.footer-legal a { color: rgba(255,255,255,.2); transition: color var(--dur-fast); }
.footer-legal a:hover { color: rgba(255,255,255,.55); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-8); } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }

/* ── CHATBOT ─────────────────────────────────────────────────────── */
.chat-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 990;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-2), var(--navy-3));
  border: 2px solid rgba(201,168,76,.3);
  color: #fff;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(10,26,62,.35), 0 0 0 0 rgba(201,168,76,.4);
  transition: all var(--dur-base) var(--ease-spring);
  animation: pulse-gold 3s ease-in-out infinite;
}
.chat-fab:hover { transform: scale(1.1) translateY(-2px); box-shadow: 0 14px 40px rgba(10,26,62,.45); border-color: var(--gold-2); }
.chat-panel {
  position: fixed;
  bottom: 96px;
  right: 28px;
  z-index: 989;
  width: 360px;
  background: var(--surface);
  border-radius: var(--r-2xl);
  box-shadow: var(--s-xl);
  border: 1px solid var(--border);
  display: none;
  flex-direction: column;
  overflow: hidden;
  max-height: 520px;
}
.chat-panel.open {
  display: flex;
  animation: scale-in var(--dur-base) var(--ease-spring);
  transform-origin: bottom right;
}
.chat-head {
  background: var(--navy-2);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.chat-head-close {
  margin-left: auto;
  background: rgba(255,255,255,.1);
  border: none;
  color: rgba(255,255,255,.6);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all var(--dur-fast);
}
.chat-head-close:hover { background: rgba(255,255,255,.2); color: #fff; }
.chat-av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}
.chat-name { color: #fff; font-size: 14px; font-weight: 700; }
.chat-status { font-size: 11px; color: rgba(255,255,255,.5); }
.chat-online { color: #34d399; }
.chat-msgs {
  flex: 1;
  padding: var(--sp-4);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  min-height: 180px;
  max-height: 320px;
}
.msg {
  max-width: 84%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 13.5px;
  line-height: 1.55;
  animation: fade-up var(--dur-base) var(--ease-spring);
}
.msg-bot { background: var(--bone); color: var(--navy-2); border-radius: 4px 16px 16px 16px; align-self: flex-start; }
.msg-me  { background: var(--navy-2); color: #fff; border-radius: 16px 4px 16px 16px; align-self: flex-end; }
.chat-input-row {
  padding: 12px 14px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: var(--sp-2);
}
.chat-inp-v2 {
  flex: 1;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 9px 13px;
  font-size: 13.5px;
  outline: none;
  font-family: var(--font-body);
  transition: border-color var(--dur-fast);
}
.chat-inp-v2:focus { border-color: var(--navy-2); }
.chat-send {
  width: 38px;
  height: 38px;
  border-radius: var(--r-md);
  background: var(--navy-2);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  transition: all var(--dur-fast) var(--ease-spring);
}
.chat-send:hover { background: var(--gold-1); transform: scale(1.05); }

/* ── SCROLL REVEAL ───────────────────────────────────────────────── */
.reveal, .r-up   { opacity: 0; transform: translateY(28px);   transition: opacity var(--dur-reveal) var(--ease-spring), transform var(--dur-reveal) var(--ease-spring); }
.r-left          { opacity: 0; transform: translateX(28px);  transition: opacity var(--dur-reveal) var(--ease-spring), transform var(--dur-reveal) var(--ease-spring); }
.r-right         { opacity: 0; transform: translateX(-28px); transition: opacity var(--dur-reveal) var(--ease-spring), transform var(--dur-reveal) var(--ease-spring); }
.r-scale         { opacity: 0; transform: scale(.94);         transition: opacity var(--dur-reveal) var(--ease-spring), transform var(--dur-reveal) var(--ease-spring); }
.r-fade          { opacity: 0;                                transition: opacity var(--dur-reveal) var(--ease-spring); }
.reveal.visible, .r-up.visible, .r-left.visible, .r-right.visible, .r-scale.visible, .r-fade.visible { opacity: 1; transform: none; }
.d1 { transition-delay: .08s !important; }
.d2 { transition-delay: .16s !important; }
.d3 { transition-delay: .24s !important; }
.d4 { transition-delay: .32s !important; }
.d5 { transition-delay: .40s !important; }
.d6 { transition-delay: .50s !important; }
.d7 { transition-delay: .62s !important; }
.d8 { transition-delay: .76s !important; }

/* ── FORMS ───────────────────────────────────────────────────────── */
.fg    { display: flex; flex-direction: column; gap: 6px; margin-bottom: var(--sp-4); }
.fl    { font-size: 11.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--navy-2); }
.fi, .fs, .ft {
  padding: 11px 14px;
  border-radius: var(--r-md);
  border: 1.5px solid var(--border-strong);
  font-size: 14.5px;
  font-family: var(--font-body);
  color: var(--navy-2);
  background: var(--surface);
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
  outline: none;
  width: 100%;
}
.fi:focus, .fs:focus, .ft:focus {
  border-color: var(--navy-2);
  box-shadow: 0 0 0 3px rgba(10,26,62,.1);
}
.ft { resize: vertical; min-height: 100px; }
.req { color: var(--red); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.form-hint { font-size: 12px; color: var(--text-3); margin-top: 5px; }

/* ── ALERTS & BADGES ─────────────────────────────────────────────── */
.alert { padding: 13px 16px; border-radius: var(--r-md); font-size: 14px; line-height: 1.6; display: flex; gap: var(--sp-3); align-items: flex-start; margin-bottom: var(--sp-4); }
.alert-ok   { background: var(--green-bg); border: 1px solid rgba(5,150,105,.2); color: #065f46; }
.alert-err  { background: var(--red-bg);   border: 1px solid rgba(220,38,38,.2); color: #991b1b; }
.alert-warn { background: var(--amber-bg); border: 1px solid rgba(217,119,6,.2);  color: #92400e; }
.alert-info { background: #EFF6FF;         border: 1px solid rgba(37,99,235,.2);  color: #1e40af; }
.badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: var(--r-full);
  font-size: 11.5px;
  font-weight: 700;
  gap: 4px;
}
.badge-green  { background: var(--green-bg); color: var(--green); border: 1px solid rgba(5,150,105,.2); }
.badge-red    { background: var(--red-bg);   color: var(--red);   border: 1px solid rgba(220,38,38,.2); }
.badge-gold   { background: rgba(201,168,76,.1); color: var(--gold-1); border: 1px solid rgba(201,168,76,.25); }
.badge-grey   { background: #F9FAFB; color: #6B7280; border: 1px solid #E5E7EB; }
.badge-navy   { background: rgba(10,26,62,.1); color: var(--navy-2); border: 1px solid rgba(10,26,62,.15); }

/* ── MISC UTILITY ────────────────────────────────────────────────── */
.text-gold   { color: var(--gold-2); }
.text-navy   { color: var(--navy-2); }
.text-muted  { color: var(--text-3); }
.text-white  { color: #fff; }
.text-center { text-align: center; }
.lead { font-size: 17px; line-height: 1.78; color: var(--text-3); }
.lead-dark { color: rgba(255,255,255,.6); }
.eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-1);
}
.eyebrow-dark { color: var(--gold-3); }
.divider { border: none; border-top: 1px solid var(--border); margin: var(--sp-8) 0; }
.lift { transition: transform var(--dur-slow) var(--ease-spring), box-shadow var(--dur-slow); }
.lift:hover { transform: translateY(-4px); box-shadow: var(--s-md); }

/* ── SKELETON LOADERS ────────────────────────────────────────────── */
.sk-block {
  background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 37%, #f0f0f0 63%);
  background-size: 600px 100%;
  animation: shimmer 1.4s ease infinite;
  border-radius: var(--r-md);
}

/* ── ADMIN / PORTAL SHELLS ───────────────────────────────────────── */
.dash-shell   { display: flex; min-height: 100vh; }
.dash-sidebar { width: 240px; background: var(--navy-1); flex-shrink: 0; position: fixed; top: 0; bottom: 0; overflow-y: auto; z-index: 100; }
.dash-main    { flex: 1; margin-left: 240px; min-height: 100vh; background: var(--bone); }
.dash-topbar  { background: var(--white); border-bottom: 1px solid var(--border); padding: 16px 28px; display: flex; align-items: center; justify-content: space-between; gap: var(--sp-3); flex-wrap: wrap; position: sticky; top: 0; z-index: 50; }
.dash-topbar h1 { font-size: 21px; font-family: var(--font-display); font-weight: 500; margin: 0; }
.dash-topbar .sub { font-size: 13px; color: var(--text-3); margin-top: 2px; }
.dash-content { padding: var(--sp-7); }
.dash-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: var(--sp-6); }
.dash-nav a {
  display: flex; align-items: center; gap: var(--sp-3);
  padding: 10px 12px; border-radius: var(--r-md);
  font-size: 13.5px; color: rgba(255,255,255,.6);
  transition: all var(--dur-fast); text-decoration: none;
}
.dash-nav a:hover, .dash-nav a.active { background: rgba(255,255,255,.09); color: #fff; }
.dash-nav-section { font-size: 9.5px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.22); padding: 14px 10px 4px; }
.dash-sidebar-logo { padding: 18px 14px; border-bottom: 1px solid rgba(255,255,255,.07); display: flex; align-items: center; gap: var(--sp-3); }
@media (max-width: 900px) { .dash-sidebar { display: none; } .dash-main { margin-left: 0; } }

/* Auth */
.auth-shell { min-height: 100vh; background: linear-gradient(135deg, var(--navy-1), var(--navy-2)); display: flex; align-items: center; justify-content: center; padding: var(--sp-10) var(--sp-4); }
.auth-box { width: min(440px, 100%); background: var(--white); border-radius: var(--r-2xl); padding: var(--sp-12); box-shadow: var(--s-xl); }
.auth-logo { text-align: center; margin-bottom: var(--sp-7); }
.auth-btn { width: 100%; padding: 13px; background: linear-gradient(135deg, var(--navy-2), var(--navy-3)); color: #fff; border: none; border-radius: var(--r-md); font-size: 15px; font-weight: 700; font-family: var(--font-body); transition: all var(--dur-base) var(--ease-spring); }
.auth-btn:hover { filter: brightness(1.1); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(10,26,62,.3); }

/* Progress */
.progress-bar  { height: 6px; background: var(--border); border-radius: var(--r-full); overflow: hidden; }
.progress-fill { height: 100%; border-radius: var(--r-full); background: linear-gradient(90deg, var(--navy-2), var(--gold-2)); transition: width .6s var(--ease-spring); }

/* Portal */
.portal-shell { min-height: 100vh; background: var(--ivory); }
.portal-header { background: var(--navy-2); position: sticky; top: 0; z-index: 100; }
.portal-nav { max-width: 1100px; margin: 0 auto; padding: 0 var(--sp-6); display: flex; align-items: center; justify-content: space-between; height: 64px; gap: var(--sp-4); }
.portal-nav-links { display: flex; gap: var(--sp-1); flex-wrap: wrap; }
.portal-nav-links a { padding: 7px 13px; font-size: 13px; font-weight: 500; color: rgba(255,255,255,.6); border-radius: var(--r-md); transition: all var(--dur-fast); text-decoration: none; }
.portal-nav-links a:hover, .portal-nav-links a.active { background: rgba(255,255,255,.1); color: #fff; }
.portal-content { max-width: 1100px; margin: 0 auto; padding: var(--sp-7) var(--sp-6); }

/* Tables */
.tw { overflow-x: auto; }
.tw table { width: 100%; border-collapse: collapse; }
.tw th { background: var(--bone); padding: 10px 16px; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-3); border-bottom: 1px solid var(--border); text-align: left; }
.tw td { padding: 13px 16px; font-size: 14px; border-bottom: 1px solid var(--border); color: var(--text-1); }
.tw tr:hover td { background: rgba(10,26,62,.025); }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { padding: var(--sp-5) 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: var(--sp-4); font-size: 15.5px; font-weight: 700; color: var(--navy-2); }
.faq-q:hover { color: var(--gold-1); }
.faq-icon { flex-shrink: 0; color: var(--gold-2); transition: transform var(--dur-base) var(--ease-spring); font-size: 18px; font-style: normal; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { display: none; padding-bottom: var(--sp-5); font-size: 14.5px; color: var(--text-3); line-height: 1.8; }
.faq-item.open .faq-a { display: block; animation: fade-up var(--dur-base) var(--ease-spring); }

/* Toast */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  z-index: 9999;
  padding: 12px 22px;
  border-radius: var(--r-lg);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  box-shadow: var(--s-xl);
  max-width: min(420px, 90vw);
  animation: toast-in var(--dur-slow) var(--ease-spring) forwards;
}
.toast-ok   { background: var(--green); color: #fff; }
.toast-err  { background: var(--red);   color: #fff; }
.toast-info { background: var(--blue);  color: #fff; }

/* ── RESPONSIVE UTILITIES ────────────────────────────────────────── */
@media (max-width: 640px) {
  .hide-mobile { display: none !important; }
  .tb-right { display: none; }
  .rates-strip-updated { display: none; }
  .hero-stats { flex-wrap: wrap; gap: var(--sp-5); }
  .testi-grid { grid-template-columns: 1fr; }
  .family-cards { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--sp-8); }
}

/* ── REDUCED MOTION ──────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── Hero content always visible (above fold) ─────────────────── */
.hero .reveal,
.hero .r-up,
.hero .r-left,
.hero .r-right,
.hero .r-scale,
.hero .r-fade {
  opacity: 0;
  animation: fade-up var(--dur-reveal) var(--ease-spring) forwards;
}
.hero .reveal.d1, .hero .r-up.d1 { animation-delay: .12s; }
.hero .reveal.d2, .hero .r-up.d2 { animation-delay: .24s; }
.hero .reveal.d3, .hero .r-up.d3 { animation-delay: .36s; }
.hero .reveal.d4, .hero .r-up.d4 { animation-delay: .48s; }

/* ── Mobile hero padding fix ──────────────────────────────────── */
@media (max-width: 640px) {
  .hero { padding: 48px 0 40px; }
  .hero-headline { font-size: 36px !important; letter-spacing: -.02em; }
  .hero-sub { font-size: 15px; }
  .hero-stats { gap: 20px; }
  .hero-stat-num { font-size: 22px; }
}

/* ── FIDS board mobile fix ────────────────────────────────────── */
@media (max-width: 760px) {
  .fids-cols { display: none; }
  .fids-row {
    grid-template-columns: 1fr auto;
    gap: 6px;
    padding: 10px 14px;
  }
  .fids-row > div:nth-child(2),
  .fids-row > div:nth-child(3),
  .fids-row > div:nth-child(5) { display: none; }
  .fids-dest { font-size: 13px; }
  .fids-bar { padding: 10px 14px; }
  .fids-title { font-size: 10px; gap: 8px; }
  .fids-clock { font-size: 11px; }
}

/* ── Hero grid mobile: stack vertically ──────────────────────── */
@media (max-width: 960px) {
  .hero-inner .wrap {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
}

/* ── Topbar + rates: show on larger phones too ───────────────── */
@media (min-width: 481px) and (max-width: 640px) {
  .topbar { display: flex; }
  .tb-right { display: none; }
}

/* Featured card type tags — lighter on dark bg */
.dest-card.featured .dest-type-tag {
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.85);
}
/* Dest card footer border on featured */
.dest-card.featured .dest-card-footer {
  border-top-color: rgba(255,255,255,.1);
}
.dest-card.featured .dest-time { color: rgba(255,255,255,.85); }
.dest-card.featured .dest-time span { color: rgba(255,255,255,.4); }
.dest-card.featured .dest-fee { color: var(--gold-3); }
.dest-card.featured .dest-fee span { color: rgba(255,255,255,.4); }

/* Dest card body bg for featured */
.dest-card.featured .dest-card-body {
  background: rgba(255,255,255,.03);
}

/* ================================================================
   TARGETED FIXES — margins, flag clip, featured card body
================================================================ */

/* ── 1. Global section padding on mobile ─────────────────────── */
@media (max-width: 640px) {
  .sec, .sec-sm, .sec-lg, .section { padding-left: 0; padding-right: 0; }
  .wrap { padding: 0 18px; }
  .sec { padding-top: 64px; padding-bottom: 64px; }
  .sec-cream, .sec-white, .sec-dark, .sec-navy { padding-left: 0; padding-right: 0; }
  /* All section direct children get proper breathing room */
  .section-header { padding: 0 4px; }
  .ae-grid { padding: 0 2px; }
  .ch-grid-v2 { padding: 0 2px; }
  /* Tool cards full width */
  .tool-card-v2 { border-radius: 14px; }
  .tool-grid { gap: 14px; }
}

/* ── 2. Flag clip fix — flag overflows card boundary on hover ─── */
.dest-card { overflow: hidden; }
.dest-card-top { overflow: hidden; }
/* Allow flag to scale but clip within the top area */
.dest-flag {
  display: block;
  font-size: 52px;
  line-height: 1;
  margin-bottom: 12px;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
  /* Contain within parent */
  max-width: 100%;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.15));
}
.dest-card:hover .dest-flag {
  transform: scale(1.1) rotate(-3deg);
}

/* ── 3. Featured card body — show type tags properly ─────────── */
.dest-card.featured .dest-card-body {
  background: rgba(10,26,62,.02);
  border-top: 1px solid rgba(10,26,62,.08);
}
.dest-card.featured .dest-types { margin-bottom: 12px; }
.dest-card.featured .dest-type-tag {
  background: rgba(10,26,62,.07);
  color: var(--navy-2);
  border: 1px solid rgba(10,26,62,.12);
}
.dest-card.featured .dest-time { color: var(--navy-2); }
.dest-card.featured .dest-time span { color: var(--text-3); }
.dest-card.featured .dest-fee { color: var(--gold-1); }
.dest-card.featured .dest-fee span { color: var(--text-3); }
.dest-card.featured .dest-card-footer { border-top-color: var(--border); }
.dest-card.featured .dest-arrow {
  background: rgba(10,26,62,.08);
  color: var(--navy-2);
}
.dest-card.featured:hover .dest-arrow {
  background: var(--navy-2);
  color: #fff;
}

/* ── 4. Mobile content margins everywhere ────────────────────── */
@media (max-width: 768px) {
  /* Services accordion */
  .sa-row { grid-template-columns: 48px 1fr 32px; gap: 14px; }
  .sa-num { font-size: 24px; }
  /* Process grid */
  .process-grid { gap: 28px 16px; }
  /* Testimonials full width on mobile */
  .testi-grid { grid-template-columns: 1fr; }
  /* Family cards stack */
  .family-cards { grid-template-columns: 1fr; }
  /* CTA */
  .cta-inner { grid-template-columns: 1fr; gap: 36px; }
  .cta-headline { font-size: 38px; }
  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  /* Stats */
  .stats-grid { grid-template-columns: 1fr 1fr; }
  /* Dest grid single col on small */
  .dest-grid { grid-template-columns: 1fr; }
  /* Editorial */
  .ae-grid { grid-template-columns: 1fr; gap: 28px; }
  .ae-numeral { font-size: 80px; margin-top: 0; }
  /* China */
  .ch-grid-v2 { grid-template-columns: 1fr; }
  /* Tools */
  .tool-full { grid-column: span 1; }
  /* Section labels */
  .section-label { font-size: 10px; }
}

/* ── 5. Portal login form spacing ───────────────────────────────── */
.portal-pane { padding: 0 4px; }
@media (max-width: 480px) {
  .auth-box { padding: 36px 24px; border-radius: 20px; }
  .portal-tab { font-size: 13px; padding: 10px 16px; }
}

/* ── 6. Marquee text spacing on mobile ──────────────────────────── */
@media (max-width: 640px) {
  .marquee-item { padding: 0 18px; font-size: 10px; gap: 8px; }
  .marquee-band { padding: 12px 0; }
}

/* ── 7. Process step circles proper spacing ─────────────────────── */
@media (max-width: 640px) {
  .process-circle { width: 44px; height: 44px; font-size: 18px; }
  .process-title { font-size: 12.5px; }
  .process-desc { font-size: 11.5px; }
}

/* ── 8. Hero stats bar spacing on mobile ────────────────────────── */
@media (max-width: 480px) {
  .hero-stats { flex-wrap: wrap; gap: 16px 24px; }
  .hero-stat-num { font-size: 20px; }
  .hero-stat-label { font-size: 10px; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .hero-cta .btn { width: 100%; justify-content: center; }
}

/* ── 9. Tool grid 2-col even on mobile for clocks ──────────────── */
@media (max-width: 640px) {
  .tool-grid { grid-template-columns: 1fr; }
  .clock-time-v2 { font-size: 15px; }
}

/* ================================================================
   PRECISION MOBILE FIXES — padding, card logos, flag clip
================================================================ */

/* ── Tool cards on mobile: proper left/right padding ─────────── */
@media (max-width: 768px) {
  /* Dark section tool cards need inner padding */
  .tool-card-v2 {
    padding: 22px 18px;
  }
  /* The dark visa intelligence section */
  .sec-dark .wrap,
  .sec-navy .wrap {
    padding-left: 16px;
    padding-right: 16px;
  }
  /* All tool labels */
  .tool-label { font-size: 9.5px; margin-bottom: 16px; }
  /* Embassy rows */
  .embassy-name { font-size: 13px; }
  .embassy-type { font-size: 10.5px; }
  /* Clock rows */
  .clock-city { font-size: 12.5px; }
  .clock-time-v2 { font-size: 14px; }
}

/* ── Family card logo: don't clip ────────────────────────────── */
.family-card { overflow: visible; }
.family-card-logo {
  display: block;
  font-size: 38px;
  margin-bottom: 16px;
  /* Don't let it get clipped */
  overflow: visible;
}
.family-card-logo img {
  max-width: 52px;
  max-height: 52px;
  object-fit: contain;
  overflow: visible;
}

/* ── Dest card flag: reduce scale to prevent clip ────────────── */
.dest-flag {
  font-size: 48px;
  line-height: 1;
  margin-bottom: 10px;
  display: block;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
  /* Stay within bounds */
  transform-origin: center center;
}
.dest-card:hover .dest-flag {
  transform: scale(1.06) rotate(-2deg);
}
/* Extra safe for mobile */
@media (max-width: 640px) {
  .dest-card:hover .dest-flag {
    transform: scale(1.04) rotate(-1deg);
  }
}

/* ── Section top padding so content doesn't touch nav ─────────── */
@media (max-width: 768px) {
  /* Visa intelligence dark section header */
  .sec-dark { padding-top: 60px; padding-bottom: 60px; }
  .sec-dark > .wrap > div:first-child {
    padding-left: 2px;
    padding-right: 2px;
  }
}

/* ── Testimonial cards: no text overflow ─────────────────────── */
.testi-text {
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

/* ── Fix tool-full span on mobile ───────────────────────────── */
@media (max-width: 768px) {
  .tool-full {
    grid-column: 1;
  }
  .tool-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* ── Fee calc rows: tighter on mobile ───────────────────────── */
@media (max-width: 640px) {
  #vfc-rows > div {
    padding: 8px 0;
  }
  #vfc-rows > div span { font-size: 12.5px !important; }
  #vfc-rows > div div { font-size: 12px !important; }
}

/* ── Stars render properly ───────────────────────────────────── */
.testi-stars {
  font-size: 15px;
  color: #C9A84C;
  letter-spacing: 3px;
  margin-bottom: 14px;
  display: block;
}

/* ================================================================
   BACKWARD COMPAT — aliases for old CSS variable names
   Pages still reference these from the original nvcc-style.css
================================================================ */
:root {
  /* Old name → new name mappings */
  --navy-deep:    var(--navy-2);
  --navy-deepest: var(--navy-1);
  --navy-mid:     var(--navy-3);
  --navy:         var(--navy-2);
  --orange:       var(--gold-2);
  --gold:         var(--gold-2);
  --gold-dark:    var(--gold-1);
  --gold-light:   var(--gold-3);
  --line:         var(--border);
  --muted:        var(--text-3);
  --ink:          var(--ink);
  --ivory:        var(--ivory);
  --bone:         var(--bone);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Manrope', system-ui, sans-serif;
  --font-mono:    'IBM Plex Mono', monospace;

  /* Shadow aliases */
  --shadow-xs: var(--s-xs);
  --shadow-sm: var(--s-sm);
  --shadow-md: var(--s-md);
  --shadow-lg: var(--s-lg);
  --shadow-xl: var(--s-xl);

  /* Grey scale aliases */
  --grey-50:  #F9FAFB;
  --grey-100: #F3F4F6;
  --grey-200: #E5E7EB;
  --grey-300: #D1D5DB;
  --grey-400: #9CA3AF;
  --grey-500: #6B7280;
  --grey-600: #4B5563;
  --grey-700: #374151;
  --grey-800: #1F2937;
  --grey-900: #111827;

  /* Semantic colour aliases */
  --success-bg:   rgba(5,150,105,.08);
  --success-text: #059669;
  --danger-bg:    rgba(220,38,38,.08);
  --danger-text:  #DC2626;
  --warn-bg:      rgba(217,119,6,.08);
  --warn-text:    #D97706;
}

/* ================================================================
   MISSING CLASSES PATCH — 154 classes used by public pages
   Added to fix white-text-on-white-background issue
================================================================ */

/* ── Typography ──────────────────────────────────────────────── */
.display-1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 88px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -.03em;
  color: var(--navy-2);
}
.display-2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -.025em;
  color: var(--navy-2);
}
.gradient-text {
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.prose { font-size: 16px; line-height: 1.85; color: var(--text-2); max-width: 680px; }
.prose h2, .prose h3 { font-family: var(--font-display); color: var(--navy-2); margin: 28px 0 12px; }
.prose p  { margin-bottom: 18px; }
.prose ul, .prose ol { padding-left: 22px; margin-bottom: 18px; }
.prose li { margin-bottom: 6px; }
.label-white { font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.5); }

/* ── Delay utilities ─────────────────────────────────────────── */
.delay-1 { transition-delay: .1s !important; animation-delay: .1s !important; }
.delay-2 { transition-delay: .2s !important; animation-delay: .2s !important; }
.delay-3 { transition-delay: .3s !important; animation-delay: .3s !important; }
.delay-4 { transition-delay: .4s !important; animation-delay: .4s !important; }

/* ── Reveal variants ─────────────────────────────────────────── */
.reveal-left  { opacity: 0; transform: translateX(28px);  transition: opacity var(--dur-reveal) var(--ease-spring), transform var(--dur-reveal) var(--ease-spring); }
.reveal-right { opacity: 0; transform: translateX(-28px); transition: opacity var(--dur-reveal) var(--ease-spring), transform var(--dur-reveal) var(--ease-spring); }
.reveal-left.visible, .reveal-right.visible { opacity: 1; transform: none; }

/* ── Buttons (missing variants) ──────────────────────────────── */
.btn-navy {
  background: var(--navy-2);
  color: #fff;
  display: inline-flex; align-items: center; gap: var(--sp-2);
  padding: 11px 22px; border-radius: var(--r-md);
  font-size: 14px; font-weight: 700; text-decoration: none;
  transition: all var(--dur-base) var(--ease-spring); border: none; cursor: pointer;
  font-family: var(--font-body);
}
.btn-navy:hover { background: var(--navy-3); transform: translateY(-1px); box-shadow: var(--s-md); }

.btn-back {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  font-size: 13.5px; font-weight: 600; color: var(--text-3);
  text-decoration: none; transition: color var(--dur-fast);
}
.btn-back:hover { color: var(--navy-2); }

.btn-print {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  padding: 9px 18px; border-radius: var(--r-md);
  background: rgba(10,26,62,.07); border: 1px solid var(--border);
  font-size: 13px; font-weight: 600; color: var(--navy-2); cursor: pointer;
  font-family: var(--font-body); transition: all var(--dur-fast);
}
.btn-print:hover { background: rgba(10,26,62,.12); }

.arrow {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(10,26,62,.08); display: inline-flex;
  align-items: center; justify-content: center;
  font-size: 16px; color: var(--navy-2);
  transition: all var(--dur-base) var(--ease-spring);
}
.arrow:hover { background: var(--navy-2); color: #fff; transform: translateX(3px); }

.pulse-gold { animation: pulse-gold 2.5s ease infinite; }

/* ── Sections ────────────────────────────────────────────────── */
.section-cream { background: var(--bone); padding: var(--sp-24) 0; }
.section-navy  { background: var(--navy-2); padding: var(--sp-24) 0; }
.section-sm    { padding: var(--sp-16) 0; }
.container     { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--sp-6); }
.row           { display: flex; flex-wrap: wrap; gap: var(--sp-6); }
.no-print      { } /* used for print media */
@media print   { *{-webkit-print-color-adjust:exact!important;print-color-adjust:exact!important;color-adjust:exact!important;} .no-print { display: none !important; } }

/* ── Hero badge ──────────────────────────────────────────────── */
.hero-badge {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  background: rgba(201,168,76,.12); border: 1px solid rgba(201,168,76,.25);
  border-radius: var(--r-full); padding: 6px 14px;
  font-size: 11px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--gold-3);
}

/* ── China hero ──────────────────────────────────────────────── */
.china-hero {
  background: linear-gradient(135deg, var(--navy-1) 0%, #1a2f5c 50%, rgba(127,29,29,.15) 100%);
  min-height: 70vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding: 80px 0;
}
.china-hero::after {
  content: ''; background: url('https://flagcdn.com/w320/cn.png') no-repeat center/contain; width: 260px; height: 195px; position: absolute; right: -20px; bottom: -40px;
  font-size: 320px; opacity: .05; pointer-events: none; filter: grayscale(1);
}

/* ── Visa type cards ─────────────────────────────────────────── */
.visa-type-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 20px; }
.visa-type-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-xl); overflow: hidden;
  transition: all .3s var(--ease-spring);
}
.visa-type-card:hover { transform: translateY(-5px); box-shadow: var(--s-lg); border-color: rgba(10,26,62,.2); }
.visa-card-head {
  padding: 20px 22px 16px; border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, var(--navy-2), var(--navy-3));
}
.visa-card-body { padding: 20px 22px; }

/* ── Doc list ────────────────────────────────────────────────── */
.doc-list { display: grid; gap: 6px; list-style: none; }
.doc-list li { display: flex; align-items: flex-start; gap: 8px; font-size: 13.5px; color: var(--text-2); padding: 7px 10px; background: var(--bone); border-radius: var(--r-md); }
.doc-list li::before { content: '→'; color: var(--gold-2); font-weight: 700; flex-shrink: 0; }

/* ── Info pill ───────────────────────────────────────────────── */
.info-pill {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(201,168,76,.1); border: 1px solid rgba(201,168,76,.25);
  border-radius: var(--r-md); padding: 5px 10px;
  font-size: 12.5px; font-weight: 700; color: var(--gold-1);
}

/* ── Req grid ────────────────────────────────────────────────── */
.req-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 12px; }
.req-card {
  background: var(--bone); border-radius: var(--r-lg);
  padding: 16px; border: 1px solid var(--border);
  display: flex; gap: 12px; align-items: flex-start;
  transition: all var(--dur-fast);
}
.req-card:hover { border-color: var(--navy-2); background: rgba(10,26,62,.03); }

/* ── Value cards ─────────────────────────────────────────────── */
.value-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 28px;
  transition: all .3s var(--ease-spring);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--s-md); border-color: rgba(201,168,76,.3); }

/* ── Service cards ───────────────────────────────────────────── */
.service-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 28px;
  transition: all .3s var(--ease-spring);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--s-md); }
.service-icon {
  width: 52px; height: 52px; border-radius: var(--r-lg);
  background: rgba(10,26,62,.07); display: flex;
  align-items: center; justify-content: center; font-size: 22px;
  margin-bottom: var(--sp-4);
}

/* ── Track page ──────────────────────────────────────────────── */
.track-hero {
  background: var(--navy-1); padding: 72px 0 56px;
  text-align: center; position: relative; overflow: hidden;
}
.track-box {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-2xl); padding: var(--sp-8);
  max-width: 600px; margin: 0 auto; box-shadow: var(--s-lg);
}
.track-input-wrap {
  display: flex; gap: var(--sp-3);
  background: var(--bone); border: 1.5px solid var(--border);
  border-radius: var(--r-lg); padding: var(--sp-2) var(--sp-3);
  align-items: center;
}
.track-result {
  margin-top: var(--sp-6); padding: var(--sp-6);
  background: var(--bone); border-radius: var(--r-xl);
  border: 1px solid var(--border);
}

/* ── Status pipeline ─────────────────────────────────────────── */
.stage-pipeline { display: flex; gap: 0; overflow-x: auto; margin: var(--sp-6) 0; }
.stage {
  flex: 1; text-align: center; position: relative; min-width: 80px;
  padding: var(--sp-3) var(--sp-2);
}
.stage::after {
  content: ''; position: absolute; top: 18px; left: 50%; right: -50%;
  height: 2px; background: var(--border); z-index: 0;
}
.stage:last-child::after { display: none; }
.stage-dot {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--surface); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; margin: 0 auto var(--sp-2); position: relative; z-index: 1;
  transition: all var(--dur-base);
}
.stage.active .stage-dot { background: var(--navy-2); border-color: var(--navy-2); color: #fff; }
.stage.done .stage-dot   { background: var(--green); border-color: var(--green); color: #fff; }
.stage-label { font-size: 11px; font-weight: 600; color: var(--text-3); }
.stage.active .stage-label { color: var(--navy-2); font-weight: 700; }

/* ── Cert / verify page ──────────────────────────────────────── */
.cert-wrap { max-width: 680px; margin: 0 auto; }
.cert-top-bar {
  background: linear-gradient(135deg, var(--navy-1), var(--navy-2));
  padding: 28px 36px; display: flex; align-items: center; justify-content: space-between;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
}
.cert-hr      { border: none; border-top: 1px solid var(--border); margin: var(--sp-4) 0; }
.cert-hr-gold { border: none; border-top: 2px solid var(--gold-2); margin: var(--sp-4) 0; }
.cert-body    { background: var(--surface); padding: 32px 36px; border: 1px solid var(--border); border-top: none; }
.cert-seal    { text-align: center; padding: var(--sp-4) 0; font-size: 48px; }
.cert-watermark {
  position: absolute; opacity: .03; font-size: 120px; font-weight: 900;
  text-transform: uppercase; letter-spacing: .3em; color: var(--navy-2);
  transform: rotate(-30deg); pointer-events: none; user-select: none;
}
.cert-btn {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  padding: 10px 20px; border-radius: var(--r-md);
  background: var(--navy-2); color: #fff; font-weight: 700;
  font-size: 13.5px; text-decoration: none; transition: all var(--dur-base);
  font-family: var(--font-body); border: none; cursor: pointer;
}
.cert-btn:hover { background: var(--navy-3); transform: translateY(-1px); }
.qr-box {
  display: flex; flex-direction: column; align-items: center;
  gap: var(--sp-3); padding: var(--sp-5); background: var(--bone);
  border: 1px solid var(--border); border-radius: var(--r-lg);
}
.qr-modal {
  position: fixed; inset: 0; z-index: 999; background: rgba(6,9,26,.7);
  backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center;
  padding: var(--sp-5);
}
.stamp-box {
  display: inline-flex; align-items: center; justify-content: center;
  border: 3px solid; border-radius: var(--r-full);
  padding: 8px 20px; font-size: 11px; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
}
.v-ok   { color: var(--green); border-color: var(--green); background: var(--green-bg); }
.v-fail { color: var(--red);   border-color: var(--red);   background: var(--red-bg); }
.v-warn { color: var(--amber); border-color: var(--amber); background: var(--amber-bg); }
.check-result { padding: var(--sp-5); border-radius: var(--r-xl); margin-top: var(--sp-4); }
.vlbl { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-3); margin-bottom: 3px; }
.vval { font-size: 15px; font-weight: 700; color: var(--navy-2); }
.vrow { padding: 10px 0; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }

/* ── Pricing table ───────────────────────────────────────────── */
.pricing-table { border: 1px solid var(--border); border-radius: var(--r-xl); overflow: hidden; }
.pricing-table .price {
  font-family: var(--font-display); font-size: 40px; font-weight: 400;
  color: var(--navy-2); letter-spacing: -.03em;
}

/* ── Filter tabs ─────────────────────────────────────────────── */
.filter-tabs  { display: flex; gap: var(--sp-2); flex-wrap: wrap; margin-bottom: var(--sp-6); }
.filter-tab   { padding: 8px 18px; border-radius: var(--r-full); border: 1.5px solid var(--border); background: var(--surface); font-size: 13px; font-weight: 600; color: var(--text-3); cursor: pointer; transition: all var(--dur-fast); text-decoration: none; display: inline-block; }
.filter-tab:hover  { border-color: var(--navy-2); color: var(--navy-2); }
.filter-tab.active { background: var(--navy-2); border-color: var(--navy-2); color: #fff; }

/* ── Photo checker ───────────────────────────────────────────── */
.photo-area {
  border: 2px dashed var(--border); border-radius: var(--r-xl);
  padding: var(--sp-10); text-align: center; cursor: pointer;
  transition: all var(--dur-base) var(--ease-spring); background: var(--bone);
}
.photo-area:hover { border-color: var(--navy-2); background: rgba(10,26,62,.03); }
.photo-preview-wrap {
  width: 160px; height: 200px; border-radius: var(--r-lg);
  overflow: hidden; border: 2px solid var(--border);
  margin: 0 auto; position: relative;
}
.score-ring { width: 100px; height: 100px; position: relative; margin: 0 auto var(--sp-4); }
.score-text { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 24px; font-weight: 800; font-family: var(--font-mono); }
.scan-line {
  position: absolute; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, #34d399, transparent);
  animation: scan 2s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(52,211,153,.5);
}
@keyframes scan { 0%,100% { top: 0; } 50% { top: calc(100% - 2px); } }
.result-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-xl); padding: var(--sp-6); margin-bottom: var(--sp-4); }
.result-header { display: flex; align-items: center; gap: var(--sp-3); margin-bottom: var(--sp-4); }
.tip  { font-size: 13.5px; color: var(--text-2); padding: 10px 14px; background: var(--bone); border-radius: var(--r-md); border-left: 3px solid var(--gold-2); margin-bottom: var(--sp-2); }
.tips { display: flex; flex-direction: column; gap: var(--sp-2); }

/* ── Contact page links ──────────────────────────────────────── */
.contact-link {
  display: flex; align-items: center; gap: var(--sp-4);
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg); padding: 14px 18px; color: rgba(255,255,255,.8);
  text-decoration: none; font-size: 14px; transition: all var(--dur-fast);
}
.contact-link:hover { background: rgba(255,255,255,.1); color: #fff; }
.contacts { display: flex; flex-direction: column; gap: var(--sp-3); }

/* ── Portal features ─────────────────────────────────────────── */
.portal-feature {
  display: flex; gap: var(--sp-4); align-items: flex-start;
  padding: var(--sp-5) 0; border-bottom: 1px solid var(--border);
}
.portal-feature:last-child { border-bottom: none; }
.icon {
  width: 44px; height: 44px; border-radius: var(--r-lg); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 20px;
  background: rgba(10,26,62,.07);
}

/* ── Timeline ────────────────────────────────────────────────── */
.timeline-visual { position: relative; padding-left: 28px; }
.timeline-visual::before {
  content: ''; position: absolute; left: 8px; top: 6px; bottom: 6px;
  width: 2px; background: linear-gradient(180deg, var(--navy-2), var(--gold-2));
}

/* ── Security check page classes ─────────────────────────────── */
.grid-bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 80%);
  pointer-events: none;
}
.shield {
  width: 80px; height: 80px; border-radius: 50%; margin: 0 auto var(--sp-5);
  background: rgba(201,168,76,.1); border: 1.5px solid rgba(201,168,76,.25);
  display: flex; align-items: center; justify-content: center; font-size: 34px;
  transition: all .5s ease;
}
.shield.done { background: rgba(52,211,153,.12); border-color: rgba(52,211,153,.4); }
.prog-track { width: 100%; height: 3px; background: rgba(255,255,255,.07); border-radius: 2px; overflow: hidden; margin-bottom: var(--sp-6); }
.prog-fill  { height: 100%; width: 0%; background: linear-gradient(90deg, var(--gold-1), var(--gold-2)); border-radius: 2px; transition: width .4s ease; }
.checks { text-align: left; display: flex; flex-direction: column; gap: var(--sp-2); margin-bottom: var(--sp-6); }
.chk {
  display: flex; align-items: center; gap: 11px; padding: 10px 13px;
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.05);
  border-radius: var(--r-lg); font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,.38); transition: all .3s;
}
.chk.active { color: rgba(255,255,255,.7); border-color: rgba(201,168,76,.15); background: rgba(201,168,76,.04); }
.chk.done   { color: rgba(255,255,255,.85); border-color: rgba(52,211,153,.18); background: rgba(52,211,153,.04); }
.chk-dot { width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0; border: 2px solid rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; font-size: 10px; transition: all .3s; }
.chk.done .chk-dot { background: var(--green); border-color: var(--green); color: #fff; }
.chk.done .chk-dot::after { content: '✓'; }
.status { font-size: 12px; font-family: var(--font-mono); color: rgba(255,255,255,.28); letter-spacing: .04em; min-height: 18px; transition: color .3s; }
.status.ok { color: #34d399; }
.title  { font-family: var(--font-display); font-size: 26px; font-weight: 400; color: var(--navy-2); letter-spacing: -.02em; margin-bottom: var(--sp-2); }
.box    { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: var(--r-xl); padding: var(--sp-8); }
.foot   { margin-top: var(--sp-6); padding-top: var(--sp-5); border-top: 1px solid rgba(255,255,255,.06); font-size: 10.5px; color: rgba(255,255,255,.18); letter-spacing: .04em; }
.logo   { width: 60px; height: 60px; margin: 0 auto var(--sp-4); border-radius: var(--r-lg); border: 1.5px solid rgba(201,168,76,.25); background: rgba(255,255,255,.05); display: flex; align-items: center; justify-content: center; }
.logo-wrap { display: flex; align-items: center; justify-content: center; margin-bottom: var(--sp-4); }
.bname { font-size: 15px; font-weight: 800; color: rgba(255,255,255,.9); margin-bottom: 3px; }
.bsub  { font-size: 10.5px; font-weight: 700; color: rgba(255,255,255,.3); letter-spacing: .12em; text-transform: uppercase; margin-bottom: var(--sp-8); }
.gear  { font-size: 72px; margin-bottom: var(--sp-5); animation: spin 4s linear infinite; display: block; text-align: center; }

/* ── News page classes ───────────────────────────────────────── */
.news-hero { background: var(--navy-1); padding: 60px 0 48px; position: relative; overflow: hidden; }
.news-list { display: flex; flex-direction: column; gap: 14px; }
.news-row { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 18px 20px; display: grid; grid-template-columns: 48px 1fr 24px; gap: 14px; align-items: center; text-decoration: none; transition: all var(--dur-base); }
.news-row:hover { border-color: rgba(10,26,62,.2); box-shadow: var(--s-sm); transform: translateX(4px); }
.news-emoji   { font-size: 30px; text-align: center; line-height: 1; }
.news-title   { font-size: 14.5px; font-weight: 700; color: var(--navy-2); margin-bottom: 4px; line-height: 1.35; }
.news-summary { font-size: 13px; color: var(--text-3); line-height: 1.55; }
.news-meta    { font-size: 11px; color: var(--text-3); margin-top: 5px; display: flex; gap: 10px; }
.news-arrow   { font-size: 15px; color: var(--text-3); }
.news-row:hover .news-arrow { color: var(--navy-2); }

/* ── Article page ────────────────────────────────────────────── */
.article-hero { background: linear-gradient(135deg, var(--navy-1), var(--navy-2)); padding: 60px 0 48px; position: relative; overflow: hidden; }
.article-body { max-width: 720px; }
.article-body h2, .article-body h3 { font-family: var(--font-display); color: var(--navy-2); margin: 28px 0 12px; }
.article-body h2 { font-size: 26px; }
.article-body h3 { font-size: 20px; }
.article-body p  { font-size: 16px; line-height: 1.85; color: var(--text-2); margin-bottom: 18px; }
.article-body ul, .article-body ol { padding-left: 22px; margin-bottom: 18px; }
.article-body li { font-size: 15.5px; line-height: 1.75; color: var(--text-2); margin-bottom: 6px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: rgba(255,255,255,.45); margin-bottom: var(--sp-6); flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,.45); transition: var(--dur-fast); }
.breadcrumb a:hover { color: rgba(255,255,255,.8); }
.breadcrumb-sep { color: rgba(255,255,255,.2); }

/* ── Lift cards (destination cards alt) ──────────────────────── */
.lift-head { background: linear-gradient(160deg, var(--navy-2), var(--navy-3)); padding: var(--sp-6) var(--sp-5); }
.lift-flag { font-size: 52px; line-height: 1; display: block; margin-bottom: var(--sp-3); }
.lift-body { padding: var(--sp-4) var(--sp-5); }

/* ── Fee calculator widget classes ───────────────────────────── */
.calc-wrap   { background: var(--navy-2); border-radius: var(--r-2xl); padding: var(--sp-8); color: #fff; }
.calc-inputs { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); margin-bottom: var(--sp-5); }
.calc-field  { display: flex; flex-direction: column; gap: var(--sp-1); }
.calc-label  { font-size: 10.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.45); }
.calc-select { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: var(--r-md); color: #fff; font-size: 14px; padding: 10px 12px; outline: none; cursor: pointer; width: 100%; }
.calc-rows   { display: flex; flex-direction: column; gap: var(--sp-2); margin-bottom: var(--sp-5); }
.calc-row    { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.07); }
.calc-row-label { font-size: 13.5px; color: rgba(255,255,255,.7); }
.calc-row-val   { font-size: 14px; font-weight: 700; color: var(--gold-3); font-family: var(--font-mono); }
.calc-row-deadline { font-size: 12px; color: rgba(255,255,255,.4); }
.calc-result { background: rgba(201,168,76,.1); border: 1px solid rgba(201,168,76,.2); border-radius: var(--r-lg); padding: var(--sp-4); margin-bottom: var(--sp-4); }
.calc-fee    { font-family: var(--font-display); font-size: 36px; font-weight: 400; color: var(--gold-3); line-height: 1; margin-bottom: 4px; }
.calc-msg    { font-size: 12.5px; color: rgba(255,255,255,.45); }
.calc-output { min-height: 80px; }
.calc-bar    { background: rgba(255,255,255,.06); border-radius: var(--r-lg); padding: var(--sp-4); margin-bottom: var(--sp-3); }
.calc-bar-title { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: var(--sp-3); }
.calc-dest   { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.7); }
.calc-dest-row { display: flex; justify-content: space-between; align-items: center; padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,.05); }
.calc-clock  { font-family: var(--font-mono); font-size: 13px; color: rgba(255,255,255,.5); }
.calc-date   { font-size: 12px; color: rgba(255,255,255,.35); }
.calc-footer { padding-top: var(--sp-4); border-top: 1px solid rgba(255,255,255,.08); }
.calc-cta    { font-size: 12.5px; color: rgba(255,255,255,.45); margin-bottom: var(--sp-3); }
.calc-apply-btn  { display: block; background: var(--gold-2); color: var(--navy-2); font-weight: 700; font-size: 14px; padding: 12px; border-radius: var(--r-md); text-align: center; text-decoration: none; transition: all var(--dur-base); }
.calc-apply-btn:hover { filter: brightness(1.1); transform: translateY(-1px); }
.calc-apply-link { font-size: 12px; color: rgba(255,255,255,.4); text-align: center; display: block; margin-top: var(--sp-2); text-decoration: none; }
.calc-placeholder { text-align: center; padding: var(--sp-8) var(--sp-4); }
.calc-placeholder-icon { font-size: 40px; margin-bottom: var(--sp-3); display: block; }
.calc-placeholder-text { font-size: 13.5px; color: rgba(255,255,255,.35); }
.calc-wa-btn { display: inline-flex; align-items: center; gap: var(--sp-2); background: #25D366; color: #fff; padding: 10px 18px; border-radius: var(--r-md); font-weight: 700; font-size: 13px; text-decoration: none; transition: all var(--dur-fast); }
.calc-wa-btn:hover { filter: brightness(1.1); }

/* ── Process page ────────────────────────────────────────────── */
.process-num { font-family: var(--font-display); font-size: 48px; font-weight: 300; color: var(--border); line-height: 1; }
.process-content { flex: 1; }

/* ── Category tabs (news) ────────────────────────────────────── */
.cat-tabs { display: flex; gap: var(--sp-2); flex-wrap: wrap; margin-bottom: var(--sp-8); }
.cat-tab  { display: inline-flex; align-items: center; gap: 7px; padding: 8px 16px; border-radius: var(--r-full); border: 1.5px solid var(--border); background: var(--surface); font-size: 12.5px; font-weight: 600; color: var(--text-3); cursor: pointer; transition: all var(--dur-fast); text-decoration: none; }
.cat-tab:hover  { border-color: var(--navy-2); color: var(--navy-2); }
.cat-tab.active { background: var(--navy-2); border-color: var(--navy-2); color: #fff; }

/* ── Featured article cards ──────────────────────────────────── */
.feat-grid    { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; margin-bottom: var(--sp-12); }
.feat-card    { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-xl); overflow: hidden; text-decoration: none; display: flex; flex-direction: column; transition: all .3s var(--ease-spring); }
.feat-card:hover { transform: translateY(-5px); box-shadow: var(--s-lg); }
.feat-top     { padding: 22px 20px 18px; flex: 1; }
.feat-emoji   { font-size: 42px; display: block; margin-bottom: 10px; line-height: 1; }
.feat-badge   { display: inline-flex; align-items: center; padding: 3px 10px; border-radius: var(--r-full); font-size: 10.5px; font-weight: 700; letter-spacing: .06em; margin-bottom: var(--sp-3); }
.feat-title   { font-size: 16px; font-weight: 700; color: var(--navy-2); line-height: 1.4; margin-bottom: var(--sp-2); }
.feat-summary { font-size: 13.5px; color: var(--text-3); line-height: 1.65; }
.feat-foot    { padding: 13px 20px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.feat-meta    { font-size: 11.5px; color: var(--text-3); }
.feat-arrow   { width: 28px; height: 28px; border-radius: 50%; background: rgba(10,26,62,.07); display: flex; align-items: center; justify-content: center; font-size: 13px; color: var(--navy-2); transition: all var(--dur-fast); }
.feat-card:hover .feat-arrow { background: var(--navy-2); color: #fff; transform: translateX(3px); }

/* ── Navigation classes (used in some pages) ─────────────────── */
.nav        { position: sticky; top: 0; z-index: 200; }
.nav-inner  { display: flex; align-items: center; gap: var(--sp-6); max-width: var(--max-w); margin: 0 auto; padding: 0 var(--sp-6); height: var(--nav-h); }
.nav-brand  { display: flex; align-items: center; gap: var(--sp-3); text-decoration: none; }
.nav-links  { display: flex; align-items: center; gap: var(--sp-1); margin-left: auto; }

/* ── Responsive fixes for above ─────────────────────────────── */
@media (max-width: 640px) {
  .display-1 { font-size: 36px; }
  .display-2 { font-size: 28px; }
  .calc-inputs { grid-template-columns: 1fr; }
  .news-row { grid-template-columns: 40px 1fr; gap: 10px; }
  .news-arrow { display: none; }
  .feat-grid { grid-template-columns: 1fr; }
  .visa-type-grid { grid-template-columns: 1fr; }
  .req-grid { grid-template-columns: 1fr; }
  .stage-pipeline { gap: 0; }
}


/* Footer visibility fix */
.site-footer,
.footer-main,
.footer-bot{
background:#06122E !important;
}
.site-footer *{
color:inherit;
}
.footer-desc,
.footer-col a,
.footer-col h5,
.footer-contact a,
.footer-bot,
.footer-bot a{
color:rgba(255,255,255,.85) !important;
}
