/* ==========================================================================
   Visit Visa Turkiye homepage stylesheet
   Poppins (headings) + Lato (body) · crimson #C62828 · navy #1E3A8A
   ========================================================================== */

:root {
  --red: #C62828;
  --red-dark: #A82121;
  --navy: #1E3A8A;
  --navy-deep: #16295F;
  --navy-ink: #101F45;
  --sky: #E3F2FD;
  --gold: #F7C600;
  --ink: #1C2540;
  --body: #414B63;
  --muted: #6B7488;
  --line: #E2E8F2;
  --card-shadow: 0 18px 44px rgba(22, 41, 95, 0.10);
  --radius-btn: 10px;
  --radius-card: 16px;
  --container: 1180px;
}

/* ---------- Base ---------- */

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Lato", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.65;
  color: var(--body);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3 {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 600;
  color: var(--ink);
}

h1 {
  font-size: clamp(2.35rem, 4.6vw, 3.55rem);
  line-height: 1.08;
  letter-spacing: -0.028em;
}

h2 {
  font-size: clamp(1.85rem, 3.1vw, 2.55rem);
  line-height: 1.14;
  letter-spacing: -0.022em;
  color: var(--navy);
}

h3 { line-height: 1.3; }

p { margin: 0; }

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

.section { padding: 104px 0; }
.section-alt { background: var(--sky); }

.ico { width: 1.05em; height: 1.05em; flex: none; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--navy);
  color: #fff;
  padding: 10px 18px;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: var(--radius-btn);
  border: 1.5px solid transparent;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 600;
  font-size: 0.94rem;
  line-height: 1.2;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease,
              transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 24px rgba(198, 40, 40, 0.28);
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(198, 40, 40, 0.34);
}

.btn-outline {
  border-color: var(--navy);
  color: var(--navy);
  background: transparent;
}
.btn-outline:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-2px);
}

.btn-light {
  background: #fff;
  color: var(--navy);
}
.btn-light:hover {
  background: var(--sky);
  transform: translateY(-2px);
}

.btn-sm { padding: 10px 20px; font-size: 0.86rem; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: #fff;
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 6px 24px rgba(22, 41, 95, 0.09);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 36px;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}
.brand-mark { width: 38px; height: 38px; flex: none; }
.brand-text {
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  white-space: nowrap;
}
.brand-text em { font-style: normal; color: var(--red); }
.brand-invert .brand-text { color: #fff; }
.brand-invert .brand-text em { color: #FF8A80; }

.site-nav {
  display: flex;
  gap: 32px;
  margin-left: auto;
}
.site-nav a {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--body);
  transition: color 0.2s ease;
}
.site-nav a:hover { color: var(--red); }

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

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 0;
  background: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */

.hero {
  background: linear-gradient(180deg, #fff 0%, #F3F8FE 100%);
  overflow: hidden;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 56px;
  padding: 72px 0 88px;
}

.hero-copy { max-width: 560px; }

.hero-lede {
  margin-top: 24px;
  font-size: 1.13rem;
  max-width: 500px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-honesty {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 0.83rem;
  line-height: 1.6;
  color: var(--muted);
  max-width: 500px;
}

/* Hero media: photo arch, dashed flag connectors, flag badges.
   All positioned against the same 600 x 640 coordinate space. */

.hero-media {
  position: relative;
  width: min(560px, 100%);
  aspect-ratio: 600 / 640;
  justify-self: end;
}

.hero-arch-bg,
.hero-photo {
  position: absolute;
  left: 18.33%;   /* 110 / 600 */
  top: 9.375%;    /* 60 / 640  */
  width: 63.33%;  /* 380 / 600 */
  height: 87.5%;  /* 560 / 640 */
  border-radius: 50% 50% 6% 6% / 34% 34% 4% 4%;
}

.hero-arch-bg {
  background: var(--sky);
  transform: translate(4.2%, 3%);
}

.hero-photo {
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 30px 60px rgba(22, 41, 95, 0.22);
}

.hero-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.hero-lines path {
  fill: none;
  stroke: var(--navy);
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-dasharray: 5 11;
  opacity: 0.45;
}

.hero-flag {
  position: absolute;
  left: var(--fx);
  top: var(--fy);
  transform: translate(-50%, -50%);
  width: clamp(40px, 9.4%, 54px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 20px rgba(22, 41, 95, 0.22), 0 0 0 3px #fff;
  overflow: hidden;
}
.hero-flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.hero-spark {
  position: absolute;
  width: 22px;
  height: 22px;
  left: 23%;
  top: 3.6%;
}

.hero-plane {
  position: absolute;
  top: 6px;
  left: 46%;
  width: 190px;
  height: auto;
}
.hero-plane .trail {
  stroke: var(--navy);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 7 8;
  opacity: 0.38;
}
.hero-plane .plane { fill: var(--red); }

/* ---------- Trust ticker ---------- */

.ticker {
  background: var(--navy);
  padding: 15px 0;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 30s linear infinite;
}

.ticker-group {
  display: flex;
  align-items: center;
  gap: 46px;
  padding-right: 46px;
  white-space: nowrap;
}

.ticker-item {
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

.ticker-glyph {
  width: 13px;
  height: 13px;
  flex: none;
  color: var(--gold);
  transform: rotate(-12deg);
}

@keyframes ticker-scroll {
  to { transform: translateX(-50%); }
}

/* ---------- How it works: step wheel ---------- */

.hiw-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 64px;
}
.hiw-head p { margin-top: 14px; font-size: 1.08rem; }

.hiw-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 500px) minmax(0, 1fr);
  grid-template-rows: 1fr 1fr;
  column-gap: 48px;
  row-gap: 40px;
  align-items: center;
}

.wheel {
  grid-column: 2;
  grid-row: 1 / 3;
  position: relative;
  width: 100%;
  aspect-ratio: 1;
}

.wheel-orbit {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.wheel-orbit circle {
  stroke: var(--navy);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 6 9;
  opacity: 0.38;
  vector-effect: non-scaling-stroke;
}

.wheel-photo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 58%;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 7px #fff, 0 24px 50px rgba(22, 41, 95, 0.18);
}

.wheel-step {
  position: absolute;
  left: var(--wx);
  top: var(--wy);
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--red);
  color: #fff;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  box-shadow: 0 0 0 5px #fff, 0 10px 22px rgba(198, 40, 40, 0.3);
}

.hiw-card { max-width: 310px; }
.hiw-card-1, .hiw-card-4 { justify-self: end; text-align: right; }
.hiw-card-2, .hiw-card-3 { justify-self: start; }

.hiw-card h3 { font-size: 1.12rem; color: var(--ink); }
.hiw-card p { margin-top: 8px; font-size: 0.94rem; line-height: 1.6; }

.step-tag {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 7px;
}

.hiw-cta { text-align: center; margin-top: 64px; }

/* ---------- Eligibility ---------- */

.elig-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 72px;
  align-items: center;
}

.elig-copy p { margin-top: 16px; }

.elig-note { font-size: 0.92rem; color: var(--muted); }
.elig-note a {
  color: var(--red);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.flag-chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.flag-chips li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 18px 10px 12px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.flag-chips li:hover {
  transform: translateY(-3px);
  border-color: #C7D8EE;
  box-shadow: 0 10px 24px rgba(22, 41, 95, 0.1);
}
.flag-chips img {
  width: 27px;
  height: 20px;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(16, 31, 69, 0.08);
}

/* ---------- Trip types ---------- */

.trips-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 52px;
}
.trips-head p { font-size: 1.05rem; padding-bottom: 6px; }

.trips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.trip-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  overflow: hidden;
  background: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.trip-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow);
  border-color: #C7D8EE;
}

.trip-photo { aspect-ratio: 4 / 3; overflow: hidden; }
.trip-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.trip-card:hover .trip-photo img { transform: scale(1.045); }
.trip-card:nth-child(2) .trip-photo img { object-position: 50% 26%; }

.trip-body { padding: 26px 26px 30px; }
.trip-body h3 { font-size: 1.18rem; color: var(--navy); }
.trip-body p { margin-top: 10px; font-size: 0.95rem; line-height: 1.62; }

/* ---------- Photo break ---------- */

.break {
  position: relative;
  background: url("../images/hero-bosphorus-sunset.jpg") center 32% / cover no-repeat;
  padding: 110px 0;
}
.break::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(13, 20, 46, 0.78) 10%, rgba(13, 20, 46, 0.45) 60%, rgba(13, 20, 46, 0.55) 100%);
}

.break-inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.break-line {
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 600;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.28;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

/* ---------- Pricing ---------- */

.pricing-head {
  max-width: 640px;
  margin-bottom: 56px;
}
.pricing-head p { margin-top: 14px; font-size: 1.05rem; }

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: #fff;
  padding: 36px 32px 32px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow);
}

.price-card h3 { font-size: 1.2rem; color: var(--navy); }

.price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 16px;
}
.amount {
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 600;
  font-size: 2.7rem;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
}
.per { font-size: 0.86rem; color: var(--muted); }

.price-blurb {
  margin-top: 10px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  font-size: 0.94rem;
  color: var(--muted);
}

.price-card ul {
  list-style: none;
  margin: 22px 0 30px;
  padding: 0;
  display: grid;
  gap: 13px;
  flex: 1;
}
.price-card li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 0.94rem;
  line-height: 1.5;
}
.price-card li .ico {
  width: 15px;
  height: 15px;
  margin-top: 5px;
  color: var(--red);
}

.price-featured {
  background: var(--navy);
  border-color: var(--navy);
  color: rgba(255, 255, 255, 0.88);
  box-shadow: 0 24px 54px rgba(22, 41, 95, 0.32);
}
.price-featured:hover { box-shadow: 0 30px 60px rgba(22, 41, 95, 0.4); }
.price-featured h3 { color: #fff; }
.price-featured .amount { color: #fff; }
.price-featured .per,
.price-featured .price-blurb { color: rgba(255, 255, 255, 0.62); }
.price-featured .price-blurb { border-color: rgba(255, 255, 255, 0.18); }
.price-featured li .ico { color: var(--gold); }

.featured-flag {
  position: absolute;
  top: 0;
  right: 28px;
  transform: translateY(-50%);
  background: var(--gold);
  color: var(--navy-ink);
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 6px 13px;
  border-radius: 7px;
}

.pricing-note {
  margin: 36px auto 0;
  max-width: 760px;
  text-align: center;
  font-size: 0.87rem;
  color: var(--muted);
}

/* ---------- Value / what we add ---------- */

.value-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 76px;
  align-items: center;
}

.value-media img {
  border-radius: var(--radius-card);
  box-shadow: var(--card-shadow);
  width: 100%;
}

.value-copy h2 { max-width: 480px; }

.value-list {
  margin-top: 40px;
  display: grid;
  gap: 30px;
}

.value-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  align-items: start;
}

.value-ico {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid rgba(30, 58, 138, 0.12);
  box-shadow: 0 8px 18px rgba(22, 41, 95, 0.08);
  color: var(--red);
}
.value-ico svg { width: 26px; height: 26px; }

.value-item h3 { font-size: 1.08rem; }
.value-item p { margin-top: 6px; font-size: 0.95rem; line-height: 1.62; }

/* ---------- Documents ---------- */

.docs-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 76px;
  align-items: center;
}

.docs-sub { margin-top: 14px; font-size: 1.05rem; }

.docs-list {
  list-style: none;
  margin: 38px 0 0;
  padding: 0;
  display: grid;
  gap: 24px;
}

.docs-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: start;
}

.docs-ico {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--sky);
  color: var(--navy);
}
.docs-ico svg { width: 24px; height: 24px; }

.docs-list h3 { font-size: 1.05rem; }
.docs-list p { margin-top: 4px; font-size: 0.93rem; color: var(--muted); }

.docs-media img {
  border-radius: var(--radius-card);
  box-shadow: var(--card-shadow);
  width: 100%;
}

/* ---------- Testimonial (ships commented out in the HTML) ---------- */

.testimonial-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 64px;
  align-items: center;
}
.testimonial-media img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50% 50% 50% 12px;
  box-shadow: var(--card-shadow);
}
.testimonial-body { margin: 0; }
.testimonial-body blockquote { margin: 0; }
.testimonial-body blockquote p {
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 500;
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  line-height: 1.45;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.testimonial-body figcaption {
  margin-top: 26px;
  display: grid;
  gap: 2px;
}
.testimonial-body figcaption strong { color: var(--navy); font-size: 1rem; }
.testimonial-body figcaption span { font-size: 0.88rem; color: var(--muted); }

/* ---------- FAQ ---------- */

.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 72px;
  align-items: start;
}

.faq-intro { position: sticky; top: 118px; }
.faq-intro p { margin-top: 14px; }

.faq-list { border-top: 1px solid var(--line); }

.faq-item { border-bottom: 1px solid var(--line); }

.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 22px 2px;
  cursor: pointer;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--ink);
  transition: color 0.2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--red); }
.faq-item summary .ico {
  width: 18px;
  height: 18px;
  color: var(--navy);
  transition: transform 0.25s ease;
}
.faq-item[open] summary { color: var(--red); }
.faq-item[open] summary .ico { transform: rotate(180deg); }

.faq-item > p {
  padding: 0 40px 24px 2px;
  font-size: 0.97rem;
}

/* ---------- Final CTA ---------- */

.final-cta {
  background: var(--navy);
  padding: 96px 0;
}

.final-inner { text-align: center; }

.final-cta h2 { color: #fff; }
.final-cta > .container > p:first-of-type,
.final-inner > p:first-of-type {
  margin: 16px auto 34px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.12rem;
}

.final-fine {
  margin: 30px auto 0;
  max-width: 620px;
  font-size: 0.8rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.7fr 0.8fr 1fr;
  gap: 56px;
  padding: 72px 0 48px;
}

.footer-disclaimer {
  margin-top: 22px;
  max-width: 460px;
  font-size: 0.8rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.55);
}

.footer-col h3 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 18px;
}

.footer-col a {
  display: block;
  padding: 5px 0;
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--gold); }

.footer-col address {
  font-style: normal;
  font-size: 0.93rem;
  line-height: 1.8;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}
.footer-bottom p { margin: 0; }

/* ---------- Sticky mobile CTA ---------- */

.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 95;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 20px calc(12px + env(safe-area-inset-bottom));
  background: #fff;
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 30px rgba(22, 41, 95, 0.14);
  transform: translateY(105%);
  transition: transform 0.3s ease;
}
.mobile-cta.show { transform: translateY(0); }

.mobile-cta-text { display: grid; line-height: 1.3; }
.mobile-cta-text strong {
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
}
.mobile-cta-text span { font-size: 0.78rem; color: var(--muted); }

/* ---------- Scroll reveal ---------- */

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.65s ease, transform 0.65s ease;
  }
  .reveal.in {
    opacity: 1;
    transform: none;
  }
  /* gentle stagger inside card grids */
  .trips-grid .reveal:nth-child(2),
  .price-grid .reveal:nth-child(2),
  .docs-list .reveal:nth-child(2),
  .value-list .reveal:nth-child(2) { transition-delay: 0.09s; }
  .trips-grid .reveal:nth-child(3),
  .price-grid .reveal:nth-child(3),
  .docs-list .reveal:nth-child(3),
  .value-list .reveal:nth-child(3) { transition-delay: 0.18s; }
  .docs-list .reveal:nth-child(4),
  .value-list .reveal:nth-child(4) { transition-delay: 0.27s; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker-track { animation: none; flex-wrap: wrap; width: 100%; justify-content: center; }
  .ticker-group { flex-wrap: wrap; justify-content: center; row-gap: 10px; padding-right: 0; }
  .ticker-group[aria-hidden="true"] { display: none; }
  .btn, .trip-card, .flag-chips li, .price-card { transition: none; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1120px) {
  .hiw-grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px) minmax(0, 1fr);
    column-gap: 32px;
  }
}

@media (max-width: 1000px) {
  .section { padding: 84px 0; }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 64px;
    padding: 56px 0 72px;
  }
  .hero-copy { max-width: 620px; }
  .hero-media {
    justify-self: center;
    width: min(480px, 92%);
  }
  .hero-plane { display: none; }

  /* wheel stacks above the four steps */
  .hiw-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
  }
  .wheel {
    width: min(420px, 88vw);
    order: -1;
  }
  .hiw-card,
  .hiw-card-1, .hiw-card-4 {
    max-width: 460px;
    justify-self: auto;
    text-align: left;
  }
  .hiw-cta { margin-top: 48px; }

  .elig-grid,
  .value-grid,
  .docs-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .faq-intro { position: static; }
  .value-media { order: -1; max-width: 560px; }
  .docs-media { max-width: 560px; }

  .trips-head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 40px; }
  .trips-grid { grid-template-columns: repeat(2, 1fr); }

  .price-grid { grid-template-columns: 1fr; max-width: 500px; margin-inline: auto; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 44px; padding: 60px 0 40px; }
}

@media (max-width: 820px) {
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 22px 40px rgba(22, 41, 95, 0.14);
    padding: 10px 24px 18px;
  }
  .site-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }
  .site-nav a:last-child { border-bottom: 0; }
  .nav-open .site-nav { display: flex; }
  .nav-toggle { display: block; }

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

  .break { padding: 84px 0; background-position: 60% 32%; }
  .break-inner { justify-content: flex-start; }
}

@media (max-width: 640px) {
  body { font-size: 17px; }
  .container { width: calc(100% - 40px); }
  .section { padding: 68px 0; }

  .header-inner { min-height: 68px; gap: 14px; }
  .header-actions .btn-sm { padding: 9px 12px; font-size: 0.76rem; }
  .brand-text { font-size: 0.98rem; }
  .brand-mark { width: 32px; height: 32px; }

  .hero-grid { padding: 40px 0 64px; }
  .hero-ctas .btn-lg { width: 100%; }

  .wheel-step { width: 44px; height: 44px; font-size: 1.05rem; }

  .mobile-cta { display: flex; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 4px; }

  .faq-item > p { padding-right: 8px; }

  .testimonial-grid { grid-template-columns: 1fr; gap: 36px; }
  .testimonial-media { max-width: 240px; }
}
