/* ============================================================
   BalonRota — Uçuş Planlayıcı
   Palet: bg #EAF2FB / surface #FFFFFF / ink #13233A
          accent #2E6BE6 / accent-2 #F4B740
   ============================================================ */

:root {
  --bg: #EAF2FB;
  --surface: #FFFFFF;
  --surface-2: #F4F8FE;
  --ink: #13233A;
  --ink-soft: #47597A;
  --ink-faint: #7C8CA8;
  --accent: #2E6BE6;
  --accent-deep: #1E4FB8;
  --accent-2: #F4B740;
  --accent-2-deep: #D89A1A;
  --line: #DCE7F5;
  --line-strong: #C3D4EC;
  --sky-1: #1B2E52;
  --sky-2: #3B62A8;
  --sky-3: #7FA6E0;
  --peach: #F6C79A;
  /* text-safe sunrise bronze — passes ≥3:1 on light for large display accents */
  --gold-ink: #9A5B0A;
  --display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --header-h: 74px;
  --radius: 16px;
  --radius-sm: 11px;
  --radius-lg: 22px;
  --shadow-sm: 0 6px 18px -12px rgba(19, 35, 58, .28);
  --shadow-md: 0 18px 44px -26px rgba(19, 35, 58, .40);
  --shadow-accent: 0 20px 46px -24px rgba(46, 107, 230, .55);
  /* warm sunrise-tinted lift for on-theme hover shadows */
  --shadow-warm: 0 26px 54px -28px rgba(46, 107, 230, .34), 0 10px 26px -18px rgba(244, 183, 64, .40);
  --dawn-glow: radial-gradient(60% 100% at 50% 0%, rgba(244,183,64,.16), transparent 70%);
  interpolate-size: allow-keywords;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  max-width: 100vw;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.62;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.012em;
  margin: 0 0 .5em;
  color: var(--ink);
}

p { margin: 0 0 1em; color: var(--ink-soft); }
a { color: var(--accent); text-decoration: none; }

img { max-width: 100%; height: auto; display: block; }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding-left: clamp(18px, 4vw, 56px);
  padding-right: clamp(18px, 4vw, 56px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--accent-2);
  border-radius: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px; top: 0;
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
  border-radius: 0 0 10px 0;
  z-index: 3000;
}
.skip-link:focus { left: 0; }

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: inherit;
  font-weight: 700;
  font-size: .98rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .2s cubic-bezier(.2,.7,.2,1), background .22s, color .22s, box-shadow .22s;
  text-align: center;
  line-height: 1.1;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-accent);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent-deep);
  color: #fff;
  transform: translateY(-2px);
  /* warm sunrise glow — on-theme micro-effect */
  box-shadow: 0 22px 48px -22px rgba(46,107,230,.6), 0 0 30px -6px rgba(244,183,64,.42);
}
.btn-primary:active { transform: translateY(0); }
.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);
  border-color: var(--accent);
  transform: translateY(-2px);
}
.btn-gold {
  background: var(--accent-2);
  color: var(--ink);
  box-shadow: 0 18px 40px -22px rgba(244, 183, 64, .8);
}
.btn-gold:hover, .btn-gold:focus-visible {
  background: var(--accent-2-deep);
  color: var(--ink);
  transform: translateY(-2px);
}

/* ---------------- Header ---------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1080;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(234, 242, 251, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: background .24s ease, box-shadow .24s ease, height .24s ease, border-color .24s;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 8px 24px -16px rgba(19, 35, 58, .28);
  border-bottom-color: var(--line);
  height: 64px;
}
.header-inner {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding-left: clamp(18px, 4vw, 56px);
  padding-right: clamp(18px, 4vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.18rem;
  color: var(--ink);
  letter-spacing: -.02em;
}
.brand svg { width: 30px; height: 30px; flex-shrink: 0; }
.brand span b { color: var(--accent); }

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-desktop a {
  position: relative;
  padding: 8px 14px;
  font-weight: 600;
  font-size: .96rem;
  color: var(--ink-soft);
  border-radius: 8px;
  transition: color .2s;
}
.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 3px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .24s cubic-bezier(.2,.7,.2,1);
}
.nav-desktop a:hover { color: var(--ink); }
.nav-desktop a:hover::after,
.nav-desktop a.is-active::after { transform: scaleX(1); }
.nav-desktop a.is-active { color: var(--accent); }

.nav-desktop .nav-cta {
  margin-left: 8px;
  background: var(--accent);
  color: #fff;
  padding: 10px 20px;
  border-radius: 999px;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover,
.nav-desktop .nav-cta:focus-visible {
  background: var(--accent-deep);
  color: #fff;
}

.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;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .28s cubic-bezier(.2,.7,.2,1), opacity .2s;
}
.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-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(19, 35, 58, .55);
  opacity: 0;
  visibility: hidden;
  transition: opacity .24s ease, visibility .24s;
  z-index: 1040;
}
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }

.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(340px, 92vw);
  background: var(--surface);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.2,.7,.2,1);
  display: flex;
  flex-direction: column;
  padding: calc(var(--header-h) + 16px) 26px 32px;
  box-shadow: -20px 0 60px -30px rgba(19, 35, 58, .5);
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer a {
  font-weight: 700;
  font-size: 1.12rem;
  color: var(--ink);
  padding: 14px 4px;
  border-bottom: 1px solid var(--line);
  transition: color .2s, padding-left .2s;
}
.drawer a:hover { color: var(--accent); padding-left: 8px; }
.drawer a.is-active { color: var(--accent); }
.drawer .drawer-cta {
  margin-top: 22px;
  background: var(--accent);
  color: #fff !important;
  text-align: center;
  border-radius: 999px;
  border-bottom: 0;
  padding: 15px;
  box-shadow: var(--shadow-accent);
}
.drawer a.drawer-cta:hover { background: var(--accent-deep); color: #fff !important; padding-left: 15px; }

/* ---------------- Main / sections ---------------- */
main { padding-top: var(--header-h); }
section { position: relative; }
.section { padding: clamp(56px, 8vw, 104px) 0; }
.section-tight { padding: clamp(40px, 6vw, 72px) 0; }

.section-head { max-width: 660px; margin-bottom: clamp(38px, 5vw, 60px); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.9rem, 4.8vw, 3rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
}
.section-head p { font-size: 1.08rem; margin-bottom: 0; max-width: 62ch; }
.section-head.center p { margin-left: auto; margin-right: auto; }

/* Editorial italic accent for display headings — warm sunrise bronze, ≥3:1 on light */
.section-head h2 em,
.planner-intro h2 em,
.contact-hero h1 em, .contact-hero h2 em,
.doc h1 em, .doc h2 em { font-style: italic; font-weight: 400; }
.section-head h2 em,
.planner-intro h2 em,
.contact-hero h1 em, .contact-hero h2 em,
.doc h1 em, .doc h2 em { color: var(--gold-ink); }

/* ============================================================
   PHOTO HERO — cinematic full-bleed
   ============================================================ */
.photo-hero {
  position: relative;
  margin-top: calc(var(--header-h) * -1);
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  background: var(--sky-1);
}
.photo-hero__media { position: absolute; inset: 0; z-index: -2; }
.photo-hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.06);
  transform-origin: 60% 45%;
  animation: heroKen 22s ease-in-out 1s infinite alternate;
}
@keyframes heroKen {
  from { transform: scale(1.06) translate(0, 0); }
  to   { transform: scale(1.16) translate(-1.6%, -1.4%); }
}
.photo-hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(9,17,33,.72) 0%, rgba(9,17,33,.38) 42%, rgba(9,17,33,.12) 72%, rgba(9,17,33,.20) 100%),
    linear-gradient(180deg, rgba(9,17,33,.30) 0%, rgba(9,17,33,0) 30%, rgba(9,17,33,.30) 62%, rgba(9,17,33,.86) 100%);
}
.photo-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: calc(var(--header-h) + clamp(40px, 8vh, 90px));
  padding-bottom: clamp(48px, 9vh, 104px);
}
.photo-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.92);
  margin-bottom: 20px;
}
.photo-hero__eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--accent-2);
  border-radius: 2px;
}
.photo-hero__title {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  font-weight: 600;
  color: #fff;
  font-size: clamp(2.4rem, 7vw, 5rem);
  line-height: 1.03;
  letter-spacing: -0.018em;
  margin: 0 0 20px;
  max-width: 16ch;
  text-shadow: 0 2px 30px rgba(6,12,24,.45);
}
.photo-hero__title .word-span { white-space: nowrap; }
.photo-hero__title em {
  font-style: italic;
  font-weight: 500;
  color: var(--accent-2);
}
.photo-hero__sub {
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  color: rgba(255,255,255,.9);
  max-width: 52ch;
  margin: 0 0 30px;
  text-shadow: 0 1px 18px rgba(6,12,24,.4);
}
.photo-hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-hero-ghost {
  background: rgba(255,255,255,.10);
  color: #fff;
  border-color: rgba(255,255,255,.55);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.btn-hero-ghost:hover, .btn-hero-ghost:focus-visible {
  background: rgba(255,255,255,.20);
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
}
.photo-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(22px, 4vw, 52px);
  margin-top: 36px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.2);
  max-width: 620px;
}
.photo-hero__stats b {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.5rem, 3vw, 2.05rem);
  color: #fff;
  line-height: 1;
  margin-bottom: 5px;
}
.photo-hero__stats span {
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.74);
}

/* ---- Planner section (calculator relocated) ---- */
.planner-grid {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.planner-intro { max-width: 520px; }
.planner-intro h2 { font-family: var(--display); font-weight: 500; font-size: clamp(1.8rem, 4vw, 2.7rem); line-height: 1.05; letter-spacing: -.02em; margin-bottom: 16px; }
.planner-intro > p { font-size: 1.06rem; margin-bottom: 4px; }
@media (max-width: 1024px) {
  .planner-grid { grid-template-columns: 1fr; }
  .planner-intro { max-width: none; }
}

/* ============================================================
   HERO — interactive calculator
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(40px, 6vw, 72px) 0 clamp(56px, 8vw, 96px);
}
.hero-sky {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(120% 90% at 78% 8%, rgba(244,183,64,.28), transparent 46%),
    linear-gradient(180deg, #dcebfd 0%, #eaf2fb 44%, #eaf2fb 100%);
}
.hero-sky .sun {
  position: absolute;
  top: 6%; right: 14%;
  width: 190px; height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,183,64,.85) 0%, rgba(244,183,64,.28) 45%, transparent 70%);
  filter: blur(2px);
  animation: sunGlow 9s ease-in-out infinite;
}
@keyframes sunGlow {
  0%, 100% { transform: scale(1); opacity: .85; }
  50% { transform: scale(1.08); opacity: 1; }
}
.hero-sky .drift-balloon {
  position: absolute;
  opacity: .5;
  animation: drift var(--dur, 22s) ease-in-out infinite;
}
.hero-sky .db1 { top: 18%; left: 8%; width: 46px; --dur: 26s; }
.hero-sky .db2 { top: 30%; left: 22%; width: 30px; --dur: 32s; opacity: .35; }
.hero-sky .db3 { top: 12%; left: 40%; width: 24px; --dur: 38s; opacity: .3; }
.hero-sky .db4 { top: 42%; right: 30%; width: 38px; --dur: 30s; opacity: .4; }
@keyframes drift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(18px, -22px); }
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.hero-copy { max-width: 520px; }
.hero-copy h1 {
  font-size: clamp(2.1rem, 6vw, 3.5rem);
  margin-bottom: 18px;
}
.hero-copy h1 .accent { color: var(--accent); }
.hero-sub {
  font-size: clamp(1.05rem, 2.2vw, 1.22rem);
  color: var(--ink-soft);
  margin-bottom: 26px;
}
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .84rem;
  font-weight: 600;
  color: var(--ink-soft);
  background: rgba(255,255,255,.7);
  border: 1px solid var(--line);
  padding: 7px 13px;
  border-radius: 999px;
}
.trust-strip span svg { width: 15px; height: 15px; color: var(--accent); }

.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 30px;
}
.hero-stats .stat b {
  display: block;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}
.hero-stats .stat span {
  font-size: .82rem;
  color: var(--ink-faint);
  font-weight: 600;
}

/* ---- Calculator card ---- */
.calc {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  padding: clamp(22px, 3vw, 32px);
  position: relative;
}
.calc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
}
.calc-head h2 { font-size: 1.28rem; margin: 0; }
.calc-head .badge {
  font-size: .74rem;
  font-weight: 700;
  color: var(--accent-2-deep);
  background: rgba(244,183,64,.16);
  padding: 5px 11px;
  border-radius: 999px;
}

.calc-top {
  display: grid;
  grid-template-columns: 1fr 128px;
  gap: 22px;
  align-items: center;
  margin-bottom: 22px;
}
.field { margin-bottom: 18px; }
.field:last-child { margin-bottom: 0; }
.field > label {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.field .hint { font-weight: 500; color: var(--ink-faint); }

/* stepper */
.stepper {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--line-strong);
  border-radius: 12px;
  overflow: hidden;
  width: fit-content;
}
.stepper button {
  width: 44px; height: 44px;
  border: 0;
  background: var(--surface-2);
  color: var(--accent);
  font-size: 1.4rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .18s, color .18s;
}
.stepper button:hover { background: var(--accent); color: #fff; }
.stepper output {
  min-width: 58px;
  text-align: center;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

/* balloon fill */
.balloon-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.balloon-svg { width: 108px; height: 132px; }
.balloon-label {
  font-size: .72rem;
  font-weight: 700;
  color: var(--ink-faint);
  text-align: center;
}
.balloon-env { transition: transform .5s cubic-bezier(.2,.7,.2,1); transform-origin: 50% 60%; }

/* date + selects */
.field select,
.field input[type="date"] {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  padding: 13px 15px;
  border: 1.5px solid var(--line-strong);
  border-radius: 12px;
  background: var(--surface-2);
  transition: border-color .2s, box-shadow .2s;
}
.field select:focus,
.field input[type="date"]:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(46,107,230,.14);
  outline: none;
}

/* toggle chips */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 16px;
  border: 1.5px solid var(--line-strong);
  border-radius: 12px;
  background: var(--surface-2);
  font-weight: 600;
  font-size: .92rem;
  cursor: pointer;
  transition: border-color .2s, background .2s, color .2s;
  user-select: none;
}
.chip:hover { border-color: var(--accent); }
.chip input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: auto;
  width: 18px; height: 18px;
  min-width: 18px; min-height: 18px;
  padding: 0; border: 0; margin: 0;
  accent-color: var(--accent);
}
.chip .chip-price { color: var(--accent); font-weight: 700; }
.chip:has(input:checked) {
  border-color: var(--accent);
  background: rgba(46,107,230,.08);
  color: var(--accent-deep);
}

/* fill bar */
.fill-track {
  height: 9px;
  border-radius: 999px;
  background: var(--line);
  overflow: hidden;
  margin: 4px 0 6px;
}
.fill-bar {
  height: 100%;
  width: 20%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-2) 120%);
  transition: width .5s cubic-bezier(.2,.7,.2,1);
}
.fill-meta {
  display: flex;
  justify-content: space-between;
  font-size: .76rem;
  font-weight: 600;
  color: var(--ink-faint);
}

/* price result */
.calc-result {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px dashed var(--line-strong);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.calc-result .price-label {
  font-size: .82rem;
  font-weight: 700;
  color: var(--ink-faint);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.calc-result .price-value {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.calc-result .price-value small { font-size: 1rem; color: var(--ink-faint); font-weight: 700; }
.calc-result .price-note { font-size: .78rem; color: var(--ink-faint); margin: 4px 0 0; }
.calc .btn-primary { width: 100%; margin-top: 20px; }

.calc-legend {
  margin-top: 14px;
  font-size: .78rem;
  color: var(--ink-faint);
  text-align: center;
}

/* ============================================================
   Summary strip
   ============================================================ */
.summary-band {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 40px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 22px;
}
.summary-band .sum-item h4 {
  color: #fff;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--accent-2);
  margin-bottom: 6px;
}
.summary-band .sum-item p {
  color: rgba(255,255,255,.82);
  margin: 0;
  font-size: .96rem;
}
.summary-band .sum-item b { color: #fff; font-size: 1.4rem; font-weight: 800; display: block; }

/* ============================================================
   Includes list
   ============================================================ */
.include-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.include-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: transform .24s cubic-bezier(.2,.7,.2,1), box-shadow .24s, border-color .24s;
}
.include-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-strong);
}
.include-card .ic {
  width: 48px; height: 48px;
  border-radius: 13px;
  background: rgba(46,107,230,.1);
  display: grid;
  place-items: center;
  color: var(--accent);
  margin-bottom: 16px;
}
.include-card .ic svg { width: 26px; height: 26px; }
.include-card h3 { font-size: 1.12rem; margin-bottom: 8px; }
.include-card p { margin: 0; font-size: .94rem; }

/* not-included small list */
.excl-list {
  margin-top: 26px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 26px;
}
.excl-list h4 { font-size: 1rem; margin-bottom: 12px; }
.excl-list ul { margin: 0; padding: 0; list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 8px 22px; }
.excl-list li { position: relative; padding-left: 22px; font-size: .92rem; color: var(--ink-soft); }
.excl-list li::before {
  content: "×";
  position: absolute; left: 0; top: -1px;
  color: var(--accent-2-deep);
  font-weight: 800;
}

/* ============================================================
   Packages
   ============================================================ */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  align-items: stretch;
}
.pkg-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: transform .24s cubic-bezier(.2,.7,.2,1), box-shadow .24s, border-color .24s;
}
.pkg-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.pkg-card.featured {
  border-color: var(--accent);
  box-shadow: var(--shadow-accent);
  position: relative;
}
/* featured badge + crown are defined in the uplift layer (::after pill, ::before bar) */
.pkg-card h3 { font-size: 1.2rem; margin-bottom: 4px; }
.pkg-card .pkg-for { font-size: .86rem; color: var(--ink-faint); margin-bottom: 16px; }
.pkg-card .pkg-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 3px;
  font-variant-numeric: tabular-nums;
}
.pkg-card .pkg-price small { font-size: .9rem; color: var(--ink-faint); font-weight: 700; }
.pkg-card .pkg-unit { font-size: .8rem; color: var(--ink-faint); margin-bottom: 18px; }
.pkg-card ul { list-style: none; margin: 0 0 22px; padding: 0; display: grid; gap: 10px; flex: 1; }
.pkg-card ul li { position: relative; padding-left: 26px; font-size: .93rem; color: var(--ink-soft); }
.pkg-card ul li.no { color: var(--ink-faint); }
.pkg-card ul li::before {
  content: "";
  position: absolute; left: 0; top: 4px;
  width: 16px; height: 16px;
  background: rgba(46,107,230,.14);
  border-radius: 50%;
}
.pkg-card ul li::after {
  content: "";
  position: absolute; left: 5px; top: 8px;
  width: 6px; height: 3px;
  border-left: 1.8px solid var(--accent);
  border-bottom: 1.8px solid var(--accent);
  transform: rotate(-45deg);
}
.pkg-card ul li.no::before { background: var(--line); }
.pkg-card ul li.no::after {
  content: "×"; border: 0; left: 4px; top: 0;
  color: var(--ink-faint); font-weight: 700; width: auto; height: auto;
}
.pkg-card .btn { width: 100%; margin-top: auto; }
.pkg-disclaim { text-align: center; font-size: .82rem; color: var(--ink-faint); margin-top: 22px; }

/* ============================================================
   Process timeline
   ============================================================ */
.timeline { position: relative; max-width: 780px; margin: 0 auto; }
.timeline::before {
  content: "";
  position: absolute;
  left: 21px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
}
.tl-step {
  position: relative;
  padding-left: 62px;
  padding-bottom: 34px;
}
.tl-step:last-child { padding-bottom: 0; }
.tl-step .tl-dot {
  position: absolute;
  left: 8px; top: 2px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--accent);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: .82rem;
  color: var(--accent);
}
.tl-step h3 { font-size: 1.1rem; margin-bottom: 4px; }
.tl-step .tl-when { font-size: .8rem; font-weight: 700; color: var(--accent-2-deep); margin-bottom: 6px; }
.tl-step p { margin: 0; font-size: .94rem; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px clamp(18px, 3vw, 26px);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .q-ic {
  flex-shrink: 0;
  width: 24px; height: 24px;
  position: relative;
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.faq-item summary .q-ic::before,
.faq-item summary .q-ic::after {
  content: "";
  position: absolute;
  background: var(--accent);
  border-radius: 2px;
}
.faq-item summary .q-ic::before { top: 11px; left: 3px; right: 3px; height: 2px; }
.faq-item summary .q-ic::after { left: 11px; top: 3px; bottom: 3px; width: 2px; transition: transform .3s; }
.faq-item[open] summary .q-ic::after { transform: scaleY(0); }
.faq-item .answer {
  height: 0;
  padding: 0 clamp(18px, 3vw, 26px);
  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; font-size: .96rem; }

/* ============================================================
   Contact
   ============================================================ */
.contact-hero {
  position: relative;
  overflow: hidden;
  background:
    var(--dawn-glow),
    radial-gradient(120% 140% at 88% -20%, rgba(46,107,230,.14), transparent 55%),
    linear-gradient(140deg, #dcebfd, #eaf2fb);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(34px, 6vw, 66px);
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}
/* horizon hairline accent along the top edge of the panel */
.contact-hero::before {
  content: "";
  position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-2) 60%, transparent 100%);
}
.contact-hero h1, .contact-hero h2 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1.05;
}
.channel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.channel-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px;
  transition: transform .24s cubic-bezier(.2,.7,.2,1), box-shadow .24s;
}
.channel-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.channel-card .ch-ic {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(46,107,230,.1);
  color: var(--accent);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}
.channel-card .ch-ic svg { width: 24px; height: 24px; }
.channel-card h3 { font-size: 1.02rem; margin-bottom: 4px; }
.channel-card a, .channel-card .val {
  display: block;
  font-weight: 700;
  color: var(--ink);
  word-break: break-word;
  overflow-wrap: anywhere;
}
.channel-card a:hover { color: var(--accent); }
.channel-card .ch-sub { font-size: .84rem; color: var(--ink-faint); margin: 4px 0 0; }

/* hours */
.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
}
.hours-grid .day {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: .92rem;
  font-variant-numeric: tabular-nums;
}
.hours-grid .day b { font-weight: 700; }
.hours-grid .day.today { border-color: var(--accent); background: rgba(46,107,230,.06); }

/* form */
.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 38px);
  box-shadow: var(--shadow-sm);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-grid .full { grid-column: 1 / -1; }
.form-card label { display: block; font-size: .84rem; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.form-card input[type="text"],
.form-card input[type="email"],
.form-card input[type="tel"],
.form-card select,
.form-card textarea {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  padding: 13px 15px;
  border: 1.5px solid var(--line-strong);
  border-radius: 11px;
  background: var(--surface-2);
  transition: border-color .2s, box-shadow .2s;
}
.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(46,107,230,.14);
  outline: none;
}
.form-card textarea { min-height: 130px; resize: vertical; }
.form-card .kvkk {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--ink-soft);
  line-height: 1.5;
}
.form-card .field input[type="checkbox"],
.form-card .kvkk 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-card .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-scroll th, .table-scroll td {
  padding: 13px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: .92rem;
}
.table-scroll th { background: var(--surface-2); font-weight: 700; color: var(--ink); }
.table-scroll tr:last-child td { border-bottom: 0; }

/* ============================================================
   Doc / legal pages
   ============================================================ */
.doc { max-width: 820px; margin: 0 auto; }
.doc h2 { font-family: var(--display); font-weight: 500; font-size: clamp(1.5rem, 3vw, 1.85rem); letter-spacing: -.015em; margin: 40px 0 14px; }
.doc h3 { font-size: 1.15rem; margin: 26px 0 8px; }
.doc p, .doc li { color: var(--ink-soft); }
.doc ul { padding-left: 20px; }
.doc li { margin-bottom: 6px; }
.doc .updated { font-size: .86rem; color: var(--ink-faint); margin-bottom: 30px; }

/* Legal / doc page closing CTA — gives tech pages a real, visible primary action */
.doc-cta {
  max-width: 820px;
  margin: 0 auto;
  background: linear-gradient(140deg, #dcebfd, #eaf2fb);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(26px, 4vw, 40px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.doc-cta-copy h2 { font-size: clamp(1.3rem, 3vw, 1.7rem); margin-bottom: 6px; }
.doc-cta-copy p { margin: 0; color: var(--ink-soft); }
.doc-cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }
@media (max-width: 560px) {
  .doc-cta { flex-direction: column; align-items: stretch; text-align: center; }
  .doc-cta-actions { justify-content: center; }
  .doc-cta-actions .btn { flex: 1 1 auto; }
}

.sitemap-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 26px; }
.sitemap-cols ul { list-style: none; padding: 0; }
.sitemap-cols li { margin-bottom: 10px; }
.sitemap-cols a { font-weight: 600; color: var(--ink); }
.sitemap-cols a:hover { color: var(--accent); }

/* 404 */
.err-wrap { text-align: center; padding: clamp(60px, 12vw, 130px) 0; }
.err-wrap .big { font-size: clamp(4rem, 16vw, 9rem); font-weight: 800; color: var(--accent); line-height: 1; letter-spacing: -.04em; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.72);
  padding: clamp(48px, 7vw, 76px) 0 30px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 34px;
  margin-bottom: 40px;
}
.site-footer .brand { color: #fff; margin-bottom: 14px; }
.site-footer .brand span b { color: var(--accent-2); }
.site-footer p { color: rgba(255,255,255,.66); font-size: .93rem; }
.site-footer h4 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer ul li { margin-bottom: 9px; }
.site-footer ul a { color: rgba(255,255,255,.72); font-size: .93rem; transition: color .2s, padding-left .2s; }
.site-footer ul a:hover { color: #fff; padding-left: 4px; }
.footer-contact li { display: flex; gap: 9px; font-size: .93rem; margin-bottom: 11px; }
.footer-contact svg { width: 17px; height: 17px; color: var(--accent-2); flex-shrink: 0; margin-top: 3px; }
.footer-contact a { word-break: break-word; overflow-wrap: anywhere; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: .84rem;
  color: rgba(255,255,255,.55);
}
.footer-bottom a { color: rgba(255,255,255,.72); }
.footer-bottom .legal-links { display: flex; flex-wrap: wrap; gap: 16px; }

/* ============================================================
   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: var(--radius);
  padding: 22px 24px;
  box-shadow: 0 24px 60px -20px rgba(19,35,58,.5);
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
  z-index: 9999;
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
.cookie-banner h4 { font-size: 1.02rem; margin-bottom: 6px; }
.cookie-banner p { font-size: .88rem; margin: 0 0 16px; }
.cookie-banner .cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie-banner .cookie-actions button {
  flex: 1 1 auto;
  min-height: 44px;
  font-family: inherit;
  font-weight: 700;
  font-size: .9rem;
  border-radius: 10px;
  cursor: pointer;
  border: 1.5px solid var(--line-strong);
  padding: 11px 16px;
  transition: background .2s, color .2s, border-color .2s;
}
.cookie-banner [data-consent="accept"] { background: var(--accent); color: #fff; border-color: var(--accent); }
.cookie-banner [data-consent="accept"]:hover { background: var(--accent-deep); border-color: var(--accent-deep); }
/* Reject must read as an equally weighted choice — a solid button of the same
   prominence as Accept, not a de-emphasised outline that nudges consent */
.cookie-banner [data-consent="reject"] { background: var(--ink); color: #fff; border-color: var(--ink); }
.cookie-banner [data-consent="reject"]:hover, .cookie-banner [data-consent="reject"]:focus-visible { background: #0b1524; border-color: #0b1524; color: #fff; }
/* Settings is the genuinely secondary action */
.cookie-banner [data-consent="settings"] { flex: 0 1 auto; background: transparent; color: var(--ink-soft); border-color: transparent; text-decoration: underline; text-underline-offset: 3px; }
.cookie-banner [data-consent="settings"]:hover, .cookie-banner [data-consent="settings"]:focus-visible { color: var(--accent); border-color: transparent; }
@media (min-width: 720px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}

/* cookie modal */
.cookie-modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(19,35,58,.6);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.cookie-modal-backdrop.is-open { display: flex; }
.cookie-modal {
  background: var(--surface);
  border-radius: var(--radius);
  max-width: 480px;
  width: 100%;
  padding: 28px;
  max-height: 90vh;
  overflow-y: auto;
}
.cookie-modal h3 { font-size: 1.25rem; margin-bottom: 8px; }
.cookie-modal p { font-size: .9rem; }
.cookie-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.cookie-toggle-row:last-of-type { border-bottom: 0; }
.cookie-toggle-row .ct-txt strong { display: block; font-size: .96rem; color: var(--ink); }
.cookie-toggle-row .ct-txt span { font-size: .82rem; color: var(--ink-faint); }
.switch { position: relative; width: 46px; height: 26px; flex-shrink: 0; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch .slider {
  position: absolute; inset: 0;
  background: var(--line-strong);
  border-radius: 999px;
  cursor: pointer;
  transition: background .2s;
}
.switch .slider::before {
  content: ""; position: absolute;
  left: 3px; top: 3px;
  width: 20px; height: 20px;
  background: #fff; border-radius: 50%;
  transition: transform .2s;
}
.switch input:checked + .slider { background: var(--accent); }
.switch input:checked + .slider::before { transform: translateX(20px); }
.switch input:disabled + .slider { background: var(--accent-2); opacity: .7; cursor: not-allowed; }
.cookie-modal .btn { width: 100%; margin-top: 20px; }

/* ============================================================
   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) * 70ms);
}
.reveal.is-in { opacity: 1; transform: none; }
html.no-js .reveal { opacity: 1; transform: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .hero-sky .sun { width: 130px; height: 130px; }
  .calc-top { grid-template-columns: 1fr; }
  .balloon-wrap { flex-direction: row; justify-content: center; gap: 16px; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .hero-stats { gap: 20px; }
}
@media (max-width: 480px) {
  .include-card, .pkg-card, .channel-card { padding: 20px 18px; }
  .cookie-banner { padding: 18px 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero-sky .sun, .hero-sky .drift-balloon, .balloon-env, .fill-bar { animation: none !important; }
  .photo-hero__media img { animation: none !important; transform: scale(1.02) !important; }
  .faq-item .answer { transition: none; }
  * { scroll-behavior: auto !important; }
}

.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;
}

/* drawer-cta-color-guard v1 */
.drawer a.nav-cta, .drawer .nav-cta, .mobile-menu a.nav-cta, nav[class*=mobile] a.nav-cta {
  color: #fff !important;
}

/* table-scroll ancestor guard v1 */
.table-scroll{max-width:100%;overflow-x:auto}
:where(*:has(> .table-scroll),*:has(> * > .table-scroll),*:has(> * > * > .table-scroll)){min-width:0}
table{max-width:100%}

/* ============================================================
   ✦ AWARD-LEVEL UPLIFT — "Kapadokya Şafağı" (Cappadocia Dawn)
   Display: Fraunces · Body: Manrope · Sky-blue + sunrise-gold + navy
   ============================================================ */

/* ---- Eyebrow: horizon tick + sunrise dot ---- */
.eyebrow { position: relative; }
.eyebrow::after {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 0 3px rgba(244,183,64,.22);
}
.section-head.center .eyebrow { justify-content: center; }

/* ---- Framed section media (photos between sections) ---- */
.section-media {
  width: 100%; height: auto;
  border-radius: var(--radius-lg);
  margin-bottom: clamp(30px, 4vw, 44px);
  display: block;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255,255,255,.6);
  outline: 1px solid var(--line);
  outline-offset: -1px;
}

/* ---- Cards: warm sunrise hover-lift + gradient crown ---- */
.include-card, .pkg-card, .channel-card {
  position: relative;
  isolation: isolate;
  border-radius: var(--radius-lg);
}
.include-card::before, .pkg-card::before, .channel-card::before {
  content: "";
  position: absolute; left: 0; right: 0; top: 0; height: 3px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  opacity: 0;
  transform: scaleX(.4);
  transform-origin: left;
  transition: opacity .3s ease, transform .35s cubic-bezier(.2,.7,.2,1);
}
.include-card:hover, .channel-card:hover { box-shadow: var(--shadow-warm); border-color: var(--line-strong); }
.include-card:hover::before, .pkg-card:hover::before, .channel-card:hover::before { opacity: 1; transform: scaleX(1); }
.pkg-card:hover { box-shadow: var(--shadow-warm); }

/* ---- Include-card icon: dawn-gradient chip ---- */
.include-card .ic, .channel-card .ch-ic {
  background: linear-gradient(150deg, rgba(46,107,230,.14), rgba(244,183,64,.16));
  border: 1px solid rgba(46,107,230,.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
  border-radius: 14px;
  transition: transform .3s cubic-bezier(.2,.7,.2,1);
}
.include-card:hover .ic, .channel-card:hover .ch-ic { transform: translateY(-2px) rotate(-3deg); }
.include-card h3 { font-size: 1.16rem; }

/* ---- Excludes list: warmer panel ---- */
.excl-list { border-radius: var(--radius-lg); border-left: 3px solid var(--accent-2); }
.excl-list h4 { font-family: var(--display); font-weight: 500; font-size: 1.1rem; }

/* ---- Packages: premium featured, display prices ---- */
.pkg-card h3 { font-family: var(--display); font-weight: 500; font-size: 1.34rem; letter-spacing: -.01em; }
.pkg-card .pkg-price { font-family: var(--display); font-weight: 600; font-size: 2.3rem; letter-spacing: -.02em; }
.pkg-card.featured {
  background:
    var(--dawn-glow),
    linear-gradient(180deg, #ffffff, #fbfdff);
  box-shadow: 0 30px 60px -30px rgba(46,107,230,.5), 0 0 0 1px var(--accent);
  transform: translateY(-6px);
}
.pkg-card.featured:hover { transform: translateY(-12px); }
.pkg-card.featured::before { opacity: 1; transform: scaleX(1); height: 4px; }
.pkg-card.featured::after {
  content: "En çok tercih edilen";
  position: absolute;
  top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(90deg, var(--accent-2), #f7c85e);
  color: var(--ink);
  font-size: .72rem; font-weight: 800; letter-spacing: .02em;
  padding: 6px 15px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 8px 18px -8px rgba(244,183,64,.8);
  z-index: 2;
}
.pkg-card.featured { padding-top: 34px; }
/* neutralise the old top-left badge in favour of the centered pill */
.pkg-card.featured::before { top: 0; }
.pkg-grid { gap: clamp(20px, 2.6vw, 30px); align-items: stretch; padding-top: 6px; }

/* ---- Timeline: dawn spine, gradient dots, when-pills ---- */
.timeline::before { width: 2px; left: 22px; background: linear-gradient(180deg, var(--accent), var(--accent-2) 85%); opacity: .5; }
.tl-step { padding-left: 68px; padding-bottom: 40px; }
.tl-step .tl-dot {
  width: 34px; height: 34px;
  left: 5px;
  font-size: .9rem;
  font-family: var(--display);
  font-weight: 600;
  background: var(--surface);
  border: 2px solid var(--accent);
  box-shadow: 0 0 0 5px rgba(46,107,230,.08), var(--shadow-sm);
  transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s, border-color .3s, background .3s, color .3s;
}
.tl-step:hover .tl-dot {
  transform: scale(1.08);
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 0 0 6px rgba(244,183,64,.18), var(--shadow-accent);
}
.tl-step h3 { font-family: var(--display); font-weight: 500; font-size: 1.22rem; letter-spacing: -.01em; }
.tl-step .tl-when {
  display: inline-block;
  color: var(--gold-ink);
  background: rgba(244,183,64,.14);
  padding: 3px 11px;
  border-radius: 999px;
  font-size: .74rem;
  letter-spacing: .01em;
}

/* ---- FAQ: premium accent rail + hover ---- */
.faq-item { border-radius: var(--radius); transition: border-color .25s, box-shadow .25s, transform .25s; }
.faq-item:hover { border-color: var(--line-strong); box-shadow: var(--shadow-sm); }
.faq-item[open] {
  border-color: var(--accent);
  box-shadow: 0 18px 40px -30px rgba(46,107,230,.6);
}
.faq-item summary { font-weight: 700; }
.faq-item[open] summary { color: var(--accent-deep); }

/* ---- Summary band: dawn glow + gold hairline ---- */
.summary-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(90% 140% at 88% -10%, rgba(46,107,230,.5), transparent 60%),
    radial-gradient(70% 120% at 10% 120%, rgba(244,183,64,.16), transparent 60%),
    var(--ink);
}
.summary-band::before {
  content: "";
  position: absolute; left: 0; right: 0; top: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent-2), transparent 70%);
}
.summary-band .sum-item { position: relative; padding-left: 16px; }
.summary-band .sum-item::before {
  content: "";
  position: absolute; left: 0; top: 4px; bottom: 4px;
  width: 2px; border-radius: 2px;
  background: linear-gradient(180deg, var(--accent-2), transparent);
}
.summary-band .sum-item b { font-family: var(--display); font-weight: 600; }

/* ---- Trust strip: crisp glass pills ---- */
.trust-strip span {
  background: rgba(255,255,255,.86);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(4px);
}
.hero-stats .stat b { font-family: var(--display); font-weight: 600; }

/* ============================================================
   Testimonials → premium quote cards with line-art star ratings
   ============================================================ */
.quote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(18px, 2.4vw, 26px);
  align-items: start;
}
.quote-card {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 28px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .28s cubic-bezier(.2,.7,.2,1), box-shadow .28s, border-color .28s;
}
.quote-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-warm); border-color: var(--line-strong); }
.quote-card .quote-mark {
  font-family: var(--display);
  font-weight: 600;
  font-style: italic;
  font-size: 3.4rem;
  line-height: .7;
  color: var(--accent-2);
  opacity: .55;
  margin-bottom: 6px;
}
.quote-stars { display: inline-flex; gap: 3px; margin-bottom: 14px; }
.quote-stars svg { width: 17px; height: 17px; fill: var(--accent-2); stroke: none; }
.quote-card blockquote {
  margin: 0 0 20px;
  font-size: 1.02rem;
  line-height: 1.62;
  color: var(--ink);
  font-weight: 500;
  flex: 1;
}
.quote-card figcaption {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.quote-avatar {
  width: 44px; height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--accent-deep);
  background: linear-gradient(150deg, rgba(46,107,230,.16), rgba(244,183,64,.2));
  border: 1px solid rgba(46,107,230,.16);
}
.quote-card cite { display: block; font-style: normal; }
.quote-card cite b { font-size: .96rem; color: var(--ink); font-weight: 700; }
.quote-card cite span { display: block; font-size: .82rem; color: var(--ink-faint); margin-top: 1px; }

/* ---- Contact CTA band heading ---- */
.contact-hero h2 { font-family: var(--display); font-weight: 500; }

/* ============================================================
   Refined responsive polish
   ============================================================ */
@media (max-width: 720px) {
  .section-head { margin-bottom: 34px; }
  .quote-card { padding: 24px 22px 22px; }
  .pkg-card.featured { transform: none; }
  .pkg-card.featured:hover { transform: translateY(-6px); }
}
@media (max-width: 480px) {
  .section-media { border-radius: var(--radius); }
}

/* ============================================================
   Reduced-motion re-guard for uplift-layer transitions/animations
   (this block is authored after the base reduced-motion rule, so it
    must re-assert stillness for the new interactive elements)
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .include-card, .pkg-card, .channel-card, .quote-card,
  .include-card::before, .pkg-card::before, .channel-card::before,
  .include-card .ic, .channel-card .ch-ic,
  .tl-step .tl-dot, .faq-item {
    transition: none !important;
  }
  .include-card:hover, .pkg-card:hover, .channel-card:hover, .quote-card:hover,
  .include-card:hover .ic, .channel-card:hover .ch-ic,
  .tl-step:hover .tl-dot { transform: none !important; }
  .include-card:hover::before, .pkg-card:hover::before, .channel-card:hover::before { transform: scaleX(1) !important; }
}
