:root {
  --v2-navy: #04102a;
  --v2-navy-2: #0a2050;
  --v2-ink: #060e24;
  --v2-blue: #1f74e0;
  --v2-cobalt: #4c9bff;
  --v2-gold: #f6ac0a;
  --v2-gold-soft: #ffd86a;
  --v2-gold-text: #f6ac0a;
  --v2-paper: #f7f4ec;
  --v2-line: rgba(255, 255, 255, .12);
  --v2-line-soft: rgba(255, 255, 255, .07);
  --v2-glass: rgba(255, 255, 255, .045);
  --v2-glass-2: rgba(255, 255, 255, .075);
  --v2-muted: rgba(226, 232, 245, .62);
  --v2-radius: 26px;
  --v2-ease: cubic-bezier(.16, 1, .3, 1);
}

/* ================= base — dark editorial canvas ================= */

.landing-page-v2 {
  position: relative;
  overflow-x: clip;
  color: #eef2fa;
  background: var(--v2-navy);
  background-image:
    radial-gradient(1200px 700px at 12% -10%, rgba(31, 116, 224, .16), transparent 60%),
    radial-gradient(900px 600px at 100% 20%, rgba(246, 172, 10, .1), transparent 55%);
  font-family: "Manrope", sans-serif;
}

.landing-page-v2::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background-image: radial-gradient(rgba(255, 255, 255, .12) 1px, transparent 1px);
  background-position: 0 0;
  background-size: 26px 26px;
  mask-image: linear-gradient(180deg, #000, #000 92%, transparent);
  opacity: .5;
}

/* Only lift the content wrapper and footer above the dot-grid pseudo-element.
   Deliberately NOT a blanket ".landing-page-v2 > *" rule — that would force
   position:relative onto every direct child of body, including the skip-link
   (position:absolute, hidden off-screen until focused) and the floating
   WhatsApp button (position:fixed) from base.html, breaking both. */
.landing-page-v2 > main,
.landing-page-v2 > .site-footer {
  position: relative;
  z-index: 1;
}

.landing-page-v2 .container {
  width: min(1280px, calc(100% - 48px));
}

.landing-page-v2 h1,
.landing-page-v2 h2,
.landing-page-v2 h3 {
  font-family: "Playfair Display", Georgia, serif;
  text-wrap: balance;
}

.landing-page-v2 a,
.landing-page-v2 button {
  touch-action: manipulation;
}

.landing-page-v2 :focus-visible {
  outline: 3px solid var(--v2-cobalt);
  outline-offset: 3px;
}

#assessment,
#countries,
#eligibility,
#process,
#faqs {
  scroll-margin-top: 96px;
}

.v2-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: var(--v2-gold-text);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.v2-eyebrow::before {
  width: 22px;
  height: 1px;
  content: "";
  background: var(--v2-gold);
}

/* ================= custom cursor ================= */

.v2-cursor {
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  display: none;
  pointer-events: none;
}

html.v2-cursor-on .v2-cursor { display: block; }

html.v2-cursor-on body.landing-page-v2,
html.v2-cursor-on body.landing-page-v2 a,
html.v2-cursor-on body.landing-page-v2 button,
html.v2-cursor-on body.landing-page-v2 label,
html.v2-cursor-on body.landing-page-v2 summary {
  cursor: none;
}

.v2-cursor__dot,
.v2-cursor__ring {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.v2-cursor__dot {
  width: 7px;
  height: 7px;
  background: var(--v2-gold);
}

.v2-cursor__ring {
  width: 32px;
  height: 32px;
  border: 1.5px solid rgba(246, 172, 10, .55);
  transition: width .25s var(--v2-ease), height .25s var(--v2-ease), border-color .25s, background .25s;
}

.v2-cursor.is-active .v2-cursor__ring {
  width: 56px;
  height: 56px;
  background: rgba(246, 172, 10, .1);
  border-color: rgba(246, 172, 10, .85);
}

/* ================= announcement + header ================= */

.v2-announcement {
  position: relative;
  z-index: 110;
  border-bottom: 1px solid var(--v2-line-soft);
  background: #020a1c;
  color: rgba(255, 255, 255, .7);
  font-size: .76rem;
}

.v2-announcement .container {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.v2-announcement strong { color: var(--v2-gold-soft); }

.v2-header {
  position: sticky;
  z-index: 105;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(4, 16, 42, .5);
  backdrop-filter: blur(18px) saturate(160%);
  transition: background .3s, border-color .3s;
}

.v2-header.is-scrolled {
  border-color: var(--v2-line-soft);
  background: rgba(4, 16, 42, .86);
}

.v2-header__inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.v2-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.v2-brand img { width: 46px; height: 46px; object-fit: contain; }

.v2-brand span { display: flex; flex-direction: column; line-height: 1; }

.v2-brand strong { color: #fff; font-size: 1.12rem; font-weight: 800; letter-spacing: .04em; }

.v2-brand small { margin-top: 6px; color: var(--v2-gold-text); font-size: .58rem; font-weight: 800; letter-spacing: .2em; }

.v2-header nav { display: flex; gap: 26px; color: rgba(255, 255, 255, .68); font-size: .85rem; font-weight: 700; }

.v2-header nav a { position: relative; padding-bottom: 3px; }

.v2-header nav a::after {
  position: absolute; right: 0; bottom: 0; left: 0; height: 2px; content: "";
  background: var(--v2-gold); transform: scaleX(0); transform-origin: right; transition: transform .3s var(--v2-ease);
}

.v2-header nav a:hover { color: #fff; }
.v2-header nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.v2-header__cta,
.v2-button,
.v2-submit {
  display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: 10px;
  border: 0; border-radius: 999px; padding: 12px 22px; font: 800 .85rem/1.2 "Manrope", sans-serif;
  will-change: transform; transition: box-shadow .3s, background .3s, filter .3s;
}

.v2-header__cta { background: var(--v2-gold); color: var(--v2-navy); }
.v2-header__cta:hover,
.v2-button:hover,
.v2-submit:hover { filter: brightness(1.06); box-shadow: 0 14px 32px rgba(246, 172, 10, .22); }

/* ================= hero ================= */

.v2-hero { position: relative; overflow: hidden; padding-top: 46px; }

.v2-hero__aurora { position: absolute; inset: -10%; z-index: 0; filter: blur(64px) saturate(130%); opacity: .75; }

.v2-blob { position: absolute; border-radius: 50%; }
.v2-blob--a { width: 640px; height: 640px; top: -220px; left: -160px; background: radial-gradient(circle, rgba(31, 116, 224, .55), transparent 70%); }
.v2-blob--b { width: 520px; height: 520px; top: 10%; right: -180px; background: radial-gradient(circle, rgba(246, 172, 10, .35), transparent 70%); }
.v2-blob--c { width: 460px; height: 460px; bottom: -220px; left: 32%; background: radial-gradient(circle, rgba(23, 102, 206, .38), transparent 70%); }

.v2-hero__grain {
  position: absolute; inset: 0; z-index: 1; opacity: .05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.v2-hero__inner { position: relative; z-index: 2; }

.v2-hero__top {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 40px;
  align-items: start;
  padding-bottom: 46px;
}

.v2-hero__side {
  padding-top: 12px;
}

.v2-hero__title {
  color: #fff;
  font-size: clamp(3.4rem, 7.4vw, 8rem);
  line-height: .92;
  letter-spacing: -.055em;
  text-transform: uppercase;
}

.v2-hero__title em {
  display: block;
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 1.5px var(--v2-gold-soft);
}

.v2-hero__title .v2-word { display: inline-block; will-change: transform; }

.v2-hero__side { display: grid; gap: 20px; padding-bottom: 8px; }

.v2-hero__lead {
  border-left: 2px solid var(--v2-gold);
  padding-left: 20px;
  color: rgba(255, 255, 255, .78);
  font-size: 1.02rem;
  line-height: 1.7;
}

.v2-hero__points { display: grid; gap: 10px; font-size: .82rem; font-weight: 700; }

.v2-hero__points span { display: flex; align-items: center; gap: 9px; color: rgba(255, 255, 255, .8); }

.v2-hero__points i {
  display: inline-grid; width: 20px; height: 20px; place-items: center; border-radius: 50%;
  background: rgba(246, 172, 10, .17); color: var(--v2-gold-soft); font-size: .62rem; flex: none;
}

/* --- signature marquee ticker --- */

.v2-marquee {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-top: 1px solid var(--v2-line-soft);
  border-bottom: 1px solid var(--v2-line-soft);
  background: rgba(255, 255, 255, .03);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.v2-marquee__track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.v2-marquee__group {
  display: flex;
  flex-shrink: 0;
}

.v2-marquee__group span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 30px;
  white-space: nowrap;
  color: rgba(255, 255, 255, .55);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.v2-marquee__group span strong { color: #fff; font-weight: 800; }
.v2-marquee__group span::after { margin-left: 30px; color: var(--v2-gold); content: "\2726"; }

/* ================= bento assessment strip below hero ================= */

.v2-hero__bottom {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr) 1.1fr;
  gap: 1px;
  margin-top: 1px;
  background: var(--v2-line-soft);
}

.v2-stat-tile {
  padding: 30px 26px;
  background: #061434;
}

.v2-stat-tile strong {
  display: block;
  color: #fff;
  font-size: 2.2rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: -.03em;
}

.v2-stat-tile span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, .5);
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.v2-hero__cta-tile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 30px 26px;
  background: linear-gradient(120deg, var(--v2-gold), #ffcf58);
  color: var(--v2-navy);
}

.v2-hero__cta-tile strong { font-size: 1.02rem; font-weight: 800; }
.v2-hero__cta-tile i { font-size: 1.1rem; }

/* ================= assessment card (redesigned: side icon rail) ================= */

.v2-assessment-wrap { padding: 84px 0 100px; }

.v2-assessment {
  position: relative;
  display: grid;
  grid-template-columns: 84px 1fr;
  max-width: 900px;
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid var(--v2-line);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
  box-shadow: 0 50px 120px rgba(0, 0, 0, .35);
}

.v2-assessment__rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 30px 0;
  border-right: 1px solid var(--v2-line);
  background: rgba(0, 0, 0, .18);
  align-self: stretch;
}

.v2-assessment__rail li {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--v2-line);
  border-radius: 50%;
  color: rgba(255, 255, 255, .38);
  font-size: .8rem;
  transition: background .3s, color .3s, border-color .3s, transform .3s;
}

.v2-assessment__rail li.is-active {
  border-color: var(--v2-gold);
  background: var(--v2-gold);
  color: var(--v2-navy);
  transform: scale(1.08);
}

.v2-assessment__rail li.is-done { border-color: var(--v2-gold-soft); color: var(--v2-gold-soft); }

.v2-assessment__main { padding: 34px 36px 30px; }

.v2-assessment__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }

.v2-assessment__top span {
  color: var(--v2-gold-text); font-size: .66rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
}

.v2-assessment__top h2 { margin: 6px 0 0; color: #fff; font-size: 1.6rem; letter-spacing: -.03em; }

.v2-assessment__top > strong {
  flex: none; border-radius: 999px; padding: 7px 11px; border: 1px solid var(--v2-line);
  color: rgba(255, 255, 255, .7); font-size: .68rem; font-variant-numeric: tabular-nums;
}

.v2-progress { position: relative; height: 4px; margin: 20px 0 26px; overflow: hidden; border-radius: 999px; background: rgba(255, 255, 255, .1); }
.v2-progress span { display: block; width: 16.666%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--v2-gold), #ffc945); transition: width .4s var(--v2-ease); }
.v2-progress-dots { display: none; }

.v2-form-alert {
  display: flex; gap: 10px; margin: 0 0 18px; border-left: 3px solid #ff6b5e; border-radius: 9px;
  padding: 12px 14px; background: rgba(255, 107, 94, .1); color: #ffb3ab; font-size: .76rem; line-height: 1.5;
}

.v2-form-alert ul { margin: 6px 0 0; padding-left: 17px; }

.v2-step { min-width: 0; border: 0; margin: 0; padding: 0; }
.v2-form.is-enhanced { min-height: 380px; overflow: hidden; }
.v2-form.is-enhanced .v2-step { display: none; margin: 0; }
.v2-form.is-enhanced .v2-step.is-active { display: block; }

.v2-step legend {
  width: 100%; margin-bottom: 20px; color: #fff; font: 800 1.32rem/1.28 "Manrope", sans-serif; letter-spacing: -.02em;
}

.v2-step legend small {
  display: block; margin-bottom: 7px; color: rgba(255, 255, 255, .42); font-size: .65rem; font-weight: 700;
  letter-spacing: .13em; text-transform: uppercase;
}

.v2-options > div { display: grid; gap: 9px; }
.v2-options > div > div { position: relative; }

.v2-options label {
  display: flex; min-height: 52px; align-items: center; border: 1px solid var(--v2-line); border-radius: 13px;
  padding: 12px 15px; background: rgba(255, 255, 255, .03); color: rgba(255, 255, 255, .82); cursor: pointer;
  font-size: .85rem; font-weight: 700; transition: border-color .2s, background .2s, transform .2s, box-shadow .2s;
}

.v2-options label:hover { transform: translateX(4px); border-color: rgba(246, 172, 10, .5); background: rgba(255, 255, 255, .06); }
.v2-options input { width: 17px; height: 17px; margin: 0 11px 0 0; accent-color: var(--v2-gold); }
.v2-options label:has(input:checked) { border-color: var(--v2-gold); background: rgba(246, 172, 10, .12); color: #fff; box-shadow: 0 0 0 3px rgba(246, 172, 10, .12); }

.v2-select-wrap { position: relative; }
.v2-select-wrap select,
.v2-floating input {
  width: 100%; height: 54px; border: 1px solid var(--v2-line); border-radius: 13px; padding: 0 16px;
  background: rgba(255, 255, 255, .04); color: #fff; font: 600 .86rem/1.2 "Manrope", sans-serif; outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.v2-select-wrap select option { color: #111; }
.v2-select-wrap select { appearance: none; padding-right: 44px; }
.v2-select-wrap i { position: absolute; top: 50%; right: 17px; transform: translateY(-50%); color: var(--v2-gold-soft); pointer-events: none; }
.v2-select-wrap select:focus, .v2-floating input:focus { border-color: var(--v2-gold); box-shadow: 0 0 0 4px rgba(246, 172, 10, .12); }
.v2-floating input::placeholder { color: rgba(255, 255, 255, .35); }

.v2-contact-fields { display: grid; gap: 13px; }
.v2-floating > span { display: block; margin-bottom: 6px; color: rgba(255, 255, 255, .7); font-size: .7rem; font-weight: 800; }

.v2-turnstile { min-height: 65px; margin-top: 14px; overflow: hidden; }

.v2-consent { display: flex; align-items: flex-start; gap: 9px; margin-top: 14px; color: rgba(255, 255, 255, .55); font-size: .71rem; line-height: 1.45; }
.v2-consent input { width: 16px; height: 16px; flex: none; margin-top: 2px; accent-color: var(--v2-gold); }

.v2-form__actions { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin-top: 18px; }
.v2-back { border: 0; padding: 9px 0; background: transparent; color: rgba(255, 255, 255, .5); cursor: pointer; font: 700 .78rem/1 "Manrope", sans-serif; }
.v2-back i { margin-right: 5px; }

.v2-submit { min-height: 52px; background: var(--v2-gold); color: var(--v2-navy); box-shadow: 0 14px 30px rgba(246, 172, 10, .22); cursor: pointer; }
.v2-submit:disabled { opacity: .7; cursor: progress; }

.v2-field-error { display: flex; align-items: center; gap: 6px; margin-top: 8px; color: #ff9d8f; font-size: .71rem; }
.v2-privacy { margin: 12px 0 0; color: rgba(255, 255, 255, .4); font-size: .64rem; text-align: right; }
.v2-privacy i { margin-right: 4px; }

/* ================= trust chips ================= */

.v2-trust-strip { padding: 6px 0 90px; }
.v2-trust-strip .container { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }

.v2-trust-strip span {
  display: inline-flex; align-items: center; gap: 10px; border: 1px solid var(--v2-line); border-radius: 999px;
  padding: 12px 20px; color: rgba(255, 255, 255, .72); font-size: .78rem; font-weight: 700;
  background: var(--v2-glass); transition: transform .3s var(--v2-ease), border-color .3s;
}

.v2-trust-strip span:hover { transform: translateY(-3px); border-color: rgba(246, 172, 10, .5); }
.v2-trust-strip i { color: var(--v2-gold-text); }

/* ================= sections shared ================= */

.v2-section { padding: 76px 0; }
.v2-section + .v2-section { padding-top: 0; }
.v2-section--paper { background: var(--v2-paper); color: var(--v2-ink); }
.v2-section--paper .v2-muted-text { color: #5b5642; }

.v2-heading { max-width: 760px; margin-bottom: 34px; }
.v2-heading h2 { font-size: clamp(2.2rem, 3.6vw, 3.6rem); letter-spacing: -.045em; }
.v2-section--paper .v2-heading h2 { color: var(--v2-ink); }
.v2-heading p { color: var(--v2-muted); }
.v2-section--paper .v2-heading p { color: #6a6550; }

/* animated gold shimmer sweep on section headlines (not the hero h1 — its word-split
   entrance animation wraps each word in its own span, which breaks background-clip:text
   since the gradient has no direct text left to clip against at the parent level) */

.landing-page-v2 h2 {
  background: linear-gradient(100deg, #fff 38%, var(--v2-gold-soft) 50%, #fff 62%);
  background-size: 220% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #fff;
  animation: v2-shine 7s linear infinite;
}

@keyframes v2-shine {
  to { background-position: -220% 0; }
}

@media (prefers-reduced-motion: reduce) {
  .landing-page-v2 h2 {
    animation: none;
    background: none;
    -webkit-text-fill-color: initial;
    color: #fff;
  }
}

/* --- big pull-quote intro --- */

.v2-quote-block { text-align: center; }
.v2-quote-block .v2-quote-mark { display: block; margin: 0 auto 6px; color: var(--v2-gold); font-family: "Playfair Display", serif; font-size: 4.5rem; line-height: 1; }
.v2-quote-block h2 {
  max-width: 980px; margin: 0 auto; color: #fff; font-size: clamp(2.1rem, 4.4vw, 4rem); font-style: italic;
  font-weight: 600; letter-spacing: -.03em; line-height: 1.2;
}
.v2-quote-block .v2-quote-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; max-width: 980px; margin: 40px auto 0; text-align: left; }
.v2-quote-block p { color: var(--v2-muted); font-size: .95rem; line-height: 1.75; }
.v2-quote-block p.v2-lead { color: #fff; font-weight: 700; }
.v2-support .v2-lead,
.landing-page-v2 p.v2-lead { color: #fff; font-weight: 700; font-size: 1rem; line-height: 1.7; }

/* ================= bento grid (benefits) ================= */

/* Uniform 3-column grid, one row height per row (driven by content, not a guessed
   fixed pixel value) — deliberately NOT a dense-packed "one wide featured tile"
   layout: that pattern kept producing either clipped text (row too short) or large
   dead space (row too tall), and orphaned single tiles in a row of their own. */
.v2-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.v2-bento__tile {
  --mx: 50%; --my: 50%; --rx: 0deg; --ry: 0deg;
  position: relative;
  overflow: hidden;
  /* fixed (not min-) height so every tile matches exactly, in every row —
     grid rows otherwise size independently to their own tallest tile, which
     made row 1 (longer copy) visibly taller than row 2 (shorter copy) */
  height: 220px;
  border: 1px solid var(--v2-line);
  border-radius: 22px;
  padding: 28px;
  background: var(--v2-glass);
  transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry));
  transition: transform .35s var(--v2-ease), border-color .3s, background .3s;
  will-change: transform;
}

.v2-bento__tile::before {
  position: absolute; inset: 0; z-index: 0; opacity: 0; content: "";
  background: radial-gradient(220px circle at var(--mx) var(--my), rgba(246, 172, 10, .16), transparent 70%);
  transition: opacity .3s;
}

.v2-bento__tile:hover { border-color: rgba(246, 172, 10, .55); background: rgba(255, 255, 255, .065); }
.v2-bento__tile:hover::before { opacity: 1; }
.v2-bento__tile > * { position: relative; z-index: 1; }

.v2-bento__tile .v2-bento__num {
  position: absolute; top: 22px; right: 24px; z-index: 0;
  color: rgba(255, 255, 255, .18); font-size: 2.1rem; font-weight: 800; line-height: 1;
}

.v2-bento__tile i {
  display: grid; width: 46px; height: 46px; margin-bottom: 18px; place-items: center; border-radius: 14px;
  background: rgba(246, 172, 10, .14); color: var(--v2-gold-text); font-size: 1.1rem;
}

.v2-bento__tile h3 { margin-bottom: 8px; color: #fff; font-size: 1.1rem; }
.v2-bento__tile p { color: var(--v2-muted); font-size: .85rem; line-height: 1.6; }

/* ================= carousel (countries + process share this) ================= */

.v2-carousel { position: relative; }

.v2-carousel__track {
  display: flex;
  gap: 18px;
  padding-bottom: 6px;
  overflow-x: auto;
  scrollbar-width: none;
  cursor: grab;
}

.v2-carousel__track:active { cursor: grabbing; }
.v2-carousel__track::-webkit-scrollbar { display: none; }

.v2-carousel__nav { display: flex; justify-content: flex-end; gap: 10px; margin-bottom: 22px; }

.v2-carousel__btn {
  display: grid; width: 44px; height: 44px; place-items: center; border: 1px solid var(--v2-line); border-radius: 50%;
  background: var(--v2-glass); color: #fff; cursor: pointer; transition: background .2s, border-color .2s, transform .2s;
}

.v2-carousel__btn:hover { border-color: var(--v2-gold); transform: translateY(-2px); }
.v2-carousel__btn:disabled { opacity: .3; cursor: default; transform: none; }

/* country cards inside carousel */

.v2-country-card {
  position: relative;
  flex: 0 0 auto;
  width: min(23vw, 300px, 78vw);
  min-width: 240px;
  height: 400px;
  overflow: hidden;
  border-radius: 22px;
  scroll-snap-align: start;
  background: var(--v2-navy-2);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .35);
  transition: transform .4s var(--v2-ease);
}

.v2-country-card:hover { transform: translateY(-8px); }
.v2-country-card::after { position: absolute; inset: 35% 0 0; content: ""; background: linear-gradient(transparent, rgba(2, 10, 26, .97)); }
.v2-country-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--v2-ease); pointer-events: none; }
.v2-country-card:hover img { transform: scale(1.08); }

.v2-country-card__flag {
  position: absolute; z-index: 2; top: 18px; right: 18px; display: grid; width: 44px; height: 44px; place-items: center;
  border: 2px solid rgba(255, 255, 255, .6); border-radius: 50%; background: rgba(255, 255, 255, .92);
  color: var(--v2-navy-2); font-size: .82rem; font-weight: 800; letter-spacing: .03em;
}

.v2-country-card > div { position: absolute; z-index: 2; right: 22px; bottom: 22px; left: 22px; color: #fff; pointer-events: none; }
.v2-country-card small { color: var(--v2-gold-soft); font-size: .62rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.v2-country-card h3 { margin: 5px 0 16px; color: #fff; font-size: 1.7rem; }
.v2-country-card > div > span {
  display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255, 255, 255, .18);
  padding-top: 13px; color: rgba(255, 255, 255, .65); font-size: .7rem; font-weight: 700; pointer-events: auto;
}

/* process rail cards inside same carousel component */

.v2-process-card {
  position: relative;
  flex: 0 0 auto;
  width: min(260px, 72vw);
  scroll-snap-align: start;
  border: 1px solid var(--v2-line);
  border-radius: 22px;
  padding: 28px;
  background: var(--v2-glass);
}

.v2-process-card span { display: block; margin-bottom: 20px; color: var(--v2-gold-text); font-size: .72rem; font-weight: 800; letter-spacing: .1em; }
.v2-process-card i {
  display: grid; width: 50px; height: 50px; margin-bottom: 18px; place-items: center; border-radius: 14px;
  background: rgba(246, 172, 10, .14); color: var(--v2-gold-text); font-size: 1.15rem;
}
.v2-process-card h3 { margin-bottom: 8px; color: #fff; font-size: 1.05rem; }
.v2-process-card p { color: var(--v2-muted); font-size: .8rem; line-height: 1.6; }

.v2-center { margin-top: 30px; text-align: center; }
.v2-text-link { display: inline-flex; align-items: center; gap: 10px; color: #fff; font-size: .86rem; font-weight: 800; }
.v2-text-link i { color: var(--v2-gold-text); transition: transform .2s; }
.v2-text-link:hover i { transform: translateX(4px); }

/* ================= compliance — diagonal cut banner ================= */

.v2-compliance {
  position: relative;
  overflow: hidden;
  margin: 0 24px;
  border-radius: 30px;
  padding: 70px 56px;
  background: linear-gradient(120deg, #0a3f88, #062a68 55%, #04102a);
  clip-path: polygon(0 3%, 100% 0, 100% 97%, 0 100%);
}

.v2-compliance__orb { position: absolute; width: 400px; height: 400px; right: -220px; bottom: -260px; border: 60px solid rgba(246, 172, 10, .2); border-radius: 50%; }

.v2-compliance__inner { position: relative; z-index: 1; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 38px; }

.v2-compliance__icon {
  display: grid; width: 84px; height: 84px; place-items: center; border: 1px solid var(--v2-line); border-radius: 24px;
  background: rgba(255, 255, 255, .07); color: var(--v2-gold-soft); font-size: 2rem;
}

.v2-compliance h2 { max-width: 700px; color: #fff; font-size: clamp(1.8rem, 3vw, 2.9rem); letter-spacing: -.04em; }
.v2-compliance p { max-width: 780px; margin-bottom: 0; color: rgba(255, 255, 255, .62); font-size: .88rem; }

.v2-button--gold { background: var(--v2-gold); color: var(--v2-navy); box-shadow: 0 15px 35px rgba(246, 172, 10, .2); }
.v2-button--outline { border: 1px solid rgba(255, 255, 255, .35); background: transparent; color: #fff; }

/* ================= eligibility rail ================= */

.v2-eligibility-rail { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 10px; }

.v2-eligibility-rail::before { display: none; }

.v2-rail-card {
  position: relative;
  border: 1px solid var(--v2-line);
  border-radius: 20px;
  padding: 26px 22px;
  background: var(--v2-glass);
}

.v2-rail-card::after {
  position: absolute; top: 32px; right: -24px; width: 16px; height: 1px; content: "";
  background: repeating-linear-gradient(90deg, var(--v2-gold-soft) 0 6px, transparent 6px 10px);
}

.v2-rail-card:last-child::after { display: none; }

.v2-rail-card span {
  display: grid; width: 40px; height: 40px; margin-bottom: 18px; place-items: center; border-radius: 12px;
  background: var(--v2-gold); color: var(--v2-navy); font-size: .74rem; font-weight: 800;
}

.v2-rail-card strong { display: block; margin-bottom: 6px; color: #fff; font-size: .95rem; }
.v2-rail-card p { margin: 0; color: var(--v2-muted); font-size: .78rem; line-height: 1.55; }

.v2-note {
  display: flex; gap: 12px; margin-top: 26px; border: 1px solid rgba(246, 172, 10, .3); border-radius: 14px;
  padding: 16px 18px; background: rgba(246, 172, 10, .07);
}
.v2-note i { margin-top: 3px; color: var(--v2-gold-text); }
.v2-note p { margin: 0; color: rgba(255, 255, 255, .68); font-size: .78rem; }

/* ================= cost — bento asymmetric ================= */

.v2-cost-bento { display: grid; grid-template-columns: 1.3fr 1fr 1fr; grid-auto-rows: 150px; gap: 14px; }

.v2-cost__hero {
  position: relative; grid-row: span 2; overflow: hidden; border-radius: var(--v2-radius); padding: 40px;
  background: radial-gradient(circle at 85% 12%, rgba(246, 172, 10, .35), transparent 30%), linear-gradient(140deg, #061a44, #0a3f88);
  color: rgba(255, 255, 255, .7);
}

.v2-cost__hero > span { color: var(--v2-gold-soft); font-size: .68rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.v2-cost__hero strong { display: block; max-width: 340px; margin: 22px 0; color: #fff; font-size: clamp(2rem, 3.2vw, 3.2rem); line-height: 1.08; letter-spacing: -.045em; }
.v2-cost__hero p { max-width: 340px; font-size: .85rem; }

.v2-cost__item {
  border: 1px solid var(--v2-line); border-radius: 20px; padding: 22px; background: var(--v2-glass);
  display: flex; flex-direction: column; justify-content: center; gap: 10px;
}
.v2-cost__item i { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 12px; background: rgba(246, 172, 10, .14); color: var(--v2-gold-text); }
.v2-cost__item strong { color: #fff; font-size: .92rem; }
.v2-cost__item span { display: block; margin-top: 2px; color: var(--v2-muted); font-size: .78rem; line-height: 1.45; }

/* ================= support — collage ================= */

.v2-support__inner { display: grid; grid-template-columns: 1fr 1.05fr; align-items: center; gap: 70px; }

.v2-support__collage { position: relative; padding: 20px 34px 34px 0; }

.v2-support__collage img.v2-main {
  width: 100%; height: 480px; border-radius: 24px; object-fit: cover; box-shadow: 0 40px 90px rgba(0, 0, 0, .4);
}

.v2-support__collage .v2-support__stat {
  position: absolute; z-index: 2; left: 0; bottom: 0; max-width: 210px; border-radius: 18px; padding: 20px;
  background: var(--v2-gold); color: var(--v2-navy); box-shadow: 0 24px 50px rgba(0, 0, 0, .3);
}
.v2-support__stat strong { display: block; font-size: 1.9rem; }
.v2-support__stat span { display: block; margin-top: 4px; font-size: .78rem; font-weight: 700; }

.v2-support__collage::after {
  position: absolute; top: 0; right: 0; z-index: 0; width: 60%; height: 60%; content: "";
  border: 2px solid rgba(246, 172, 10, .35); border-radius: 24px;
}

.v2-checks { display: grid; gap: 16px; margin: 26px 0 34px; padding: 0; list-style: none; }
.v2-checks li { display: flex; gap: 13px; }
.v2-checks i { display: grid; width: 26px; height: 26px; flex: none; place-items: center; border-radius: 50%; background: rgba(246, 172, 10, .16); color: var(--v2-gold-text); font-size: .68rem; }
.v2-checks span { color: var(--v2-muted); font-size: .82rem; }
.v2-checks strong { display: block; margin-bottom: 2px; color: #fff; font-size: .92rem; }

/* ================= FAQ masonry ================= */

.v2-faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: start; }
.v2-faq-grid > div:nth-child(even) { margin-top: 30px; }

.v2-faq {
  border: 1px solid var(--v2-line); border-radius: 18px; padding: 6px 22px; background: var(--v2-glass);
  transition: border-color .3s, background .3s;
}
.v2-faq[open] { border-color: rgba(246, 172, 10, .45); background: rgba(255, 255, 255, .06); }

.v2-faq summary {
  position: relative; padding: 20px 40px 20px 0; color: #fff; cursor: pointer; list-style: none; font-size: .95rem; font-weight: 800; line-height: 1.4;
}
.v2-faq summary::-webkit-details-marker { display: none; }

.v2-faq__toggle, .v2-faq__toggle::after {
  position: absolute; top: 50%; right: 5px; width: 16px; height: 2px; content: ""; background: var(--v2-gold);
  transition: transform .3s var(--v2-ease);
}
.v2-faq__toggle::after { top: 0; right: 0; transform: rotate(90deg); }
.v2-faq[open] .v2-faq__toggle { transform: rotate(180deg); }
.v2-faq[open] .v2-faq__toggle::after { transform: rotate(0); }

.v2-faq__panel p { max-width: 100%; margin: 0; padding: 0 30px 22px 0; color: var(--v2-muted); font-size: .85rem; line-height: 1.6; }

.v2-faq-cta { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 40px; }
.v2-faq-cta a { color: #fff; font-weight: 800; }

/* ================= final CTA — watermark ================= */

.v2-final {
  position: relative; overflow: hidden; margin: 0 24px 90px; border-radius: 34px; padding: 110px 40px;
  background: linear-gradient(125deg, #020c26, #0a3f88); color: rgba(255, 255, 255, .68); text-align: center;
}

.v2-final__mark {
  position: absolute; top: 50%; left: 50%; z-index: 0; width: 200%; color: rgba(255, 255, 255, .035);
  font-family: "Playfair Display", serif; font-size: 13vw; font-weight: 800; letter-spacing: .02em; white-space: nowrap;
  transform: translate(-50%, -50%) rotate(-6deg);
}

.v2-final__glow { position: absolute; width: 500px; height: 500px; top: -320px; left: 50%; transform: translateX(-50%); border-radius: 50%; background: rgba(246, 172, 10, .28); filter: blur(90px); }

.v2-final .container { position: relative; z-index: 1; }
.v2-final h2 { max-width: 880px; margin-inline: auto; color: #fff; font-size: clamp(2.4rem, 4.6vw, 4.6rem); letter-spacing: -.055em; }
.v2-final p { max-width: 660px; margin: 18px auto 34px; }
.v2-final .container > div { display: flex; justify-content: center; gap: 22px; flex-wrap: wrap; }
.v2-final__phone { display: inline-flex; align-items: center; gap: 9px; color: #fff; font-weight: 800; }
.v2-final__phone i { color: #4ee27f; font-size: 1.2rem; }

.landing-page-v2 .site-footer { border-top: 1px solid var(--v2-line-soft); background: #020a1c; }

/* ================= scroll-reveal fallback ================= */

[data-v2-reveal],
[data-v2-card],
[data-v2-reveal-card] { opacity: 1; }

/* ================= responsive ================= */

@media (max-width: 1080px) {
  .v2-header nav { display: none; }
  .v2-hero__top { grid-template-columns: 1fr; gap: 30px; }
  .v2-hero__bottom { grid-template-columns: repeat(2, 1fr); }
  .v2-assessment { grid-template-columns: 1fr; }
  .v2-assessment__rail { flex-direction: row; justify-content: center; border-right: 0; border-bottom: 1px solid var(--v2-line); padding: 18px 0; }
  .v2-bento { grid-template-columns: repeat(2, 1fr); }
  .v2-eligibility-rail { grid-template-columns: repeat(2, 1fr); }
  .v2-rail-card::after { display: none; }
  .v2-cost-bento { grid-template-columns: 1fr 1fr; }
  .v2-cost__hero { grid-column: span 2; grid-row: span 1; min-height: 260px; }
  .v2-support__inner { gap: 44px; }
}

@media (max-width: 820px) {
  html.v2-cursor-on .v2-cursor { display: none; }
  html.v2-cursor-on body.landing-page-v2, html.v2-cursor-on body.landing-page-v2 a, html.v2-cursor-on body.landing-page-v2 button { cursor: auto; }

  .landing-page-v2 .container { width: min(100% - 32px, 1280px); }
  .v2-compliance, .v2-final { margin-inline: 16px; padding-inline: 28px; }
  .v2-hero__points { justify-content: center; }
  .v2-hero__side { text-align: left; }
  .v2-support__inner, .v2-faq-grid { grid-template-columns: 1fr; gap: 34px; }
  .v2-faq-grid > div:nth-child(even) { margin-top: 0; }
  .v2-bento { grid-template-columns: 1fr 1fr; }
  .v2-eligibility-rail { grid-template-columns: 1fr; }
  .v2-cost-bento { grid-template-columns: 1fr; }
  .v2-cost__hero { grid-column: span 1; }
  .v2-compliance__inner { grid-template-columns: 1fr; text-align: center; }
  .v2-compliance__icon, .v2-compliance__inner .v2-button { justify-self: center; }
  .v2-section { padding: 76px 0; }
}

@media (max-width: 560px) {
  .v2-bento { grid-template-columns: 1fr; }
  .v2-hero__bottom { grid-template-columns: 1fr 1fr; }
  .v2-country-card { height: 380px; }
  .v2-assessment__main { padding: 26px 22px 24px; }
}

/* ================= reduced motion ================= */

@media (prefers-reduced-motion: reduce) {
  .v2-marquee__track,
  .v2-country-card, .v2-country-card img, .v2-bento__tile,
  .v2-header__cta, .v2-button, .v2-submit, .v2-options label,
  .v2-header nav a::after, .v2-faq__toggle, .v2-faq__toggle::after {
    transition: none !important;
    animation: none !important;
  }
  .v2-bento__tile { transform: none !important; }
}
