/* ============================================================
   Termik Buluşması — Yamaç Paraşütü Festivali
   Art direction: thermal-flight editorial
   Type: Playfair Display (display/italic) · Space Grotesk (labels/altitude readouts) · Manrope (body)
   Palette: bg #FBF6FF · ink #1A0E2B · sunset magenta #D946EF · sky cyan #22D3EE · thermal gold #F5B911
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500;1,600;1,700&family=Space+Grotesk:wght@400;500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #FBF6FF;
  --surface: #FFFFFF;
  --surface-2: #F4EAFB;
  --surface-3: #EFE2FA;
  --ink: #1A0E2B;
  --ink-soft: #4a3a63;
  --accent: #D946EF;
  --accent-2: #22D3EE;
  --accent-deep: #9d1bb0;
  --accent-cyan-deep: #0d7d8f;
  --line: rgba(26,14,43,0.11);
  --line-strong: rgba(26,14,43,0.20);
  --gold: #F5B911;
  --thermal: linear-gradient(135deg, #F5B911 0%, #D946EF 55%, #22D3EE 100%);
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-ui: "Space Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --header-h: 76px;
  interpolate-size: allow-keywords;
}

* { box-sizing: border-box; }
html, body { margin: 0; overflow-x: hidden; max-width: 100vw; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.66;
  font-size: clamp(16px, 1.05vw, 17.5px);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; }
h4 { font-family: var(--font-ui); font-weight: 700; }
.eyebrow, .logo, .nav-cta, .btn { font-family: var(--font-ui); font-weight: 700; }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.06; margin: 0 0 .5em; letter-spacing: -0.018em; }
h1 { font-size: clamp(2rem, 6vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 4.4vw, 3.4rem); line-height: 1.02; }
h3 { font-size: clamp(1.25rem, 2vw, 1.7rem); }
/* italic accent word inside display headings */
h1 i, h1 em, h2 i, h2 em, h3 i, h3 em { font-style: italic; font-weight: 500; color: var(--accent-deep); }
p { margin: 0 0 1em; }
a { color: var(--accent-deep); text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
strong { font-weight: 700; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding-left: clamp(16px, 3.5vw, 40px);
  padding-right: clamp(16px, 3.5vw, 40px);
}
section { padding: clamp(56px, 8vw, 110px) 0; position: relative; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .74rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent-deep); margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--accent); border-radius: 2px; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.28rem); color: var(--ink-soft); max-width: 60ch; }
.word-safe { overflow-wrap: anywhere; word-break: break-word; }

/* skip link */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 2000;
  background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible,
textarea:focus-visible, summary:focus-visible {
  outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 4px;
}

/* ---------------- Header ---------------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1080;
  height: var(--header-h);
  background: rgba(253, 247, 255, 0.92);
  backdrop-filter: saturate(1.3);
  border-bottom: 1px solid transparent;
  transition: height 240ms ease, background 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}
.site-header.is-scrolled {
  height: 64px;
  background: rgba(253, 247, 255, 0.98);
  box-shadow: 0 8px 24px -16px rgba(29,16,48,0.4);
  border-bottom-color: var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; gap: 16px; }
.logo { display: inline-flex; align-items: center; gap: 10px; font-size: 1.12rem; color: var(--ink); letter-spacing: -0.02em; }
.logo svg { width: 30px; height: 30px; flex: none; }
.logo b { color: var(--accent-deep); }

.nav-desktop { display: flex; align-items: center; gap: clamp(14px, 2vw, 30px); }
.nav-desktop a { position: relative; color: var(--ink); font-weight: 600; font-size: .96rem; padding: 6px 2px; }
.nav-desktop a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px;
  background: var(--accent); border-radius: 2px; transition: right 220ms ease;
}
.nav-desktop a:not(.nav-cta):hover::after,
.nav-desktop a:not(.nav-cta).is-active::after { right: 0; }
.nav-desktop a:not(.nav-cta):hover { color: var(--accent-deep); }
.nav-desktop a.is-active { color: var(--accent-deep); }

.nav-cta {
  background: var(--ink); color: var(--surface) !important;
  padding: 10px 20px; border-radius: 999px; font-weight: 800;
  transition: background 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-cta:hover, .nav-cta:focus-visible {
  background: var(--accent); color: #fff !important;
  transform: translateY(-2px); box-shadow: 0 10px 22px -12px var(--accent);
}

.nav-toggle {
  display: none; position: relative; z-index: 1100;
  width: 46px; height: 46px; border: 1px solid var(--line-strong);
  background: var(--surface); border-radius: 12px; cursor: pointer; padding: 0;
}
.nav-toggle span {
  position: absolute; left: 11px; right: 11px; height: 2.4px; background: var(--ink);
  border-radius: 2px; transition: transform 260ms ease, opacity 200ms ease; }
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 29px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------------- Drawer ---------------- */
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 1050;
  width: min(360px, 92vw); background: var(--surface);
  transform: translateX(100%); transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  padding: calc(var(--header-h) + 20px) 26px 30px; display: flex; flex-direction: column; gap: 6px;
  box-shadow: -20px 0 50px -30px rgba(29,16,48,0.5);
}
.drawer.is-open { transform: translateX(0); }
.drawer a { color: var(--ink); font-weight: 700; font-size: 1.12rem; padding: 14px 6px; border-bottom: 1px solid var(--line); }
.drawer a:hover { color: var(--accent-deep); }
.drawer a.nav-cta, .drawer-cta {
  margin-top: 18px; text-align: center; background: var(--accent); color: #fff !important;
  border: none; border-radius: 999px; padding: 15px; }
.drawer a.nav-cta:hover, .drawer .drawer-cta:hover { background: var(--ink); color: #fff !important; }
.drawer-backdrop {
  position: fixed; inset: 0; z-index: 1040; background: rgba(29,16,48,0.55);
  opacity: 0; visibility: hidden; transition: opacity 240ms ease, visibility 240ms ease; }
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 28px; border-radius: 999px; font-size: 1rem; cursor: pointer;
  border: 2px solid transparent; transition: transform 200ms ease, background 200ms ease, color 200ms ease, box-shadow 200ms ease;
  text-align: center;
}
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 14px 30px -16px var(--accent); }
.btn-primary:hover, .btn-primary:focus-visible { background: var(--ink); color: #fff; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover, .btn-ghost:focus-visible { background: var(--surface); color: var(--accent-deep); border-color: var(--accent); transform: translateY(-2px); }
.btn-cyan { background: var(--accent-2); color: #06333c; }
.btn-cyan:hover, .btn-cyan:focus-visible { background: var(--ink); color: #fff; transform: translateY(-2px); }
.btn .arw { transition: transform 220ms ease; }
.btn:hover .arw { transform: translateX(4px); }

/* ---------------- Hero (cinematic photo) ---------------- */
.hero {
  position: relative; min-height: 92vh; min-height: 92svh;
  display: flex; align-items: flex-end;
  padding-top: calc(var(--header-h) + 40px); padding-bottom: clamp(46px, 7vw, 96px);
  overflow: hidden; isolation: isolate;
}
.hero-media { position: absolute; inset: 0; z-index: -2; overflow: hidden; background: #120a1f; }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%;
  transform: scale(1.06);
  animation: heroKen 22s ease-in-out infinite alternate;
}
@keyframes heroKen {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to   { transform: scale(1.16) translate3d(-1.6%, -1.4%, 0); }
}
.hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(14,7,26,.34) 0%, rgba(14,7,26,.12) 26%, rgba(14,7,26,.54) 66%, rgba(14,7,26,.88) 100%),
    linear-gradient(90deg, rgba(14,7,26,.66) 0%, rgba(14,7,26,.20) 52%, rgba(14,7,26,0) 80%);
}

.hero-content { position: relative; z-index: 2; max-width: 900px; }
.hero .eyebrow {
  background: rgba(255,255,255,.13); padding: 8px 15px; border-radius: 999px;
  color: #fff; backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,.28);
}
.hero .eyebrow::before { background: var(--accent-2); }
.hero h1 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-weight: 600; letter-spacing: -0.012em; line-height: 1.05;
  color: #fff; text-shadow: 0 2px 40px rgba(6,3,14,.55);
  font-size: clamp(2.1rem, 7.4vw, 4.7rem); margin-bottom: .3em;
}
.hero h1 .w { display: inline-block; white-space: nowrap; }
.hero h1 i, .hero h1 .hl i { font-style: italic; color: var(--accent-2); font-weight: 500; }
.hero-sub {
  font-size: clamp(1.06rem, 1.7vw, 1.38rem); color: rgba(255,255,255,.9);
  max-width: 50ch; font-weight: 400; text-shadow: 0 1px 18px rgba(6,3,14,.5);
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero .btn-ghost { color: #fff; border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.06); }
.hero .btn-ghost:hover, .hero .btn-ghost:focus-visible { background: #fff; color: var(--accent-deep); border-color: #fff; }

.hero-stats {
  display: flex; flex-wrap: wrap; gap: 16px 34px; margin-top: 34px;
  padding-top: 22px; border-top: 1px solid rgba(255,255,255,.2);
}
.hero-stats > div { display: flex; flex-direction: column; line-height: 1.12; }
.hero-stats b {
  font-family: "Playfair Display", Georgia, serif; font-weight: 600;
  font-size: clamp(1.45rem, 3vw, 2rem); color: #fff; letter-spacing: -0.01em;
}
.hero-stats span { font-size: .72rem; letter-spacing: .13em; text-transform: uppercase; color: rgba(255,255,255,.74); margin-top: 5px; }

/* word fade-up */
.hero h1 .w { opacity: 0; transform: translateY(26px); animation: wordUp .8s cubic-bezier(.2,.7,.2,1) forwards; animation-delay: calc(var(--i) * 120ms + 250ms); }
@keyframes wordUp { to { opacity: 1; transform: none; } }
html.no-js .hero h1 .w { opacity: 1; transform: none; animation: none; }

@media (prefers-reduced-motion: reduce) {
  .hero-media img { animation: none; transform: scale(1.03); }
  .hero h1 .w { animation: none; opacity: 1; transform: none; }
}

/* stat counters band under hero */
.stats-band { background: var(--ink); color: #fff; }
.stats-band .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.stat { text-align: center; }
.stat .num { font-family: var(--font-ui); font-weight: 800; font-size: clamp(1.9rem, 4vw, 3rem); color: var(--accent-2); line-height: 1; font-variant-numeric: tabular-nums; }
.stat .lbl { font-size: .82rem; color: #cbb8e0; margin-top: 8px; letter-spacing: .04em; text-transform: uppercase; }

/* ---------------- Date rhythm strip ---------------- */
.dayrhythm { background: linear-gradient(90deg, var(--accent) 0%, var(--accent-2) 100%); color: #fff; padding: 0; }
.dayrhythm .container { padding-top: 22px; padding-bottom: 22px; }
.days { display: flex; flex-wrap: wrap; gap: 12px; align-items: stretch; justify-content: center; }
.day-chip {
  display: flex; flex-direction: column; gap: 2px; background: rgba(255,255,255,.16);
  border: 1.5px solid rgba(255,255,255,.4); border-radius: 14px; padding: 12px 20px; min-width: 130px;
  transition: transform 240ms ease, background 240ms ease; }
.day-chip .d-date { font-family: var(--font-ui); font-weight: 800; font-size: 1.15rem; }
.day-chip .d-name { font-size: .8rem; opacity: .92; }
.day-chip.active { background: #fff; color: var(--accent-deep); transform: scale(1.08); box-shadow: 0 16px 30px -18px rgba(0,0,0,.5); border-color: #fff; }
.day-chip.active .d-name { opacity: 1; }

/* ---------------- Timeline (takvim) ---------------- */
.timeline { position: relative; margin-top: 40px; }
.tl-day { margin-bottom: 40px; }
.tl-day-head { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; margin-bottom: 18px; padding-bottom: 12px; border-bottom: 2px dashed var(--line-strong); }
.tl-day-head .badge {
  display: inline-flex; align-items: center; gap: 8px; background: var(--accent); color: #fff;
  padding: 6px 16px; border-radius: 999px; font-family: var(--font-ui); font-weight: 800; font-size: .92rem; }
.tl-day-head .badge.cyan { background: var(--accent-2); color: #06333c; }
.tl-day-head .badge.deep { background: var(--accent-deep); }
.tl-day-head h3 { margin: 0; }
.tl-day-head .d-sub { color: var(--ink-soft); font-size: .95rem; }
.tl-rows { display: grid; gap: 12px; }
.tl-row {
  display: grid; grid-template-columns: 96px 1fr; gap: 18px; align-items: start;
  background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 16px 20px;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease; }
.tl-row:hover { transform: translateY(-3px); box-shadow: 0 18px 34px -22px rgba(217,70,239,.45); border-color: var(--accent); }
.tl-row .time { font-family: var(--font-ui); font-weight: 800; color: var(--accent-deep); font-variant-numeric: tabular-nums; }
.tl-row .ev h4 { margin: 0 0 4px; font-size: 1.06rem; }
.tl-row .ev p { margin: 0; color: var(--ink-soft); font-size: .93rem; }
.tl-row .tag { display: inline-block; margin-top: 8px; font-size: .72rem; letter-spacing: .04em; text-transform: uppercase; color: var(--accent-2); font-weight: 700; }

/* ---------------- Section heading ---------------- */
.sec-head { max-width: 62ch; margin-bottom: clamp(28px, 4vw, 48px); }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------------- Cards grid (etkinlikler) ---------------- */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 18px; overflow: hidden;
  display: flex; flex-direction: column; min-width: 0;
  transition: transform 260ms cubic-bezier(.2,.7,.2,1), box-shadow 260ms ease, border-color 260ms ease; }
.card:hover { transform: translateY(-6px); box-shadow: 0 26px 48px -28px rgba(217,70,239,.5); border-color: var(--accent); }
.card .thumb { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--surface-2); }
.card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms ease; }
.card:hover .thumb img { transform: scale(1.06); }
.card .thumb .ribbon {
  position: absolute; top: 14px; left: 14px; background: var(--ink); color: #fff;
  font-family: var(--font-ui); font-weight: 800; font-size: .72rem; padding: 5px 12px; border-radius: 999px; }
.card-body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card-body .ico {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: var(--surface-2); color: var(--accent-deep); margin-bottom: 4px; }
.card-body .ico svg { width: 24px; height: 24px; }
.card-body h3 { margin: 0; font-size: 1.2rem; }
.card-body p { margin: 0; color: var(--ink-soft); font-size: .95rem; }
.card-body .more { margin-top: auto; padding-top: 8px; font-weight: 700; color: var(--accent-deep); font-size: .9rem; display: inline-flex; align-items: center; gap: 6px; }

/* ---------------- Pricing (kayit) ---------------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.price {
  background: var(--surface); border: 1px solid var(--line); border-radius: 20px; padding: 30px 26px;
  display: flex; flex-direction: column; gap: 14px; position: relative;
  transition: transform 260ms ease, box-shadow 260ms ease; }
.price:hover { transform: translateY(-6px); box-shadow: 0 26px 50px -30px rgba(217,70,239,.5); }
.price.featured { border: 2px solid var(--accent); box-shadow: 0 20px 44px -26px rgba(217,70,239,.55); }
.price .pill { position: absolute; top: -13px; left: 26px; background: var(--accent); color: #fff; font-family: var(--font-ui); font-weight: 800; font-size: .72rem; padding: 6px 14px; border-radius: 999px; }
.price h3 { margin: 0; font-size: 1.35rem; }
.price .amount { font-family: var(--font-ui); font-weight: 800; font-size: clamp(2rem, 4vw, 2.7rem); color: var(--ink); line-height: 1; }
.price .amount small { font-size: .95rem; color: var(--ink-soft); font-weight: 600; }
.price ul { list-style: none; margin: 6px 0 0; padding: 0; display: grid; gap: 10px; }
.price li { display: grid; grid-template-columns: 20px 1fr; gap: 10px; align-items: start; font-size: .93rem; color: var(--ink-soft); }
.price li svg { width: 18px; height: 18px; margin-top: 3px; color: var(--accent); }
.price li.no { color: #9a8ab0; }
.price li.no svg { color: #c4b4d6; }
.price .btn { margin-top: auto; }
.price-note { text-align: center; color: var(--ink-soft); font-size: .86rem; margin-top: 22px; }

/* ---------------- Kadro (pilots) ---------------- */
.pilot-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pilot { background: var(--surface); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; transition: transform 260ms ease, box-shadow 260ms ease; }
.pilot:hover { transform: translateY(-6px); box-shadow: 0 24px 46px -28px rgba(34,211,238,.5); }
.pilot .ph { aspect-ratio: 1/1; overflow: hidden; background: var(--surface-2); }
.pilot .ph img { width: 100%; height: 100%; object-fit: cover; }
.pilot .pinfo { padding: 18px 20px; }
.pilot .pinfo h3 { margin: 0 0 2px; font-size: 1.12rem; }
.pilot .role { color: var(--accent-deep); font-weight: 700; font-size: .85rem; }
.pilot .pinfo p { margin: 8px 0 0; color: var(--ink-soft); font-size: .9rem; }
.pilot .flags { margin-top: 10px; display: flex; gap: 8px; flex-wrap: wrap; }
.pilot .flag { font-size: .72rem; background: var(--surface-2); color: var(--accent-deep); padding: 4px 10px; border-radius: 999px; font-weight: 700; }

/* ---------------- Band / manifesto ---------------- */
.band { background: var(--ink); color: #fff; overflow: hidden; }
.band h2 { color: #fff; }
.band .quote { font-size: clamp(1.5rem, 3.4vw, 2.6rem); font-style: italic; font-weight: 800; font-family: var(--font-ui); max-width: 20ch; line-height: 1.2; }
.band .quote .hl { color: var(--accent-2); }
.band p { color: #d5c6ea; }

/* ---------------- Process ---------------- */
.steps { display: grid; gap: 16px; margin-top: 30px; }
.step { display: grid; grid-template-columns: 64px 1fr; gap: 18px; align-items: start; background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 20px 22px; }
.step .n { width: 52px; height: 52px; border-radius: 14px; background: var(--accent); color: #fff; display: grid; place-items: center; font-family: var(--font-ui); font-weight: 800; font-size: 1.3rem; }
.step .n.cyan { background: var(--accent-2); color: #06333c; }
.step h4 { margin: 0 0 4px; }
.step p { margin: 0; color: var(--ink-soft); font-size: .93rem; }
.step .when { display: inline-block; margin-top: 6px; font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--accent-deep); }

/* ---------------- Testimonials ---------------- */
.ts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.ts { background: var(--surface); border: 1px solid var(--line); border-radius: 18px; padding: 24px; display: flex; flex-direction: column; gap: 14px; }
.ts .stars { color: var(--gold); letter-spacing: 2px; font-size: .9rem; }
.ts blockquote { margin: 0; font-size: .98rem; color: var(--ink); line-height: 1.6; }
.ts .who { margin-top: auto; display: flex; align-items: center; gap: 12px; }
.ts .who .av { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--accent-2)); display: grid; place-items: center; color: #fff; font-family: var(--font-ui); font-weight: 800; }
.ts .who .meta strong { display: block; font-size: .92rem; }
.ts .who .meta span { font-size: .8rem; color: var(--ink-soft); }

/* ---------------- FAQ ---------------- */
.faq { max-width: 820px; margin: 30px auto 0; display: grid; gap: 12px; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.faq-item summary { list-style: none; cursor: pointer; padding: 20px 24px; font-family: var(--font-ui); font-weight: 800; font-size: 1.03rem; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .ic { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--surface-2); color: var(--accent-deep); display: grid; place-items: center; transition: transform 300ms ease, background 300ms ease, color 300ms ease; font-size: 1.2rem; line-height: 1; }
.faq-item[open] summary .ic { transform: rotate(45deg); background: var(--accent); color: #fff; }
.faq-item > .answer { height: 0; padding: 0 24px; overflow: hidden; transition: height 360ms cubic-bezier(.4,0,.2,1), padding-block-end 360ms cubic-bezier(.4,0,.2,1); }
.faq-item[open] > .answer { height: auto; padding-block-end: 22px; }
.faq-item .answer p { margin: 0; color: var(--ink-soft); }
@media (prefers-reduced-motion: reduce) { .faq-item > .answer { transition: none; } }

/* ---------------- Contact cards ---------------- */
.chan-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.chan { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 22px; display: flex; flex-direction: column; gap: 6px; transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease; }
.chan:hover { transform: translateY(-3px); box-shadow: 0 18px 34px -22px rgba(217,70,239,.4); border-color: var(--accent); }
.chan .ci { width: 48px; height: 48px; border-radius: 12px; background: var(--surface-2); color: var(--accent-deep); display: grid; place-items: center; margin-bottom: 6px; }
.chan .ci svg { width: 24px; height: 24px; }
.chan h3 { margin: 0; font-size: 1.05rem; }
.chan a, .chan .val { color: var(--ink); font-weight: 700; font-size: 1rem; word-break: break-word; }
.chan a:hover { color: var(--accent-deep); }
.chan small { color: var(--ink-soft); font-size: .82rem; }

/* ---------------- Forms ---------------- */
.form-wrap { background: var(--surface); border: 1px solid var(--line); border-radius: 20px; padding: clamp(24px, 4vw, 40px); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 700; font-size: .9rem; }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 1rem; color: var(--ink); background: var(--bg);
  border: 1.5px solid var(--line-strong); border-radius: 12px; padding: 13px 15px; width: 100%;
  transition: border-color 200ms ease, box-shadow 200ms ease; }
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(217,70,239,.16); }
.field.kvkk { flex-direction: row; align-items: flex-start; gap: 10px; }
.field.kvkk label { font-weight: 500; font-size: .88rem; color: var(--ink-soft); }
.field input[type="checkbox"] {
  appearance: auto; -webkit-appearance: auto;
  width: 18px; height: 18px; min-width: 18px; min-height: 18px;
  padding: 0; border: 0; margin: 3px 0 0; accent-color: var(--accent); }
.form-wrap .btn { margin-top: 6px; }

/* ---------------- Tables ---------------- */
.table-scroll {
  display: block; width: 100%; max-width: 100%; min-width: 0;
  overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 18px 0;
  border: 1px solid var(--line); border-radius: 10px; }
.table-scroll > table { margin: 0 !important; min-width: 480px; width: 100%; border-collapse: collapse; }
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }
table th, table td { text-align: left; padding: 13px 16px; border-bottom: 1px solid var(--line); font-size: .93rem; }
table th { background: var(--surface-2); font-family: var(--font-ui); font-weight: 800; color: var(--ink); }
table tr:last-child td { border-bottom: none; }
table td.today { color: var(--accent-deep); font-weight: 700; }

/* ---------------- Prose (legal) ---------------- */
.prose { max-width: 800px; }
.prose h2 { margin-top: 1.6em; }
.prose h3 { margin-top: 1.3em; }
.prose ul { padding-left: 1.2em; color: var(--ink-soft); }
.prose li { margin-bottom: .4em; }
.page-hero { padding-top: calc(var(--header-h) + 60px); padding-bottom: 40px; background: linear-gradient(180deg, var(--surface-2), var(--bg)); }
.page-hero .eyebrow { color: var(--accent-deep); }

/* legal page forward CTA (keeps legal pages from being dead-ends) */
.legal-cta {
  max-width: 800px; margin: clamp(20px, 4vw, 44px) auto 0;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px;
  background: var(--surface-2); border: 1px solid var(--line); border-radius: 18px;
  padding: clamp(22px, 3.4vw, 32px);
}
.legal-cta p { margin: 0; font-weight: 700; color: var(--ink); font-size: clamp(1rem, 1.4vw, 1.12rem); max-width: 46ch; }
.legal-cta .btn { flex: none; }
@media (max-width: 560px) { .legal-cta { flex-direction: column; align-items: flex-start; } .legal-cta .btn { align-self: stretch; } }

/* ---------------- Footer ---------------- */
.site-footer { background: var(--ink); color: #d5c6ea; padding: clamp(50px, 7vw, 80px) 0 30px; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 34px; }
.site-footer .logo { color: #fff; margin-bottom: 14px; }
.site-footer .logo b { color: var(--accent-2); }
.site-footer h4 { color: #fff; font-size: .95rem; margin-bottom: 14px; text-transform: uppercase; letter-spacing: .06em; }
.site-footer a { color: #d5c6ea; display: block; padding: 4px 0; font-size: .92rem; }
.site-footer a:hover { color: var(--accent-2); }
.site-footer p { color: #b7a6d0; font-size: .9rem; }
.foot-contact div { margin-bottom: 8px; font-size: .9rem; word-break: break-word; }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 40px; padding-top: 22px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: .82rem; color: #a08fbb; }
.foot-bottom a { display: inline; color: #a08fbb; }

/* ---------------- Cookie banner ---------------- */
.cookie-banner {
  position: fixed; bottom: 16px; left: 16px; right: 16px; max-width: 520px; margin: 0 auto;
  background: var(--surface); border: 1px solid var(--line-strong); border-radius: 16px;
  padding: 20px 22px; box-shadow: 0 24px 60px -24px rgba(29,16,48,.6);
  transform: translateY(140%); opacity: 0; z-index: 9999;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms; }
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
.cookie-banner h4 { margin: 0 0 6px; font-size: 1rem; }
.cookie-banner p { margin: 0 0 14px; font-size: .86rem; color: var(--ink-soft); }
.cookie-banner p a { color: var(--accent-deep); text-decoration: underline; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie-actions button { flex: 1 1 auto; min-height: 44px; padding: 11px 16px; border-radius: 10px; font-family: var(--font-ui); font-weight: 800; font-size: .88rem; cursor: pointer; border: 1.5px solid var(--line-strong); background: var(--surface); color: var(--ink); transition: background 200ms ease, color 200ms ease; }
.cookie-actions button[data-consent="accept"] { background: var(--accent); color: #fff; border-color: var(--accent); }
.cookie-actions button[data-consent="accept"]:hover { background: var(--ink); color: #fff; }
.cookie-actions button:hover { background: var(--surface-2); }
@media (min-width: 720px) { .cookie-banner { left: 24px; right: auto; max-width: 420px; } }

/* cookie settings modal */
.cookie-modal { position: fixed; inset: 0; z-index: 10000; display: none; place-items: center; padding: 20px; background: rgba(29,16,48,.55); }
.cookie-modal.is-open { display: grid; }
.cookie-modal .box { background: var(--surface); border-radius: 18px; max-width: 460px; width: 100%; padding: 28px; }
.cookie-modal h3 { margin-top: 0; }
.toggle-row { display: flex; justify-content: space-between; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.toggle-row:last-of-type { border-bottom: none; }
.toggle-row strong { display: block; font-size: .95rem; }
.toggle-row span { font-size: .82rem; color: var(--ink-soft); }
.switch { position: relative; width: 46px; height: 26px; flex: none; }
.switch input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.switch .track { position: absolute; inset: 0; background: var(--line-strong); border-radius: 999px; transition: background 200ms; }
.switch .track::before { content: ""; position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; background: #fff; border-radius: 50%; transition: transform 200ms; }
.switch input:checked + .track { background: var(--accent); }
.switch input:checked + .track::before { transform: translateX(20px); }
.switch input:disabled + .track { background: var(--accent-2); }

/* ---------------- Reveal ---------------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 600ms cubic-bezier(.2,.7,.2,1), transform 600ms cubic-bezier(.2,.7,.2,1); transition-delay: calc(var(--i, 0) * 80ms); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1 !important; transform: none !important; transition: none !important; } }
html.no-js .reveal { opacity: 1; transform: none; }

/* decorative confetti */
.confetti { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0; }
.confetti i { position: absolute; width: 9px; height: 9px; border-radius: 2px; opacity: .7; animation: fall linear infinite; }
@keyframes fall { 0% { transform: translateY(-20px) rotate(0); } 100% { transform: translateY(120vh) rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .confetti i { animation: none; } .cloud, .para, .sun { animation: none !important; } }

/* mini section decor divider */
.flag-rule { display: flex; gap: 6px; justify-content: center; margin: 0 0 18px; }
.flag-rule i { width: 14px; height: 18px; clip-path: polygon(0 0,100% 0,100% 70%,50% 100%,0 70%); }

/* ---------------- Responsive ---------------- */
@media (max-width: 1024px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: block; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 26px; }
}
@media (max-width: 860px) {
  .grid-3, .price-grid, .pilot-grid, .ts-grid { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .stats-band .container { grid-template-columns: repeat(2, 1fr); gap: 26px; }
  .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  section { padding: clamp(44px, 12vw, 64px) 0; }
  .tl-row { grid-template-columns: 78px 1fr; gap: 12px; padding: 14px 16px; }
  .card-body { padding: 18px; }
  .card-body .ico { width: 40px; height: 40px; }
  .foot-grid { grid-template-columns: 1fr; }
  .day-chip { min-width: 46%; flex: 1 1 46%; }
  .hero { min-height: clamp(520px, 88vh, 760px); }
}
@media (max-width: 400px) {
  h1 { font-size: clamp(1.9rem, 9vw, 2.4rem); }
  .day-chip { min-width: 100%; }
}

.scroll-progress{position:fixed;top:0;left:0;height:3px;width:0;background:var(--accent);z-index:9998;transition:width 80ms linear;pointer-events:none}

/* header-cta-padding-guard v1 */
.nav-desktop a.nav-cta, header a.nav-cta, .site-header a.nav-cta {
  padding: 10px 18px;
}

/* ============================================================
   AWARD-LEVEL UPLIFT — thermal-flight editorial layer
   ============================================================ */
::selection { background: var(--accent); color: #fff; }

/* ---- Eyebrow: aviation tag ---- */
.eyebrow {
  font-family: var(--font-ui); font-weight: 600; font-size: .72rem;
  letter-spacing: .22em; gap: 10px; color: var(--accent-deep);
}
.eyebrow::before { width: 22px; height: 2px; background: var(--accent); }
.eyebrow::after { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--accent-2); box-shadow: 0 0 0 3px rgba(34,211,238,.18); }
.lead { font-family: var(--font-body); font-weight: 400; }

/* ---- Section rhythm: hairline contour dividers between light sections ---- */
section { --sec-pad: clamp(64px, 8.5vw, 128px); padding: var(--sec-pad) 0; }
main > section + section:not(.band):not(.stats-band):not(.dayrhythm)::before {
  content: ""; position: absolute; top: 0; left: clamp(16px, 3.5vw, 40px); right: clamp(16px, 3.5vw, 40px);
  height: 1px; background: linear-gradient(90deg, transparent, var(--line-strong) 18%, var(--line-strong) 82%, transparent);
  pointer-events: none;
}
/* keep divider off when the section paints its own surface bg */
main > section[style*="surface-2"] + section::before,
main > section + section[style*="surface-2"]::before { opacity: .5; }

/* ---- Section head: editorial scale + contour tick ---- */
.sec-head { max-width: 66ch; }
.sec-head h2 { margin-bottom: .28em; }
.sec-head .lead { margin-top: .2em; }
.sec-head:not(.center) { position: relative; }

/* ---- Display headings: tighter, richer ---- */
h2 { letter-spacing: -0.028em; }
h1 { letter-spacing: -0.03em; }

/* ---- Buttons: technical label feel ---- */
.btn { font-weight: 600; letter-spacing: .01em; padding: 15px 30px; }
.btn-primary { box-shadow: 0 16px 34px -18px var(--accent); }
.btn-cyan { color: #06333c; box-shadow: 0 16px 34px -20px rgba(34,211,238,.7); }

/* ---- Stats band: altitude readout ---- */
.stats-band {
  background:
    radial-gradient(120% 140% at 15% -30%, rgba(217,70,239,.32), transparent 55%),
    radial-gradient(120% 140% at 90% 130%, rgba(34,211,238,.26), transparent 55%),
    var(--ink);
  position: relative;
}
.stats-band::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--thermal);
}
.stats-band .stat { position: relative; padding: 4px 6px; }
.stats-band .stat:not(:last-child)::after {
  content: ""; position: absolute; right: -11px; top: 18%; bottom: 18%; width: 1px; background: rgba(255,255,255,.14);
}
.stat .num { font-family: var(--font-ui); font-weight: 700; letter-spacing: -0.02em; }
.stat .lbl { font-family: var(--font-ui); letter-spacing: .1em; font-size: .74rem; }

/* ---- Day rhythm strip ---- */
.dayrhythm { background: var(--ink); position: relative; }
.dayrhythm::before { content: ""; position: absolute; inset: 0; background: var(--thermal); opacity: .16; }
.dayrhythm .container { position: relative; }
.day-chip { backdrop-filter: blur(2px); }
.day-chip .d-date { font-family: var(--font-ui); }
.day-chip .d-name { font-family: var(--font-ui); letter-spacing: .01em; }

/* ---- Timeline: vertical spine + aligned nodes ---- */
.tl-day-head .badge { font-family: var(--font-ui); font-weight: 600; letter-spacing: .02em; box-shadow: 0 8px 20px -12px rgba(217,70,239,.7); }
.tl-day-head h3 { font-size: clamp(1.4rem, 2.6vw, 2rem); }
.tl-day-head .d-sub { font-family: var(--font-ui); font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; color: var(--accent-deep); opacity: .85; }
.tl-row .time { font-family: var(--font-ui); letter-spacing: -0.01em; }
.tl-row .tag { font-family: var(--font-ui); }
@media (min-width: 641px) {
  .tl-rows { position: relative; }
  .tl-rows::before {
    content: ""; position: absolute; left: 19.5px; top: 16px; bottom: 16px; width: 2px; border-radius: 2px;
    background: linear-gradient(180deg, var(--accent), var(--accent-2)); opacity: .3;
  }
  .tl-row { position: relative; padding-left: 44px; }
  .tl-row::before {
    content: ""; position: absolute; left: 14px; top: 22px; width: 12px; height: 12px; border-radius: 50%; z-index: 1;
    background: var(--surface); border: 2.5px solid var(--accent);
    box-shadow: 0 0 0 4px var(--surface); transition: background 240ms ease, border-color 240ms ease;
  }
  .tl-row:hover::before { background: var(--accent); border-color: var(--accent-2); }
}

/* ---- Event cards: canopy-ring icon + editorial title ---- */
.card { border-radius: 20px; }
.card-body h3 { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.02em; }
.card-body .ico {
  width: 50px; height: 50px; border-radius: 14px; color: #fff;
  background: linear-gradient(140deg, var(--accent-deep), var(--accent));
  box-shadow: 0 10px 22px -12px rgba(217,70,239,.7);
}
.card:nth-child(2) .card-body .ico { background: linear-gradient(140deg, var(--accent), var(--accent-2)); }
.card:nth-child(3) .card-body .ico { background: linear-gradient(140deg, var(--accent-cyan-deep), var(--accent-2)); color:#06333c; }
.card .thumb .ribbon { font-family: var(--font-ui); font-weight: 600; letter-spacing: .04em; backdrop-filter: blur(2px); background: rgba(26,14,43,.82); }
.card .thumb::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(26,14,43,.28));
}
.card-body .more { font-family: var(--font-ui); font-weight: 600; }

/* ---- Manifesto band: sky mesh + display quote ---- */
.band { position: relative; }
.band::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(90% 120% at 100% 0%, rgba(34,211,238,.20), transparent 55%),
    radial-gradient(90% 120% at 0% 100%, rgba(217,70,239,.22), transparent 55%);
}
.band > .container { position: relative; z-index: 1; }
.band .quote { font-family: var(--font-display); font-style: italic; font-weight: 500; letter-spacing: -0.02em; max-width: 22ch; }
.band .quote .hl { color: var(--accent-2); font-style: italic; }
.band h2 { color: #fff; }

/* ---- Pricing: thermal-glow featured, readout amount ---- */
.price { border-radius: 22px; }
.price h3 { font-family: var(--font-display); font-weight: 600; }
.price .amount { font-family: var(--font-ui); font-weight: 700; letter-spacing: -0.03em; }
.price .amount small { font-family: var(--font-ui); font-weight: 500; }
.price.featured { position: relative; overflow: hidden; }
.price.featured::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--thermal);
}
.price .pill { font-family: var(--font-ui); font-weight: 600; letter-spacing: .04em; box-shadow: 0 10px 22px -12px rgba(217,70,239,.7); }
.price-note { font-family: var(--font-ui); font-size: .8rem; letter-spacing: .01em; }

/* ---- Pilots: photo depth + credentials ---- */
.pilot { border-radius: 20px; }
.pilot .ph { position: relative; }
.pilot .ph::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(26,14,43,.35)); }
.pilot .pinfo h3 { font-family: var(--font-display); font-weight: 600; }
.pilot .role { font-family: var(--font-ui); font-weight: 600; letter-spacing: .02em; }
.pilot .flag { font-family: var(--font-ui); font-weight: 600; letter-spacing: .02em; }

/* ---- Process steps: connected ladder ---- */
.step { border-radius: 18px; position: relative; }
.step .n { font-family: var(--font-ui); font-weight: 700; box-shadow: 0 12px 24px -14px rgba(217,70,239,.7); }
.step .n.cyan { box-shadow: 0 12px 24px -14px rgba(34,211,238,.7); }
.step h4 { font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; letter-spacing: -0.01em; }
.step .when { font-family: var(--font-ui); }
.step:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -26px rgba(217,70,239,.4); border-color: var(--accent); }
.step { transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease; }

/* ---- Testimonials: editorial quote ---- */
.ts { border-radius: 20px; position: relative; }
.ts::before {
  content: "\201C"; position: absolute; top: 6px; right: 22px; font-family: var(--font-display);
  font-size: 4.6rem; line-height: 1; color: var(--accent); opacity: .16;
}
.ts blockquote { font-family: var(--font-body); font-size: 1rem; }
.ts .who .meta strong { font-family: var(--font-ui); font-weight: 600; }
.ts .who .meta span { font-family: var(--font-ui); font-size: .78rem; letter-spacing: .02em; }
.ts:hover { transform: translateY(-4px); box-shadow: 0 24px 46px -30px rgba(217,70,239,.4); border-color: var(--accent); }
.ts { transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease; }

/* ---- FAQ ---- */
.faq-item summary { font-family: var(--font-display); font-weight: 600; font-size: 1.08rem; letter-spacing: -0.01em; }
.faq-item { border-radius: 16px; transition: border-color 240ms ease, box-shadow 240ms ease; }
.faq-item[open] { border-color: var(--accent); box-shadow: 0 18px 40px -30px rgba(217,70,239,.5); }

/* ---- Contact channel cards ---- */
.chan { border-radius: 18px; }
.chan h3 { font-family: var(--font-display); font-weight: 600; }
.chan .ci { color: #fff; background: linear-gradient(140deg, var(--accent-deep), var(--accent)); }
.chan small { font-family: var(--font-ui); letter-spacing: .01em; }

/* ---- Internal page hero ---- */
.page-hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(120% 120% at 85% -20%, rgba(34,211,238,.16), transparent 50%),
    radial-gradient(120% 130% at 0% 120%, rgba(217,70,239,.14), transparent 55%),
    linear-gradient(180deg, var(--surface-2), var(--bg));
}
.page-hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--line-strong), transparent); }
.page-hero h1 { font-size: clamp(2.2rem, 5.5vw, 3.8rem); }
.page-hero h1 em, .page-hero h1 i { color: var(--accent-deep); }

/* ---- Footer accents ---- */
.site-footer { position: relative; }
.site-footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--thermal); opacity: .9; }
.site-footer h4 { font-family: var(--font-ui); }

/* ---- Forms ---- */
.field label { font-family: var(--font-ui); font-weight: 600; letter-spacing: .01em; }
.form-wrap { border-radius: 22px; }

/* ---- Reveal: buttery stagger, hover-lift already accent-tinted ---- */
.reveal { transition-duration: 720ms; }
@media (min-width: 861px) { .reveal { transition-delay: calc(var(--i, 0) * 90ms); } }

/* ---- Motion safety: decorative layers are static (no animation), so nothing hides content ---- */
html.no-js .reveal { opacity: 1; transform: none; }

/* ---- Small-screen polish: no overflow, comfortable air ---- */
@media (max-width: 860px) {
  .stats-band .stat:not(:last-child)::after { display: none; }
}
@media (max-width: 640px) {
  .tl-day-head { gap: 8px 12px; }
  .sec-head { max-width: 100%; }
}
@media (max-width: 400px) {
  h2 { font-size: clamp(1.7rem, 8.4vw, 2.1rem); }
  .btn { padding: 14px 24px; }
}
