:root {
  --ink: #07182d;
  --ink-2: #0b2544;
  --ink-3: #12385f;
  --blue: #1599d6;
  --cyan: #57d6ff;
  --sky: #dff5ff;
  --paper: #f4f7fb;
  --white: #ffffff;
  --muted: #63758a;
  --line: #dce5ef;
  --lime: #b7f4da;
  --shadow: 0 26px 70px rgba(3, 19, 39, .14);
  --shadow-dark: 0 30px 90px rgba(0, 8, 22, .38);
  --radius: 28px;
  --container: 1240px;
  --header-height: 82px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--ink);
  font-family: "Onest", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
select {
  cursor: pointer;
}

button {
  border: 0;
}

p,
h1,
h2,
h3,
ul,
ol {
  margin-top: 0;
}

ul,
ol {
  padding: 0;
}

::selection {
  background: var(--cyan);
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 11px 16px;
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-150%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.section {
  position: relative;
  padding: 128px 0;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: #1789c2;
  font-family: "Manrope", sans-serif;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .18em;
  line-height: 1;
  text-transform: uppercase;
}

.section-kicker::before {
  width: 30px;
  height: 1px;
  background: currentColor;
  content: "";
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr);
  align-items: end;
  gap: 72px;
  margin-bottom: 62px;
}

.section-heading h2,
.about-copy h2,
.faq-intro h2,
.contact-heading h2 {
  margin-bottom: 0;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.5rem, 4.4vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -.055em;
  line-height: 1.02;
}

.section-heading h2 em,
.about-copy h2 em,
.faq-intro h2 em,
.contact-heading h2 em {
  color: #158dc7;
  font-style: normal;
}

.section-heading > p {
  max-width: 480px;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 15px;
  font-family: "Manrope", sans-serif;
  font-size: .88rem;
  font-weight: 800;
  line-height: 1;
  transition: transform .25s ease, box-shadow .25s ease, color .25s ease, background-color .25s ease, border-color .25s ease;
}

.button svg {
  width: 19px;
  height: 19px;
  transition: transform .25s ease;
}

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

.button:hover svg {
  transform: translateX(3px);
}

.button-primary {
  background: var(--cyan);
  color: #042038;
  box-shadow: 0 14px 34px rgba(51, 194, 240, .22);
}

.button-primary:hover {
  background: #7ce2ff;
  box-shadow: 0 18px 42px rgba(51, 194, 240, .32);
}

.button-secondary {
  border-color: #bdd8e8;
  background: var(--white);
  color: var(--ink);
}

.button-secondary:hover {
  border-color: var(--blue);
}

.button-light {
  background: var(--white);
  color: var(--ink);
}

.button-small {
  min-height: 44px;
  padding: 12px 17px;
  border-radius: 13px;
  font-size: .78rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #c0d0df;
  font-size: .9rem;
  font-weight: 600;
  transition: color .2s ease;
}

.text-link span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
}

.text-link:hover {
  color: var(--white);
}

/* Header */

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  color: var(--white);
  transition: height .3s ease, background-color .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.site-header.is-scrolled {
  height: 72px;
  border-color: rgba(255, 255, 255, .09);
  background: rgba(5, 21, 40, .9);
  box-shadow: 0 10px 36px rgba(0, 0, 0, .16);
  backdrop-filter: blur(18px);
}

body.menu-open .site-header::before {
  position: fixed;
  z-index: 98;
  inset: 0;
  background: #06182d;
  content: "";
  pointer-events: none;
}

body.menu-open .site-header.is-scrolled {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  position: relative;
  z-index: 101;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
}

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

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  font-family: "Manrope", sans-serif;
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: .02em;
}

.brand-copy small {
  margin-top: 5px;
  color: #85a2bc;
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(17px, 2.1vw, 33px);
}

.nav-link {
  position: relative;
  padding: 8px 0;
  color: #9fb2c5;
  font-size: .78rem;
  font-weight: 600;
  transition: color .2s ease;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: var(--cyan);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--white);
}

.nav-link.is-active::after {
  transform: scaleX(1);
}

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

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #cbd7e2;
  font-size: .75rem;
  font-weight: 600;
  white-space: nowrap;
}

.header-phone svg {
  width: 16px;
  height: 16px;
  color: var(--cyan);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 13px;
  background: rgba(255, 255, 255, .06);
}

.menu-toggle span {
  position: absolute;
  width: 19px;
  height: 1px;
  background: var(--white);
  transition: transform .25s ease;
}

.menu-toggle span:first-child {
  transform: translateY(-4px);
}

.menu-toggle span:last-child {
  transform: translateY(4px);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

/* Hero */

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding: calc(var(--header-height) + 34px) 0 0;
  background:
    radial-gradient(circle at 82% 22%, rgba(34, 133, 196, .18), transparent 28%),
    linear-gradient(145deg, #07182d 0%, #081d36 50%, #061326 100%);
  color: var(--white);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .022) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .65), transparent 85%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-glow-a {
  top: 20%;
  left: -190px;
  width: 360px;
  height: 360px;
  background: rgba(38, 159, 215, .1);
}

.hero-glow-b {
  right: 19%;
  bottom: 7%;
  width: 220px;
  height: 220px;
  background: rgba(87, 214, 255, .12);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: calc(100svh - var(--header-height) - 120px);
  grid-template-columns: minmax(0, .92fr) minmax(480px, 1.08fr);
  align-items: center;
  gap: 56px;
}

.hero-copy {
  padding: 56px 0 72px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 27px;
  color: #a9bdce;
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.status-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #68e8b6;
  box-shadow: 0 0 0 6px rgba(104, 232, 182, .1);
}

.status-dot::after {
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(104, 232, 182, .5);
  border-radius: inherit;
  content: "";
  animation: pulse 2.4s ease-out infinite;
}

@keyframes pulse {
  0% { opacity: 1; transform: scale(.7); }
  80%, 100% { opacity: 0; transform: scale(1.8); }
}

.hero h1 {
  max-width: 680px;
  margin-bottom: 28px;
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: clamp(3.15rem, 5.3vw, 5.35rem);
  font-weight: 700;
  letter-spacing: -.065em;
  line-height: .98;
}

.hero h1 em {
  color: var(--cyan);
  font-style: normal;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 36px;
  color: #adbdcc;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.75;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 26px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 23px;
  margin: 35px 0 0;
  list-style: none;
  color: #91a7bb;
  font-size: .74rem;
}

.hero-proof li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-proof svg {
  width: 15px;
  height: 15px;
  color: #72e6b9;
}

.hero-visual {
  position: relative;
  min-height: 650px;
  perspective: 1300px;
}

.flight-window {
  position: absolute;
  z-index: 1;
  top: 4%;
  right: 0;
  width: 92%;
  height: 86%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 46% 46% 34px 34px;
  box-shadow: var(--shadow-dark);
}

.flight-window::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 20, 39, .12) 0%, rgba(4, 19, 36, .18) 45%, rgba(5, 19, 36, .78) 100%),
    linear-gradient(90deg, rgba(4, 24, 45, .32), transparent 60%);
  content: "";
}

.flight-window img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}

.flight-caption {
  position: absolute;
  z-index: 2;
  right: 26px;
  bottom: 24px;
  left: 26px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, .78);
  font-family: "Manrope", sans-serif;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .15em;
}

.flight-line {
  position: relative;
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, .28);
}

.flight-line i {
  position: absolute;
  top: -3px;
  left: 55%;
  width: 7px;
  height: 7px;
  border: 2px solid var(--cyan);
  border-radius: 50%;
  background: var(--ink);
}

.passport-stage {
  position: absolute;
  z-index: 3;
  right: 10%;
  bottom: 4%;
  width: 360px;
  height: 470px;
  pointer-events: none;
  transform-style: preserve-3d;
}

.passport {
  --rx: 7deg;
  --ry: -13deg;
  --tx: 0px;
  --ty: 0px;
  position: absolute;
  z-index: 2;
  right: 9px;
  bottom: 9px;
  width: 285px;
  height: 390px;
  overflow: hidden;
  padding: 31px 29px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 12px 24px 24px 12px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .09), transparent 28%),
    radial-gradient(circle at 76% 18%, rgba(87, 214, 255, .35), transparent 19%),
    linear-gradient(155deg, #0d477d 0%, #082e5d 48%, #061f45 100%);
  box-shadow:
    -16px 24px 65px rgba(0, 7, 21, .54),
    inset 5px 0 0 rgba(255, 255, 255, .07);
  transform: translate3d(var(--tx), var(--ty), 60px) rotateX(var(--rx)) rotateY(var(--ry)) rotateZ(2deg);
  transform-style: preserve-3d;
  transition: transform .18s ease-out;
}

.passport::before {
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(148, 215, 255, .12);
  border-radius: 8px 18px 18px 8px;
  content: "";
}

.passport::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 10px;
  width: 1px;
  background: rgba(255, 255, 255, .12);
  box-shadow: 3px 0 7px rgba(0, 0, 0, .25);
  content: "";
}

.passport-shine {
  position: absolute;
  z-index: 1;
  top: -30%;
  left: -65%;
  width: 55%;
  height: 165%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .15), transparent);
  transform: rotate(22deg);
  animation: passportShine 6s ease-in-out infinite;
}

@keyframes passportShine {
  0%, 28% { transform: translateX(0) rotate(22deg); }
  56%, 100% { transform: translateX(560px) rotate(22deg); }
}

.passport-topline {
  position: relative;
  z-index: 2;
  color: rgba(203, 233, 250, .72);
  font-family: "Manrope", sans-serif;
  font-size: .56rem;
  font-weight: 800;
  letter-spacing: .19em;
}

.passport img {
  position: relative;
  z-index: 2;
  width: 105px;
  height: 105px;
  margin: 58px auto 29px;
  filter: drop-shadow(0 13px 25px rgba(0, 0, 0, .22));
}

.passport-title {
  position: relative;
  z-index: 2;
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.2;
  text-align: center;
}

.passport-meta {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 25px;
  left: 28px;
  display: flex;
  justify-content: space-between;
  color: rgba(203, 233, 250, .55);
  font-size: .49rem;
  font-weight: 700;
  letter-spacing: .15em;
}

.boarding-pass {
  position: absolute;
  z-index: 1;
  right: 40px;
  bottom: 145px;
  width: 310px;
  height: 132px;
  padding: 19px 22px;
  border-radius: 12px;
  background: #f4fbff;
  box-shadow: 0 22px 50px rgba(0, 10, 29, .32);
  color: #0b2a4d;
  transform: translate3d(-50px, 0, 5px) rotate(-15deg);
}

.boarding-pass::after {
  position: absolute;
  top: 0;
  right: 52px;
  bottom: 0;
  border-left: 1px dashed #a9bac9;
  content: "";
}

.boarding-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #6a7b89;
  font-family: "Manrope", sans-serif;
  font-size: .49rem;
  font-weight: 800;
  letter-spacing: .15em;
}

.boarding-top svg {
  width: 17px;
  height: 17px;
  color: #1699d5;
}

.boarding-pass > strong {
  display: block;
  margin-top: 15px;
  font-family: "Manrope", sans-serif;
  font-size: 1.4rem;
  letter-spacing: .06em;
}

.boarding-pass > strong i {
  padding: 0 6px;
  color: #1599d6;
  font-style: normal;
}

.barcode {
  width: 142px;
  height: 17px;
  margin-top: 13px;
  opacity: .56;
  background: repeating-linear-gradient(90deg, #0b2a4d 0 2px, transparent 2px 4px, #0b2a4d 4px 5px, transparent 5px 8px);
}

.floating-note {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 70px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px 12px 12px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 16px;
  background: rgba(7, 27, 50, .78);
  box-shadow: 0 18px 50px rgba(0, 7, 20, .3);
  backdrop-filter: blur(15px);
}

.note-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  background: var(--cyan);
  color: var(--ink);
}

.note-icon svg {
  width: 18px;
  height: 18px;
}

.floating-note > span:last-child {
  display: grid;
}

.floating-note small {
  color: #8ca2b7;
  font-size: .59rem;
}

.floating-note strong {
  margin-top: 1px;
  color: var(--white);
  font-size: .73rem;
}

.trust-bar {
  position: relative;
  z-index: 4;
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, .09);
  color: #7f97ac;
}

.trust-bar > p {
  margin: 0;
  color: #d2dce5;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.trust-items {
  display: flex;
  align-items: center;
  gap: 23px;
  font-size: .7rem;
}

.trust-items i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--cyan);
}

/* Services */

.services-section {
  overflow: hidden;
  background: var(--paper);
}

.services-section::before {
  position: absolute;
  top: 90px;
  right: -160px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(20, 138, 194, .09);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(20, 138, 194, .025), 0 0 0 120px rgba(20, 138, 194, .018);
  content: "";
}

.services-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 348px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid #e0e8f0;
  border-radius: 24px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 10px 28px rgba(7, 28, 54, .035);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.service-card::after {
  position: absolute;
  right: -45px;
  bottom: -45px;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(21, 153, 214, .08);
  border-radius: 50%;
  content: "";
  transition: transform .4s ease;
}

.service-card:hover {
  z-index: 2;
  border-color: rgba(21, 153, 214, .4);
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}

.service-card:hover::after {
  transform: scale(1.25);
}

.service-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 51px;
  place-items: center;
  border: 1px solid #d6e9f3;
  border-radius: 15px;
  background: #edf8fd;
  color: #0d83ba;
}

.service-icon svg {
  width: 24px;
  height: 24px;
}

.card-number {
  position: absolute;
  top: 35px;
  right: 30px;
  color: #a7b8c8;
  font-family: "Manrope", sans-serif;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.service-card h3 {
  margin-bottom: 13px;
  font-family: "Manrope", sans-serif;
  font-size: 1.2rem;
  letter-spacing: -.025em;
}

.service-card p {
  margin-bottom: 25px;
  color: var(--muted);
  font-size: .87rem;
  line-height: 1.68;
}

.card-link {
  position: absolute;
  z-index: 2;
  bottom: 27px;
  left: 30px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0;
  background: transparent;
  color: #117fac;
  font-size: .76rem;
  font-weight: 700;
}

.card-link svg {
  width: 16px;
  height: 16px;
  transition: transform .2s ease;
}

.card-link:hover svg {
  transform: translateX(4px);
}

.service-card-accent {
  border-color: #143c64;
  background:
    radial-gradient(circle at 85% 12%, rgba(87, 214, 255, .18), transparent 27%),
    var(--ink-2);
  color: var(--white);
}

.service-card-accent .service-icon {
  border-color: rgba(87, 214, 255, .18);
  background: rgba(87, 214, 255, .1);
  color: var(--cyan);
}

.service-card-accent .card-number {
  color: #6c8ba5;
}

.service-card-accent p {
  color: #9cb0c4;
}

.service-card-accent .card-link {
  color: var(--cyan);
}

.popular-label {
  position: absolute;
  top: 25px;
  left: 96px;
  padding: 5px 8px;
  border-radius: 6px;
  background: rgba(87, 214, 255, .1);
  color: var(--cyan);
  font-size: .51rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

/* Visa purpose guide */

.visa-guide-section {
  overflow: clip;
  background:
    radial-gradient(circle at 8% 18%, rgba(87, 214, 255, .2), transparent 25%),
    linear-gradient(180deg, #edf6fa 0%, #f4f7fb 58%, #edf3f8 100%);
}

.visa-guide-section::before {
  position: absolute;
  top: -250px;
  right: -180px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(21, 153, 214, .1);
  border-radius: 50%;
  box-shadow:
    0 0 0 72px rgba(21, 153, 214, .025),
    0 0 0 145px rgba(21, 153, 214, .015);
  content: "";
  pointer-events: none;
}

.visa-guide-section .container {
  position: relative;
  z-index: 2;
}

.visa-guide-orbit {
  position: absolute;
  bottom: 8%;
  left: -130px;
  width: 360px;
  height: 190px;
  border: 1px solid rgba(21, 153, 214, .11);
  border-radius: 50%;
  transform: rotate(24deg);
  pointer-events: none;
}

.visa-guide-orbit::before,
.visa-guide-orbit::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.visa-guide-orbit::before {
  top: 18px;
  right: 18px;
  bottom: 18px;
  left: 18px;
  border: 1px solid rgba(21, 153, 214, .08);
}

.visa-guide-orbit::after {
  top: 50%;
  right: 28px;
  width: 8px;
  height: 8px;
  background: var(--blue);
  box-shadow: 0 0 20px rgba(21, 153, 214, .48);
}

.visa-guide-layout {
  display: grid;
  grid-template-columns: minmax(350px, .82fr) minmax(0, 1.18fr);
  align-items: start;
  gap: 22px;
}

.visa-guide-media {
  position: sticky;
  top: 102px;
  height: 780px;
  margin: 0;
  overflow: hidden;
  border-radius: 30px;
  background: #07182d;
  box-shadow:
    0 30px 70px rgba(2, 18, 37, .22),
    0 1px 0 rgba(255, 255, 255, .55);
  backface-visibility: hidden;
  clip-path: inset(0 round 30px);
  contain: paint;
  isolation: isolate;
  transform: translateZ(0);
  -webkit-clip-path: inset(0 round 30px);
}

.visa-guide-media::after {
  position: absolute;
  z-index: 3;
  inset: 0;
  border-radius: inherit;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .24),
    inset 0 1px 0 rgba(255, 255, 255, .24);
  content: "";
  pointer-events: none;
}

.visa-guide-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 59% center;
  transform: scale(1.018) translateZ(0);
}

.visa-media-shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 15, 29, .23), transparent 38%),
    linear-gradient(0deg, rgba(3, 14, 29, .98) 0%, rgba(4, 18, 34, .86) 45%, rgba(4, 18, 34, .18) 72%, transparent 82%),
    linear-gradient(120deg, rgba(6, 25, 47, .28), transparent 52%);
}

.visa-media-top {
  position: absolute;
  z-index: 2;
  top: 24px;
  right: 24px;
  left: 24px;
  display: flex;
  min-height: 47px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 15px;
  background: rgba(8, 27, 49, .46);
  color: #e8f6fd;
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .18),
    0 14px 34px rgba(0, 7, 19, .18);
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
}

.visa-media-top span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.visa-media-top svg {
  width: 16px;
  height: 16px;
  color: var(--cyan);
}

.visa-media-top i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(87, 214, 255, .65);
}

.visa-guide-media figcaption {
  position: absolute;
  z-index: 2;
  right: 34px;
  bottom: 35px;
  left: 34px;
  color: var(--white);
}

.visa-media-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
  color: var(--cyan);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.visa-media-kicker::before {
  width: 21px;
  height: 1px;
  background: currentColor;
  content: "";
}

.visa-guide-media figcaption strong {
  display: block;
  max-width: 430px;
  margin-bottom: 14px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  letter-spacing: -.045em;
  line-height: 1.08;
}

.visa-guide-media figcaption p {
  max-width: 420px;
  margin-bottom: 24px;
  color: #b5c6d5;
  font-size: .84rem;
  line-height: 1.65;
}

.visa-media-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 17px;
  border: 1px solid rgba(255, 255, 255, .23);
  border-radius: 13px;
  background: rgba(255, 255, 255, .1);
  color: var(--white);
  font-size: .74rem;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .14);
  backdrop-filter: blur(14px);
  transition: color .25s ease, background-color .25s ease, transform .25s ease;
  -webkit-backdrop-filter: blur(14px);
}

.visa-media-link svg {
  width: 17px;
  height: 17px;
  color: var(--cyan);
  transition: transform .25s ease;
}

.visa-media-link:hover {
  background: var(--cyan);
  color: var(--ink);
  transform: translateY(-2px);
}

.visa-media-link:hover svg {
  color: var(--ink);
  transform: translateX(3px);
}

.visa-purpose-panel {
  min-width: 0;
}

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

.visa-purpose-card {
  position: relative;
  display: flex;
  min-height: 216px;
  overflow: hidden;
  padding: 23px;
  flex-direction: column;
  border: 1px solid rgba(19, 63, 101, .1);
  border-radius: 22px;
  background: rgba(255, 255, 255, .86);
  box-shadow:
    0 14px 34px rgba(7, 28, 54, .055),
    inset 0 1px 0 rgba(255, 255, 255, .85);
  transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.visa-purpose-card::after {
  position: absolute;
  right: -44px;
  bottom: -52px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(21, 153, 214, .08);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.visa-purpose-card:hover {
  z-index: 2;
  border-color: rgba(21, 153, 214, .36);
  box-shadow: 0 24px 50px rgba(7, 28, 54, .11);
  transform: translateY(-5px);
}

.visa-purpose-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 13px;
}

.visa-purpose-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid #d5e8f2;
  border-radius: 13px;
  background: #eaf7fc;
  color: #0f88bf;
}

.visa-purpose-icon svg {
  width: 21px;
  height: 21px;
}

.visa-purpose-number {
  padding-top: 3px;
  color: #a2b5c4;
  font-family: "Manrope", sans-serif;
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .13em;
}

.visa-purpose-fit {
  margin-bottom: 5px;
  color: #1789c2;
  font-size: .59rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.visa-purpose-card h3 {
  margin-bottom: 8px;
  font-family: "Manrope", sans-serif;
  font-size: 1.08rem;
  letter-spacing: -.025em;
  line-height: 1.25;
}

.visa-purpose-card p {
  margin-bottom: 17px;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.58;
}

.visa-purpose-card > button {
  z-index: 1;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  margin-top: auto;
  padding: 0;
  background: transparent;
  color: #117fac;
  font-size: .69rem;
  font-weight: 700;
}

.visa-purpose-card > button svg {
  width: 14px;
  height: 14px;
  transition: transform .2s ease;
}

.visa-purpose-card > button:hover svg {
  transform: translateX(3px);
}

.visa-purpose-featured {
  border-color: #123b62;
  background:
    radial-gradient(circle at 88% 7%, rgba(87, 214, 255, .17), transparent 31%),
    linear-gradient(145deg, #0b2948, #071a31);
  color: var(--white);
  box-shadow: 0 20px 46px rgba(4, 23, 43, .18);
}

.visa-purpose-featured::after {
  border-color: rgba(87, 214, 255, .13);
}

.visa-purpose-featured .visa-purpose-icon {
  border-color: rgba(87, 214, 255, .2);
  background: rgba(87, 214, 255, .1);
  color: var(--cyan);
}

.visa-purpose-featured .visa-purpose-number {
  color: #6e8da7;
}

.visa-purpose-featured .visa-purpose-fit,
.visa-purpose-featured > button {
  color: var(--cyan);
}

.visa-purpose-featured p {
  color: #9eb3c5;
}

.visa-guide-note {
  display: grid;
  min-height: 96px;
  align-items: center;
  gap: 15px;
  margin-top: 16px;
  padding: 19px 22px;
  grid-template-columns: auto 1fr;
  border: 1px solid rgba(21, 153, 214, .17);
  border-radius: 19px;
  background: rgba(223, 245, 255, .65);
}

.visa-guide-note > span {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border-radius: 12px;
  background: var(--white);
  color: #0d8fc7;
  box-shadow: 0 8px 20px rgba(7, 38, 63, .08);
}

.visa-guide-note svg {
  width: 19px;
  height: 19px;
}

.visa-guide-note p {
  margin: 0;
  color: #5e7387;
  font-size: .74rem;
  line-height: 1.55;
}

.visa-guide-note strong {
  color: var(--ink-2);
}

/* Destinations + 3D globe */

.destinations-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 95% 0%, rgba(28, 133, 193, .16), transparent 30%),
    linear-gradient(155deg, #07182d, #061326);
  color: var(--white);
}

.destinations-section::after {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(120, 196, 235, .14) .7px, transparent .7px);
  background-size: 28px 28px;
  content: "";
  mask-image: linear-gradient(125deg, transparent 25%, black, transparent 90%);
  pointer-events: none;
}

.destinations-section .container {
  position: relative;
  z-index: 2;
}

.section-heading-dark h2,
.section-heading-dark h2 em {
  color: var(--white);
}

.section-heading-dark h2 em {
  color: var(--cyan);
}

.section-heading-dark > p {
  color: #9fb0c1;
}

.route-globe {
  position: absolute;
  z-index: 1;
  top: -30px;
  right: 4vw;
  width: 360px;
  height: 360px;
  opacity: .36;
  perspective: 900px;
  pointer-events: none;
}

.globe-sphere {
  position: absolute;
  top: 55px;
  left: 55px;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(87, 214, 255, .54);
  border-radius: 50%;
  background: radial-gradient(circle at 34% 30%, rgba(87, 214, 255, .17), rgba(6, 23, 44, .05) 60%);
  box-shadow: inset -24px -14px 70px rgba(6, 10, 26, .7), 0 0 65px rgba(38, 169, 220, .1);
  transform: rotateX(-9deg) rotateY(15deg);
  transform-style: preserve-3d;
  animation: globeFloat 7s ease-in-out infinite;
}

@keyframes globeFloat {
  0%, 100% { transform: translateY(0) rotateX(-9deg) rotateY(15deg); }
  50% { transform: translateY(-11px) rotateX(-6deg) rotateY(23deg); }
}

.globe-meridian,
.globe-equator {
  position: absolute;
  border: 1px solid rgba(87, 214, 255, .35);
  border-radius: 50%;
}

.globe-meridian {
  inset: 5px 70px;
}

.meridian-a {
  transform: rotateY(12deg);
}

.meridian-b {
  transform: rotate(57deg) scaleX(.55);
}

.globe-equator {
  top: 83px;
  right: 5px;
  bottom: 83px;
  left: 5px;
}

.globe-dot {
  position: absolute;
  width: 7px;
  height: 7px;
  border: 2px solid var(--cyan);
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 16px var(--cyan);
}

.dot-a { top: 55px; left: 78px; }
.dot-b { top: 124px; right: 39px; }
.dot-c { bottom: 43px; left: 111px; }

.globe-orbit {
  position: absolute;
  inset: 38px 3px;
  border: 1px solid rgba(87, 214, 255, .25);
  border-radius: 50%;
}

.orbit-a {
  transform: rotate(-18deg) rotateX(64deg);
}

.orbit-b {
  transform: rotate(58deg) rotateX(70deg);
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.destination-card {
  position: relative;
  min-height: 350px;
  overflow: hidden;
  grid-column: span 5;
  border-radius: 26px;
  background: #0a1d32;
  box-shadow:
    0 20px 58px rgba(0, 7, 19, .28),
    0 1px 0 rgba(255, 255, 255, .08);
  backface-visibility: hidden;
  clip-path: inset(0 round 26px);
  contain: paint;
  isolation: isolate;
  -webkit-clip-path: inset(0 round 26px);
}

.destination-wide {
  grid-column: span 7;
}

.destination-card::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image: var(--card-image);
  background-position: center;
  background-size: cover;
  content: "";
  transform: scale(1.018) translateZ(0);
  transform-origin: center;
  transition: transform .8s cubic-bezier(.2, .7, .2, 1);
  will-change: transform;
}

.destination-card:hover::before {
  transform: scale(1.075) translateZ(0);
}

.destination-card::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .17), transparent 23%, transparent 72%, rgba(87, 214, 255, .11));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .17),
    inset 0 1px 0 rgba(255, 255, 255, .14);
  content: "";
  pointer-events: none;
}

.destination-overlay {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 17, 33, .06), rgba(3, 16, 31, .14) 35%, rgba(3, 15, 31, .9) 100%);
}

.destination-code {
  position: absolute;
  z-index: 2;
  top: 21px;
  left: 22px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 9px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .16), rgba(4, 20, 38, .34));
  color: #e8f6fd;
  font-family: "Manrope", sans-serif;
  font-size: .55rem;
  font-weight: 800;
  letter-spacing: .14em;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .16),
    0 8px 24px rgba(0, 8, 22, .16);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
}

.destination-content {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 23px;
  left: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  column-gap: 16px;
}

.destination-content h3 {
  margin: 0 0 4px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  letter-spacing: -.04em;
}

.destination-content p {
  grid-column: 1;
  margin: 0;
  color: #b6c6d4;
  font-size: .76rem;
}

.destination-content button {
  display: grid;
  width: 47px;
  height: 47px;
  grid-row: 1 / span 2;
  grid-column: 2;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255, 255, 255, .22), rgba(255, 255, 255, .08));
  color: var(--white);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .2),
    0 10px 28px rgba(0, 8, 22, .2);
  backdrop-filter: blur(18px) saturate(150%);
  transition: background-color .25s ease, color .25s ease, transform .25s ease, box-shadow .25s ease;
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.destination-content button:hover {
  background: var(--cyan);
  color: var(--ink);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .55),
    0 12px 30px rgba(87, 214, 255, .24);
  transform: rotate(-8deg);
}

.destination-content button svg {
  width: 19px;
  height: 19px;
}

.destinations-note {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
  padding: 19px 23px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 17px;
  background: rgba(255, 255, 255, .045);
}

.destinations-note > svg {
  width: 23px;
  height: 23px;
  color: var(--cyan);
}

.destinations-note p {
  margin: 0;
  color: #9dafc0;
  font-size: .8rem;
}

.destinations-note p strong {
  color: var(--white);
}

.destinations-note a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cyan);
  font-size: .74rem;
  font-weight: 700;
}

.destinations-note a svg {
  width: 16px;
  height: 16px;
}

/* Process */

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

.process-list {
  position: relative;
  display: grid;
  margin: 0 0 65px;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  list-style: none;
}

.process-list::before {
  position: absolute;
  z-index: 0;
  top: 50px;
  right: 8%;
  left: 8%;
  border-top: 1px dashed #c6d7e4;
  content: "";
}

.process-item {
  position: relative;
  z-index: 1;
  min-height: 280px;
  padding: 25px 23px;
  border: 1px solid #e3e9ef;
  border-radius: 22px;
  background: var(--white);
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.process-item:hover {
  border-color: #b8d9e9;
  box-shadow: 0 20px 48px rgba(7, 34, 62, .08);
  transform: translateY(-5px);
}

.process-index {
  position: absolute;
  top: 28px;
  right: 22px;
  color: #9aabba;
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .1em;
}

.process-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 73px;
  place-items: center;
  border: 8px solid var(--white);
  border-radius: 50%;
  outline: 1px solid #c8dfea;
  background: #eaf8fd;
  color: #1086bb;
}

.process-icon svg {
  width: 20px;
  height: 20px;
}

.process-item h3 {
  margin-bottom: 10px;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  letter-spacing: -.025em;
}

.process-item p {
  margin: 0;
  color: var(--muted);
  font-size: .79rem;
  line-height: 1.65;
}

.honesty-card {
  display: grid;
  grid-template-columns: auto minmax(280px, .9fr) minmax(300px, 1fr);
  align-items: center;
  gap: 35px;
  overflow: hidden;
  padding: 33px 40px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 0 0, rgba(87, 214, 255, .16), transparent 35%),
    var(--ink-2);
  color: var(--white);
}

.honesty-mark {
  display: grid;
  width: 84px;
  height: 84px;
  place-items: center;
  border: 1px solid rgba(87, 214, 255, .3);
  border-radius: 50%;
  color: var(--cyan);
  font-family: "Manrope", sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  box-shadow: inset 0 0 30px rgba(87, 214, 255, .06);
}

.honesty-card .section-kicker {
  margin-bottom: 10px;
  color: var(--cyan);
}

.honesty-card h3 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 1.2rem;
  line-height: 1.35;
}

.honesty-card > p {
  margin: 0;
  padding-left: 35px;
  border-left: 1px solid rgba(255, 255, 255, .12);
  color: #9fb2c4;
  font-size: .8rem;
  line-height: 1.7;
}

/* About */

.about-section {
  overflow: hidden;
  background: #eaf1f7;
}

.about-section::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 42%;
  background: #dfeaf2;
  content: "";
}

.about-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  align-items: center;
  gap: clamp(55px, 7vw, 100px);
}

.about-media {
  position: relative;
  min-height: 660px;
}

.about-image {
  position: absolute;
  inset: 0 45px 50px 0;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.about-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(4, 22, 40, .24));
  content: "";
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 89px;
  display: grid;
  min-width: 180px;
  padding: 19px 22px;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 17px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 18px 45px rgba(4, 26, 51, .14);
  backdrop-filter: blur(14px);
}

.about-badge span {
  color: var(--muted);
  font-size: .62rem;
}

.about-badge strong {
  margin-top: 3px;
  font-family: "Manrope", sans-serif;
  font-size: .95rem;
}

.about-route {
  position: absolute;
  z-index: 4;
  right: 25px;
  bottom: 12px;
  left: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #7f93a5;
  font-size: .51rem;
  font-weight: 800;
  letter-spacing: .1em;
}

.about-route i {
  height: 1px;
  flex: 1;
  background: #bdd0dc;
}

.about-route svg {
  width: 17px;
  height: 17px;
  color: var(--blue);
}

.about-copy h2 {
  margin-bottom: 28px;
}

.about-lead {
  color: #334e66;
  font-size: 1.06rem;
  line-height: 1.75;
}

.about-copy > p:not(.about-lead) {
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.75;
}

.about-points {
  display: grid;
  gap: 0;
  margin-top: 31px;
  border-top: 1px solid #ccd8e2;
}

.about-points > div {
  display: grid;
  min-height: 62px;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #ccd8e2;
}

.about-points span {
  color: #1688bf;
  font-size: .61rem;
  font-weight: 800;
}

.about-points p {
  margin: 0;
  color: #344d64;
  font-size: .79rem;
}

.founder-card {
  display: grid;
  margin-top: 30px;
  padding: 14px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  border: 1px solid #ccdae5;
  border-radius: 18px;
  background: rgba(255, 255, 255, .6);
}

.founder-monogram {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
  background: var(--ink-2);
  color: var(--cyan);
  font-family: "Manrope", sans-serif;
  font-size: .75rem;
  font-weight: 800;
}

.founder-card > div:nth-child(2) {
  display: grid;
}

.founder-card small {
  color: var(--muted);
  font-size: .61rem;
}

.founder-card strong {
  font-family: "Manrope", sans-serif;
  font-size: .86rem;
}

.founder-card > a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  background: var(--cyan);
  color: var(--ink);
}

.founder-card > a svg {
  width: 18px;
  height: 18px;
}

/* FAQ */

.faq-section {
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(300px, .7fr) minmax(0, 1.3fr);
  gap: clamp(60px, 8vw, 120px);
}

.faq-intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.faq-intro h2 {
  margin-bottom: 24px;
}

.faq-intro > p {
  max-width: 390px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.7;
}

.faq-list {
  border-top: 1px solid #cfdce6;
}

.faq-list details {
  border-bottom: 1px solid #cfdce6;
}

.faq-list summary {
  position: relative;
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 3px;
  color: #16354e;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  position: relative;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border: 1px solid #b9cedb;
  border-radius: 50%;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: #177fab;
  content: "";
  transform: translate(-50%, -50%);
  transition: transform .25s ease;
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-list details p {
  max-width: 720px;
  margin: -5px 50px 28px 3px;
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.75;
}

/* Contact */

.contact-section {
  position: relative;
  overflow: hidden;
  padding: 128px 0 110px;
  background:
    radial-gradient(circle at 85% 18%, rgba(35, 157, 216, .18), transparent 26%),
    linear-gradient(145deg, #07182d, #061326);
  color: var(--white);
}

.contact-section::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .018) 1px, transparent 1px);
  background-size: 52px 52px;
  content: "";
}

.contact-orbit {
  position: absolute;
  border: 1px solid rgba(87, 214, 255, .1);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  top: -310px;
  right: -190px;
  width: 700px;
  height: 700px;
}

.orbit-two {
  top: -230px;
  right: -110px;
  width: 540px;
  height: 540px;
  box-shadow: 0 0 0 70px rgba(87, 214, 255, .016);
}

.contact-section .container {
  position: relative;
  z-index: 2;
}

.contact-heading {
  display: grid;
  margin-bottom: 60px;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .6fr);
  align-items: end;
  gap: 70px;
}

.contact-heading .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: -42px;
  color: var(--cyan);
}

.contact-heading h2,
.contact-heading h2 em {
  color: var(--white);
}

.contact-heading h2 em {
  color: var(--cyan);
}

.contact-heading > p {
  margin: 0 0 8px;
  color: #9fb2c4;
  font-size: .9rem;
  line-height: 1.75;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, .82fr);
  gap: 18px;
}

.contact-form,
.contact-card {
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 27px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .085), rgba(255, 255, 255, .038));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .08),
    0 24px 70px rgba(0, 8, 22, .22);
  backdrop-filter: blur(20px) saturate(125%);
  -webkit-backdrop-filter: blur(20px) saturate(125%);
}

.contact-form {
  padding: 34px;
}

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

.contact-form .form-field {
  display: grid;
  margin-bottom: 16px;
  gap: 8px;
}

.contact-form .form-field > span,
.contact-form .form-field > label {
  color: #a8b9c9;
  font-size: .67rem;
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 13px;
  outline: 0;
  background: rgba(3, 16, 31, .46);
  color: var(--white);
  transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.contact-form input,
.contact-form select {
  height: 52px;
  padding: 0 15px;
}

.contact-form textarea {
  min-height: 118px;
  padding: 14px 15px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #617a90;
}

.contact-form select option {
  background: var(--ink);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--cyan);
  background: rgba(3, 16, 31, .7);
  box-shadow: 0 0 0 3px rgba(87, 214, 255, .1);
}

.custom-select {
  position: relative;
  width: 100%;
}

.custom-select.is-open {
  z-index: 20;
}

.select-trigger {
  display: none;
  width: 100%;
  height: 52px;
  padding: 0 9px 0 15px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 13px;
  outline: 0;
  background: rgba(3, 16, 31, .46);
  color: var(--white);
  font-size: .83rem;
  font-weight: 600;
  text-align: left;
  transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.custom-select.is-enhanced > select {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
}

.custom-select.is-enhanced .select-trigger {
  display: flex;
}

.select-trigger:hover,
.custom-select.is-open .select-trigger {
  border-color: rgba(87, 214, 255, .7);
  background: rgba(3, 16, 31, .72);
}

.select-trigger:focus-visible {
  border-color: var(--cyan);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(87, 214, 255, .12);
}

.select-indicator {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(87, 214, 255, .2);
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(87, 214, 255, .14), rgba(87, 214, 255, .045));
  color: var(--cyan);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.select-indicator svg {
  width: 17px;
  height: 17px;
  stroke-width: 2.8;
  transition: transform .22s ease;
}

.custom-select.is-open .select-indicator svg {
  transform: rotate(180deg);
}

.select-menu {
  position: absolute;
  z-index: 30;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  display: grid;
  max-height: 310px;
  padding: 7px;
  overflow-y: auto;
  border: 1px solid rgba(125, 220, 255, .2);
  border-radius: 16px;
  background: rgba(5, 22, 40, .96);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .08),
    0 24px 58px rgba(0, 7, 19, .46);
  backdrop-filter: blur(24px) saturate(135%);
  scrollbar-color: rgba(87, 214, 255, .35) transparent;
  scrollbar-width: thin;
  -webkit-backdrop-filter: blur(24px) saturate(135%);
}

.custom-select.opens-up .select-menu {
  top: auto;
  bottom: calc(100% + 8px);
}

.select-menu[hidden] {
  display: none;
}

.select-option {
  display: flex;
  width: 100%;
  min-height: 43px;
  padding: 9px 10px 9px 12px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-radius: 10px;
  background: transparent;
  color: #c2d0dc;
  font-size: .78rem;
  text-align: left;
  transition: background-color .16s ease, color .16s ease;
}

.select-option:hover,
.select-option.is-active {
  background: rgba(87, 214, 255, .09);
  color: var(--white);
}

.select-option[aria-selected="true"] {
  background: linear-gradient(90deg, rgba(21, 153, 214, .24), rgba(87, 214, 255, .08));
  color: #f4fbff;
  font-weight: 700;
}

.select-option svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  color: var(--cyan);
  opacity: 0;
  stroke-width: 2.8;
}

.select-option[aria-selected="true"] svg {
  opacity: 1;
}

.consent-group {
  display: grid;
  margin: 4px 0 23px;
  padding: 12px 13px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 15px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .055), rgba(3, 16, 31, .2));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .045);
  transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.contact-form .consent {
  position: relative;
  display: grid;
  margin: 0;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 11px;
  cursor: pointer;
}

.consent input {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  clip: auto;
  clip-path: none;
  cursor: pointer;
  opacity: 0;
}

.consent-control {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1.5px solid rgba(163, 193, 216, .42);
  border-radius: 8px;
  background: rgba(3, 16, 31, .58);
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
  transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.consent-control svg {
  width: 15px;
  height: 15px;
  opacity: 0;
  stroke-width: 3;
  transform: scale(.65);
  transition: opacity .18s ease, transform .18s ease;
}

.consent input:checked + .consent-control {
  border-color: var(--cyan);
  background: linear-gradient(145deg, #7ae0ff, #45c9f6);
  box-shadow: 0 7px 18px rgba(87, 214, 255, .18);
}

.consent input:checked + .consent-control svg {
  opacity: 1;
  transform: scale(1);
}

.consent input:focus-visible + .consent-control {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(87, 214, 255, .13);
}

.consent:hover .consent-control {
  border-color: rgba(87, 214, 255, .72);
  transform: translateY(-1px);
}

.consent-copy {
  color: #93a8ba;
  font-size: .68rem;
  line-height: 1.5;
}

.consent-more {
  display: inline-flex;
  padding: 7px 8px;
  align-items: center;
  gap: 6px;
  border-radius: 8px;
  background: rgba(87, 214, 255, .055);
  color: var(--cyan);
  font-size: .65rem;
  font-weight: 700;
  transition: background-color .2s ease, color .2s ease;
}

.consent-more:hover {
  background: rgba(87, 214, 255, .13);
  color: #b8eeff;
}

.consent-more svg {
  width: 13px;
  height: 13px;
  stroke-width: 2.6;
}

.contact-form.was-validated .consent-group:has(input:invalid) {
  border-color: rgba(255, 119, 119, .52);
  box-shadow: 0 0 0 3px rgba(255, 91, 91, .08);
}

.form-submit {
  width: 100%;
}

.form-status {
  min-height: 20px;
  margin: 11px 0 0;
  color: #84e7bc;
  font-size: .7rem;
  text-align: center;
}

.contact-card {
  display: flex;
  padding: 34px;
  flex-direction: column;
}

.contact-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.contact-card-top img {
  width: 56px;
  height: 56px;
}

.contact-card-top > div {
  display: grid;
}

.contact-card-top small {
  color: #7891a7;
  font-size: .57rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.contact-card-top strong {
  margin-top: 4px;
  font-family: "Manrope", sans-serif;
  font-size: .98rem;
}

.contact-list {
  display: grid;
  gap: 20px;
  margin: 27px 0;
  list-style: none;
}

.contact-list li {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: start;
  gap: 12px;
}

.contact-list li > span {
  display: grid;
  width: 37px;
  height: 37px;
  place-items: center;
  border: 1px solid rgba(87, 214, 255, .15);
  border-radius: 11px;
  background: rgba(87, 214, 255, .07);
  color: var(--cyan);
}

.contact-list svg {
  width: 17px;
  height: 17px;
}

.contact-list li > div {
  display: grid;
}

.contact-list small {
  color: #758ca1;
  font-size: .59rem;
}

.contact-list a,
.contact-list p {
  margin: 3px 0 0;
  color: #e6eef5;
  font-size: .78rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.contact-list a:hover {
  color: var(--cyan);
}

.whatsapp-card {
  display: grid;
  min-height: 72px;
  margin-top: auto;
  padding: 13px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  border-radius: 17px;
  background: var(--white);
  color: var(--ink);
  transition: transform .25s ease, box-shadow .25s ease;
}

.whatsapp-card:hover {
  box-shadow: 0 15px 38px rgba(0, 0, 0, .18);
  transform: translateY(-3px);
}

.whatsapp-card > span {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border-radius: 13px;
  background: #dbf7e9;
  color: #138656;
}

.whatsapp-card > span svg {
  width: 20px;
  height: 20px;
}

.whatsapp-card > div {
  display: grid;
}

.whatsapp-card small {
  color: var(--muted);
  font-size: .59rem;
}

.whatsapp-card strong {
  font-family: "Manrope", sans-serif;
  font-size: .8rem;
}

.whatsapp-arrow {
  width: 19px;
  height: 19px;
  color: #1c95c9;
}

/* Footer + dialog */

.site-footer {
  padding: 44px 0 27px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  background: #041120;
  color: var(--white);
}

.footer-main {
  display: grid;
  padding-bottom: 38px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 50px;
}

.footer-brand img {
  width: 46px;
  height: 46px;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.2vw, 32px);
}

.footer-nav a {
  color: #8499ad;
  font-size: .7rem;
  transition: color .2s ease;
}

.footer-nav a:hover {
  color: var(--white);
}

.footer-phone {
  display: grid;
  text-align: right;
}

.footer-phone small {
  color: #6f8599;
  font-size: .57rem;
}

.footer-phone strong {
  font-family: "Manrope", sans-serif;
  font-size: .81rem;
}

.footer-bottom {
  display: grid;
  padding-top: 25px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 35px;
  border-top: 1px solid rgba(255, 255, 255, .07);
  color: #5f7488;
  font-size: .59rem;
}

.footer-bottom p {
  margin: 0;
}

.legal-note {
  max-width: 720px;
  justify-self: center;
  text-align: center;
}

.footer-bottom a:hover {
  color: #a3b8ca;
}

.privacy-dialog {
  width: min(calc(100% - 30px), 560px);
  padding: 34px;
  border: 0;
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 30px 100px rgba(0, 10, 25, .35);
  color: var(--ink);
}

.privacy-dialog::backdrop {
  background: rgba(3, 13, 26, .72);
  backdrop-filter: blur(5px);
}

.privacy-dialog h2 {
  margin: 0 0 18px;
  font-family: "Manrope", sans-serif;
  font-size: 1.7rem;
  letter-spacing: -.04em;
}

.privacy-dialog p {
  color: var(--muted);
  font-size: .86rem;
}

.privacy-dialog .button {
  margin-top: 8px;
}

.dialog-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  font-size: 1.3rem;
}

/* Reveal */

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s ease, transform .75s cubic-bezier(.2, .75, .25, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js .reveal-delay-1 {
  transition-delay: .08s;
}

.js .reveal-delay-2 {
  transition-delay: .16s;
}

.js .reveal-delay-3 {
  transition-delay: .24s;
}

/* Responsive */

@media (max-width: 1140px) {
  .header-phone span {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, .92fr) minmax(430px, 1.08fr);
    gap: 26px;
  }

  .hero-visual {
    min-height: 600px;
  }

  .passport-stage {
    right: 2%;
    transform: scale(.92);
    transform-origin: bottom right;
  }

  .service-card {
    padding: 27px;
  }

  .card-link {
    left: 27px;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 74px;
  }

  .main-nav {
    position: fixed;
    z-index: 99;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    padding: 110px 32px 40px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #06182d;
    box-shadow: none;
    transform: translateX(105%);
    transition: transform .35s cubic-bezier(.2, .75, .2, 1);
    backdrop-filter: blur(18px);
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

  .nav-link {
    padding: 16px 2px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    color: #b9c8d5;
    font-size: 1rem;
  }

  .nav-link::after {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 101;
    display: grid;
  }

  .header-actions .button {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    min-height: auto;
    padding-top: 45px;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-copy {
    max-width: 760px;
    padding-bottom: 35px;
  }

  .hero h1 {
    max-width: 800px;
  }

  .hero-visual {
    min-height: 650px;
  }

  .flight-window {
    width: 96%;
    height: 86%;
  }

  .passport-stage {
    right: 14%;
    transform: scale(1);
  }

  .floating-note {
    right: 4%;
  }

  .trust-bar {
    margin-top: 10px;
  }

  .section {
    padding: 100px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .section-heading > p {
    max-width: 650px;
  }

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

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

  .visa-guide-media {
    position: relative;
    top: auto;
    height: 560px;
  }

  .visa-guide-media > img {
    object-position: center 56%;
  }

  .visa-guide-media figcaption strong {
    max-width: 560px;
  }

  .destination-card,
  .destination-wide {
    grid-column: span 6;
  }

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

  .process-list::before {
    display: none;
  }

  .honesty-card {
    grid-template-columns: auto 1fr;
  }

  .honesty-card > p {
    grid-column: 1 / -1;
    padding: 20px 0 0;
    border-top: 1px solid rgba(255, 255, 255, .12);
    border-left: 0;
  }

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

  .about-section::before {
    width: 100%;
    height: 46%;
  }

  .about-media {
    min-height: 620px;
  }

  .about-copy {
    max-width: 760px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .faq-intro {
    position: static;
  }

  .contact-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .contact-heading .section-kicker {
    margin-bottom: 0;
  }

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

  .contact-card {
    min-height: 460px;
  }

  .footer-main {
    grid-template-columns: auto 1fr;
  }

  .footer-nav {
    order: 3;
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .footer-phone {
    justify-self: end;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding: 82px 0;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .section-heading h2,
  .about-copy h2,
  .faq-intro h2,
  .contact-heading h2 {
    font-size: clamp(2.35rem, 11vw, 3.35rem);
  }

  .brand-copy small {
    display: none;
  }

  .header-phone {
    display: none;
  }

  .hero {
    padding-top: var(--header-height);
  }

  .hero-grid {
    padding-top: 44px;
  }

  .eyebrow {
    align-items: flex-start;
    font-size: .63rem;
    line-height: 1.45;
  }

  .hero h1 {
    font-size: clamp(3rem, 14vw, 4.35rem);
  }

  .hero-lead {
    font-size: .97rem;
  }

  .hero-cta {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .hero-cta .button {
    width: 100%;
  }

  .text-link {
    justify-content: center;
  }

  .hero-proof {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-visual {
    min-height: 530px;
    margin-top: 10px;
  }

  .flight-window {
    right: -14%;
    width: 112%;
    height: 81%;
    border-radius: 44% 44% 26px 26px;
  }

  .passport-stage {
    right: 0;
    bottom: 0;
    transform: scale(.74);
    transform-origin: bottom right;
  }

  .floating-note {
    right: auto;
    bottom: 55px;
    left: 0;
  }

  .trust-bar {
    padding: 24px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .trust-items {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .trust-items i {
    display: none;
  }

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

  .service-card {
    min-height: 330px;
  }

  .visa-guide-media {
    height: 510px;
    border-radius: 25px;
    clip-path: inset(0 round 25px);
    -webkit-clip-path: inset(0 round 25px);
  }

  .visa-media-top {
    top: 18px;
    right: 18px;
    left: 18px;
    gap: 9px;
    padding-inline: 11px;
    font-size: .55rem;
  }

  .visa-guide-media figcaption {
    right: 24px;
    bottom: 25px;
    left: 24px;
  }

  .visa-media-shade {
    background:
      linear-gradient(180deg, rgba(3, 14, 29, .08) 0%, rgba(3, 14, 29, .22) 27%, rgba(3, 14, 29, .9) 42%, rgba(3, 14, 29, .97) 55%, rgba(3, 14, 29, .99) 100%),
      linear-gradient(120deg, rgba(6, 25, 47, .22), transparent 58%);
  }

  .visa-guide-media figcaption strong {
    font-size: clamp(1.85rem, 8.5vw, 2.55rem);
  }

  .visa-guide-media figcaption p {
    margin-bottom: 19px;
  }

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

  .visa-purpose-card {
    min-height: 230px;
    padding: 23px;
  }

  .visa-guide-note {
    align-items: start;
  }

  .route-globe {
    right: -130px;
    opacity: .22;
    transform: scale(.75);
  }

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

  .destination-card,
  .destination-wide {
    min-height: 340px;
    grid-column: 1;
  }

  .destinations-note {
    grid-template-columns: auto 1fr;
  }

  .destinations-note a {
    grid-column: 1 / -1;
    padding-left: 41px;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-item {
    min-height: 250px;
  }

  .process-icon {
    margin-bottom: 48px;
  }

  .honesty-card {
    padding: 26px;
    grid-template-columns: 1fr;
  }

  .honesty-mark {
    width: 70px;
    height: 70px;
  }

  .honesty-card > p {
    grid-column: auto;
  }

  .about-section::before {
    height: 39%;
  }

  .about-media {
    min-height: 490px;
  }

  .about-image {
    inset: 0 20px 48px 0;
    border-radius: 25px;
  }

  .about-badge {
    bottom: 76px;
    min-width: 155px;
  }

  .about-route {
    right: 12px;
    left: 12px;
  }

  .faq-list summary {
    font-size: .91rem;
  }

  .contact-section {
    padding: 85px 0 74px;
  }

  .contact-form,
  .contact-card {
    padding: 22px;
    border-radius: 22px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .consent-group {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .consent-more {
    margin-left: 35px;
    justify-self: start;
  }

  .select-menu {
    max-height: 270px;
  }

  .contact-card {
    min-height: 440px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-phone {
    justify-self: start;
    text-align: left;
  }

  .footer-nav {
    grid-column: auto;
    flex-wrap: wrap;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .legal-note {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 420px) {
  .hero-visual {
    min-height: 480px;
  }

  .passport-stage {
    right: 0;
    transform: scale(.65);
  }

  .floating-note {
    bottom: 38px;
    transform: scale(.88);
    transform-origin: bottom left;
  }

  .destination-card,
  .destination-wide {
    min-height: 315px;
  }

  .visa-guide-media {
    height: 485px;
  }

  .visa-media-top {
    justify-content: space-between;
  }

  .visa-media-top i {
    display: none;
  }

  .visa-guide-media figcaption p {
    font-size: .78rem;
  }

  .visa-media-link {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
