/* =============================================================
   cheQin.ai — Light Edition v2
   Editorial luxury. Refined to surpass openai.com standard.
   ============================================================= */

/* ------- DESIGN TOKENS ------- */
:root{
  /* Surfaces */
  --bg:           #ffffff;
  --bg-soft:      #fbfaf7;
  --bg-tint:      #f4f2ec;
  --bg-cream:     #faf6ee;
  --bg-warm:      #fff8f0;
  --line:         #ebe8e1;
  --line-strong:  #d4d0c6;
  --line-soft:    #f2efe8;

  /* Ink */
  --ink:          #11110d;
  --ink-2:        #2a2a22;
  --ink-3:        #565449;
  --ink-mute:     #8e8b80;
  --ink-faint:    #b8b5aa;

  /* Brand & accents */
  --brand:        #d92d4f;
  --brand-deep:   #b81f3d;
  --brand-2:      #ff5470;
  --accent:       #ff7a45;
  --accent-2:     #ffd166;
  --emerald:      #0e7a66;
  --emerald-soft: #e8f5f1;
  --indigo:       #3d3df5;
  --plum:         #6f3afa;

  /* Effects */
  --shadow-xs:    0 1px 2px rgba(17,17,13,.04);
  --shadow-sm:    0 2px 4px rgba(17,17,13,.04), 0 1px 2px rgba(17,17,13,.03);
  --shadow:       0 12px 32px -12px rgba(17,17,13,.10), 0 4px 8px -4px rgba(17,17,13,.04);
  --shadow-lg:    0 40px 80px -24px rgba(17,17,13,.18), 0 16px 32px -16px rgba(17,17,13,.08);
  --shadow-glow:  0 30px 60px -20px rgba(217,45,79,.18), 0 12px 24px -12px rgba(255,122,69,.10);

  --radius-sm:    10px;
  --radius:       16px;
  --radius-lg:    24px;
  --radius-xl:    32px;
  --radius-2xl:   40px;

  /* Type */
  --font-display: "Fraunces", "Times New Roman", Georgia, serif;
  --font-body:    "Inter Tight", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Easing */
  --ease-out:     cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring:  cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ------- RESET ------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
}
/* Anchor targets land below the sticky nav, not under it */
section[id], #top { scroll-margin-top: 90px; }
@media (max-width: 920px){
  section[id], #top { scroll-margin-top: 80px; }
}
@media (max-width: 680px){
  section[id], #top { scroll-margin-top: 72px; }
}
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: -0.005em;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; padding: 0; }
ul, ol { list-style: none; padding: 0; margin: 0; }
::selection { background: var(--brand); color: #fff; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }

/* ------- TYPOGRAPHY SYSTEM ------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.02;
  color: var(--ink);
  margin: 0;
  font-feature-settings: "ss01";
}
h1 em, h2 em, h3 em, h4 em, blockquote em {
  font-style: italic;
  font-variation-settings: "opsz" 144;
  color: var(--brand);
  font-weight: 400;
}

.section__title {
  font-size: clamp(40px, 5.8vw, 76px);
  margin-bottom: 24px;
  font-weight: 380;
  letter-spacing: -0.035em;
  font-variation-settings: "opsz" 144;
}
.section__lede {
  font-size: clamp(17px, 1.35vw, 19px);
  color: var(--ink-3);
  max-width: 680px;
  margin: 0 0 64px;
  line-height: 1.55;
  letter-spacing: -0.005em;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--brand);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 1px;
  background: currentColor;
}
.eyebrow--muted { color: var(--ink-mute); }
.eyebrow--white { color: rgba(255,255,255,.95); }
.eyebrow--white::before { background: rgba(255,255,255,.6); }

.muted { color: var(--ink-mute); }
.accent { color: var(--brand); }

/* ------- TICKER ------- */
.ticker {
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  font-size: 12.5px;
  padding: 10px 0;
  position: relative;
  letter-spacing: 0.005em;
}
.ticker::before, .ticker::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.ticker::before { left: 0; background: linear-gradient(90deg, var(--ink), transparent); }
.ticker::after  { right: 0; background: linear-gradient(-90deg, var(--ink), transparent); }

.ticker__track {
  display: flex;
  white-space: nowrap;
  gap: 28px;
  animation: scroll 70s linear infinite;
  width: max-content;
  align-items: center;
}
.ticker__track strong { color: var(--accent-2); font-weight: 600; }
.ticker__dot { color: var(--brand-2); font-size: 8px; }
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ------- NAV ------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--line-soft);
  transition: background .3s, border-color .3s;
}
.nav__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__brand { display: flex; align-items: center; }
.nav__brand img {
  height: 52px;
  width: auto;
  transition: transform .25s var(--ease-out);
}
.nav__brand:hover img { transform: scale(1.04); }

.nav__links { display: flex; gap: 40px; flex: 1; justify-content: center; }
.nav__links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-2);
  position: relative;
  padding: 8px 0;
  transition: color .2s var(--ease-out);
  letter-spacing: -0.005em;
}
.nav__links a:hover { color: var(--brand); }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 2px;
  height: 1.5px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease-out);
}
.nav__links a:hover::after { transform: scaleX(1); }

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

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  margin-left: auto;
  cursor: pointer;
}
.nav__burger span {
  width: 22px;
  height: 1.8px;
  background: var(--ink);
  border-radius: 2px;
  transition: background .2s var(--ease-out);
}
.nav__burger:hover span { background: var(--brand); }

/* ------- FULL-SCREEN MENU OVERLAY (sits above everything) ------- */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 100;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity .3s var(--ease-out), transform .35s var(--ease-out), visibility .35s;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.menu-overlay.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu-overlay__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  border-bottom: 1px solid var(--line-soft);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1;
}
.menu-overlay__brand img {
  height: 46px;
  width: auto;
  display: block;
}
.menu-overlay__close {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  transition: background .2s var(--ease-out), transform .2s var(--ease-out);
  cursor: pointer;
}
.menu-overlay__close:hover { background: var(--bg-tint); }
.menu-overlay__close:active { transform: scale(0.94); }

.menu-overlay__nav {
  display: flex;
  flex-direction: column;
  padding: 32px 0 8px;
  flex: 1;
}
.menu-overlay__nav a {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 28px 24px;
  color: var(--ink);
  border-bottom: 1px solid var(--line-soft);
  font-family: var(--font-display);
  font-size: clamp(34px, 9vw, 44px);
  font-weight: 420;
  letter-spacing: -0.028em;
  line-height: 1;
  transition: background .2s var(--ease-out), color .2s var(--ease-out);
  text-decoration: none;
  opacity: 0;
  transform: translateX(-12px);
  animation: menuItemIn .5s var(--ease-out) forwards;
}
.menu-overlay.open .menu-overlay__nav a:nth-child(1) { animation-delay: .08s; }
.menu-overlay.open .menu-overlay__nav a:nth-child(2) { animation-delay: .14s; }
.menu-overlay.open .menu-overlay__nav a:nth-child(3) { animation-delay: .20s; }
@keyframes menuItemIn {
  to { opacity: 1; transform: translateX(0); }
}
.menu-overlay__nav a:hover,
.menu-overlay__nav a:active {
  background: var(--bg-soft);
  color: var(--brand);
}
.menu-overlay__nav a:hover .menu-overlay__arrow,
.menu-overlay__nav a:active .menu-overlay__arrow {
  color: var(--brand);
  transform: translateX(6px);
}
.menu-overlay__num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--brand);
  font-weight: 500;
  letter-spacing: 0.08em;
  align-self: flex-start;
  padding-top: 10px;
  min-width: 24px;
}
.menu-overlay__label { flex: 1; }
.menu-overlay__arrow {
  font-family: var(--font-body);
  font-size: 22px;
  color: var(--ink-faint);
  font-weight: 400;
  transition: transform .25s var(--ease-out), color .2s var(--ease-out);
  align-self: center;
}

.menu-overlay__foot {
  padding: 24px 22px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
}
.menu-overlay__foot .btn--block { padding: 16px 22px; font-size: 16px; }
.menu-overlay__contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 13.5px;
  color: var(--ink-3);
  flex-wrap: wrap;
}
.menu-overlay__contact a {
  color: var(--ink-2);
  font-weight: 500;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 1px;
  transition: color .2s var(--ease-out), border-color .2s var(--ease-out);
}
.menu-overlay__contact a:hover { color: var(--brand); border-color: var(--brand); }

body.menu-open { overflow: hidden; }

/* Hide the burger when overlay is open (close button takes over) */
.menu-overlay.open ~ .nav .nav__burger,
body.menu-open .nav__burger { visibility: hidden; }

/* ------- BUTTONS ------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: 999px;
  transition: background .25s var(--ease-out), color .25s var(--ease-out), border-color .25s var(--ease-out), transform .25s var(--ease-out), box-shadow .25s var(--ease-out);
  white-space: nowrap;
  border: 1px solid transparent;
  letter-spacing: -0.005em;
  position: relative;
  cursor: pointer;
}
.btn--primary {
  background: var(--ink);
  color: #fff;
}
.btn--primary:hover {
  background: var(--brand);
  color: #fff;
  transform: translateY(-1.5px);
  box-shadow: 0 12px 24px -8px rgba(217,45,79,.4);
}
.btn--primary:active {
  background: var(--brand-deep);
  transform: translateY(0);
  box-shadow: 0 4px 8px -4px rgba(217,45,79,.4);
}
.btn--primary:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn--ghost:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}
.btn--ghost:active {
  background: var(--ink-2);
  transform: translateY(0);
}
.btn--ghost:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}
.btn--lg { padding: 16px 30px; font-size: 16px; }
.btn--sm { padding: 9px 16px; font-size: 13.5px; }
.btn--block { width: 100%; padding: 14px 18px; }

/* ------- HERO ------- */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: 96px 32px 120px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 500px at 90% 8%, rgba(255,122,69,.12), transparent 55%),
    radial-gradient(700px 400px at 5% 90%, rgba(217,45,79,.09), transparent 55%),
    radial-gradient(500px 300px at 50% 50%, rgba(255,209,102,.07), transparent 65%);
  pointer-events: none;
  z-index: -1;
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.025 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .4;
  pointer-events: none;
}

.hero__meta { margin-bottom: 28px; }
.meta__chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--ink-3);
  font-weight: 500;
  box-shadow: var(--shadow-xs);
  letter-spacing: -0.005em;
}

.dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; flex-shrink: 0; }
.dot--live {
  background: var(--brand);
  position: relative;
  box-shadow: 0 0 0 0 rgba(217,45,79,.5);
  animation: livePulse 2s ease-out infinite;
}
@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0 rgba(217,45,79,.5); }
  70%  { box-shadow: 0 0 0 8px rgba(217,45,79,0); }
  100% { box-shadow: 0 0 0 0 rgba(217,45,79,0); }
}
.dot--green { background: var(--emerald); }
.dot--red   { background: var(--brand); }

.hero__title {
  font-size: clamp(56px, 8.4vw, 124px);
  font-weight: 360;
  line-height: 0.96;
  letter-spacing: -0.045em;
  margin: 0 0 28px;
  font-variation-settings: "opsz" 144;
}

.hero__lede {
  font-size: clamp(17px, 1.35vw, 19.5px);
  color: var(--ink-3);
  max-width: 580px;
  line-height: 1.55;
  margin: 0 0 32px;
  letter-spacing: -0.005em;
}

.hero__bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 0 36px;
}
.hero__bullets li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.012em;
}
.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--emerald);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(14,122,102,.25);
}

.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }

.hero__apps { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.hero__apps--center { justify-content: center; }
.apps__label {
  font-size: 12px;
  color: var(--ink-mute);
  margin-right: 6px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.store {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: var(--ink);
  color: #fff;
  padding: 10px 18px;
  border-radius: 14px;
  transition: all .25s var(--ease-out);
}
.store:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -8px rgba(17,17,13,.3);
}
.store span { display: flex; flex-direction: column; line-height: 1.1; }
.store small {
  font-size: 9.5px;
  opacity: .75;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}
.store strong { font-size: 14.5px; font-weight: 600; letter-spacing: -0.005em; }

/* ------- HERO CARD ------- */
.hero__card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  isolation: isolate;
}
.hero__card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255,122,69,.4), rgba(217,45,79,.25), transparent 60%);
  z-index: -1;
  filter: blur(24px);
  opacity: .5;
}
.card__top { display: flex; justify-content: space-between; align-items: flex-start; }
.card__top small {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}
.card__city {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 480;
  margin-top: 6px;
  letter-spacing: -0.025em;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(217,45,79,.08);
  color: var(--brand);
  font-weight: 600;
}
.badge--live { font-family: var(--font-mono); }

.card__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.card__grid div { display: flex; flex-direction: column; gap: 4px; }
.card__grid strong { font-size: 14.5px; font-weight: 600; letter-spacing: -0.01em; }
.card__grid small {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: var(--ink-mute);
}

.card__steve { display: flex; align-items: center; gap: 12px; }
.card__steve > div { flex: 1; display: flex; flex-direction: column; }
.card__steve strong { font-size: 14.5px; font-weight: 600; }
.card__steve small { font-size: 12px; }

.avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(217,45,79,.25);
}
.timer {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  background: var(--ink);
  color: var(--accent-2);
  padding: 6px 12px;
  border-radius: 8px;
  letter-spacing: 0.02em;
}

.card__sub { font-size: 12px; color: var(--ink-mute); margin: 0; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 500; }
.live { color: var(--brand); font-weight: 600; }

.bids { display: flex; flex-direction: column; gap: 6px; }
.bids li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 12px;
  background: var(--bg-soft);
  transition: all .25s var(--ease-out);
  border: 1px solid transparent;
}
.bids li:hover {
  background: #fff;
  border-color: var(--line);
  transform: translateX(3px);
  box-shadow: var(--shadow-sm);
}
.bids li:first-child {
  background: linear-gradient(135deg, var(--emerald-soft), rgba(255,209,102,.12));
  border: 1px solid rgba(14,122,102,.2);
}
.rank {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-mono);
  flex-shrink: 0;
}
.bids li:first-child .rank {
  background: var(--emerald);
  color: #fff;
  border-color: var(--emerald);
}
.bid__name { flex: 1; display: flex; flex-direction: column; font-size: 13.5px; font-weight: 500; gap: 2px; }
.bid__name small { font-size: 11px; }
.bid__price { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; }
.bid__price s { color: var(--ink-mute); font-size: 11px; font-family: var(--font-mono); }
.bid__price b { font-size: 15px; color: var(--ink); font-weight: 600; font-family: var(--font-mono); }
.bids li:first-child .bid__price b { color: var(--emerald); }

.card__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.card__foot div { display: flex; flex-direction: column; gap: 2px; }
.card__foot small { font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 500; }
.save {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 480;
  color: var(--emerald);
  letter-spacing: -0.025em;
  line-height: 1;
}

/* ------- STRIP ------- */
.strip {
  background: var(--bg-cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.strip__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 48px 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  align-items: center;
}
.strip__col { display: flex; flex-direction: column; gap: 6px; }
.kpi {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 480;
  letter-spacing: -0.03em;
  line-height: 1;
}
.strip__col small { font-size: 12.5px; color: var(--ink-3); letter-spacing: -0.005em; }
.countries {
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.55;
  letter-spacing: -0.005em;
}
.countries span { color: var(--ink-mute); font-style: italic; font-family: var(--font-display); }

.marquee {
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  padding: 16px 0;
  font-family: var(--font-mono);
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  position: relative;
}
.marquee::before, .marquee::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--ink), transparent); }
.marquee::after  { right: 0; background: linear-gradient(-90deg, var(--ink), transparent); }
.marquee__track {
  display: flex;
  gap: 36px;
  white-space: nowrap;
  animation: scroll 55s linear infinite;
  width: max-content;
  align-items: center;
}
.marquee i {
  color: var(--accent-2);
  font-style: normal;
  font-size: 8px;
  opacity: .8;
}

/* ------- SECTIONS ------- */
.section { padding: 140px 0; position: relative; }
.section + .section { border-top: 1px solid var(--line-soft); }

/* ------- SAVINGS / COMPARE ------- */
.savings { background: var(--bg-soft); }
.compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: stretch;
  margin-bottom: 96px;
}
.compare__card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  transition: all .35s var(--ease-out);
}
.compare__card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.compare__card--new {
  background: linear-gradient(160deg, #fff 0%, var(--bg-warm) 100%);
  border-color: rgba(217,45,79,.18);
  box-shadow: var(--shadow-glow);
}
.compare__card h3 {
  font-size: 28px;
  font-weight: 460;
  letter-spacing: -0.025em;
}

.compare__vs { display: flex; align-items: center; justify-content: center; }
.compare__vs span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  color: var(--ink-mute);
  background: #fff;
  border: 1px solid var(--line);
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
}

.bar { display: flex; flex-direction: column; gap: 10px; }
.bar > small {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}
.bar__amount {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 460;
  letter-spacing: -0.03em;
  line-height: 1;
}
.bar__amount--accent {
  background: linear-gradient(135deg, var(--brand), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.bar__split {
  display: flex;
  height: 38px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-tint);
}
.bar__hotel {
  background: var(--emerald);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.005em;
}
.bar__hotel--full {
  background: linear-gradient(90deg, var(--emerald), #15a18a);
}
.bar__commission {
  background: var(--brand);
  color: #fff;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
}
.bar__legend { display: flex; gap: 18px; font-size: 12px; color: var(--ink-3); }
.bar__legend span { display: inline-flex; align-items: center; gap: 6px; }
.compare__note {
  font-size: 14.5px;
  color: var(--ink-3);
  margin: 0;
  line-height: 1.6;
  letter-spacing: -0.005em;
}

/* Calculator */
.calc {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 56px;
  box-shadow: var(--shadow);
}
.calc__title {
  font-size: clamp(28px, 3vw, 40px);
  margin-bottom: 36px;
  font-weight: 420;
}
.calc__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: center;
}
.calc__result {
  background: linear-gradient(160deg, var(--bg-cream) 0%, var(--bg-warm) 100%);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  border: 1px solid rgba(217,45,79,.12);
  position: relative;
  overflow: hidden;
}
.calc__result::before {
  content: "";
  position: absolute;
  top: -50%; right: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at center, rgba(255,122,69,.15), transparent 50%);
  pointer-events: none;
}
.calc__result > * { position: relative; }
.calc__result small {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
}
.calc__big {
  font-family: var(--font-display);
  font-size: clamp(56px, 6vw, 84px);
  font-weight: 460;
  color: var(--brand);
  line-height: 1;
  margin: 8px 0;
  letter-spacing: -0.04em;
  font-variation-settings: "opsz" 144;
}

.calc__inputs { display: flex; flex-direction: column; gap: 28px; }
.calc__inputs label { display: flex; flex-direction: column; gap: 10px; }
.calc__inputs label > span {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  color: var(--ink-3);
  font-weight: 500;
  letter-spacing: -0.005em;
}
.calc__inputs label > span b {
  font-family: var(--font-mono);
  color: var(--ink);
  font-weight: 500;
  background: var(--bg-tint);
  padding: 2px 10px;
  border-radius: 6px;
  font-size: 13px;
}
.calc__inputs input[type=range] {
  -webkit-appearance: none; appearance: none;
  width: 100%;
  height: 6px;
  background: var(--bg-tint);
  border-radius: 999px;
  outline: none;
}
.calc__inputs input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--brand);
  cursor: pointer;
  border: 3px solid #fff;
  box-shadow: 0 4px 12px rgba(217,45,79,.4);
  transition: transform .2s var(--ease-spring);
}
.calc__inputs input[type=range]::-webkit-slider-thumb:hover { transform: scale(1.15); }
.calc__inputs input[type=range]::-webkit-slider-thumb:active { transform: scale(1.05); }
.calc__inputs input[type=range]::-moz-range-thumb {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--brand);
  cursor: pointer;
  border: 3px solid #fff;
  box-shadow: 0 4px 12px rgba(217,45,79,.4);
}
.calc__scale {
  display: flex;
  justify-content: space-between;
  color: var(--ink-mute);
  font-size: 11px;
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
}
.calc__totals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.calc__totals div { display: flex; flex-direction: column; gap: 4px; }
.calc__totals small { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 500; }
.calc__totals b {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 460;
  letter-spacing: -0.03em;
}

/* ------- HOW IT WORKS ------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all .35s var(--ease-out);
}
.step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--line-strong);
}
.step__num {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--brand);
  font-weight: 500;
  letter-spacing: 0.08em;
}
.step h3 {
  font-size: 28px;
  font-weight: 460;
  letter-spacing: -0.028em;
  line-height: 1.05;
}
.step p {
  font-size: 14.5px;
  color: var(--ink-3);
  margin: 0;
  line-height: 1.6;
  letter-spacing: -0.005em;
}

.tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.tags li {
  font-size: 11.5px;
  padding: 5px 11px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-3);
  font-weight: 500;
  letter-spacing: -0.005em;
}

.step__visual {
  background: var(--bg-cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}
.step__visual > small {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
  font-weight: 500;
}
.formline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 13.5px;
}
.formline small { font-size: 11px; color: var(--ink-mute); letter-spacing: -0.005em; }
.formline b { font-weight: 600; letter-spacing: -0.01em; }

.incoming { display: flex; flex-direction: column; gap: 6px; }
.incoming li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 500;
  animation: slideIn .6s var(--ease-out) backwards;
}
.incoming li:nth-child(1) { animation-delay: 0s; }
.incoming li:nth-child(2) { animation-delay: .1s; }
.incoming li:nth-child(3) { animation-delay: .2s; }
.incoming li:nth-child(4) { animation-delay: .3s; }
.incoming li:nth-child(5) { animation-delay: .4s; }
@keyframes slideIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.incoming li b { font-family: var(--font-mono); color: var(--emerald); font-weight: 600; }
.incoming__foot {
  text-align: right;
  font-size: 13px;
  color: var(--ink-3);
  padding-top: 6px;
}
.incoming__foot b {
  color: var(--brand);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 480;
}

.match {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 16px;
  border-radius: 12px;
}
.match strong { font-size: 15px; display: block; font-weight: 600; }
.match small { font-size: 12px; color: var(--ink-mute); }
.match__price { display: flex; flex-direction: column; align-items: flex-end; line-height: 1.2; gap: 2px; }
.match__price b {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--brand);
  font-weight: 480;
  letter-spacing: -0.025em;
}
.match__price small { font-size: 11px; }
.match__price em {
  font-size: 11px;
  color: var(--emerald);
  font-style: normal;
  font-weight: 600;
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ------- DESTINATIONS ------- */
.destinations { background: var(--bg-soft); }
.dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 20px;
}
.dest {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all .35s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.dest::after {
  content: "→";
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 20px;
  color: var(--ink-faint);
  transition: all .3s var(--ease-out);
}
.dest:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--line-strong);
}
.dest:hover::after {
  color: var(--brand);
  transform: translate(4px, -4px);
}
.dest h3 {
  font-size: 36px;
  font-weight: 460;
  letter-spacing: -0.03em;
}
.dest__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.dest__meta span { font-size: 13px; color: var(--ink-3); }
.dest__meta b { color: var(--ink); font-weight: 600; font-family: var(--font-mono); font-size: 13px; }
.pill {
  font-size: 11px;
  padding: 5px 11px;
  background: var(--emerald-soft);
  color: var(--emerald);
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: -0.005em;
}

.dest--featured {
  grid-column: span 2;
  grid-row: span 2;
  background:
    radial-gradient(circle at 80% 20%, rgba(255,122,69,.4), transparent 50%),
    linear-gradient(135deg, #14140d 0%, #2e1810 50%, var(--brand) 100%);
  color: #fff;
  border: none;
  min-height: 380px;
  padding: 36px;
}
.dest--featured::after { color: rgba(255,255,255,.6); }
.dest--featured h3 {
  font-size: clamp(56px, 7vw, 80px);
  color: #fff;
  letter-spacing: -0.04em;
}
.dest--featured .dest__meta span { color: rgba(255,255,255,.85); }
.dest--featured .dest__meta b { color: #fff; }
.dest--featured .pill {
  background: rgba(255,255,255,.18);
  color: #fff;
  backdrop-filter: blur(10px);
}

.dest--featured-2 {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--accent) 0%, var(--brand) 100%);
  color: #fff;
  border: none;
  padding: 32px;
}
.dest--featured-2::after { color: rgba(255,255,255,.6); }
.dest--featured-2 h3 {
  font-size: 52px;
  color: #fff;
  letter-spacing: -0.035em;
}
.dest--featured-2 .dest__meta span { color: rgba(255,255,255,.92); }
.dest--featured-2 .dest__meta b { color: #fff; }
.dest--featured-2 .pill {
  background: rgba(255,255,255,.22);
  color: #fff;
  backdrop-filter: blur(10px);
}

.dest__more {
  text-align: center;
  margin-top: 56px;
  font-size: 15px;
  color: var(--ink-3);
}
.link-arrow {
  display: inline-block;
  margin-top: 10px;
  font-weight: 500;
  color: var(--brand);
  border-bottom: 1.5px solid var(--brand);
  padding-bottom: 2px;
  transition: all .25s var(--ease-out);
}
.link-arrow:hover {
  color: var(--ink);
  border-color: var(--ink);
}

/* ------- LONG STAY ------- */
.long-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: center;
}
.long-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 24px;
}
.long-features .btn {
  grid-column: span 2;
  justify-self: start;
  margin-top: 12px;
}
.feat { display: flex; flex-direction: column; gap: 8px; }
.feat h4 {
  font-size: 22px;
  font-weight: 460;
  letter-spacing: -0.025em;
}
.feat p {
  font-size: 14.5px;
  color: var(--ink-3);
  margin: 0;
  line-height: 1.55;
  letter-spacing: -0.005em;
}

.long-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
.long-card h4 {
  font-size: 26px;
  margin-bottom: 28px;
  font-weight: 460;
  letter-spacing: -0.025em;
}
.rate-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}
.rate-list li {
  display: grid;
  grid-template-columns: 80px 1fr 60px;
  align-items: center;
  gap: 14px;
  font-size: 14px;
}
.rate-list span {
  color: var(--ink-3);
  font-size: 13px;
  font-weight: 500;
}
.rate-list b {
  text-align: right;
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--brand);
  font-size: 14px;
}
.rate-bar {
  height: 8px;
  background: var(--bg-tint);
  border-radius: 999px;
  overflow: hidden;
}
.rate-bar i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  border-radius: 999px;
  animation: grow 1.4s var(--ease-out) forwards;
  transform-origin: left;
}
@keyframes grow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

/* ------- QUOTE ------- */
.quote {
  padding: 140px 0;
  text-align: center;
  background:
    radial-gradient(900px 500px at 50% 50%, rgba(255,209,102,.15), transparent 70%),
    radial-gradient(600px 400px at 80% 30%, rgba(255,122,69,.08), transparent 70%),
    var(--bg-cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(64px, 10vw, 156px);
  line-height: 0.95;
  font-weight: 360;
  margin: 0 0 36px;
  letter-spacing: -0.045em;
  position: relative;
  font-variation-settings: "opsz" 144;
}
.quote blockquote em { color: var(--brand); }
.quotemark {
  font-family: var(--font-display);
  color: var(--accent);
  font-size: 0.6em;
  line-height: 0;
  vertical-align: 0.4em;
  margin: 0 0.05em;
  font-style: italic;
}
.quote p {
  font-size: 18px;
  color: var(--ink-3);
  max-width: 600px;
  margin: 0 auto;
  letter-spacing: -0.005em;
}

/* ------- HOTELIERS ------- */
.hoteliers .section__title { max-width: 920px; }
.hotelier-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 56px;
}
.hstep {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  transition: all .35s var(--ease-out);
}
.hstep:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.hstep h4 {
  font-size: 24px;
  font-weight: 460;
  letter-spacing: -0.025em;
}
.hstep p {
  font-size: 14.5px;
  color: var(--ink-3);
  margin: 0;
  line-height: 1.55;
}
.hstep--accent {
  background:
    radial-gradient(circle at 100% 0%, rgba(255,122,69,.2), transparent 50%),
    linear-gradient(160deg, var(--ink) 0%, #2a1a10 100%);
  color: #fff;
  border: none;
}
.hstep--accent h4 { color: #fff; }
.hstep--accent p { color: rgba(255,255,255,.75); }
.hstep--accent .step__num { color: var(--accent-2); }
.hstep .badge {
  position: absolute;
  top: 28px;
  right: 28px;
  background: var(--accent);
  color: #fff;
}

.hotelier-cta {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.hotelier-cta::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,209,102,.15), transparent 60%);
  pointer-events: none;
}
.hotelier-cta > * { position: relative; }
.hotelier-cta h4 {
  font-size: 30px;
  margin: 0;
  font-weight: 460;
  letter-spacing: -0.025em;
}
.hotelier-cta p {
  font-size: 15px;
  color: var(--ink-3);
  margin: 6px 0 0;
  flex: 1;
  min-width: 240px;
}

/* ------- TESTIMONIALS ------- */
.testimonials { background: var(--bg-soft); }
.t-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.t-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: all .35s var(--ease-out);
}
.t-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--line-strong);
}
.stars {
  color: var(--accent-2);
  font-size: 16px;
  letter-spacing: 3px;
}
.t-card blockquote {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.4;
  margin: 0;
  font-weight: 420;
  letter-spacing: -0.018em;
  color: var(--ink);
}
.t-card blockquote strong {
  color: var(--brand);
  font-weight: 480;
}
.t-card footer {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.t-card footer div { display: flex; flex-direction: column; gap: 2px; }
.t-card footer b { font-size: 14px; font-weight: 600; letter-spacing: -0.005em; }
.t-card footer small { font-size: 12px; color: var(--ink-mute); }

/* ------- FAQ ------- */
.faq .section__lede a {
  color: var(--brand);
  border-bottom: 1.5px solid var(--brand);
  font-weight: 500;
}
.faqs {
  display: flex;
  flex-direction: column;
  max-width: 920px;
  margin: 0 auto;
  gap: 0;
  border-top: 1px solid var(--line);
}
.faqs details {
  border-bottom: 1px solid var(--line);
  transition: padding .25s var(--ease-out);
}
.faqs details[open] { padding-bottom: 4px; }
.faqs summary {
  padding: 26px 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 460;
  color: var(--ink);
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: color .25s var(--ease-out);
  letter-spacing: -0.022em;
  line-height: 1.25;
}
.faqs summary::-webkit-details-marker { display: none; }
.faqs summary:hover { color: var(--brand); }
.faq__num {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--brand);
  font-weight: 500;
  min-width: 36px;
  letter-spacing: 0.05em;
}
.faq__plus {
  margin-left: auto;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--ink-mute);
  transition: all .3s var(--ease-out);
  font-weight: 300;
  flex-shrink: 0;
}
.faqs details[open] .faq__plus {
  transform: rotate(45deg);
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}
.faqs details p {
  margin: 0 0 26px 56px;
  padding: 0;
  font-family: var(--font-body);
  font-size: 15.5px;
  color: var(--ink-3);
  line-height: 1.65;
  letter-spacing: -0.005em;
  max-width: 680px;
  animation: faqIn .35s var(--ease-out);
}
@keyframes faqIn { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } }

/* ------- FINAL CTA ------- */
.final-cta {
  padding: 140px 0;
  text-align: center;
  background:
    radial-gradient(800px 500px at 50% 0%, rgba(255,122,69,.18), transparent 60%),
    radial-gradient(600px 400px at 80% 100%, rgba(217,45,79,.12), transparent 60%),
    radial-gradient(500px 300px at 20% 100%, rgba(255,209,102,.1), transparent 60%),
    var(--bg);
  position: relative;
  overflow: hidden;
}
.final-cta__title {
  font-size: clamp(56px, 9vw, 120px);
  margin: 0 auto 22px;
  max-width: 920px;
  font-weight: 360;
  letter-spacing: -0.045em;
  font-variation-settings: "opsz" 144;
}
.final-cta .section__lede { margin-left: auto; margin-right: auto; }

/* ------- FOOTER ------- */
.footer {
  background: var(--ink);
  color: #fff;
  padding: 88px 0 36px;
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
  opacity: .4;
}
.footer .container { display: flex; flex-direction: column; gap: 56px; }
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 64px;
}
.footer__brand img {
  height: 60px;
  filter: brightness(1.15);
  margin-bottom: 22px;
}
.footer__brand p {
  font-size: 15px;
  color: rgba(255,255,255,.6);
  max-width: 360px;
  line-height: 1.6;
  margin: 0 0 24px;
  letter-spacing: -0.005em;
}
.footer__apps { display: flex; flex-wrap: wrap; gap: 10px; }
.footer__apps .store { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.06); }
.footer__apps .store:hover { background: rgba(255,255,255,.15); }

.footer__cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px; }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-2);
  font-weight: 500;
  margin: 0 0 8px;
}
.footer__col a {
  font-size: 14px;
  color: rgba(255,255,255,.7);
  transition: color .2s var(--ease-out);
  letter-spacing: -0.005em;
}
.footer__col a:hover { color: #fff; }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 13px;
  color: rgba(255,255,255,.5);
  letter-spacing: -0.005em;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1100px){
  .hero { grid-template-columns: 1fr; gap: 56px; padding: 72px 32px 96px; }
  .hero__card { max-width: 580px; width: 100%; margin: 0 auto; }
  .calc__grid { grid-template-columns: 1fr; gap: 40px; }
  .long-grid { grid-template-columns: 1fr; gap: 48px; }
  .dest-grid { grid-template-columns: repeat(3, 1fr); }
  .dest--featured { grid-column: span 3; min-height: 320px; }
  .dest--featured-2 { grid-column: span 3; }
}

@media (max-width: 920px){
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__brand img { height: 48px; }

  .strip__inner { grid-template-columns: repeat(2, 1fr); gap: 28px; padding: 36px 28px; }
  .compare { grid-template-columns: 1fr; }
  .compare__vs { padding: 8px 0; }
  .compare__vs span { width: 52px; height: 52px; font-size: 24px; }

  .steps { grid-template-columns: 1fr; }
  .hotelier-steps { grid-template-columns: 1fr; }
  .t-grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 44px; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); }

  .section { padding: 96px 0; }
  .quote { padding: 96px 0; }
  .final-cta { padding: 96px 0; }

  .calc { padding: 36px 28px; }
}

@media (max-width: 680px){
  body { font-size: 16px; }
  .container { padding: 0 22px; }
  .nav__inner { padding: 14px 22px; gap: 16px; }
  .nav__brand img { height: 46px; }

  .hero { padding: 48px 22px 72px; gap: 40px; }
  .hero__title { font-size: clamp(52px, 13.5vw, 76px); letter-spacing: -0.045em; }
  .hero__lede { font-size: 16px; }
  .hero__bullets li { font-size: 16px; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; }

  .hero__card { padding: 22px; }
  .card__city { font-size: 22px; }
  .card__grid { gap: 12px; }

  .strip__inner { grid-template-columns: 1fr 1fr; gap: 24px; padding: 32px 22px; }
  .strip__col--countries { grid-column: span 2; }
  .kpi { font-size: 26px; }

  .section__title { font-size: clamp(34px, 9vw, 48px); }
  .section__lede { font-size: 16px; margin-bottom: 44px; }

  .calc { padding: 28px 22px; border-radius: 24px; }
  .calc__title { font-size: 26px; margin-bottom: 28px; }
  .calc__result { padding: 28px 22px; }
  .calc__big { font-size: 56px; }
  .calc__totals { grid-template-columns: 1fr; gap: 14px; }
  .calc__totals b { font-size: 28px; }

  .compare__card { padding: 28px; }
  .compare__card h3 { font-size: 24px; }
  .bar__amount { font-size: 36px; }

  .step { padding: 26px; }
  .step h3 { font-size: 24px; }

  .dest-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .dest { padding: 20px; }
  .dest h3 { font-size: 26px; }
  .dest::after { top: 18px; right: 18px; font-size: 16px; }
  .dest--featured { grid-column: span 2; padding: 28px; min-height: 260px; }
  .dest--featured h3 { font-size: 44px; }
  .dest--featured-2 { grid-column: span 2; padding: 24px; }
  .dest--featured-2 h3 { font-size: 36px; }

  .long-features { grid-template-columns: 1fr; gap: 24px; }
  .long-features .btn { grid-column: span 1; width: 100%; }
  .long-card { padding: 28px; }
  .long-card h4 { font-size: 22px; }

  .quote { padding: 80px 0; }
  .quote blockquote { font-size: clamp(56px, 18vw, 84px); }
  .quote p { font-size: 16px; }

  .hstep { padding: 26px; }
  .hstep .badge { top: 22px; right: 22px; }
  .hotelier-cta { padding: 32px 24px; flex-direction: column; align-items: flex-start; gap: 16px; }
  .hotelier-cta h4 { font-size: 26px; }
  .hotelier-cta .btn { width: 100%; }

  .t-card { padding: 28px; }
  .t-card blockquote { font-size: 19px; }

  .faqs summary { font-size: 18px; gap: 14px; padding: 22px 0; }
  .faq__num { min-width: 28px; font-size: 11.5px; }
  .faq__plus { width: 28px; height: 28px; font-size: 16px; }
  .faqs details p { margin-left: 0; font-size: 15px; }

  .final-cta__title { font-size: clamp(48px, 13vw, 68px); }

  .footer { padding: 64px 0 30px; }
  .footer__cols { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; gap: 8px; }
}

@media (max-width: 440px){
  .hero__apps { flex-direction: column; align-items: stretch; }
  .hero__apps .store { justify-content: center; }
  .footer__cols { grid-template-columns: 1fr; }
  .strip__inner { grid-template-columns: 1fr; }
  .strip__col--countries { grid-column: span 1; }
}

/* ------- REDUCED MOTION ------- */
@media (prefers-reduced-motion: reduce){
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .ticker__track, .marquee__track { animation: none; }
}

/* ------- PRINT ------- */
@media print {
  .ticker, .marquee, .nav, .footer, .hero__card { display: none; }
  body { color: #000; background: #fff; }
}
