@font-face {
  font-family: "Jakarta";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/plus-jakarta-sans-latin-400-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Jakarta";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("fonts/plus-jakarta-sans-latin-500-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Jakarta";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("fonts/plus-jakarta-sans-latin-600-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Jakarta";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("fonts/plus-jakarta-sans-latin-700-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Jakarta";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("fonts/plus-jakarta-sans-latin-800-normal.woff2") format("woff2");
}

:root {
  --blue-950: #0a1b3d;
  --blue-900: #122a63;
  --blue-800: #1c3da0;
  --blue-700: #2456e6;
  --blue-600: #3168f3;
  --blue-500: #4f86ff;
  --cyan-300: #7ec0ff;
  --ink: #101a33;
  --muted: #5a6a87;
  --line: rgba(16, 26, 51, 0.12);
  --white: #ffffff;
  --soft: #f5f9ff;
  --shadow: 0 24px 70px rgba(10, 27, 61, 0.16);
  --container: min(1220px, calc(100vw - 48px));
  font-family:
    "Jakarta",
    "Plus Jakarta Sans",
    "Segoe UI",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 8%, rgba(21, 144, 255, 0.13), transparent 32rem),
    linear-gradient(180deg, #f8fbff 0%, #eef6ff 48%, #ffffff 100%);
}

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

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

button,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 18px;
  left: 50%;
  display: grid;
  width: var(--container);
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 50px rgba(3, 22, 52, 0.1);
  backdrop-filter: blur(22px);
  transform: translateX(-50%);
  transition:
    top 240ms ease,
    background 240ms ease,
    box-shadow 240ms ease;
}

.site-header.is-scrolled {
  top: 10px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 44px rgba(3, 22, 52, 0.15);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 178px;
  overflow: hidden;
}

.brand img {
  width: 178px;
  height: 54px;
  object-fit: contain;
  object-position: center;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.primary-nav a,
.language-pill {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  color: rgba(6, 20, 45, 0.75);
  background: transparent;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 780;
  line-height: 1;
  padding: 0 13px;
  transition:
    background 180ms ease,
    color 180ms ease;
  white-space: nowrap;
}

.primary-nav a:hover,
.language-pill:hover {
  color: var(--blue-700);
  background: rgba(7, 88, 216, 0.08);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  cursor: pointer;
  font-weight: 900;
  isolation: isolate;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.btn::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.38) 46%, transparent 62%);
  content: "";
  transform: translateX(-130%);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:hover::before {
  animation: sheen 720ms ease;
}

.btn-header {
  min-height: 42px;
  padding: 0 18px;
  background: linear-gradient(135deg, var(--blue-800), var(--blue-500));
  box-shadow: 0 14px 30px rgba(7, 88, 216, 0.22);
  font-size: 0.92rem;
}

.flag-uk {
  position: relative;
  display: inline-block;
  width: 26px;
  height: 26px;
  margin-right: 7px;
  overflow: hidden;
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 42%, #c8102e 42% 58%, transparent 58%),
    linear-gradient(0deg, transparent 42%, #c8102e 42% 58%, transparent 58%),
    linear-gradient(90deg, transparent 36%, #ffffff 36% 64%, transparent 64%),
    linear-gradient(0deg, transparent 36%, #ffffff 36% 64%, transparent 64%),
    #012169;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.8);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--blue-900);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: var(--white);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.hero {
  position: relative;
  display: grid;
  width: var(--container);
  min-height: 100svh;
  grid-template-columns: minmax(360px, 430px) minmax(0, 1fr);
  gap: clamp(34px, 4.4vw, 64px);
  align-items: center;
  margin: 0 auto;
  padding: 142px 0 118px;
}

.hero-bg {
  position: absolute;
  inset: 112px -38px 0;
  z-index: -2;
  overflow: hidden;
  border-radius: 38px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(239, 247, 255, 0.76)),
    radial-gradient(circle at 18% 18%, rgba(21, 144, 255, 0.16), transparent 22rem),
    radial-gradient(circle at 78% 58%, rgba(7, 88, 216, 0.13), transparent 30rem);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.78);
}

.hero-bg::before {
  position: absolute;
  inset: 0;
  opacity: 0.55;
  background:
    radial-gradient(circle at 24% 20%, rgba(21, 144, 255, 0.16), transparent 12rem),
    radial-gradient(circle at 76% 76%, rgba(119, 221, 255, 0.14), transparent 18rem);
  content: "";
  animation: aurora-shift 9s ease-in-out infinite;
}

.hero-bg::after {
  position: absolute;
  inset: 0;
  opacity: 0.52;
  background:
    linear-gradient(120deg, transparent 0 42%, rgba(7, 88, 216, 0.08) 42.1% 42.4%, transparent 42.5%),
    linear-gradient(90deg, rgba(7, 88, 216, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(7, 88, 216, 0.045) 1px, transparent 1px);
  background-size:
    100% 100%,
    46px 46px,
    46px 46px;
  content: "";
}

.grid-glow {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(7, 88, 216, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 88, 216, 0.07) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, black 0%, transparent 74%);
}

.hero-route {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.92;
  pointer-events: none;
}

.hr-glow {
  stroke: rgba(21, 144, 255, 0.16);
  stroke-width: 11;
  stroke-linecap: round;
  filter: blur(9px);
}

.hr-path {
  stroke: url(#hrRoute);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-dasharray: 1 11;
}

.hr-pin .hr-core {
  fill: #0758d8;
}

.hr-pin-dest .hr-core {
  fill: #1590ff;
}

.hr-pin .hr-ping {
  fill: rgba(21, 144, 255, 0.4);
  transform-box: fill-box;
  transform-origin: center;
  animation: hr-ping 3.4s ease-out infinite;
  animation-delay: var(--d, 0s);
}

.hr-marker {
  transform-box: fill-box;
}

.hr-head {
  filter: drop-shadow(0 0 7px rgba(57, 160, 255, 0.95));
}

@keyframes hr-ping {
  0% {
    transform: scale(0.5);
    opacity: 0.6;
  }
  70% {
    opacity: 0;
  }
  100% {
    transform: scale(2.6);
    opacity: 0;
  }
}

.route-line {
  position: absolute;
  width: 440px;
  height: 2px;
  border-radius: 999px;
  opacity: 0.5;
  background: linear-gradient(90deg, transparent, rgba(21, 144, 255, 0.45), transparent);
  transform: rotate(-20deg);
  animation: route-glow 4.8s ease-in-out infinite;
}

.route-one {
  top: 180px;
  right: 10%;
}

.route-two {
  bottom: 210px;
  left: 20%;
  transform: rotate(15deg);
  animation-delay: -2s;
}

.application-card {
  position: relative;
  z-index: 2;
  min-height: 0;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
  animation: rise-in 700ms ease both;
}

.application-card::before {
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background:
    radial-gradient(circle at 16% 0%, rgba(21, 144, 255, 0.2), transparent 20rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.36));
  content: "";
}

.card-glow {
  position: absolute;
  top: -40px;
  right: -35px;
  z-index: -2;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(21, 144, 255, 0.18);
  filter: blur(4px);
}

.form-kicker {
  width: max-content;
  margin: 0 0 12px;
  padding: 7px 12px;
  border: 1px solid rgba(7, 88, 216, 0.15);
  border-radius: 999px;
  color: var(--blue-800);
  background: rgba(7, 88, 216, 0.08);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.application-card h2 {
  margin: 0 0 16px;
  color: var(--blue-950);
  font-size: clamp(1.3rem, 1.55vw, 1.52rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.08;
}

.eligibility-form {
  display: grid;
  gap: 9px;
}

.eligibility-form label {
  margin-top: 5px;
  color: var(--blue-950);
  font-size: 0.92rem;
  font-weight: 850;
}

.country-combo {
  position: relative;
}

.country-trigger {
  position: relative;
  display: grid;
  width: 100%;
  grid-template-columns: 42px 1fr 20px;
  align-items: center;
  min-height: 56px;
  padding: 0 18px 0 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(3, 22, 52, 0.08);
  color: var(--blue-950);
  cursor: pointer;
  text-align: left;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.country-trigger:hover,
.country-combo.is-open .country-trigger {
  border-color: rgba(7, 88, 216, 0.34);
  box-shadow: 0 18px 40px rgba(7, 88, 216, 0.13);
  transform: translateY(-1px);
}

.country-trigger-icon {
  width: 28px;
  font-size: 1.55rem;
  line-height: 1;
}

.country-trigger-text {
  overflow: hidden;
  font-size: 0.98rem;
  font-weight: 850;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.country-trigger-arrow {
  width: 10px;
  height: 10px;
  border-right: 2px solid #66758c;
  border-bottom: 2px solid #66758c;
  transform: rotate(45deg) translateY(-3px);
  transition: transform 180ms ease;
}

.country-combo.is-open .country-trigger-arrow {
  transform: rotate(225deg) translate(-2px, -1px);
}

.country-menu {
  position: absolute;
  z-index: 50;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(6, 34, 77, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 60px rgba(3, 22, 52, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.country-combo.is-open .country-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.country-search-wrap {
  position: relative;
  border-bottom: 1px solid rgba(6, 34, 77, 0.1);
}

.country-search-wrap::before {
  position: absolute;
  top: 50%;
  left: 18px;
  width: 15px;
  height: 15px;
  border: 2px solid #76859a;
  border-radius: 50%;
  content: "";
  transform: translateY(-58%);
}

.country-search-wrap::after {
  position: absolute;
  top: calc(50% + 7px);
  left: 31px;
  width: 8px;
  height: 2px;
  border-radius: 999px;
  background: #76859a;
  content: "";
  transform: rotate(45deg);
}

.country-search {
  width: 100%;
  min-height: 52px;
  padding: 0 18px 0 50px;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-size: 1rem;
  font-weight: 650;
}

.country-search::placeholder {
  color: #75839a;
}

.country-list {
  max-height: 245px;
  overflow-y: auto;
  padding: 8px;
  scrollbar-color: rgba(7, 88, 216, 0.22) transparent;
  scrollbar-width: thin;
}

.country-option,
.country-group-title,
.country-empty {
  display: grid;
  align-items: center;
}

.country-group-title {
  min-height: 34px;
  padding: 8px 12px 4px;
  color: var(--blue-700);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.country-option {
  width: 100%;
  min-height: 44px;
  grid-template-columns: 42px 1fr;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 0.98rem;
  font-weight: 720;
  text-align: left;
}

.country-option:hover,
.country-option.is-active {
  background: rgba(7, 88, 216, 0.08);
}

.country-empty {
  min-height: 54px;
  padding: 0 12px;
  color: var(--muted);
  font-weight: 650;
}

.country-flag {
  font-size: 1.45rem;
  line-height: 1;
}

.btn-apply {
  width: 100%;
  min-height: 58px;
  gap: 12px;
  margin-top: 12px;
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700) 48%, var(--blue-500));
  box-shadow: 0 18px 36px rgba(7, 88, 216, 0.28);
  font-size: 1.05rem;
}

.btn-apply.is-submitted {
  pointer-events: none;
}

.btn-apply.is-success {
  background: linear-gradient(135deg, #078d35, #14c957);
  box-shadow: 0 18px 36px rgba(20, 201, 87, 0.28);
}

.shield-icon {
  display: block;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  color: var(--white);
  filter: drop-shadow(0 2px 4px rgba(8, 24, 64, 0.22));
}

.eligibility-result {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: center;
  max-height: 0;
  overflow: hidden;
  border: 1px solid rgba(20, 201, 87, 0.32);
  border-radius: 18px;
  color: #063d1d;
  background:
    linear-gradient(135deg, rgba(236, 255, 242, 0.98), rgba(214, 255, 228, 0.94)),
    #eafff0;
  box-shadow: 0 18px 34px rgba(20, 201, 87, 0.16);
  opacity: 0;
  transform: translateY(-8px);
  transition:
    max-height 260ms ease,
    margin-top 260ms ease,
    opacity 220ms ease,
    padding 260ms ease,
    transform 220ms ease;
}

.eligibility-result.is-visible {
  max-height: 76px;
  margin-top: 8px;
  padding: 9px 10px;
  opacity: 1;
  transform: translateY(0);
}

.result-icon {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, #078d35, #14c957);
  box-shadow: 0 0 0 6px rgba(20, 201, 87, 0.13);
  font-weight: 950;
}

.eligibility-result strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 950;
}

.eligibility-result p {
  display: block;
  margin: 2px 0 0;
  color: #2d6540;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.25;
}

.hero-copy {
  width: 100%;
  min-width: 0;
  animation: rise-in 760ms 120ms ease both;
}

.fine-alert {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  margin: 0 0 20px;
  padding: 0 14px;
  border: 1px solid rgba(7, 88, 216, 0.14);
  border-radius: 999px;
  color: var(--blue-800);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  font-weight: 950;
}

h1 {
  max-width: 780px;
  margin: 0;
  color: var(--blue-950);
  font-size: clamp(1.95rem, 3.05vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.06;
}

#hero-title span {
  color: var(--blue-700);
}

.lead {
  max-width: 690px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(0.94rem, 0.95vw, 1rem);
  font-weight: 620;
  line-height: 1.6;
}

.benefit-grid {
  display: grid;
  max-width: 690px;
  grid-template-columns: repeat(2, minmax(230px, 1fr));
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.benefit-grid li {
  position: relative;
  min-height: 52px;
  padding: 14px 14px 14px 44px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  color: var(--blue-950);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 12px 28px rgba(3, 22, 52, 0.08);
  font-size: 0.88rem;
  font-weight: 820;
}

.benefit-grid li::before {
  position: absolute;
  top: 13px;
  left: 14px;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue-600);
  content: "✓";
  font-size: 0.82rem;
  font-weight: 950;
}

.partners-strip {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(244, 249, 255, 0.82)),
    rgba(255, 255, 255, 0.82);
  box-shadow:
    0 24px 70px rgba(3, 22, 52, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(22px);
  isolation: isolate;
  animation: dock-rise 760ms 240ms ease both;
}

.partners-strip::before {
  position: absolute;
  inset: -18px 24px auto;
  z-index: -1;
  height: 54px;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(21, 144, 255, 0.22), transparent 68%);
  content: "";
  filter: blur(10px);
}

.partners-strip::after {
  position: absolute;
  inset: 10px;
  z-index: -1;
  border: 1px solid rgba(7, 88, 216, 0.06);
  border-radius: 24px;
  content: "";
  pointer-events: none;
}

.strip-heading {
  padding: 0 4px;
}

.strip-heading span {
  display: block;
  color: var(--blue-700);
  font-size: 0.76rem;
  font-weight: 950;
}

.strip-heading strong {
  display: block;
  margin-top: 7px;
  color: var(--blue-950);
  font-size: 0.96rem;
  line-height: 1.45;
}

.logo-slider {
  overflow: hidden;
  padding: 4px;
  mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
}

.logo-track {
  display: flex;
  gap: 12px;
  transition: transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.logo-tile {
  display: grid;
  flex: 0 0 calc((100% - 60px) / 6);
  min-width: 0;
  height: 68px;
  place-items: center;
  margin: 0;
  border: 1px solid rgba(6, 34, 77, 0.08);
  border-radius: 18px;
  background: #ffffff;
  box-shadow:
    0 12px 28px rgba(3, 22, 52, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.7);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.logo-tile:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 34px rgba(7, 88, 216, 0.16);
}

.logo-tile img {
  width: min(120px, 80%);
  max-height: 46px;
  object-fit: contain;
}

.chat-fab {
  position: fixed;
  right: 30px;
  bottom: 24px;
  z-index: 40;
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-800), var(--blue-500));
  box-shadow: 0 18px 40px rgba(7, 88, 216, 0.26);
}

.chat-fab span {
  position: relative;
  width: 28px;
  height: 24px;
  border-radius: 8px;
  background: var(--white);
}

.chat-fab span::after {
  position: absolute;
  right: 5px;
  bottom: -5px;
  width: 11px;
  height: 11px;
  background: var(--white);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  content: "";
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  padding: 0;
  border: 0;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.assurance-section {
  position: relative;
  padding: 28px 0 42px;
  scroll-margin-top: 120px;
}

.assurance-shell {
  position: relative;
  width: var(--container);
  overflow: hidden;
  margin: 0 auto;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 30px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(238, 247, 255, 0.86)),
    radial-gradient(circle at 18% 50%, rgba(21, 144, 255, 0.12), transparent 22rem);
  box-shadow:
    0 18px 56px rgba(3, 22, 52, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  isolation: isolate;
}

.assurance-shell::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(21, 144, 255, 0.18), transparent),
    linear-gradient(rgba(7, 88, 216, 0.04) 1px, transparent 1px);
  background-size: 100% 100%, 36px 36px;
  content: "";
  opacity: 0.62;
  transform: translateX(-45%);
  animation: trust-sweep 6s ease-in-out infinite;
  z-index: -1;
}

.assurance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.assurance-card {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: start;
  min-height: 124px;
  gap: 8px 16px;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(7, 88, 216, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 38px rgba(3, 22, 52, 0.07);
  backdrop-filter: blur(16px);
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.32s ease,
    border-color 0.32s ease;
}

.assurance-card::before {
  position: absolute;
  inset: -48% auto auto 8%;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21, 144, 255, 0.16), transparent 66%);
  content: "";
  opacity: 0.7;
  pointer-events: none;
}

.assurance-card:hover {
  border-color: rgba(21, 144, 255, 0.24);
  box-shadow: 0 22px 52px rgba(7, 88, 216, 0.14);
  transform: translateY(-5px);
}

.assurance-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 56px;
  height: 56px;
  grid-row: 1 / span 2;
  place-items: center;
  border-radius: 17px;
  color: #fff;
  background:
    radial-gradient(circle at 32% 20%, rgba(255, 255, 255, 0.38), transparent 60%),
    linear-gradient(140deg, var(--blue-700), var(--blue-500));
  box-shadow:
    0 14px 28px rgba(7, 88, 216, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.32s ease;
}

.assurance-icon svg {
  width: 28px;
  height: 28px;
}

.assurance-card:hover .assurance-icon {
  transform: translateY(-3px) scale(1.06);
  box-shadow:
    0 20px 38px rgba(7, 88, 216, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.assurance-card h3 {
  position: relative;
  z-index: 1;
  grid-column: 2;
  align-self: end;
  margin: 0;
  color: var(--blue-950);
  font-size: clamp(1.04rem, 1.4vw, 1.28rem);
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.16;
}

.assurance-card p {
  position: relative;
  z-index: 1;
  grid-column: 2;
  align-self: start;
  max-width: 30ch;
  margin: 8px 0 0;
  color: #5a6678;
  font-size: 0.92rem;
  font-weight: 520;
  line-height: 1.5;
}

.process-section {
  position: relative;
  padding: 42px 0 86px;
  scroll-margin-top: 120px;
}

.process-section::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(980px, 82vw);
  height: 420px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 18% 36%, rgba(21, 144, 255, 0.16), transparent 18rem),
    radial-gradient(circle at 82% 42%, rgba(119, 221, 255, 0.18), transparent 17rem);
  content: "";
  filter: blur(8px);
  pointer-events: none;
  transform: translateX(-50%);
  z-index: -1;
}

.process-heading {
  width: var(--container);
  margin: 0 auto 24px;
  text-align: center;
}

.section-kicker-blue {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  margin: 0 0 10px;
  padding: 0 14px;
  border: 1px solid rgba(7, 88, 216, 0.16);
  border-radius: 999px;
  color: var(--blue-800);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 30px rgba(7, 88, 216, 0.08);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process-heading h2 {
  max-width: 900px;
  margin: 0 auto;
  color: var(--blue-950);
  font-size: clamp(1.85rem, 3.1vw, 3.05rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.process-heading h2 span {
  color: var(--blue-700);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.9em;
  font-style: italic;
  font-weight: 500;
}

.process-heading > p:last-child {
  max-width: 610px;
  margin: 12px auto 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.58;
}

.process-shell {
  position: relative;
  display: grid;
  width: var(--container);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
  overflow: hidden;
  margin: 0 auto;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 38px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(235, 246, 255, 0.72)),
    linear-gradient(rgba(7, 88, 216, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 88, 216, 0.045) 1px, transparent 1px);
  background-size: auto, 42px 42px, 42px 42px;
  box-shadow:
    0 28px 80px rgba(3, 22, 52, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
  isolation: isolate;
}

.process-line {
  position: absolute;
  top: 50%;
  right: 4%;
  left: 4%;
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(7, 88, 216, 0.14);
  transform: translateY(-50%);
  z-index: -1;
}

.process-line::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, var(--blue-500), var(--cyan-300), transparent);
  content: "";
  transform: translateX(-55%);
  animation: process-line 4.8s ease-in-out infinite;
}

.process-card {
  position: relative;
  z-index: 1;
  display: grid;
  align-self: start;
  min-height: 388px;
  grid-template-rows: 128px 1fr;
  overflow: hidden;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 28px;
  background:
    radial-gradient(circle at 8% 0%, rgba(21, 144, 255, 0.13), transparent 12rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(242, 248, 255, 0.82)),
    rgba(255, 255, 255, 0.84);
  box-shadow:
    0 20px 58px rgba(3, 22, 52, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  animation: none;
  backdrop-filter: blur(18px);
  transition:
    transform 240ms ease,
    box-shadow 240ms ease,
    border-color 240ms ease;
}

.process-card:nth-of-type(2) {
  animation-delay: 0ms;
}

.process-card:nth-of-type(3) {
  animation-delay: 0ms;
}

.process-card:nth-of-type(2)::before,
.process-card:nth-of-type(2) .process-number {
  animation-delay: -2.05s;
}

.process-card:nth-of-type(3)::before,
.process-card:nth-of-type(3) .process-number {
  animation-delay: -4.1s;
}

.process-card::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(90deg, transparent, rgba(21, 144, 255, 0.28), transparent) 0 100% / 52% 3px no-repeat,
    radial-gradient(circle at 12% 18%, rgba(21, 144, 255, 0.18), transparent 9rem);
  content: "";
  opacity: 0.55;
  animation: card-scan 6.2s ease-in-out infinite;
  pointer-events: none;
}

.process-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 18%, rgba(255, 255, 255, 0.42), transparent 34%);
  content: "";
  opacity: 0;
  transform: translateX(-65%);
  transition:
    opacity 220ms ease,
    transform 620ms ease;
}

.process-card:hover {
  border-color: rgba(21, 144, 255, 0.26);
  box-shadow: 0 26px 76px rgba(7, 88, 216, 0.18);
  transform: none;
}

.process-card:hover::after {
  opacity: 1;
  transform: translateX(70%);
}

.process-card-copy {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: start;
  gap: 12px;
  min-height: 0;
  height: 128px;
  padding: 4px 92px 14px 4px;
}

.process-number {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 16px;
  color: var(--white);
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.34), transparent 1.4rem),
    linear-gradient(135deg, var(--blue-800), var(--blue-500));
  box-shadow:
    0 16px 34px rgba(7, 88, 216, 0.24),
    inset 0 0 0 1px rgba(255, 255, 255, 0.28);
  font-size: 1rem;
  font-weight: 950;
  animation: step-beat 6.2s ease-in-out infinite;
}

.process-card h3 {
  margin: 0;
  color: var(--blue-950);
  font-size: 1.12rem;
  font-weight: 950;
  line-height: 1.08;
}

.process-card p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 650;
  line-height: 1.42;
}

.process-chip {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(7, 88, 216, 0.12);
  border-radius: 999px;
  color: var(--blue-800);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 30px rgba(3, 22, 52, 0.08);
  font-size: 0.72rem;
  font-weight: 950;
}

.process-visual {
  position: relative;
  z-index: 1;
  overflow: visible;
  display: flex;
  width: 100%;
  height: 224px;
  align-items: flex-start;
  justify-content: center;
  align-self: start;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.process-visual::after {
  display: none;
  content: "";
}

.process-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
  transition: none;
}

.process-card:nth-of-type(1) .process-visual img,
.process-card:nth-of-type(2) .process-visual img,
.process-card:nth-of-type(3) .process-visual img {
  border-radius: 14px;
  clip-path: inset(0 round 14px);
  filter: drop-shadow(0 14px 22px rgba(7, 88, 216, 0.12));
}

.process-card:hover .process-visual img {
  transform: none;
}

/* ============================================================
   ADVANTAGE / GUIDELINES — "Route Cluster" navigation system
   ============================================================ */
.advantage-section {
  position: relative;
  overflow: hidden;
  padding: 76px 0 100px;
  scroll-margin-top: 120px;
  background:
    radial-gradient(circle at 50% 40%, rgba(21, 144, 255, 0.10), transparent 30rem),
    linear-gradient(180deg, #ffffff 0%, #f5faff 100%);
}

.advantage-section::before {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background:
    linear-gradient(rgba(7, 88, 216, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 88, 216, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  mask-image: radial-gradient(circle at 50% 46%, black 0%, transparent 76%);
  pointer-events: none;
}

.advantage-heading {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin: 0 auto 44px;
  text-align: center;
}

.advantage-heading .section-kicker-blue {
  margin-inline: auto;
}

.advantage-heading h2 {
  max-width: 920px;
  margin: 14px auto 0;
  color: var(--blue-950);
  font-size: clamp(1.7rem, 2.7vw, 2.7rem);
  font-weight: 950;
  letter-spacing: -0.01em;
  line-height: 1.08;
}

.advantage-map {
  position: relative;
  display: grid;
  width: var(--container);
  max-width: 1120px;
  min-height: 600px;
  grid-template-columns: minmax(0, 1fr) 360px minmax(0, 1fr);
  grid-template-rows: repeat(4, 1fr);
  align-items: center;
  gap: 30px 18px;
  margin: 0 auto;
  isolation: isolate;
}

.advantage-map::before {
  position: absolute;
  inset: 6px 0;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 40px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.7), rgba(238, 246, 255, 0.34) 60%, transparent 73%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  content: "";
}

/* ---- SVG route layer (paths drawn by script.js) ---- */
.advantage-routes {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.route-casing {
  fill: none;
  stroke: rgba(255, 255, 255, 0.92);
  stroke-width: 6;
  stroke-linecap: round;
}

.route-line {
  fill: none;
  stroke: rgba(7, 88, 216, 0.6);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 1 8;
}

.route-dot {
  fill: var(--blue-600);
  stroke: rgba(255, 255, 255, 0.95);
  stroke-width: 2.4;
  filter: drop-shadow(0 2px 5px rgba(7, 88, 216, 0.4));
}

.route-flow {
  fill: none;
  stroke: var(--blue-500);
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-dasharray: 9 91;
  stroke-dashoffset: 100;
  opacity: 0;
  filter: drop-shadow(0 0 6px rgba(21, 144, 255, 0.8));
}

.advantage-map.is-revealed .route-flow {
  opacity: 1;
  animation: route-flow 3.4s linear infinite;
}

/* ---- Center hub: steering wheel ---- */
.advantage-center {
  position: relative;
  z-index: 3;
  display: grid;
  width: 340px;
  height: 340px;
  grid-column: 2;
  grid-row: 1 / 5;
  place-items: center;
  margin: 0 auto;
}

.hub-glow {
  position: absolute;
  inset: 42px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21, 144, 255, 0.26), transparent 66%);
  filter: blur(8px);
}

.hub-orbit {
  position: absolute;
  inset: 12px;
  border: 2px dashed rgba(7, 88, 216, 0.30);
  border-radius: 50%;
  animation: hub-spin 28s linear infinite;
}

.hub-orbit::before {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--blue-500);
  box-shadow: 0 0 0 6px rgba(21, 144, 255, 0.12), 0 0 18px rgba(21, 144, 255, 0.6);
  content: "";
  transform: translateX(-50%);
}

.hub-wheel {
  position: relative;
  display: grid;
  width: 240px;
  height: 240px;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 36%, #ffffff 0%, #eef5ff 62%, #dbeaff 100%);
  box-shadow:
    0 32px 74px rgba(3, 22, 52, 0.20),
    0 0 0 1px rgba(255, 255, 255, 0.7),
    inset 0 2px 0 rgba(255, 255, 255, 0.9);
  animation: hub-float 6.2s ease-in-out infinite;
}

.wheel-svg {
  width: 184px;
  height: 184px;
  filter: drop-shadow(0 12px 24px rgba(7, 88, 216, 0.22));
}

/* ---- Items ---- */
.advantage-item {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.6s ease var(--d, 0s),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) var(--d, 0s);
}

.advantage-map.is-revealed .advantage-item {
  opacity: 1;
  transform: none;
}

.advantage-left {
  grid-column: 1;
  grid-template-columns: minmax(0, 1fr) 62px;
  text-align: right;
}

.advantage-left .advantage-icon {
  grid-column: 2;
  grid-row: 1;
}

.advantage-left > div {
  grid-column: 1;
  grid-row: 1;
}

.advantage-right {
  grid-column: 3;
  text-align: left;
}

.advantage-one,
.advantage-five { grid-row: 1; }
.advantage-two,
.advantage-six { grid-row: 2; }
.advantage-three,
.advantage-seven { grid-row: 3; }
.advantage-four,
.advantage-eight { grid-row: 4; }

.advantage-icon {
  position: relative;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 19px;
  color: #fff;
  background:
    radial-gradient(circle at 32% 20%, rgba(255, 255, 255, 0.38), transparent 60%),
    linear-gradient(140deg, var(--blue-700), var(--blue-500));
  box-shadow:
    0 16px 32px rgba(7, 88, 216, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease;
}

.advantage-icon svg {
  width: 31px;
  height: 31px;
}

.advantage-item:hover .advantage-icon {
  transform: translateY(-4px) scale(1.07);
  box-shadow:
    0 24px 44px rgba(7, 88, 216, 0.40),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.advantage-item h3 {
  margin: 0;
  color: var(--blue-950);
  font-size: clamp(1.04rem, 1.3vw, 1.32rem);
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.18;
}

.advantage-item p {
  max-width: 320px;
  margin: 9px 0 0;
  color: #5a6678;
  font-size: 0.95rem;
  font-weight: 520;
  line-height: 1.56;
}

.advantage-left p {
  margin-left: auto;
}

@keyframes route-flow {
  to { stroke-dashoffset: 0; }
}

@keyframes hub-spin {
  to { transform: rotate(360deg); }
}

@keyframes hub-float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -9px, 0); }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes dock-rise {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -18px, 0);
  }
}

@keyframes aurora-shift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(2%, -2%, 0) scale(1.04);
  }
}

@keyframes route-glow {
  0%,
  100% {
    opacity: 0.25;
    filter: blur(0);
  }

  50% {
    opacity: 0.72;
    filter: blur(0.5px);
  }
}

@keyframes assurance-beam {
  0%,
  100% {
    opacity: 0.25;
    transform: translateX(-2%) rotate(-5deg);
  }

  50% {
    opacity: 0.85;
    transform: translateX(2%) rotate(-5deg);
  }
}

@keyframes map-pulse {
  0%,
  100% {
    transform: scale(0.9);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.12);
    opacity: 1;
  }
}

@keyframes card-drift {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -5px;
  }
}

@keyframes trust-sweep {
  0%,
  100% {
    opacity: 0.28;
    transform: translateX(-46%);
  }

  50% {
    opacity: 0.72;
    transform: translateX(46%);
  }
}

@keyframes process-rise {
  from {
    opacity: 0;
    transform: translateY(26px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes process-float {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -8px;
  }
}

@keyframes process-line {
  0%,
  100% {
    transform: translateX(-56%);
  }

  50% {
    transform: translateX(56%);
  }
}

@keyframes process-pulse {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(0.9);
  }

  50% {
    opacity: 0.9;
    transform: scale(1.16);
  }
}

@keyframes card-scan {
  0%,
  100% {
    background-position: -58% 100%, 0 0;
    opacity: 0.38;
  }

  42% {
    background-position: 138% 100%, 0 0;
    opacity: 0.82;
  }
}

@keyframes step-beat {
  0%,
  70%,
  100% {
    box-shadow:
      0 16px 34px rgba(7, 88, 216, 0.22),
      inset 0 0 0 1px rgba(255, 255, 255, 0.28);
    transform: scale(1);
  }

  16% {
    box-shadow:
      0 16px 34px rgba(7, 88, 216, 0.28),
      0 0 0 8px rgba(21, 144, 255, 0.12),
      inset 0 0 0 1px rgba(255, 255, 255, 0.38);
    transform: scale(1.06);
  }
}

@keyframes sheen {
  to {
    transform: translateX(130%);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 1040px) {
  :root {
    --container: min(100vw - 28px, 760px);
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    border-radius: 26px;
  }

  .nav-toggle {
    display: block;
  }

  .primary-nav,
  .header-actions {
    position: absolute;
    right: 0;
    left: 0;
    display: none;
    background: rgba(255, 255, 255, 0.96);
  }

  .primary-nav {
    top: calc(100% + 10px);
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border-radius: 24px;
    box-shadow: 0 18px 44px rgba(3, 22, 52, 0.12);
  }

  .header-actions {
    top: calc(100% + 282px);
    justify-content: center;
    padding: 12px;
    border-radius: 20px;
  }

  .site-header.nav-open .primary-nav,
  .site-header.nav-open .header-actions {
    display: flex;
  }

  .site-header.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .site-header.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .hero {
    display: flex;
    min-height: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 22px;
    padding: 132px 0 246px;
  }

  .hero-bg {
    inset: 92px -14px 70px;
    border-radius: 30px;
  }

  .application-card {
    order: 2;
    width: 100%;
  }

  .hero-copy {
    order: 1;
  }

  .partners-strip {
    grid-template-columns: 1fr;
  }

  .logo-tile {
    flex-basis: calc((100% - 36px) / 4);
  }

  .assurance-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .assurance-card {
    min-height: 112px;
  }

  .process-section {
    padding-bottom: 72px;
  }

  .process-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-card-final {
    grid-column: 1 / -1;
  }

  .process-line {
    display: none;
  }

  .advantage-section {
    padding: 44px 0 72px;
  }

  .advantage-map {
    min-height: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
    gap: 14px;
  }

  .advantage-map::before {
    inset: 0;
    border-radius: 30px;
  }

  .advantage-routes {
    display: none;
  }

  .advantage-center {
    width: 240px;
    height: 240px;
    grid-column: 1 / -1;
    grid-row: auto;
    margin: 6px auto 12px;
  }

  .hub-wheel {
    width: 188px;
    height: 188px;
  }

  .wheel-svg {
    width: 142px;
    height: 142px;
  }

  .advantage-left,
  .advantage-right {
    grid-column: auto;
    grid-row: auto;
    grid-template-columns: 52px minmax(0, 1fr);
    text-align: left;
  }

  .advantage-left .advantage-icon,
  .advantage-left > div {
    grid-column: auto;
    grid-row: auto;
  }

  .advantage-item {
    min-height: 118px;
    padding: 18px 16px;
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.74);
    box-shadow: 0 16px 40px rgba(3, 22, 52, 0.08);
    backdrop-filter: blur(14px);
  }

  .advantage-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
  }

  .advantage-icon svg {
    width: 27px;
    height: 27px;
  }

  .advantage-left p {
    margin-left: 0;
  }
}

@media (max-width: 620px) {
  :root {
    --container: min(100vw - 22px, 460px);
  }

  .brand,
  .brand img {
    width: 146px;
  }

  .hero {
    padding-bottom: 26px;
  }

  .hero-copy {
    text-align: left;
  }

  h1 {
    font-size: clamp(1.7rem, 8vw, 2.6rem);
  }

  .lead {
    line-height: 1.7;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .application-card {
    padding: 22px;
    border-radius: 24px;
  }

  .application-card h2 {
    font-size: 1.62rem;
  }

  .country-menu {
    position: fixed;
    top: 106px;
    right: 16px;
    left: 16px;
    width: auto;
  }

  .country-list {
    max-height: min(58vh, 420px);
  }

  .partners-strip {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    order: 3;
    width: 100%;
    margin-top: 6px;
    padding: 14px;
    border-radius: 22px;
  }

  .strip-heading strong {
    font-size: 0.9rem;
  }

  .logo-tile {
    flex-basis: calc((100% - 24px) / 3);
    height: 76px;
  }

  .logo-tile img {
    max-height: 40px;
  }

  .chat-fab {
    right: 18px;
    bottom: 18px;
    width: 56px;
    height: 56px;
  }

  .assurance-section {
    padding: 24px 0 40px;
  }

  .assurance-shell {
    padding: 12px;
    border-radius: 24px;
  }

  .assurance-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .assurance-card {
    min-height: 96px;
    grid-template-columns: 48px 1fr;
    gap: 12px;
    padding: 14px;
    border-radius: 18px;
  }

  .assurance-icon {
    width: 48px;
    height: 48px;
    border-radius: 15px;
  }

  .assurance-card h3 {
    font-size: 1rem;
  }

  .assurance-card p {
    font-size: 0.82rem;
    line-height: 1.38;
  }

  .process-section {
    padding: 24px 0 58px;
  }

  .process-heading {
    margin-bottom: 20px;
    text-align: left;
  }

  .process-heading h2 {
    font-size: clamp(1.95rem, 11vw, 2.9rem);
  }

  .process-heading > p:last-child {
    margin-top: 10px;
    font-size: 0.95rem;
  }

  .process-shell {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .process-card-final {
    grid-column: auto;
  }

  .process-card {
    min-height: auto;
    grid-template-rows: auto auto;
    padding: 12px;
    border-radius: 24px;
  }

  .process-card-copy {
    grid-template-columns: 48px 1fr;
    height: auto;
    min-height: 112px;
    padding: 4px 2px 12px;
  }

  .process-chip {
    display: none;
  }

  .process-number {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    font-size: 1rem;
  }

  .process-card h3 {
    font-size: 1.05rem;
  }

  .process-card p {
    font-size: 0.82rem;
    line-height: 1.42;
  }

  .process-visual {
    height: 216px;
  }

  .process-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .advantage-section {
    padding: 12px 0 58px;
  }

  .advantage-heading {
    margin-bottom: 16px;
    text-align: left;
  }

  .advantage-heading h2 {
    font-size: clamp(1.85rem, 9.5vw, 2.6rem);
  }

  .advantage-map {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .advantage-map::before {
    display: none;
  }

  .advantage-center {
    width: 210px;
    height: 210px;
  }

  .hub-wheel {
    width: 168px;
    height: 168px;
  }

  .wheel-svg {
    width: 126px;
    height: 126px;
  }

  .advantage-item {
    min-height: 104px;
    grid-template-columns: 48px 1fr;
    gap: 12px;
    padding: 14px;
    border-radius: 18px;
  }

  .advantage-icon {
    width: 48px;
    height: 48px;
    border-radius: 15px;
  }

  .advantage-item h3 {
    font-size: 1rem;
  }

  .advantage-item p {
    font-size: 0.82rem;
    line-height: 1.42;
  }
}

/* ============================================================
   PRICING & COVERAGE — premium blue, animated
   ============================================================ */
.pricing-section {
  position: relative;
  overflow: hidden;
  padding: 76px 0 100px;
  scroll-margin-top: 110px;
}

.pricing-aurora {
  position: absolute;
  inset: -12% -20% auto -20%;
  height: 62%;
  background:
    radial-gradient(42% 70% at 32% 0%, rgba(36, 86, 230, 0.16), transparent 70%),
    radial-gradient(46% 80% at 76% 6%, rgba(79, 134, 255, 0.16), transparent 72%);
  filter: blur(8px);
  pointer-events: none;
}

.pricing-heading {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 0 auto 34px;
  text-align: center;
}

.pricing-heading .section-kicker-blue {
  margin-inline: auto;
}

.pricing-heading h2 {
  max-width: 860px;
  margin: 12px auto 0;
  color: var(--blue-950);
  font-size: clamp(1.7rem, 2.8vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.06;
}

.pricing-heading h2 span {
  color: var(--blue-700);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 500;
  white-space: nowrap;
}

.pricing-sub {
  max-width: 600px;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.55;
}

/* ---- Validity toggle ---- */
.validity-toggle {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(520px, 100%);
  margin: 26px auto 0;
  padding: 6px;
  border: 1px solid rgba(36, 86, 230, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 14px 38px rgba(36, 86, 230, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
}

.validity-thumb {
  position: absolute;
  top: 6px;
  left: 6px;
  z-index: 0;
  width: calc((100% - 12px) / 3);
  height: calc(100% - 12px);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue-800), var(--blue-600) 70%, var(--blue-500));
  box-shadow: 0 12px 26px rgba(36, 86, 230, 0.34);
  transform: translateX(calc(var(--i, 0) * 100%));
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.validity-opt {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  padding: 9px 6px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--blue-900);
  cursor: pointer;
  transition: color 0.3s ease;
}

.validity-opt .vo-title {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.validity-opt .vo-sub {
  font-size: 0.74rem;
  font-weight: 600;
  opacity: 0.6;
}

.validity-opt.is-active {
  color: #fff;
}

.validity-opt.is-active .vo-sub {
  opacity: 0.85;
}

/* ---- Cards grid ---- */
.pricing-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 24px;
  width: var(--container);
  max-width: 1080px;
  margin: 40px auto 0;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border-radius: 30px;
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease;
}

.price-card.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.price-card.is-soft.pc-reveal {
  transition-delay: 0.12s;
}

/* soft / light card */
.price-card.is-soft {
  border: 1px solid rgba(36, 86, 230, 0.12);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 22px 56px rgba(10, 27, 61, 0.08);
  backdrop-filter: blur(16px);
}

.price-card.is-soft:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 70px rgba(36, 86, 230, 0.16);
}

/* featured / navy card */
.price-card.is-featured {
  color: #fff;
  border: 1px solid rgba(120, 165, 255, 0.22);
  background:
    radial-gradient(125% 80% at 0% 0%, rgba(49, 104, 243, 0.42), transparent 58%),
    linear-gradient(157deg, #0a1b3d 0%, #122a63 52%, #1c3da0 100%);
  box-shadow: 0 38px 90px rgba(10, 27, 61, 0.38);
}

.price-card.is-featured:hover {
  transform: translateY(-8px);
  box-shadow: 0 50px 110px rgba(10, 27, 61, 0.46);
}

/* angle driver for the orbiting edge light (synced across layers) */
@property --pc-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: true;
}

.price-card.is-featured.is-revealed {
  animation: pc-orbit 6.5s linear infinite;
}

/* keep the real content above the ambient light layers */
.price-card.is-featured
  > :not(.pc-aura):not(.pc-halo):not(.pc-orbs):not(.pc-shine) {
  position: relative;
  z-index: 1;
}

/* soft comet bloom behind the card */
.pc-halo {
  position: absolute;
  inset: -10px;
  z-index: -1;
  border-radius: 40px;
  background: conic-gradient(
    from var(--pc-angle),
    transparent 0 56%,
    rgba(88, 150, 255, 0.5) 80%,
    rgba(150, 200, 255, 0.82) 90%,
    rgba(88, 150, 255, 0.3) 94%,
    transparent 99% 100%
  );
  filter: blur(16px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.9s ease;
}

.price-card.is-featured.is-revealed .pc-halo {
  opacity: 0.6;
}

/* ambient aurora orbs drifting inside the card */
.pc-orbs {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  border-radius: 30px;
  pointer-events: none;
}

.pc-orbs::before,
.pc-orbs::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.pc-orbs::before {
  top: 6%;
  left: -12%;
  width: 62%;
  height: 58%;
  background: radial-gradient(
    circle at center,
    rgba(88, 150, 255, 0.55),
    rgba(88, 150, 255, 0) 70%
  );
  filter: blur(28px);
  mix-blend-mode: screen;
}

.pc-orbs::after {
  right: -14%;
  bottom: 2%;
  width: 58%;
  height: 62%;
  background: radial-gradient(
    circle at center,
    rgba(126, 192, 255, 0.42),
    rgba(126, 192, 255, 0) 70%
  );
  filter: blur(32px);
  mix-blend-mode: screen;
}

.price-card.is-featured.is-revealed .pc-orbs::before {
  animation: pc-orb-a 15s ease-in-out infinite;
}

.price-card.is-featured.is-revealed .pc-orbs::after {
  animation: pc-orb-b 19s ease-in-out infinite;
}

/* crisp light travelling smoothly along the rounded edge (signature) */
.pc-aura {
  position: absolute;
  inset: -1px;
  z-index: 3;
  border-radius: 31px;
  padding: 1.6px;
  background: conic-gradient(
    from var(--pc-angle),
    transparent 0 62%,
    rgba(120, 180, 255, 0) 66%,
    rgba(150, 200, 255, 0.9) 80%,
    #eaf2ff 88%,
    rgba(120, 180, 255, 0.65) 92%,
    transparent 96% 100%
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
}

.price-card.is-featured.is-revealed .pc-aura {
  opacity: 1;
}

/* shine sweep */
.pc-shine {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  border-radius: 30px;
  pointer-events: none;
}

.pc-shine::before {
  position: absolute;
  top: -60%;
  left: -40%;
  width: 45%;
  height: 220%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  content: "";
  transform: translateX(-160%) rotate(8deg);
}

.price-card.is-featured.is-revealed .pc-shine::before {
  animation: shine-sweep 1.4s ease 0.5s 1;
}

/* badge */
.pc-badge {
  align-self: flex-start;
  margin-bottom: 18px;
  padding: 8px 15px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.price-card.is-featured .pc-badge {
  color: var(--blue-950);
  background: linear-gradient(135deg, #ffffff, #cfe0ff);
  box-shadow: 0 8px 22px rgba(10, 27, 61, 0.3);
}

.pc-badge-soft {
  color: var(--blue-700);
  background: rgba(36, 86, 230, 0.1);
}

/* top row */
.pc-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.pc-name {
  margin: 0;
  font-size: clamp(1.5rem, 2.1vw, 1.95rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.price-card.is-soft .pc-name {
  color: var(--blue-950);
}

.pc-name em {
  font-style: normal;
  color: var(--blue-600);
}

.price-card.is-featured .pc-name em {
  color: #9cc0ff;
}

.pc-tag {
  margin: 9px 0 0;
  max-width: 30ch;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.45;
}

.price-card.is-featured .pc-tag {
  color: rgba(255, 255, 255, 0.78);
}

.price-card.is-soft .pc-tag {
  color: var(--muted);
}

.pc-price {
  display: grid;
  justify-items: end;
  flex-shrink: 0;
  line-height: 1;
}

.pc-amount {
  font-size: clamp(1.9rem, 2.8vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.price-card.is-soft .pc-amount {
  color: var(--blue-950);
}

.pc-was {
  margin-top: 4px;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: line-through;
  opacity: 0.5;
}

.pc-save {
  margin-top: 9px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.price-card.is-featured .pc-save {
  background: rgba(156, 192, 255, 0.18);
  color: #9cc0ff;
}

.price-card.is-soft .pc-save {
  background: rgba(36, 86, 230, 0.1);
  color: var(--blue-700);
}

/* ---- Media plate (images enlarged, box unchanged) ---- */
.pc-media {
  display: grid;
  place-items: center;
  margin: 22px 0 26px;
  padding: 14px;
  height: 360px;
  overflow: hidden;
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 26%, #ffffff 0%, #ffffff 42%, #eaf1ff 100%);
  box-shadow: inset 0 0 0 1px rgba(36, 86, 230, 0.06);
}

.price-card.is-featured .pc-media {
  background:
    radial-gradient(circle at 50% 22%, #ffffff 0%, #ffffff 44%, #e6eeff 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.pc-media img {
  width: auto;
  height: auto;
  max-width: 100%;
  margin: auto;
  object-fit: contain;
  filter: drop-shadow(0 22px 36px rgba(10, 27, 61, 0.26));
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.pc-media.is-portrait img {
  max-height: 338px;
}

.pc-media.is-wide img {
  max-height: 300px;
}

.price-card.is-revealed .pc-media img {
  animation: media-float 6s ease-in-out 0.6s infinite;
}

.price-card:hover .pc-media img {
  transform: scale(1.07);
}

/* ---- Features ---- */
.pc-feats {
  display: grid;
  gap: 13px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.pc-feats li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.97rem;
  font-weight: 600;
}

.price-card.is-featured .pc-feats li {
  color: rgba(255, 255, 255, 0.92);
}

.price-card.is-soft .pc-feats li {
  color: var(--blue-900);
}

.pc-feats svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  stroke-dasharray: 64;
  stroke-dashoffset: 64;
}

.price-card.is-featured .pc-feats svg {
  color: #9cc0ff;
}

.price-card.is-soft .pc-feats svg {
  color: var(--blue-600);
}

.price-card.is-revealed .pc-feats svg {
  animation: check-draw 0.55s ease forwards;
}

.price-card.is-revealed .pc-feats li:nth-child(1) svg { animation-delay: 0.35s; }
.price-card.is-revealed .pc-feats li:nth-child(2) svg { animation-delay: 0.48s; }
.price-card.is-revealed .pc-feats li:nth-child(3) svg { animation-delay: 0.61s; }
.price-card.is-revealed .pc-feats li:nth-child(4) svg { animation-delay: 0.74s; }

/* ---- CTA ---- */
.pc-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: auto;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 16px;
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    gap 0.28s ease,
    background 0.28s ease,
    color 0.28s ease;
}

.price-card.is-featured .pc-cta {
  color: var(--blue-800);
  background: linear-gradient(135deg, #ffffff, #e4edff);
  box-shadow: 0 18px 40px rgba(10, 27, 61, 0.34);
}

.price-card.is-featured .pc-cta:hover {
  color: var(--blue-900);
  box-shadow: 0 24px 50px rgba(126, 192, 255, 0.4);
}

.pc-cta svg {
  width: 20px;
  height: 20px;
}

.pc-cta:hover {
  transform: translateY(-2px);
  gap: 14px;
}

.pc-cta-ghost {
  color: var(--blue-700);
  background: rgba(36, 86, 230, 0.08);
  box-shadow: inset 0 0 0 1.5px rgba(36, 86, 230, 0.22);
}

.pc-cta-ghost:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  box-shadow: 0 18px 38px rgba(36, 86, 230, 0.34);
}

.pc-valid {
  margin: 14px 0 0;
  text-align: center;
  font-size: 0.84rem;
  font-weight: 600;
}

.price-card.is-featured .pc-valid {
  color: rgba(255, 255, 255, 0.62);
}

.price-card.is-soft .pc-valid {
  color: var(--muted);
}

.pc-valid b {
  font-weight: 800;
}

.price-card.is-featured .pc-valid b {
  color: #9cc0ff;
}

.price-card.is-soft .pc-valid b {
  color: var(--blue-700);
}

/* ---- Trust strip ---- */
.pricing-trust {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 30px;
  width: var(--container);
  margin: 34px auto 0;
}

.pricing-trust span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue-900);
  font-size: 0.92rem;
  font-weight: 700;
}

.pricing-trust svg {
  width: 20px;
  height: 20px;
  color: var(--blue-600);
}

@keyframes pc-orbit {
  to { --pc-angle: 360deg; }
}

@keyframes pc-orb-a {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(24%, 20%) scale(1.18); }
}

@keyframes pc-orb-b {
  0%, 100% { transform: translate(0, 0) scale(1.05); }
  50% { transform: translate(-22%, -16%) scale(1); }
}

@keyframes shine-sweep {
  to { transform: translateX(420%) rotate(8deg); }
}

@keyframes media-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes check-draw {
  to { stroke-dashoffset: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .price-card,
  .price-card.is-featured.is-revealed,
  .pc-aura,
  .pc-halo,
  .pc-orbs::before,
  .pc-orbs::after,
  .pc-media img {
    animation: none !important;
    transition: none !important;
  }
  .price-card { opacity: 1; transform: none; }
  .pc-feats svg { stroke-dashoffset: 0; }
}

@media (max-width: 940px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 560px;
  }
}

@media (max-width: 620px) {
  .pricing-section {
    padding: 48px 0 70px;
  }

  .validity-opt .vo-title { font-size: 0.82rem; }
  .validity-opt .vo-sub { font-size: 0.66rem; }

  .price-card {
    padding: 22px;
    border-radius: 26px;
  }

  .pc-top { flex-direction: column; }
  .pc-price { justify-items: start; }

  .pc-media {
    height: 300px;
    margin: 18px 0 22px;
  }

  .pc-media.is-portrait img { max-height: 268px; }
  .pc-media.is-wide img { max-height: 240px; }

  .pricing-trust {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}

/* ============================================================
   CUSTOMER REVIEWS — animated marquee wall
   ============================================================ */
.reviews-section {
  position: relative;
  overflow: hidden;
  padding: 74px 0 92px;
  scroll-margin-top: 110px;
}

.reviews-aurora {
  position: absolute;
  inset: -10% -20% auto -20%;
  height: 56%;
  background:
    radial-gradient(40% 70% at 28% 0%, rgba(36, 86, 230, 0.14), transparent 70%),
    radial-gradient(46% 80% at 74% 4%, rgba(79, 134, 255, 0.14), transparent 72%);
  filter: blur(8px);
  pointer-events: none;
}

.reviews-heading {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 0 auto 40px;
  text-align: center;
}

.reviews-heading .section-kicker-blue {
  margin-inline: auto;
}

.reviews-heading h2 {
  margin: 12px auto 0;
  color: var(--blue-950);
  font-size: clamp(1.7rem, 2.8vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.06;
}

.reviews-heading h2 span {
  color: var(--blue-700);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 500;
  white-space: nowrap;
}

/* ---- Google trust badge ---- */
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
  padding: 12px 22px 12px 14px;
  border: 1px solid rgba(36, 86, 230, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 40px rgba(10, 27, 61, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reviews-section.is-revealed .trust-badge {
  opacity: 1;
  transform: none;
}

.tb-avatars {
  display: flex;
}

.tb-av {
  display: grid;
  width: 42px;
  height: 42px;
  margin-left: -12px;
  place-items: center;
  border: 2.5px solid #fff;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--g1), var(--g2));
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  box-shadow: 0 6px 14px rgba(10, 27, 61, 0.18);
}

.tb-av:first-child {
  margin-left: 0;
}

.tb-rating {
  display: grid;
  gap: 2px;
  text-align: left;
}

.tb-top {
  display: flex;
  align-items: center;
  gap: 8px;
}

.tb-g {
  display: inline-flex;
  width: 21px;
  height: 21px;
}

.tb-g svg {
  width: 100%;
  height: 100%;
}

.tb-score {
  color: var(--blue-950);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.tb-stars {
  display: inline-flex;
  gap: 1px;
}

.tb-stars svg {
  width: 18px;
  height: 18px;
  fill: #00b67a;
}

.tb-sub {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.tb-sub b {
  color: var(--blue-900);
  font-weight: 800;
}

/* ---- Marquee ---- */
.reviews-marquee {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 22px;
}

.rm-row {
  display: flex;
  overflow: hidden;
}

.rm-track {
  display: flex;
  flex-shrink: 0;
  gap: 22px;
  padding: 10px 11px;
  width: max-content;
  animation: marquee 85s linear infinite;
  will-change: transform;
}

.rm-track.rm-reverse {
  animation-direction: reverse;
  animation-duration: 54s;
}

.reviews-marquee:hover .rm-track {
  animation-play-state: paused;
}

/* edge fades */
.rm-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 90px;
  pointer-events: none;
}

.rm-fade-l {
  left: 0;
  background: linear-gradient(90deg, #f8fbff, rgba(248, 251, 255, 0));
}

.rm-fade-r {
  right: 0;
  background: linear-gradient(270deg, #f8fbff, rgba(248, 251, 255, 0));
}

/* ---- Review card ---- */
.review-card {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  width: 350px;
  padding: 24px;
  border: 1px solid rgba(36, 86, 230, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 40px rgba(10, 27, 61, 0.07);
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.32s ease,
    border-color 0.32s ease;
}

.review-card:hover {
  transform: translateY(-6px);
  border-color: rgba(36, 86, 230, 0.26);
  box-shadow: 0 28px 60px rgba(36, 86, 230, 0.16);
}

.rc-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rc-avatar {
  display: grid;
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--g1), var(--g2));
  color: #fff;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  box-shadow: 0 8px 18px rgba(10, 27, 61, 0.2);
}

.rc-id {
  display: grid;
  gap: 1px;
  margin-right: auto;
}

.rc-id strong {
  color: var(--blue-950);
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.rc-route {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
}

.rc-route i {
  color: var(--blue-500);
  font-style: normal;
  font-weight: 800;
}

.rc-google {
  display: inline-flex;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  align-self: flex-start;
}

.rc-google svg {
  width: 100%;
  height: 100%;
}

.rc-stars {
  display: flex;
  gap: 2px;
  margin: 16px 0 10px;
}

.rc-stars svg {
  width: 17px;
  height: 17px;
  fill: #00b67a;
}

.rc-text {
  margin: 0 0 16px;
  color: #38475f;
  font-size: 0.97rem;
  font-weight: 500;
  line-height: 1.55;
}

.rc-verified {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  color: var(--blue-700);
  font-size: 0.8rem;
  font-weight: 700;
}

.rc-verified svg {
  width: 16px;
  height: 16px;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .rm-track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
  }
  .rm-track.rm-reverse { animation: none; }
  .trust-badge { opacity: 1; transform: none; }
}

@media (max-width: 620px) {
  .reviews-section {
    padding: 50px 0 64px;
  }

  .trust-badge {
    flex-direction: column;
    gap: 12px;
    border-radius: 26px;
    padding: 18px 22px;
  }

  .tb-rating {
    text-align: center;
  }

  .tb-top {
    justify-content: center;
  }

  .review-card {
    width: 290px;
    padding: 20px;
  }

  .rm-fade {
    width: 44px;
  }
}

/* ============================================================
   COUNTRIES & COVERAGE — SEO + interactive
   ============================================================ */
.countries-section {
  position: relative;
  overflow: hidden;
  padding: 74px 0 96px;
  scroll-margin-top: 110px;
}

.countries-aurora {
  position: absolute;
  inset: -10% -20% auto -20%;
  height: 54%;
  background:
    radial-gradient(40% 70% at 26% 0%, rgba(36, 86, 230, 0.13), transparent 70%),
    radial-gradient(46% 80% at 76% 4%, rgba(79, 134, 255, 0.14), transparent 72%);
  filter: blur(8px);
  pointer-events: none;
}

.countries-heading {
  position: relative;
  z-index: 1;
  width: var(--container);
  max-width: 760px;
  margin: 0 auto 26px;
  text-align: center;
}

.countries-heading .section-kicker-blue {
  margin-inline: auto;
}

.countries-heading h2 {
  margin: 12px auto 0;
  color: var(--blue-950);
  font-size: clamp(1.7rem, 2.8vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.countries-heading h2 span {
  color: var(--blue-700);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 500;
}

.countries-sub {
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.6;
}

.countries-sub strong {
  color: var(--blue-800);
  font-weight: 800;
}

/* ---- Stats ---- */
.countries-stats {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  width: var(--container);
  margin: 0 auto 30px;
}

.cstat {
  display: grid;
  gap: 2px;
  padding: 14px 26px;
  border: 1px solid rgba(36, 86, 230, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 12px 30px rgba(10, 27, 61, 0.06);
  backdrop-filter: blur(10px);
  text-align: center;
}

.cstat b {
  color: var(--blue-700);
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}

.cstat b i {
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 700;
}

.cstat span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

/* ---- Panel ---- */
.countries-panel {
  position: relative;
  z-index: 1;
  width: var(--container);
  max-width: 1080px;
  margin: 0 auto;
  padding: 26px;
  border: 1px solid rgba(36, 86, 230, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 26px 64px rgba(10, 27, 61, 0.08);
  backdrop-filter: blur(16px);
}

.countries-tools {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.country-search {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1 1 280px;
  min-width: 240px;
  padding: 13px 18px;
  border: 1.5px solid rgba(36, 86, 230, 0.16);
  border-radius: 14px;
  background: #fff;
  color: var(--blue-700);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.country-search:focus-within {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 4px rgba(36, 86, 230, 0.12);
}

.country-search svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.country-search input {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--blue-950);
  font: inherit;
  font-size: 0.98rem;
  font-weight: 500;
  outline: none;
}

.country-search input::placeholder {
  color: #9aa6bd;
  font-weight: 500;
}

.region-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.region-chip {
  padding: 9px 15px;
  border: 1.5px solid rgba(36, 86, 230, 0.16);
  border-radius: 999px;
  background: #fff;
  color: var(--blue-800);
  font: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
}

.region-chip:hover {
  border-color: var(--blue-500);
  color: var(--blue-700);
}

.region-chip.is-active {
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  color: #fff;
  box-shadow: 0 10px 22px rgba(36, 86, 230, 0.32);
}

.countries-count {
  margin: 18px 2px 14px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.countries-count b {
  color: var(--blue-800);
  font-weight: 800;
}

/* ---- Grid ---- */
.countries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}

.country-card {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px 16px;
  border: 1px solid rgba(36, 86, 230, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  opacity: 0;
  transform: translateY(14px);
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    opacity 0.5s ease;
}

.countries-section.is-revealed .country-card {
  opacity: 1;
  transform: translateY(0);
}

.country-card:hover {
  transform: translateY(-4px);
  border-color: rgba(36, 86, 230, 0.3);
  box-shadow: 0 18px 38px rgba(36, 86, 230, 0.16);
}

.cc-flag {
  display: grid;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 11px;
  background: linear-gradient(150deg, #eaf1ff, #d8e6ff);
  font-size: 1.35rem;
  line-height: 1;
}

.cc-body {
  display: grid;
  gap: 1px;
  margin-right: auto;
}

.cc-name {
  color: var(--blue-950);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.cc-sub {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 600;
}

.cc-arrow {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--blue-500);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.country-card:hover .cc-arrow {
  opacity: 1;
  transform: translateX(0);
}

.countries-empty {
  margin: 8px 2px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.countries-empty a {
  color: var(--blue-700);
  font-weight: 800;
}

.countries-note {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 26px auto 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 600;
}

.countries-note a {
  color: var(--blue-700);
  font-weight: 800;
}

@media (prefers-reduced-motion: reduce) {
  .country-card { opacity: 1; transform: none; }
}

@media (max-width: 620px) {
  .countries-section {
    padding: 50px 0 66px;
  }

  .countries-panel {
    padding: 18px;
    border-radius: 24px;
  }

  .countries-tools {
    flex-direction: column;
    align-items: stretch;
  }

  .region-chips {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
  }

  .region-chip {
    flex-shrink: 0;
  }

  .countries-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }

  .cstat {
    flex: 1 1 40%;
    padding: 12px 14px;
  }
}

/* ============================================================
   FAQ — "Answer console": sticky rail + searchable, categorized
   accordion. On-brand (Jakarta / blue→cyan), premium motion.
   ============================================================ */
.faq-section {
  position: relative;
  overflow: hidden;
  padding: 92px 0 112px;
  scroll-margin-top: 110px;
}
.faq-aurora {
  position: absolute;
  inset: -12% -18% auto -22%;
  height: 60%;
  background:
    radial-gradient(38% 60% at 18% 0%, rgba(36, 86, 230, 0.12), transparent 70%),
    radial-gradient(36% 58% at 88% 4%, rgba(126, 192, 255, 0.16), transparent 72%);
  filter: blur(8px);
  pointer-events: none;
  z-index: 0;
}
.faq-wrap {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(290px, 360px) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

/* ---------- LEFT RAIL ---------- */
.faq-rail {
  position: sticky;
  top: 96px;
}
.faq-rail h2 {
  margin: 12px 0 0;
  color: var(--blue-950);
  font-size: clamp(2rem, 3.2vw, 2.95rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.04;
}
.faq-rail h2 span {
  background: linear-gradient(100deg, var(--blue-700), var(--blue-500) 52%, var(--cyan-300));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.faq-lead {
  margin: 16px 0 24px;
  max-width: 38ch;
  color: var(--muted);
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.6;
}

/* search */
.faq-search {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 52px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 30px rgba(10, 27, 61, 0.07);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-search:focus-within {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(79, 134, 255, 0.16);
}
.faq-search svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  color: var(--blue-700);
}
.faq-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: none;
  color: var(--ink);
  font: inherit;
  font-size: 0.98rem;
}
.faq-search input::placeholder { color: #9aa6bd; }

/* category list */
.faq-cats {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 18px;
}
.faq-cat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border: 0;
  border-radius: 13px;
  background: none;
  color: var(--blue-950);
  font: inherit;
  font-size: 0.96rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.faq-cat:hover { background: rgba(36, 86, 230, 0.07); }
.faq-cat:active { transform: scale(0.99); }
.faq-cat-n {
  flex: 0 0 auto;
  min-width: 26px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(36, 86, 230, 0.1);
  color: var(--blue-700);
  font-size: 0.78rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}
.faq-cat.is-active {
  background: linear-gradient(120deg, var(--blue-700), var(--blue-600) 60%, var(--blue-500));
  color: #fff;
  box-shadow: 0 14px 30px rgba(36, 86, 230, 0.32);
}
.faq-cat.is-active .faq-cat-n {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

/* conversion help card */
/* right column wrapper */
.faq-main {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

/* conversion help — horizontal banner under the questions */
.faq-help {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 4px;
  padding: 20px 24px;
  border: 1px solid rgba(36, 86, 230, 0.16);
  border-radius: 18px;
  background:
    radial-gradient(120% 180% at 100% 0%, rgba(126, 192, 255, 0.18), transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 249, 255, 0.92));
  box-shadow: 0 18px 44px rgba(10, 27, 61, 0.08);
}
.faq-help-ic {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  box-shadow: 0 10px 22px rgba(36, 86, 230, 0.32);
}
.faq-help-ic svg { width: 23px; height: 23px; color: #fff; }
.faq-help-text { flex: 1; min-width: 0; }
.faq-help-t {
  margin: 0 0 3px;
  color: var(--blue-950);
  font-size: 1.06rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.faq-help-s {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.55;
}
.faq-help-cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 46px;
  padding: 0 22px;
  border-radius: 12px;
  background: var(--blue-700);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 12px 26px rgba(36, 86, 230, 0.3);
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
}
.faq-help-cta:hover {
  transform: translateY(-2px);
  background: var(--blue-600);
  box-shadow: 0 18px 34px rgba(36, 86, 230, 0.4);
}

/* ---------- RIGHT: ACCORDION ---------- */
.faq-list { position: relative; }
.faq-item {
  position: relative;
  overflow: hidden;
  margin-bottom: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(10, 27, 61, 0.02);
  transition: border-color 0.28s, box-shadow 0.28s, background 0.28s, transform 0.18s;
}
.faq-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--blue-700), var(--cyan-300));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.36s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item:hover {
  border-color: rgba(36, 86, 230, 0.28);
  box-shadow: 0 12px 30px rgba(10, 27, 61, 0.08);
}
.faq-item.is-open {
  border-color: rgba(36, 86, 230, 0.24);
  background: linear-gradient(180deg, #ffffff, #f7faff);
  box-shadow: 0 22px 54px rgba(36, 86, 230, 0.13);
}
.faq-item.is-open::before { transform: scaleY(1); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  border: 0;
  background: none;
  cursor: pointer;
  text-align: left;
  font: inherit;
}
.faq-q-text {
  color: var(--blue-950);
  font-size: clamp(1rem, 1.05vw, 1.12rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.42;
}
.faq-item.is-open .faq-q-text { color: var(--blue-800); }

/* morphing circular plus -> minus */
.faq-ic {
  position: relative;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: var(--white);
  transition: transform 0.36s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.faq-ic i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background: var(--blue-700);
  transform: translate(-50%, -50%);
  transition: transform 0.36s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s;
}
.faq-ic i:last-child { transform: translate(-50%, -50%) rotate(90deg); }
.faq-q:hover .faq-ic { border-color: rgba(36, 86, 230, 0.4); }
.faq-item.is-open .faq-ic {
  transform: rotate(180deg);
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  border-color: transparent;
  box-shadow: 0 10px 22px rgba(36, 86, 230, 0.4);
}
.faq-item.is-open .faq-ic i { background: #fff; }
.faq-item.is-open .faq-ic i:last-child { transform: translate(-50%, -50%) rotate(0deg); }

/* answer — buttery height via grid-rows */
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-a > div { overflow: hidden; }
.faq-item.is-open .faq-a { grid-template-rows: 1fr; }
.faq-a p {
  margin: 0;
  padding: 0 24px 24px 24px;
  max-width: 64ch;
  color: var(--muted);
  font-size: 0.99rem;
  font-weight: 500;
  line-height: 1.72;
}
.faq-a p strong { color: var(--blue-800); font-weight: 700; }

/* empty state */
.faq-empty {
  margin: 8px 2px;
  padding: 28px 24px;
  border: 1px dashed rgba(36, 86, 230, 0.28);
  border-radius: 16px;
  color: var(--muted);
  font-size: 0.98rem;
  text-align: center;
}
.faq-empty a { color: var(--blue-700); font-weight: 700; text-decoration: none; }
.faq-empty a:hover { text-decoration: underline; }

/* one-time reveal */
.faq-rail, .faq-main { opacity: 0; transform: translateY(16px); }
.faq-section.is-revealed .faq-rail,
.faq-section.is-revealed .faq-main {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.faq-section.is-revealed .faq-main { transition-delay: 0.08s; }

/* focus visibility */
.faq-q:focus-visible,
.faq-cat:focus-visible,
.faq-help-cta:focus-visible {
  outline: 3px solid rgba(79, 134, 255, 0.55);
  outline-offset: 3px;
  border-radius: 12px;
}

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .faq-wrap { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .faq-rail { position: static; }
  .faq-lead { max-width: none; }
  .faq-cats {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 8px;
    margin-top: 16px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }
  .faq-cats::-webkit-scrollbar { display: none; }
  .faq-cat {
    flex: 0 0 auto;
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
  }
  .faq-cat.is-active { border-color: transparent; }
}
@media (max-width: 620px) {
  .faq-help {
    flex-wrap: wrap;
    gap: 14px;
    padding: 18px;
  }
  .faq-help-text { flex: 1 1 calc(100% - 60px); }
  .faq-help-cta { width: 100%; justify-content: center; }
}
@media (max-width: 560px) {
  .faq-section { padding: 58px 0 72px; }
  .faq-q { padding: 18px 16px; gap: 14px; }
  .faq-a p { padding: 0 16px 20px 16px; }
  .faq-ic { width: 34px; height: 34px; }
}

@media (prefers-reduced-motion: reduce) {
  .faq-item, .faq-item::before, .faq-ic, .faq-ic i, .faq-a,
  .faq-rail, .faq-main, .faq-help-cta, .faq-cat {
    transition: none !important;
  }
  .faq-rail, .faq-main { opacity: 1; transform: none; }
}

/* ============================================================
   FOOTER — deep-navy closing band. Brand lockup, link columns,
   trust/payment chips, legal. Echoes the hero's route motif.
   ============================================================ */
.site-footer {
  position: relative;
  overflow: hidden;
  margin-top: 40px;
  padding: 0;
  color: rgba(255, 255, 255, 0.82);
  background:
    radial-gradient(60% 90% at 12% 0%, rgba(36, 86, 230, 0.28), transparent 60%),
    radial-gradient(48% 80% at 92% 8%, rgba(126, 192, 255, 0.16), transparent 62%),
    linear-gradient(180deg, #0b1d42 0%, #081532 60%, #060f25 100%);
}
/* ambient route arcs (nods to hero) */
.footer-aurora {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.05) 1px, transparent 0);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(120% 80% at 80% 0%, #000 0%, transparent 60%);
  mask-image: radial-gradient(120% 80% at 80% 0%, #000 0%, transparent 60%);
}
.footer-route {
  position: absolute;
  top: -9%;
  right: -3%;
  width: min(820px, 72%);
  height: auto;
  pointer-events: none;
  opacity: 0.7;
  z-index: 0;
  -webkit-mask-image: radial-gradient(135% 118% at 76% 2%, #000 40%, transparent 84%);
  mask-image: radial-gradient(135% 118% at 76% 2%, #000 40%, transparent 84%);
}
.fr-path {
  animation: frFlow 3.4s linear infinite;
}
@keyframes frFlow {
  to { stroke-dashoffset: -132; }
}
.fr-ring {
  fill: rgba(126, 192, 255, 0.09);
  transform-box: fill-box;
  transform-origin: center;
  animation: frPulse 3s ease-in-out infinite;
}
.fr-pin-2 .fr-ring { animation-delay: 1.3s; }
@keyframes frPulse {
  0%, 100% { transform: scale(1); opacity: 0.55; }
  50% { transform: scale(1.45); opacity: 0.95; }
}
.footer-inner {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 0 auto;
  padding: 56px 0 30px;
}

/* ---- top CTA strip (outline, so it doesn't echo the solid CTAs above) ---- */
.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  padding-bottom: 30px;
}
.footer-cta-title {
  margin: 0 0 6px;
  color: #fff;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.footer-cta-title b {
  background: linear-gradient(100deg, var(--cyan-300), var(--blue-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.footer-cta-sub {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.98rem;
}
.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  height: 52px;
  padding: 0 26px;
  border-radius: 14px;
  border: 1.5px solid rgba(126, 192, 255, 0.55);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  background: rgba(126, 192, 255, 0.06);
  transition: transform 0.18s, background 0.22s, border-color 0.22s, box-shadow 0.22s;
}
.footer-cta-btn span { transition: transform 0.22s; }
.footer-cta-btn:hover {
  transform: translateY(-2px);
  border-color: transparent;
  background: linear-gradient(120deg, var(--blue-600), var(--blue-500));
  box-shadow: 0 16px 36px rgba(36, 86, 230, 0.45);
}
.footer-cta-btn:hover span { transform: translateX(4px); }

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.14) 18%, rgba(255, 255, 255, 0.14) 82%, transparent);
}

/* ---- main grid ---- */
.footer-main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr 1fr;
  gap: 40px 28px;
  padding: 42px 0;
}
@media (max-width: 1080px) {
  .footer-main { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
@media (max-width: 760px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
}
@media (max-width: 460px) {
  .footer-main { grid-template-columns: 1fr 1fr; }
}
.footer-brand { max-width: 360px; }
.footer-logo {
  height: 46px;
  width: auto;
  display: block;
}
.footer-tagline {
  margin: 20px 0 22px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.65;
}
.footer-contact {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.94rem;
}
.footer-contact svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  color: var(--cyan-300);
}
.footer-contact a {
  color: inherit;
  text-decoration: none;
  transition: color 0.18s;
}
.footer-contact a:hover { color: #fff; }

.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.18s, background 0.22s, border-color 0.22s, box-shadow 0.22s;
}
.footer-social a svg { width: 18px; height: 18px; }
.footer-social a:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, var(--blue-600), var(--blue-500));
  border-color: transparent;
  box-shadow: 0 12px 26px rgba(36, 86, 230, 0.5);
}

/* link columns */
.footer-col h3 {
  margin: 0 0 18px;
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-col h3::after {
  content: "";
  width: 26px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--blue-500), var(--cyan-300));
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-col a {
  position: relative;
  display: inline-block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.94rem;
  text-decoration: none;
  transition: color 0.18s, transform 0.18s;
}
.footer-col a:hover {
  color: #fff;
  transform: translateX(4px);
}

/* ---- trust / payment row ---- */
.footer-pay {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 26px 0;
}
.footer-secure {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 600;
}
.footer-secure svg { width: 17px; height: 17px; color: #7fe0a8; }
.pay-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pay-chip {
  height: 30px;
  min-width: 48px;
  padding: 0 9px;
  border-radius: 7px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.22);
  font-size: 0.72rem;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 0.02em;
}
.pay-chip svg { display: block; }
.pc-visa { color: #1a1f71; font-size: 0.82rem; letter-spacing: 0.04em; }
.pc-amex { color: #2e77bb; font-style: normal; letter-spacing: 0.01em; }
.pc-pp1 { color: #003087; font-style: italic; }
.pc-pp2 { color: #009cde; font-style: italic; }
.pc-gp-g { color: #4285f4; font-style: normal; }
.pc-gp-rest { color: #3c4043; font-style: normal; font-weight: 800; }
.pc-ap { color: #000; font-style: normal; font-weight: 700; display: inline-flex; align-items: center; gap: 3px; }
.pc-ap svg { width: 13px; height: 14px; }

/* ---- disclaimer + bottom bar ---- */
.footer-disclaimer {
  margin: 0;
  padding: 22px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.8rem;
  line-height: 1.7;
  text-align: center;
  max-width: 1000px;
  margin-inline: auto;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.86rem;
}
.footer-legal {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin: 0;
  padding: 0;
}
.footer-legal a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.86rem;
  text-decoration: none;
  transition: color 0.18s;
}
.footer-legal a:hover { color: #fff; }
.footer-lang {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 38px;
  padding: 0 15px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.82);
  font: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.footer-lang:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.24); }

/* focus visibility on dark */
.site-footer a:focus-visible,
.footer-lang:focus-visible,
.footer-social a:focus-visible {
  outline: 2px solid var(--cyan-300);
  outline-offset: 3px;
  border-radius: 8px;
}

/* ---- responsive ---- */
@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px 28px;
  }
  .footer-brand {
    grid-column: 1 / -1;
    max-width: none;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: start;
    column-gap: 30px;
  }
  .footer-logo { grid-row: 1; }
  .footer-tagline { grid-column: 1; margin-top: 16px; }
  .footer-contact { grid-column: 2; grid-row: 1 / 4; margin: 0; }
  .footer-social { grid-column: 1 / -1; }
}
@media (max-width: 680px) {
  .footer-inner { padding: 44px 0 26px; }
  .footer-cta { padding-bottom: 24px; }
  .footer-cta-btn { width: 100%; justify-content: center; }
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 32px 22px;
    padding: 34px 0;
  }
  .footer-brand {
    grid-template-columns: 1fr;
  }
  .footer-contact { grid-column: 1; grid-row: auto; }
  .footer-pay { justify-content: flex-start; gap: 16px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  .footer-cta-btn, .footer-social a, .footer-col a, .footer-cta-btn span {
    transition: none !important;
  }
  .fr-path, .fr-ring { animation: none !important; }
}

/* Trustpilot boxed stars spacing */
.rc-stars{display:inline-flex;gap:1px;align-items:center}
.rc-stars svg{width:19px;height:19px}

/* hero disclosure (transparency) */
.hero-disclosure{font-size:13px;line-height:1.5;color:#8791ad;margin:10px 0 0;max-width:56ch}

/* ═══════════════ MOBILE POLISH (≤620px) — cleaner, pro ═══════════════ */
@media (max-width: 620px) {
  /* Hero: tighter top gap, no oversized empty space */
  .hero { padding: 98px 0 40px !important; gap: 14px !important; }
  .fine-alert { font-size: 12px !important; padding: 7px 14px !important; }
  h1#hero-title { font-size: clamp(1.75rem, 8.2vw, 2.3rem) !important; line-height: 1.12 !important; }
  .lead { font-size: 14.5px !important; line-height: 1.58 !important; margin-top: 12px !important; }
  .hero-disclosure { display: none !important; }               /* keep hero clean on mobile */

  /* Benefit chips: smaller & lighter */
  .benefit-grid { gap: 8px !important; margin-top: 14px !important; }
  .benefit-grid li { min-height: 0 !important; padding: 11px 12px 11px 40px !important;
    font-size: 13.5px !important; border-radius: 12px !important; }
  .benefit-grid li::before { top: 10px !important; width: 22px !important; height: 22px !important; }

  /* Section headings: professional, not oversized */
  #process-title, #advantage-title, #pricing-title, #reviews-title,
  #countries-title, #faq-title, .process-heading h2, .advantage-heading h2 {
    font-size: clamp(1.5rem, 6.4vw, 1.95rem) !important; line-height: 1.16 !important; }
  .application-card h2 { font-size: 1.42rem !important; line-height: 1.2 !important; }
}

/* FIX: country-search giant-height bug on mobile (flex-basis became height in column) */
@media (max-width: 620px) {
  .country-search { flex: 0 0 auto !important; min-height: 52px !important; width: 100% !important; }
}
