:root {
  color-scheme: light;
  --bg: #f5f8fc;
  --surface: #ffffff;
  --surface-2: #eef7fb;
  --text: #152238;
  --muted: #5d6b80;
  --blue: #1d64d8;
  --blue-dark: #164ba3;
  --teal: #0f9f94;
  --orange: #ff7a1a;
  --orange-dark: #df5f05;
  --green: #12805c;
  --line: #d8e2ef;
  --shadow: 0 18px 45px rgba(21, 34, 56, .11);
  --radius: 8px;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  letter-spacing: 0;
}
body.lock-scroll { overflow: hidden; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--blue); }
img, svg { max-width: 100%; }
button, input, select, textarea { font: inherit; }

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}
.section { padding: 54px 0; }
.section--tight { padding: 34px 0; }
.section--white { background: var(--surface); }
.section--soft { background: linear-gradient(180deg, #edf7ff 0%, #f9fbff 100%); }
.section__head { margin-bottom: 24px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 3px;
  border-radius: 99px;
  background: var(--teal);
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 16px;
  max-width: 860px;
  font-size: clamp(34px, 8vw, 62px);
  line-height: .98;
  letter-spacing: 0;
}
h2 {
  margin-bottom: 12px;
  font-size: clamp(28px, 5.5vw, 44px);
  line-height: 1.08;
  letter-spacing: 0;
}
h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.2;
}
p { color: var(--muted); }
.lead {
  max-width: 760px;
  font-size: clamp(18px, 3.5vw, 23px);
  color: #33445e;
}
.small { font-size: 14px; color: var(--muted); }
.muted { color: var(--muted); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(216,226,239,.8);
  backdrop-filter: blur(12px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 16px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 900;
  color: var(--text);
}
.logo-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: #fff;
  font-weight: 900;
}
.logo small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}
.nav {
  display: none;
  align-items: center;
  gap: 18px;
  color: #33445e;
  font-size: 14px;
  font-weight: 700;
}
.header-actions { display: none; align-items: center; gap: 10px; }
.phone-link { font-weight: 900; color: var(--blue-dark); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 0;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(29,100,216,.22);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { color: #fff; background: var(--blue-dark); transform: translateY(-1px); }
.btn--orange { background: var(--orange); box-shadow: 0 12px 24px rgba(255,122,26,.24); }
.btn--orange:hover { background: var(--orange-dark); }
.btn--ghost {
  background: #fff;
  color: var(--blue-dark);
  border: 1px solid var(--line);
  box-shadow: none;
}
.btn--ghost:hover { color: var(--blue-dark); background: #eef5ff; }
.btn--wide { width: 100%; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 46px 0 56px;
  background:
    radial-gradient(circle at 8% 10%, rgba(15,159,148,.16), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(255,122,26,.14), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #eef7ff 100%);
}
.hero-grid {
  display: grid;
  gap: 24px;
  align-items: start;
}
.hero-points, .check-list, .mini-list {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}
.hero-points li, .check-list li, .mini-list li {
  position: relative;
  padding-left: 30px;
  color: #33445e;
  font-weight: 700;
}
.hero-points li::before, .check-list li::before, .mini-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .42em;
  width: 17px;
  height: 17px;
  border-radius: 5px;
  background: linear-gradient(135deg, var(--teal), var(--blue));
}
.hero-points li::after, .check-list li::after, .mini-list li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: .64em;
  width: 7px;
  height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

.form-card, .card, .deal-card, .legal-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.96);
  box-shadow: var(--shadow);
}
.form-card { padding: 20px; }
.form-card h2, .form-card h3 { margin-bottom: 6px; }
.form-grid { display: grid; gap: 12px; margin-top: 16px; }
.field { display: grid; gap: 6px; }
.field label { color: #31425d; font-size: 14px; font-weight: 800; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid #cdd9e8;
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  outline: none;
}
.field textarea { min-height: 92px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(29,100,216,.12);
}
.consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  font-size: 13px;
  color: var(--muted);
}
.consent input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--blue); }
.consent a { color: var(--blue-dark); text-decoration: underline; }
.form-status {
  min-height: 22px;
  margin: 10px 0 0;
  color: var(--green);
  font-weight: 800;
}

.grid { display: grid; gap: 16px; }
.grid--2, .grid--3 { grid-template-columns: 1fr; }
.card, .deal-card { padding: 18px; box-shadow: 0 10px 30px rgba(21,34,56,.08); }
.card-link { display: grid; min-height: 100%; }
.card-link:hover { color: inherit; transform: translateY(-2px); }
.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  border-radius: 999px;
  background: #e8f4ff;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 900;
}
.badge--hot { background: #fff0e4; color: #b74900; }
.badge--green { background: #e7f7f2; color: #06725f; }
.card .btn { margin-top: auto; }
.price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  margin: 10px 0 16px;
}
.old-price { color: #8a98aa; text-decoration: line-through; font-weight: 800; }
.new-price { color: var(--orange-dark); font-size: 24px; font-weight: 900; }
.note-box {
  padding: 18px;
  border: 1px solid #bde4dd;
  border-radius: 8px;
  background: #eefbf8;
}
.note-box p:last-child { margin-bottom: 0; }
.split { display: grid; gap: 22px; align-items: center; }
.feature-strip {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}
.feature {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-weight: 800;
}

.faq { display: grid; gap: 10px; }
details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}
summary {
  padding: 16px 18px;
  cursor: pointer;
  font-weight: 900;
  color: var(--text);
}
details p { padding: 0 18px 18px; margin: 0; }

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
}
.breadcrumbs a { color: var(--blue-dark); text-decoration: underline; }
.page-hero {
  padding: 34px 0 46px;
  background: linear-gradient(180deg, #fff 0%, #edf7ff 100%);
}
.page-hero .hero-grid { align-items: center; }

.footer {
  padding: 40px 0 86px;
  background: #13243d;
  color: #fff;
}
.footer p, .footer a { color: rgba(255,255,255,.76); }
.footer-grid { display: grid; gap: 20px; }
.footer-links { display: grid; gap: 8px; }
.footer a:hover { color: #fff; }
.legal-line { color: rgba(255,255,255,.66); font-size: 13px; }

.mobile-sticky {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 70;
  display: flex;
}
.mobile-sticky .btn { width: 100%; min-height: 52px; }
.cookie-banner {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 78px;
  z-index: 80;
  display: none;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}
.cookie-banner.is-visible { display: grid; }
.cookie-banner p { margin: 0; font-size: 13px; }

.legal-page { background: #fff; }
.legal-content {
  max-width: 900px;
  padding: 36px 0 64px;
}
.legal-content h1 { font-size: clamp(30px, 6vw, 48px); }
.legal-content h2 { margin-top: 28px; font-size: 24px; }
.legal-box { padding: 18px; margin: 18px 0; box-shadow: none; background: #f8fbff; }
.legal-content a { color: var(--blue-dark); text-decoration: underline; }

@media (min-width: 700px) {
  .section { padding: 72px 0; }
  .hero { padding: 66px 0 74px; }
  .hero-grid { grid-template-columns: minmax(0, 1.08fr) minmax(320px, .72fr); gap: 34px; }
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: .95fr 1.05fr; }
  .feature-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.2fr .8fr .8fr; }
  .form-card { padding: 24px; }
}

@media (min-width: 980px) {
  .nav, .header-actions { display: flex; }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .feature-strip { grid-template-columns: repeat(5, 1fr); }
  .mobile-sticky { display: none; }
  .cookie-banner {
    left: auto;
    right: 24px;
    bottom: 24px;
    width: 440px;
    grid-template-columns: 1fr auto;
  }
}


/* Stage 2 marketplace visuals */
.hero-side {
  display: grid;
  gap: 14px;
}
.hero-visual {
  min-height: 164px;
  border: 1px solid rgba(216,226,239,.82);
  border-radius: 8px;
  background: #fff url('/assets/img/hero-routes.svg') center/cover no-repeat;
  box-shadow: 0 14px 36px rgba(21,34,56,.10);
  overflow: hidden;
}
.price-board {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 14px 36px rgba(21,34,56,.10);
}
.price-board__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.price-board__head h2 {
  margin: 0;
  font-size: 18px;
  line-height: 1.18;
}
.price-board__head p {
  margin: 2px 0 0;
  font-size: 13px;
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.price-card {
  display: grid;
  gap: 4px;
  min-height: 116px;
  padding: 11px;
  border: 1px solid #d9e7f6;
  border-radius: 8px;
  background: linear-gradient(180deg, #fff 0%, #f5fbff 100%);
  position: relative;
  overflow: hidden;
}
.price-card::after {
  content: "";
  position: absolute;
  right: -24px;
  bottom: -28px;
  width: 86px;
  height: 86px;
  border-radius: 999px;
  background: rgba(29,100,216,.08);
}
.price-card strong {
  position: relative;
  z-index: 1;
  font-size: 15px;
  color: var(--text);
}
.price-card .price {
  position: relative;
  z-index: 1;
  color: var(--orange-dark);
  font-size: 21px;
  line-height: 1;
  font-weight: 900;
}
.price-card small {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.25;
}
.price-card.hot {
  border-color: #ffd3b0;
  background: linear-gradient(180deg, #fff9f4 0%, #fff 100%);
}
.price-board__note {
  margin: 0;
  font-size: 12px;
  color: #65748a;
}
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.hero-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid rgba(216,226,239,.92);
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  color: #31425d;
  font-size: 13px;
  font-weight: 800;
}
.card-media {
  min-height: 132px;
  margin: -18px -18px 16px;
  border-radius: 8px 8px 0 0;
  background: #e8f4ff center/cover no-repeat;
  border-bottom: 1px solid rgba(216,226,239,.82);
}
.card-media--turkey { background-image: url('/assets/img/turkey.svg'); }
.card-media--egypt { background-image: url('/assets/img/egypt.svg'); }
.card-media--uae { background-image: url('/assets/img/uae.svg'); }
.card-media--thailand { background-image: url('/assets/img/thailand.svg'); }
.card-media--abkhazia { background-image: url('/assets/img/abkhazia.svg'); }
.card-media--sochi { background-image: url('/assets/img/sochi.svg'); }
.card-media--vietnam { background-image: url('/assets/img/vietnam.svg'); }
.card-media--goa { background-image: url('/assets/img/goa.svg'); }
.card-media--maldives { background-image: url('/assets/img/maldives.svg'); }
.card-media--anywhere { background-image: url('/assets/img/anywhere.svg'); }
.offer-strip {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}
.offer-mini {
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(21,34,56,.08);
}
.offer-mini b { color: var(--text); }
.offer-mini .price { color: var(--orange-dark); font-size: 24px; font-weight: 900; }
.process-steps {
  display: grid;
  gap: 12px;
  counter-reset: step;
}
.process-step {
  position: relative;
  padding: 16px 16px 16px 54px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.process-step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 16px;
  top: 16px;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  font-weight: 900;
}
@media (min-width: 700px) {
  .hero-side { align-self: start; }
  .hero-visual { min-height: 196px; }
  .offer-strip { grid-template-columns: repeat(3, 1fr); }
  .process-steps { grid-template-columns: repeat(4, 1fr); }
  .process-step { padding: 54px 16px 16px; }
  .process-step::before { top: 16px; }
}
@media (min-width: 980px) {
  .hero-grid { grid-template-columns: minmax(0, .96fr) minmax(390px, .82fr); }
  .hero { padding-top: 48px; }
  .price-card { min-height: 108px; }
}

.card-media--hot { background-image: url('/assets/img/hot.svg'); }

.price-board { position: relative; overflow: hidden; }
.price-board::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('/assets/img/hero-routes.svg') right center/cover no-repeat;
  opacity: .12;
  pointer-events: none;
}
.price-board > * { position: relative; z-index: 1; }


/* Stage 2 hot tour board */
.hero .lead { margin-bottom: 14px; }
.hero-points { margin-top: 14px; }
.price-board { margin-top: 18px; }
.price-grid--hero { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.price-card .per-person {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: fit-content;
  padding: 4px 7px;
  border-radius: 999px;
  background: #fff2e7;
  color: #b74900;
  font-size: 11px;
  font-weight: 900;
}
.hot-search {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hot-search__bar {
  display: grid;
  gap: 10px;
  padding: 14px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #f8fbff 0%, #fff 100%);
}
.hot-filter {
  display: grid;
  gap: 3px;
  min-height: 52px;
  padding: 9px 10px;
  border: 1px solid #d7e4f3;
  border-radius: 8px;
  background: #fff;
}
.hot-filter span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}
.hot-filter b { color: var(--text); font-size: 15px; }
.hot-list { display: grid; }
.tour-row {
  display: grid;
  gap: 10px;
  padding: 14px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.tour-row:last-child { border-bottom: 0; }
.tour-row__main { display: grid; gap: 5px; }
.tour-row__title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.rating {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 28px;
  border-radius: 8px;
  background: #eef7fb;
  color: var(--blue-dark);
  font-weight: 900;
}
.discount {
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 4px 7px;
  border-radius: 999px;
  background: #fff0e4;
  color: #b74900;
  font-size: 12px;
  font-weight: 900;
}
.tour-row h3 { margin: 0; font-size: 18px; }
.tour-meta { margin: 0; color: var(--muted); font-size: 14px; }
.tour-price {
  display: grid;
  gap: 4px;
  align-content: center;
}
.tour-price .old-price { font-size: 14px; }
.tour-price .new-price { font-size: 28px; line-height: 1; }
.tour-price small { color: var(--muted); }
.tour-row .btn { min-height: 42px; padding: 10px 14px; }
.hot-search__note {
  padding: 12px 14px;
  background: #fff8f0;
  color: #74410e;
  font-size: 13px;
}
@media (min-width: 700px) {
  .hot-search__bar { grid-template-columns: repeat(4, 1fr); }
  .tour-row { grid-template-columns: minmax(0, 1fr) 190px 150px; align-items: center; }
  .tour-price { justify-items: end; text-align: right; }
}
@media (min-width: 980px) {
  .hero-grid { align-items: start; }
  .price-card { min-height: 96px; }
}
