﻿/* =========================================================
   SkyAssist.store — Global Stylesheet
   Mobile-first, accessible, performance-focused.
   ========================================================= */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body, h1, h2, h3, h4, h5, h6, p, ul, ol { margin: 0; }
ul[role="list"], ol[role="list"] { list-style: none; padding: 0; }
img, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 3px solid var(--ring); outline-offset: 2px; border-radius: 6px; }

/* ---------- Tokens ---------- */
:root {
  --brand-50:#eff7ff; --brand-100:#d7ecff; --brand-200:#b6dbff;
  --brand-300:#84c2ff; --brand-400:#4ea4ff; --brand-500:#1985f7;
  --brand-600:#0e67ca; --brand-700:#0a529e; --brand-800:#0a417c;
  --brand-900:#0a3462; --brand-950:#072445;

  --fire-400:#ff7b2f; --fire-500:#ff5b1f; --fire-600:#e64911;
  --accent-400:#ffb547; --accent-500:#ff9f1c; --accent-600:#e2870c;

  --ink-900:#0a1024; --ink-800:#111a36; --ink-700:#1c2647;
  --slate-50:#f7f9fc; --slate-100:#eef2f7; --slate-200:#e3e9f2;
  --slate-300:#cdd6e4; --slate-400:#94a2b8; --slate-500:#64748b;

  --success:#0fb87a; --warn:#f59e0b; --danger:#ef4444;

  --bg:#ffffff; --bg-soft:#f7f9fc; --bg-alt:#f1f5ff;
  --surface:#ffffff; --text:#0a1024; --text-muted:#475569;
  --border:#e3e9f2; --ring:#5b94ff;

  --shadow-soft:0 6px 24px -10px rgba(13,25,75,.18);
  --shadow-glass:0 14px 38px -16px rgba(13,25,75,.28);
  --shadow-cta:0 14px 30px -10px rgba(37,83,240,.55);
  --shadow-fire:0 12px 28px -10px rgba(255,77,0,.5);

  --radius-sm:10px; --radius:14px; --radius-lg:20px; --radius-xl:28px;
  --container:1200px; --header-h:76px;
  --font-sans:'Manrope',system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
  --font-display:'Sora','Manrope',system-ui,sans-serif;
}

[data-theme="dark"] {
  --bg:#0a1024; --bg-soft:#0e1530; --bg-alt:#111a36;
  --surface:#111a36; --text:#e8eefc; --text-muted:#a8b3cf;
  --border:#1e2a4d; --ring:#8bb9ff;
  --shadow-soft:0 6px 24px -10px rgba(0,0,0,.5);
  --shadow-glass:0 14px 38px -16px rgba(0,0,0,.6);
}

/* ---------- Base ---------- */
html, body { height: 100%; }
body {
  font-family: var(--font-sans); font-size: 16px; line-height: 1.6;
  color: var(--text); background: var(--bg);
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 800; line-height: 1.15; letter-spacing: -.02em; }
h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 1.8vw, 1.4rem); }
p { color: var(--text-muted); }
a:hover { color: var(--brand-600); }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 1rem; }
@media (min-width: 768px){ .container { padding-inline: 1.5rem; } }
@media (min-width: 1024px){ .container { padding-inline: 2rem; } }

.section { padding: clamp(3rem, 6vw, 5.5rem) 0; }
.section-tight { padding: clamp(1.5rem, 3vw, 2.5rem) 0; }
.bg-soft { background: var(--bg-soft); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--bg-alt); color: var(--brand-700);
  border: 1px solid var(--border);
  padding: .35rem .75rem; border-radius: 999px;
  font-weight: 700; font-size: .78rem; letter-spacing: .06em; text-transform: uppercase;
}
[data-theme="dark"] .eyebrow { background: rgba(91,148,255,.12); color: var(--brand-200); border-color: rgba(91,148,255,.2); }

.eyebrow-light {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.15); color: #fff; border: 1px solid rgba(255,255,255,.25);
  padding: .35rem .75rem; border-radius: 999px;
  font-weight: 700; font-size: .78rem; letter-spacing: .06em; text-transform: uppercase;
}

.price-disclaimer, .search-disclaimer {
  font-size: .8rem; color: var(--text-muted); margin-top: .5rem;
}

.section-head { display: grid; gap: .6rem; margin-bottom: 2rem; }
.section-head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }

/* ---------- Top notice ---------- */
.top-notice {
  background: linear-gradient(90deg, #0b2548, #123464);
  color: #d6e6ff;
  border-bottom: 1px solid rgba(158, 196, 255, .24);
}
.top-notice-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: .84rem;
  font-weight: 600;
}
.top-notice-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  color: #0b1f3f;
  background: #ffbe55;
  font-weight: 800;
}
.top-notice-inner p { color: inherit; }
.top-notice-inner a {
  margin-left: auto;
  color: #fff;
  font-weight: 800;
}
.top-notice-inner a:hover { color: #ffd899; }
@media (max-width: 767px) {
  .top-notice-inner { min-height: auto; padding: .5rem 0; flex-wrap: wrap; }
  .top-notice-inner a { margin-left: 0; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .85rem 1.25rem; border-radius: 999px; font-weight: 700; font-size: .98rem;
  transition: transform .15s, box-shadow .15s, background .15s, color .15s, border-color .15s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: linear-gradient(135deg, var(--brand-600), var(--brand-500)); color: #fff; box-shadow: var(--shadow-cta); }
.btn-primary:hover { color: #fff; filter: brightness(1.05); }
.btn-fire { background: linear-gradient(135deg, #ff6000, #ff3a00); color: #fff; box-shadow: var(--shadow-fire); }
.btn-fire:hover { color: #fff; filter: brightness(1.08); transform: translateY(-1px); }
.btn-glass {
  background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.btn-glass:hover { background: rgba(255,255,255,.2); color: #fff; }
.btn-accent { background: linear-gradient(135deg, var(--accent-500), var(--accent-400)); color: #20140a; box-shadow: 0 12px 26px -10px rgba(255,159,28,.55); }
.btn-accent:hover { color: #20140a; filter: brightness(1.04); }
.btn-ghost { background: var(--bg-alt); color: var(--text); border: 1px solid var(--border); }
.btn-ghost:hover { background: var(--surface); border-color: var(--brand-300); color: var(--brand-700); }
.btn-outline { border: 1.5px solid var(--brand-600); color: var(--brand-700); background: transparent; }
.btn-outline:hover { background: var(--brand-50); }
[data-theme="dark"] .btn-outline { color: var(--brand-200); border-color: var(--brand-300); }
[data-theme="dark"] .btn-outline:hover { background: rgba(91,148,255,.1); }
.btn-lg { padding: 1rem 1.6rem; font-size: 1.02rem; }
.btn-xl { padding: 1.1rem 1.8rem; font-size: 1.08rem; }
.btn-block { width: 100%; }
.btn-search-go { border-radius: var(--radius); width: 100%; padding: 1rem; }

/* ---------- Brand ---------- */
.brand {
  display: inline-flex; align-items: center; gap: .55rem;
  font-weight: 800; letter-spacing: -.02em; font-size: 1.2rem;
}
.brand-mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--brand-600), var(--brand-400));
  display: grid; place-items: center; color: #fff;
  box-shadow: 0 8px 18px -8px rgba(37,83,240,.6);
  flex-shrink: 0;
}
.brand-mark svg { width: 20px; height: 20px; }
.brand-accent { color: var(--brand-600); }
[data-theme="dark"] .brand-accent { color: var(--brand-300); }
.brand-tld { font-size: .65em; color: var(--text-muted); font-weight: 600; align-self: flex-end; margin-bottom: .1em; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: var(--header-h);
}
.primary-nav { display: none; }
@media (min-width: 1024px){
  .primary-nav { display: flex; align-items: center; gap: .2rem; }
  .primary-nav a { padding: .5rem .8rem; border-radius: 10px; font-weight: 600; color: var(--text); font-size: .93rem; }
  .primary-nav a:hover { background: var(--bg-alt); color: var(--brand-700); }
  .primary-nav a.is-active { color: var(--brand-700); background: var(--brand-50); }
  [data-theme="dark"] .primary-nav a.is-active { background: rgba(91,148,255,.12); color: var(--brand-200); }
}
.header-actions { display: flex; align-items: center; gap: .4rem; }

/* Call pill with pulse animation */
.call-pill {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .5rem .85rem; border-radius: 999px; position: relative;
  background: var(--bg-alt); border: 1px solid var(--border); font-weight: 700;
}
.call-pill .num { color: var(--brand-700); }
[data-theme="dark"] .call-pill .num { color: var(--brand-200); }
.call-pill svg { width: 15px; height: 15px; color: var(--fire-500); }
@media (max-width: 640px){ .call-pill .num-text { display: none; } }

.pulse-ring::before {
  content: ""; position: absolute; inset: -4px; border-radius: inherit;
  border: 2px solid var(--fire-500); animation: pulse-border 2.4s ease-out infinite; opacity: 0;
}
@keyframes pulse-border {
  0% { transform: scale(1); opacity: .8; }
  70% { transform: scale(1.08); opacity: 0; }
  100% { opacity: 0; }
}

.theme-toggle {
  width: 40px; height: 40px; border-radius: 12px; border: 1px solid var(--border);
  background: var(--surface); display: grid; place-items: center; color: var(--text);
}
.theme-toggle:hover { color: var(--brand-700); border-color: var(--brand-300); }

.menu-toggle {
  width: 40px; height: 40px; border-radius: 12px; border: 1px solid var(--border);
  background: var(--surface); display: grid; place-items: center;
}
@media (min-width: 1024px){ .menu-toggle { display: none; } }

/* Mobile nav */
.mobile-nav { display: none; border-top: 1px solid var(--border); background: var(--surface); padding: .75rem 1rem 1rem; }
.mobile-nav.is-open { display: block; }
.mobile-nav a { display: block; padding: .8rem .5rem; border-radius: 10px; font-weight: 600; }
.mobile-nav a:hover { background: var(--bg-alt); }
.mobile-nav .divider { height: 1px; background: var(--border); margin: .5rem 0; }
@media (min-width: 1024px){ .mobile-nav { display: none !important; } }

/* ---------- Hero ---------- */
.hero {
  position: relative; isolation: isolate; overflow: hidden;
  min-height: min(88vh, 720px);
  display: flex; align-items: center;
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(6rem, 9vw, 9rem);
  color: #eaf0ff;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg-img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(6,18,38,.9) 0%, rgba(5,24,52,.7) 45%, rgba(3,11,24,.85) 100%);
}
.hero-content { position: relative; z-index: 2; display: grid; gap: 2.5rem; }
@media (min-width: 1024px){ .hero-content { grid-template-columns: 1fr auto; align-items: center; } }

.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(64, 177, 255, .16); border: 1px solid rgba(126, 202, 255, .42);
  color: #cde8ff; padding: .42rem .92rem; border-radius: 999px;
  font-size: .78rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; margin-bottom: 1rem;
}
.hero-title { color: #fff; font-size: clamp(2.2rem, 5vw, 3.8rem); line-height: 1.1; }
.gradient-text {
  background: linear-gradient(135deg, var(--accent-400) 0%, #ff6b2b 50%, var(--brand-300) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub { font-size: clamp(1rem, 1.5vw, 1.2rem); color: #c8d1ee; max-width: 60ch; margin-top: .75rem; line-height: 1.7; }
.hero-sub { max-width: 66ch; }
.hero-sub strong { color: #fff; }
.hero-cta-btns { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: .5rem .85rem; margin-top: 1.5rem; }
.hero-trust span {
  font-size: .82rem; color: #c8d1ee; display: inline-flex; align-items: center; gap: .35rem;
}

/* Hero stats */
.hero-stats {
  display: flex; gap: 0; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg); backdrop-filter: blur(10px);
  padding: 1.5rem 2rem; align-items: center; flex-shrink: 0;
}
.stat-item { text-align: center; padding: 0 1.5rem; }
.stat-num { font-size: 2.2rem; font-weight: 900; color: #fff; font-family: var(--font-display); }
.stat-suffix { font-size: 1.4rem; font-weight: 800; color: var(--accent-400); }
.stat-label { display: block; font-size: .8rem; color: #94a2c8; font-weight: 600; margin-top: .2rem; letter-spacing: .04em; text-transform: uppercase; }
.stat-divider { width: 1px; height: 50px; background: rgba(255,255,255,.2); }
@media (max-width: 1023px){ .hero-stats { display: none; } }

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fade-up { animation: fadeUp .7s ease both; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }
.delay-4 { animation-delay: .4s; }

/* Reveal on scroll */
@media (prefers-reduced-motion: no-preference){
  .reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
  .reveal.delay-1 { transition-delay: .1s; }
  .reveal.delay-2 { transition-delay: .2s; }
  .reveal.delay-3 { transition-delay: .3s; }
  .reveal.is-visible { opacity: 1; transform: none; }
}

/* ---------- Search Card ---------- */
.search-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-glass);
  padding: 1.25rem; margin-top: -4rem; position: relative; z-index: 10;
}
.glass-card { background: rgba(255,255,255,.96); }
[data-theme="dark"] .glass-card { background: rgba(17,26,54,.96); }

.trip-tabs { display: flex; gap: .25rem; padding: .25rem; background: var(--bg-alt); border-radius: 999px; width: max-content; max-width: 100%; overflow-x: auto; }
.trip-tab { padding: .5rem .9rem; border-radius: 999px; font-weight: 700; font-size: .88rem; color: var(--text-muted); white-space: nowrap; }
.trip-tab.is-active { background: var(--surface); color: var(--brand-700); box-shadow: var(--shadow-soft); }
[data-theme="dark"] .trip-tab.is-active { color: var(--brand-200); }

.search-grid { display: grid; gap: .75rem; margin-top: 1rem; grid-template-columns: 1fr; }
@media (min-width: 768px){ .search-grid { grid-template-columns: 1fr 1fr 1fr 1fr auto; align-items: end; } }
@media (min-width: 1100px){ .search-grid { grid-template-columns: 1.2fr 1.2fr .9fr .9fr 1fr auto; } }

.field {
  position: relative; border: 1px solid var(--border); background: var(--bg-soft);
  border-radius: var(--radius); padding: .65rem .85rem;
  display: flex; flex-direction: column; gap: .15rem;
}
.field:focus-within { border-color: var(--brand-400); box-shadow: 0 0 0 4px rgba(91,148,255,.16); }
.field label { font-size: .7rem; color: var(--text-muted); font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.field input, .field select { background: transparent; border: 0; padding: .15rem 0; font-size: .98rem; font-weight: 700; width: 100%; }
.field input::placeholder { color: var(--slate-400); font-weight: 500; }

.swap-btn {
  position: absolute; right: -14px; top: 50%; transform: translateY(-50%);
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--border);
  display: grid; place-items: center; box-shadow: var(--shadow-soft);
  color: var(--brand-600); z-index: 2;
}
@media (max-width: 767px){ .swap-btn { display: none; } }

.search-extras {
  display: flex; flex-wrap: wrap; gap: .5rem 1rem; align-items: center; justify-content: space-between;
  margin-top: .85rem; padding-top: .85rem; border-top: 1px dashed var(--border);
}
.chip-row { display: flex; flex-wrap: wrap; gap: .35rem; }
.chip {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .3rem .6rem; background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: 999px; font-size: .8rem; font-weight: 600; color: var(--text-muted);
  cursor: pointer; transition: all .2s;
}
.chip.is-active, .chip:hover { background: var(--brand-50); color: var(--brand-700); border-color: var(--brand-200); }
[data-theme="dark"] .chip.is-active { background: rgba(91,148,255,.14); color: var(--brand-200); }

/* ---------- Deal Ticker ---------- */
.deal-ticker {
  background: linear-gradient(90deg, var(--brand-950), var(--brand-800), var(--brand-950));
  color: var(--accent-300); overflow: hidden; white-space: nowrap;
  padding: .55rem 0; border-top: 1px solid rgba(91,148,255,.2); border-bottom: 1px solid rgba(91,148,255,.2);
}
.ticker-track {
  display: inline-block; animation: ticker-scroll 40s linear infinite;
}
.deal-ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-item { display: inline-block; padding: 0 2rem; color: #c8d1ee; font-weight: 600; font-size: .88rem; }
.ticker-item:nth-child(odd) { color: var(--accent-400); }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Trust Bar ---------- */
.trust-bar { background: var(--surface); border-bottom: 1px solid var(--border); }
.trust-strip {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: .5rem 0; padding: 1rem; border-radius: var(--radius-lg);
}
.trust-item { display: flex; align-items: center; gap: .6rem; padding: .5rem 1.25rem; }
.trust-ico {
  width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center;
  background: var(--brand-50); color: var(--brand-600); flex-shrink: 0;
}
[data-theme="dark"] .trust-ico { background: rgba(91,148,255,.1); }
.trust-item h4 { font-size: .92rem; margin-bottom: 0; }
.trust-item p { font-size: .8rem; margin: 0; }
.trust-divider { width: 1px; height: 40px; background: var(--border); }
@media (max-width: 767px){ .trust-divider { display: none; } }

/* ---------- Deals Grid ---------- */
.deals-grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
.deal-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform .25s ease, box-shadow .25s ease, border-color .2s;
  display: flex; flex-direction: column;
}
.deal-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-glass); border-color: var(--brand-200); }
.deal-card-img {
  position: relative; aspect-ratio: 16/10; overflow: hidden;
}
.deal-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.deal-card:hover .deal-card-img img { transform: scale(1.05); }
.deal-badge {
  position: absolute; top: .75rem; left: .75rem;
  background: rgba(255,255,255,.92); color: var(--ink-900);
  padding: .25rem .55rem; border-radius: 999px; font-size: .72rem; font-weight: 800; z-index: 1;
}
.deal-badge.hot { background: linear-gradient(135deg, #ff4d00, #ff8c00); color: #fff; }
.deal-save {
  position: absolute; top: .75rem; right: .75rem;
  background: var(--success); color: #fff;
  padding: .25rem .55rem; border-radius: 999px; font-size: .72rem; font-weight: 800; z-index: 1;
}
.deal-card-body { padding: 1rem 1.1rem 1.2rem; flex: 1; display: flex; flex-direction: column; gap: .35rem; }
.deal-route { display: flex; align-items: center; gap: .4rem; }
.deal-code { font-weight: 900; font-size: 1.05rem; color: var(--text); letter-spacing: .03em; }
.deal-arrow { color: var(--text-muted); font-size: .9rem; }
.deal-meta { font-size: .82rem; color: var(--text-muted); font-weight: 500; }
.deal-class { font-size: .78rem; color: var(--text-muted); }
.deal-price-row { display: flex; align-items: flex-end; justify-content: space-between; margin-top: auto; padding-top: .5rem; }
.deal-from { font-size: .72rem; color: var(--text-muted); display: block; }
.deal-price { font-size: 1.6rem; font-weight: 900; color: var(--brand-700); line-height: 1; }
[data-theme="dark"] .deal-price { color: var(--brand-300); }
.deal-price sup { font-size: .7em; }
.deal-cta-link { font-size: .8rem; font-weight: 700; color: var(--brand-600); white-space: nowrap; }
.deal-card:hover .deal-cta-link { color: var(--fire-500); }

/* ---------- Destination Cards ---------- */
.dest-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform .25s ease, box-shadow .25s ease, border-color .2s;
  display: flex; flex-direction: column;
}
.dest-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-glass); border-color: var(--brand-200); }
.dest-img { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.dest-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.dest-card:hover .dest-img img { transform: scale(1.06); }
.dest-overlay {
  position: absolute; inset: 0; display: flex; align-items: flex-end; padding: .75rem;
  background: linear-gradient(0deg, rgba(5,10,30,.5) 0%, transparent 60%);
}
.dest-pill {
  background: rgba(255,255,255,.88); color: var(--ink-900);
  padding: .22rem .55rem; border-radius: 999px; font-size: .72rem; font-weight: 800;
}
.dest-pill.is-hot { background: linear-gradient(135deg, #ff4d00, #ff8c00); color: #fff; }
.dest-body { padding: .9rem 1rem 1.1rem; flex: 1; }
.dest-name-row { display: flex; align-items: flex-start; justify-content: space-between; gap: .5rem; margin-bottom: .3rem; }
.dest-name-row h3 { font-size: 1.05rem; }
.dest-price { font-size: .95rem; font-weight: 900; color: var(--brand-700); white-space: nowrap; }
[data-theme="dark"] .dest-price { color: var(--brand-300); }
.dest-price sup { font-size: .7em; }
.dest-desc { font-size: .82rem; color: var(--text-muted); margin: 0; }

/* ---------- International Banner ---------- */
.intl-banner {
  position: relative; isolation: isolate; overflow: hidden;
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  color: #eaf0ff;
}
.intl-banner-bg { position: absolute; inset: 0; z-index: 0; }
.intl-banner-bg img { width: 100%; height: 100%; object-fit: cover; }
.intl-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(5,10,35,.92) 0%, rgba(10,20,55,.78) 100%);
}
.intl-banner-content { position: relative; z-index: 2; display: grid; gap: 2.5rem; }
@media (min-width: 1024px){ .intl-banner-content { grid-template-columns: 1fr 1fr; align-items: center; } }
.intl-title { color: #fff; font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-top: .75rem; }
.intl-sub { color: #c8d1ee; margin-top: .75rem; font-size: 1rem; }
.intl-btns { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }
.intl-stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: .85rem;
}
@media (min-width: 768px){ .intl-stats { grid-template-columns: repeat(3, 1fr); } }
.intl-stat {
  display: flex; align-items: center; gap: .65rem;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: .75rem; transition: background .2s;
}
.intl-stat:hover { background: rgba(255,255,255,.14); }
.intl-stat span { font-size: 1.6rem; flex-shrink: 0; }
.intl-stat strong { display: block; color: #fff; font-size: .95rem; }
.intl-stat p { font-size: .82rem; color: var(--accent-400); margin: 0; font-weight: 700; }

/* ---------- How It Works ---------- */
.how-it-works { }
.steps-grid {
  display: grid; gap: 1rem;
  grid-template-columns: 1fr;
  align-items: center;
  margin: 1.5rem 0;
}
@media (min-width: 768px){ .steps-grid { grid-template-columns: 1fr auto 1fr auto 1fr; } }
.step-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem 1.25rem;
  box-shadow: var(--shadow-soft); text-align: center;
  transition: transform .25s, box-shadow .25s;
}
.step-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-glass); }
.step-num {
  font-size: 2.5rem; font-weight: 900; color: var(--brand-200);
  font-family: var(--font-display); line-height: 1; margin-bottom: .5rem;
}
[data-theme="dark"] .step-num { color: rgba(91,148,255,.3); }
.step-ico {
  width: 60px; height: 60px; border-radius: 16px;
  background: linear-gradient(135deg, var(--brand-50), #fff);
  border: 1px solid var(--brand-100); display: grid; place-items: center;
  color: var(--brand-600); margin: 0 auto .85rem;
}
[data-theme="dark"] .step-ico { background: rgba(91,148,255,.1); border-color: rgba(91,148,255,.2); }
.step-card h3 { font-size: 1.1rem; margin-bottom: .4rem; }
.step-card p { font-size: .88rem; margin: 0; }
.step-connector {
  font-size: 1.8rem; color: var(--text-muted); text-align: center;
  display: none;
}
@media (min-width: 768px){ .step-connector { display: flex; align-items: center; justify-content: center; } }

.call-help-banner {
  background: linear-gradient(135deg, var(--brand-950), var(--brand-800));
  border-radius: var(--radius-xl); padding: clamp(1.25rem, 2.5vw, 1.75rem) clamp(1.25rem, 3vw, 2rem);
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
  margin-top: 2rem; border: 1px solid rgba(91,148,255,.2);
}
.call-help-text h3 { color: #fff; font-size: clamp(1rem, 1.5vw, 1.3rem); }
.call-help-text p { color: #94a2c8; font-size: .9rem; margin-top: .3rem; }

/* ---------- Airlines ---------- */
.airlines-section { }
.airlines-grid {
  display: flex; flex-wrap: wrap; gap: .5rem;
  justify-content: center; margin-top: 1.5rem;
}
.airline-logo {
  padding: .55rem 1rem; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); font-size: .82rem; font-weight: 700;
  color: var(--text-muted); white-space: nowrap;
  transition: border-color .2s, color .2s;
}
.airline-logo:hover { border-color: var(--brand-300); color: var(--brand-700); }

/* ---------- Why SkyAssist ---------- */
.why-grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  margin-top: 1rem;
}
.why-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  transition: transform .25s, box-shadow .25s;
}
.why-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-glass); }
.why-ico {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  margin-bottom: .85rem;
}
.why-ico.blue { background: #e8f4ff; color: #1d6fa4; }
.why-ico.orange { background: #fff3e0; color: #b85c00; }
.why-ico.green { background: #e6fbf2; color: #067a52; }
.why-ico.purple { background: #f3e8ff; color: #7c3aed; }
.why-ico.teal { background: #e0f7f7; color: #0e7490; }
.why-ico.red { background: #fee2e2; color: #b91c1c; }
[data-theme="dark"] .why-ico.blue { background: rgba(29,111,164,.18); }
[data-theme="dark"] .why-ico.orange { background: rgba(184,92,0,.18); }
[data-theme="dark"] .why-ico.green { background: rgba(6,122,82,.18); }
[data-theme="dark"] .why-ico.purple { background: rgba(124,58,237,.18); }
[data-theme="dark"] .why-ico.teal { background: rgba(14,116,144,.18); }
[data-theme="dark"] .why-ico.red { background: rgba(185,28,28,.18); }
.why-card h3 { font-size: 1.05rem; margin-bottom: .4rem; }
.why-card p { font-size: .88rem; margin: 0; }

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  margin-top: 1rem;
}
.testimonial-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  transition: transform .25s, box-shadow .25s;
}
.testimonial-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-glass); }
.testimonial-stars { color: var(--accent-500); font-size: 1rem; margin-bottom: .75rem; letter-spacing: .05em; }
.testimonial-text { color: var(--text); font-size: .95rem; font-weight: 500; line-height: 1.65; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: .75rem; margin-top: 1.1rem; padding-top: 1.1rem; border-top: 1px solid var(--border); }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  font-weight: 800; font-size: .9rem; color: #fff; flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: .95rem; }
.testimonial-author span { font-size: .8rem; color: var(--text-muted); }

/* ---------- FAQ ---------- */
.faq-grid { display: grid; gap: .65rem; margin-top: 1rem; }
.faq-item {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.faq-question {
  width: 100%; text-align: left; padding: 1.1rem 1.25rem; font-weight: 700;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  cursor: pointer; font-size: .95rem; list-style: none;
}
.faq-question::after { content: "+"; font-size: 1.3rem; font-weight: 800; color: var(--brand-600); transition: transform .25s; }
.faq-item[open] .faq-question::after { transform: rotate(45deg); }
.faq-answer { padding: 0 1.25rem 1.1rem; color: var(--text-muted); font-size: .93rem; }
.faq-answer p { margin: 0; }

/* ---------- CTA / Newsletter Banner ---------- */
.cta-banner {
  position: relative; isolation: isolate; overflow: hidden;
  padding: clamp(3rem, 6vw, 5rem) 0;
  color: #eaf0ff;
}
.cta-banner-bg { position: absolute; inset: 0; z-index: 0; }
.cta-banner-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(8,15,45,.93) 0%, rgba(15,30,70,.82) 100%);
}
.cta-banner-content {
  position: relative; z-index: 2; display: grid; gap: 1.5rem;
  text-align: center; justify-items: center;
}
.cta-banner-text h2 { color: #fff; }
.cta-banner-text p { color: #c8d1ee; max-width: 55ch; margin: .5rem auto 0; }

.newsletter-form {
  display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; width: 100%; max-width: 540px;
}
.newsletter-input-wrap {
  display: flex; align-items: center; gap: .6rem; flex: 1 1 280px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px; padding: .65rem 1rem;
}
.newsletter-input-wrap svg { color: #94a2c8; flex-shrink: 0; }
.newsletter-input-wrap input {
  background: transparent; border: 0; color: #fff; flex: 1; font-size: .95rem;
}
.newsletter-input-wrap input::placeholder { color: #6b7a99; }
.newsletter-legal { font-size: .78rem; color: #6b7a99; }
.newsletter-legal a { color: #94a2c8; text-decoration: underline; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink-900); color: #cdd6e4; }
.footer-inner { display: grid; gap: 2.5rem; padding: 3.5rem 0 2rem; }
@media (min-width: 1024px){ .footer-inner { grid-template-columns: 1fr 2fr; } }
.footer-brand { max-width: 320px; }
.footer-tagline { color: #7a8ab0; font-size: .9rem; margin-top: .75rem; line-height: 1.6; }
.footer-phone { margin-top: 1rem; }
.footer-phone-link {
  display: inline-flex; align-items: center; gap: .5rem; color: var(--accent-400);
  font-weight: 700; font-size: .95rem;
}
.footer-phone-link:hover { color: #fff; }
.footer-links { display: grid; gap: 1.5rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 640px){ .footer-links { grid-template-columns: repeat(4, 1fr); } }
.footer-col h4 { color: #fff; font-size: .9rem; margin-bottom: .75rem; letter-spacing: .04em; }
.footer-col ul { list-style: none; padding: 0; display: grid; gap: .35rem; }
.footer-col a { color: #7a8ab0; font-size: .88rem; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-col p { font-size: .88rem; color: #7a8ab0; line-height: 1.6; }

.footer-social { display: flex; gap: .5rem; margin-top: 1rem; }
.social-link {
  width: 36px; height: 36px; border-radius: 10px; background: #111a36;
  border: 1px solid #1e2a4d; display: grid; place-items: center;
  color: #7a8ab0; transition: color .2s, border-color .2s;
}
.social-link:hover { color: #fff; border-color: #2d3f6d; }

.footer-bottom { border-top: 1px solid #1e2a4d; }
.footer-bottom-inner {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  padding: 1.25rem 0; font-size: .82rem; color: #4e5e7a;
}
.footer-bottom-inner p { margin: 0; color: #4e5e7a; }
.footer-bottom-inner a { color: #6b7a99; }
.footer-bottom-inner a:hover { color: #fff; }
.footer-legal { font-size: .78rem; color: #3a4a6a; max-width: 75ch; }

/* ---------- Mobile Sticky CTA ---------- */
.mobile-cta-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  display: flex; gap: 0;
  box-shadow: 0 -10px 30px -12px rgba(0,0,0,.25);
}
.mobile-cta-btn {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: .5rem;
  padding: 1rem .75rem; font-weight: 700; font-size: .9rem; color: #fff;
}
.search-cta { background: var(--brand-600); }
.search-cta:hover { background: var(--brand-700); color: #fff; }
.call-cta { background: linear-gradient(135deg, #ff4d00, #ff8c00); }
.call-cta:hover { filter: brightness(1.05); color: #fff; }
@media (min-width: 1024px){ .mobile-cta-bar { display: none; } }
body.has-mobile-cta { padding-bottom: 64px; }
@media (min-width: 1024px){ body.has-mobile-cta { padding-bottom: 0; } }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 90;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 1rem 1.1rem; box-shadow: var(--shadow-glass);
  display: none; gap: 1rem; align-items: center; flex-wrap: wrap;
}
.cookie-banner.is-shown { display: flex; }
.cookie-banner p { margin: 0; font-size: .9rem; flex: 1 1 280px; }
@media (min-width: 768px){ .cookie-banner { left: auto; right: 1.5rem; bottom: 5rem; max-width: 520px; } }

/* ---------- Call popup ---------- */
.call-popup {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
}
.call-popup.is-open { display: block; }
.call-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 12, 28, .72);
  backdrop-filter: blur(2px);
}
.call-popup-dialog {
  position: relative;
  z-index: 1;
  width: min(92vw, 460px);
  margin: 16vh auto 0;
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glass);
  padding: 1.4rem 1.25rem 1.25rem;
  text-align: center;
}
.call-popup-dialog h3 {
  margin-bottom: .45rem;
  font-size: 1.28rem;
}
.call-popup-dialog p {
  margin-bottom: 1rem;
}
.call-popup-ico {
  display: inline-grid; place-items: center;
  width: 60px; height: 60px; margin: 0 auto .85rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,96,0,.14), rgba(255,58,0,.14));
  color: var(--fire-500);
}
.call-popup-call { margin-bottom: .6rem; }
.call-popup-dismiss {
  display: inline-block; margin: 0 auto;
  background: none; border: 0; cursor: pointer;
  color: var(--text-muted); font-size: .9rem; font-weight: 600;
  text-decoration: underline; padding: .35rem .5rem;
}
.call-popup-dismiss:hover { color: var(--text); }
.call-popup-note {
  margin: .6rem 0 0 !important;
  font-size: .78rem; color: var(--text-muted);
}
.call-popup-close {
  position: absolute;
  top: .45rem;
  right: .6rem;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  color: var(--text);
  font-size: 1.25rem;
  line-height: 1;
}

/* ---------- Legacy compare / flight table ---------- */
.compare-toolbar {
  display: grid; gap: .75rem; padding: 1rem; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
}
@media (min-width: 768px){ .compare-toolbar { grid-template-columns: 1fr auto; align-items: center; } }
.sort-row { display: flex; flex-wrap: wrap; gap: .4rem; }
.sort-btn {
  padding: .45rem .75rem; border-radius: 999px; border: 1px solid var(--border);
  background: var(--bg-alt); font-weight: 600; font-size: .83rem; color: var(--text-muted);
}
.sort-btn.is-active { background: var(--brand-600); color: #fff; border-color: var(--brand-600); }

.flight-list { display: grid; gap: .85rem; margin-top: 1rem; }
.flight-row {
  display: grid; gap: .85rem; padding: 1rem; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius-lg); align-items: center;
}
@media (min-width: 768px){ .flight-row { grid-template-columns: 160px 1fr 1fr 200px; } }
.flight-airline { display: flex; align-items: center; gap: .75rem; }
.airline-logo-sq {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: var(--bg-alt); border: 1px solid var(--border); font-weight: 800; color: var(--brand-700);
}
.flight-route { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.flight-time { font-size: 1.1rem; font-weight: 800; }
.flight-air { font-size: .78rem; color: var(--text-muted); }
.flight-line { flex: 1; height: 2px; background: linear-gradient(90deg, var(--brand-300), var(--accent-400)); border-radius: 2px; position: relative; }
.flight-line::before, .flight-line::after { content: ""; position: absolute; top: -3px; width: 8px; height: 8px; border-radius: 50%; }
.flight-line::before { left: 0; background: var(--brand-500); }
.flight-line::after { right: 0; background: var(--accent-500); }
.flight-stops { text-align: center; font-size: .8rem; color: var(--text-muted); margin-top: .25rem; }
.flight-meta { display: flex; flex-wrap: wrap; gap: .5rem .85rem; font-size: .83rem; color: var(--text-muted); }
.flight-meta b { color: var(--text); }
.flight-cta { display: grid; gap: .3rem; text-align: right; }
.flight-cta .price { font-size: 1.4rem; font-weight: 900; color: var(--brand-700); }
[data-theme="dark"] .flight-cta .price { color: var(--brand-200); }
.flight-cta .small { font-size: .75rem; color: var(--text-muted); }

/* ---------- Grid utilities ---------- */
.grid { display: grid; gap: 1rem; }
.grid-4 { grid-template-columns: 1fr; }
@media (min-width: 640px){ .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px){ .grid-4 { grid-template-columns: repeat(4, 1fr); } }

/* ---------- Misc utilities ---------- */
.text-muted { color: var(--text-muted); }
.mt-2 { margin-top: .5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.hidden { display: none; }
.visually-hidden { position: absolute; left: -9999px; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative; padding: clamp(3rem, 6vw, 5rem) 0 clamp(2.5rem, 5vw, 4rem);
  background:
    radial-gradient(800px 400px at 10% -20%, rgba(91,148,255,.28), transparent 60%),
    radial-gradient(600px 350px at 110% 20%, rgba(255,159,28,.15), transparent 60%),
    linear-gradient(180deg, #0B1F4E 0%, #0a1024 100%);
  color: #eaf0ff; overflow: hidden;
}
.page-hero h1 { color: #fff; }
.page-hero .lede { color: #c8d1ee; }

/* ---------- Newsletter (inner pages) ---------- */
.newsletter {
  background: linear-gradient(135deg, #14224d, #0a1024);
  color: #eaf0ff; border-radius: var(--radius-xl); padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid #1c2a55;
}
.newsletter h2 { color: #fff; }
.newsletter p { color: #c8d1ee; }
.newsletter form { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.newsletter input {
  flex: 1 1 240px; padding: .9rem 1rem; border-radius: 999px;
  border: 1px solid #2a3a73; background: rgba(255,255,255,.06); color: #fff;
}
.newsletter input::placeholder { color: #94a2c8; }

/* =========================================================
   Inner-page layout + footer (about, contact, blog, legal)
   These pages use .footer-grid / .card / .grid-2 / .grid-3 /
   .breadcrumb / .prose / .mobile-cta which were previously
   unstyled. Definitions below restore a consistent layout.
   ========================================================= */

/* ---------- Footer grid (inner + legal pages) ---------- */
.site-footer .footer-grid {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: 1fr;
  padding: 3.25rem 0 1.75rem;
}
@media (min-width: 640px){
  .site-footer .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px){
  .site-footer .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.25rem; }
}
.site-footer .footer-grid h4 {
  color: #fff; font-size: .9rem; margin-bottom: .75rem;
  letter-spacing: .04em; text-transform: uppercase;
}
.site-footer .footer-grid a { color: #9bacd1; font-size: .9rem; transition: color .2s; }
.site-footer .footer-grid a:hover { color: #fff; }
.site-footer .footer-grid p { font-size: .9rem; line-height: 1.6; }
.site-footer .footer-grid .brand { display: inline-flex; align-items: center; gap: .5rem; font-weight: 800; }
.site-footer .footer-grid .btn-accent { margin-top: .25rem; }

/* Footer bottom bar shared by inner + legal pages.
   Scoped to `.footer-grid + .footer-bottom` so the homepage
   footer (which nests .footer-bottom-inner) is not affected. */
.site-footer .footer-grid + .footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
  margin-top: 1rem;
  padding: 1.1rem 0; font-size: .85rem; color: #7a8ab0;
}
.site-footer .footer-grid + .footer-bottom span { color: #7a8ab0; }
.payment-badges { display: flex; gap: .4rem; flex-wrap: wrap; }
.payment-badges .pay {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .3rem .55rem; border-radius: 7px;
  background: #111a36; border: 1px solid #1e2a4d;
  color: #c7d2e8; font-size: .72rem; font-weight: 700; letter-spacing: .03em;
}

/* ---------- Breadcrumb (inner pages) ---------- */
.breadcrumb { font-size: .85rem; color: #c8d1ee; margin-bottom: .75rem; }
.breadcrumb a { color: #c8d1ee; text-decoration: none; }
.breadcrumb a:hover { color: #fff; text-decoration: underline; }
.page-hero .breadcrumb span { color: #9bb6ff; }

/* ---------- Generic content grids ---------- */
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
@media (min-width: 768px){
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- Card (content pages) ---------- */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
a.card { display: block; transition: transform .2s, box-shadow .2s, border-color .2s; }
a.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-glass); border-color: var(--brand-300); }
.card > .body { padding: 1.1rem 1.2rem 1.25rem; display: grid; gap: .4rem; }
.card b { color: var(--text); font-family: var(--font-display); }
.card .meta { font-size: .85rem; color: var(--text-muted); margin: 0; }
.card .price { font-weight: 900; color: var(--brand-700); }
[data-theme="dark"] .card .price { color: var(--brand-200); }
.card p { margin: 0; font-size: .92rem; }
.card a { color: var(--brand-600); font-weight: 700; }
.card a:hover { color: var(--fire-500); }

/* ---------- Prose (legal + about copy) ---------- */
.prose { max-width: 75ch; }
.prose h2 { font-size: clamp(1.25rem, 2.4vw, 1.6rem); margin: 1.75rem 0 .6rem; }
.prose h3 { margin: 1.4rem 0 .5rem; }
.prose p { margin: 0 0 1rem; color: var(--text); line-height: 1.75; }
.prose ul { margin: 0 0 1rem; padding-left: 1.25rem; display: grid; gap: .4rem; }
.prose li { color: var(--text); line-height: 1.65; }
.prose a { color: var(--brand-600); font-weight: 600; text-decoration: underline; }
.prose a:hover { color: var(--fire-500); }

/* ---------- Inner-page mobile sticky CTA (.mobile-cta) ---------- */
.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  display: flex; gap: 0;
  box-shadow: 0 -10px 30px -12px rgba(0,0,0,.25);
}
.mobile-cta .btn {
  flex: 1; border-radius: 0; padding: 1rem .75rem; font-size: .92rem;
}
@media (min-width: 1024px){ .mobile-cta { display: none; } }

/* Ensure footer/content clears the fixed cookie banner + mobile CTA */
@media (max-width: 1023px){
  body.has-mobile-cta .site-footer { margin-bottom: 0; }
}
