/* ============================================================
   RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-dark);
  background: var(--color-white);
  overflow-x: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}

input {
  font: inherit;
}

/* ============================================================
   SCROLL PROGRESS
   ============================================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--color-teal), var(--color-yellow));
  z-index: 9999;
  transition: width 0.1s linear;
  border-radius: 0 var(--radius-full) var(--radius-full) 0;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  transition: background var(--t-normal), box-shadow var(--t-normal), padding var(--t-normal);
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: var(--nav-h);
  transition: height var(--t-normal);
}

.nav.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 1px 0 var(--color-border), var(--shadow-sm);
  backdrop-filter: blur(16px);
}

.nav.is-scrolled .nav__inner {
  height: var(--nav-h-scrolled);
}

.nav.is-scrolled .nav__logo-text {
  color: var(--color-dark);
}

.nav.is-scrolled .nav__link {
  color: var(--color-mid);
}

.nav.is-scrolled .nav__burger span {
  background: var(--color-dark);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-shrink: 0;
}

.nav__logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: white;
  letter-spacing: -0.01em;
  transition: color var(--t-normal);
}

.nav__logo-text strong {
  color: var(--color-yellow);
}

.nav__links {
  display: none;
  align-items: center;
  gap: var(--space-5);
  flex: 1;
  justify-content: center;
}

.nav__link {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  padding: var(--space-2) 0;
  position: relative;
  white-space: nowrap;
  transition: color var(--t-fast);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-yellow);
  border-radius: var(--radius-full);
  transition: width var(--t-normal);
}

.nav__link:hover,
.nav__link--active {
  color: white;
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

.nav.is-scrolled .nav__link:hover,
.nav.is-scrolled .nav__link--active {
  color: var(--color-teal);
}

.nav .nav__cta {
  display: none;
  margin-left: auto;
}

.nav__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
  margin-left: auto;
}

.nav__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: white;
  border-radius: var(--radius-full);
  transition: transform var(--t-normal), opacity var(--t-fast);
}

.nav__burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__burger.is-open span:nth-child(2) {
  opacity: 0;
}

.nav__burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav__mobile {
  background: white;
  border-top: 1px solid var(--color-border);
  padding: 0 var(--gutter);
  max-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  transition: max-height 0.4s var(--ease-in-out), padding 0.3s;
}

.nav__mobile.is-open {
  max-height: 400px;
  padding: var(--space-5) var(--gutter) var(--space-6);
}

.nav__mobile-link {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-dark-soft);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--color-border);
  transition: color var(--t-fast);
}

.nav__mobile-link:hover,
.nav__mobile-link--active {
  color: var(--color-teal);
}

.nav__mobile-cta {
  display: block;
  text-align: center;
  margin-top: var(--space-3);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  letter-spacing: 0.01em;
  transition: transform 150ms var(--ease-out), box-shadow 150ms var(--ease-out),
    background 150ms var(--ease-out), color 150ms var(--ease-out);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn--sm {
  font-size: 13px;
  padding: 10px 22px;
}

.btn--md {
  font-size: 15px;
  padding: 14px 30px;
}

.btn--lg {
  font-size: 16px;
  padding: 17px 38px;
}

.btn--yellow {
  background: var(--color-yellow);
  color: var(--color-dark);
}

.btn--yellow:hover {
  background: var(--color-yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(57, 186, 205, .40);
}

.btn--yellow:active {
  transform: translateY(0);
}

.btn--yellow.btn--pulse {
  animation: pulse-ring 2.5s ease-out 1.2s infinite;
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(57, 186, 205, .55);
  }

  70% {
    box-shadow: 0 0 0 18px rgba(57, 186, 205, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(57, 186, 205, 0);
  }
}

.btn--ghost {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.55);
}

.btn--ghost:hover {
  border-color: white;
  background: rgba(255, 255, 255, .12);
  transform: translateY(-2px);
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding: var(--space-9) 0;
  position: relative;
}

.section--white {
  background: var(--color-white);
}

.section--off-white {
  background: var(--color-off-white);
}

.section--mist {
  background: var(--color-teal-ultra);
}

.section--teal {
  background: var(--color-dark);
}

.section--dark {
  background: linear-gradient(160deg, #101C29 0%, #0C1824 100%);
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: var(--space-3);
}

.section-label--white {
  color: rgba(255, 255, 255, 0.75);
}

.section__h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-dark);
  margin-bottom: var(--space-5);
  letter-spacing: -0.02em;
}

.section__h2::after {
  content: '';
  display: block;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-teal), var(--color-yellow));
  border-radius: var(--radius-full);
  margin-top: var(--space-3);
  transition: width 0.5s var(--ease-out) 0.2s;
}

.section__h2.is-visible::after {
  width: 56px;
}

.section__h2--white {
  color: white;
}

.section__h2--white::after {
  background: rgba(255, 255, 255, .40);
}

.simple-copy {
  color: var(--color-mid);
  font-size: 17px;
  line-height: 1.75;
}

.simple-copy--wide {
  max-width: 860px;
}

.simple-copy p + p,
.simple-copy ul + p,
.simple-copy p + ul {
  margin-top: var(--space-4);
}

.simple-copy strong {
  color: var(--color-dark-soft);
  font-weight: 800;
}

.simple-bullet-list {
  display: grid;
  gap: 10px;
  padding-left: 0;
}

.simple-bullet-list li {
  position: relative;
  padding-left: 24px;
}

.simple-bullet-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 7px;
  height: 7px;
  border-radius: var(--radius-full);
  background: var(--color-teal);
}

.inline-cta-band {
  background: #EAF5F6;
  padding: var(--space-4) var(--gutter) var(--space-6);
  text-align: center;
}

/* Wave separators */
.hero__wave,
.section__wave-bottom {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
  pointer-events: none;
}

.hero__wave svg,
.section__wave-bottom svg {
  width: 100%;
  display: block;
}

/* ============================================================
   ANIMATION UTILITIES
   ============================================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: var(--color-dark);
  padding-top: calc(var(--nav-h) + 48px);
  padding-bottom: calc(var(--space-9) + 70px);
  overflow: hidden;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Dot grid */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

/* Gradient orb */
.hero::after {
  content: '';
  position: absolute;
  inset: -50%;
  background: radial-gradient(ellipse at 65% 40%, rgba(57, 186, 205, .20) 0%, transparent 55%);
  animation: orb-drift 22s ease-in-out infinite;
  pointer-events: none;
}

@keyframes orb-drift {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-6%, 8%);
  }
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  width: 100%;
}

.hero__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.70);
  margin-bottom: var(--space-4);
}

/* H1 — split design */
.hero__h1 {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: var(--space-6);
}

.hero__h1-main {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(64px, 12vw, 108px);
  font-weight: 900;
  line-height: 0.95;
  color: white;
  letter-spacing: -0.035em;
  will-change: transform, opacity;
}

.hero__h1-sub {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.8vw, 28px);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.3;
  letter-spacing: -0.01em;
  will-change: transform, opacity;
}

.hero__h1-sub::before {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background: var(--color-yellow);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-3);
}

/* Subtitle paragraph */
.hero__subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.80);
  line-height: 1.75;
  margin-bottom: var(--space-5);
  max-width: 500px;
}

/* Trust list */
.hero-trust {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
}

.hero-trust li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
}

.hero-trust svg {
  color: var(--color-yellow);
  flex-shrink: 0;
}

/* Mobile CTA (hidden on desktop) */
.hero__mobile-cta {
  display: block;
  width: 100%;
  text-align: center;
}

/* ── Hero Form Card ──────────────────────────────────────── */
.hero-form-card {
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  flex-shrink: 0;
  width: 100%;
  animation: card-float 7s ease-in-out infinite;
}

@keyframes card-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.hero-form-card__header {
  background: var(--color-dark);
  padding: var(--space-5) var(--space-6);
}

.hero-form-card__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: white;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 0;
}

.hero-form-card__sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

.hero-form-card__body {
  padding: 0;
}

.calendly-inline-widget {
  background: white;
}

.calendly-inline-widget--hero {
  height: 540px !important;
}

.hfc-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: var(--space-3);
}

/* Profile pills */
.hfc-profiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.hfc-profile {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-mid);
  background: white;
  transition: border-color var(--t-fast), background var(--t-fast), color var(--t-fast), transform var(--t-fast);
  cursor: pointer;
}

.hfc-profile:hover {
  border-color: var(--color-teal-light);
  background: var(--color-teal-ultra);
  transform: translateY(-1px);
}

.hfc-profile.is-active {
  border-color: var(--color-teal);
  background: var(--color-teal-mist);
  color: var(--color-teal-dark);
}

.hfc-profile svg {
  color: currentColor;
  flex-shrink: 0;
}

/* Timeline pills */
.hfc-timelines {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  margin-bottom: var(--space-5);
}

.hfc-timeline {
  flex: 1;
  min-width: 0;
  padding: 9px 10px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 12px;
  font-weight: 600;
  color: var(--color-mid);
  background: white;
  text-align: center;
  transition: all var(--t-fast);
  cursor: pointer;
}

.hfc-timeline:hover {
  border-color: var(--color-teal-light);
  background: var(--color-teal-ultra);
}

.hfc-timeline.is-active {
  border-color: var(--color-teal);
  background: var(--color-teal-mist);
  color: var(--color-teal-dark);
}

/* Email input */
.hfc-email-group {
  margin-bottom: var(--space-4);
}

.hfc-email-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 6px;
}

.hfc-email-input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 15px;
  color: var(--color-dark);
  background: var(--color-surface);
  outline: none;
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
}

.hfc-email-input:focus {
  border-color: var(--color-teal);
  box-shadow: 0 0 0 3px rgba(62, 206, 214, .20);
  background: white;
}

.hfc-submit {
  width: 100%;
  justify-content: center;
}

.hero-form-card__footer {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: var(--space-3) var(--space-6);
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  font-size: 12px;
  color: var(--color-muted);
  font-weight: 500;
}

.hero-form-card__footer svg {
  color: var(--color-teal);
  flex-shrink: 0;
}

/* Visa subpage hero image placeholder */
.visa-hero-visual {
  display: none;
}

.visa-hero-photo {
  position: relative;
  min-height: 360px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(17, 17, 17, .12), rgba(17, 17, 17, .28)),
    linear-gradient(135deg, rgba(255, 255, 255, .32), rgba(255, 255, 255, .08));
  border: 1px solid rgba(255, 255, 255, .30);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .18);
}

.visa-hero-photo--image {
  background:
    linear-gradient(180deg, rgba(16, 28, 41, .02), rgba(16, 28, 41, .22)),
    var(--hero-photo) center / cover;
}

.visa-hero-photo::before {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px dashed rgba(255, 255, 255, .42);
  border-radius: var(--radius-lg);
}

.visa-hero-photo::after {
  content: attr(data-image-label);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(260px, calc(100% - 56px));
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .92);
  color: var(--color-teal-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
  box-shadow: var(--shadow-card);
}

.visa-hero-photo--image::before,
.visa-hero-photo--image::after {
  content: none;
}

.visa-hero-visual__badge {
  position: absolute;
  left: var(--space-5);
  bottom: var(--space-5);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 10px 14px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, .94);
  color: var(--color-dark-soft);
  font-size: 13px;
  font-weight: 700;
  box-shadow: var(--shadow-card);
}

.visa-hero-visual__badge svg {
  color: var(--color-yellow-dark);
  flex-shrink: 0;
}

/* Hero image placeholder (right side, sits behind form card) */
.hero__img-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 60%;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(16, 28, 41, 0.60), rgba(16, 28, 41, 0.20)),
    var(--hero-bg, url('../images/hero-background.jpg')) center / cover;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.55) 20%, black 40%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.55) 20%, black 40%);
  pointer-events: none;
}

.hero--premium .hero__img-bg,
.hero--entrepreneur .hero__img-bg,
.hero--investisseur .hero__img-bg,
.hero--retraite .hero__img-bg {
  left: 0;
  width: 100%;
  -webkit-mask-image: none;
  mask-image: none;
}

.hero--premium .hero__img-bg {
  background:
    linear-gradient(90deg, rgba(16, 28, 41, .92) 0%, rgba(16, 28, 41, .76) 42%, rgba(16, 28, 41, .34) 100%),
    url('../images/premium-visa.jpg') center / cover;
}

.hero--entrepreneur .hero__img-bg,
.hero--investisseur .hero__img-bg {
  background:
    linear-gradient(90deg, rgba(16, 28, 41, .92) 0%, rgba(16, 28, 41, .76) 42%, rgba(16, 28, 41, .34) 100%),
    url('../images/visa-entrepreneur.jpg') center / cover;
}

.hero--retraite .hero__img-bg {
  background:
    linear-gradient(90deg, rgba(16, 28, 41, .92) 0%, rgba(16, 28, 41, .76) 42%, rgba(16, 28, 41, .34) 100%),
    url('../images/visa-retraite.jpg') center / cover;
}

.hero__img-bg::before {
  content: none;
}

/* ============================================================
   WAVE TRANSITION (between hero and reassurance strip)
   ============================================================ */
.wave-transition {
  position: relative;
  z-index: 1;
  margin-top: -6.25vw; /* exactly equals wave SVG height (90/1440 = 6.25%) */
  line-height: 0;
  background: transparent;
}

.wave-transition svg {
  width: 100%;
  display: block;
}

/* ============================================================
   REASSURANCE STRIP (below hero wave)
   ============================================================ */
.reassurance-strip {
  background: #EAF5F6;
  padding: 18px 0;
}

.reassurance-strip + .section--white {
  padding-top: var(--space-7);
}

.hero--investisseur + .reassurance-strip {
  padding-top: 30px;
}

.reassurance-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  justify-content: center;
  align-items: center;
}

.reassurance-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--color-dark-soft);
  white-space: nowrap;
}

.reassurance-item svg {
  color: var(--color-teal);
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .reassurance-list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 44px;
  }
}

/* ============================================================
   BENEFIT INTERACTIVE (Pourquoi Maurice)
   ============================================================ */
.why-header {
  margin-bottom: var(--space-7);
}

.benefit-interactive {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

/* List */
.benefit-list {
  display: flex;
  flex-direction: column;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: background var(--t-fast), transform var(--t-fast);
  position: relative;
}

.benefit-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: var(--color-teal);
  border-radius: var(--radius-full);
  transition: height var(--t-normal);
}

.benefit-item:hover {
  background: var(--color-teal-ultra);
}

.benefit-item:hover::before,
.benefit-item.is-active::before {
  height: 70%;
}

.benefit-item.is-active {
  background: var(--color-teal-mist);
}

.bi-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  color: var(--color-teal-light);
  letter-spacing: 0.05em;
  flex-shrink: 0;
  min-width: 28px;
  transition: color var(--t-fast);
}

.benefit-item.is-active .bi-num,
.benefit-item:hover .bi-num {
  color: var(--color-teal);
}

.bi-text {
  flex: 1;
  min-width: 0;
}

.bi-text strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-dark-soft);
  line-height: 1.3;
  transition: color var(--t-fast);
}

.bi-text span {
  font-size: 13px;
  color: var(--color-muted);
  line-height: 1.4;
}

.benefit-item.is-active .bi-text strong,
.benefit-item:hover .bi-text strong {
  color: var(--color-teal-dark);
}

.bi-arrow {
  color: var(--color-teal-light);
  flex-shrink: 0;
  transition: transform var(--t-fast), color var(--t-fast);
  opacity: 0;
}

.benefit-item:hover .bi-arrow,
.benefit-item.is-active .bi-arrow {
  color: var(--color-teal);
  opacity: 1;
  transform: translateX(4px);
}

/* Image panel */
.benefit-image-panel {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--color-teal-ultra);
  border: 1px solid var(--color-teal-mist);
  min-height: 260px;
}

.benefit-img {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
  pointer-events: none;
  background: var(--color-teal-ultra);
}

.benefit-img.is-active {
  opacity: 1;
  pointer-events: auto;
}

.bimg-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  text-align: center;
  padding: var(--space-7);
  width: 100%;
}

.bimg-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bimg-caption {
  position: absolute;
  left: var(--space-5);
  right: var(--space-5);
  bottom: var(--space-5);
  padding: var(--space-4);
  border-radius: var(--radius-md);
  color: white;
  background: linear-gradient(135deg, rgba(16, 28, 41, .82), rgba(16, 28, 41, .54));
  box-shadow: 0 18px 48px rgba(0, 0, 0, .18);
}

.bimg-caption p {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.bimg-caption span {
  display: block;
  margin-top: 5px;
  font-size: 14px;
  color: rgba(255, 255, 255, .78);
}

.bimg-placeholder svg {
  color: var(--bimg-accent, var(--color-teal));
  opacity: 0.6;
}

.bimg-placeholder p {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--color-dark);
  letter-spacing: -0.01em;
}

.bimg-placeholder span {
  font-size: 14px;
  color: var(--color-muted);
}

/* Progress bar at bottom of image panel */
.bimg-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-teal-mist);
}

.bimg-progress__bar {
  height: 100%;
  width: 0%;
  background: var(--color-teal);
  transition: width 0.1s linear;
  border-radius: var(--radius-full);
}

/* Stat badge inside image panel */
.bimg-stat {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  background: white;
  border-radius: var(--radius-md);
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-teal-dark);
  box-shadow: var(--shadow-card);
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}

.bimg-stat.is-visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   SOLUTIONS GRID (Nos Solutions)
   ============================================================ */
.cards-section {
  padding: var(--space-9) 0;
}

.cards-section .container {
  max-width: 1880px;
}

.cards-section-header {
  margin-bottom: var(--space-7);
}

.cards-section-header .section__h2 {
  color: white;
}

.cards-section-header .section-label {
  color: rgba(255, 255, 255, 0.65);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 28px;
  align-items: stretch;
}

.card-fan {
  display: flex;
  flex-direction: column;
  background: #F6FBFC;
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  position: relative;
  min-width: 0;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s var(--ease-out);
}

.card-fan:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.34);
}

/* Premium card */
.card-fan--premium {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22), 0 0 0 2px rgba(57, 186, 205, 0.40);
}

.card-fan--premium:hover {
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.34), 0 0 0 2px rgba(57, 186, 205, 0.60);
}

.card-fan__img {
  width: 100%;
  height: 170px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
  background-position: center;
  background-size: cover;
}

.card-fan__img--photo {
  position: relative;
}

.card-fan__img--photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 28, 41, .02), rgba(16, 28, 41, .18));
}

.card-fan__img--photo svg {
  display: none;
}

.card-fan__body {
  flex: 1;
  padding: var(--space-5) var(--space-6) var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.card-fan__desc {
  max-height: none;
  opacity: 1;
  overflow: visible;
  padding: var(--space-4) var(--space-5);
  margin: 2px 10px 2px -10px;
  background: var(--color-white);
  border: 1px solid rgba(57, 186, 205, .18);
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 34px rgba(16, 28, 41, .08);
  color: var(--color-mid);
  font-size: 14px;
  line-height: 1.62;
  transform: none;
  transition: none;
}

.card-fan--premium .card-fan__desc {
  color: var(--color-dark-soft);
}

.card-fan__desc p {
  margin: 0;
}

.card-fan__desc p + p {
  margin-top: var(--space-3);
}

.card-fan__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-spring);
}

.card-fan:hover .card-fan__icon {
  transform: scale(1.12) rotate(-5deg);
}

.card-fan__title {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 800;
  color: var(--color-dark);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.card-fan__target {
  font-size: 12.5px;
  color: var(--color-muted);
  font-weight: 500;
}

.card-fan__list-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--color-dark-soft);
  line-height: 1.45;
}

.card-fan__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 0;
}

.card-fan__list li {
  font-size: 13.5px;
  color: var(--color-dark-soft);
  padding-left: 14px;
  position: relative;
}

.card-fan__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: var(--radius-full);
  background: var(--color-teal);
}

.card-fan__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-teal);
  padding-top: var(--space-3);
  border-top: 1px solid var(--color-border);
  transition: gap var(--t-fast), color var(--t-fast);
  margin-top: auto;
}

.card-fan:hover .card-fan__link {
  gap: 10px;
  color: var(--color-teal-dark);
}

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline {
  position: relative;
  margin-top: var(--space-8);
}

.timeline__track {
  display: none;
}

/* Track segments (desktop progressive fill) */
.timeline__seg {
  flex: 1;
  height: 100%;
  background: var(--color-teal-mist);
  position: relative;
  overflow: hidden;
}

.timeline__seg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--color-teal-dark), var(--color-teal));
  border-radius: var(--radius-full);
}

.timeline__seg.is-lit::after {
  animation: seg-fill 1.1s linear forwards;
}

@keyframes seg-fill {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

/* Step state transitions */
.timeline__node {
  transition: background 0.1s linear, box-shadow 0.1s linear;
}

.timeline__title,
.timeline__desc {
  transition: color 0.1s linear;
}

.timeline__number {
  transition: color 0.1s linear;
}

/* Inactive state */
.tl-inactive .timeline__node {
  background: var(--color-border);
  box-shadow: none;
}

.tl-inactive .timeline__number {
  color: var(--color-muted);
}

.tl-inactive .timeline__title {
  color: var(--color-muted);
}

.tl-inactive .timeline__desc {
  color: #c5cdd7;
}

/* Active state */
.tl-active .timeline__node {
  background: var(--color-yellow);
  box-shadow: 0 4px 20px rgba(57, 186, 205, .45);
}

.tl-active .timeline__number {
  color: var(--color-dark);
}

.tl-active .timeline__title {
  color: var(--color-dark);
}

.tl-active .timeline__desc {
  color: var(--color-mid);
}

.timeline__steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-7);
}

.timeline__step {
  display: flex;
  gap: var(--space-5);
  align-items: flex-start;
  position: relative;
}

.timeline__step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 25px;
  top: 52px;
  width: 2px;
  height: calc(100% + var(--space-7) - 52px);
  background: var(--color-teal-mist);
}

.timeline__node {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  background: var(--color-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(57, 186, 205, .35);
  position: relative;
  z-index: 1;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
}

.timeline__step:hover .timeline__node {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(57, 186, 205, .50);
}

.timeline__number {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--color-dark);
}

.timeline__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: var(--space-1);
}

.timeline__desc {
  font-size: 15px;
  color: var(--color-mid);
  line-height: 1.6;
}

/* ============================================================
   SEO BLOCK
   ============================================================ */
.seo-block__header {
  margin-bottom: var(--space-6);
}

.seo-block__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.seo-block__col {
  flex: 1;
}

.seo-block__intro {
  font-size: 16px;
  color: var(--color-dark-soft);
  line-height: 1.75;
  margin-bottom: var(--space-4);
}

.seo-block__note {
  font-size: 14px;
  color: var(--color-mid);
  line-height: 1.65;
  font-style: italic;
}

.seo-block__subtitle {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-dark-soft);
  margin-bottom: var(--space-3);
}

.seo-block__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
}

.seo-block__tags li {
  background: var(--color-teal-mist);
  color: var(--color-teal-dark);
  border: 1px solid var(--color-teal-light);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
}

/* ============================================================
   FORM SECTION
   ============================================================ */
.form-section {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.form-section__content {
  flex: 1;
}

.form-section__desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
  margin: var(--space-4) 0 var(--space-5);
  max-width: 440px;
}

.form-section__perks {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.form-section__perks li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, .88);
}

.form-section__perks svg {
  color: var(--color-yellow);
  flex-shrink: 0;
}

.form-section__embed {
  flex-shrink: 0;
}

.form-placeholder {
  background: rgba(255, 255, 255, .10);
  border: 1px dashed rgba(255, 255, 255, .30);
  border-radius: var(--radius-xl);
  padding: var(--space-9) var(--space-5);
}

.form-placeholder__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  text-align: center;
  color: rgba(255, 255, 255, .70);
}

.form-placeholder__inner svg {
  color: rgba(255, 255, 255, .45);
}

.form-placeholder__inner strong {
  color: white;
  font-size: 17px;
}

.form-placeholder__inner p {
  font-size: 14px;
  line-height: 1.6;
}

.form-placeholder__inner code {
  font-size: 12px;
  background: rgba(0, 0, 0, .20);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  color: var(--color-yellow-light);
  font-family: monospace;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  margin-top: var(--space-7);
  border-top: 1px solid var(--color-border);
}

.faq__item {
  border-bottom: 1px solid var(--color-border);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) 0;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-dark);
  transition: color var(--t-fast);
}

.faq__question:hover,
.faq__question[aria-expanded="true"] {
  color: var(--color-teal);
}

.faq__chevron {
  color: var(--color-teal);
  flex-shrink: 0;
  transition: transform var(--t-normal);
}

.faq__question[aria-expanded="true"] .faq__chevron {
  transform: rotate(180deg);
}

.faq__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease-in-out);
}

.faq__answer p {
  padding-bottom: var(--space-3);
  font-size: 15px;
  color: var(--color-mid);
  line-height: 1.75;
}

.faq__answer ul,
.faq__answer ol {
  display: grid;
  gap: 8px;
  padding: 0 0 var(--space-5) 22px;
  color: var(--color-mid);
  font-size: 15px;
  line-height: 1.65;
}

.faq__answer ul {
  list-style: disc;
}

.faq__answer ol {
  list-style: decimal;
}

.faq__answer strong {
  color: var(--color-dark-soft);
}

.faq-table {
  display: grid;
  margin: 0 0 var(--space-5);
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-mid);
  font-size: 15px;
  line-height: 1.55;
}

.faq-table__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 120px;
}

.faq-table--timeline .faq-table__row {
  grid-template-columns: 180px minmax(0, 1fr);
}

.faq-table__row > span {
  padding: 11px 14px;
  border-top: 1px solid var(--color-border);
}

.faq-table__row:first-child > span {
  border-top: 0;
}

.faq-table__row > span + span {
  border-left: 1px solid var(--color-border);
  font-weight: 700;
  color: var(--color-dark-soft);
}

.faq-table__row--head {
  background: var(--color-teal-ultra);
  font-weight: 800;
  color: var(--color-dark-soft);
}

@media (max-width: 560px) {
  .faq-table__row,
  .faq-table--timeline .faq-table__row {
    grid-template-columns: 1fr;
  }

  .faq-table__row > span + span {
    border-left: 0;
  }

  .faq-table__row > span:first-child {
    padding-bottom: 4px;
    font-weight: 800;
    color: var(--color-dark-soft);
  }

  .faq-table__row > span:last-child {
    padding-top: 4px;
  }
}

/* ============================================================
   CTA FINAL
   ============================================================ */
.section--cta {
  padding: var(--space-10) 0;
}

.cta-final {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-final__line {
  width: 0;
  height: 3px;
  background: rgba(255, 255, 255, .35);
  border-radius: var(--radius-full);
  margin: 0 auto var(--space-5);
  transition: width 0.5s var(--ease-out) 0.2s;
}

.cta-final.is-visible .cta-final__line {
  width: 64px;
}

.cta-final__h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: white;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: var(--space-4);
}

.cta-final__desc {
  font-size: 17px;
  color: rgba(255, 255, 255, .78);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}

.cta-final__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--color-dark);
  padding: var(--space-9) 0 var(--space-6);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  padding-bottom: var(--space-7);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer__brand {
  max-width: 320px;
}

.footer__logo {
  margin-bottom: var(--space-4);
}

.footer__logo .nav__logo-text {
  color: white;
}

.footer__tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, .50);
  line-height: 1.7;
}

.footer__link {
  color: var(--color-teal-light);
  transition: color var(--t-fast);
}

.footer__link:hover {
  color: var(--color-teal);
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer__nav-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35);
  margin-bottom: var(--space-2);
}

.footer__nav-link {
  font-size: 14px;
  color: rgba(255, 255, 255, .60);
  transition: color var(--t-fast);
}

.footer__nav-link:hover {
  color: white;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.footer__powered {
  font-size: 13px;
  color: rgba(255, 255, 255, .35);
}

.footer__bottom {
  padding-top: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer__bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, .28);
  line-height: 1.6;
}

/* ============================================================
   MOBILE STICKY CTA
   ============================================================ */
.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-4) var(--gutter) calc(var(--space-4) + env(safe-area-inset-bottom));
  background: white;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, .10);
  z-index: 800;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out);
}

.mobile-cta.is-visible {
  transform: translateY(0);
}

.mobile-cta__btn {
  width: 100%;
  display: flex;
}

/* ============================================================
   SHADOWS (re-used tokens)
   ============================================================ */
.shadow-xl {
  box-shadow: 0 24px 64px rgba(62, 206, 214, .22);
}

/* ============================================================
   TABLET — 768px+
   ============================================================ */
@media (min-width: 768px) {
  :root {
    --gutter: 32px;
  }

  .section {
    padding: var(--space-10) 0;
  }

  .reassurance-strip + .section--white {
    padding-top: var(--space-8);
  }

  /* Nav */
  .nav__links {
    display: flex;
  }

  .nav .nav__cta {
    display: inline-flex;
  }

  .nav__burger {
    display: none;
  }

  .nav__mobile {
    display: none !important;
  }

  /* Hero */
  .hero {
    min-height: 100svh;
    padding-top: calc(var(--nav-h) + 32px);
    padding-bottom: calc(var(--space-8) + 80px);
  }

  .hero__inner {
    flex-direction: row;
    align-items: center;
    gap: var(--space-8);
  }

  .hero__content {
    flex: 1;
    min-width: 0;
  }

.hero-form-card {
    flex: 0 0 440px;
    animation: card-float 7s ease-in-out infinite;
    margin-top: 130px;
  }

  .visa-hero-visual {
    flex: 0 0 420px;
  }

  .visa-hero-photo {
    min-height: 460px;
  }

  .hero__mobile-cta {
    display: none;
  }

  .hero-trust {
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--space-4);
  }

  /* Benefit interactive */
  .benefit-interactive {
    flex-direction: row;
    gap: var(--space-7);
    align-items: flex-start;
  }

  .benefit-list {
    flex: 0 0 45%;
  }

  .benefit-image-panel {
    flex: 1;
    min-height: 420px;
    position: sticky;
    top: calc(var(--nav-h-scrolled) + 20px);
  }

  /* SEO block two columns */
  .seo-block__content {
    flex-direction: row;
    gap: var(--space-8);
  }

  /* Timeline horizontal */
  .timeline__track {
    display: flex;
    position: absolute;
    top: 26px;
    left: calc(12.5%);
    right: calc(12.5%);
    height: 2px;
  }

  .timeline__steps {
    flex-direction: row;
    gap: 0;
    align-items: flex-start;
    position: relative;
  }

  .timeline__step {
    flex: 1;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 var(--space-4);
    gap: var(--space-4);
  }

  .timeline__step:not(:last-child)::after {
    display: none;
  }

  .timeline__node {
    position: relative;
    z-index: 2;
  }

  /* Form section */
  .form-section {
    flex-direction: row;
    align-items: flex-start;
    gap: var(--space-9);
  }

  .form-section__content {
    flex: 45;
  }

  .form-section__embed {
    flex: 55;
  }

  /* CTA actions */
  .cta-final__actions {
    flex-direction: row;
    justify-content: center;
  }

  /* Footer */
  .footer__inner {
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--space-7);
  }

  .footer__brand {
    flex: 1;
    min-width: 220px;
  }

  .footer__nav {
    flex: 1;
    min-width: 180px;
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  /* Mobile CTA off */
  .mobile-cta {
    display: none;
  }
}

/* ============================================================
   DESKTOP — 1024px+
   ============================================================ */
@media (min-width: 1024px) {
  :root {
    --gutter: 48px;
  }

  .hero-form-card {
    flex: 0 0 500px;
    margin-top: 130px;
  }

  .visa-hero-visual {
    flex: 0 0 470px;
  }

  .visa-definition {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  /* Solutions grid: 4 columns on desktop (default, no override needed) */
}

@media (min-width: 768px) and (max-width: 1023px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ============================================================
   FEATURE GRID (sub-pages: benefits / who it's for)
   ============================================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-6);
}

.feature-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}

.feature-card:hover {
  border-color: var(--color-teal-light);
  box-shadow: var(--shadow-card);
}

.feature-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-3);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: var(--space-2);
  letter-spacing: -0.01em;
}

.feature-card p {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.65;
}

/* Visa guide section variants */
.visa-definition {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-5);
  margin-top: var(--space-6);
}

.visa-definition .feature-card {
  display: block;
  min-height: 100%;
  padding: var(--space-5);
  border-color: var(--color-border);
  background: var(--color-white);
}

.visa-definition .feature-card__icon {
  margin-bottom: var(--space-3);
}

.visa-definition .feature-card h3 {
  font-size: 17px;
}

.visa-profile-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin-top: var(--space-6);
  max-width: 920px;
}

.visa-profile-list .feature-card {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: var(--space-4);
  align-items: flex-start;
  border-left: 4px solid var(--color-teal);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-6);
  box-shadow: none;
}

.visa-profile-list .feature-card__icon {
  margin-bottom: 0;
}

.visa-profile-list .feature-card h3 {
  font-size: 18px;
}

.visa-profile-list .feature-card p {
  grid-column: 2;
  max-width: 680px;
}

.visa-reason-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin-top: var(--space-6);
  max-width: 1120px;
}

.visa-reason-stack .feature-card {
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(180px, 280px) minmax(0, 1fr);
  gap: var(--space-5);
  align-items: center;
  min-height: 116px;
  padding: var(--space-5) calc(var(--space-8) + 16px) var(--space-5) var(--space-6);
  overflow: hidden;
}

.visa-reason-stack .feature-card::before {
  content: counter(reason-card, decimal-leading-zero);
  counter-increment: reason-card;
  position: absolute;
  right: var(--space-6);
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
  color: rgba(62, 206, 214, .14);
}

.visa-reason-stack {
  counter-reset: reason-card;
}

.visa-reason-stack .feature-card__icon {
  margin-bottom: 0;
  background: var(--color-yellow) !important;
  color: var(--color-dark) !important;
}

.visa-reason-stack .feature-card h3 {
  font-size: 19px;
  margin-bottom: 0;
  padding-right: 0;
}

.visa-reason-stack .feature-card p {
  color: var(--color-mid);
  font-size: 15px;
  line-height: 1.6;
}

/* Internal links strip */
.internal-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.internal-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-teal-dark);
  background: var(--color-white);
  transition: border-color var(--t-fast), background var(--t-fast);
  white-space: nowrap;
}

.internal-links a:hover {
  border-color: var(--color-teal);
  background: var(--color-teal-ultra);
}

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

  .visa-definition {
    grid-template-columns: 1fr;
  }

  .visa-definition .feature-card,
  .visa-profile-list .feature-card,
  .visa-reason-stack .feature-card {
    grid-template-columns: 1fr;
  }

  .visa-profile-list .feature-card p {
    grid-column: auto;
  }

  .visa-reason-stack .feature-card {
    padding: var(--space-5);
  }

  .visa-reason-stack .feature-card h3 {
    padding-right: 0;
  }

  .visa-reason-stack .feature-card::before {
    top: var(--space-4);
    right: var(--space-5);
    transform: none;
    font-size: 34px;
  }
}
