/* landing.css — China landing page */

/* ── SEMANTIC VARS ── */
:root {
  --c-bg:        #F0F2F5;
  --c-surface:   #FFFFFF;
  --c-surface-2: #F6F7FA;
  --c-border:    #DBDFE9;
  --c-text-1:    #242A37;
  --c-text-2:    #727281;
  --c-text-3:    #9999A9;
  --c-purple:    #8600EF;
  --c-purple-dk: #771F96;
  --c-citron:    #9DB319;
  --c-citron-dk: #7FA40C;
  --c-soft:      #F4ECFA;
  --nav-h:       68px;
}
body.dark {
  --c-bg:        #0E0B1A;
  --c-surface:   #1C1630;
  --c-surface-2: #251E3A;
  --c-border:    rgba(255,255,255,.10);
  --c-text-1:    #F0F2F5;
  --c-text-2:    #9999B9;
  --c-text-3:    #7777A9;
  --c-soft:      rgba(134,0,239,.15);
}

/* ── BASE ── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--yt-text);
  background: var(--c-bg);
  color: var(--c-text-1);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background .25s, color .25s;
}
a { text-decoration: none; color: inherit; }
img { display: block; }

/* ── LAYOUT ── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
section    { padding: 88px 0; }
.section-white { background: var(--c-surface); }
.section-bg    { background: var(--c-bg); }

/* ── TYPE ── */
.section-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--c-purple); margin-bottom: 12px;
}
.light-label { color: rgba(255,255,255,.65); }
.section-h2 {
  font-family: var(--yt-display);
  font-size: clamp(26px, 3vw, 38px); font-weight: 700;
  line-height: 1.15; letter-spacing: -.022em;
  color: var(--c-text-1); margin-bottom: 16px;
}
.light-text { color: #fff; }
.section-lead { font-size: 15px; line-height: 26px; color: var(--c-text-2); max-width: 560px; margin-bottom: 40px; }

/* ── BUTTONS ── */
.btn-cta-primary {
  display: inline-flex; align-items: center; justify-content: center;
  height: 48px; padding: 0 26px; border-radius: 10px; border: none; cursor: pointer;
  background: var(--c-citron); color: #fff;
  font-family: var(--yt-text); font-size: 15px; font-weight: 600; white-space: nowrap;
  transition: background .15s, transform .1s;
}
.btn-cta-primary:hover { background: var(--c-citron-dk); transform: translateY(-1px); }

.btn-cta-sec {
  display: inline-flex; align-items: center; justify-content: center;
  height: 48px; padding: 0 24px; border-radius: 10px;
  background: rgba(255,255,255,.14); color: #fff;
  border: 1.5px solid rgba(255,255,255,.32); cursor: pointer; white-space: nowrap;
  font-family: var(--yt-text); font-size: 15px; font-weight: 600;
  transition: background .15s;
}
.btn-cta-sec:hover { background: rgba(255,255,255,.24); }

.btn-cta-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  height: 48px; padding: 0 20px; border-radius: 10px;
  background: transparent; color: rgba(255,255,255,.75);
  border: 1.5px solid rgba(255,255,255,.22); cursor: pointer; white-space: nowrap;
  font-family: var(--yt-text); font-size: 14px; font-weight: 500;
  transition: color .15s, border-color .15s;
}
.btn-cta-ghost:hover { color: #fff; border-color: rgba(255,255,255,.55); }

.btn-purple {
  display: inline-flex; align-items: center; justify-content: center;
  height: 44px; padding: 0 22px; border-radius: 10px; border: none; cursor: pointer;
  background: var(--c-purple); color: #fff;
  font-family: var(--yt-text); font-size: 14px; font-weight: 600; white-space: nowrap;
  transition: background .15s;
}
.btn-purple:hover { background: var(--c-purple-dk); }

.btn-citron {
  display: inline-flex; align-items: center; justify-content: center;
  height: 44px; padding: 0 22px; border-radius: 10px; border: none; cursor: pointer;
  background: var(--c-citron); color: #fff;
  font-family: var(--yt-text); font-size: 14px; font-weight: 600; white-space: nowrap;
  transition: background .15s;
}
.btn-citron:hover { background: var(--c-citron-dk); }

.btn-outline {
  display: inline-flex; align-items: center;
  height: 44px; padding: 0 22px; border-radius: 10px; cursor: pointer;
  background: transparent; color: var(--c-text-1);
  border: 1.5px solid var(--c-border);
  font-family: var(--yt-text); font-size: 14px; font-weight: 600; white-space: nowrap;
  transition: border-color .15s;
}
.btn-outline:hover { border-color: var(--c-purple); color: var(--c-purple); }

/* ── NAV ── */
.yt-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  background: var(--c-purple);
  transition: background .25s, box-shadow .25s;
}
.nav-scrolled {
  background: var(--c-purple); box-shadow: 0 1px 0 rgba(0,0,0,.18);
}
.nav-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.nav-logo-img { height: 36px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-link { font-size: 14px; font-weight: 500; color: rgba(255,255,255,.8); transition: color .15s; }
.nav-link:hover { color: #fff; }
.nav-scrolled .nav-link { color: rgba(255,255,255,.8); }
.nav-scrolled .nav-link:hover { color: #fff; }
.btn-nav-cta {
  display: inline-flex; align-items: center;
  height: 36px; padding: 0 16px; border-radius: 8px; border: none; cursor: pointer;
  background: var(--c-citron); color: #fff;
  font-family: var(--yt-text); font-size: 13px; font-weight: 600;
  transition: background .15s;
}
.btn-nav-cta:hover { background: var(--c-citron-dk); }

/* ── HERO ── */
.hero-section {
  min-height: auto; padding-top: var(--nav-h);
  background: linear-gradient(145deg, #2D0A5C 0%, #1A1040 52%, #122240 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
}
body.v2 .hero-section {
  background: linear-gradient(145deg, #6E0F15 0%, #9E1C2C 28%, #5D0F6E 62%, #1A1040 100%);
}
.hero-backdrop { position: absolute; inset: 0; pointer-events: none; }
.hero-char {
  position: absolute; right: -80px; bottom: -120px;
  font-family: var(--yt-display); font-size: 580px; font-weight: 700;
  color: rgba(255,255,255,.028); line-height: 1;
}
.hc { position: absolute; border-radius: 50%; background: radial-gradient(circle, rgba(134,0,239,.18) 0%, transparent 70%); }
.hc-1 { width: 600px; height: 600px; top: -200px; left: -200px; }
.hc-2 { width: 400px; height: 400px; bottom: -80px; right: 160px; }
.hero-content { position: relative; z-index: 2; padding: 48px 0 80px; }
.hero-eyebrow {
  display: inline-block; margin-bottom: 28px;
  font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.6); background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15); padding: 6px 16px; border-radius: 999px;
}
.hero-h1 {
  font-family: var(--yt-display);
  font-size: clamp(28px, 4vw, 56px); font-weight: 700;
  line-height: 1.08; letter-spacing: -.026em; color: #fff;
  margin-bottom: 28px; max-width: 100%; white-space: nowrap;
}
.hero-sub {
  font-size: clamp(15px, 1.5vw, 18px); line-height: 1.7;
  color: rgba(255,255,255,.68); margin-bottom: 36px; max-width: 620px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 52px; }
.hero-stats {
  display: flex; align-items: center; gap: 28px;
  border-top: 1px solid rgba(255,255,255,.12); padding-top: 28px;
}
.hero-stat { display: flex; flex-direction: column; gap: 3px; }
.hero-stat b { font-family: var(--yt-display); font-size: 56px; font-weight: 700; color: #fff; line-height: 1; }
.hero-stat span { font-size: 17px; color: rgba(255,255,255,.5); margin-top: 5px; }
.hero-stat-text span { font-size: 20px; font-weight: 600; color: rgba(255,255,255,.8); }
.hero-divider { width: 1px; height: 36px; background: rgba(255,255,255,.15); }
.scroll-hint {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.scroll-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(255,255,255,.35);
  animation: sbounce 2s ease-in-out infinite;
}
@keyframes sbounce { 0%,100%{transform:translateY(0);opacity:.35} 50%{transform:translateY(7px);opacity:.75} }
.br-desktop { display: block; }
.br-mobile  { display: none; }

/* ── WHY NOW ── */
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.reason-card {
  background: var(--c-surface); border-radius: 16px; padding: 28px 22px;
  border: 1px solid var(--c-border); position: relative; overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.reason-card:hover { transform: translateY(-3px); box-shadow: var(--yt-shadow-card); }
.rc-bar {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--rc-accent, #8600EF); border-radius: 3px 3px 0 0;
}
.rc-title { font-family: var(--yt-display); font-size: 17px; font-weight: 600; color: var(--c-text-1); margin: 8px 0 10px; }
.rc-body  { font-size: 14px; line-height: 22px; color: var(--c-text-2); }

/* ── COLLECTION ── */
.collection-section {
  background: linear-gradient(135deg, #3D0F6E 0%, #2D0A5C 42%, #1A1240 100%);
  padding: 88px 0;
}
body.v2 .collection-section {
  background: linear-gradient(135deg, #8B1A1A 0%, #5D0F6E 52%, #1A1240 100%);
}
.collection-inner { display: flex; align-items: center; justify-content: space-between; gap: 60px; }
.collection-text  { flex: 1; max-width: 520px; }
.collection-desc  { font-size: 15px; line-height: 26px; color: rgba(255,255,255,.68); margin-bottom: 28px; }
.collection-card  { width: 500px; height: 268px; flex-shrink: 0; border-radius: 20px; overflow: hidden; position: relative; display: block; }
.cc-photo  { width: 100%; height: 100%; object-fit: cover; display: block; }
.cc-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.65) 0%, transparent 55%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 20px 20px 22px;
}
.cc-name  { font-family: var(--yt-display); font-size: 22px; font-weight: 700; color: #fff; }
.cc-count { font-size: 13px; color: rgba(255,255,255,.7); margin-top: 4px; }

/* ── TOUR CARDS ── */
.tours-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-bottom: 32px; }
.tour-card {
  background: var(--c-surface); border-radius: 16px; overflow: hidden;
  box-shadow: var(--yt-shadow-card); transition: transform .2s, box-shadow .2s;
  display: flex; flex-direction: column;
}
.tour-card:hover { transform: translateY(-4px); }
.tc-image {
  height: 196px; position: relative; overflow: hidden;
  display: flex; align-items: flex-start; justify-content: space-between; padding: 14px;
}
.tc-badge {
  font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 6px; position: relative; z-index: 2;
}
.tc-char {
  position: absolute; bottom: -20px; right: -10px;
  font-family: var(--yt-display); font-size: 160px; font-weight: 700;
  color: rgba(255,255,255,.055); line-height: 1; pointer-events: none;
}
.tc-body   { padding: 18px 18px 16px; display: flex; flex-direction: column; flex: 1; }
.tc-title  { font-family: var(--yt-display); font-size: 15px; font-weight: 700; color: var(--c-text-1); line-height: 1.35; margin-bottom: 8px; }
.tc-desc   { font-size: 13px; line-height: 19px; color: var(--c-text-2); margin-bottom: 14px; flex: 1; }
.tc-meta   { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; font-size: 12px; color: var(--c-text-3); margin-bottom: 14px; }
.tc-dot    { width: 3px; height: 3px; background: var(--c-text-3); border-radius: 50%; flex-shrink: 0; }
.tc-footer { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--c-border); padding-top: 14px; }
.tc-from   { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--c-text-3); }
.tc-amount { font-family: var(--yt-display); font-size: 16px; font-weight: 700; color: var(--c-text-1); }
.tc-price  { display: flex; flex-direction: column; gap: 1px; }
.tc-btns   { display: flex; align-items: center; gap: 8px; }
.btn-tc-main {
  height: 34px; padding: 0 14px; border-radius: 8px; border: none; cursor: pointer;
  background: var(--c-citron); color: #fff;
  font-family: var(--yt-text); font-size: 12px; font-weight: 600; white-space: nowrap;
  display: inline-flex; align-items: center; transition: background .15s;
}
.btn-tc-main:hover { background: var(--c-citron-dk); }
.btn-tc-flight {
  width: 34px; height: 34px; border-radius: 8px; border: 1px solid var(--c-border); cursor: pointer;
  background: var(--c-bg); color: var(--c-text-2); font-size: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .15s, color .15s, border-color .15s;
}
.btn-tc-flight:hover { background: var(--c-soft); color: var(--c-purple); border-color: var(--c-purple); }
.tours-more { display: flex; justify-content: center; }

/* ── AVIATION ── */
.aviation-inner { display: flex; align-items: center; justify-content: space-between; gap: 60px; }
.avia-text  { flex: 1; }
.avia-desc  { font-size: 15px; line-height: 26px; color: var(--c-text-2); margin-bottom: 28px; max-width: 460px; }
.avia-widget-col { flex: 1; min-width: 0; max-width: 560px; }
.aviasales-wrap  { width: 100%; }
.ac-route   { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.ac-city    { display: flex; flex-direction: column; gap: 4px; }
.ac-code    { font-family: var(--yt-display); font-size: 20px; font-weight: 700; color: var(--c-text-1); }
.ac-name    { font-size: 12px; color: var(--c-text-3); }
.ac-plane   { font-size: 22px; color: var(--c-purple); }
.ac-also    { font-size: 12px; color: var(--c-text-3); line-height: 18px; margin-bottom: 8px; }
.ac-note    { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; color: var(--c-text-3); }

/* ── TRIP BUILDER ── */
.steps-list { display: flex; flex-direction: column; }
.step-row { display: flex; align-items: center; gap: 24px; padding: 22px 0; border-bottom: 1px solid var(--c-border); }
.step-row:last-child { border-bottom: none; }
.step-num  { font-family: var(--yt-display); font-size: 30px; font-weight: 700; color: var(--c-border); min-width: 52px; line-height: 1; }
.step-body { flex: 1; }
.step-title { font-family: var(--yt-display); font-size: 17px; font-weight: 600; color: var(--c-text-1); margin-bottom: 3px; }
.step-desc  { font-size: 13px; line-height: 20px; color: var(--c-text-2); }
.btn-step {
  display: inline-flex; align-items: center;
  height: 36px; padding: 0 16px; border-radius: 8px; cursor: pointer; white-space: nowrap; flex-shrink: 0;
  background: var(--c-surface); color: var(--c-text-1); border: 1.5px solid var(--c-border);
  font-family: var(--yt-text); font-size: 13px; font-weight: 600;
  transition: color .15s, border-color .15s;
}
.btn-step:hover { border-color: var(--c-purple); color: var(--c-purple); }

/* ── ESIM ── */
.esim-section {
  background: linear-gradient(135deg, #1A0A3E 0%, #3D0F6E 52%, #2D0A5C 100%);
  padding: 40px 0;
}
body.v2 .esim-section {
  background: linear-gradient(135deg, #1A0A3E 0%, #5D0F6E 42%, #8B1A1A 100%);
}
.esim-inner { display: flex; align-items: center; gap: 48px; }
.esim-icon-wrap { width: 110px; height: 110px; flex-shrink: 0; position: relative; display: flex; align-items: center; justify-content: center; }
.esim-ring { position: absolute; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.18); }
.r1 { width: 80px; height: 80px; animation: pulse 2.8s ease-in-out infinite; }
.r2 { width: 112px; height: 112px; animation: pulse 2.8s ease-in-out .9s infinite; }
@keyframes pulse { 0%,100%{opacity:.3;transform:scale(.95)} 50%{opacity:.85;transform:scale(1.05)} }
.esim-svg { width: 56px; height: 56px; position: relative; z-index: 2; }
.esim-text  { flex: 1; }
.esim-desc  { font-size: 15px; line-height: 26px; color: rgba(255,255,255,.68); margin-bottom: 20px; max-width: 540px; }
.esim-promo {
  display: inline-flex; align-items: center; gap: 10px; flex-wrap: wrap;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
  border-radius: 10px; padding: 12px 18px; margin-bottom: 24px;
}
.esim-promo-label { font-size: 12px; color: rgba(255,255,255,.55); }
.esim-promo-code  {
  font-family: var(--yt-mono); font-size: 15px; font-weight: 700;
  color: #fff; letter-spacing: .06em;
  background: rgba(255,255,255,.12); padding: 3px 10px; border-radius: 6px;
}
.esim-promo-bonus { font-size: 13px; font-weight: 600; color: var(--c-citron); }

/* ── BLOG ── */
.blog-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 40px; }
.blog-card {
  background: var(--c-surface); border-radius: 14px; overflow: hidden;
  border: 1px solid var(--c-border); display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--yt-shadow-card); }
.bc-top   { padding: 20px 20px 14px; display: flex; }
.bc-tag   { font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.bc-body  { padding: 0 20px 20px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.bc-title { font-family: var(--yt-display); font-size: 15px; font-weight: 700; color: var(--c-text-1); line-height: 1.3; }
.bc-desc  { font-size: 13px; line-height: 19px; color: var(--c-text-2); flex: 1; }
.bc-read  { font-size: 12px; font-weight: 600; color: var(--c-purple); margin-top: 4px; }

/* ── FOR WHOM ── */
.for-whom-inner { display: flex; align-items: flex-start; gap: 80px; }
.fw-left { flex-shrink: 0; max-width: 280px; }
.fw-cta  { margin-top: 28px; }
.fw-list { flex: 1; display: flex; flex-direction: column; }
.fw-item { display: flex; align-items: flex-start; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--c-border); }
.fw-item:last-child { border-bottom: none; }
.fw-check { font-size: 13px; font-weight: 700; color: var(--c-citron); min-width: 20px; padding-top: 2px; }
.fw-text  { font-size: 15px; color: var(--c-text-1); line-height: 1.5; }

/* ── WHY AUTHOR ── */
.wa-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 20px; margin-top: 40px; }
.wa-card {
  background: var(--c-bg); border-radius: 14px; padding: 24px 20px;
  border: 1px solid var(--c-border);
}
.wa-num   { font-family: var(--yt-display); font-size: 28px; font-weight: 700; color: var(--c-border); margin-bottom: 12px; }
.wa-title { font-family: var(--yt-display); font-size: 15px; font-weight: 600; color: var(--c-text-1); margin-bottom: 8px; }
.wa-body  { font-size: 13px; line-height: 20px; color: var(--c-text-2); }

/* ── FAQ ── */
.faq-inner { display: grid; grid-template-columns: 280px 1fr; gap: 64px; align-items: start; }
.faq-item { border-bottom: 1px solid var(--c-border); cursor: pointer; }
.faq-item:first-child { border-top: 1px solid var(--c-border); }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 0; }
.faq-q-text { font-size: 15px; font-weight: 500; color: var(--c-text-1); line-height: 1.4; flex: 1; }
.faq-icon  { font-size: 20px; color: var(--c-purple); flex-shrink: 0; font-weight: 300; transition: transform .2s; }
.faq-open .faq-icon { transform: rotate(0deg); }
.faq-a-wrap { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.faq-open .faq-a-wrap { max-height: 200px; }
.faq-a { font-size: 14px; line-height: 22px; color: var(--c-text-2); padding-bottom: 20px; }
.faq-link { color: var(--c-purple); text-decoration: underline; }

/* ── FINAL CTA ── */
.final-cta-section {
  background: linear-gradient(145deg, #2D0A5C 0%, #1A1040 52%, #122240 100%);
  padding: 100px 0; position: relative; overflow: hidden;
}
body.v2 .final-cta-section {
  background: linear-gradient(145deg, #6E0F15 0%, #9E1C2C 28%, #5D0F6E 62%, #1A1040 100%);
}
.final-cta-inner { position: relative; z-index: 2; }
.fca-bg-char {
  position: absolute; right: -60px; top: 50%; transform: translateY(-50%);
  font-family: var(--yt-display); font-size: 500px; font-weight: 700;
  color: rgba(255,255,255,.025); line-height: 1; pointer-events: none;
}
.fca-content { max-width: 700px; }
.fca-headline {
  font-family: var(--yt-display);
  font-size: clamp(26px, 3.5vw, 42px); font-weight: 700;
  line-height: 1.15; letter-spacing: -.02em; color: #fff; margin-bottom: 16px;
}
.fca-sub { font-size: 16px; line-height: 26px; color: rgba(255,255,255,.62); margin-bottom: 36px; }
.fca-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ── FOOTER ── */
.site-footer { background: #0A0718; padding: 32px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-logo-img { height: 20px; }
.footer-links  { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,.4); transition: color .15s; }
.footer-links a:hover { color: rgba(255,255,255,.75); }
.footer-copy  { font-size: 12px; color: rgba(255,255,255,.22); }

/* ── DARK MODE ── */
body.dark .reason-card { background: var(--c-surface); }
body.dark .tour-card   { box-shadow: none; border: 1px solid var(--c-border); }
body.dark .avia-card   { background: var(--c-surface-2); }
body.dark .wa-card     { background: var(--c-surface); }
body.dark .btn-step    { background: var(--c-surface); }
body.dark .btn-outline { background: transparent; }

/* ── V2 ACCENT ── */
body.v2 .step-num  { color: rgba(157,29,46,.45); }
body.v2 .rc-bar    { opacity: 1; }
body.v2 .fw-check  { color: #F84565; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .grid-4  { grid-template-columns: repeat(2,1fr); }
  .tours-grid { grid-template-columns: repeat(2,1fr); }
  .wa-grid { grid-template-columns: repeat(3,1fr); }
  .blog-grid { grid-template-columns: repeat(2,1fr); }
  .faq-inner { grid-template-columns: 1fr; gap: 36px; }
  .for-whom-inner { gap: 40px; }
  .aviation-inner { flex-direction: column; align-items: flex-start; }
  .avia-card { width: 100%; max-width: 400px; }
}
@media (max-width: 800px) {
  .collection-inner { flex-direction: column; }
  .collection-card  { width: 100%; max-width: 320px; }
  .esim-inner { flex-direction: column; }
  .esim-icon-wrap { margin: 0 auto; }
  .for-whom-inner { flex-direction: column; gap: 32px; }
  .fw-left { max-width: 100%; }
  .wa-grid { grid-template-columns: repeat(2,1fr); }
  .step-row { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-stats { gap: 16px; }
}
@media (max-width: 600px) {
  .container { padding: 0 20px; }
  section    { padding: 60px 0; }
  .tours-grid { grid-template-columns: 1fr; }
  .blog-grid  { grid-template-columns: 1fr; }
  .grid-4     { grid-template-columns: 1fr; }
  .wa-grid    { grid-template-columns: 1fr; }
  .hero-h1    { font-size: 36px; }
  .hero-actions { gap: 10px; }
  .fca-actions  { flex-direction: column; }
  .fca-actions a { justify-content: center; }
  .nav-links .nav-link { display: none; }
  .br-desktop { display: none; }
  .br-mobile  { display: block; }
}
