/* ==========================================================================
   Edu Assist — Design System & Homepage Styles
   Brand colours extracted from images/edu-assist-logo.svg:
     Navy  #1a4289  ("u" + "ASSIST")  → primary
     Red   #e92926  ("e" + "d")       → secondary / accent highlights
   ========================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  --primary: #1a4289;
  --primary-dark: #0f2b63;
  --primary-darker: #091c44;
  --primary-light: #2f62c0;
  --primary-soft: #eef3fc;
  --primary-tint: rgba(26, 66, 137, 0.08);

  --secondary: #e92926;
  --secondary-dark: #c41d1a;
  --secondary-soft: #fdeeee;

  --accent: #6c95ff;
  --success: #149a55;
  --success-soft: #e8f7ef;
  --warning: #b7791f;
  --warning-soft: #fdf4e3;

  --text-dark: #0b1633;
  --text-body: #3b4661;
  --text-muted: #69738c;
  --text-on-dark: #ffffff;

  --surface: #ffffff;
  --surface-2: #f5f7fb;
  --background: #ffffff;
  --background-alt: #f6f8fc;
  --border: #e6eaf2;
  --border-strong: #d4dbe8;

  --font: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  --shadow-xs: 0 1px 2px rgba(11, 22, 51, 0.05);
  --shadow-sm: 0 2px 8px -2px rgba(11, 22, 51, 0.08), 0 1px 2px rgba(11, 22, 51, 0.04);
  --shadow-md: 0 12px 32px -12px rgba(11, 22, 51, 0.16), 0 2px 6px rgba(11, 22, 51, 0.04);
  --shadow-lg: 0 30px 60px -20px rgba(11, 22, 51, 0.22), 0 8px 20px -8px rgba(11, 22, 51, 0.08);
  --shadow-brand: 0 14px 30px -12px rgba(26, 66, 137, 0.55);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.4, 0.64, 1);

  --container: 1240px;
  --gutter: clamp(20px, 4vw, 40px);
  --header-h: 76px;
  --section-y: clamp(84px, 10vw, 140px);
}

/* ---------- 2. Reset & base ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-body);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

img, svg, canvas { display: block; max-width: 100%; }
img { height: auto; }

h1, h2, h3, h4, p, ul, ol, dl, dd, figure, blockquote, fieldset { margin: 0; }
ul, ol { padding: 0; list-style: none; }
fieldset { border: 0; padding: 0; min-width: 0; }
legend { padding: 0; }

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; padding: 0; }
input, select, textarea { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  color: var(--text-dark);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

h3 { font-size: 1.2rem; letter-spacing: -0.02em; line-height: 1.3; }

::selection { background: var(--primary); color: #fff; }

:focus-visible {
  outline: 2px solid var(--primary-light);
  outline-offset: 3px;
  border-radius: 6px;
}

[hidden] { display: none !important; }

/* Lucide icons: reserve space before the script replaces <i> with <svg> */
i[data-lucide] { display: inline-block; width: 1em; height: 1em; flex-shrink: 0; }
.lucide { width: 1em; height: 1em; flex-shrink: 0; stroke-width: 1.75; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  transform: translateY(-150%);
  transition: transform 0.2s var(--ease);
}
.skip-link:focus { transform: none; }

/* ---------- 3. Layout ---------- */
.container {
  width: 100%;
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); position: relative; }

.section-head { margin-bottom: clamp(44px, 6vw, 72px); }
.section-head--center { text-align: center; max-width: 760px; margin-inline: auto; }
.section-head--center .section-sub { margin-inline: auto; }
.section-head--split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: end;
  gap: 32px 64px;
}
.section-head--split .section-sub { justify-self: end; }

/* ---------- 4. Typography components ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
}
.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--secondary);
  box-shadow: 0 0 0 4px rgba(233, 41, 38, 0.12);
}
.eyebrow--light { color: #b9ccf5; }
.eyebrow--light::before { box-shadow: 0 0 0 4px rgba(233, 41, 38, 0.25); }

.section-title {
  font-size: clamp(2.1rem, 1.35rem + 2.3vw, 3.4rem);
  line-height: 1.06;
  letter-spacing: -0.038em;
  text-wrap: balance;
}

.section-sub {
  max-width: 540px;
  margin-top: 18px;
  font-size: 1.075rem;
  color: var(--text-muted);
}
.section-head--split .section-sub { margin-top: 0; }

.lead {
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--text-body);
}

.text-gradient {
  background: linear-gradient(100deg, var(--primary) 10%, var(--primary-light) 65%, #6a4fb3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--primary);
}
.text-link .lucide { transition: transform 0.3s var(--ease-out); }
.text-link:hover .lucide { transform: translateX(4px); }

/* ---------- 5. Buttons ---------- */
.btn {
  --btn-h: 48px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: var(--btn-h);
  padding: 0 22px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease), background-color 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.btn .lucide { width: 18px; height: 18px; }
.btn:active { transform: scale(0.98); }
.btn:disabled { opacity: 0.7; cursor: progress; }
.btn-arrow { transition: transform 0.3s var(--ease-out); }
.btn:hover .btn-arrow { transform: translateX(4px); }

.btn--sm { --btn-h: 42px; padding: 0 18px; font-size: 0.9rem; }
.btn--lg { --btn-h: 56px; padding: 0 28px; font-size: 1rem; }
.btn--block { width: 100%; }

.btn--primary {
  color: #fff;
  background: linear-gradient(180deg, #2352a6 0%, var(--primary) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), var(--shadow-brand);
}
.btn--primary::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.22) 50%, transparent 70%);
  transform: translateX(-110%);
  transition: transform 0.8s var(--ease-out);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 18px 36px -12px rgba(26, 66, 137, 0.65);
}
.btn--primary:hover::after { transform: translateX(110%); }
.btn--primary:active { transform: translateY(0) scale(0.98); }

.btn--outline {
  color: var(--text-dark);
  background: rgba(255, 255, 255, 0.8);
  border-color: var(--border-strong);
}
.btn--outline:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow-sm); }

.btn--light {
  color: var(--primary-dark);
  background: #fff;
  box-shadow: 0 14px 30px -14px rgba(0, 0, 0, 0.45);
}
.btn--light:hover { transform: translateY(-2px); box-shadow: 0 20px 40px -14px rgba(0, 0, 0, 0.5); }

.btn--glass {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(8px);
}
.btn--glass:hover { background: rgba(255, 255, 255, 0.16); transform: translateY(-2px); }

.btn--ghost { color: var(--text-muted); padding: 0 14px; }
.btn--ghost:hover { color: var(--primary); }

.icon-btn {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: #fff;
  color: var(--text-dark);
  transition: all 0.25s var(--ease);
}
.icon-btn .lucide { width: 18px; height: 18px; }
.icon-btn:hover { border-color: var(--primary); background: var(--primary); color: #fff; }

/* ---------- 6. Reusable components ---------- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px 7px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-xs);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-body);
}

.pulse-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--secondary);
}
.pulse-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1.5px solid var(--secondary);
  opacity: 0;
  animation: ping 2.4s var(--ease) infinite;
}

.icon-badge {
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 15px;
  background: var(--primary-soft);
  color: var(--primary);
  box-shadow: inset 0 0 0 1px rgba(26, 66, 137, 0.08);
}
.icon-badge .lucide { width: 24px; height: 24px; }
.icon-badge--sm { width: 38px; height: 38px; border-radius: 11px; }
.icon-badge--sm .lucide { width: 18px; height: 18px; }
.icon-badge--red { background: var(--secondary-soft); color: var(--secondary); box-shadow: inset 0 0 0 1px rgba(233, 41, 38, 0.1); }
.icon-badge--success { background: var(--success-soft); color: var(--success); }
.icon-badge--light { background: rgba(255, 255, 255, 0.14); color: #fff; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18); }

.glass {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  box-shadow: var(--shadow-md);
}

.avatar {
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.avatar--lg { width: 52px; height: 52px; font-size: 0.95rem; }

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  border-radius: var(--radius-pill);
  background: var(--warning-soft);
  color: var(--warning);
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
  transition: background-color 0.4s var(--ease), color 0.4s var(--ease);
}
.status-pill::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}
.status-pill--live,
.status-pill.is-ready { background: var(--success-soft); color: var(--success); }

.progress {
  height: 8px;
  border-radius: var(--radius-pill);
  background: var(--surface-2);
  overflow: hidden;
}
.progress > span {
  display: block;
  height: 100%;
  width: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.9s var(--ease-out);
}

.check-list { display: grid; gap: 14px; }
.check-list li { display: flex; gap: 14px; align-items: flex-start; }
.check-list .lucide {
  width: 24px;
  height: 24px;
  padding: 5px;
  margin-top: 1px;
  border-radius: 50%;
  stroke-width: 2.5;
}

/* ---------- 7. Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  transition: background-color 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease), height 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  --header-h: 68px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px) saturate(170%);
  -webkit-backdrop-filter: blur(18px) saturate(170%);
  border-bottom-color: rgba(214, 221, 235, 0.7);
  box-shadow: 0 6px 24px -12px rgba(11, 22, 51, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 100%;
}

.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand img { width: 92px; height: auto; transition: width 0.35s var(--ease); }
.is-scrolled .brand img { width: 84px; }

.primary-nav ul { display: flex; align-items: center; gap: 4px; }
.nav-link {
  position: relative;
  display: inline-block;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-body);
  transition: color 0.2s var(--ease), background-color 0.2s var(--ease);
}
.nav-link:hover { color: var(--primary); background: var(--primary-tint); }
.nav-link.is-active { color: var(--primary); font-weight: 600; }
.nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 1px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--secondary);
  transform: translateX(-50%);
}

.header-actions { display: flex; align-items: center; gap: 12px; }

.cta-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff5b57;
  box-shadow: 0 0 0 3px rgba(255, 91, 87, 0.25);
}

.menu-toggle {
  display: none;
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: rgba(255, 255, 255, 0.8);
}
.menu-toggle span {
  position: absolute;
  left: 50%;
  width: 18px;
  height: 1.8px;
  border-radius: 2px;
  background: var(--text-dark);
  transform: translateX(-50%);
  transition: transform 0.35s var(--ease-out), top 0.35s var(--ease-out);
}
.menu-toggle span:nth-child(1) { top: 18px; }
.menu-toggle span:nth-child(2) { top: 25px; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { top: 22px; transform: translateX(-50%) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { top: 22px; transform: translateX(-50%) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  padding: calc(var(--header-h) + 24px) var(--gutter) max(28px, env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
  overflow-y: auto;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu__nav { display: grid; }
.mobile-menu__nav .mobile-link {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s var(--ease-out), transform 0.45s var(--ease-out), color 0.2s;
}
.mobile-menu__nav .mobile-link span { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; color: var(--secondary); }
.mobile-menu__nav .mobile-link:hover { color: var(--primary); }
.mobile-menu.is-open .mobile-link { opacity: 1; transform: none; }
.mobile-menu.is-open .mobile-link:nth-child(2) { transition-delay: 0.04s; }
.mobile-menu.is-open .mobile-link:nth-child(3) { transition-delay: 0.08s; }
.mobile-menu.is-open .mobile-link:nth-child(4) { transition-delay: 0.12s; }
.mobile-menu.is-open .mobile-link:nth-child(5) { transition-delay: 0.16s; }
.mobile-menu.is-open .mobile-link:nth-child(6) { transition-delay: 0.2s; }
.mobile-menu__footer { display: grid; gap: 12px; }

/* ---------- 8. Hero ---------- */
.hero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(36px, 6vw, 72px));
  padding-bottom: clamp(40px, 5vw, 64px);
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(26, 66, 137, 0.055) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(26, 66, 137, 0.055) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 60% 35%, #000 20%, transparent 75%);
  mask-image: radial-gradient(ellipse 80% 70% at 60% 35%, #000 20%, transparent 75%);
}
.hero-map {
  position: absolute;
  inset: 0;
  background: url("../images/world-dots.svg") no-repeat;
  background-size: max(1500px, 110%) auto;
  background-position: 62% 46%;
  opacity: 0.13;
  -webkit-mask-image: radial-gradient(ellipse 55% 80% at 74% 45%, #000 30%, transparent 78%);
  mask-image: radial-gradient(ellipse 55% 80% at 74% 45%, #000 30%, transparent 78%);
}
.hero-orb { position: absolute; border-radius: 50%; filter: blur(80px); }
.hero-orb--blue { width: 620px; height: 620px; right: -120px; top: -80px; background: radial-gradient(circle, rgba(108, 149, 255, 0.28), transparent 70%); }
.hero-orb--red { width: 420px; height: 420px; right: 18%; bottom: 0; background: radial-gradient(circle, rgba(233, 41, 38, 0.10), transparent 70%); }

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(32px, 4vw, 64px);
  min-height: min(720px, calc(100svh - var(--header-h) - 170px));
}

.hero-pill { margin-bottom: 28px; }

.hero-title {
  font-size: clamp(2.7rem, 1.1rem + 4.4vw, 4.75rem);
  line-height: 1.01;
  letter-spacing: -0.045em;
  font-weight: 800;
  text-wrap: balance;
}

.hero-lead {
  max-width: 560px;
  margin-top: 28px;
  font-size: clamp(1.05rem, 0.98rem + 0.3vw, 1.2rem);
  line-height: 1.65;
  color: var(--text-muted);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 40px; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 32px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
}
.hero-trust li { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust .lucide { width: 16px; height: 16px; color: var(--primary); stroke-width: 2.5; }

/* Globe visual */
.hero-visual { position: relative; text-align: left; }
.globe-stage {
  --px: 0;
  --py: 0;
  position: relative;
  width: 100%;
  max-width: 620px;
  aspect-ratio: 1;
  margin-inline: auto;
}
.globe-layer {
  position: absolute;
  inset: 0;
  transform: translate3d(calc(var(--px) * var(--depth, 10) * 1px), calc(var(--py) * var(--depth, 10) * 1px), 0);
  will-change: transform;
}
.globe-layer--back { --depth: 8; }
.globe-layer--photos { --depth: 22; z-index: 1; pointer-events: none; }
.globe-layer--routes { --depth: 16; z-index: 2; }
.globe-layer--float { --depth: 28; z-index: 3; pointer-events: none; }

.globe-glow {
  position: absolute;
  inset: -4%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 74% 80%, rgba(233, 41, 38, 0.16), transparent 34%),
    radial-gradient(circle at 50% 50%, rgba(47, 98, 192, 0.34) 0%, rgba(47, 98, 192, 0.14) 38%, transparent 64%);
  filter: blur(12px);
}
.globe-rings { position: absolute; inset: 0; }
.globe-rings span {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(26, 66, 137, 0.09);
}
.globe-rings span:first-child { inset: 7%; }
.globe-rings span:last-child { inset: 0; border-style: dashed; border-color: rgba(26, 66, 137, 0.08); animation: spin 120s linear infinite; }

.globe-sphere {
  position: absolute;
  left: 13.333%;
  top: 13.333%;
  width: 73.333%;
  height: 73.333%;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 28%, #ffffff 0%, #eef3fd 20%, #cddbf6 52%, #98b2e6 82%, #7596d8 100%);
  box-shadow:
    inset -30px -42px 80px rgba(15, 43, 99, 0.3),
    inset 18px 18px 40px rgba(255, 255, 255, 0.85),
    0 50px 100px -30px rgba(26, 66, 137, 0.55),
    0 0 70px 4px rgba(108, 149, 255, 0.28),
    0 0 0 1px rgba(26, 66, 137, 0.08);
}

.photo-bubble {
  position: absolute;
  aspect-ratio: 1;
  margin: 0;
  padding: 5px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 18px 40px -14px rgba(11, 22, 51, 0.4), 0 0 0 1px rgba(26, 66, 137, 0.06);
  animation: bob 8s ease-in-out infinite;
}
.photo-bubble img { display: block; width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.photo-bubble--lg { width: 22%; left: 1%; top: 5%; }
.photo-bubble--md { width: 16%; right: 13%; bottom: 0; animation-delay: -2.7s; }
.photo-bubble--sm { width: 12%; left: 1%; top: 51%; animation-delay: -5.2s; }
.photo-bubble__badge {
  position: absolute;
  right: 0;
  bottom: 2%;
  display: grid;
  place-items: center;
  width: 32%;
  min-width: 28px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 3px solid #fff;
  background: var(--primary);
  color: #fff;
  box-shadow: 0 6px 14px -4px rgba(26, 66, 137, 0.5);
}
.photo-bubble__badge--red { background: var(--secondary); box-shadow: 0 6px 14px -4px rgba(233, 41, 38, 0.5); }
.photo-bubble__badge .lucide { width: 52%; height: 52%; }
.globe-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }

.globe-routes { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.route {
  fill: none;
  stroke: rgba(26, 66, 137, 0.35);
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: draw-route 1.6s var(--ease-out) forwards;
}
.route:nth-child(2) { animation-delay: 0.15s; }
.route:nth-child(3) { animation-delay: 0.3s; }
.route:nth-child(4) { animation-delay: 0.45s; }
.route:nth-child(5) { animation-delay: 0.6s; }
.route:nth-child(6) { animation-delay: 0.75s; }

.route-flow {
  fill: none;
  stroke: url(#routeGradient);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-dasharray: 0.16 1.2;
  stroke-dashoffset: 0.16;
  opacity: 0;
  animation: route-flow 3.6s var(--ease) infinite;
  animation-delay: calc(1.8s + var(--d, 0s));
}

.hub-core { fill: var(--secondary); stroke: #fff; stroke-width: 2.5; }
.hub-pulse {
  fill: none;
  stroke: var(--secondary);
  stroke-width: 1.5;
  transform-box: fill-box;
  transform-origin: center;
  animation: hub-pulse 2.8s var(--ease) infinite;
}
.hub-pulse--late { animation-delay: 1.4s; }

.hub-label {
  position: absolute;
  left: var(--x);
  top: var(--y);
  display: grid;
  transform: translate(-50%, 18px);
  text-align: center;
  line-height: 1.25;
  pointer-events: none;
}
.hub-label strong { font-size: 0.82rem; font-weight: 700; color: var(--text-dark); letter-spacing: -0.01em; }
.hub-label span { font-size: 0.7rem; font-weight: 600; color: var(--secondary); letter-spacing: 0.04em; text-transform: uppercase; }

.geo-node {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 0;
  height: 0;
  z-index: 1;
}
.geo-node:hover,
.geo-node:focus-within,
.geo-node.is-open { z-index: 5; }

.geo-node__btn {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  transform: translate(-11px, -50%);
  -webkit-tap-highlight-color: transparent;
}
.geo-node--label-left .geo-node__btn { flex-direction: row-reverse; transform: translate(calc(-100% + 11px), -50%); }

.geo-node__dot {
  position: relative;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.geo-node__dot::before {
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #fff;
  border: 2.5px solid var(--primary);
  box-shadow: 0 2px 8px rgba(26, 66, 137, 0.35);
  transition: transform 0.3s var(--ease-spring), background-color 0.3s;
}
.geo-node__dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(26, 66, 137, 0.14);
  animation: node-breathe 3s var(--ease) infinite;
}

.geo-node__label {
  padding: 5px 11px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(214, 221, 235, 0.9);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
  transition: background-color 0.25s, color 0.25s, border-color 0.25s;
}

.geo-node:hover .geo-node__dot::before,
.geo-node:focus-within .geo-node__dot::before,
.geo-node.is-open .geo-node__dot::before { transform: scale(1.25); background: var(--primary); }
.geo-node:hover .geo-node__label,
.geo-node:focus-within .geo-node__label,
.geo-node.is-open .geo-node__label { background: var(--primary); border-color: var(--primary); color: #fff; }

.geo-card {
  position: absolute;
  left: -20px;
  bottom: 22px;
  display: grid;
  gap: 2px;
  width: 196px;
  padding: 16px 18px;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px) scale(0.97);
  transform-origin: bottom left;
  transition: opacity 0.3s var(--ease), transform 0.35s var(--ease-out), visibility 0.3s;
}
.geo-node--below .geo-card { bottom: auto; top: 22px; transform: translateY(-8px) scale(0.97); transform-origin: top left; }
.geo-node--card-left .geo-card { left: auto; right: -20px; transform-origin: bottom right; }
.geo-node:hover .geo-card,
.geo-node:focus-within .geo-card,
.geo-node.is-open .geo-card { opacity: 1; visibility: visible; transform: none; }

.geo-card__img {
  display: block;
  width: calc(100% + 36px);
  max-width: none;
  height: 92px;
  margin: -16px -18px 10px;
  object-fit: cover;
  background: var(--primary-soft);
}
.geo-card__country { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--secondary); }
.geo-card__title { font-size: 1rem; font-weight: 700; color: var(--text-dark); letter-spacing: -0.02em; }
.geo-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
}
.geo-card__link .lucide { width: 15px; height: 15px; transition: transform 0.3s var(--ease-out); }
.geo-card__link:hover .lucide { transform: translateX(4px); }

.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px 14px 14px;
  border-radius: 18px;
  line-height: 1.3;
  animation: bob 7s ease-in-out infinite;
}
.float-card strong { display: block; font-size: 0.88rem; color: var(--text-dark); letter-spacing: -0.01em; }
.float-card__label { display: block; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); }
.float-card--route { top: 3%; right: -2%; }
.float-card--docs { bottom: 5%; left: -3%; animation-delay: -3.5s; }
.float-steps { display: flex; gap: 4px; margin-top: 7px; }
.float-steps i { width: 18px; height: 4px; border-radius: 4px; background: var(--border-strong); }
.float-steps i.on { background: var(--primary); }

.hero-visual__hint { display: none; }

/* Trust strip */
.trust-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: clamp(40px, 5vw, 64px);
  padding: 22px 4px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-strip li {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  justify-content: center;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
}
.trust-strip li + li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 22px;
  background: var(--border-strong);
  transform: translateY(-50%);
}
.trust-strip .lucide { width: 20px; height: 20px; color: var(--primary); }

/* ---------- 9. About ---------- */
.about-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(48px, 7vw, 100px);
}
.about-copy .section-title { margin-bottom: 26px; }
.about-copy > p + p { margin-top: 16px; }

.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 36px 0; }
.feature-list li {
  display: flex;
  gap: 14px;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
}
.feature-list__icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--primary-soft);
  color: var(--primary);
}
.feature-list__icon .lucide { width: 18px; height: 18px; }
.feature-list strong { display: block; font-size: 0.95rem; color: var(--text-dark); letter-spacing: -0.01em; }
.feature-list li > div span { display: block; font-size: 0.88rem; line-height: 1.5; color: var(--text-muted); }

.about-visual {
  position: relative;
  aspect-ratio: 1 / 1.15;
}
.about-visual__dots {
  position: absolute;
  right: -5%;
  bottom: 2%;
  width: 50%;
  height: 50%;
  background-image: radial-gradient(rgba(26, 66, 137, 0.22) 1.2px, transparent 1.2px);
  background-size: 18px 18px;
  -webkit-mask-image: radial-gradient(circle at center, #000 30%, transparent 72%);
  mask-image: radial-gradient(circle at center, #000 30%, transparent 72%);
}
.about-photo {
  position: absolute;
  top: 0;
  right: 0;
  width: 90%;
  height: 64%;
  margin: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--primary-soft);
  box-shadow: var(--shadow-lg);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease-out); }
.about-visual:hover .about-photo img { transform: scale(1.04); }
.about-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(15, 43, 99, 0) 45%, rgba(15, 43, 99, 0.35) 100%);
}

.plan-card {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: min(56%, 310px);
  padding: 20px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}
.plan-card__head { display: flex; align-items: center; gap: 12px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.plan-card__head > div { flex: 1; min-width: 0; line-height: 1.3; }
.plan-card__head strong { display: block; font-size: 0.98rem; color: var(--text-dark); }
.plan-card__head span:not(.avatar):not(.status-pill) { font-size: 0.8rem; color: var(--text-muted); }

.plan-steps { display: grid; gap: 12px; padding: 16px 0; }
.plan-steps li { display: flex; align-items: center; gap: 12px; font-size: 0.88rem; font-weight: 500; color: var(--text-muted); }
.plan-steps li.done { color: var(--text-dark); }
.plan-steps li.current { color: var(--text-dark); font-weight: 600; }
.plan-steps__mark {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--border-strong);
  flex-shrink: 0;
}
.plan-steps__mark .lucide { width: 13px; height: 13px; stroke-width: 3; }
.done .plan-steps__mark { background: var(--primary); border-color: var(--primary); color: #fff; }
.current .plan-steps__mark { border-color: var(--secondary); box-shadow: 0 0 0 4px rgba(233, 41, 38, 0.12); }
.current .plan-steps__mark::after { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--secondary); }

.plan-card__bar { height: 6px; border-radius: 6px; background: var(--surface-2); overflow: hidden; }
.plan-card__bar span { display: block; width: 62%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--primary), var(--primary-light)); }

.orbit-card {
  --sy: 0px;
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px 10px 10px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
  transform: translate3d(0, var(--sy), 0);
  will-change: transform;
}
.orbit-card--1 { top: 6%; left: 0; }
.orbit-card--2 { top: -3%; right: -8%; }
.orbit-card--3 { top: 27%; right: -8%; }
.orbit-card--4 { top: 57%; right: -4%; }

/* ---------- 10. Process / journey ---------- */
.process { background: var(--background-alt); }

.journey {
  --progress: 0;
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
}
.journey__line {
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--border-strong);
  border-radius: 2px;
}
.journey__fill {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), var(--primary-light) 80%, var(--secondary));
  transform: scaleX(var(--progress));
  transform-origin: left;
  transition: transform 0.15s linear;
}

.journey-step { position: relative; text-align: center; }
.journey-step__node {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 28px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border-strong);
  color: var(--text-muted);
  box-shadow: var(--shadow-sm);
  transition: background-color 0.5s var(--ease), color 0.5s var(--ease), border-color 0.5s var(--ease), box-shadow 0.5s var(--ease), transform 0.5s var(--ease-spring);
}
.journey-step__node .lucide { width: 24px; height: 24px; }
.journey-step__num {
  display: block;
  margin-bottom: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  transition: color 0.4s var(--ease);
}
.journey-step h3 { font-size: 1.35rem; margin-bottom: 10px; transition: color 0.4s var(--ease); }
.journey-step p { font-size: 0.93rem; line-height: 1.6; color: var(--text-muted); max-width: 230px; margin-inline: auto; }

.journey-step.is-active .journey-step__node {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 0 0 8px rgba(26, 66, 137, 0.1), var(--shadow-brand);
}
.journey-step.is-active .journey-step__num { color: var(--secondary); }
.journey-step.is-current .journey-step__node { transform: scale(1.08); box-shadow: 0 0 0 10px rgba(26, 66, 137, 0.12), 0 0 40px rgba(47, 98, 192, 0.45); }
.journey-step.is-current h3 { color: var(--primary); }

/* ---------- 11. Destinations ---------- */
.dest-track {
  display: flex;
  gap: 14px;
  height: clamp(480px, 42vw, 580px);
}
.dest-card {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  isolation: isolate;
  cursor: pointer;
  background: linear-gradient(160deg, var(--primary-light), var(--primary-darker));
  transition: flex-grow 0.7s var(--ease-out), box-shadow 0.4s var(--ease);
  outline-offset: 4px;
  container-type: inline-size;
}
@media (min-width: 1181px) {
  .dest-card:not(.is-active) .dest-card__content { padding-inline: 18px; }
}
.dest-card.is-active { flex-grow: 3.2; box-shadow: var(--shadow-lg); }

.dest-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 1.4s var(--ease-out);
}
.dest-card:hover .dest-card__img,
.dest-card.is-active .dest-card__img { transform: scale(1.1); }

.dest-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 18, 44, 0.92) 0%, rgba(7, 18, 44, 0.45) 45%, rgba(7, 18, 44, 0.12) 100%);
  transition: background 0.6s var(--ease);
}
.dest-card.is-active .dest-card__overlay {
  background: linear-gradient(to top, rgba(9, 28, 68, 0.95) 0%, rgba(15, 43, 99, 0.45) 50%, rgba(15, 43, 99, 0) 100%);
}

.dest-card__content {
  position: absolute;
  inset: auto 0 0 0;
  padding: 26px;
  color: #fff;
}
.dest-card__code {
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 9px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(6px);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.dest-card__name {
  color: #fff;
  font-size: clamp(0.9rem, 14cqi, 1.7rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  transition: font-size 0.5s var(--ease-out);
}
.dest-card.is-active .dest-card__name { font-size: clamp(1.6rem, 1.2rem + 1vw, 2.2rem); }

.dest-card__details {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.6s var(--ease-out), opacity 0.4s var(--ease);
}
.dest-card__details-inner { width: 330px; min-height: 0; overflow: hidden; }
.dest-card.is-active .dest-card__details { grid-template-rows: 1fr; opacity: 1; transition-delay: 0.15s; }

.dest-card__details p { padding-top: 12px; font-size: 0.95rem; line-height: 1.6; color: rgba(255, 255, 255, 0.82); }
.dest-card__meta { display: flex; gap: 8px; margin-top: 14px; font-size: 0.82rem; }
.dest-card__meta dt { color: rgba(255, 255, 255, 0.6); }
.dest-card__meta dd { font-weight: 600; }
.dest-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  background: #fff;
  color: var(--primary-dark);
  font-size: 0.88rem;
  font-weight: 700;
  transition: gap 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}
.dest-card__link .lucide { width: 16px; height: 16px; transition: transform 0.3s var(--ease-out); }
.dest-card__link:hover .lucide { transform: translateX(4px); }

.swipe-hint { display: none; }

/* ---------- 12. Services ---------- */
.services { background: var(--background-alt); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.service-card {
  --mx: 50%;
  --my: 0%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 290px;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease), border-color 0.45s var(--ease);
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(420px circle at var(--mx) var(--my), rgba(47, 98, 192, 0.10), transparent 60%),
    linear-gradient(180deg, rgba(238, 243, 252, 0) 40%, rgba(238, 243, 252, 0.9));
  opacity: 0;
  transition: opacity 0.45s var(--ease);
}
.service-card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-out);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(26, 66, 137, 0.18);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::before { opacity: 1; }
.service-card:hover::after { transform: scaleX(1); }

.service-card .icon-badge { margin-bottom: 14px; transition: transform 0.45s var(--ease-spring), background-color 0.3s, color 0.3s; }
.service-card:hover .icon-badge { transform: translateY(-2px) rotate(-4deg); }
.service-card h3 { font-size: 1.25rem; padding-right: 36px; }
.service-card p { font-size: 0.95rem; line-height: 1.6; color: var(--text-muted); }

.service-card__arrow {
  position: absolute;
  top: 28px;
  right: 28px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: all 0.4s var(--ease-out);
}
.service-card__arrow .lucide { width: 18px; height: 18px; }
.service-card:hover .service-card__arrow { background: var(--primary); border-color: var(--primary); color: #fff; transform: rotate(45deg); }

.service-card--featured { border-color: rgba(233, 41, 38, 0.18); }
.service-card--featured::before {
  background:
    radial-gradient(420px circle at var(--mx) var(--my), rgba(233, 41, 38, 0.08), transparent 60%),
    linear-gradient(180deg, rgba(253, 238, 238, 0) 40%, rgba(253, 238, 238, 0.8));
}

/* ---------- 12b. Visa guidance ---------- */
.visa-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(48px, 7vw, 100px);
}
.visa-media { position: relative; aspect-ratio: 1 / 1.05; }
.visa-media figure { margin: 0; overflow: hidden; background: var(--primary-soft); }
.visa-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease-out); }
.visa-media:hover img { transform: scale(1.04); }
.visa-media__main {
  position: absolute;
  top: 0;
  left: 0;
  width: 72%;
  height: 88%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.visa-media__secondary {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 46%;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  border: 6px solid #fff;
  box-shadow: var(--shadow-lg);
}
.visa-media__badge {
  position: absolute;
  left: 5%;
  bottom: 3%;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px 14px 14px;
  border-radius: 18px;
  line-height: 1.3;
  animation: bob 7s ease-in-out infinite;
}
.visa-media__badge strong { display: block; font-size: 0.9rem; color: var(--text-dark); letter-spacing: -0.01em; }

.visa-copy .section-title { margin-bottom: 22px; }
.visa-steps { margin-top: 30px; border-top: 1px solid var(--border); }
.visa-steps li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.45;
}
.visa-steps__num {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease);
}
.visa-steps li:hover .visa-steps__num { background: var(--primary); color: #fff; }
.visa-steps strong { display: block; margin-bottom: 2px; color: var(--text-dark); letter-spacing: -0.01em; }
.visa-steps span:not(.visa-steps__num) { font-size: 0.93rem; color: var(--text-muted); }
.visa-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.visa-note { margin-top: 16px; font-size: 0.82rem; color: var(--text-muted); }

/* ---------- 13. Financial feature ---------- */
.finance {
  color: rgba(255, 255, 255, 0.78);
  background: linear-gradient(160deg, #0b2152 0%, var(--primary-darker) 55%, #071636 100%);
  overflow: hidden;
  isolation: isolate;
}
.finance-bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.finance-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse at 75% 50%, #000 10%, transparent 70%);
  mask-image: radial-gradient(ellipse at 75% 50%, #000 10%, transparent 70%);
}
.finance-glow { position: absolute; border-radius: 50%; filter: blur(90px); }
.finance-glow--1 { width: 560px; height: 560px; right: 5%; top: 10%; background: rgba(47, 98, 192, 0.45); }
.finance-glow--2 { width: 360px; height: 360px; left: -8%; bottom: -10%; background: rgba(233, 41, 38, 0.16); }

.finance-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(48px, 7vw, 100px);
}
.finance .section-title { color: #fff; margin-bottom: 26px; font-size: clamp(2rem, 1.3rem + 2.1vw, 3.1rem); }
.finance .lead { color: rgba(255, 255, 255, 0.86); margin-bottom: 16px; }

.finance .check-list { margin: 32px 0 40px; }
.finance .check-list li { color: rgba(255, 255, 255, 0.9); font-weight: 500; }
.finance .check-list .lucide { background: rgba(108, 149, 255, 0.16); color: #a9c1ff; }

.finance-note {
  display: flex;
  gap: 10px;
  max-width: 520px;
  margin-top: 28px;
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
}
.finance-note .lucide { width: 16px; height: 16px; margin-top: 2px; }

.finance-visual { position: relative; padding: 24px 12px; }
.doc-stack span {
  position: absolute;
  inset: 24px 12px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.doc-stack span:first-child { transform: rotate(-5deg) translate(-16px, 12px); }
.doc-stack span:last-child { transform: rotate(3deg) translate(14px, -6px); background: rgba(255, 255, 255, 0.09); }

.doc-card {
  position: relative;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: #fff;
  color: var(--text-body);
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.55);
}
.doc-card__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.doc-card__title { display: flex; align-items: center; gap: 12px; line-height: 1.3; min-width: 0; }
.doc-card__title strong { display: block; font-size: 1rem; color: var(--text-dark); letter-spacing: -0.01em; }
.doc-card__title span:not(.icon-badge) { font-size: 0.8rem; color: var(--text-muted); }

.doc-steps { display: grid; padding: 8px 0 4px; }
.doc-step {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px dashed var(--border);
  line-height: 1.35;
  opacity: 0.55;
  transition: opacity 0.5s var(--ease);
}
.doc-step:last-child { border-bottom: 0; }
.doc-step strong { display: block; font-size: 0.95rem; color: var(--text-dark); letter-spacing: -0.01em; }
.doc-step span:not(.doc-step__check) { font-size: 0.82rem; color: var(--text-muted); }
.doc-step__check {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px dashed var(--border-strong);
  color: #fff;
  transition: background-color 0.45s var(--ease), border-color 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.doc-step__check .lucide {
  width: 16px;
  height: 16px;
  stroke-width: 3;
  transform: scale(0);
  transition: transform 0.5s var(--ease-spring);
}
.doc-step.is-done { opacity: 1; }
.doc-step.is-done .doc-step__check { background: var(--primary); border: 1.5px solid var(--primary); box-shadow: 0 0 0 5px rgba(26, 66, 137, 0.1); }
.doc-step.is-done .doc-step__check .lucide { transform: scale(1); }
.doc-step.is-done:last-child .doc-step__check { background: var(--success); border-color: var(--success); box-shadow: 0 0 0 5px rgba(20, 154, 85, 0.12); }

.doc-card__progress { padding-top: 18px; border-top: 1px solid var(--border); }
.doc-card__progress-top { display: flex; justify-content: space-between; margin-bottom: 10px; font-size: 0.8rem; font-weight: 600; color: var(--text-muted); }
.doc-card__progress-top span:last-child { color: var(--text-dark); font-variant-numeric: tabular-nums; }

.doc-badge {
  position: absolute;
  left: -14px;
  bottom: -4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
}
.doc-badge .lucide { width: 16px; height: 16px; color: var(--primary); }

/* ---------- 14. Why Edu Assist ---------- */
.why-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(48px, 6vw, 88px);
  align-items: start;
}
.why-intro { position: sticky; top: calc(var(--header-h) + 48px); }

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.stat { display: flex; flex-direction: column-reverse; align-items: center; gap: 4px; text-align: center; }
.stat dd {
  font-size: clamp(2.4rem, 1.8rem + 1.6vw, 3.4rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--primary);
  font-variant-numeric: tabular-nums;
}
.stat:nth-child(2) dd { color: var(--secondary); }
.stat:nth-child(3) dd { color: #3a3f4b; }
.stat dt { font-size: 0.85rem; font-weight: 500; color: var(--text-muted); line-height: 1.35; }

.bento { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.bento-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease), border-color 0.45s;
}
.bento-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(26, 66, 137, 0.16); }
.bento-card .icon-badge { margin-bottom: 10px; }
.bento-card h3 { font-size: 1.18rem; }
.bento-card p { font-size: 0.94rem; line-height: 1.6; color: var(--text-muted); }

.bento-card--wide { grid-column: span 2; }
.bento-card--primary {
  color: rgba(255, 255, 255, 0.8);
  border: 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(108, 149, 255, 0.35), transparent 50%),
    linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding-right: 45%;
}
.bento-card--primary h3 { color: #fff; font-size: 1.5rem; }
.bento-card--primary p { color: rgba(255, 255, 255, 0.78); font-size: 1rem; }
.bento-card--primary:hover { box-shadow: var(--shadow-brand); }

.bento-visual {
  position: absolute;
  right: 28px;
  top: 50%;
  display: grid;
  gap: 10px;
  justify-items: end;
  transform: translateY(-50%);
}
.bento-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  transition: transform 0.5s var(--ease-out);
}
.bento-chip::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #9db8ff; }
.bento-chip:nth-child(2) { margin-right: 26px; }
.bento-chip:nth-child(2)::before { background: #ff7d7a; }
.bento-card--primary:hover .bento-chip:nth-child(1) { transform: translateX(-6px); }
.bento-card--primary:hover .bento-chip:nth-child(2) { transform: translateX(6px); }
.bento-card--primary:hover .bento-chip:nth-child(3) { transform: translateX(-4px); }

.bento-card--row { flex-direction: row; align-items: center; gap: 20px; }
.bento-card--row .icon-badge { margin-bottom: 0; }
.bento-card--row h3 { margin-bottom: 6px; }

.bento-card--accent { background: linear-gradient(160deg, #fff 0%, var(--secondary-soft) 140%); border-color: rgba(233, 41, 38, 0.14); }

/* ---------- 14b. Life abroad gallery ---------- */
.gallery { background: var(--background-alt); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(2, clamp(220px, 21vw, 290px));
  gap: 16px;
}
.gallery-tile {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(160deg, var(--primary-light), var(--primary-darker));
}
.gallery-tile--tall { grid-row: span 2; }
.gallery-tile--wide { grid-column: span 2; }
.gallery-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out);
}
.gallery-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 18, 44, 0.82) 0%, rgba(7, 18, 44, 0.2) 45%, rgba(7, 18, 44, 0) 70%);
  transition: opacity 0.5s var(--ease);
}
.gallery-tile figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 1;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em;
  transition: transform 0.5s var(--ease-out);
}
.gallery-tile figcaption span {
  display: block;
  margin-bottom: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}
.gallery-tile:hover img { transform: scale(1.06); }
.gallery-tile:hover figcaption { transform: translateY(-4px); }

/* ---------- 15. Partners ---------- */
.partners { padding-bottom: calc(var(--section-y) * 0.8); }
.partners .section-head { margin-bottom: 48px; }

.marquee {
  position: relative;
  overflow: hidden;
  padding-block: 8px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee__track { display: flex; width: max-content; animation: marquee var(--marquee-duration, 60s) linear infinite; }
.marquee--reverse .marquee__track { animation-direction: reverse; --marquee-duration: 55s; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__list { display: flex; gap: 16px; padding-right: 16px; }
.marquee + .partners-row-head { margin-top: 40px; }

.partners-row-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}
.partners-row-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--text-dark);
}
.partners-row-label .lucide { width: 18px; height: 18px; color: var(--primary); }
.partners-row-count { font-size: 0.85rem; color: var(--text-muted); }

.partner-card {
  display: grid;
  grid-template-rows: 1fr auto;
  justify-items: center;
  gap: 10px;
  width: 236px;
  height: 136px;
  padding: 18px 20px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  transition: border-color 0.4s, box-shadow 0.4s;
}
.partner-card:hover { border-color: rgba(26, 66, 137, 0.2); box-shadow: var(--shadow-sm); }
.partner-card__logo {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 0;
}
.partner-card__logo img { width: 100%; height: 56px; object-fit: contain; }
.partner-card__logo--tall img { height: 68px; }
.partner-card__name {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  min-height: 2.6em;
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-muted);
  text-align: center;
}

.partners-foot { margin-top: 36px; text-align: center; }

/* ---------- 16. Destination finder ---------- */
.finder {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #0b1633;
}
.finder-stage { position: absolute; inset: 0; z-index: -1; }
.finder-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(90deg, rgba(8, 18, 44, 0.9) 0%, rgba(8, 18, 44, 0.72) 38%, rgba(8, 18, 44, 0.3) 72%, rgba(8, 18, 44, 0.45) 100%),
    linear-gradient(180deg, rgba(8, 18, 44, 0.35), transparent 30%, transparent 70%, rgba(8, 18, 44, 0.5));
}
.finder-bg {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
  visibility: hidden;
}
.finder-bg img { width: 100%; height: 100%; max-width: none; object-fit: cover; }
.finder-bg.is-prev { z-index: 1; visibility: visible; }
.finder-bg.is-active { z-index: 2; visibility: visible; animation: finder-wipe 1.3s var(--ease-out) both; }
.finder-bg.is-active img,
.finder-bg.is-prev img { animation: finder-zoom 11s linear both; }
.finder.is-picked .finder-bg.is-active img { animation-duration: 16s; }

@keyframes finder-wipe {
  from { clip-path: inset(0 0 0 100%); }
  to { clip-path: inset(0 0 0 0); }
}
@keyframes finder-zoom {
  from { transform: scale(1.16) translateX(1.5%); }
  to { transform: scale(1.02) translateX(0); }
}

.finder .section-title { color: #fff; }
.finder .section-sub { color: rgba(255, 255, 255, 0.78); }

.finder-now {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  padding: 10px 18px 10px 10px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
}
.finder-now__pin {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--secondary);
  box-shadow: 0 0 0 6px rgba(233, 41, 38, 0.22);
}
.finder-now__pin .lucide { width: 18px; height: 18px; }
.finder-now__text { display: grid; line-height: 1.25; min-width: 170px; }
.finder-now__label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255, 255, 255, 0.65); }
.finder-now__place { font-weight: 700; }
.finder-now__place.is-swapping { animation: fade-up 0.5s var(--ease-out); }
.finder-now__dots { display: flex; gap: 5px; }
.finder-now__dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transition: width 0.4s var(--ease-out), background 0.4s;
}
.finder-now__dots span.is-on { width: 18px; border-radius: 3px; background: #fff; }
.finder.is-picked .finder-now__dots { display: none; }

.finder-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}

.finder-card {
  position: relative;
  padding: clamp(24px, 4vw, 44px);
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.finder-progress { position: absolute; inset: 0 0 auto; height: 4px; background: var(--surface-2); }
.finder-progress__bar {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--secondary));
  transform: scaleX(0.05);
  transform-origin: left;
  transition: transform 0.6s var(--ease-out);
}

.finder-step { transition: opacity 0.4s var(--ease); }
.finder-step + .finder-step { margin-top: 32px; padding-top: 32px; border-top: 1px solid var(--border); }
.finder-step.is-locked { opacity: 0.4; }
.finder-step legend + * { clear: both; }
.finder-step legend {
  float: left;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-dark);
}
.finder-step__num {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
}

.chip-group { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 20px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border-strong);
  background: var(--surface);
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--text-body);
  transition: all 0.25s var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.chip:hover:not(:disabled) { border-color: var(--primary); color: var(--primary); transform: translateY(-1px); }
.chip:disabled { cursor: not-allowed; }
.chip--muted { border-style: dashed; }
.chip[aria-pressed="true"] {
  background: var(--primary);
  border-color: var(--primary);
  border-style: solid;
  color: #fff;
  box-shadow: var(--shadow-brand);
}
.chip[aria-pressed="true"]:hover:not(:disabled) {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
}
.chip[aria-pressed="true"]::before {
  content: "";
  width: 12px;
  height: 7px;
  margin-top: -3px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}

.finder-result {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px 18px;
  margin-top: 32px;
  padding: 26px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 100% 0%, rgba(233, 41, 38, 0.06), transparent 50%),
    linear-gradient(160deg, var(--primary-soft), #f8faff);
  border: 1px solid rgba(26, 66, 137, 0.12);
  animation: fade-up 0.6s var(--ease-out);
}
.finder-result h3 { font-size: 1.35rem; margin-bottom: 6px; }
.finder-result p { font-size: 0.95rem; color: var(--text-body); }
.finder-result p strong { color: var(--text-dark); }
.finder-result__actions { grid-column: 1 / -1; display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-top: 4px; }

/* ---------- 17. Testimonials ---------- */
.testimonial-slider {
  position: relative;
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}
.testimonial-quote-mark {
  display: block;
  height: 80px;
  margin-bottom: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 9rem;
  line-height: 1;
  background: linear-gradient(180deg, var(--primary-light), rgba(47, 98, 192, 0.2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.testimonial-viewport { display: grid; touch-action: pan-y; }
.testimonial {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity 0.6s var(--ease), transform 0.7s var(--ease-out), visibility 0.6s;
}
.testimonial.is-active { opacity: 1; visibility: visible; transform: none; }
.testimonial blockquote p {
  font-size: clamp(1.3rem, 1rem + 1.1vw, 1.95rem);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  text-wrap: balance;
}
.testimonial figcaption {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 36px;
  text-align: left;
  line-height: 1.35;
}
.testimonial figcaption strong { display: block; color: var(--text-dark); }
.testimonial figcaption span > span { font-size: 0.88rem; color: var(--text-muted); }

.testimonial-controls { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 44px; }
.testimonial-dots { display: flex; gap: 8px; }
.testimonial-dots button {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-pill);
  background: var(--border-strong);
  transition: width 0.4s var(--ease-out), background-color 0.3s;
}
.testimonial-dots button[aria-selected="true"] { width: 28px; background: var(--primary); }

/* Reviews */
.reviews-head-aside { display: grid; gap: 16px; justify-self: end; max-width: 500px; }
.reviews-head-aside .section-sub { margin: 0; }

.reviews-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 20px;
  align-items: stretch;
}

.review-feature {
  position: relative;
  display: flex;
  padding: clamp(30px, 4vw, 52px);
  border-radius: var(--radius-xl);
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: linear-gradient(160deg, #0b2152, var(--primary));
  box-shadow: 0 30px 60px -30px rgba(15, 43, 99, 0.6);
}
.review-feature__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  mix-blend-mode: luminosity;
}
.review-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 100% 0%, rgba(233, 41, 38, 0.22), transparent 45%),
    linear-gradient(180deg, rgba(9, 28, 68, 0.45) 0%, rgba(9, 28, 68, 0.92) 70%);
}
.review-feature .testimonial-slider {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: none;
  margin: 0;
  text-align: left;
}
.review-feature .testimonial-quote-mark {
  height: 70px;
  margin: 0 0 4px -4px;
  background: linear-gradient(180deg, #fff, rgba(255, 255, 255, 0.25));
  -webkit-background-clip: text;
  background-clip: text;
}
.review-feature .testimonial blockquote p {
  color: #fff;
  font-size: clamp(1.25rem, 1rem + 0.75vw, 1.6rem);
  text-wrap: pretty;
}
.review-feature .testimonial figcaption { margin-top: 30px; }
.review-feature .testimonial figcaption strong { color: #fff; }
.review-feature .testimonial figcaption span > span { color: rgba(255, 255, 255, 0.7); }
.review-feature .testimonial-controls { justify-content: flex-start; margin-top: auto; padding-top: 40px; }
.review-feature .testimonial-dots button { background: rgba(255, 255, 255, 0.3); }
.review-feature .testimonial-dots button[aria-selected="true"] { background: #fff; }

.icon-btn--glass { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.25); color: #fff; }
.icon-btn--glass:hover { background: #fff; border-color: #fff; color: var(--primary); }

.review-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.review-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease), border-color 0.45s;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(26, 66, 137, 0.16); }
.review-card p { flex: 1; font-size: 0.98rem; line-height: 1.65; color: var(--text-body); }
.review-card footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  line-height: 1.35;
}
.review-card footer strong { display: block; font-size: 0.92rem; color: var(--text-dark); }
.review-card footer span > span { font-size: 0.8rem; color: var(--text-muted); }

.stars { display: flex; gap: 3px; color: #f5a524; }
.stars .lucide { width: 17px; height: 17px; fill: currentColor; stroke-width: 1.5; }

.avatar--red { background: linear-gradient(135deg, #ff6b67, var(--secondary-dark)); }
.avatar--dark { background: linear-gradient(135deg, #3a4d78, var(--text-dark)); }
img.avatar { object-fit: cover; background: var(--primary-soft); box-shadow: 0 0 0 2px #fff, 0 4px 12px -4px rgba(11, 22, 51, 0.25); }
.review-feature img.avatar { box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.35); }

/* ---------- 18. Final CTA ---------- */
.final-cta-wrap { padding-bottom: var(--section-y); }
.final-cta {
  position: relative;
  padding: clamp(64px, 9vw, 120px) clamp(24px, 6vw, 80px);
  border-radius: clamp(24px, 3vw, 40px);
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  background: linear-gradient(135deg, #0b2152 0%, var(--primary) 55%, #2656ad 100%);
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 40px 80px -40px rgba(15, 43, 99, 0.6);
}
.final-cta__bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.final-cta__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
}
.final-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 33, 82, 0.95) 0%, rgba(26, 66, 137, 0.84) 55%, rgba(38, 86, 173, 0.62) 100%);
}
.final-cta__ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.09);
  transform: translate(-50%, -50%);
  animation: ring-breathe 8s ease-in-out infinite;
}
.final-cta__ring--1 { width: 520px; height: 520px; }
.final-cta__ring--2 { width: 820px; height: 820px; animation-delay: -2.6s; }
.final-cta__ring--3 { width: 1120px; height: 1120px; animation-delay: -5.2s; border-style: dashed; }
.final-cta__glow {
  position: absolute;
  width: 520px;
  height: 520px;
  left: -140px;
  bottom: -260px;
  border-radius: 50%;
  background: rgba(233, 41, 38, 0.28);
  filter: blur(100px);
  animation: drift 14s ease-in-out infinite alternate;
}
.final-cta::after {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  right: -120px;
  top: -220px;
  z-index: -1;
  border-radius: 50%;
  background: rgba(108, 149, 255, 0.35);
  filter: blur(100px);
}
.final-cta__content { max-width: 760px; margin-inline: auto; }
.final-cta h2 {
  color: #fff;
  font-size: clamp(2.1rem, 1.3rem + 2.6vw, 3.6rem);
  letter-spacing: -0.04em;
  line-height: 1.06;
  text-wrap: balance;
}
.final-cta p { margin-top: 22px; font-size: 1.15rem; }
.final-cta__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 40px; }

/* ---------- 18b. FAQ ---------- */
.faq-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}
.faq-intro { position: sticky; top: 120px; }

.faq-help {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px 16px;
  margin-top: 36px;
  padding: 20px;
  border-radius: var(--radius-lg);
  background: var(--background-alt);
  border: 1px solid var(--border);
}
.faq-help strong { display: block; font-size: 1rem; color: var(--text-dark); }
.faq-help div > span { display: block; font-size: 0.9rem; color: var(--text-muted); }
.faq-help__actions { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 10px; }
.faq-help__actions .lucide { width: 16px; height: 16px; }

.faq-list { display: grid; gap: 12px; interpolate-size: allow-keywords; }
.faq-item {
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.faq-item:hover { border-color: var(--border-strong); }
.faq-item[open] { border-color: rgba(26, 66, 137, 0.28); box-shadow: var(--shadow-md); }

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--text-dark);
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; border-radius: var(--radius); }

.faq-item__icon {
  position: relative;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary-soft);
  transition: background 0.3s ease, transform 0.4s var(--ease-out);
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  margin: -1px 0 0 -6px;
  border-radius: 2px;
  background: var(--primary);
  transition: transform 0.4s var(--ease-out), background 0.3s ease;
}
.faq-item__icon::after { transform: rotate(90deg); }
.faq-item[open] .faq-item__icon { background: var(--primary); transform: rotate(180deg); }
.faq-item[open] .faq-item__icon::before,
.faq-item[open] .faq-item__icon::after { background: #fff; }
.faq-item[open] .faq-item__icon::after { transform: rotate(0deg); }

.faq-item::details-content {
  block-size: 0;
  overflow: hidden;
  transition: block-size 0.4s var(--ease-out), content-visibility 0.4s allow-discrete;
}
.faq-item[open]::details-content { block-size: auto; }
.faq-item__body { padding: 0 22px 22px; }
.faq-item__body p { max-width: 62ch; font-size: 0.97rem; line-height: 1.7; color: var(--text-body); }

/* ---------- 19. Contact ---------- */
.contact { background: var(--background-alt); }
.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}

.contact-list { display: grid; gap: 14px; margin-top: 40px; }
.contact-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  line-height: 1.4;
}
.contact-list .icon-badge { width: 46px; height: 46px; border-radius: 13px; }
.contact-list .icon-badge .lucide { width: 20px; height: 20px; }
.contact-list__label { display: block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-muted); }
.contact-list a,
.contact-list span:not(.icon-badge):not(.contact-list__label) { font-weight: 600; color: var(--text-dark); }
.contact-list a:hover { color: var(--primary); }

.form-card {
  padding: clamp(24px, 4vw, 44px);
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 18px; margin-bottom: 26px; }
.field { display: grid; gap: 8px; align-content: start; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 0.88rem; font-weight: 600; color: var(--text-dark); }
.optional { font-weight: 500; color: var(--text-muted); }

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-strong);
  background: var(--surface);
  font-size: 1rem;
  color: var(--text-dark);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), background-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.field textarea { resize: vertical; min-height: 120px; line-height: 1.55; }
.field input::placeholder,
.field textarea::placeholder { color: #9aa3b8; }
.field input:hover,
.field select:hover,
.field textarea:hover { border-color: #b9c3d6; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(26, 66, 137, 0.12);
}
.field select:invalid { color: #9aa3b8; }
.field select option { color: var(--text-dark); }

.select-wrap { position: relative; }
.select-wrap select { padding-right: 44px; cursor: pointer; }
.select-wrap::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 8px;
  height: 8px;
  margin-top: -6px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(45deg);
  pointer-events: none;
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea { border-color: var(--secondary); background: #fffafa; }
.field.has-error input:focus,
.field.has-error select:focus,
.field.has-error textarea:focus { box-shadow: 0 0 0 4px rgba(233, 41, 38, 0.12); }
.field-error { min-height: 0; font-size: 0.82rem; font-weight: 500; color: var(--secondary-dark); }
.field-error:empty { display: none; }

.form-privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.form-privacy .lucide { width: 14px; height: 14px; }

.form-success { padding: 40px 12px; text-align: center; animation: fade-up 0.6s var(--ease-out); outline: none; }
.form-success__icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--success-soft);
  color: var(--success);
  box-shadow: 0 0 0 10px rgba(20, 154, 85, 0.06);
}
.form-success__icon .lucide { width: 32px; height: 32px; stroke-width: 2.5; }
.form-success h3 { font-size: 1.5rem; margin-bottom: 10px; }
.form-success p { max-width: 400px; margin: 0 auto 28px; color: var(--text-muted); }
.form-success__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 14px; }
.form-success__actions .lucide { width: 18px; height: 18px; }

/* ---------- 20. Footer ---------- */
.site-footer { padding: clamp(64px, 8vw, 96px) 0 32px; background: var(--surface); border-top: 1px solid var(--border); }
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr 0.9fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer-brand .brand img { width: 110px; }
.footer-brand p { max-width: 360px; margin-top: 22px; font-size: 0.94rem; color: var(--text-muted); }

.socials { display: flex; gap: 10px; margin-top: 28px; }
.socials a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--text-body);
  transition: all 0.25s var(--ease);
}
.socials svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.socials a:hover { background: var(--primary); border-color: var(--primary); color: #fff; transform: translateY(-2px); }

.footer-col h3 { margin-bottom: 20px; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-dark); }
.footer-col ul { display: grid; gap: 12px; }
.footer-col a { font-size: 0.94rem; color: var(--text-muted); transition: color 0.2s; }
.footer-col a:hover { color: var(--primary); }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.94rem; color: var(--text-muted); }
.footer-contact .lucide { width: 16px; height: 16px; margin-top: 4px; color: var(--primary); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 24px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ---------- 21. Back to top ---------- */
.back-to-top {
  --scroll: 0;
  position: fixed;
  right: max(20px, env(safe-area-inset-right));
  bottom: max(20px, env(safe-area-inset-bottom));
  z-index: 80;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  color: var(--primary);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease-out), visibility 0.35s, background-color 0.25s, color 0.25s;
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.back-to-top:hover { background: var(--primary); color: #fff; }
.back-to-top .lucide { width: 20px; height: 20px; }
.back-to-top__ring { position: absolute; inset: 0; width: 100%; height: 100%; transform: rotate(-90deg); }
.back-to-top__ring circle {
  fill: none;
  stroke: var(--primary);
  stroke-width: 2;
  stroke-dasharray: 138.2;
  stroke-dashoffset: calc(138.2 - 138.2 * var(--scroll));
  stroke-linecap: round;
  opacity: 0.8;
}

/* ---------- 22. Scroll reveal ---------- */
.js [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity 0.8s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: calc(var(--rd, 0) * 90ms);
}
.js [data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal-delay="1"] { --rd: 1; }
[data-reveal-delay="2"] { --rd: 2; }
[data-reveal-delay="3"] { --rd: 3; }
[data-reveal-delay="4"] { --rd: 4; }

/* ---------- 23. Keyframes ---------- */
@keyframes ping { 0% { transform: scale(0.6); opacity: 0.9; } 80%, 100% { transform: scale(1.8); opacity: 0; } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes draw-route { to { stroke-dashoffset: 0; } }
@keyframes route-flow {
  0% { stroke-dashoffset: 0.16; opacity: 0; }
  10% { opacity: 1; }
  85% { opacity: 1; }
  100% { stroke-dashoffset: -1; opacity: 0; }
}
@keyframes hub-pulse { 0% { transform: scale(0.7); opacity: 0.8; } 100% { transform: scale(3.2); opacity: 0; } }
@keyframes node-breathe { 0%, 100% { transform: scale(0.8); opacity: 0.9; } 50% { transform: scale(1.3); opacity: 0.3; } }
@keyframes bob { 0%, 100% { translate: 0 0; } 50% { translate: 0 -10px; } }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes fade-up { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
@keyframes ring-breathe { 0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; } 50% { transform: translate(-50%, -50%) scale(1.06); opacity: 0.55; } }
@keyframes drift { from { transform: translate(0, 0); } to { transform: translate(140px, -60px); } }

/* ==========================================================================
   24. Responsive
   ========================================================================== */
@media (max-width: 1180px) {
  .primary-nav .nav-link { padding: 8px 10px; font-size: 0.88rem; }
  .float-card--route { right: 0; }
  .float-card--docs { left: 0; }
}

@media (max-width: 1080px) {
  .primary-nav { display: none; }
  .menu-toggle { display: block; }
  .header-cta { display: none; }

  .hero-inner { grid-template-columns: 1fr; min-height: 0; text-align: center; }
  .hero-copy { max-width: 720px; margin-inline: auto; }
  .hero-lead { margin-inline: auto; }
  .hero-actions,
  .hero-trust { justify-content: center; }
  .hero-visual { max-width: 580px; width: 100%; margin-inline: auto; }

  .trust-strip { flex-wrap: wrap; justify-content: center; gap: 14px 28px; }
  .trust-strip li { flex: 0 0 auto; }
  .trust-strip li + li::before { display: none; }

  .about-inner,
  .finance-inner,
  .finder-inner,
  .faq-inner,
  .contact-inner { grid-template-columns: 1fr; }
  .faq-intro { position: static; }
  .finder-stage::after {
    background: linear-gradient(180deg, rgba(8, 18, 44, 0.86) 0%, rgba(8, 18, 44, 0.66) 45%, rgba(8, 18, 44, 0.5) 100%);
  }
  .about-visual { max-width: 560px; width: 100%; margin-inline: auto; }
  .finance-visual { max-width: 560px; width: 100%; margin-inline: auto; }
  .visa-inner { grid-template-columns: 1fr; }
  .visa-media { max-width: 560px; width: 100%; margin-inline: auto; }
  .reviews-layout { grid-template-columns: 1fr; }

  .why-inner { grid-template-columns: 1fr; }
  .why-intro { position: static; }

  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* Destinations become a swipeable carousel */
@media (max-width: 1180px) {
  .dest-track {
    height: auto;
    margin-inline: calc(var(--gutter) * -1);
    padding: 4px var(--gutter) 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: var(--gutter);
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .dest-track::-webkit-scrollbar { display: none; }
  .dest-card,
  .dest-card.is-active {
    flex: 0 0 min(46%, 380px);
    height: 520px;
    scroll-snap-align: start;
    box-shadow: var(--shadow-md);
  }
  .dest-card__details,
  .dest-card.is-active .dest-card__details { grid-template-rows: 1fr; opacity: 1; }
  .dest-card__details-inner { width: auto; }
  .dest-card__name,
  .dest-card.is-active .dest-card__name { font-size: 1.75rem; }
  .dest-card__overlay,
  .dest-card.is-active .dest-card__overlay { background: linear-gradient(to top, rgba(9, 28, 68, 0.95) 0%, rgba(15, 43, 99, 0.4) 55%, rgba(15, 43, 99, 0) 100%); }
  .swipe-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-muted);
  }
  .swipe-hint .lucide { width: 16px; height: 16px; }
}

@media (max-width: 1023px) {
  .gallery-grid {
    display: flex;
    gap: 14px;
    margin-inline: calc(var(--gutter) * -1);
    padding: 4px var(--gutter) 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: var(--gutter);
    scrollbar-width: none;
  }
  .gallery-grid::-webkit-scrollbar { display: none; }
  .gallery-tile { flex: 0 0 min(46%, 360px); height: 420px; scroll-snap-align: start; }
}

/* Journey becomes vertical */
@media (max-width: 900px) {
  .section-head--split { grid-template-columns: 1fr; }
  .section-head--split .section-sub { justify-self: start; }
  .reviews-head-aside { justify-self: start; }

  .journey { grid-template-columns: 1fr; gap: 0; max-width: 560px; margin-inline: auto; }
  .journey__line { top: 28px; bottom: 28px; left: 27px; right: auto; width: 2px; height: auto; }
  .journey__fill {
    background: linear-gradient(180deg, var(--primary), var(--primary-light) 80%, var(--secondary));
    transform: scaleY(var(--progress));
    transform-origin: top;
  }
  .journey-step { display: grid; grid-template-columns: 56px 1fr; gap: 20px; text-align: left; padding-bottom: 36px; }
  .journey-step:last-child { padding-bottom: 0; }
  .journey-step__node { width: 56px; height: 56px; margin: 0; }
  .journey-step__body { padding-top: 4px; }
  .journey-step p { margin-inline: 0; max-width: none; }
}

@media (max-width: 720px) {
  :root { --header-h: 68px; }
  .site-header.is-scrolled { --header-h: 62px; }
  .brand img { width: 80px; }
  .is-scrolled .brand img { width: 74px; }

  .hero { padding-top: calc(var(--header-h) + 28px); }
  .hero-pill { margin-bottom: 22px; font-size: 0.8rem; }
  .hero-title { font-size: clamp(2.35rem, 1.2rem + 6vw, 3.2rem); }
  .hero-lead { margin-top: 20px; font-size: 1.02rem; }
  .hero-actions { flex-direction: column; margin-top: 30px; }
  .hero-actions .btn { width: 100%; }
  .hero-trust { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 12px; text-align: left; font-size: 0.82rem; }
  .hero-trust li { align-items: flex-start; }
  .hero-trust .lucide { margin-top: 3px; }

  /* Simplified globe */
  .globe-layer--float { display: none; }
  .globe-rings span:last-child { display: none; }
  .geo-node__label { font-size: 0.7rem; padding: 4px 8px; }
  .geo-node--label-bottom-sm .geo-node__btn { flex-direction: column; gap: 4px; transform: translate(-50%, -11px); }
  .geo-node--label-top-sm .geo-node__btn { flex-direction: column-reverse; gap: 4px; transform: translate(-50%, calc(-100% + 11px)); }
  .geo-card { width: 168px; padding: 13px 14px; }
  .geo-card__img { width: calc(100% + 28px); height: 76px; margin: -13px -14px 8px; }
  .photo-bubble { padding: 3px; }
  .photo-bubble--sm { display: none; }
  .photo-bubble--md { right: auto; left: 8%; bottom: 3%; }
  .photo-bubble__badge { min-width: 22px; border-width: 2px; }
  .geo-node--card-left-sm .geo-card { left: auto; right: -20px; transform-origin: bottom right; }
  .geo-card__title { font-size: 0.92rem; }
  .hub-label strong { font-size: 0.74rem; }
  .hub-label span { font-size: 0.62rem; }
  .hero-visual__hint { display: block; margin-top: 4px; font-size: 0.8rem; color: var(--text-muted); text-align: center; }

  .trust-strip {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 28px;
    margin-inline: calc(var(--gutter) * -1);
    padding-inline: var(--gutter);
    overflow-x: auto;
    scrollbar-width: none;
    border-left: 0;
    border-right: 0;
  }
  .trust-strip::-webkit-scrollbar { display: none; }
  .trust-strip li { font-size: 0.86rem; }

  .feature-list { grid-template-columns: 1fr; }
  .about-visual { aspect-ratio: auto; }
  .about-photo { position: relative; width: 100%; height: 320px; border-radius: var(--radius-lg); }
  .plan-card { position: relative; width: calc(100% - 32px); margin: -36px auto 0; padding: 20px; }
  .about-visual .orbit-card { display: none; }

  .visa-media { aspect-ratio: 1 / 1.1; }
  .visa-media__main { width: 80%; height: 82%; border-radius: var(--radius-lg); }
  .visa-media__secondary { width: 50%; border-width: 4px; }
  .visa-media__badge { left: 0; bottom: 4%; padding: 10px 14px 10px 10px; }
  .visa-media__badge strong { font-size: 0.82rem; }
  .visa-actions { flex-direction: column; }
  .visa-actions .btn { width: 100%; }

  .gallery-tile { flex-basis: 80%; height: 380px; }

  .review-feature { padding: 28px 24px; border-radius: var(--radius-lg); }
  .review-feature .testimonial blockquote p { font-size: 1.18rem; }
  .review-grid {
    display: flex;
    gap: 14px;
    margin-inline: calc(var(--gutter) * -1);
    padding: 4px var(--gutter) 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: var(--gutter);
    scrollbar-width: none;
  }
  .review-grid::-webkit-scrollbar { display: none; }
  .review-card { flex: 0 0 84%; padding: 24px; scroll-snap-align: start; }

  .dest-card,
  .dest-card.is-active { flex-basis: 82%; height: 460px; }

  .service-grid { grid-template-columns: 1fr; gap: 14px; }
  .service-card { min-height: 0; padding: 26px; }
  .service-card .icon-badge { margin-bottom: 6px; }

  .doc-card { padding: 22px; }
  .doc-card__head { flex-wrap: wrap; }
  .doc-badge { left: 50%; bottom: -12px; transform: translateX(-50%); white-space: nowrap; }

  .stats { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .stat dt { font-size: 0.78rem; }

  .faq-item summary { padding: 18px; font-size: 0.97rem; }
  .faq-item__body { padding: 0 18px 20px; }
  .faq-help { margin-top: 28px; }

  .bento { grid-template-columns: 1fr; gap: 14px; }
  .bento-card--wide { grid-column: auto; }
  .bento-card--row { flex-direction: column; align-items: flex-start; gap: 12px; }
  .bento-card--row .icon-badge { margin-bottom: 10px; }
  .bento-card--primary { padding-right: 30px; }
  .bento-visual { position: static; transform: none; display: flex; flex-wrap: wrap; justify-items: start; margin-top: 12px; }
  .bento-chip:nth-child(2) { margin-right: 0; }

  .partner-card { width: 196px; height: 122px; padding: 14px 16px 12px; gap: 8px; }
  .partner-card__logo img { height: 48px; }
  .partner-card__logo--tall img { height: 60px; }
  .partners-row-head { margin-bottom: 12px; }
  .marquee + .partners-row-head { margin-top: 28px; }

  .chip { min-height: 48px; padding: 0 18px; font-size: 0.9rem; }
  .finder-step legend { font-size: 1.05rem; }
  .finder-result { grid-template-columns: 1fr; padding: 22px; }
  .finder-result__actions .btn--primary { width: 100%; }
  .finder-result__actions .btn--ghost { width: 100%; }

  .testimonial-quote-mark { font-size: 7rem; height: 64px; }

  .final-cta__actions { flex-direction: column; }
  .final-cta__actions .btn { width: 100%; }
  .final-cta__ring--1 { width: 340px; height: 340px; }
  .final-cta__ring--2 { width: 560px; height: 560px; }

  .form-grid { grid-template-columns: 1fr; gap: 16px; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .footer-bottom { flex-direction: column; }

  .back-to-top { width: 46px; height: 46px; }
}

@media (max-width: 420px) {
  .hero-trust { grid-template-columns: 1fr; justify-items: start; max-width: 300px; margin-inline: auto; }
  .geo-node__label { font-size: 0.64rem; }
  .footer-top { grid-template-columns: 1fr; }
}

/* ---------- 25. Hover-capable devices only ---------- */
@media (hover: none) {
  .service-card:hover,
  .bento-card:hover,
  .review-card:hover { transform: none; }
}

/* ---------- 26. Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    animation-delay: 0s !important;
    transition-duration: 0.001ms !important;
    transition-delay: 0s !important;
  }
  .js [data-reveal] { opacity: 1; transform: none; }
  .route { stroke-dashoffset: 0; }
  .route-flow,
  .hub-pulse,
  .geo-node__dot::after { display: none; }
  .globe-layer { transform: none !important; }
  .marquee { -webkit-mask-image: none; mask-image: none; }
  .marquee__track { width: auto; justify-content: center; }
  .marquee__list { flex-wrap: wrap; justify-content: center; padding: 0 var(--gutter); }
  .marquee__list[aria-hidden="true"] { display: none; }
}
