:root {
  --ink: #082d3d;
  --muted: #617989;
  --green: #086b5f;
  --green-dark: #055047;
  --mint: #9fe7d8;
  --mint-soft: #eefaf7;
  --gold: #c99628;
  --sky: #dff5f8;
  --paper: #ffffff;
  --wash: #f7fbfb;
  --line: #dbe8e8;
  --shadow: 0 24px 60px rgba(8, 45, 61, .10);
  --radius: 22px;
  --wrap: min(1320px, calc(100% - 96px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
.wrap { width: var(--wrap); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.header-inner { min-height: 80px; display: grid; grid-template-columns: 220px 1fr auto; align-items: center; gap: 28px; }
.brand { display: block; width: 166px; height: 64px; overflow: hidden; text-decoration: none; }
.brand img { width: 166px; height: 126px; object-fit: contain; transform: translateY(-31px); }
.main-nav { display: flex; justify-content: center; align-items: center; gap: 34px; }
.main-nav a { position: relative; padding: 27px 0 23px; text-decoration: none; font-size: 15px; }
.main-nav a.active { color: var(--green); }
.main-nav a.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: 16px; height: 2px; background: var(--green); }
.header-actions { display: flex; align-items: center; gap: 20px; white-space: nowrap; font-size: 14px; }
.header-actions a { text-decoration: none; }
.language { color: var(--green-dark); font-weight: 700; }
.menu-toggle { display: none; border: 0; background: transparent; padding: 10px; cursor: pointer; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 0;
  border-radius: 12px;
  background: var(--green);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-1px); background: var(--green-dark); }
.button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.button.secondary { color: var(--green-dark); background: transparent; border: 1px solid var(--green); }
.text-link { color: var(--green); font-weight: 700; text-decoration-thickness: 1px; text-underline-offset: 4px; }

.hero { position: relative; overflow: hidden; background: linear-gradient(115deg, #fff 15%, #fbfefe 48%, #edfafa 100%); }
.hero-inner { position: relative; display: grid; grid-template-columns: minmax(0, 1.65fr) minmax(0, 1fr); gap: 28px 32px; padding: 76px 0 32px; }
.hero-inner > * { min-width: 0; }
.hero-copy { position: relative; z-index: 3; grid-column: 1; width: 100%; }
.hero-copy > .eyebrow { margin-bottom: 16px; font-size: 14px; font-weight: 500; letter-spacing: .02em; text-transform: none; }
.hero-copy h1 { max-width: 780px; margin-bottom: 18px; font-size: clamp(40px, 4.4vw, 64px); line-height: 1.04; letter-spacing: -.045em; }
.eyebrow { margin: 0 0 14px; color: var(--green); font-size: 13px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
h1, h2, h3 { color: var(--ink); margin-top: 0; }
h1 { max-width: 760px; margin-bottom: 20px; font-size: clamp(48px, 5.7vw, 78px); line-height: .98; letter-spacing: -.06em; }
.hero-lead { max-width: 700px; margin: 0; color: #627ea9; font-size: clamp(18px, 1.7vw, 24px); line-height: 1.4; }
.route-art { position: absolute; z-index: 0; pointer-events: none; top: -30px; right: -64px; width: 64%; height: 540px; opacity: .8; }
.route-art img { width: 100%; height: 100%; object-fit: contain; object-position: top right; }
.route-label { position: absolute; z-index: 2; padding: 6px 10px; border: 1px solid var(--line); border-radius: 999px; background: #fff; font-size: 12px; font-weight: 700; box-shadow: 0 8px 20px rgba(8,45,61,.06); }
.route-label.ist { top: 184px; left: 4%; }
.route-label.dxb { top: 108px; right: 12%; }
.route-label.bkk { top: 258px; right: 2%; }

.search-box { position: relative; z-index: 2; grid-column: 1; grid-row: 2; align-self: end; margin: 0; width: 100%; padding: 20px; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: 0 12px 40px rgba(8,45,61,.04); }
.search-nav { display: flex; gap: 28px; margin-bottom: 14px; border-bottom: 1px solid var(--line); }
.search-nav a { padding: 3px 0 11px; color: var(--muted); text-decoration: none; font-weight: 600; }
.search-nav a.active { color: var(--green); border-bottom: 2px solid var(--green); }
.search-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; align-items: end; }
.field { min-width: 0; }
.field input, .field select { min-width: 0; max-width: 100%; }
.field label { display: block; margin: 0 0 5px 2px; color: var(--muted); font-size: 12px; }
.field input, .field select, .field textarea { width: 100%; min-height: 54px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 11px; background: var(--wash); color: var(--ink); }
.field textarea { min-height: 108px; resize: vertical; }
.search-grid .button { grid-column: 1 / -1; min-height: 54px; white-space: normal; }
.search-box .field input { padding-inline: 10px; font-size: 14px; background: #fff; }
.form-note { margin: 10px 2px 0; color: var(--muted); font-size: 12px; }

.live-panel { position: relative; z-index: 2; grid-column: 2; grid-row: 2; align-self: end; width: 100%; padding: 20px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: 0 12px 40px rgba(8,45,61,.04); }
.live-title { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 8px 14px; padding-bottom: 12px; border-bottom: 1px solid var(--line); font-weight: 700; }
.status { color: var(--green); font-size: 12px; font-weight: 600; }
.status::before { content: ""; display: inline-block; width: 7px; height: 7px; margin-right: 6px; border-radius: 50%; background: var(--green); }
.signal { display: grid; grid-template-columns: 1fr auto; gap: 10px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.signal:last-child { border-bottom: 0; padding-bottom: 0; }
.signal span { display: block; color: var(--muted); font-size: 12px; }
.signal strong { font-size: 14px; }
.signal em { color: var(--green); font-size: 12px; font-style: normal; white-space: nowrap; }
.live-title > strong { font-size: 18px; }
.hero .search-box, .hero .live-panel { align-self: start; }
.live-panel[data-offer-feed] .status::before { background: #16bd8b; animation: feed-pulse 2.8s ease-in-out infinite; }
.offer-list { min-height: 222px; }
.offer-row { display: grid; grid-template-columns: 32px minmax(0, 1fr) auto; align-items: center; gap: 10px; min-height: 74px; padding: 12px 0; border-bottom: 1px solid var(--line); text-decoration: none; transition: background .2s; }
.offer-row:hover { background: var(--mint-soft); }
.offer-plane { display: grid; place-items: center; width: 32px; height: 36px; border-radius: 9px; background: #edf8ff; color: #078fc2; font-size: 22px; }
.offer-info { display: flex; min-width: 0; flex-direction: column; align-items: flex-start; gap: 5px; }
.offer-info strong { font-size: 14px; line-height: 1.35; }
.offer-kind { padding: 2px 7px; border-radius: 6px; font-size: 12px; color: #05745c; background: #e8faf2; }
.offer-kind.kind-1 { color: #1678ae; background: #eaf6ff; }
.offer-kind.kind-2 { color: #94651a; background: #fff6dc; }
.offer-price { font-size: 12px; font-weight: 600; white-space: nowrap; }
.offer-price > span { margin-left: 6px; font-size: 20px; color: var(--green); }
.feed-bottom { display: flex; gap: 12px; align-items: center; justify-content: space-between; padding-top: 12px; }
.feed-bottom p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.45; }
.feed-more { color: var(--green); text-decoration: none; font-size: 14px; font-weight: 600; }
.feed-more:hover { text-decoration: underline; text-underline-offset: 4px; }
.feed-more span { margin-left: 8px; }
.feed-toggle { flex: 0 0 32px; height: 32px; border: 1px solid var(--line); border-radius: 50%; background: #fff; cursor: pointer; color: var(--green); }
.feed-toggle:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }
.offer-list.changing .offer-row { animation: offer-enter .65s ease both; }
.offer-list.changing .offer-row:nth-child(2) { animation-delay: .08s; }
.offer-list.changing .offer-row:nth-child(3) { animation-delay: .16s; }
@keyframes feed-pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(22,189,139,.24); opacity: 1; } 50% { box-shadow: 0 0 0 5px rgba(22,189,139,0); opacity: .5; } }
@keyframes offer-enter { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.hero + .section { padding-top: 40px; }
.travel-tools { padding-block: 48px; background: #fff; }
.tool-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; }
.tool-card { display: grid; grid-template-columns: 42px minmax(0, 1fr) auto; gap: 12px; align-items: center; min-height: 98px; padding: 18px; border: 1px solid var(--line); border-radius: 14px; color: var(--ink); text-decoration: none; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.tool-card:hover { transform: translateY(-2px); border-color: #abdacc; background: var(--mint-soft); }
.tool-icon { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; color: var(--green); background: var(--mint-soft); font-size: 23px; }
.tool-card strong, .tool-card small { display: block; }
.tool-card strong { margin-bottom: 4px; font-size: 16px; }
.tool-card small { color: var(--muted); line-height: 1.35; }
.tool-card .arrow { color: var(--green); font-weight: 700; }
.tools-note { margin: 16px 0 0; color: var(--muted); font-size: 12px; line-height: 1.5; }
.product-copy h2 { font-size: clamp(30px, 3vw, 44px); line-height: 1.15; }

.section { padding: 92px 0; }
.section.alt { background: var(--wash); }
.section-head { display: grid; grid-template-columns: minmax(0,1fr) minmax(280px,.6fr); gap: 50px; align-items: end; margin-bottom: 38px; }
h2 { margin-bottom: 0; font-size: clamp(36px, 4.2vw, 58px); line-height: 1.05; letter-spacing: -.05em; }
.section-head p { margin: 0; color: var(--muted); font-size: 18px; }
.product-copy { max-width: 1120px; }
.product-copy h2 { max-width: 1100px; }
.product-copy .statement { max-width: 1100px; margin: 22px 0 42px; color: #738aa1; font-size: clamp(21px, 2.1vw, 31px); line-height: 1.38; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.service-card { min-height: 150px; padding: 28px; border-right: 1px solid var(--line); text-decoration: none; transition: background .2s ease; }
.service-card:last-child { border-right: 0; }
.service-card:hover { background: var(--mint-soft); }
.service-icon { display: inline-flex; margin-bottom: 20px; color: var(--green); font-size: 27px; }
.service-card h3 { margin: 0 0 5px; font-size: 22px; }
.service-card p { margin: 0; color: var(--muted); }
.service-card .arrow { float: right; color: var(--green); }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border-block: 1px solid var(--line); }
.step { padding: 34px; background: var(--paper); }
.step-num { color: var(--gold); font-family: Georgia, serif; font-size: 34px; }
.step h3 { margin: 16px 0 8px; font-size: 22px; }
.step p { margin: 0; color: var(--muted); }
.audience-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.audience-image { min-height: 480px; border-radius: var(--radius); background: url("stay2trip-hero.jpg") center / cover; }
.audience-copy h2 { margin-bottom: 22px; }
.audience-copy p { color: var(--muted); font-size: 18px; }
.plain-list { list-style: none; padding: 0; margin: 28px 0 0; border-top: 1px solid var(--line); }
.plain-list li { display: grid; grid-template-columns: 30px 1fr; gap: 12px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.plain-list strong { color: var(--green); }

.request-block { display: grid; grid-template-columns: .72fr 1.28fr; gap: 48px; padding: 44px; border-radius: var(--radius); background: var(--mint-soft); }
.request-copy h2 { font-size: clamp(34px, 3.5vw, 49px); }
.request-copy p { color: var(--muted); }
.request-form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.request-form .wide { grid-column: 1 / -1; }
.request-form .button { justify-self: start; }
.form-status { display: none; grid-column: 1 / -1; padding: 12px; border: 1px solid #abdacc; border-radius: 10px; background: #fff; color: var(--green-dark); }
.form-status.show { display: block; }

.partner { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; padding: 38px 0; border-top: 1px solid var(--line); }
.partner h2 { font-size: clamp(30px, 3vw, 44px); }
.partner p { max-width: 780px; margin-bottom: 0; color: var(--muted); }

.page-hero { padding: 64px 0 34px; }
.page-hero-grid { display: grid; grid-template-columns: .84fr 1.16fr; gap: 36px; align-items: stretch; }
.page-hero-copy { display: flex; flex-direction: column; justify-content: center; padding: 20px 0; }
.page-hero-copy > .button { align-self: flex-start; }
.page-hero h1 { margin-bottom: 18px; font-size: clamp(46px, 5.1vw, 70px); }
.page-hero p { margin: 0 0 28px; color: #7189a4; font-size: 22px; line-height: 1.4; }
.page-hero-image { min-height: 430px; overflow: hidden; border-radius: var(--radius); }
.page-hero-image img { width: 100%; height: 100%; object-fit: cover; }
.notice { display: flex; align-items: center; gap: 10px; margin: 24px 0 0; padding: 14px 18px; border: 1px solid #d2ede7; border-radius: 12px; background: var(--mint-soft); color: var(--green-dark); }
.notice::before { content: "i"; display: grid; place-items: center; width: 24px; height: 24px; border: 1px solid var(--green); border-radius: 50%; font-family: Georgia, serif; }
.examples-head { display: flex; justify-content: space-between; gap: 24px; align-items: end; margin-bottom: 22px; }
.examples-head p { margin: 0; color: var(--muted); }
.example-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.example-card { overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: var(--paper); }
.example-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.example-card:nth-child(2) img { object-position: 65% center; }
.example-card:nth-child(3) img { object-position: 35% center; }
.example-body { padding: 18px; }
.example-body h3 { margin: 0 0 4px; font-size: 20px; }
.example-body p { margin: 0; color: var(--muted); }
.example-meta { display: flex; flex-wrap: wrap; gap: 12px; margin: 16px 0; color: var(--muted); font-size: 13px; }
.example-foot { display: flex; justify-content: space-between; gap: 14px; align-items: center; padding-top: 14px; border-top: 1px solid var(--line); }
.price-request { font-weight: 700; }
.request-link { color: var(--green); font-weight: 700; text-decoration: none; }

.site-footer { padding: 50px 0 44px; border-top: 1px solid var(--line); background: #f7fbfb; }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: start; }
.footer-brand { width: 145px; height: 54px; overflow: hidden; }
.footer-brand img { width: 145px; height: 110px; object-fit: contain; transform: translateY(-28px); }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 22px; }
.footer-links a { text-decoration: none; }
.legal { max-width: 720px; margin-top: 14px; color: var(--muted); font-size: 13px; }

@media (max-width: 1020px) {
  :root { --wrap: calc(100% - 48px); }
  .header-inner { grid-template-columns: 190px 1fr auto; }
  .main-nav { gap: 20px; }
  .hero-copy { width: 100%; }
  .route-art { right: -40px; width: 70%; opacity: .65; }
  .live-panel { width: 100%; margin: 0; }
  .hero { min-height: auto; }
  .hero-inner { grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: 26px 24px; padding-top: 56px; }
  .hero-copy { grid-column: 1 / -1; max-width: 680px; }
  .hero-copy h1 { max-width: 640px; font-size: 52px; }
  .search-grid { grid-template-columns: 1fr 1fr; }
  .search-grid .button { min-height: 54px; }
  .page-hero-grid, .audience-grid, .request-block { grid-template-columns: 1fr; }
  .example-grid { grid-template-columns: 1fr 1fr; }
  .tool-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  :root { --wrap: min(100% - 28px, 1240px); }
  .header-inner { min-height: 68px; grid-template-columns: 1fr auto; }
  .brand { width: 142px; height: 58px; }
  .brand img { width: 142px; height: 107px; transform: translateY(-25px); }
  .main-nav { position: absolute; left: 0; right: 0; top: 68px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 8px 18px 18px; border-bottom: 1px solid var(--line); background: #fff; }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 4px; }
  .main-nav a.active::after { bottom: 7px; }
  .header-actions a:not(.language) { display: none; }
  .menu-toggle { display: block; }
  .hero-inner { grid-template-columns: minmax(0, 1fr); padding: 40px 0 28px; gap: 24px; }
  .hero-copy { width: 100%; }
  .hero-copy h1 { font-size: clamp(34px, 7.5vw, 48px); line-height: 1.08; }
  h1 { font-size: 48px; }
  .hero-lead { font-size: 18px; }
  .route-art { top: 0; right: -28%; width: 115%; height: 400px; opacity: .3; }
  .search-box { margin: 0; padding: 16px; }
  .search-nav { gap: 18px; overflow-x: auto; }
  .search-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .live-panel { grid-column: 1; grid-row: 3; width: 100%; }
  .section { padding: 68px 0; }
  .section-head { grid-template-columns: 1fr; gap: 18px; }
  h2 { font-size: 38px; }
  .service-grid, .steps, .example-grid, .tool-grid { grid-template-columns: 1fr; }
  .service-card { border-right: 0; border-bottom: 1px solid var(--line); }
  .service-card:last-child { border-bottom: 0; }
  .audience-image { min-height: 340px; }
  .request-block { padding: 28px 20px; }
  .request-form { grid-template-columns: 1fr; }
  .request-form .wide { grid-column: auto; }
  .partner, .footer-grid, .page-hero-grid { grid-template-columns: 1fr; }
  .partner .button { width: 100%; }
  .footer-links { justify-content: flex-start; }
  .page-hero { padding-top: 40px; }
  .page-hero-image { min-height: 300px; }
  .examples-head { align-items: start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button, .service-card, .tool-card { transition: none; }
  .live-panel[data-offer-feed] .status::before, .offer-list.changing .offer-row { animation: none; }
}
