:root {
  --ink: #101a2f;
  --muted: #68758a;
  --line: #dfe7f2;
  --paper: #ffffff;
  --soft: #f5f8fc;
  --navy: #07172f;
  --navy-2: #0b3260;
  --blue: #5f8cff;
  --cyan: #31c7ef;
  --gradient: linear-gradient(135deg, #5f8cff, #31c7ef);
  --dark-gradient: linear-gradient(145deg, #07172f, #0b3260);
  --shadow: 0 24px 60px rgba(28, 59, 99, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", Inter, system-ui, sans-serif;
  color: var(--ink);
  background: var(--soft);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.nav {
  position: sticky; top: 0; z-index: 20;
  background: rgba(7, 23, 47, .86);
  border-bottom: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(18px);
}
.nav-inner { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.brand { display: flex; align-items: center; gap: 10px; color: white; font-weight: 950; font-size: 22px; }
.brand img { width: 36px; height: 36px; object-fit: contain; }
.links { display: flex; gap: 28px; color: rgba(255,255,255,.72); font-weight: 800; font-size: 14px; }
.actions { display: flex; gap: 10px; align-items: center; }
.lang-switcher {
  position: relative;
}
.lang-button {
  height: 44px; min-width: 104px; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 0 13px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px;
  color: white; background: rgba(255,255,255,.08); font: inherit; font-weight: 950; cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.lang-flag { font-size: 20px; line-height: 1; }
.lang-code { font-size: 14px; line-height: 1; }
.lang-chevron { color: rgba(255,255,255,.68); font-size: 15px; transform: translateY(-1px); }
.lang-menu {
  position: absolute; right: 0; top: calc(100% + 10px); z-index: 30;
  width: 220px; padding: 8px; border: 1px solid rgba(255,255,255,.14); border-radius: 22px;
  background: rgba(255,255,255,.96); color: var(--ink); box-shadow: 0 24px 70px rgba(0,0,0,.22);
  backdrop-filter: blur(18px); opacity: 0; transform: translateY(-6px) scale(.98);
  pointer-events: none; transition: opacity .18s ease, transform .18s ease;
}
.lang-switcher.open .lang-menu { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.lang-menu button {
  width: 100%; min-height: 48px; display: grid; grid-template-columns: 32px 38px 1fr; align-items: center; gap: 8px;
  border: 0; border-radius: 14px; background: transparent; color: var(--ink); text-align: left; cursor: pointer;
  padding: 8px 10px; font: inherit;
}
.lang-menu button:hover, .lang-menu button.active { background: #eef6ff; }
.lang-menu span { font-size: 23px; line-height: 1; }
.lang-menu b { font-size: 14px; }
.lang-menu small { color: var(--muted); font-weight: 800; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  border-radius: 18px; padding: 15px 22px; font-weight: 950; border: 0;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: white; background: var(--gradient); box-shadow: 0 0 34px rgba(49,199,239,.3); }
.btn-dark { color: white; background: var(--navy); }
.btn-outline { border: 1px solid rgba(255,255,255,.2); color: white; background: rgba(255,255,255,.04); }
.hero {
  position: relative; overflow: hidden; color: white; background: var(--navy);
  padding: 92px 0 112px;
}
.photo-hero:before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(7,23,47,.99), rgba(7,23,47,.9) 48%, rgba(49,199,239,.26)),
    url("https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&w=1800&q=82") center/cover;
  opacity: .98;
}
.floating-orbit {
  position: absolute; border: 1px solid rgba(255,255,255,.16); border-radius: 999px;
  filter: blur(.1px); opacity: .5; pointer-events: none;
}
.orbit-one { width: 420px; height: 420px; right: -120px; top: 80px; animation: spin 22s linear infinite; }
.orbit-two { width: 220px; height: 220px; left: -80px; bottom: 60px; animation: spin 16s linear infinite reverse; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.03fr .97fr; gap: 62px; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(255,255,255,.14); border-radius: 999px;
  padding: 9px 13px; background: rgba(255,255,255,.08); color: #bdf4ff;
  font-size: 12px; font-weight: 950;
}
h1 { margin: 22px 0 0; font-size: clamp(50px, 7vw, 92px); line-height: .94; letter-spacing: 0; }
h2 { margin: 10px 0 0; font-size: clamp(36px, 5vw, 62px); line-height: 1; letter-spacing: 0; }
h3 { letter-spacing: 0; }
.lead { color: rgba(255,255,255,.72); font-size: 20px; line-height: 1.65; max-width: 680px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 38px; max-width: 560px; }
.stat { border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.08); border-radius: 22px; padding: 18px; backdrop-filter: blur(14px); }
.stat strong { display: block; font-size: 28px; }
.stat span { color: rgba(255,255,255,.55); font-size: 12px; font-weight: 850; }
.hero-stack { position: relative; min-height: 560px; }
.traveler-card {
  position: absolute; right: 0; top: 0; width: 72%; overflow: hidden;
  border-radius: 34px; border: 1px solid rgba(255,255,255,.16); box-shadow: 0 30px 90px rgba(0,0,0,.35);
}
.traveler-card img { width: 100%; height: 330px; object-fit: cover; filter: saturate(1.06); }
.traveler-card:after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent, rgba(7,23,47,.5)); }
.traveler-badge { position: absolute; left: 18px; bottom: 18px; z-index: 1; border-radius: 999px; padding: 10px 13px; background: rgba(255,255,255,.88); color: var(--navy); font-weight: 950; font-size: 12px; }
.phone-card { position: absolute; left: 0; bottom: 0; width: 66%; animation: float 6s ease-in-out infinite; border: 1px solid rgba(255,255,255,.15); border-radius: 36px; background: rgba(255,255,255,.1); padding: 14px; box-shadow: 0 30px 80px rgba(0,0,0,.28); backdrop-filter: blur(18px); }
.phone-inner { background: white; color: var(--ink); border-radius: 28px; overflow: hidden; }
.phone-top { display: flex; align-items: center; justify-content: space-between; padding: 18px; border-bottom: 1px solid #edf2f7; }
.mini-brand { display: flex; align-items: center; gap: 8px; font-weight: 950; color: #40358f; }
.mini-brand img { width: 26px; height: 26px; }
.plan-visual { margin: 18px; border-radius: 28px; padding: 24px; color: white; background: var(--dark-gradient); }
.plan-visual img { width: 58px; }
.plan-visual h3 { margin: 18px 0 4px; font-size: 34px; }
.bar { height: 9px; border-radius: 999px; background: rgba(255,255,255,.18); overflow: hidden; margin-top: 24px; }
.bar span { display: block; width: 68%; height: 100%; background: #65e3f4; border-radius: inherit; animation: barLoad 2.4s ease both; }
.mini-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; padding: 0 18px 18px; }
.mini-row span { border-radius: 14px; background: #f3f7fb; text-align: center; padding: 10px 4px; color: var(--muted); font-size: 11px; font-weight: 900; }
.section { padding: 92px 0; }
.white { background: white; }
.section-head { display: flex; justify-content: space-between; gap: 28px; align-items: end; margin-bottom: 34px; }
.kicker { color: var(--cyan); font-size: 13px; font-weight: 950; letter-spacing: .2em; text-transform: uppercase; }
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.card { background: white; border: 1px solid var(--line); border-radius: 30px; padding: 24px; box-shadow: var(--shadow); transition: transform .25s ease, box-shadow .25s ease; }
.card:hover { transform: translateY(-5px); box-shadow: 0 30px 70px rgba(28, 59, 99, .18); }
.card.dark { color: white; background: var(--dark-gradient); border-color: transparent; }
.destination-card { min-height: 260px; display: flex; flex-direction: column; }
.flag { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 20px; background: #f4f7fb; font-size: 30px; }
.price { font-size: 28px; font-weight: 950; margin-top: auto; padding-top: 22px; }
.muted { color: var(--muted); line-height: 1.65; }
.big { font-size: 18px; }
.split-grid, .app-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 56px; align-items: center; }
.photo-panel, .app-photo { overflow: hidden; border-radius: 36px; box-shadow: var(--shadow); }
.photo-panel img { width: 100%; height: 560px; object-fit: cover; }
.app-photo img { width: 100%; height: 520px; object-fit: cover; }
.vertical-steps { display: grid; gap: 16px; margin-top: 28px; }
.vertical-steps > div { border: 1px solid var(--line); background: white; border-radius: 26px; padding: 22px; box-shadow: var(--shadow); }
.vertical-steps span { color: var(--cyan); font-size: 13px; font-weight: 950; letter-spacing: .18em; }
.feature-band { position: relative; background: var(--navy); color: white; overflow: hidden; }
.photo-band:before {
  content:""; position:absolute; inset:0;
  background: linear-gradient(110deg, rgba(7,23,47,.96), rgba(7,23,47,.84)), url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=1800&q=82") center/cover;
  opacity: 1;
}
.feature-grid { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; gap: 44px; align-items: center; }
.feature-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.soft-card { border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.08); border-radius: 30px; padding: 24px; backdrop-filter: blur(10px); }
.app-download { background: white; }
.store-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.store-btn { min-width: 180px; display: inline-flex; align-items: center; gap: 13px; border-radius: 20px; background: var(--navy); color: white; padding: 13px 17px; box-shadow: var(--shadow); }
.store-btn span { font-size: 22px; line-height: 1; }
.store-btn small { display: block; color: rgba(255,255,255,.62); font-size: 11px; font-weight: 800; }
.store-btn b { font-size: 18px; }
.compact { margin-top: 12px; }
.compact .store-btn { min-width: 130px; padding: 10px 12px; }
.info-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.info-card { border-radius: 30px; background: var(--soft); border: 1px solid var(--line); padding: 26px; }
.faq-section { background: var(--soft); }
.faq-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 30px; }
.footer {
  position: relative; overflow: hidden; padding: 72px 0 30px; color: white;
  background:
    radial-gradient(circle at 15% 0%, rgba(49,199,239,.18), transparent 32%),
    radial-gradient(circle at 90% 18%, rgba(95,140,255,.22), transparent 28%),
    var(--navy);
}
.footer:before {
  content: ""; position: absolute; inset: 0;
  background: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1800&q=70") center/cover;
  opacity: .08; pointer-events: none;
}
.footer > .wrap { position: relative; }
.footer-top { display: grid; grid-template-columns: 1fr minmax(340px, 430px); gap: 34px; align-items: stretch; }
.footer-brand {
  min-height: 260px; border: 1px solid rgba(255,255,255,.12); border-radius: 34px;
  padding: 30px; background: rgba(255,255,255,.06); backdrop-filter: blur(14px);
}
.footer p { color: rgba(255,255,255,.66); max-width: 560px; line-height: 1.75; }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.trust-row span {
  border: 1px solid rgba(255,255,255,.14); border-radius: 999px; padding: 10px 13px;
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.78); font-size: 12px; font-weight: 900;
}
.footer-app-card {
  display: grid; grid-template-columns: 62px 1fr; gap: 18px;
  border: 1px solid rgba(255,255,255,.14); border-radius: 34px; padding: 26px;
  background: linear-gradient(145deg, rgba(95,140,255,.24), rgba(49,199,239,.16));
  box-shadow: 0 24px 70px rgba(0,0,0,.22);
}
.footer-app-icon {
  width: 62px; height: 62px; display: grid; place-items: center; border-radius: 22px;
  background: var(--gradient); box-shadow: 0 0 34px rgba(49,199,239,.28);
}
.footer-app-icon img { width: 38px; height: 38px; object-fit: contain; }
.footer-app-card h3 { margin: 3px 0 0; font-size: 28px; }
.footer-app-card p { margin: 10px 0 0; font-size: 14px; }
.footer-links {
  display: grid; grid-template-columns: 1fr 1fr 1fr 1.15fr; gap: 26px;
  margin-top: 34px; padding: 34px 0; border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-links h4 { margin: 0 0 14px; color: white; font-size: 14px; text-transform: uppercase; letter-spacing: .16em; }
.footer-links a, .footer-links span {
  display: block; margin-top: 10px; color: rgba(255,255,255,.62); font-weight: 760; line-height: 1.45;
}
.footer-links a:hover { color: white; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding-top: 24px; color: rgba(255,255,255,.52); font-size: 13px; font-weight: 800;
}
.footer-bottom div { display: flex; gap: 18px; }
.footer-bottom a { color: rgba(255,255,255,.62); }
.form-shell { min-height: 100vh; display: grid; place-items: center; padding: 36px 20px; background: var(--soft); }
.form-card { width: min(520px, 100%); background: white; border-radius: 34px; padding: 34px; box-shadow: var(--shadow); }
.field { display: flex; align-items: center; gap: 10px; margin-top: 14px; border: 1px solid var(--line); border-radius: 18px; background: #f8fafc; padding: 15px 17px; }
.field input { width: 100%; border: 0; outline: 0; background: transparent; font-weight: 800; font-size: 15px; }
.checkout { min-height: 100vh; padding: 42px 0; }
.checkout-grid { display: grid; grid-template-columns: 1fr .72fr; gap: 28px; }
.summary { color: white; background: var(--navy); border-radius: 34px; padding: 34px; }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .28s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes barLoad { from { width: 12%; } to { width: 68%; } }
@media (max-width: 980px) {
  .links { display: none; }
  .hero-grid, .feature-grid, .checkout-grid, .split-grid, .app-grid, .footer-top { grid-template-columns: 1fr; }
  .cards, .feature-list, .info-grid, .faq-grid { grid-template-columns: 1fr 1fr; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .section-head { display: block; }
  .hero-stack { min-height: 520px; }
}
@media (max-width: 640px) {
  .wrap { width: min(100% - 28px, 1180px); }
  .nav-inner { gap: 12px; }
  .actions .btn-outline, .links { display: none; }
  .brand { font-size: 18px; }
  .brand img { width: 30px; height: 30px; }
  .btn { padding: 13px 15px; border-radius: 16px; font-size: 13px; }
  .lang-button { height: 40px; min-width: 96px; padding: 0 10px; gap: 6px; }
  .lang-flag { font-size: 18px; }
  .lang-menu { width: 214px; right: -56px; }
  .hero { padding: 64px 0 78px; }
  .stats, .cards, .feature-list, .info-grid, .faq-grid { grid-template-columns: 1fr; }
  .footer { padding-top: 56px; }
  .footer-brand, .footer-app-card { border-radius: 28px; padding: 22px; }
  .footer-app-card { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; gap: 18px; }
  .footer-bottom { display: block; }
  .footer-bottom div { margin-top: 12px; flex-wrap: wrap; }
  .hero-stack { min-height: auto; }
  .traveler-card, .phone-card { position: relative; width: 100%; }
  .phone-card { margin-top: -50px; }
  .traveler-card img { height: 240px; }
  h1 { font-size: 48px; }
  .section { padding: 66px 0; }
}
