:root {
  --bg: #f4f8fb;
  --surface: #ffffff;
  --surface-2: #eef5f8;
  --surface-3: #e3edf3;
  --line: #d6e3eb;
  --text: #102233;
  --muted: #637486;
  --cyan: #00a8c8;
  --cyan-soft: #087f9c;
  --accent: #0f5f7a;
  --gold: #e8c358;
  --danger: #ff8d8d;
  --success: #158861;
  --header-bg: rgba(255,255,255,.88);
  --header-line: rgba(15,95,122,.13);
  --header-shadow: 0 16px 42px rgba(16,34,51,.08);
  --nav: #31485a;
  --nav-active: #0d2536;
  --button-text: #ffffff;
  --hero-overlay:
    linear-gradient(180deg, rgba(244,248,251,.00) 0%, rgba(244,248,251,.08) 48%, var(--bg) 100%),
    linear-gradient(270deg, rgba(247,251,253,.88) 0%, rgba(247,251,253,.58) 44%, rgba(247,251,253,.04) 100%),
    radial-gradient(circle at 78% 24%, rgba(0,168,200,.14), transparent 35%);
  --hero-title: #102233;
  --hero-copy: #2d4659;
  --glass-bg: rgba(255,255,255,.76);
  --glass-line: rgba(15,95,122,.18);
  --field-bg: rgba(255,255,255,.56);
  --secondary-bg: rgba(255,255,255,.42);
  --secondary-line: rgba(15,95,122,.28);
  --ticker-shadow: 0 18px 55px rgba(16,34,51,.10);
  --card-shadow: 0 18px 46px rgba(16,34,51,.07);
  --app-overlay: linear-gradient(90deg, rgba(255,255,255,.96), rgba(255,255,255,.76));
  --visual-overlay: linear-gradient(180deg, rgba(255,255,255,.04), rgba(15,95,122,.35));
  --shadow: 0 24px 70px rgba(16,34,51,.14);
}

body[data-theme="dark"] {
  --bg: #0a0e1a;
  --surface: #111624;
  --surface-2: #171d2d;
  --surface-3: #202638;
  --line: #283449;
  --text: #dfe2f3;
  --muted: #9aa8bd;
  --cyan: #38d9f0;
  --cyan-soft: #9cf0ff;
  --accent: #38d9f0;
  --gold: #e8c358;
  --danger: #ff8d8d;
  --success: #7ce7b2;
  --header-bg: rgba(10, 14, 26, .86);
  --header-line: rgba(156,240,255,.09);
  --header-shadow: none;
  --nav: #c7cfdd;
  --nav-active: #fff;
  --button-text: #06262c;
  --hero-overlay:
    linear-gradient(180deg, rgba(5,8,18,.18) 0%, rgba(5,8,18,.16) 45%, var(--bg) 100%),
    linear-gradient(270deg, rgba(5,8,18,.90) 0%, rgba(5,8,18,.68) 45%, rgba(5,8,18,.24) 100%),
    radial-gradient(circle at 82% 28%, rgba(56,217,240,.20), transparent 34%);
  --hero-title: #fff;
  --hero-copy: #d5deec;
  --glass-bg: rgba(9,14,27,.78);
  --glass-line: rgba(156,240,255,.22);
  --field-bg: rgba(255,255,255,.045);
  --secondary-bg: rgba(255,255,255,.04);
  --secondary-line: rgba(255,255,255,.58);
  --ticker-shadow: 0 18px 55px rgba(0,0,0,.26);
  --card-shadow: none;
  --app-overlay: linear-gradient(90deg, rgba(17,22,36,.96), rgba(17,22,36,.76));
  --visual-overlay: linear-gradient(180deg, rgba(10,14,26,.02), rgba(10,14,26,.74));
  --shadow: 0 28px 90px rgba(0,0,0,.42);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Cairo", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
.material-symbols-outlined { font-size: 22px; vertical-align: middle; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 74px;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 32px;
  background: var(--header-bg);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--header-line);
  box-shadow: var(--header-shadow);
}
.brand { margin-left: auto; display: grid; gap: 0; }
.brand span { color: var(--cyan-soft); font-size: 28px; font-weight: 900; letter-spacing: .5px; }
.brand small { color: var(--muted); font-size: 11px; margin-top: -4px; }
nav { display: flex; align-items: center; gap: 26px; font-weight: 700; }
nav a { color: var(--nav); padding: 24px 0; border-bottom: 2px solid transparent; }
nav a.active, nav a:hover { color: var(--nav-active); border-color: var(--cyan); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.icon-btn {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(0,168,200,.08);
  color: var(--accent);
}
.login-btn, .primary-btn {
  border: 0;
  border-radius: 999px;
  background: var(--cyan);
  color: var(--button-text);
  font-weight: 900;
  padding: 12px 22px;
  box-shadow: 0 14px 32px rgba(0,168,200,.24);
}

.hero {
  position: relative;
  min-height: 680px;
  display: flex;
  justify-content: space-between;
  gap: 34px;
  align-items: center;
  direction: ltr;
  padding: 92px 32px 58px;
  background: #e8f2f6 url("assets/airport-terminal-hero-hd.jpg") center/cover no-repeat;
  overflow: hidden;
}
.hero-bg-img {
  display: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 0;
  transform: none;
  pointer-events: none;
  background: var(--hero-overlay);
}
.hero > * {
  position: relative;
  z-index: 1;
}
.hero-content {
  order: 2;
  direction: rtl;
  flex: 1 1 680px;
  min-width: 500px;
  max-width: 720px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  color: var(--cyan-soft);
  border: 1px solid var(--glass-line);
  border-radius: 999px;
  padding: 7px 16px;
  font-weight: 800;
  font-size: 13px;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
}
.hero h1 {
  margin: 20px 0 16px;
  max-width: 720px;
  font-size: 54px;
  line-height: 1.12;
  text-wrap: balance;
  color: var(--hero-title);
}
.hero h1::first-line { color: var(--hero-title); }
.hero p, .text-panel p, .app-section p {
  color: var(--muted);
  line-height: 1.9;
  font-size: 18px;
}
.hero p {
  max-width: 660px;
  margin: 0;
  color: var(--hero-copy);
}
.hero-actions { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.secondary-btn {
  border: 1px solid var(--secondary-line);
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 900;
  background: var(--secondary-bg);
}
.hero-kpis {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.hero-kpis span {
  min-width: 148px;
  padding: 12px 16px;
  border: 1px solid var(--glass-line);
  border-radius: 14px;
  background: var(--glass-bg);
  color: var(--text);
  backdrop-filter: blur(14px);
}
.hero-kpis strong {
  display: block;
  color: var(--cyan-soft);
  font-size: 26px;
  line-height: 1.1;
}
.hero-card {
  order: 1;
  direction: rtl;
  flex: 0 0 360px;
  padding: 22px;
  border: 1px solid var(--glass-line);
  border-radius: 18px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}
.card-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: var(--cyan-soft);
  font-size: 13px;
  font-weight: 900;
}
.card-topline b {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(124,231,178,.14);
  color: var(--success);
  font-size: 12px;
}
.hero-card h2 { margin: 10px 0 18px; font-size: 28px; }
.hero-card label { display: block; margin: 13px 0 7px; color: var(--muted); }
.field {
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: 12px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 4px 12px;
  padding: 10px 14px;
  color: var(--text);
  background: var(--field-bg);
  margin-top: 10px;
}
.field span {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}
.field strong {
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: 15px;
}
.field i { color: var(--cyan); }
.hero-card button {
  width: 100%;
  height: 52px;
  margin-top: 20px;
  border: 0;
  border-radius: 999px;
  background: var(--cyan);
  color: var(--button-text);
  font-weight: 900;
}

.flight-ticker {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  align-items: center;
  margin: -18px 32px 34px;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--ticker-shadow);
}
.ticker-label {
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--button-text);
  background: var(--cyan);
  font-weight: 900;
}
.ticker-window {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.ticker-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: flightMarquee 34s linear infinite;
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  height: 58px;
  white-space: nowrap;
  color: var(--text);
  border-left: 1px solid var(--line);
}
.ticker-item strong { color: var(--accent); }
.ticker-item b { color: var(--success); font-size: 13px; }
.ticker-item.warning b { color: var(--gold); }
.ticker-item.danger b { color: var(--danger); }
@keyframes flightMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(50%); }
}

.stats-strip, .section, .flight-search-section, .discover-section, .split-section, .app-section, footer {
  max-width: 1220px;
  margin: 0 auto;
  padding-inline: 32px;
}
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding-bottom: 70px;
}
.stats-strip article, .service-card, .flight-board, .app-section, .visual-panel, .text-panel {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--card-shadow);
}
.stats-strip article { padding: 22px; text-align: center; }
.stats-strip strong { display: block; color: var(--cyan); font-size: 34px; line-height: 1; }
.stats-strip span { color: var(--muted); }

.flight-search-section {
  padding-top: 54px;
  padding-bottom: 72px;
}
.flight-search-panel {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 12px;
  align-items: end;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: var(--card-shadow);
}
.flight-search-panel label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 800;
}
.flight-search-panel select,
.flight-search-panel input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0 12px;
  background: var(--surface-2);
  color: var(--text);
  font: inherit;
  font-weight: 800;
}
.flight-search-panel button {
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 0 22px;
  background: var(--cyan);
  color: var(--button-text);
  font-weight: 900;
}
.flight-results {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}
.flight-result-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--card-shadow);
}
.flight-result-card small {
  display: block;
  color: var(--muted);
  font-weight: 800;
}
.flight-result-card strong {
  display: block;
  margin: 8px 0;
  color: var(--text);
  font-size: 24px;
}
.flight-result-card span {
  display: inline-flex;
  margin-top: 12px;
}

.section { padding-top: 72px; padding-bottom: 74px; }
.section-head { margin-bottom: 28px; }
.section-head span { color: var(--cyan); font-weight: 900; }
.section-head h2, .text-panel h2, .app-section h2 {
  margin: 8px 0 8px;
  font-size: 38px;
  line-height: 1.2;
}
.section-head p { margin: 0; color: var(--muted); }
.section-head.inline {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.service-card {
  padding: 24px;
  min-height: 190px;
  transition: transform .2s ease, border-color .2s ease;
  display: block;
}
.service-card:hover, .service-card.active {
  transform: translateY(-4px);
  border-color: rgba(0,168,200,.38);
}
.service-card i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--cyan);
  background: rgba(0,168,200,.11);
}
.service-card h3 { margin: 18px 0 8px; }
.service-card p { margin: 0; color: var(--muted); line-height: 1.75; }
.filters { display: flex; gap: 10px; background: var(--surface-2); padding: 8px; border-radius: 999px; }
.filters button {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  padding: 10px 18px;
  font-weight: 800;
}
.filters .active { background: var(--cyan); color: var(--button-text); }
.flight-board { overflow: hidden; }
.board-head, .flight-row {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1.5fr 1fr .8fr 1fr;
  gap: 10px;
  align-items: center;
  padding: 18px 24px;
}
.board-head {
  color: var(--muted);
  background: var(--surface-3);
  font-weight: 800;
}
.flight-row { border-top: 1px solid var(--line); }
.flight-row strong { color: var(--text); }
.flight-row small { display: block; color: var(--muted); }
.flight-code { color: var(--accent); font-weight: 900; }
.status {
  display: inline-flex;
  justify-content: center;
  width: fit-content;
  min-width: 96px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  background: rgba(124,231,178,.14);
  color: var(--success);
}
.status.warning { background: rgba(232,195,88,.18); color: #9b6b00; }
.status.danger { background: rgba(255,141,141,.18); color: #b82222; }
.update-note { margin-top: 18px; color: var(--cyan-soft); font-weight: 800; text-align: left; }

.discover-section {
  padding-top: 78px;
  padding-bottom: 78px;
}
.discover-hero {
  min-height: 300px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.96), rgba(255,255,255,.58)),
    url("assets/discover-red-castle.jpg") center/cover;
  box-shadow: var(--card-shadow);
}
body[data-theme="dark"] .discover-hero {
  background:
    linear-gradient(90deg, rgba(17,22,36,.96), rgba(17,22,36,.46)),
    url("assets/discover-red-castle.jpg") center/cover;
}
.discover-hero h2 {
  margin: 12px 0 10px;
  max-width: 690px;
  font-size: 42px;
  line-height: 1.18;
}
.discover-hero p {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
  font-size: 17px;
}
.discover-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 24px 0;
}
.discover-tabs button {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 18px;
  background: var(--surface);
  color: var(--muted);
  font-weight: 900;
}
.discover-tabs .active {
  border-color: transparent;
  background: var(--cyan);
  color: var(--button-text);
  box-shadow: 0 14px 30px rgba(0,168,200,.20);
}
.discover-layout {
  display: grid;
  grid-template-columns: 1.05fr 1.6fr;
  gap: 18px;
  align-items: start;
}
.discover-feature,
.discover-card,
.discover-tip {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--card-shadow);
}
.discover-feature {
  position: sticky;
  top: 96px;
  overflow: hidden;
  border-radius: 24px;
}
.discover-feature img {
  width: 100%;
  height: 320px;
  display: block;
  object-fit: cover;
}
.discover-feature > div {
  padding: 24px;
}
.discover-feature span {
  display: inline-flex;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(232,195,88,.18);
  color: #8f6500;
  font-size: 12px;
  font-weight: 900;
}
body[data-theme="dark"] .discover-feature span { color: var(--gold); }
.discover-feature h3 {
  margin: 14px 0 8px;
  font-size: 30px;
}
.discover-feature p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}
.discover-feature b {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 18px;
  color: var(--cyan-soft);
}
.discover-feature b i { font-size: 18px; color: var(--gold); }
.discover-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.discover-card {
  overflow: hidden;
  border-radius: 18px;
  transition: transform .2s ease, border-color .2s ease, opacity .2s ease;
}
.discover-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,168,200,.34);
}
.discover-card.is-hidden,
.discover-feature.is-hidden {
  display: none;
}
.discover-card img {
  width: 100%;
  height: 150px;
  display: block;
  object-fit: cover;
}
.discover-card div {
  padding: 18px;
}
.discover-card span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--cyan);
  background: rgba(0,168,200,.11);
}
.discover-card h3 {
  margin: 14px 0 7px;
  font-size: 20px;
}
.discover-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}
.discover-tip {
  display: flex;
  align-items: start;
  gap: 12px;
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 18px;
}
.discover-tip i {
  color: var(--gold);
}
.discover-tip p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding-top: 78px;
  padding-bottom: 78px;
}
.visual-panel {
  min-height: 420px;
  background:
    var(--visual-overlay),
    url("https://lh3.googleusercontent.com/aida-public/AB6AXuBElS7cxXH9X3SEwYzQepTXviftG9y4my_8YB4nmg-nm6SukIDESGl1su16y6FKQLPtvnWJrZgAGwpvbmTNQ4nAeha0Z8SrQgDvGeuJ8qme58E16z7jFwND2sEMPK14D2iQS80LwG1rUbBpncFPJQWwz8p4Rn2o4FlRMk4tQTQry1PrUP73k8peAgmM_CKcyqX6TvfZ3fSBu1vH1UAx7BnYpR-xRUrQMcllaN1UCDNghQT2CMPHDr8b68gI9BzrhXmneEzUgyzpLrM") center/cover;
}
.text-panel { padding: 42px; }
.text-panel ul { list-style: none; padding: 0; margin: 24px 0; display: grid; gap: 12px; }
.text-panel li { display: flex; gap: 10px; color: var(--text); }
.text-panel i { color: var(--cyan); }
.invest-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.invest-actions .primary-btn,
.invest-actions .secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.page-transition {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  background: radial-gradient(circle at center, rgba(56,217,240,.16), rgba(10,14,26,.96) 44%, #050812);
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.02);
  transition: opacity .36s ease, transform .36s ease;
}
.page-transition.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}
.page-transition span {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 4px solid rgba(156,240,255,.22);
  border-top-color: var(--cyan);
  animation: spin .8s linear infinite;
}
.page-transition strong {
  color: var(--cyan-soft);
  font-size: 20px;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

.app-section {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: center;
  margin-bottom: 84px;
  padding: 46px;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 38%, rgba(0,168,200,.22), transparent 32%),
    linear-gradient(135deg, var(--surface), var(--surface-2));
}
.app-copy { position: relative; z-index: 1; }
.app-copy h2 {
  max-width: 620px;
  font-size: 44px;
}
.app-copy p { max-width: 660px; }
.store-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.store-buttons a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 18px;
  background: var(--surface);
  color: var(--text);
  font-weight: 800;
}
.phone-mock {
  position: relative;
  width: 250px;
  height: 500px;
  justify-self: center;
  border-radius: 42px;
  padding: 16px;
  background: linear-gradient(145deg, #102233, #050912);
  box-shadow: 0 36px 80px rgba(16,34,51,.26), 0 0 0 1px rgba(255,255,255,.12);
  transform: rotate(-5deg);
}
.phone-notch {
  position: absolute;
  top: 18px;
  left: 50%;
  width: 82px;
  height: 24px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #050912;
  z-index: 2;
}
.phone-screen {
  height: 100%;
  border-radius: 30px;
  padding: 58px 20px 28px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 12px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 20%, rgba(56,217,240,.26), transparent 30%),
    linear-gradient(180deg, #edf9fc, #cbeef5);
}
.app-icon-preview {
  width: 150px;
  height: 150px;
  padding: 10px;
  border-radius: 36px;
  background: linear-gradient(145deg, #ffffff, #d7eef5);
  box-shadow: 0 18px 42px rgba(16,34,51,.22);
}
.app-icon-preview img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 28px;
}
.phone-screen strong { color: #102233; font-size: 34px; line-height: 1; }
.phone-screen span { color: #496273; font-size: 13px; line-height: 1.5; }
.phone-screen b {
  display: inline-flex;
  padding: 7px 14px;
  border-radius: 999px;
  color: #06262c;
  background: var(--cyan);
}

body[data-theme="dark"] .status.warning { color: var(--gold); }
body[data-theme="dark"] .status.danger { color: var(--danger); }
body[data-theme="dark"] .store-buttons a {
  border-color: rgba(255,255,255,.2);
  background: #050812;
  color: #fff;
}
body[data-theme="dark"] .phone-mock {
  background: #050812;
  box-shadow: 0 28px 60px rgba(0,0,0,.5), 0 0 0 1px rgba(156,240,255,.14);
}

footer {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
  padding-top: 48px;
  padding-bottom: 48px;
  border-top: 1px solid var(--line);
}
footer h3 { margin: 0 0 8px; color: var(--cyan-soft); font-size: 34px; }
footer h4 { margin: 0 0 12px; }
footer p, footer a, footer span { display: block; color: var(--muted); line-height: 1.9; }
.footer-rights {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  text-align: center;
}

@media (max-width: 960px) {
  .site-header { padding: 0 18px; gap: 14px; }
  nav { display: none; }
  .hero { flex-direction: column; align-items: stretch; direction: ltr; padding-top: 64px; gap: 28px; }
  .hero-bg-img { position: absolute; inset: 0; width: 100%; height: 100%; transform: scale(1.02); }
  .hero-content, .hero-card { width: 100%; flex: 1 1 auto; min-width: 0; max-width: none; }
  .hero-content { order: 1; }
  .hero-card { order: 2; }
  .hero h1 { font-size: 46px; max-width: 680px; }
  .hero p { max-width: 620px; }
  .hero-card { max-width: 420px; }
  .flight-ticker { grid-template-columns: 1fr; }
  .ticker-label { height: 46px; }
  .stats-strip, .service-grid, .flight-search-panel, .flight-results, .discover-layout, .split-section, .app-section, footer { grid-template-columns: 1fr; }
  .discover-feature { position: static; }
  .discover-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .section-head.inline { align-items: start; flex-direction: column; }
  .board-head { display: none; }
  .flight-row { grid-template-columns: 1fr 1fr; gap: 14px; }
  .phone-mock { justify-self: start; }
}

@media (max-width: 560px) {
  .header-actions .icon-btn { display: none; }
  .hero, .stats-strip, .section, .flight-search-section, .discover-section, .split-section, .app-section, footer { padding-inline: 18px; }
  .flight-ticker { margin-inline: 18px; }
  .hero { min-height: auto; padding-top: 44px; padding-bottom: 40px; }
  .hero h1 { font-size: 34px; line-height: 1.2; overflow-wrap: anywhere; }
  .hero p { font-size: 16px; line-height: 1.8; }
  .hero-actions a { width: 100%; text-align: center; }
  .hero-kpis { gap: 8px; }
  .hero-kpis span { min-width: calc(50% - 4px); flex: 1 1 calc(50% - 4px); padding: 10px 12px; }
  .hero-card { padding: 18px; border-radius: 16px; }
  .flight-search-panel { padding: 14px; }
  .service-grid { gap: 12px; }
  .service-card { min-height: auto; padding: 18px; }
  .discover-hero { min-height: 360px; padding: 24px; align-items: end; flex-direction: column; justify-content: end; }
  .discover-hero h2 { font-size: 31px; }
  .discover-hero p { font-size: 15px; }
  .discover-hero .secondary-btn { width: 100%; text-align: center; }
  .discover-tabs { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 4px; }
  .discover-tabs button { white-space: nowrap; }
  .discover-grid { grid-template-columns: 1fr; }
  .discover-feature img { height: 240px; }
  .app-section { padding: 28px 18px; }
  .app-copy h2 { font-size: 32px; }
  .phone-mock { width: 220px; height: 440px; justify-self: center; transform: rotate(-3deg); }
  .app-icon-preview { width: 128px; height: 128px; }
  .stats-strip { gap: 10px; }
  .flight-row { grid-template-columns: 1fr; }
}
