/* ===========================================================================
   airtransferlines — styles.css
   Konsept: "The Transfer Line" — A→B rota hattı kimliğin omurgası.
   Palet: lacivert (ink) · teal rota hattı · amber karşılama sıcaklığı.
   Tipografi: Clash Display (display) · General Sans (body) · Space Mono (veri).
   =========================================================================== */

/* ----------------------------- Tokens -------------------------------------- */
:root {
  --font-display: 'Clash Display', ui-sans-serif, system-ui, sans-serif;
  --font-body: 'General Sans', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-mono: 'Space Mono', ui-monospace, 'SFMono-Regular', monospace;

  /* açık tema (içerik) */
  --bg: #ECF2F8;
  --surface: #FFFFFF;
  --surface-2: #F3F7FB;
  --surface-3: #E7EEF6;
  --text: #0C1C2E;
  --muted: #5A6E84;
  --hairline: #DBE4EE;
  --route: #1A82C8;         /* marka mavi (pin) — birincil etkileşim */
  --route-2: #1369A4;       /* koyu mavi — açık zeminde metin/hover (AA) */
  --route-soft: rgba(26, 130, 200, .12);
  --amber: #C42C86;         /* marka magenta (pin) — ikincil vurgu */
  --amber-2: #A52270;
  --on-route: #FFFFFF;      /* marka mavi/gradyan üzerine beyaz metin */
  --ink: #0C1C2E;           /* sabit marka lacivferi */
  --brand-grad: linear-gradient(120deg, #1A82C8 0%, #C42C86 100%);

  --shadow-sm: 0 1px 2px rgba(12, 28, 46, .06), 0 2px 8px rgba(12, 28, 46, .05);
  --shadow-md: 0 8px 24px rgba(12, 28, 46, .10), 0 2px 6px rgba(12, 28, 46, .06);
  --shadow-lg: 0 24px 60px rgba(8, 20, 36, .22), 0 6px 18px rgba(8, 20, 36, .12);

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-pill: 999px;

  --ease: cubic-bezier(.22, .61, .36, 1);
  --container: 1160px;
}

[data-theme="dark"] {
  --bg: #091420;
  --surface: #0E2031;
  --surface-2: #142A3E;
  --surface-3: #1A3550;
  --text: #E9F1F8;
  --muted: #93A8BD;
  --hairline: rgba(255, 255, 255, .10);
  --route: #3AA0E0;
  --route-2: #74C2EE;
  --route-soft: rgba(58, 160, 224, .16);
  --amber: #E25BA6;
  --amber-2: #F074B4;
  --on-route: #FFFFFF;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, .3);
  --shadow-md: 0 10px 28px rgba(0, 0, 0, .42);
  --shadow-lg: 0 28px 64px rgba(0, 0, 0, .55);
}

/* ----------------------------- Reset / base -------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  transition: background-color .4s var(--ease), color .4s var(--ease);
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
input { font: inherit; color: inherit; }
ul, ol { list-style: none; padding: 0; }
[hidden] { display: none !important; }

.ic { fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.ic--moon { fill: currentColor; stroke: none; }
.mono { font-family: var(--font-mono); font-feature-settings: "tnum" 1; letter-spacing: -.01em; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.container--narrow { max-width: 800px; }

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 200;
  background: var(--route); color: var(--on-route); padding: 10px 16px; border-radius: var(--r-sm);
  transition: top .2s var(--ease); font-weight: 600;
}
.skip-link:focus { top: 16px; }

:focus-visible { outline: 3px solid var(--route); outline-offset: 2px; border-radius: 4px; }

/* ----------------------------- Tipografi helpers --------------------------- */
.eyebrow {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .72rem;
  font-weight: 700;
  color: var(--route-2);
  display: inline-flex; align-items: center; gap: .6em;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: currentColor; border-radius: 2px; opacity: .8; }
.eyebrow--ondark { color: var(--h-route, #4fe3cf); }

.section { padding-block: clamp(64px, 9vw, 120px); }
.section__head { max-width: 640px; margin-inline: auto; text-align: center; margin-bottom: clamp(36px, 5vw, 60px); }
.section__head--left { margin-inline: 0; text-align: start; }
.section__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  line-height: 1.08;
  letter-spacing: -.02em;
  margin-top: 14px;
}
.section__lead { color: var(--muted); margin-top: 14px; font-size: 1.06rem; }

/* ----------------------------- Buttons ------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 600; font-size: 1rem; border-radius: var(--r-pill);
  padding: 14px 22px; transition: transform .18s var(--ease), box-shadow .2s var(--ease), background-color .2s var(--ease);
  white-space: nowrap;
}
.btn--primary { background: var(--brand-grad); color: #fff; box-shadow: 0 8px 20px rgba(26, 130, 200, .30); }
.btn--primary:hover { filter: brightness(1.07) saturate(1.05); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(196, 44, 134, .36); }
.btn--primary:active { transform: translateY(0); }
.btn--lg { padding: 17px 30px; font-size: 1.08rem; }
.btn__arrow { transition: transform .2s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(3px); }

.ghost-link { color: inherit; font-weight: 500; opacity: .9; }
.ghost-link:hover { opacity: 1; color: var(--route-2); }

/* ----------------------------- Brand (gerçek logo) ------------------------ */
.brand { display: inline-flex; align-items: center; }
.brand__img { height: 34px; width: auto; display: block; }
.footer .brand__img { height: 38px; }

/* ----------------------------- Nav ---------------------------------------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  color: var(--h-text, #eaf2fb);
  transition: background-color .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: color-mix(in srgb, var(--ink) 86%, transparent);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  color: #eaf2fb;
  box-shadow: 0 6px 24px rgba(8, 16, 28, .28);
  border-bottom-color: rgba(255, 255, 255, .08);
}
.nav__inner { display: flex; align-items: center; gap: 22px; height: 74px; }
.nav__links { display: flex; align-items: center; gap: 26px; margin-inline: auto; font-weight: 500; }
.nav__links a { opacity: .9; position: relative; padding: 6px 0; }
.nav__links a:hover { opacity: 1; }
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px;
  background: var(--route); border-radius: 2px; transition: right .25s var(--ease);
}
.nav__links a:hover::after { right: 0; }
.nav__actions { display: flex; align-items: center; gap: 10px; }
.nav__manage { margin-right: 4px; }

.icon-btn {
  width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--r-pill); border: 1px solid transparent; transition: background-color .2s var(--ease), border-color .2s;
  color: inherit;
}
.icon-btn:hover { background: color-mix(in srgb, currentColor 12%, transparent); }
.ic--moon { display: none; }
[data-theme="dark"] .ic--sun { display: none; }
[data-theme="dark"] .ic--moon { display: block; }
.nav__burger { display: none; }

/* Dil değiştirici */
.lang { position: relative; }
.lang__btn {
  display: inline-flex; align-items: center; gap: 7px; padding: 8px 12px; border-radius: var(--r-pill);
  border: 1px solid color-mix(in srgb, currentColor 22%, transparent); font-weight: 600; font-size: .9rem;
  transition: background-color .2s var(--ease);
}
.lang__btn:hover { background: color-mix(in srgb, currentColor 10%, transparent); }
.lang__btn .chev { transition: transform .2s var(--ease); opacity: .7; }
.lang.is-open .lang__btn .chev { transform: rotate(180deg); }
.lang__current { font-family: var(--font-mono); }
.lang__menu {
  position: absolute; right: 0; top: calc(100% + 10px); min-width: 200px;
  background: var(--surface); color: var(--text); border: 1px solid var(--hairline);
  border-radius: var(--r-md); box-shadow: var(--shadow-lg); padding: 8px; z-index: 120;
  max-height: 320px; overflow: auto;
  opacity: 0; transform: translateY(-8px) scale(.98); transform-origin: top right; pointer-events: none;
  transition: opacity .18s var(--ease), transform .18s var(--ease);
}
.lang.is-open .lang__menu { opacity: 1; transform: none; pointer-events: auto; }
.lang__opt {
  display: flex; align-items: center; gap: 11px; width: 100%; padding: 10px 12px;
  border-radius: var(--r-sm); text-align: start; font-weight: 500;
}
.lang__opt:hover, .lang__opt:focus-visible { background: var(--surface-2); }
.lang__opt[aria-selected="true"] { color: var(--route-2); font-weight: 600; }
.lang__opt .flag { font-size: 1.15rem; line-height: 1; }
.lang__opt .code { margin-inline-start: auto; font-family: var(--font-mono); font-size: .76rem; color: var(--muted); }

/* ----------------------------- Hero --------------------------------------- */
.hero {
  --h-text: #EAF2FB; --h-muted: rgba(220, 230, 244, .80); --h-route: #6FC2F2;
  position: relative; isolation: isolate; overflow: hidden;
  color: var(--h-text);
  background: #0a1726;
  padding-top: 124px; padding-bottom: clamp(64px, 8vw, 110px);
}
/* Gerçek İstanbul fotoğrafı (Boğaz, alacakaranlık) + okunabilirlik degradesi */
.hero__scene { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.hero__photo { width: 100%; height: 100%; object-fit: cover; object-position: 60% 42%; }
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(95deg, rgba(8,17,30,.94) 0%, rgba(8,17,30,.80) 34%, rgba(9,20,34,.50) 64%, rgba(11,24,40,.34) 100%),
    linear-gradient(to top, rgba(7,14,24,.86) 0%, rgba(7,14,24,.12) 38%, transparent 60%);
}

.hero__inner {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 70px); align-items: center;
}
.hero__copy { max-width: 560px; }
.hero__title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2.6rem, 6vw, 4.6rem); line-height: 1.02; letter-spacing: -.03em;
  margin-top: 20px;
}
.hero__title span { display: block; }
.hero__title-accent { color: var(--h-route); }
.hero__subtitle { margin-top: 22px; font-size: clamp(1.02rem, 1.6vw, 1.18rem); color: var(--h-muted); max-width: 50ch; }
.hero__chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.hero__chips li {
  display: inline-flex; align-items: center; gap: 8px; font-size: .9rem; font-weight: 500;
  padding: 8px 14px; border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .12);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.hero__chips .ic { color: var(--h-route); }

/* ----------------------------- Widget ------------------------------------- */
.widget {
  background: color-mix(in srgb, #fff 96%, transparent);
  border: 1px solid rgba(255, 255, 255, .6);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 22px;
  color: var(--ink);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}
[data-theme="dark"] .widget { background: #fbfdff; }

.widget__tabs { position: relative; display: inline-flex; background: #eef3f8; border-radius: var(--r-pill); padding: 4px; margin-bottom: 18px; }
.widget__tab { position: relative; z-index: 1; padding: 9px 18px; border-radius: var(--r-pill); font-weight: 600; font-size: .92rem; color: #5a6e84; transition: color .2s var(--ease); }
.widget__tab.is-active { color: var(--ink); }
.widget__tab-ind { position: absolute; z-index: 0; top: 4px; bottom: 4px; left: 4px; width: 0; background: #fff; border-radius: var(--r-pill); box-shadow: var(--shadow-sm); transition: transform .28s var(--ease), width .28s var(--ease); }

/* route-field: imza hattı From→To
   Noktalar input'un İÇİNDE (solda, dikey ortalı); hat ikisini birleştirir. */
.route-field { position: relative; }
.route-field__line { position: absolute; inset-inline-start: 21px; top: 48px; bottom: 27px; width: 2px; background: repeating-linear-gradient(var(--route) 0 5px, transparent 5px 11px); opacity: .9; z-index: 2; }
.route-field__line.is-drawing { animation: dashpulse .7s var(--ease); }
@keyframes dashpulse { from { background-position-y: -16px; } to { background-position-y: 0; } }
.field__node { position: absolute; inset-inline-start: 16px; bottom: 19px; width: 13px; height: 13px; border-radius: 50%; z-index: 3; }
.field__node--origin { border: 3px solid var(--route); background: #fff; }
.field__node--dest { background: var(--amber); box-shadow: 0 0 0 4px color-mix(in srgb, var(--amber) 28%, transparent); }
.route-field .field__input { padding-inline-start: 40px; padding-inline-end: 50px; }
.route-field .field__label { padding-inline-start: 40px; }

.field { position: relative; display: flex; flex-direction: column; gap: 4px; }
.field + .field { margin-top: 0; }
.route-field .combo + .combo { margin-top: 12px; }
.field__label { font-size: .76rem; font-weight: 600; color: #5a6e84; letter-spacing: .01em; }
.field__input {
  width: 100%; background: #fff; border: 1.5px solid #dbe4ee; border-radius: var(--r-sm);
  padding: 12px 14px; font-size: 1rem; font-weight: 500; color: var(--ink);
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.field__input::placeholder { color: #9bacbf; font-weight: 400; }
.field__input:focus { outline: none; border-color: var(--route); box-shadow: 0 0 0 4px var(--route-soft); }

.route-field__swap {
  position: absolute; inset-inline-end: 7px; top: 86px; transform: translateY(-50%); z-index: 4;
  width: 38px; height: 38px; border-radius: 50%; background: #fff; border: 1.5px solid #dbe4ee;
  display: inline-flex; align-items: center; justify-content: center; color: var(--route-2);
  box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), border-color .2s;
}
.route-field__swap:hover { border-color: var(--route); transform: translateY(-50%) rotate(180deg); }

.widget__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 14px; }
.widget__row--bottom { grid-template-columns: auto 1fr; align-items: end; }

.stepper { gap: 6px; }
.stepper__ctl { display: inline-flex; align-items: center; gap: 4px; background: #fff; border: 1.5px solid #dbe4ee; border-radius: var(--r-sm); padding: 4px; }
.stepper__btn { width: 36px; height: 36px; border-radius: 8px; display: inline-flex; align-items: center; justify-content: center; color: var(--ink); transition: background-color .15s var(--ease); }
.stepper__btn:hover { background: #eef3f8; }
.stepper__btn:disabled { opacity: .35; cursor: not-allowed; }
.stepper__val { min-width: 30px; text-align: center; font-size: 1.05rem; font-weight: 700; }

.widget__submit { width: 100%; }
.widget__note { display: flex; align-items: center; gap: 7px; margin-top: 14px; font-size: .82rem; color: #5a6e84; justify-content: center; }
.widget__note .ic { color: var(--route-2); }

/* combo dropdown */
.combo__menu {
  position: absolute; top: calc(100% + 6px); left: 0; right: 0; z-index: 30;
  background: #fff; border: 1px solid #dbe4ee; border-radius: var(--r-md); box-shadow: var(--shadow-lg);
  padding: 6px; max-height: 280px; overflow: auto;
}
.combo__opt { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: var(--r-sm); cursor: pointer; }
.combo__opt:hover, .combo__opt.is-active { background: var(--route-soft); }
.combo__opt-ic { flex: none; width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; background: #eef3f8; color: var(--route-2); }
.combo__opt-ic .ic { width: 18px; height: 18px; }
.combo__opt-main { font-weight: 600; color: var(--ink); line-height: 1.2; }
.combo__opt-sub { font-size: .8rem; color: #6b7e92; }
.combo__opt-code { margin-inline-start: auto; font-family: var(--font-mono); font-weight: 700; font-size: .8rem; color: #fff; background: var(--ink); padding: 4px 8px; border-radius: 6px; letter-spacing: .04em; }
.combo__empty { padding: 16px 12px; color: #6b7e92; font-size: .9rem; text-align: center; }

/* ----------------------------- Quote ribbon -------------------------------- */
.quote { background: var(--surface); border-bottom: 1px solid var(--hairline); padding-block: clamp(36px, 5vw, 56px); }
.quote[hidden] { display: none; }
.quote__head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 22px; flex-wrap: wrap; }
.quote__summary { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 10px; font-size: 1.05rem; font-weight: 700; color: var(--text); }
.quote__summary .arrow { color: var(--route-2); }
.quote__summary .meta { font-family: var(--font-body); font-weight: 500; color: var(--muted); font-size: .9rem; }
.quote__cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 16px; }

.vcard {
  position: relative; display: flex; flex-direction: column; gap: 14px;
  background: var(--surface); border: 1px solid var(--hairline); border-radius: var(--r-md);
  padding: 20px; transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s;
}
.vcard:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: color-mix(in srgb, var(--route) 40%, var(--hairline)); }
.vcard--quote { background: var(--surface-2); }
.vcard__badge {
  position: absolute; top: -11px; inset-inline-start: 18px; font-family: var(--font-mono); font-size: .66rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em; padding: 5px 10px; border-radius: var(--r-pill);
}
.vcard__badge--best { background: var(--route); color: var(--on-route); }
.vcard__badge--popular { background: var(--amber); color: #fff; }
.vcard__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.vcard__name { font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; }
.vcard__desc { color: var(--muted); font-size: .86rem; margin-top: 2px; }
.vcard__car { display: grid; place-items: center; min-height: 104px; background: #fff; border-radius: 12px; padding: 8px 10px; }
.vcard__img { width: 100%; max-width: 232px; height: 92px; object-fit: contain; mix-blend-mode: multiply; }
.vcard__caps { display: flex; gap: 14px; font-size: .84rem; color: var(--muted); }
.vcard__caps span { display: inline-flex; align-items: center; gap: 6px; }
.vcard__caps .ic { width: 16px; height: 16px; color: var(--text); }
.vcard__feats { display: flex; flex-wrap: wrap; gap: 6px; }
.vcard__feat { font-size: .74rem; color: var(--route-2); background: var(--route-soft); padding: 4px 9px; border-radius: var(--r-pill); font-weight: 600; }
.vcard__foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: auto; padding-top: 4px; }
.vcard__price { font-family: var(--font-mono); font-weight: 700; font-size: 1.5rem; color: var(--text); }
.vcard__price small { display: block; font-size: .68rem; color: var(--muted); font-weight: 400; letter-spacing: 0; }
.vcard__from { font-size: .72rem; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; font-family: var(--font-mono); }
.vcard .btn { padding: 11px 18px; }
.vcard--market .vcard__price { font-size: 1.25rem; }
.vcard.is-disabled { opacity: .5; }
.vcard.is-disabled:hover { transform: none; box-shadow: none; border-color: var(--hairline); }
.vcard.is-disabled .btn--primary { background: var(--hairline); color: var(--muted); box-shadow: none; pointer-events: none; }

/* ----------------------------- Trust strip --------------------------------- */
.trust { border-bottom: 1px solid var(--hairline); background: var(--surface); }
.trust__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-block: 30px; flex-wrap: wrap; }
.trust__item { display: flex; flex-direction: column; align-items: center; gap: 4px; flex: 1; min-width: 130px; }
.trust__num { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; color: var(--text); letter-spacing: -.02em; }
.trust__star { color: #F6A934; margin-inline-start: 2px; }
.trust__label { font-size: .82rem; color: var(--muted); text-align: center; }
.trust__sep { width: 1px; align-self: stretch; background: var(--hairline); }

/* ----------------------------- How it works -------------------------------- */
.how__track { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 4vw, 44px); }
.how__rail { position: absolute; top: 64px; left: 12%; right: 12%; height: 2px; background: repeating-linear-gradient(90deg, var(--route) 0 6px, transparent 6px 13px); opacity: .5; z-index: 0; }
.how__step { position: relative; z-index: 1; text-align: center; }
.how__num { display: block; font-size: .8rem; font-weight: 700; color: var(--route-2); letter-spacing: .1em; margin-bottom: 14px; }
.how__icon { width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 18px; display: grid; place-items: center; background: var(--surface); border: 1px solid var(--hairline); box-shadow: var(--shadow-sm); color: var(--route-2); }
.how__title { font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; }
.how__desc { color: var(--muted); margin-top: 8px; font-size: .96rem; max-width: 34ch; margin-inline: auto; }

/* ----------------------------- Vehicles ------------------------------------ */
.vehicles { background: var(--surface-2); }
.vehicles__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 18px; }

/* ----------------------------- Popular routes ------------------------------ */
.routes__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
/* Rota kartı = gerçek destinasyon fotoğrafı + koyu degrade üzerinde içerik */
.rcard {
  position: relative; display: block; width: 100%; text-align: start; min-height: 210px;
  border: 0; border-radius: var(--r-md); overflow: hidden; isolation: isolate; color: #fff;
  transition: transform .2s var(--ease), box-shadow .25s var(--ease);
}
.rcard__photo { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.rcard__shade { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(8,16,28,.12) 0%, rgba(8,16,28,.28) 42%, rgba(8,16,28,.88) 100%); }
.rcard:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.rcard:hover .rcard__photo { transform: scale(1.06); }
.rcard__code { position: absolute; top: 14px; inset-inline-start: 14px; z-index: 1; font-weight: 700; font-size: .9rem; color: #fff; background: rgba(10,20,34,.5); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); padding: 6px 11px; border-radius: 8px; letter-spacing: .06em; border: 1px solid rgba(255,255,255,.2); }
.rcard__plane { position: absolute; top: 17px; inset-inline-end: 16px; z-index: 1; color: rgba(255,255,255,.9); }
.rcard__plane .ic { width: 19px; height: 19px; }
.rcard__content { position: relative; min-height: 210px; padding: 20px; display: flex; flex-direction: column; justify-content: flex-end; gap: 12px; }
.rcard__head { display: flex; flex-direction: column; gap: 2px; }
.rcard__to { font-family: var(--font-display); font-weight: 600; font-size: 1.4rem; line-height: 1.1; }
.rcard__city { font-size: .82rem; color: rgba(255,255,255,.78); }
.rcard__meta { display: flex; align-items: center; justify-content: space-between; padding-top: 12px; border-top: 1px solid rgba(255,255,255,.2); }
.rcard__dur { display: inline-flex; align-items: center; gap: 6px; font-size: .82rem; color: rgba(255,255,255,.88); }
.rcard__dur .ic { width: 15px; height: 15px; }
.rcard__price { text-align: end; }
.rcard__from { font-size: .62rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.72); display: block; }
.rcard__amount { font-weight: 700; font-size: 1.3rem; color: #fff; }

/* ----------------------------- Why grid ------------------------------------ */
.why__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.why__card { background: var(--surface); border: 1px solid var(--hairline); border-radius: var(--r-md); padding: 26px; transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
.why__card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.why__icon { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; background: var(--route-soft); color: var(--route-2); margin-bottom: 16px; }
.why__card--feature { padding: 0; overflow: hidden; background: var(--ink); border-color: transparent; display: flex; flex-direction: column; }
.why__photo { width: 100%; height: 200px; object-fit: cover; object-position: center 35%; display: block; }
.why__feature-body { padding: 22px 26px 26px; }
.why__card--feature .why__title { color: #fff; }
.why__card--feature .why__desc { color: rgba(220, 230, 244, .82); }
.why__title { font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; }
.why__desc { color: var(--muted); margin-top: 8px; font-size: .95rem; }

/* ----------------------------- Reviews ------------------------------------- */
.reviews { background: var(--surface-2); }
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review { background: var(--surface); border: 1px solid var(--hairline); border-radius: var(--r-md); padding: 26px; display: flex; flex-direction: column; gap: 14px; }
.review__stars { color: #F6A934; letter-spacing: 2px; font-size: 1rem; }
.review__text { font-family: var(--font-display); font-weight: 500; font-size: 1.12rem; line-height: 1.4; }
.review__by { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: auto; }
.review__author { font-weight: 600; }
.review__route { font-size: .78rem; color: var(--route-2); }

/* ----------------------------- FAQ ----------------------------------------- */
.faq__list { display: flex; flex-direction: column; gap: 10px; }
.faq__item { background: var(--surface); border: 1px solid var(--hairline); border-radius: var(--r-md); overflow: hidden; }
.faq__q { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 22px; cursor: pointer; font-weight: 600; font-size: 1.05rem; list-style: none; }
.faq__q::-webkit-details-marker { display: none; }
.faq__plus { position: relative; flex: none; width: 18px; height: 18px; }
.faq__plus::before, .faq__plus::after { content: ""; position: absolute; background: var(--route-2); border-radius: 2px; transition: transform .25s var(--ease); }
.faq__plus::before { top: 8px; left: 0; right: 0; height: 2px; }
.faq__plus::after { left: 8px; top: 0; bottom: 0; width: 2px; }
.faq__item[open] .faq__plus::after { transform: scaleY(0); }
.faq__a { padding: 0 22px 22px; color: var(--muted); }
.faq__a p { max-width: 62ch; }

/* ----------------------------- CTA band ------------------------------------ */
.cta-band { position: relative; isolation: isolate; overflow: hidden; padding-block: clamp(72px, 10vw, 124px); text-align: center; background: #0a1726; color: #eaf2fb; }
.cta-band__photo { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; object-position: center 58%; }
.cta-band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(8,17,30,.80) 0%, rgba(10,20,34,.72) 100%); }
.cta-band__inner { display: flex; flex-direction: column; align-items: center; position: relative; }
.cta-band__title { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.8rem, 4vw, 2.8rem); letter-spacing: -.02em; }
.cta-band__sub { color: rgba(214, 228, 244, .76); margin-top: 12px; margin-bottom: 28px; }

/* ----------------------------- Footer -------------------------------------- */
.footer { background: var(--ink); color: #c2d0df; border-top: 1px solid rgba(255, 255, 255, .07); padding-top: clamp(48px, 6vw, 72px); }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 30px; }
.footer__tagline { color: rgba(220, 230, 244, .62); margin-top: 14px; max-width: 36ch; font-size: .95rem; }
.footer__pay { display: flex; align-items: center; gap: 14px; margin-top: 18px; flex-wrap: wrap; }
.footer__secure { display: inline-flex; align-items: center; gap: 7px; font-size: .82rem; font-weight: 600; color: #5FB1EA; }
.footer__cards { font-size: .76rem; color: rgba(220, 230, 244, .5); letter-spacing: .04em; }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__h { font-family: var(--font-mono); text-transform: uppercase; font-size: .74rem; letter-spacing: .12em; color: rgba(220, 230, 244, .5); font-weight: 700; }
.footer__col a { color: #c2d0df; opacity: .9; font-size: .95rem; width: fit-content; }
.footer__col a:hover { opacity: 1; color: #7FC2F0; }
.footer__bottom { margin-top: 36px; padding-block: 22px; border-top: 1px solid rgba(255, 255, 255, .08); color: rgba(220, 230, 244, .5); font-size: .85rem; }

/* ----------------------------- Mobile sticky CTA --------------------------- */
.mobile-cta {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 90; display: none;
  align-items: center; justify-content: center; gap: 8px;
  background: var(--brand-grad); color: #fff; font-weight: 700; padding: 15px; border-radius: var(--r-pill);
  box-shadow: 0 10px 28px rgba(26, 130, 200, .42);
}

/* ----------------------------- Reveal (kapalı — statik içerik) ------------- */
.reveal, .reveal.is-in { opacity: 1; transform: none; }

/* ----------------------------- Responsive ---------------------------------- */
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__copy { max-width: none; }
  .hero__route { display: none; }
  .how__track { grid-template-columns: 1fr; gap: 28px; }
  .how__rail { display: none; }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .reviews__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .nav__links { display: none; }
  .nav__manage { display: none; }
  .nav__burger { display: inline-flex; }
  .nav__links.is-open {
    display: flex; flex-direction: column; position: absolute; top: 74px; left: 0; right: 0;
    background: var(--surface); color: var(--text); padding: 18px 24px 24px; gap: 6px; box-shadow: var(--shadow-md);
    border-bottom: 1px solid var(--hairline); margin: 0;
  }
  .nav__links.is-open a { padding: 12px 0; font-size: 1.05rem; }
  .nav__links.is-open a::after { display: none; }
  .why__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .mobile-cta { display: flex; }
  body { padding-bottom: 72px; }
  .trust__sep { display: none; }
  .trust__item { min-width: 44%; }
  .widget__row--bottom { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
  .footer__inner { grid-template-columns: 1fr; }
  .container { padding-inline: 18px; }
}

/* ----------------------------- Reduced motion ------------------------------ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
