/* ==========================================================================
   CARGONET — main.css
   Temel tasarım 1440 px genişlik için kalibre edilmiştir.
   Tüm kırılım noktaları responsive.css içinde tek tek optimize edilir.

   İÇİNDEKİLER
   01 · Tasarım token'ları (CSS değişkenleri)
   02 · Reset & temel
   03 · Tipografi & yardımcılar
   04 · Layout (container / section)
   05 · Butonlar & bağlantılar
   06 · Header · Navigasyon · Mega menü
   07 · Mobil menü
   08 · Hero
   09 · Güven şeridi
   10 · Fiyat hesaplama
   11 · Kartlar (medya / blog)
   12 · Gönderim süreci
   13 · Panel + uygulama mockup'ı
   14 · Alt hizmet şeridi
   15 · Operasyon
   16 · Yorumlar (carousel)
   17 · Final CTA
   18 · Footer
   19 · Modal · Gönderi takip
   20 · Yardımcı bileşenler & animasyon
   ========================================================================== */

/* ==========================================================================
   01 · TASARIM TOKEN'LARI
   ========================================================================== */
:root {
  /* --- marka renkleri --- */
  --cn-navy:            #062B55;
  --cn-navy-2:          #082E59;
  --cn-navy-deep:       #04203F;
  --cn-navy-700:        #0E3F73;
  --cn-orange:          #FF5A1F;
  --cn-orange-600:      #ED4A11;
  --cn-orange-700:      #D63F0C;
  --cn-orange-100:      #FFF1EA;
  --cn-blue:            #2B6FD4;
  --cn-blue-100:        #EAF2FE;
  --cn-purple:          #7B3FE4;
  --cn-purple-100:      #F2EAFE;
  --cn-green:           #12B76A;
  --cn-green-100:       #E4F8EE;
  --cn-amber:           #DC8500;
  --cn-amber-100:       #FEF3E2;

  /* --- nötrler --- */
  --cn-ink:             #0A1F3C;
  --cn-ink-2:           #12294A;
  --cn-body:            #5B6B84;
  --cn-muted:           #8A97AC;
  --cn-line:            #E7ECF3;
  --cn-line-2:          #D9E1EC;
  --cn-white:           #FFFFFF;
  --cn-soft:            #F6F8FC;
  --cn-soft-2:          #EEF3F9;
  --cn-page:            #FBFCFE;

  /* --- tipografi --- */
  --ff-head: 'Plus Jakarta Sans', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  --ff-body: 'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;

  --fs-h1:      48px;   --lh-h1: 1.1;
  --fs-h2:      34px;   --lh-h2: 1.18;
  --fs-h2-lg:   40px;
  --fs-h3:      20px;
  --fs-lead:    17px;
  --fs-body:    15px;
  --fs-sm:      14px;
  --fs-xs:      13px;

  /* --- yarıçaplar --- */
  --r-xs: 8px;  --r-sm: 12px; --r-md: 14px; --r-lg: 18px;
  --r-xl: 22px; --r-2xl: 28px; --r-pill: 999px;

  /* --- gölgeler --- */
  --sh-xs: 0 1px 2px rgba(10,31,60,.05);
  --sh-sm: 0 2px 10px rgba(10,31,60,.05), 0 1px 2px rgba(10,31,60,.04);
  --sh-md: 0 10px 30px rgba(10,31,60,.07), 0 2px 6px rgba(10,31,60,.04);
  --sh-lg: 0 20px 50px rgba(10,31,60,.10), 0 4px 12px rgba(10,31,60,.05);
  --sh-xl: 0 32px 74px rgba(10,31,60,.14);
  --sh-orange: 0 10px 24px rgba(255,90,31,.30);
  --sh-focus: 0 0 0 3px rgba(255,90,31,.28);

  /* --- layout --- */
  --cn-container: 1320px;
  --cn-gutter: 24px;
  --cn-section-y: 88px;
  --cn-header-h: 80px;

  /* --- hareket --- */
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --t-fast: .16s;
  --t: .26s;
  --t-slow: .5s;

  /* --- ikon vurgu rengi (sprite içindeki turuncu detaylar) --- */
  --ic-accent: var(--cn-orange);
}

/* ==========================================================================
   02 · RESET & TEMEL
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--cn-header-h) + 20px);
}

body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--cn-body);
  background: var(--cn-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;              /* 320px dahil yatay kaydırma yok */
  font-feature-settings: 'cv11', 'ss01';
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: var(--ff-head);
  color: var(--cn-ink);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.2;
}
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

a { color: inherit; text-decoration: none; transition: color var(--t) var(--ease); }

button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; padding: 0; cursor: pointer; }

/* odak halkası — yalnızca klavye ile gezinirken */
:focus-visible {
  outline: 3px solid rgba(255,90,31,.55);
  outline-offset: 2px;
  border-radius: 4px;
}
:focus:not(:focus-visible) { outline: none; }

/* sayı girdilerinden ok tuşlarını kaldır */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
input[type=number] { -moz-appearance: textfield; appearance: textfield; }

::selection { background: rgba(255,90,31,.22); color: var(--cn-ink); }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 999;
  background: var(--cn-navy); color: #fff; padding: 12px 20px;
  border-radius: var(--r-xs); font-weight: 600; font-size: var(--fs-sm);
  transition: top var(--t) var(--ease);
}
.skip-link:focus { top: 12px; }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0;
}

/* ==========================================================================
   03 · TİPOGRAFİ & YARDIMCILAR
   ========================================================================== */
.txt-orange { color: var(--cn-orange); }
.mt-12 { margin-top: 12px; }

.section-title {
  font-size: var(--fs-h2);
  line-height: var(--lh-h2);
  color: var(--cn-ink);
}

.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 20px; margin-bottom: 30px;
}
.section-head--center { justify-content: center; text-align: center; margin-bottom: 34px; }

.field-label {
  display: block;
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--cn-muted);
  margin-bottom: 8px;
  letter-spacing: .01em;
}

/* ==========================================================================
   04 · LAYOUT
   ========================================================================== */
.cn-container {
  width: 100%;
  max-width: calc(var(--cn-container) + var(--cn-gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--cn-gutter);
}

.section { padding-block: var(--cn-section-y); }
.section--tight { padding-block: calc(var(--cn-section-y) * .6); }

/* ==========================================================================
   05 · BUTONLAR & BAĞLANTILAR
   ========================================================================== */
.btn,
.btn-cn-primary, .btn-cn-ghost {
  --btn-h: 48px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: var(--btn-h); padding-inline: 24px;
  font-family: var(--ff-head); font-weight: 700; font-size: var(--fs-body);
  border-radius: var(--r-md); border: 1px solid transparent;
  white-space: nowrap; cursor: pointer;
  transition: background-color var(--t) var(--ease), color var(--t) var(--ease),
              box-shadow var(--t) var(--ease), transform var(--t-fast) var(--ease),
              border-color var(--t) var(--ease);
}
.btn i, .btn svg { flex: none; transition: transform var(--t) var(--ease); }

.btn-cn-primary {
  background: var(--cn-orange); color: #fff; box-shadow: var(--sh-orange);
}
.btn-cn-primary:hover { background: var(--cn-orange-600); color: #fff; transform: translateY(-2px); box-shadow: 0 14px 30px rgba(255,90,31,.36); }
.btn-cn-primary:active { transform: translateY(0); background: var(--cn-orange-700); box-shadow: var(--sh-orange); }
.btn-cn-primary:hover i.bi-arrow-right { transform: translateX(4px); }

.btn-cn-ghost {
  background: rgba(255,255,255,.9); color: var(--cn-ink);
  border-color: var(--cn-line-2); box-shadow: var(--sh-xs);
}
.btn-cn-ghost:hover { background: #fff; color: var(--cn-navy); border-color: var(--cn-navy); transform: translateY(-2px); box-shadow: var(--sh-sm); }
.btn-cn-ghost:active { transform: translateY(0); }

.btn-cn-lg  { --btn-h: 56px; padding-inline: 30px; font-size: 16px; }
.btn-cn-sm  { --btn-h: 42px; padding-inline: 20px; font-size: var(--fs-sm); border-radius: var(--r-sm); }
.btn-cn-block { width: 100%; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-head); font-weight: 700; font-size: var(--fs-sm);
  color: var(--cn-ink);
}
.link-arrow i { transition: transform var(--t) var(--ease); }
.link-arrow:hover { color: var(--cn-orange); }
.link-arrow:hover i { transform: translateX(4px); }
.link-arrow--light { color: #fff; }
.link-arrow--light:hover { color: var(--cn-orange); }

/* ==========================================================================
   06a · TOPBAR
   ========================================================================== */
.topbar {
  /* sticky header z-index:100 olduğu için topbar'ın açılır menüsü onun altında
     kalıyordu; topbar kendi katmanını daha üstte kurar. */
  position: relative; z-index: 200;
  background: var(--cn-navy-deep);
  color: rgba(255,255,255,.72);
  font-size: 12.5px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.topbar__inner {
  min-height: 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.topbar__info, .topbar__links { display: flex; align-items: center; gap: 22px; min-width: 0; }
/* ÇOCUK seçici şart: aksi hâlde bu kurallar dil menüsünün içindeki
   <li> öğelerine de sızıyor ve menü ezilip görünmez oluyor. */
.topbar__info > li, .topbar__links > li { display: flex; align-items: center; }
.topbar a, .topbar__hours {
  display: inline-flex; align-items: center; gap: 7px;
  color: rgba(255,255,255,.72); white-space: nowrap; line-height: 1;
}
.topbar a { min-height: 40px; }
.topbar i { font-size: 12px; color: var(--cn-orange); }
.topbar a:hover { color: #fff; }
.topbar a:hover i { color: #fff; }
.topbar__sep { width: 1px; height: 16px; background: rgba(255,255,255,.16); }

/* --- dil seçici --- */
.lang { position: relative; }
.lang__btn {
  display: inline-flex; align-items: center; gap: 7px;
  min-height: 40px; padding-inline: 4px;
  color: rgba(255,255,255,.82); font-weight: 600; font-size: 12.5px;
}
.lang__btn svg { width: 20px; height: 14px; border-radius: 2px; box-shadow: 0 0 0 1px rgba(255,255,255,.25); }
.lang__btn i { font-size: 10px; color: rgba(255,255,255,.55); transition: transform var(--t) var(--ease); }
.lang__btn:hover { color: #fff; }
.lang.is-open .lang__btn i { transform: rotate(180deg); }
.lang__list {
  position: absolute; top: calc(100% - 2px); right: 0; z-index: 70; min-width: 168px;
  background: #fff; border: 1px solid var(--cn-line); border-radius: var(--r-md);
  box-shadow: var(--sh-lg); padding: 6px; animation: menuIn .18s var(--ease-out) both;
}
.lang__list li {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 11px; border-radius: var(--r-xs); cursor: pointer;
  font-size: 13.5px; color: var(--cn-ink-2); white-space: nowrap;
}
.lang__list li svg { width: 20px; height: 14px; border-radius: 2px; box-shadow: 0 0 0 1px rgba(10,31,60,.1); }
.lang__list li:hover { background: var(--cn-soft); }
.lang__list li[aria-selected="true"] { background: var(--cn-orange-100); color: var(--cn-orange); font-weight: 600; }

/* ==========================================================================
   06 · HEADER · NAVİGASYON · MEGA MENÜ
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--t) var(--ease), border-color var(--t) var(--ease), background-color var(--t) var(--ease);
}
.site-header.is-stuck {
  background: rgba(255,255,255,.96);
  border-bottom-color: var(--cn-line);
  box-shadow: 0 6px 24px rgba(10,31,60,.07);
}

.header-inner {
  position: relative;               /* mega menü buna göre konumlanır */
  height: var(--cn-header-h);
  display: flex; align-items: center; gap: 26px;
}

/* --- marka kilidi (amblem + kelime markası) --- */
.brand { display: inline-flex; align-items: center; gap: 10px; flex: none; }
.brand__mark { width: auto; height: 44px; }
/* display:block — flex-wrap kullanılırsa alt satırdaki slogan blokun genişliğini
   şişiriyor ve logo 264 px'e çıkıyordu. Blok akışında bu sorun oluşmuyor. */
.brand__word {
  display: block; white-space: nowrap;
  font-family: var(--ff-head); font-weight: 800; letter-spacing: -.02em;
  font-size: 25px; line-height: 1; color: var(--cn-navy);
}
.brand__word i { font-style: normal; color: var(--cn-orange); }
.brand__word em {
  display: block; font-style: normal; font-family: var(--ff-body);
  font-size: 6.5px; font-weight: 500; letter-spacing: .26em;
  color: var(--cn-navy); opacity: .55; margin-top: 5px;
}
.brand--light .brand__word { color: #fff; }
.brand--light .brand__word em { color: #fff; opacity: .5; }

.main-nav { margin-inline: auto; }
.nav-list { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
/* mega menüyü taşıyan öğe konumlanma bağlamı oluşturmasın:
   panel header genişliğine göre ortalanır, hiçbir kenardan taşmaz. */
.nav-item.has-mega { position: static; }

.nav-link {
  display: inline-flex; align-items: center; gap: 6px;
  height: 40px; padding-inline: 13px; border-radius: var(--r-sm);
  font-family: var(--ff-head); font-weight: 600; font-size: var(--fs-body);
  color: var(--cn-ink); white-space: nowrap;
}
.nav-caret { font-size: 11px; color: var(--cn-muted); transition: transform var(--t) var(--ease); }
.nav-link:hover { color: var(--cn-orange); background: var(--cn-orange-100); }
.nav-link:hover .nav-caret { color: var(--cn-orange); }
.nav-item.is-open > .nav-link { color: var(--cn-orange); background: var(--cn-orange-100); }
.nav-item.is-open .nav-caret { transform: rotate(180deg); }

/* --- açılır liste --- */
.dropdown {
  position: absolute; top: calc(100% + 10px); left: 0; min-width: 268px;
  background: #fff; border: 1px solid var(--cn-line); border-radius: var(--r-lg);
  box-shadow: var(--sh-lg); padding: 8px; z-index: 60;
  animation: menuIn .2s var(--ease-out) both;
}
.dropdown a {
  display: block; padding: 11px 14px; border-radius: var(--r-sm);
  font-size: var(--fs-sm); font-weight: 500; color: var(--cn-ink-2);
}
.dropdown a:hover { background: var(--cn-soft); color: var(--cn-orange); }

/* --- mega menü --- */
.mega {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%);
  width: min(920px, calc(100vw - 48px));
  display: grid; grid-template-columns: 1fr 268px; gap: 10px;
  background: #fff; border: 1px solid var(--cn-line); border-radius: var(--r-xl);
  box-shadow: var(--sh-xl); padding: 14px; z-index: 60;
  animation: menuIn .22s var(--ease-out) both;
}
.mega--sm { width: min(680px, calc(100vw - 48px)); grid-template-columns: 1fr; }
.mega__grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 4px; }
.mega__grid--2 { grid-template-columns: repeat(2, minmax(0,1fr)); }

.mega__item {
  display: flex; gap: 13px; padding: 13px; border-radius: var(--r-md);
  transition: background-color var(--t) var(--ease);
}
.mega__item:hover { background: var(--cn-soft); }
.mega__ico {
  flex: none; width: 42px; height: 42px; border-radius: var(--r-sm);
  display: grid; place-items: center;
  background: var(--cn-soft-2); color: var(--cn-navy);
  transition: background-color var(--t) var(--ease), color var(--t) var(--ease);
}
.mega__item:hover .mega__ico { background: var(--cn-navy); color: #fff; --ic-accent: #FF7A45; }
.mega__item strong {
  display: block; font-family: var(--ff-head); font-weight: 700;
  font-size: var(--fs-sm); color: var(--cn-ink); margin-bottom: 2px;
}
.mega__item small { display: block; font-size: var(--fs-xs); line-height: 1.5; color: var(--cn-body); }

.mega__aside {
  background: linear-gradient(160deg, var(--cn-navy-2), var(--cn-navy-deep));
  border-radius: var(--r-lg); padding: 22px; color: #fff;
  display: flex; flex-direction: column; gap: 8px; justify-content: center;
}
.mega__aside-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--cn-orange);
}
.mega__aside strong { font-family: var(--ff-head); font-size: 17px; font-weight: 700; line-height: 1.3; }
.mega__aside p { font-size: var(--fs-xs); line-height: 1.6; color: rgba(255,255,255,.72); margin-bottom: 4px; }

@keyframes menuIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
.mega { animation-name: menuInCentered; }
@keyframes menuInCentered {
  from { opacity: 0; transform: translateX(-50%) translateY(-6px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* --- header sağ aksiyonlar --- */
.header-actions { display: flex; align-items: center; gap: 6px; flex: none; }
.header-action {
  display: inline-flex; align-items: center; gap: 8px;
  height: 40px; padding-inline: 12px; border-radius: var(--r-sm);
  font-family: var(--ff-head); font-weight: 600; font-size: var(--fs-sm);
  color: var(--cn-ink); white-space: nowrap;
}
.header-action i { font-size: 17px; color: var(--cn-navy); }
.header-action:hover { color: var(--cn-orange); background: var(--cn-orange-100); }
.header-action:hover i { color: var(--cn-orange); }
.header-action--divided { margin-right: 8px; }
.header-actions .btn { margin-left: 4px; }
.header-cta { display: none; }      /* yalnızca ≥1600 px'te görünür */

.steps__label { display: inline; }
.resources__all { display: none; }  /* yalnızca ≤991 px'te görünür */

/* --- hamburger --- */
.burger {
  display: none; width: 44px; height: 44px; border-radius: var(--r-sm);
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  border: 1px solid var(--cn-line); flex: none; background: #fff;
}
.burger span {
  display: block; width: 19px; height: 2px; border-radius: 2px;
  background: var(--cn-navy); transition: transform var(--t) var(--ease), opacity var(--t) var(--ease);
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   07 · MOBİL MENÜ
   ========================================================================== */
.nav-scrim {
  /* topbar z-index:200 olduğu için mobil menü ve perde onun da üstünde olmalı */
  position: fixed; inset: 0; z-index: 290;
  background: rgba(6,43,85,.42); backdrop-filter: blur(2px);
  opacity: 0; transition: opacity var(--t) var(--ease);
}
.nav-scrim.is-visible { opacity: 1; }

.mobile-nav {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 300;
  width: min(400px, 92vw);
  background: #fff;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .34s var(--ease-out);
  box-shadow: -20px 0 60px rgba(10,31,60,.18);
  padding-bottom: env(safe-area-inset-bottom);
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav:focus { outline: none; }   /* açılışta panel odaklanır, halka çizilmez */

.mobile-nav__head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 16px 20px; border-bottom: 1px solid var(--cn-line); flex: none;
}
.mobile-nav__close {
  width: 44px; height: 44px; border-radius: var(--r-sm);
  display: grid; place-items: center; color: var(--cn-ink);
  border: 1px solid var(--cn-line); flex: none;
}
.mobile-nav__close:hover { background: var(--cn-soft); color: var(--cn-orange); }

.mobile-nav__body {
  flex: 1 1 auto; min-height: 0;
  overflow-y: auto; -webkit-overflow-scrolling: touch; overscroll-behavior: contain;
  padding: 18px 20px 32px;          /* alttaki sabit blok içeriği kırpmasın */
}

.mobile-nav__quick { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 20px; }
.mnq {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; min-height: 78px; padding: 12px;
  border: 1px solid var(--cn-line); border-radius: var(--r-md);
  background: var(--cn-soft); color: var(--cn-ink);
  font-family: var(--ff-head); font-weight: 600; font-size: var(--fs-xs); text-align: center;
}
.mnq i { font-size: 22px; color: var(--cn-navy); }
.mnq:hover, .mnq:active { border-color: var(--cn-orange); color: var(--cn-orange); background: var(--cn-orange-100); }

.m-acc__item { border-bottom: 1px solid var(--cn-line); }
.m-acc__btn, .m-acc__link {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  min-height: 56px; padding: 8px 2px; text-align: left;
  font-family: var(--ff-head); font-weight: 700; font-size: 16px; color: var(--cn-ink);
}
.m-acc__btn i { font-size: 13px; color: var(--cn-muted); transition: transform var(--t) var(--ease); }
.m-acc__btn[aria-expanded="true"] { color: var(--cn-orange); }
.m-acc__btn[aria-expanded="true"] i { transform: rotate(180deg); color: var(--cn-orange); }
.m-acc__panel { display: grid; gap: 2px; padding: 2px 0 14px; }
.m-acc__panel a {
  display: block; min-height: 46px; padding: 11px 14px; border-radius: var(--r-sm);
  font-size: var(--fs-sm); font-weight: 500; color: var(--cn-body); background: var(--cn-soft);
}
.m-acc__panel a:hover, .m-acc__panel a:active { background: var(--cn-orange-100); color: var(--cn-orange); }

.mobile-nav__extra {
  margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--cn-line);
  display: grid; gap: 2px;
}
.mobile-nav__extra > a {
  display: flex; align-items: center; gap: 10px; min-height: 46px;
  font-size: var(--fs-sm); font-weight: 600; color: var(--cn-ink-2);
}
.mobile-nav__extra > a i { color: var(--cn-orange); font-size: 15px; }
.mobile-nav__extra > a:hover { color: var(--cn-orange); }
.mobile-nav__langs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.mobile-nav__langs button {
  display: inline-flex; align-items: center; gap: 7px;
  min-height: 42px; padding-inline: 14px; border-radius: var(--r-sm);
  border: 1px solid var(--cn-line); background: var(--cn-soft);
  font-family: var(--ff-head); font-weight: 700; font-size: var(--fs-xs); color: var(--cn-ink-2);
}
.mobile-nav__langs button svg { width: 20px; height: 14px; border-radius: 2px; box-shadow: 0 0 0 1px rgba(10,31,60,.1); }
.mobile-nav__langs button.is-active { background: var(--cn-orange-100); border-color: var(--cn-orange); color: var(--cn-orange); }

.mobile-nav__foot {
  position: relative; flex: none;
  padding: 16px 20px calc(16px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--cn-line); display: grid; gap: 12px;
  background: #fff;
}
/* kaydırılabilir alanın devam ettiğini gösteren yumuşak geçiş */
.mobile-nav__foot::before {
  content: ''; position: absolute; left: 0; right: 0; bottom: 100%; height: 26px;
  background: linear-gradient(to top, #fff, rgba(255,255,255,0));
  pointer-events: none;
}
.mobile-nav__phone {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--ff-head); font-weight: 700; font-size: var(--fs-body); color: var(--cn-navy);
  min-height: 44px;
}
.mobile-nav__phone i { color: var(--cn-orange); }

body.nav-open { overflow: hidden; }

/* ==========================================================================
   08 · HERO
   ========================================================================== */
.hero {
  position: relative; isolation: isolate;
  padding-top: 62px; padding-bottom: 128px;
  min-height: 560px; display: flex; align-items: center;
  background: linear-gradient(180deg, #F3F7FC, #E9EFF7);
  overflow: hidden;                 /* uçak/koli taşmaları yatay kaydırma yapmasın */
}

.hero__bg { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero__bg picture, .hero__bg img { display: block; width: 100%; height: 100%; }
.hero__bg img { object-fit: cover; object-position: 62% 50%; }

/* soldan sağa beyaz yıkama — başlık okunabilirliği */
.hero__wash {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(96deg,
      rgba(255,255,255,.97) 0%,
      rgba(255,255,255,.94) 22%,
      rgba(244,248,253,.66) 40%,
      rgba(255,255,255,.10) 58%,
      rgba(255,255,255,0) 72%),
    linear-gradient(180deg, rgba(255,255,255,.5) 0%, rgba(255,255,255,0) 22%);
}

/* noktalı dünya haritası (mask ile renklendirilir) */
.hero__map {
  position: absolute; z-index: 2;
  right: -4%; top: 6%; width: 82%; aspect-ratio: 1200 / 473;
  background: url("../images/patterns/world-map-dots-light.svg") center/contain no-repeat;
  opacity: .5; pointer-events: none;
}

.hero__routes { position: absolute; z-index: 3; right: 0; top: 8%; width: 74%; height: 74%; pointer-events: none; }
.hero__routes svg { width: 100%; height: 100%; }

.hero__pin {
  position: absolute; z-index: 3; width: 12px; height: 12px; border-radius: 50%;
  background: #fff; box-shadow: 0 0 0 4px rgba(255,255,255,.35), 0 2px 8px rgba(6,43,85,.3);
}
.hero__pin::after {
  content: ''; position: absolute; inset: -8px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.6); animation: pinPulse 2.8s var(--ease) infinite;
}
.hero__pin--1 { left: 52%; top: 26%; }
.hero__pin--2 { left: 66%; top: 20%; animation-delay: .6s; }
.hero__pin--2::after { animation-delay: .9s; }
.hero__pin--3 { left: 47%; top: 52%; }
.hero__pin--3::after { animation-delay: 1.7s; }
@keyframes pinPulse { 0% { transform: scale(.7); opacity: 1; } 70%, 100% { transform: scale(1.6); opacity: 0; } }

.hero__inner {
  position: relative; z-index: 4;
  display: grid; grid-template-columns: minmax(0, 46%) minmax(0, 1fr);
  align-items: center; gap: 20px;
}

.hero__content { position: relative; z-index: 5; max-width: 560px; }
.hero__title { font-size: var(--fs-h1); line-height: var(--lh-h1); margin-bottom: 20px; }
.hero__lead {
  font-size: var(--fs-lead); line-height: 1.68; color: var(--cn-body);
  max-width: 460px; margin-bottom: 30px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }

.hero__proof { position: relative; z-index: 6; display: flex; align-items: center; gap: 14px; }
.avatar-stack { display: flex; }
.avatar-stack li { margin-left: -11px; }
.avatar-stack li:first-child { margin-left: 0; }
.avatar-stack img {
  width: 40px; height: 40px; border-radius: 50%; object-fit: cover;
  border: 2.5px solid #fff; box-shadow: 0 2px 8px rgba(10,31,60,.14);
}
.hero__proof-text { font-size: var(--fs-sm); color: var(--cn-body); }
.hero__proof-text strong { color: var(--cn-ink); font-weight: 700; }

/* --- görsel: koli + uçak --- */
.hero__visual { position: relative; z-index: 1; padding-right: 230px; }
.hero__parcel-wrap { position: relative; display: block; }
.hero__parcel {
  width: 100%; height: auto;
  filter: drop-shadow(0 30px 44px rgba(10,31,60,.32));
  animation: floatY 7s var(--ease) infinite;
}
/* koli üzerindeki marka kilidi — perspektife göre hizalandı */
.hero__parcel-brand {
  position: absolute; left: 15.5%; top: 52%; width: 34%;
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  transform: rotate(-1.6deg) skewY(4.6deg);
  opacity: .92; pointer-events: none;
  animation: floatY 7s var(--ease) infinite;
}
.hero__parcel-brand img { width: 38%; height: auto; }
.hero__parcel-brand b {
  font-family: var(--ff-head); font-weight: 800; letter-spacing: -.02em;
  font-size: clamp(11px, 1.5vw, 21px); line-height: 1; color: var(--cn-navy);
}
.hero__parcel-brand b i { font-style: normal; color: var(--cn-orange); }

.hero__plane {
  position: absolute; right: 4%; top: -16%; width: 44%; height: auto; z-index: 1;
  filter: drop-shadow(0 20px 30px rgba(10,31,60,.22));
  animation: planeDrift 12s var(--ease) infinite;
}
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-11px); } }
@keyframes planeDrift {
  0%,100% { transform: translate(0,0) rotate(0deg); }
  50%     { transform: translate(-14px,-9px) rotate(-1.2deg); }
}

/* --- sağdaki durum kartları --- */
.hero__status {
  position: absolute; right: var(--cn-gutter); top: 50%; transform: translateY(-50%);
  z-index: 6; display: grid; gap: 12px; width: 218px;
}
.status-card {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.96); border: 1px solid rgba(255,255,255,.9);
  border-radius: var(--r-md); padding: 12px 14px;
  box-shadow: 0 14px 34px rgba(10,31,60,.14);
  animation: cardIn .7s var(--ease-out) both; animation-delay: var(--d, 0s);
}
.status-card__ico {
  flex: none; width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center; color: #fff; --ic-accent: rgba(255,255,255,.6);
}
.status-card__ico--green  { background: var(--cn-green); }
.status-card__ico--blue   { background: var(--cn-blue); }
.status-card__ico--orange { background: var(--cn-orange); }
.status-card__txt { min-width: 0; }
.status-card__txt strong {
  display: block; font-family: var(--ff-head); font-weight: 700;
  font-size: var(--fs-xs); color: var(--cn-ink); line-height: 1.3;
}
.status-card__txt small { display: block; font-size: 11.5px; color: var(--cn-muted); line-height: 1.4; }
@keyframes cardIn { from { opacity: 0; transform: translateX(24px); } to { opacity: 1; transform: translateX(0); } }

/* ==========================================================================
   09 · GÜVEN ŞERİDİ
   ========================================================================== */
.trust { position: relative; z-index: 8; margin-top: -66px; }
.trust__card {
  display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 10px;
  background: #fff; border: 1px solid var(--cn-line); border-radius: var(--r-xl);
  box-shadow: var(--sh-lg); padding: 26px 30px;
}
.trust__item { display: flex; align-items: center; gap: 13px; min-width: 0; }
.trust__ico { flex: none; color: var(--cn-navy); }
.trust__txt { min-width: 0; }
.trust__txt strong {
  display: block; font-family: var(--ff-head); font-weight: 700;
  font-size: 16px; color: var(--cn-ink); line-height: 1.3; letter-spacing: -.01em;
}
.trust__txt small { display: block; font-size: var(--fs-xs); color: var(--cn-body); line-height: 1.5; }

/* ==========================================================================
   10 · FİYAT HESAPLAMA
   ========================================================================== */
.calc { padding-block: calc(var(--cn-section-y) * .72) calc(var(--cn-section-y) * .55); }
/* overflow:hidden KULLANILMAZ — özel select'in açılır listesini kesiyordu.
   Köşe yuvarlaklığı çocuk elemanların kendi radius'larıyla korunur. */
.calc { position: relative; z-index: 20; }
.calc__card {
  /* Kart kendi katmanını kurar; böylece açılır listeler bir sonraki bölümün
     position:relative kartlarının altında kalmaz. */
  position: relative; z-index: 30;
  display: grid; grid-template-columns: minmax(0, 25%) minmax(0, 1fr);
  background: #fff; border: 1px solid var(--cn-line); border-radius: var(--r-xl);
  box-shadow: var(--sh-md);
}
.calc__intro { border-radius: var(--r-xl) 0 0 var(--r-xl); }
.calc__form  { border-radius: 0 var(--r-xl) var(--r-xl) 0; }
.calc__intro { padding: 42px 36px; align-self: center; }
.calc__title { font-size: var(--fs-h2-lg); line-height: 1.14; margin-bottom: 12px; }
.calc__sub { font-size: var(--fs-body); color: var(--cn-body); }
.calc__notes { margin-top: 22px; display: grid; gap: 8px; }
.calc__notes li { display: flex; align-items: center; gap: 8px; font-size: var(--fs-xs); color: var(--cn-body); }
.calc__notes i { color: var(--cn-green); font-size: 15px; }

.calc__form { position: relative; padding: 30px 36px 34px; border-left: 1px solid var(--cn-line); min-width: 0; }

/* --- adım sekmeleri --- */
.steps { display: flex; gap: 38px; border-bottom: 1px solid var(--cn-line); margin-bottom: 26px; }
.steps__btn {
  position: relative; display: inline-flex; align-items: center; gap: 10px;
  padding: 0 2px 15px; font-family: var(--ff-head); font-weight: 700;
  font-size: var(--fs-sm); color: var(--cn-muted); white-space: nowrap;
}
.steps__btn::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px;
  background: var(--cn-orange); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform var(--t) var(--ease);
}
.steps__btn.is-active { color: var(--cn-ink); }
.steps__btn.is-active::after { transform: scaleX(1); }
.steps__btn:hover:not(.is-active) { color: var(--cn-ink-2); }
.steps__num {
  flex: none; width: 24px; height: 24px; border-radius: 50%;
  display: grid; place-items: center; font-size: 12px; font-weight: 700;
  border: 1.5px solid var(--cn-line-2); color: var(--cn-muted); background: #fff;
  transition: background-color var(--t) var(--ease), border-color var(--t) var(--ease), color var(--t) var(--ease);
}
.steps__btn.is-active .steps__num { background: var(--cn-orange); border-color: var(--cn-orange); color: #fff; }
.steps__btn.is-done  .steps__num { background: var(--cn-orange-100); border-color: var(--cn-orange); color: var(--cn-orange); }

/* --- adım panelleri --- */
.step-panel { display: none; }
.step-panel.is-active { display: block; animation: stepIn .34s var(--ease-out) both; }
@keyframes stepIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.calc__row {
  display: grid; grid-template-columns: minmax(0,1fr) 44px minmax(0,1fr) 210px;
  gap: 18px; align-items: start;
}
.calc__col { min-width: 0; }
.calc__swap { display: grid; place-items: center; padding-top: 46px; }
.swap-btn {
  width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center;
  background: var(--cn-soft); border: 1px solid var(--cn-line); color: var(--cn-navy);
  font-size: 13px; cursor: default;
}
.calc__cta { padding-top: 27px; }
.calc__hint { margin-top: 12px; font-size: var(--fs-xs); color: var(--cn-muted); text-align: center; }

/* --- özel select --- */
.cn-select { position: relative; }
.cn-select__btn {
  width: 100%; min-height: 52px; display: flex; align-items: center; gap: 10px;
  padding: 0 15px; background: #fff; border: 1px solid var(--cn-line-2);
  border-radius: var(--r-sm); font-family: var(--ff-body); font-weight: 500;
  font-size: var(--fs-body); color: var(--cn-ink); text-align: left;
  transition: border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.cn-select__btn:hover { border-color: var(--cn-navy); }
.cn-select.is-open .cn-select__btn { border-color: var(--cn-orange); box-shadow: var(--sh-focus); }
.cn-select__flag { flex: none; width: 24px; height: 16px; border-radius: 3px; box-shadow: 0 0 0 1px rgba(10,31,60,.1); }
.cn-select__value { flex: 1 1 auto; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cn-select__caret { flex: none; font-size: 12px; color: var(--cn-muted); transition: transform var(--t) var(--ease); }
.cn-select.is-open .cn-select__caret { transform: rotate(180deg); color: var(--cn-orange); }

.cn-select.is-up .cn-select__list { top: auto; bottom: calc(100% + 6px); }
.cn-select__list {
  position: absolute; top: calc(100% + 6px); left: 0; right: 0; z-index: 50;
  background: #fff; border: 1px solid var(--cn-line); border-radius: var(--r-md);
  box-shadow: var(--sh-lg); padding: 6px; max-height: 288px; overflow-y: auto;
  overscroll-behavior: contain; animation: menuIn .18s var(--ease-out) both;
}
.cn-select__list li {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: var(--r-xs); cursor: pointer;
  font-size: var(--fs-sm); color: var(--cn-ink-2);
}
.cn-select__list li svg { flex: none; width: 22px; height: 15px; border-radius: 2px; box-shadow: 0 0 0 1px rgba(10,31,60,.1); }
.cn-select__list li:hover,
.cn-select__list li.is-active { background: var(--cn-soft); }
.cn-select__list li[aria-selected="true"] { background: var(--cn-orange-100); color: var(--cn-orange); font-weight: 600; }

/* --- alan bileşenleri (adım 2) --- */
.field { margin-bottom: 20px; }
.calc__grid2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }

.input {
  width: 100%; min-height: 52px; padding: 0 15px;
  background: #fff; border: 1px solid var(--cn-line-2); border-radius: var(--r-sm);
  font-size: var(--fs-body); color: var(--cn-ink);
  transition: border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.input:focus { outline: none; border-color: var(--cn-orange); box-shadow: var(--sh-focus); }

.chips { border: 0; padding: 0; margin: 0 0 22px; }
.chips legend { padding: 0; }
.chip { display: inline-block; margin: 0 8px 8px 0; }
.chip input { position: absolute; opacity: 0; pointer-events: none; }
.chip span {
  display: inline-flex; align-items: center; gap: 8px; min-height: 44px;
  padding: 0 16px; border: 1px solid var(--cn-line-2); border-radius: var(--r-pill);
  font-size: var(--fs-sm); font-weight: 500; color: var(--cn-body); cursor: pointer;
  transition: all var(--t) var(--ease);
}
.chip span i { font-size: 15px; }
.chip:hover span { border-color: var(--cn-navy); color: var(--cn-ink); }
.chip input:checked + span { background: var(--cn-orange-100); border-color: var(--cn-orange); color: var(--cn-orange); font-weight: 600; }
.chip input:focus-visible + span { outline: 3px solid rgba(255,90,31,.55); outline-offset: 2px; }

.stepper {
  display: flex; align-items: center; height: 52px;
  border: 1px solid var(--cn-line-2); border-radius: var(--r-sm); overflow: hidden; background: #fff;
}
.stepper__btn {
  flex: none; width: 46px; align-self: stretch; display: grid; place-items: center;
  color: var(--cn-navy); font-size: 16px; transition: background-color var(--t) var(--ease);
}
.stepper__btn:hover { background: var(--cn-soft); color: var(--cn-orange); }
.stepper__input {
  flex: 1 1 auto; min-width: 0; height: 100%; border: 0; text-align: center;
  font-family: var(--ff-head); font-weight: 700; font-size: var(--fs-body); color: var(--cn-ink);
  background: transparent;
}
.stepper__input:focus { outline: none; }
.stepper:focus-within { border-color: var(--cn-orange); box-shadow: var(--sh-focus); }

.dims { display: flex; align-items: center; gap: 8px; }
.dims__cell { position: relative; flex: 1 1 0; min-width: 0; }
.dims__cell input {
  width: 100%; height: 52px; padding: 10px 42px 10px 14px;
  border: 1px solid var(--cn-line-2); border-radius: var(--r-sm); background: #fff;
  font-family: var(--ff-head); font-weight: 700; font-size: var(--fs-body); color: var(--cn-ink);
}
.dims__cell input:focus { outline: none; border-color: var(--cn-orange); box-shadow: var(--sh-focus); }
.dims__cell em {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  font-style: normal; font-size: 11px; color: var(--cn-muted); pointer-events: none;
}
.dims__x { flex: none; color: var(--cn-muted); font-size: 13px; }
.field-help { margin-top: 9px; font-size: var(--fs-xs); color: var(--cn-muted); }
.field-help strong { color: var(--cn-ink); }

.field--switch { display: flex; flex-direction: column; justify-content: flex-start; }
.switch { display: flex; align-items: center; gap: 11px; min-height: 52px; cursor: pointer; }
.switch input { position: absolute; opacity: 0; pointer-events: none; }
.switch__track {
  flex: none; width: 44px; height: 26px; border-radius: var(--r-pill);
  background: var(--cn-line-2); position: relative; transition: background-color var(--t) var(--ease);
}
.switch__track::after {
  content: ''; position: absolute; top: 3px; left: 3px; width: 20px; height: 20px;
  border-radius: 50%; background: #fff; box-shadow: 0 1px 3px rgba(10,31,60,.28);
  transition: transform var(--t) var(--ease);
}
.switch input:checked + .switch__track { background: var(--cn-orange); }
.switch input:checked + .switch__track::after { transform: translateX(18px); }
.switch input:focus-visible + .switch__track { outline: 3px solid rgba(255,90,31,.55); outline-offset: 2px; }
.switch__label { font-size: var(--fs-sm); color: var(--cn-ink-2); }

.calc__nav { display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; margin-top: 26px; }

/* --- adım 3: teklifler --- */
.quote__summary {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 12px; padding: 14px 18px; margin-bottom: 18px;
  background: var(--cn-soft); border: 1px solid var(--cn-line); border-radius: var(--r-md);
}
.quote__route { display: flex; align-items: center; gap: 10px; font-family: var(--ff-head); font-weight: 700; color: var(--cn-ink); font-size: var(--fs-sm); }
.quote__route i { color: var(--cn-orange); }
.quote__flag { width: 24px; height: 16px; border-radius: 3px; box-shadow: 0 0 0 1px rgba(10,31,60,.1); }
.quote__meta { font-size: var(--fs-xs); color: var(--cn-body); }

.quote__list { display: grid; gap: 12px; }
.quote-card {
  display: grid; grid-template-columns: 44px minmax(0,1fr) auto auto;
  gap: 16px; align-items: center;
  padding: 16px 18px; border: 1px solid var(--cn-line-2); border-radius: var(--r-md);
  background: #fff; transition: border-color var(--t) var(--ease), box-shadow var(--t) var(--ease), transform var(--t) var(--ease);
  animation: stepIn .35s var(--ease-out) both;
}
.quote-card:hover { border-color: var(--cn-navy); box-shadow: var(--sh-sm); }
.quote-card.is-best { border-color: var(--cn-orange); box-shadow: 0 0 0 1px var(--cn-orange), var(--sh-sm); }
.quote-card__ico {
  width: 44px; height: 44px; border-radius: var(--r-sm); display: grid; place-items: center;
  background: var(--cn-soft-2); color: var(--cn-navy); flex: none;
}
.quote-card.is-best .quote-card__ico { background: var(--cn-orange-100); color: var(--cn-orange); --ic-accent: var(--cn-navy); }
.quote-card__name { font-family: var(--ff-head); font-weight: 700; font-size: var(--fs-body); color: var(--cn-ink); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.quote-card__tag {
  font-size: 10.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--cn-orange); background: var(--cn-orange-100); padding: 3px 8px; border-radius: var(--r-pill);
}
.quote-card__desc { font-size: var(--fs-xs); color: var(--cn-body); }
.quote-card__eta { text-align: right; font-size: var(--fs-xs); color: var(--cn-body); white-space: nowrap; }
.quote-card__eta b { display: block; font-family: var(--ff-head); color: var(--cn-ink); font-size: var(--fs-sm); }
.quote-card__price { text-align: right; white-space: nowrap; }
.quote-card__price b { font-family: var(--ff-head); font-weight: 800; font-size: 21px; color: var(--cn-ink); letter-spacing: -.02em; }
.quote-card__price small { display: block; font-size: 11px; color: var(--cn-muted); }

.quote__disclaimer {
  display: flex; gap: 9px; margin-top: 18px; padding: 13px 15px;
  background: var(--cn-blue-100); border-radius: var(--r-sm);
  font-size: var(--fs-xs); line-height: 1.6; color: var(--cn-ink-2);
}
.quote__disclaimer i { color: var(--cn-blue); flex: none; margin-top: 2px; }

/* ==========================================================================
   11 · KARTLAR (medya kartı + blog kartı)
   ========================================================================== */
.card-grid { display: grid; gap: 24px; }
.card-grid--3 { grid-template-columns: repeat(3, minmax(0,1fr)); }

.media-card {
  position: relative; display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--cn-line); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--sh-sm);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
}
.media-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); border-color: var(--cn-line-2); }
.media-card__link { position: absolute; inset: 0; z-index: 3; border-radius: inherit; }
.media-card__link:focus-visible { outline: 3px solid rgba(255,90,31,.6); outline-offset: -3px; }

.media-card__media { position: relative; aspect-ratio: 15 / 8; overflow: hidden; background: var(--cn-soft-2); }
.media-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.media-card:hover .media-card__media img { transform: scale(1.055); }

.media-card__badge {
  position: absolute; left: 20px; bottom: 16px; z-index: 2;
  width: 54px; height: 54px; border-radius: var(--r-md);
  display: grid; place-items: center; color: #fff; --ic-accent: rgba(255,255,255,.62);
  box-shadow: 0 10px 22px rgba(10,31,60,.30);
  transition: transform var(--t) var(--ease);
}
.media-card:hover .media-card__badge { transform: translateY(-3px) scale(1.04); }
.media-card__badge--orange { background: linear-gradient(150deg, #FF7A45, var(--cn-orange)); }
.media-card__badge--blue   { background: linear-gradient(150deg, #4C8BE8, var(--cn-blue)); }
.media-card__badge--purple { background: linear-gradient(150deg, #9A64F0, var(--cn-purple)); }

.media-card__body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1 1 auto; }
.media-card__title { font-size: var(--fs-h3); font-weight: 700; margin-bottom: 9px; line-height: 1.32; }
.media-card__text { font-size: var(--fs-sm); line-height: 1.62; color: var(--cn-body); margin-bottom: 16px; }
.media-card__body .link-arrow { margin-top: auto; align-self: flex-start; }
.media-card:hover .link-arrow { color: var(--cn-orange); }
.media-card:hover .link-arrow i { transform: translateX(4px); }

/* --- blog kartı (yatay) --- */
.post-card {
  position: relative; display: grid; grid-template-columns: minmax(0,34%) minmax(0,1fr);
  gap: 20px; align-items: center; padding: 16px;
  background: #fff; border: 1px solid var(--cn-line); border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); border-color: var(--cn-line-2); }
.post-card__link { position: absolute; inset: 0; z-index: 3; border-radius: inherit; }
.post-card__link:focus-visible { outline: 3px solid rgba(255,90,31,.6); outline-offset: -3px; }
.post-card__media { aspect-ratio: 1; border-radius: var(--r-md); overflow: hidden; background: var(--cn-soft-2); }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.post-card:hover .post-card__media img { transform: scale(1.06); }
.post-card__body { min-width: 0; padding-right: 6px; }
.post-card__title { font-size: 17px; font-weight: 700; line-height: 1.35; margin-bottom: 8px; }
.post-card__text { font-size: var(--fs-xs); line-height: 1.6; color: var(--cn-body); margin-bottom: 14px; }
.post-card:hover .link-arrow { color: var(--cn-orange); }
.post-card:hover .link-arrow i { transform: translateX(4px); }
.resources__all { margin-top: 22px; }

/* ==========================================================================
   12 · GÖNDERİM SÜRECİ
   ========================================================================== */
.process__list {
  position: relative;
  display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px;
  padding-inline: 2%;
}
.process__list::before {
  content: ''; position: absolute; top: 44px; left: 6%; right: 1%;
  border-top: 2px dashed var(--cn-line-2); z-index: 0;
}
.process__step { position: relative; text-align: center; }
.process__ico {
  position: relative; z-index: 2;
  width: 88px; height: 88px; margin: 0 auto 18px; border-radius: 50%;
  display: grid; place-items: center;
  background: #fff; border: 1px solid var(--cn-line); color: var(--cn-navy);
  box-shadow: 0 6px 18px rgba(10,31,60,.06);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
}
.process__step:hover .process__ico { transform: translateY(-4px); border-color: var(--cn-orange); box-shadow: 0 12px 26px rgba(255,90,31,.16); }
.process__num {
  position: absolute; z-index: 3; top: 44px; left: 50%; margin-left: -88px;
  transform: translate(-50%,-50%);
  width: 28px; height: 28px; border-radius: 50%;
  display: grid; place-items: center; color: #fff;
  font-family: var(--ff-head); font-weight: 700; font-size: 13px;
  box-shadow: 0 3px 10px rgba(10,31,60,.2);
}
.process__num--orange { background: var(--cn-orange); }
.process__num--blue   { background: var(--cn-blue); }
.process__title { font-size: 17px; font-weight: 700; margin-bottom: 7px; }
.process__text { font-size: var(--fs-xs); line-height: 1.6; color: var(--cn-body); max-width: 220px; margin-inline: auto; }

/* ==========================================================================
   13 · PANEL + UYGULAMA MOCKUP'I
   ========================================================================== */
.panel__card {
  position: relative; isolation: isolate; overflow: hidden;
  display: grid; grid-template-columns: minmax(0, 400px) minmax(0, 1fr);
  gap: 40px; align-items: center;
  padding: 56px 0 0 56px;
  border-radius: var(--r-2xl);
  background:
    radial-gradient(120% 130% at 8% 0%, #0B3A6B 0%, transparent 55%),
    linear-gradient(135deg, var(--cn-navy-2) 0%, var(--cn-navy-deep) 100%);
}
.panel__map {
  position: absolute; inset: 0; z-index: 0; opacity: .13;
  background: url("../images/patterns/world-map-dots-blue.svg") 62% 42% / 118% no-repeat;
  pointer-events: none;
}

.panel__content { position: relative; z-index: 2; padding-bottom: 56px; }
.panel__title { font-size: var(--fs-h2-lg); line-height: 1.16; color: #fff; margin-bottom: 24px; }
.panel__list { display: grid; gap: 13px; margin-bottom: 30px; }
.panel__list li {
  display: flex; align-items: flex-start; gap: 11px;
  font-size: var(--fs-lead); line-height: 1.5; color: rgba(255,255,255,.88);
}
.panel__list i { color: var(--cn-orange); font-size: 18px; flex: none; margin-top: 3px; }

/* --- mockup: tüm ölçüler em cinsinden, tek değişkenle ölçeklenir --- */
.app {
  position: relative; z-index: 2;
  font-size: var(--app-fs, 13px);
  width: 63em; min-width: 0; align-self: end;
  margin-bottom: -4.2em;
  font-family: var(--ff-body);
}
.app__frame {
  background: #fff; border-radius: 1.1em 0 0 0;
  box-shadow: -1.6em 1.6em 4.6em rgba(0,0,0,.34);
  padding: 1.15em 1.15em 0;
  display: grid; gap: .9em;
}
.app__top { display: flex; align-items: center; justify-content: space-between; gap: 1em; padding: .2em .4em .5em; }
.brand--app .brand__mark { height: 1.9em; }
.brand--app .brand__word { font-size: 1.15em; }
.app__user { font-size: .82em; color: var(--cn-body); display: inline-flex; align-items: center; gap: .5em; }
.app__user b { color: var(--cn-ink); }
.app__user i { color: var(--cn-ink); }

.app__main { display: grid; grid-template-columns: 13.4em minmax(0,1fr); gap: .9em; }
.app__side { display: grid; gap: .15em; align-content: start; }
.app__nav {
  display: flex; align-items: center; gap: .7em;
  padding: .62em .8em; border-radius: .5em;
  font-size: .84em; color: var(--cn-body); white-space: nowrap;
}
.app__nav i { font-size: 1.15em; color: var(--cn-muted); }
.app__nav.is-active {
  background: var(--cn-orange-100); color: var(--cn-orange); font-weight: 600;
  box-shadow: inset .17em 0 0 var(--cn-orange);
}
.app__nav.is-active i { color: var(--cn-orange); }

.app__panel { border: 1px solid var(--cn-line); border-radius: .8em; padding: 1em; min-width: 0; }
.app__head { display: flex; align-items: center; justify-content: space-between; gap: 1em; margin-bottom: .9em; }
.app__head b { font-family: var(--ff-head); font-size: 1.28em; color: var(--cn-ink); }
.app__btn {
  display: inline-flex; align-items: center; gap: .5em;
  background: var(--cn-orange); color: #fff; border-radius: .45em;
  padding: .55em 1em; font-size: .8em; font-weight: 700; font-family: var(--ff-head); white-space: nowrap;
}
.app__tabs { display: flex; gap: .3em; border-bottom: 1px solid var(--cn-line); margin-bottom: .3em; }
.app__tabs span {
  padding: .55em .9em; font-size: .78em; color: var(--cn-muted); white-space: nowrap;
  border: 1px solid transparent; border-bottom: 0; border-radius: .45em .45em 0 0;
}
.app__tabs .is-active { background: #fff; color: var(--cn-orange); font-weight: 600; border-color: var(--cn-line); box-shadow: 0 1px 0 #fff; }

.app__rows { display: grid; }
.app__rows li {
  display: grid; grid-template-columns: 2.3em 6.6em minmax(0,1fr) 6.4em 6.2em;
  gap: .85em; align-items: center; padding: .78em .3em;
  border-bottom: 1px solid var(--cn-line);
}
.app__rows li:last-child { border-bottom: 0; }
.app__ic {
  width: 2.1em; height: 2.1em; border-radius: 50%; display: grid; place-items: center;
  background: var(--cn-soft-2); color: var(--cn-navy); font-size: .82em;
}
.app__rows b { font-family: var(--ff-head); font-size: .88em; color: var(--cn-ink); white-space: nowrap; }
.app__rows em { font-style: normal; font-size: .84em; color: var(--cn-ink-2); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.app__rows em i { color: var(--cn-muted); font-size: .85em; }
.pill {
  display: inline-flex; align-items: center; gap: .35em; justify-self: start;
  padding: .3em .65em; border-radius: var(--r-pill);
  font-size: .7em; font-weight: 600; white-space: nowrap; border: 1px solid;
}
.pill--green { background: var(--cn-green-100); color: #067647; border-color: #A6E9C8; }
.pill--amber { background: var(--cn-amber-100); color: #B54708; border-color: #FBD9A5; }
.app__eta { font-style: normal; font-size: .68em; color: var(--cn-muted); text-align: right; line-height: 1.4; }
.app__eta b { font-size: 1.18em; color: var(--cn-ink-2); }

.app__stats { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: .8em; padding: 0 .1em .1em; }
.app__stat { background: #fff; border: 1px solid var(--cn-line); border-radius: .7em; padding: .85em .95em; }
.app__stat small { display: block; font-size: .72em; color: var(--cn-muted); margin-bottom: .3em; }
.app__stat b { font-family: var(--ff-head); font-size: 1.42em; color: var(--cn-ink); letter-spacing: -.02em; }
.app__stat b i { font-style: normal; font-size: .62em; font-weight: 600; color: var(--cn-body); }

/* ==========================================================================
   14 · ALT HİZMET ŞERİDİ
   ========================================================================== */
.subsrv {
  position: relative; margin-top: 26px;
  background: #fff; border: 1px solid var(--cn-line); border-radius: var(--r-lg);
  box-shadow: var(--sh-sm); overflow: hidden;
}
.subsrv__track {
  display: flex; overflow-x: auto; scroll-behavior: smooth;
  scrollbar-width: none; -ms-overflow-style: none;
  scroll-snap-type: x proximity;
}
.subsrv__track::-webkit-scrollbar { display: none; }
.subsrv__track > li { flex: 1 0 auto; scroll-snap-align: start; }
.subsrv__track > li:not(:last-child) a { border-right: 1px solid var(--cn-line); }
.subsrv__track a {
  display: flex; align-items: center; gap: 12px;
  min-height: 62px; padding: 12px 24px; white-space: nowrap;
  font-family: var(--ff-head); font-weight: 700; font-size: var(--fs-sm); color: var(--cn-ink);
  transition: background-color var(--t) var(--ease), color var(--t) var(--ease);
}
.subsrv__track a > svg { flex: none; color: var(--cn-navy); transition: color var(--t) var(--ease); }
.subsrv__track a > span { flex: 1 1 auto; }
.subsrv__track a > i { font-size: 12px; color: var(--cn-muted); transition: transform var(--t) var(--ease), color var(--t) var(--ease); }
.subsrv__track a:hover { background: var(--cn-soft); color: var(--cn-orange); }
.subsrv__track a:hover > svg { color: var(--cn-orange); }
.subsrv__track a:hover > i { transform: translateX(3px); color: var(--cn-orange); }

.subsrv__nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 4;
  width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center; background: #fff; color: var(--cn-navy);
  border: 1px solid var(--cn-line); box-shadow: var(--sh-md); font-size: 13px;
}
.subsrv__nav:hover { color: var(--cn-orange); border-color: var(--cn-orange); }
.subsrv__nav--prev { left: 8px; }
.subsrv__nav--next { right: 8px; }

/* ==========================================================================
   15 · OPERASYON
   ========================================================================== */
.ops__card {
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: minmax(0,290px) minmax(0,1fr) minmax(0,340px);
  gap: 36px; align-items: center;
  padding: 44px 0 44px 44px;
  background: #fff; border: 1px solid var(--cn-line); border-radius: var(--r-xl); box-shadow: var(--sh-md);
}
.ops__title { font-size: 30px; line-height: 1.2; margin-bottom: 14px; }
.ops__text { font-size: var(--fs-sm); line-height: 1.72; color: var(--cn-body); }

.ops__features { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
.ops__features li { display: flex; gap: 12px; align-items: flex-start; min-width: 0; }
.ops__ico {
  flex: none; width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center; color: var(--cn-navy);
  border: 1px solid var(--cn-line); background: var(--cn-soft);
}
.ops__features strong {
  display: block; font-family: var(--ff-head); font-weight: 700;
  font-size: var(--fs-sm); color: var(--cn-ink); margin-bottom: 4px; line-height: 1.35;
}
.ops__features small { display: block; font-size: var(--fs-xs); line-height: 1.55; color: var(--cn-body); }

.ops__media { position: relative; align-self: stretch; margin: -44px 0; }
.ops__media img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: 10% 0 0 10% / 50% 0 0 50%;
}

/* ==========================================================================
   16 · YORUMLAR
   ========================================================================== */
.testi__card {
  display: grid; grid-template-columns: minmax(0,1fr) minmax(0,560px);
  gap: 36px; align-items: center;
  background: #fff; border: 1px solid var(--cn-line); border-radius: var(--r-xl);
  box-shadow: var(--sh-sm); padding: 32px 36px;
}
.testi__slide { display: grid; grid-template-columns: 96px minmax(0,1fr); gap: 26px; align-items: center; margin: 0; }
.testi__avatar {
  width: 96px; height: 96px; border-radius: 50%; object-fit: cover;
  border: 4px solid #fff; box-shadow: 0 0 0 1px var(--cn-line), 0 10px 24px rgba(10,31,60,.12);
}
.testi__body { position: relative; min-width: 0; }
.testi__quote {
  position: absolute; left: -30px; top: -12px;
  font-family: var(--ff-head); font-size: 54px; font-weight: 800; line-height: 1;
  color: var(--cn-orange); opacity: .34;
}
.testi__text {
  margin: 0 0 14px; font-size: var(--fs-lead); line-height: 1.62;
  color: var(--cn-ink-2); font-weight: 400;
}
.testi__author strong { display: block; font-family: var(--ff-head); font-weight: 700; font-size: var(--fs-sm); color: var(--cn-ink); }
.testi__author small { display: block; font-size: var(--fs-xs); color: var(--cn-muted); }

.testi__controls { display: flex; align-items: center; gap: 10px; margin-top: 20px; }
.testi__arrow {
  width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid var(--cn-line); color: var(--cn-navy); background: #fff; font-size: 13px;
  transition: all var(--t) var(--ease);
}
.testi__arrow:hover { border-color: var(--cn-orange); color: var(--cn-orange); background: var(--cn-orange-100); }
.testi__dots { position: static; margin: 0; display: flex; gap: 7px; }
.testi__dots [data-bs-slide-to] {
  width: 8px; height: 8px; border-radius: 50%; background: var(--cn-line-2);
  border: 0; opacity: 1; margin: 0; text-indent: 0;
  transition: width var(--t) var(--ease), background-color var(--t) var(--ease);
}
.testi__dots .active { width: 22px; border-radius: var(--r-pill); background: var(--cn-orange); }

.testi__stats { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px; }
.testi__stats li {
  display: flex; align-items: center; gap: 10px; min-height: 84px;
  padding: 13px; border: 1px solid var(--cn-line); border-radius: var(--r-md);
  background: var(--cn-page); min-width: 0; overflow: hidden;
}
.testi__stat-ico { flex: none; color: var(--cn-navy); }
.testi__stats li span:last-child {
  min-width: 0;                      /* uzun kelimelerin kutudan taşmasını engeller */
  overflow-wrap: break-word; word-break: break-word;
  font-family: var(--ff-head); font-weight: 700; font-size: 12.5px;
  line-height: 1.38; color: var(--cn-ink); letter-spacing: -.01em;
}

/* ==========================================================================
   17 · FİNAL CTA
   ========================================================================== */
.final__card {
  position: relative; isolation: isolate; overflow: hidden;
  border-radius: var(--r-2xl);
  min-height: 260px; display: flex; align-items: center;
  padding: 48px 52px;
  background: linear-gradient(120deg, var(--cn-navy-2), var(--cn-navy-deep));
}
.final__bg {
  position: absolute; inset: 0; z-index: -1;
  width: 100%; height: 100%; object-fit: cover;
}
.final__content { position: relative; z-index: 2; max-width: 560px; }
.final__title { font-size: var(--fs-h2); line-height: 1.2; color: #fff; margin-bottom: 10px; }
.final__text { font-size: var(--fs-body); color: rgba(255,255,255,.76); margin-bottom: 24px; }

.final__parcel-wrap {
  position: absolute; z-index: 1; right: 21%; bottom: -6%; width: 21%;
  display: block; pointer-events: none;
}
.final__parcel {
  width: 100%; height: auto;
  filter: drop-shadow(0 24px 40px rgba(0,0,0,.42));
  animation: floatY 8s var(--ease) infinite;
}
.final__parcel-brand {
  position: absolute; left: 16%; top: 50%; width: 36%;
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  transform: rotate(-1.4deg) skewY(4.4deg); opacity: .9;
  animation: floatY 8s var(--ease) infinite;
}
.final__parcel-brand img { width: 38%; height: auto; }
.final__parcel-brand b {
  font-family: var(--ff-head); font-weight: 800; letter-spacing: -.02em;
  font-size: clamp(8px, .95vw, 15px); line-height: 1; color: var(--cn-navy);
}
.final__parcel-brand b i { font-style: normal; color: var(--cn-orange); }

/* ==========================================================================
   18 · FOOTER
   ========================================================================== */
.site-footer {
  background: linear-gradient(180deg, var(--cn-navy-deep), #031A34);
  color: rgba(255,255,255,.72);
  padding-top: 56px;
  padding-bottom: env(safe-area-inset-bottom);
}
.footer__top {
  display: grid; grid-template-columns: minmax(0,300px) minmax(0,1fr);
  gap: 56px; padding-bottom: 44px;
}
.footer__brand .brand { margin-bottom: 18px; }
.footer__about { font-size: var(--fs-xs); line-height: 1.7; color: rgba(255,255,255,.6); margin-bottom: 22px; max-width: 300px; }
.footer__social { display: flex; gap: 9px; }
.footer__social a {
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,.07); color: rgba(255,255,255,.8); font-size: 15px;
  transition: all var(--t) var(--ease);
}
.footer__social a:hover { background: var(--cn-orange); color: #fff; transform: translateY(-2px); }

.footer__cols { display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 26px; }
.footer__title {
  font-family: var(--ff-head); font-size: var(--fs-sm); font-weight: 700;
  color: #fff; margin-bottom: 15px;
}
.footer__title button {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  color: inherit; font: inherit; cursor: default; text-align: left;
}
.footer__title button i { display: none; }
.footer__links { display: grid; gap: 10px; }
.footer__links a, .footer__links span {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: var(--fs-xs); line-height: 1.5; color: rgba(255,255,255,.62);
}
.footer__links a:hover { color: var(--cn-orange); }
.footer__links--contact i { color: var(--cn-orange); font-size: 14px; flex: none; }

.footer__bottom {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 14px; padding: 20px 0 26px; border-top: 1px solid rgba(255,255,255,.09);
}
.footer__copy { font-size: 12px; color: rgba(255,255,255,.5); }
.footer__legal { display: flex; flex-wrap: wrap; gap: 20px; }
.footer__legal a { font-size: 12px; color: rgba(255,255,255,.5); }
.footer__legal a:hover { color: var(--cn-orange); }

/* ==========================================================================
   19 · MODAL · GÖNDERİ TAKİP
   ========================================================================== */
.cn-modal .modal-content {
  border: 0; border-radius: var(--r-xl); box-shadow: var(--sh-xl); overflow: hidden;
}
.cn-modal .modal-header {
  align-items: flex-start; gap: 16px; padding: 26px 28px 18px;
  border-bottom: 1px solid var(--cn-line);
}
.cn-modal .modal-title { font-family: var(--ff-head); font-size: 22px; font-weight: 800; color: var(--cn-ink); }
.cn-modal__sub { font-size: var(--fs-xs); color: var(--cn-body); margin-top: 4px; }
.cn-modal .btn-close { margin: 0; flex: none; }
.cn-modal .modal-body { padding: 24px 28px 28px; }

.track-form__row { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 12px; }
.track-form__input { position: relative; }
.track-form__input i {
  position: absolute; left: 15px; top: 50%; transform: translateY(-50%);
  color: var(--cn-muted); font-size: 17px; pointer-events: none;
}
.track-form__input input {
  width: 100%; height: 52px; padding: 0 15px 0 44px;
  border: 1px solid var(--cn-line-2); border-radius: var(--r-sm);
  font-family: var(--ff-head); font-weight: 600; font-size: var(--fs-body);
  color: var(--cn-ink); letter-spacing: .02em; background: #fff;
  transition: border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.track-form__input input::placeholder { font-weight: 400; color: var(--cn-muted); letter-spacing: 0; }
.track-form__input input:focus { outline: none; border-color: var(--cn-orange); box-shadow: var(--sh-focus); }
.track-form.is-invalid .track-form__input input { border-color: #E5484D; box-shadow: 0 0 0 3px rgba(229,72,77,.2); }
.track-form__help { margin-top: 10px; font-size: var(--fs-xs); color: var(--cn-muted); }
.track-form__help b { color: var(--cn-ink-2); }
.track-form.is-invalid .track-form__help { color: #C62A2F; }

.track-result:not(:empty) {
  margin-top: 20px; padding: 20px; border: 1px solid var(--cn-line);
  border-radius: var(--r-md); background: var(--cn-page);
  animation: stepIn .34s var(--ease-out) both;
}
.track-head { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 18px; }
.track-head b { font-family: var(--ff-head); font-size: var(--fs-lead); color: var(--cn-ink); }
.track-head span { font-size: var(--fs-xs); color: var(--cn-body); }
.track-route {
  display: flex; align-items: center; gap: 10px; margin-bottom: 18px;
  font-family: var(--ff-head); font-weight: 700; font-size: var(--fs-sm); color: var(--cn-ink);
}
.track-route i { color: var(--cn-orange); }

.track-steps { position: relative; display: grid; gap: 0; }
.track-steps li { position: relative; display: grid; grid-template-columns: 30px minmax(0,1fr); gap: 14px; padding-bottom: 20px; }
.track-steps li:last-child { padding-bottom: 0; }
.track-steps li::before {
  content: ''; position: absolute; left: 14px; top: 24px; bottom: -2px; width: 2px;
  background: var(--cn-line-2);
}
.track-steps li:last-child::before { display: none; }
.track-steps li.is-done::before { background: var(--cn-green); }
.track-dot {
  width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center;
  background: #fff; border: 2px solid var(--cn-line-2); color: var(--cn-muted); font-size: 13px; z-index: 1;
}
.track-steps li.is-done .track-dot { background: var(--cn-green); border-color: var(--cn-green); color: #fff; }
.track-steps li.is-current .track-dot { background: var(--cn-orange); border-color: var(--cn-orange); color: #fff; box-shadow: 0 0 0 4px rgba(255,90,31,.18); }
.track-steps strong { display: block; font-family: var(--ff-head); font-weight: 700; font-size: var(--fs-sm); color: var(--cn-ink); }
.track-steps small { display: block; font-size: var(--fs-xs); color: var(--cn-body); }
.track-steps li:not(.is-done):not(.is-current) strong { color: var(--cn-muted); font-weight: 600; }

.track-empty { display: flex; gap: 12px; align-items: flex-start; }
.track-empty i { color: var(--cn-amber); font-size: 20px; flex: none; }
.track-empty strong { display: block; font-family: var(--ff-head); font-size: var(--fs-sm); color: var(--cn-ink); margin-bottom: 3px; }
.track-empty p { font-size: var(--fs-xs); color: var(--cn-body); line-height: 1.6; }

.track-samples { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-top: 18px; font-size: var(--fs-xs); color: var(--cn-muted); }
.track-samples button {
  padding: 5px 11px; border-radius: var(--r-pill); border: 1px solid var(--cn-line-2);
  font-size: 12px; font-weight: 600; color: var(--cn-ink-2); background: #fff;
  transition: all var(--t) var(--ease);
}
.track-samples button:hover { border-color: var(--cn-orange); color: var(--cn-orange); background: var(--cn-orange-100); }

/* ==========================================================================
   20 · YARDIMCI BİLEŞENLER & ANİMASYON
   ========================================================================== */
.to-top {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--cn-navy); color: #fff; font-size: 17px;
  box-shadow: 0 10px 26px rgba(6,43,85,.32);
  opacity: 0; transform: translateY(12px);
  transition: opacity var(--t) var(--ease), transform var(--t) var(--ease), background-color var(--t) var(--ease);
}
.to-top.is-visible { opacity: 1; transform: translateY(0); }
.to-top:hover { background: var(--cn-orange); }

/* görünüme girince yumuşak beliriş */
.reveal { opacity: 0; transform: translateY(18px); }
.js-reveal-ready .reveal {
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
  transition-delay: var(--d, 0s);
}
.reveal.is-in { opacity: 1; transform: none; }
html:not(.js) .reveal, .no-js .reveal { opacity: 1; transform: none; }

/* --- hareket azaltma tercihi --- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero__parcel, .hero__plane, .final__parcel, .hero__parcel-brand, .final__parcel-brand { animation: none !important; }
}

/* --- yazdırma --- */
@media print {
  .site-header, .mobile-nav, .nav-scrim, .to-top, .subsrv__nav, .testi__controls,
  .hero__status, .hero__visual, .final__parcel-wrap { display: none !important; }
  body { color: #000; }
  .section { padding-block: 18px; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 11px; color: #555; }
}
