/* =========================================================
   YAK VİZE DANIŞMANLIK — TASARIM SİSTEMİ
   ---------------------------------------------------------
   Renkler doğrudan YAK logosundan örneklenmiştir:
     Lacivert #0F2B50 · Kırmızı #AA1822 (#8E1622→#CF1A21) · Gri #9A9A98
   Logoda altın/bronz YOKTUR; eski paletteki bronz kaldırılmıştır.

   Evrak Sihirbazı stilleri bu dosyada DEĞİLDİR.
   Bkz. assets/css/wizard-legacy.css (koruma altında)
   ========================================================= */

/* =========================================================
   01 — TASARIM TOKENLARI
   ========================================================= */
:root {
  /* --- Marka: lacivert --- */
  --yak-navy:        #0F2B50;
  --yak-navy-deep:   #081A36;
  --yak-navy-700:    #163A66;
  --yak-navy-600:    #1F4E86;
  --yak-navy-tint:   #E8EDF4;

  /* --- Marka: kırmızı (logo swoosh gradyanı) --- */
  --yak-red:         #AA1822;
  --yak-red-dark:    #8E1622;
  --yak-red-bright:  #CF1A21;
  --yak-red-tint:    #FBEDEE;

  /* --- Marka: gri (ikinci swoosh) --- */
  --yak-gray:        #9A9A98;

  /* --- Nötrler --- */
  --yak-ink:         #101720;
  --yak-ink-2:       #48536A;
  --yak-ink-3:       #77839B;
  --yak-surface:     #FFFFFF;
  --yak-surface-2:   #F6F7F9;
  --yak-surface-3:   #ECEFF4;
  --yak-paper:       #FBFAF8;
  --yak-line:        rgba(15, 43, 80, 0.12);
  --yak-line-2:      rgba(15, 43, 80, 0.20);

  /* --- Durum --- */
  --yak-success:     #1B7A4B;
  --yak-warning:     #9A6206;

  /* --- Tipografi --- */
  --yak-font-display: 'Archivo', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --yak-font-body:    'Public Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Akıcı tip ölçeği */
  --fs-xs:   0.8125rem;
  --fs-sm:   0.9375rem;
  --fs-base: 1.0625rem;
  --fs-lg:   clamp(1.125rem, 0.4vw + 1.05rem, 1.25rem);
  --fs-xl:   clamp(1.35rem, 0.8vw + 1.15rem, 1.6rem);
  --fs-2xl:  clamp(1.7rem, 1.5vw + 1.3rem, 2.3rem);
  --fs-3xl:  clamp(2.1rem, 2.6vw + 1.4rem, 3.1rem);
  --fs-4xl:  clamp(2.6rem, 4.2vw + 1.4rem, 4.4rem);

  /* --- Boşluk (8px tabanlı) --- */
  --sp-1: 4px;   --sp-2: 8px;   --sp-3: 12px;  --sp-4: 16px;
  --sp-5: 24px;  --sp-6: 32px;  --sp-7: 48px;  --sp-8: 64px;
  --sp-9: 88px;  --sp-10: 120px;

  /* --- Yarıçap: eski 26px yerine ölçülü --- */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 14px;
  --r-pill: 999px;

  /* --- Gölge: yumuşak, lacivert tabanlı --- */
  --sh-1: 0 1px 2px rgba(15, 43, 80, 0.06), 0 2px 8px rgba(15, 43, 80, 0.04);
  --sh-2: 0 4px 12px rgba(15, 43, 80, 0.07), 0 12px 32px rgba(15, 43, 80, 0.06);
  --sh-3: 0 18px 48px rgba(15, 43, 80, 0.13);

  /* --- Hareket --- */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-1: 180ms;
  --dur-2: 320ms;
  --dur-3: 620ms;

  /* --- Yerleşim --- */
  --container: 1240px;
  --container-narrow: 760px;
  --header-h: 76px;
}

/* =========================================================
   02 — SIFIRLAMA / TEMEL
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  /* body'deki kural tek başına her tarayıcıda yatay kaymayı kesmiyor */
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--yak-font-body);
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--yak-ink);
  background: var(--yak-surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'kern' 1;
  overflow-x: hidden;
}

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

a { color: var(--yak-navy); text-decoration: none; transition: color var(--dur-1) var(--ease); }
a:hover { color: var(--yak-red); }

ul, ol { margin: 0; padding: 0; }

button, input, select, textarea { font: inherit; color: inherit; }

/* Görünür odak — eski kodda outline:none idi, WCAG ihlaliydi */
:focus-visible {
  outline: 2px solid var(--yak-red);
  outline-offset: 3px;
  border-radius: 2px;
}

::selection { background: var(--yak-navy); color: #fff; }

/* Ekran okuyucu / atlama bağlantısı */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 50%; top: 8px;
  transform: translate(-50%, -200%);
  z-index: 999;
  background: var(--yak-navy); color: #fff;
  padding: 12px 22px; border-radius: var(--r-md);
  font-weight: 600; font-size: var(--fs-sm);
  transition: transform var(--dur-2) var(--ease);
}
.skip-link:focus { transform: translate(-50%, 0); color: #fff; }

/* =========================================================
   03 — TİPOGRAFİ
   ========================================================= */
h1, h2, h3, h4, h5 {
  font-family: var(--yak-font-display);
  color: var(--yak-navy-deep);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 var(--sp-4);
  text-wrap: balance;
}
h1 { font-size: var(--fs-4xl); }
h2 { font-size: var(--fs-3xl); }
h3 { font-size: var(--fs-xl); letter-spacing: -0.02em; }
h4 { font-size: var(--fs-lg); letter-spacing: -0.01em; }
h5 { font-size: var(--fs-sm); letter-spacing: 0.02em; }

p { margin: 0 0 var(--sp-4); text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: var(--fs-lg);
  line-height: 1.6;
  color: var(--yak-ink-2);
  max-width: 62ch;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--yak-font-body);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yak-red);
  margin-bottom: var(--sp-3);
}
.eyebrow::before {
  content: '';
  width: 20px; height: 2px;
  background: var(--yak-red);
  flex-shrink: 0;
}
.eyebrow--light { color: var(--yak-red-bright); }
.eyebrow--light::before { background: var(--yak-red-bright); }

/* Rakamlar — tabular hizalama */
.num, .stat-num, .step-num { font-variant-numeric: tabular-nums; }

/* Vurgu: markanın kırmızısı, ölçülü */
.hl { color: var(--yak-red); }
.hl-underline {
  background-image: linear-gradient(var(--yak-red), var(--yak-red));
  background-size: 100% 2px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  padding-bottom: 2px;
}

/* =========================================================
   04 — YERLEŞİM
   ========================================================= */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--sp-5);
}
.container-narrow { max-width: var(--container-narrow); }

.section { padding-block: var(--sp-9); }
.section--tight { padding-block: var(--sp-8); }
.section--paper { background: var(--yak-paper); }
.section--tinted { background: var(--yak-surface-2); }
.section--navy { background: var(--yak-navy-deep); color: rgba(255,255,255,0.82); }
.section--navy h2, .section--navy h3 { color: #fff; }

.section-head { max-width: 66ch; margin-bottom: var(--sp-7); }
.section-head.is-centered { margin-inline: auto; text-align: center; }
.section-head.is-centered .eyebrow { justify-content: center; }

/* Asimetrik editoryal ızgara — 3 kartlı ritmi kırar */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: center;
}
.split--wide-left  { grid-template-columns: 1.25fr 1fr; }
.split--wide-right { grid-template-columns: 1fr 1.25fr; }
.split--top { align-items: start; }

.stack > * + * { margin-top: var(--sp-4); }
.stack-lg > * + * { margin-top: var(--sp-6); }

@media (max-width: 900px) {
  .split, .split--wide-left, .split--wide-right { grid-template-columns: 1fr; gap: var(--sp-6); }
  .split--reverse > :first-child { order: 2; }
}

/* =========================================================
   05 — BUTONLAR
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 14px 26px;
  font-family: var(--yak-font-body);
  font-size: var(--fs-sm);
  font-weight: 650;
  letter-spacing: -0.005em;
  line-height: 1.2;
  border: 1.5px solid transparent;
  border-radius: var(--r-md);
  cursor: pointer;
  text-align: center;
  transition: background var(--dur-1) var(--ease),
              color var(--dur-1) var(--ease),
              border-color var(--dur-1) var(--ease),
              transform var(--dur-1) var(--ease),
              box-shadow var(--dur-2) var(--ease);
}
.btn:active { transform: translateY(1px); }

.btn--primary { background: var(--yak-red); color: #fff; }
.btn--primary:hover { background: var(--yak-red-dark); color: #fff; box-shadow: 0 8px 24px rgba(170,24,34,0.26); }

.btn--navy { background: var(--yak-navy); color: #fff; }
.btn--navy:hover { background: var(--yak-navy-deep); color: #fff; box-shadow: 0 8px 24px rgba(15,43,80,0.24); }

.btn--outline { background: transparent; color: var(--yak-navy); border-color: var(--yak-line-2); }
.btn--outline:hover { border-color: var(--yak-navy); color: var(--yak-navy); background: var(--yak-navy-tint); }

.btn--ghost-light { background: rgba(255,255,255,0.10); color: #fff; border-color: rgba(255,255,255,0.28); }
.btn--ghost-light:hover { background: rgba(255,255,255,0.18); color: #fff; border-color: rgba(255,255,255,0.5); }

.btn--light { background: #fff; color: var(--yak-navy); }
.btn--light:hover { background: var(--yak-navy-tint); color: var(--yak-navy-deep); }

.btn--wa { background: #25D366; color: #fff; }
.btn--wa:hover { background: #1FB855; color: #fff; }

.btn--lg { padding: 17px 34px; font-size: var(--fs-base); }
.btn--sm { padding: 10px 18px; font-size: var(--fs-xs); }
.btn--block { display: flex; width: 100%; }

/* Metin bağlantısı — ok mikro etkileşimi */
.link-arrow {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  font-weight: 650; font-size: var(--fs-sm);
  color: var(--yak-navy);
}
.link-arrow::after {
  content: '→';
  transition: transform var(--dur-1) var(--ease);
}
.link-arrow:hover { color: var(--yak-red); }
.link-arrow:hover::after { transform: translateX(4px); }

/* =========================================================
   06 — BAŞLIK / NAVİGASYON
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.94);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-2) var(--ease), box-shadow var(--dur-2) var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: var(--yak-line);
  box-shadow: 0 1px 20px rgba(15,43,80,0.05);
}
.nav {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  height: var(--header-h);
}
.nav-brand { flex-shrink: 0; }
.nav-brand img { height: 46px; width: auto; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  list-style: none;
  margin-inline-start: auto;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  border-radius: var(--r-md);
  font-size: var(--fs-sm);
  font-weight: 550;
  color: var(--yak-ink);
  white-space: nowrap;
  transition: background var(--dur-1) var(--ease), color var(--dur-1) var(--ease);
}
.nav-link:hover { background: var(--yak-surface-2); color: var(--yak-navy); }
.nav-link[aria-current="page"] { color: var(--yak-red); }
.nav-item { position: relative; }

/* Sihirbaz — navigasyonda ayrı ağırlık */
.nav-link--wizard {
  color: var(--yak-navy);
  font-weight: 650;
  border: 1.5px solid var(--yak-line-2);
}
.nav-link--wizard:hover { border-color: var(--yak-red); color: var(--yak-red); background: transparent; }

/* Açılır menü — klavye ile de erişilebilir */
.nav-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 320px;
  background: #fff;
  border: 1px solid var(--yak-line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-3);
  padding: var(--sp-2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity var(--dur-1) var(--ease), transform var(--dur-1) var(--ease), visibility var(--dur-1);
}
.nav-item:hover .nav-panel,
.nav-item:focus-within .nav-panel,
.nav-panel.is-open { opacity: 1; visibility: visible; transform: translateY(0); }

.nav-panel a {
  display: block;
  padding: 10px 14px;
  border-radius: var(--r-md);
  color: var(--yak-ink);
  transition: background var(--dur-1) var(--ease);
}
.nav-panel a:hover { background: var(--yak-surface-2); }
.nav-panel .np-title { display: block; font-weight: 650; font-size: var(--fs-sm); }
.nav-panel .np-note { display: block; font-size: var(--fs-xs); color: var(--yak-ink-3); margin-top: 1px; }

.nav-actions { display: flex; align-items: center; gap: var(--sp-3); flex-shrink: 0; }
.nav-phone {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 650; font-size: var(--fs-sm); color: var(--yak-navy);
  white-space: nowrap;
}
.nav-phone:hover { color: var(--yak-red); }

.nav-toggle {
  display: none;
  align-items: center; justify-content: center;
  width: 42px; height: 42px;
  background: transparent;
  border: 1.5px solid var(--yak-line-2);
  border-radius: var(--r-md);
  cursor: pointer;
  color: var(--yak-navy);
}

/* Mobil menü */
.nav-mobile {
  display: none;
  border-top: 1px solid var(--yak-line);
  background: #fff;
  padding: var(--sp-4) 0 var(--sp-5);
  max-height: calc(100vh - var(--header-h));
  overflow-y: auto;
}
.nav-mobile.is-open { display: block; }
.nav-mobile ul { list-style: none; }
.nav-mobile > .container > ul > li { border-bottom: 1px solid var(--yak-line); }
.nav-mobile > .container > ul > li:last-child { border-bottom: 0; }
.nav-mobile a { display: block; padding: 13px 0; font-weight: 550; color: var(--yak-ink); }
.nav-mobile .nm-sub { padding-bottom: var(--sp-3); }
.nav-mobile .nm-sub a { padding: 8px 0 8px var(--sp-4); font-size: var(--fs-sm); color: var(--yak-ink-2); font-weight: 450; }
.nav-mobile .nm-actions { display: grid; gap: var(--sp-3); margin-top: var(--sp-5); }

@media (max-width: 1080px) {
  .nav-menu, .nav-phone { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-actions { margin-inline-start: auto; }
}

/* Dar ekranda başlıktaki CTA gizlenir — aynı eylem hem mobil menüde
   hem de alttaki sabit çubukta zaten mevcut. Taşmayı önler. */
@media (max-width: 560px) {
  .nav-actions .btn { display: none; }
  .nav-brand img { height: 38px; }
  .nav { height: 64px; }
}

/* =========================================================
   07 — HERO
   ========================================================= */
.hero {
  position: relative;
  background: var(--yak-navy-deep);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
/* Rota çizgileri — dekorasyon değil, "sınır/geçiş" anlatısı */
.hero-routes {
  position: absolute; inset: 0;
  z-index: -1;
  opacity: 0.5;
  pointer-events: none;
}
.hero-routes path { fill: none; stroke: rgba(255,255,255,0.16); stroke-width: 1; }
.hero-routes .route-live { stroke: var(--yak-red-bright); stroke-width: 1.5; opacity: 0.85; }

.hero::after {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(105deg, var(--yak-navy-deep) 38%, rgba(8,26,54,0.72) 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--sp-8);
  align-items: center;
  padding-block: var(--sp-9) var(--sp-8);
}
.hero h1 { color: #fff; margin-bottom: var(--sp-5); }
.hero p.lead { color: rgba(255,255,255,0.78); }

.hero-actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-top: var(--sp-6); }

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-6);
  margin-top: var(--sp-7);
  padding-top: var(--sp-5);
  border-top: 1px solid rgba(255,255,255,0.14);
}
.hero-meta div { display: flex; flex-direction: column; }
.hero-meta .num {
  font-family: var(--yak-font-display);
  font-size: 1.9rem; font-weight: 700; color: #fff;
  letter-spacing: -0.03em; line-height: 1;
}
.hero-meta .lbl { font-size: var(--fs-xs); color: rgba(255,255,255,0.6); margin-top: 6px; }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; padding-block: var(--sp-7) var(--sp-7); }
  .hero-meta { gap: var(--sp-5); }
  .hero-meta .num { font-size: 1.5rem; }
}

/* Hero rota seçici — sihirbazı ilk ekrana taşır */
.hero-picker {
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
  backdrop-filter: blur(6px);
}
.hero-picker-title {
  font-family: var(--yak-font-display);
  font-size: var(--fs-lg);
  font-weight: 650;
  color: #fff;
  margin-bottom: var(--sp-4);
  letter-spacing: -0.02em;
}
.hero-picker-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-2);
}
.hero-chip {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--r-md);
  color: rgba(255,255,255,0.9);
  font-size: var(--fs-sm);
  font-weight: 550;
  transition: background var(--dur-1) var(--ease), border-color var(--dur-1) var(--ease), transform var(--dur-1) var(--ease);
}
.hero-chip:hover {
  background: rgba(255,255,255,0.09);
  border-color: var(--yak-red-bright);
  color: #fff;
  transform: translateY(-1px);
}
.hero-chip .flag { font-size: 1.15rem; line-height: 1; }
.hero-picker-note {
  margin: var(--sp-4) 0 0;
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.55);
}
@media (max-width: 480px) {
  .hero-picker-grid { grid-template-columns: 1fr 1fr; }
  .hero-chip { padding: 11px 12px; font-size: var(--fs-xs); }
}

/* =========================================================
   08 — GÜVEN ŞERİDİ
   ========================================================= */
.trust-bar {
  background: var(--yak-navy);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4) var(--sp-7);
  padding-block: var(--sp-4);
  align-items: center;
  justify-content: space-between;
}
.trust-bar span {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  font-size: var(--fs-sm); color: rgba(255,255,255,0.82); font-weight: 500;
}
.trust-bar .yi { color: var(--yak-red-bright); }

/* =========================================================
   09 — ROTA (ÜLKE) KARTLARI
   ========================================================= */
.routes {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(190px, 100%), 1fr));
  gap: var(--sp-3);
}
.route {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-4);
  background: #fff;
  border: 1px solid var(--yak-line);
  border-radius: var(--r-md);
  transition: border-color var(--dur-1) var(--ease), transform var(--dur-1) var(--ease), box-shadow var(--dur-2) var(--ease);
}
.route:hover {
  border-color: var(--yak-navy);
  transform: translateY(-2px);
  box-shadow: var(--sh-2);
}
.route .flag { font-size: 1.5rem; line-height: 1; flex-shrink: 0; }
.route .name { font-weight: 600; color: var(--yak-ink); font-size: var(--fs-sm); }
.route .note { display: block; font-size: var(--fs-xs); color: var(--yak-ink-3); font-weight: 400; }

/* =========================================================
   10 — HİZMET BLOKLARI  (kart dizisi değil, editoryal liste)
   ========================================================= */
.service-list { border-top: 1px solid var(--yak-line); }
.service-row {
  display: grid;
  grid-template-columns: 64px 1.1fr 1.4fr auto;
  gap: var(--sp-5);
  align-items: center;
  padding-block: var(--sp-6);
  border-bottom: 1px solid var(--yak-line);
  transition: background var(--dur-2) var(--ease);
}
.service-row:hover { background: var(--yak-surface-2); }
.service-row .sr-num {
  font-family: var(--yak-font-display);
  font-size: var(--fs-sm); font-weight: 700;
  color: var(--yak-red);
  letter-spacing: 0.04em;
}
.service-row h3 { margin: 0; }
.service-row p { margin: 0; color: var(--yak-ink-2); font-size: var(--fs-sm); }

@media (max-width: 900px) {
  .service-row {
    grid-template-columns: 1fr;
    gap: var(--sp-3);
    padding-block: var(--sp-5);
  }
  .service-row .link-arrow { justify-self: start; }
}

/* =========================================================
   11 — SÜREÇ ADIMLARI
   ========================================================= */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
  counter-reset: step;
}
.step { position: relative; padding-top: var(--sp-5); border-top: 2px solid var(--yak-line); }
.step.is-active { border-top-color: var(--yak-red); }
.step-num {
  font-family: var(--yak-font-display);
  font-size: var(--fs-xs); font-weight: 700;
  color: var(--yak-red); letter-spacing: 0.1em;
  display: block; margin-bottom: var(--sp-3);
}
.step h3 { font-size: var(--fs-lg); margin-bottom: var(--sp-2); }
.step p { font-size: var(--fs-sm); color: var(--yak-ink-2); margin: 0; }

@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; gap: var(--sp-5); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* =========================================================
   12 — İŞARETLİ LİSTELER
   ========================================================= */
.checks { list-style: none; }
.checks li {
  position: relative;
  padding-left: 30px;
  margin-bottom: var(--sp-3);
  color: var(--yak-ink-2);
}
.checks li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 16px; height: 2px;
  background: var(--yak-red);
}
.checks--light li { color: rgba(255,255,255,0.78); }

/* Bilgi/uyarı kutusu */
.notice {
  padding: var(--sp-4) var(--sp-5);
  background: var(--yak-surface-2);
  border-left: 3px solid var(--yak-navy);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-size: var(--fs-sm);
  color: var(--yak-ink-2);
}
.notice--legal { border-left-color: var(--yak-red); background: var(--yak-red-tint); }
.notice strong { color: var(--yak-ink); }

.updated {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  font-size: var(--fs-xs); color: var(--yak-ink-3);
}

/* =========================================================
   13 — İSTATİSTİK
   ========================================================= */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-6); }
.stat-num {
  font-family: var(--yak-font-display);
  font-size: clamp(2.2rem, 3.4vw, 3.2rem);
  font-weight: 700; color: #fff; line-height: 1;
  letter-spacing: -0.04em; display: block;
}
.stat-lbl { font-size: var(--fs-sm); color: rgba(255,255,255,0.62); margin-top: var(--sp-2); display: block; }
@media (max-width: 780px) { .stats { grid-template-columns: 1fr 1fr; gap: var(--sp-5); } }

/* =========================================================
   13b — MÜŞTERİ YORUMLARI
   ========================================================= */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
.quote {
  margin: 0;
  padding: var(--sp-5) 0 0;
  border-top: 2px solid var(--yak-navy);
}
.quote blockquote {
  margin: 0 0 var(--sp-5);
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--yak-ink);
}
.quote blockquote::before {
  content: '“';
  display: block;
  font-family: var(--yak-font-display);
  font-size: 2.4rem;
  line-height: 0.7;
  color: var(--yak-red);
  margin-bottom: var(--sp-3);
}
.quote figcaption { display: flex; align-items: center; gap: var(--sp-3); }
.quote figcaption img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.quote figcaption span { display: flex; flex-direction: column; font-size: var(--fs-xs); color: var(--yak-ink-3); }
.quote figcaption strong { font-size: var(--fs-sm); color: var(--yak-ink); }

@media (max-width: 900px) { .quotes { grid-template-columns: 1fr; gap: var(--sp-6); } }

/* =========================================================
   14 — SSS
   ========================================================= */
.faq { border-top: 1px solid var(--yak-line); }
.faq-item { border-bottom: 1px solid var(--yak-line); }
.faq-q {
  display: flex; align-items: flex-start; justify-content: space-between; gap: var(--sp-4);
  width: 100%; padding: var(--sp-5) 0;
  background: none; border: 0; cursor: pointer; text-align: left;
  font-family: var(--yak-font-display);
  font-size: var(--fs-lg); font-weight: 650; color: var(--yak-navy-deep);
  letter-spacing: -0.02em; line-height: 1.35;
}
.faq-q:hover { color: var(--yak-red); }
.faq-sign {
  position: relative; flex-shrink: 0;
  width: 20px; height: 20px; margin-top: 4px;
}
.faq-sign::before, .faq-sign::after {
  content: ''; position: absolute; background: var(--yak-red);
  left: 50%; top: 50%;
}
.faq-sign::before { width: 14px; height: 2px; transform: translate(-50%, -50%); }
.faq-sign::after  { width: 2px; height: 14px; transform: translate(-50%, -50%); transition: transform var(--dur-2) var(--ease); }
.faq-item.is-open .faq-sign::after { transform: translate(-50%, -50%) scaleY(0); }

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--dur-2) var(--ease);
}
.faq-item.is-open .faq-a { grid-template-rows: 1fr; }
.faq-a > div { overflow: hidden; }
.faq-a p { padding-bottom: var(--sp-5); color: var(--yak-ink-2); max-width: 74ch; margin: 0; }

/* =========================================================
   15 — FORMLAR
   ========================================================= */
.form-card {
  background: #fff;
  border: 1px solid var(--yak-line);
  border-radius: var(--r-lg);
  padding: var(--sp-7);
  box-shadow: var(--sh-1);
}
.field { margin-bottom: var(--sp-4); }
.field label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--yak-navy-deep);
  margin-bottom: 6px;
}
.field .req { color: var(--yak-red); }
.field-hint { font-size: var(--fs-xs); color: var(--yak-ink-3); margin-top: 5px; }

.control {
  width: 100%;
  padding: 13px 15px;
  font-size: var(--fs-sm);
  font-family: var(--yak-font-body);
  color: var(--yak-ink);
  background: #fff;
  border: 1.5px solid var(--yak-line-2);
  border-radius: var(--r-md);
  transition: border-color var(--dur-1) var(--ease), box-shadow var(--dur-1) var(--ease);
}
.control::placeholder { color: var(--yak-ink-3); }
.control:hover { border-color: var(--yak-navy-600); }
.control:focus-visible {
  outline: none;
  border-color: var(--yak-red);
  box-shadow: 0 0 0 3px rgba(170,24,34,0.15);
}
textarea.control { min-height: 120px; resize: vertical; }
select.control {
  appearance: none;
  padding-right: 40px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%230F2B50' stroke-width='2.5'%3E%3Cpolyline points='6,9 12,15 18,9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  cursor: pointer;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } .form-card { padding: var(--sp-5); } }

.consent {
  display: flex; align-items: flex-start; gap: var(--sp-3);
  font-size: var(--fs-xs); color: var(--yak-ink-2); line-height: 1.55;
  margin-bottom: var(--sp-5);
}
.consent input[type="checkbox"] {
  flex-shrink: 0; width: 18px; height: 18px; margin-top: 2px;
  accent-color: var(--yak-red); cursor: pointer;
}
.consent a { text-decoration: underline; text-underline-offset: 2px; }

/* Bal küpü — spam tuzağı, kullanıcıya görünmez */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
}

.form-alert {
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--r-md);
  font-size: var(--fs-sm);
  margin-bottom: var(--sp-5);
}
.form-alert--ok  { background: rgba(27,122,75,0.08); border-left: 3px solid var(--yak-success); color: #145C39; }
.form-alert--err { background: var(--yak-red-tint); border-left: 3px solid var(--yak-red); color: var(--yak-red-dark); }

/* İletişim kartları */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
}
.contact-card {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: var(--sp-5);
  background: #fff;
  border: 1px solid var(--yak-line);
  border-radius: var(--r-lg);
  color: var(--yak-ink);
  transition: border-color var(--dur-1) var(--ease), transform var(--dur-1) var(--ease), box-shadow var(--dur-2) var(--ease);
}
a.contact-card:hover {
  border-color: var(--yak-navy);
  transform: translateY(-2px);
  box-shadow: var(--sh-2);
  color: var(--yak-ink);
}
.contact-card > .yi {
  width: 22px; height: 22px;
  color: var(--yak-red);
  margin-bottom: var(--sp-3);
}
.cc-label {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yak-ink-3);
}
.cc-value { font-weight: 650; font-size: var(--fs-base); color: var(--yak-navy-deep); }
.cc-note  { font-size: var(--fs-xs); color: var(--yak-ink-3); }

@media (max-width: 980px) { .contact-cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .contact-cards { grid-template-columns: 1fr; } }

/* Harita çerçevesi */
.map-frame {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--yak-line);
  background: var(--yak-surface-3);
  aspect-ratio: 16 / 10;
}
.map-frame iframe { width: 100%; height: 100%; display: block; }

/* =========================================================
   16 — SAYFA BAŞLIĞI / KIRINTI YOLU
   ========================================================= */
.page-head {
  background: var(--yak-navy-deep);
  color: #fff;
  padding-block: var(--sp-8) var(--sp-7);
  position: relative;
  overflow: hidden;
}
.page-head h1 { color: #fff; margin-bottom: var(--sp-3); max-width: 20ch; }
.page-head .lead { color: rgba(255,255,255,0.74); }

.crumbs {
  display: flex; flex-wrap: wrap; align-items: center; gap: var(--sp-2);
  list-style: none;
  font-size: var(--fs-xs);
  margin-bottom: var(--sp-5);
  color: rgba(255,255,255,0.55);
}
.crumbs a { color: rgba(255,255,255,0.75); }
.crumbs a:hover { color: #fff; }
.crumbs li + li::before { content: '/'; margin-right: var(--sp-2); opacity: 0.45; }

/* =========================================================
   17 — CTA ŞERİDİ
   ========================================================= */
.cta-band {
  background: var(--yak-navy);
  color: #fff;
  padding-block: var(--sp-8);
}
.cta-band-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-6); flex-wrap: wrap;
}
.cta-band h2 { color: #fff; margin-bottom: var(--sp-3); max-width: 22ch; }
.cta-band p { color: rgba(255,255,255,0.74); max-width: 52ch; margin: 0; }
.cta-band-actions { display: flex; gap: var(--sp-3); flex-wrap: wrap; }

/* =========================================================
   18 — ALT BİLGİ
   ========================================================= */
.site-footer {
  background: var(--yak-navy-deep);
  color: rgba(255,255,255,0.66);
  padding-top: var(--sp-8);
  font-size: var(--fs-sm);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: var(--sp-6);
  padding-bottom: var(--sp-7);
}
.footer-logo { height: 54px; width: auto; margin-bottom: var(--sp-4); }
.site-footer h5 {
  color: #fff;
  font-size: var(--fs-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--sp-4);
  font-family: var(--yak-font-body);
  font-weight: 700;
}
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: var(--sp-2); }
.site-footer a { color: rgba(255,255,255,0.66); }
.site-footer a:hover { color: #fff; }
.footer-contact li { display: flex; gap: var(--sp-3); align-items: flex-start; }

.footer-legal {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-block: var(--sp-5);
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.45);
}
.footer-legal-inner { display: flex; justify-content: space-between; gap: var(--sp-5); flex-wrap: wrap; }
.footer-legal a { color: rgba(255,255,255,0.55); }
.footer-disclaimer {
  max-width: 92ch;
  margin-bottom: var(--sp-4);
  line-height: 1.6;
}

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; gap: var(--sp-6); } }

/* =========================================================
   19 — SABİT EYLEM ÖĞELERİ
   ========================================================= */
.wa-float {
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 90;
  width: 54px; height: 54px;
  display: flex; align-items: center; justify-content: center;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 8px 26px rgba(37,211,102,0.4);
  transition: transform var(--dur-1) var(--ease);
}
.wa-float:hover { transform: scale(1.06); color: #fff; }

.mobile-bar { display: none; }
@media (max-width: 767px) {
  .mobile-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-2);
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 95;
    padding: var(--sp-2) var(--sp-3) calc(var(--sp-2) + env(safe-area-inset-bottom));
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--yak-line);
  }
  .mobile-bar .btn { padding: 12px; font-size: var(--fs-xs); }
  body { padding-bottom: 68px; }
  .wa-float { bottom: 82px; right: 16px; width: 48px; height: 48px; }
}

/* Çerez bildirimi (KVKK) */
.cookie-bar {
  position: fixed;
  left: var(--sp-4); right: var(--sp-4); bottom: var(--sp-4);
  z-index: 120;
  background: #fff;
  border: 1px solid var(--yak-line-2);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-3);
  padding: var(--sp-4) var(--sp-5);
  max-width: 760px;
  margin-inline: auto;
}
.cookie-bar[hidden] { display: none; }
.cookie-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-4); flex-wrap: wrap;
}
.cookie-inner p { margin: 0; font-size: var(--fs-xs); color: var(--yak-ink-2); max-width: 60ch; }
.cookie-actions { display: flex; gap: var(--sp-2); flex-wrap: wrap; }
@media (max-width: 767px) {
  .cookie-bar { bottom: 76px; left: var(--sp-3); right: var(--sp-3); padding: var(--sp-4); }
  .cookie-actions { width: 100%; }
  .cookie-actions .btn { flex: 1; }
}

/* =========================================================
   20 — İKONLAR
   Font Awesome (≈100 KB) kaldırıldı.
   wizard.js'in ÜRETTİĞİ fa-* sınıfları burada karşılanır;
   böylece sihirbaz kodu değişmeden ikonlar görünür.
   ========================================================= */
.yi,
i[class*="fa-"] {
  display: inline-block;
  width: 1em; height: 1em;
  flex-shrink: 0;
  background-color: currentColor;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: center;  mask-position: center;
  -webkit-mask-size: contain;     mask-size: contain;
  vertical-align: -0.125em;
}

/* wizard.js -> renderList() tarafından basılır */
i.fa-check-circle {
  -webkit-mask-image: var(--ic-check); mask-image: var(--ic-check);
}
i.fa-exclamation-triangle {
  -webkit-mask-image: var(--ic-warn); mask-image: var(--ic-warn);
}
/* Sihirbaz markup'ındaki statik ikonlar */
i.fa-list-check      { -webkit-mask-image: var(--ic-list);  mask-image: var(--ic-list); }
i.fa-clipboard-check { -webkit-mask-image: var(--ic-list);  mask-image: var(--ic-list); }
i.fa-print           { -webkit-mask-image: var(--ic-print); mask-image: var(--ic-print); }
i.fa-circle-info     { -webkit-mask-image: var(--ic-info);  mask-image: var(--ic-info); }

:root {
  --ic-check: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpolyline points='8.5,12.5 11,15 15.5,9.5'/%3E%3C/svg%3E");
  --ic-warn:  url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3.5 22 20H2z'/%3E%3Cline x1='12' y1='10' x2='12' y2='14.5'/%3E%3Cline x1='12' y1='17.2' x2='12' y2='17.3'/%3E%3C/svg%3E");
  --ic-list:  url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='3,7 5,9 9,5'/%3E%3Cpolyline points='3,17 5,19 9,15'/%3E%3Cline x1='13' y1='7' x2='21' y2='7'/%3E%3Cline x1='13' y1='17' x2='21' y2='17'/%3E%3C/svg%3E");
  --ic-print: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9V3h12v6'/%3E%3Crect x='3' y='9' width='18' height='8' rx='2'/%3E%3Crect x='7' y='15' width='10' height='6'/%3E%3C/svg%3E");
  --ic-info:  url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cline x1='12' y1='11' x2='12' y2='16.5'/%3E%3Cline x1='12' y1='7.6' x2='12' y2='7.7'/%3E%3C/svg%3E");
  --ic-phone: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.9v3a2 2 0 0 1-2.2 2 19.8 19.8 0 0 1-8.6-3.1 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.1 4.2 2 2 0 0 1 4.1 2h3a2 2 0 0 1 2 1.7c.1 1 .4 1.9.7 2.8a2 2 0 0 1-.5 2.1L8.1 9.9a16 16 0 0 0 6 6l1.3-1.2a2 2 0 0 1 2.1-.5c.9.3 1.8.6 2.8.7a2 2 0 0 1 1.7 2z'/%3E%3C/svg%3E");
  --ic-mail:  url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='4' width='20' height='16' rx='2'/%3E%3Cpolyline points='2.5,6 12,13 21.5,6'/%3E%3C/svg%3E");
  --ic-pin:   url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s7-6.4 7-12A7 7 0 0 0 5 10c0 5.6 7 12 7 12z'/%3E%3Ccircle cx='12' cy='10' r='2.6'/%3E%3C/svg%3E");
  --ic-wa:    url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'%3E%3Cpath d='M12 2a10 10 0 0 0-8.5 15.2L2 22l4.9-1.4A10 10 0 1 0 12 2zm5.8 14.2c-.2.7-1.4 1.3-2 1.4-.5.1-1.1.1-1.8-.1-.4-.1-1-.3-1.7-.6-2.9-1.3-4.8-4.3-5-4.5-.1-.2-1.1-1.5-1.1-2.9s.7-2 1-2.3c.2-.3.5-.4.7-.4h.5c.2 0 .4 0 .6.5l.8 2c.1.2.1.4 0 .5l-.3.5-.4.4c-.1.1-.3.3-.1.6.1.3.6 1.1 1.4 1.8 1 .9 1.8 1.1 2 1.2.3.1.4.1.6-.1l.8-1c.2-.2.4-.2.6-.1l2 .9c.2.1.4.2.4.3.1.2.1.7 0 1.4z'/%3E%3C/svg%3E");
  --ic-clock: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpolyline points='12,7 12,12 15.5,14'/%3E%3C/svg%3E");
  --ic-shield:url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2.5 4 6v6c0 5 3.4 8.4 8 9.5 4.6-1.1 8-4.5 8-9.5V6z'/%3E%3C/svg%3E");
  --ic-truck: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='1.5' y='6' width='12' height='10' rx='1'/%3E%3Cpath d='M13.5 9.5h4l3 3.2V16h-7z'/%3E%3Ccircle cx='6' cy='18' r='2'/%3E%3Ccircle cx='17.5' cy='18' r='2'/%3E%3C/svg%3E");
  --ic-globe: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M3 12h18M12 3c2.5 2.7 2.5 15.3 0 18M12 3c-2.5 2.7-2.5 15.3 0 18'/%3E%3C/svg%3E");
  --ic-menu:  url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round'%3E%3Cpath d='M4 7h16M4 12h16M4 17h16'/%3E%3C/svg%3E");
  --ic-close: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round'%3E%3Cpath d='M6 6l12 12M18 6L6 18'/%3E%3C/svg%3E");
}

.yi-phone  { -webkit-mask-image: var(--ic-phone);  mask-image: var(--ic-phone); }
.yi-mail   { -webkit-mask-image: var(--ic-mail);   mask-image: var(--ic-mail); }
.yi-pin    { -webkit-mask-image: var(--ic-pin);    mask-image: var(--ic-pin); }
.yi-wa     { -webkit-mask-image: var(--ic-wa);     mask-image: var(--ic-wa); }
.yi-clock  { -webkit-mask-image: var(--ic-clock);  mask-image: var(--ic-clock); }
.yi-shield { -webkit-mask-image: var(--ic-shield); mask-image: var(--ic-shield); }
.yi-truck  { -webkit-mask-image: var(--ic-truck);  mask-image: var(--ic-truck); }
.yi-globe  { -webkit-mask-image: var(--ic-globe);  mask-image: var(--ic-globe); }
.yi-list   { -webkit-mask-image: var(--ic-list);   mask-image: var(--ic-list); }
.yi-check  { -webkit-mask-image: var(--ic-check);  mask-image: var(--ic-check); }
.yi-info   { -webkit-mask-image: var(--ic-info);   mask-image: var(--ic-info); }
.yi-menu   { -webkit-mask-image: var(--ic-menu);   mask-image: var(--ic-menu); width: 22px; height: 22px; }
.yi-close  { -webkit-mask-image: var(--ic-close);  mask-image: var(--ic-close); width: 22px; height: 22px; }

.nav-toggle .yi { pointer-events: none; }
.nav-toggle[aria-expanded="true"] .yi-menu { display: none; }
.nav-toggle[aria-expanded="false"] .yi-close { display: none; }

/* =========================================================
   21 — GÖRSELLER
   ========================================================= */
.figure {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--yak-surface-3);
}
.figure img { width: 100%; height: 100%; object-fit: cover; }
.figure--tall { aspect-ratio: 4 / 5; }
.figure--wide { aspect-ratio: 16 / 10; }

.figure-tag {
  position: absolute;
  left: var(--sp-4); bottom: var(--sp-4);
  background: rgba(255,255,255,0.95);
  color: var(--yak-navy-deep);
  padding: 8px 14px;
  border-radius: var(--r-sm);
  font-size: var(--fs-xs);
  font-weight: 650;
  backdrop-filter: blur(6px);
}

/* =========================================================
   21b — UZUN METİN SAYFALARI (yasal, rehber)
   ========================================================= */
.yazi { max-width: 74ch; }
.yazi h2 {
  font-size: var(--fs-xl);
  margin-top: var(--sp-7);
  margin-bottom: var(--sp-4);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--yak-line);
}
.yazi h2:first-of-type { border-top: 0; padding-top: 0; }
.yazi h3 { font-size: var(--fs-lg); margin-top: var(--sp-5); margin-bottom: var(--sp-3); }
.yazi p { color: var(--yak-ink-2); }
.yazi ul.checks { margin-bottom: var(--sp-5); }
.yazi a { text-decoration: underline; text-underline-offset: 2px; }
.yazi > .updated { margin-bottom: var(--sp-6); }

/* Yan sütun (rehber sayfaları) */
.yan { display: flex; flex-direction: column; gap: var(--sp-4); position: sticky; top: calc(var(--header-h) + 20px); }
.yan-kutu {
  background: #fff;
  border: 1px solid var(--yak-line);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
}
.yan-kutu h3 { font-size: var(--fs-lg); margin-bottom: var(--sp-2); }
.yan-kutu p { color: var(--yak-ink-2); margin-bottom: var(--sp-4); }
.yan-kutu .checks li { margin-bottom: var(--sp-2); font-size: var(--fs-sm); }
.yan-kutu .btn + .btn { margin-top: var(--sp-3); }
@media (max-width: 900px) { .yan { position: static; } }

/* Rehber kartları */
.rehber-grid {
  display: grid;
  /* min() olmadan dar ekranlarda sütun genişliği viewport'u aşıyor */
  grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
  gap: var(--sp-4);
}
.rehber-kart {
  display: flex;
  flex-direction: column;
  padding: var(--sp-5);
  background: #fff;
  border: 1px solid var(--yak-line);
  border-radius: var(--r-lg);
  color: var(--yak-ink);
  transition: border-color var(--dur-1) var(--ease), transform var(--dur-1) var(--ease), box-shadow var(--dur-2) var(--ease);
}
.rehber-kart:hover {
  border-color: var(--yak-navy);
  transform: translateY(-2px);
  box-shadow: var(--sh-2);
  color: var(--yak-ink);
}
.rk-bayrak { font-size: 1.7rem; line-height: 1; margin-bottom: var(--sp-4); }
.rehber-kart h3 { font-size: var(--fs-lg); margin-bottom: var(--sp-3); }
.rehber-kart p { font-size: var(--fs-sm); color: var(--yak-ink-2); margin-bottom: var(--sp-5); flex-grow: 1; }

/* =========================================================
   REHBER (BLOG)
   ========================================================= */
.etiket {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--yak-red);
  background: var(--yak-red-tint);
  padding: 4px 10px;
  border-radius: var(--r-sm);
}

.yazi-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: var(--sp-4);
  margin: var(--sp-5) 0 0;
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.6);
}
.page-head .yazi-meta .etiket { background: rgba(207,26,33,0.18); color: #F2A8AC; }

.yazi-kapak {
  margin: calc(var(--sp-7) * -1) 0 0;
  position: relative;
  z-index: 2;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-3);
  aspect-ratio: 16 / 9;
}
.yazi-kapak img { width: 100%; height: 100%; object-fit: cover; }
.yazi-sayfa .page-head { padding-bottom: calc(var(--sp-8) + var(--sp-6)); }

/* Numaralı adım listesi */
.adim-liste { list-style: none; counter-reset: adim; margin: 0 0 var(--sp-6); }
.adim-liste li {
  counter-increment: adim;
  position: relative;
  padding-left: 46px;
  margin-bottom: var(--sp-4);
}
.adim-liste li::before {
  content: counter(adim, decimal-leading-zero);
  position: absolute; left: 0; top: 1px;
  font-family: var(--yak-font-display);
  font-size: var(--fs-sm); font-weight: 700;
  color: var(--yak-red);
  letter-spacing: 0.02em;
}
.adim-liste strong { display: block; color: var(--yak-ink); margin-bottom: 2px; }
.adim-liste span { color: var(--yak-ink-2); font-size: var(--fs-sm); }

/* Yazı içi dönüşüm kutusu */
.yazi-cta {
  margin-top: var(--sp-7);
  padding: var(--sp-6);
  background: var(--yak-navy-deep);
  border-radius: var(--r-lg);
  color: rgba(255,255,255,0.78);
}
.yazi-cta h3 { color: #fff; margin-bottom: var(--sp-3); }
.yazi-cta p { color: rgba(255,255,255,0.74); margin-bottom: var(--sp-5); }
.yazi-cta-actions { display: flex; gap: var(--sp-3); flex-wrap: wrap; }
.yazi-cta .btn--outline { color: #fff; border-color: rgba(255,255,255,0.3); }
.yazi-cta .btn--outline:hover { background: rgba(255,255,255,0.1); color: #fff; border-color: #fff; }

/* Yazı kartı */
.yazi-kart {
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--yak-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  color: var(--yak-ink);
  transition: border-color var(--dur-1) var(--ease), transform var(--dur-1) var(--ease), box-shadow var(--dur-2) var(--ease);
}
.yazi-kart:hover {
  border-color: var(--yak-navy);
  transform: translateY(-2px);
  box-shadow: var(--sh-2);
  color: var(--yak-ink);
}
.yk-gorsel { display: block; aspect-ratio: 16 / 9; overflow: hidden; background: var(--yak-surface-3); }
.yk-gorsel img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-3) var(--ease); }
.yazi-kart:hover .yk-gorsel img { transform: scale(1.03); }
.yk-govde { display: flex; flex-direction: column; gap: var(--sp-3); padding: var(--sp-5); flex-grow: 1; }
.yk-baslik {
  font-family: var(--yak-font-display);
  font-size: var(--fs-lg); font-weight: 650;
  color: var(--yak-navy-deep); line-height: 1.25; letter-spacing: -0.02em;
}
.yk-ozet { font-size: var(--fs-sm); color: var(--yak-ink-2); flex-grow: 1; }
.yk-govde .etiket { align-self: flex-start; }

/* Öne çıkan yazı */
.one-cikan {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  background: #fff;
  border: 1px solid var(--yak-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  color: var(--yak-ink);
  transition: border-color var(--dur-1) var(--ease), box-shadow var(--dur-2) var(--ease);
}
.one-cikan:hover { border-color: var(--yak-navy); box-shadow: var(--sh-2); color: var(--yak-ink); }
.oc-gorsel { display: block; overflow: hidden; background: var(--yak-surface-3); min-height: 300px; }
.oc-gorsel img { width: 100%; height: 100%; object-fit: cover; }
.oc-govde {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: var(--sp-4); padding: var(--sp-7); justify-content: center;
}
.oc-baslik {
  font-family: var(--yak-font-display);
  font-size: var(--fs-2xl); font-weight: 700;
  color: var(--yak-navy-deep); line-height: 1.15; letter-spacing: -0.03em;
}
.oc-ozet { color: var(--yak-ink-2); font-size: var(--fs-sm); }
@media (max-width: 900px) {
  .one-cikan { grid-template-columns: 1fr; }
  .oc-gorsel { min-height: 0; aspect-ratio: 16 / 9; }
  .oc-govde { padding: var(--sp-5); }
  .yazi-kapak { margin-top: calc(var(--sp-6) * -1); }
}

/* İçindekiler kutusu (rehber sayfaları) */
.toc {
  background: var(--yak-surface-2);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
  margin-bottom: var(--sp-7);
}
.toc h2 {
  font-size: var(--fs-sm) !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 0 !important;
  padding: 0 !important;
  margin: 0 0 var(--sp-3) !important;
  color: var(--yak-ink-3);
  font-family: var(--yak-font-body);
}
.toc ol { list-style: none; counter-reset: toc; columns: 2; column-gap: var(--sp-6); }
.toc li { counter-increment: toc; margin-bottom: 7px; break-inside: avoid; }
.toc a { font-size: var(--fs-sm); color: var(--yak-ink); text-decoration: none; }
.toc a::before { content: counter(toc, decimal-leading-zero) '  '; color: var(--yak-red); font-weight: 700; }
.toc a:hover { color: var(--yak-red); }
@media (max-width: 640px) { .toc ol { columns: 1; } }

/* Belge listesi (ülke rehberleri) */
.belge-liste { list-style: none; border-top: 1px solid var(--yak-line); margin-bottom: var(--sp-5); }
.belge-liste li {
  display: flex; gap: var(--sp-3); align-items: flex-start;
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--yak-line);
  color: var(--yak-ink-2);
  font-size: var(--fs-sm);
}
.belge-liste li::before {
  content: '';
  flex-shrink: 0;
  width: 16px; height: 16px; margin-top: 4px;
  background-color: var(--yak-red);
  -webkit-mask-image: var(--ic-check); mask-image: var(--ic-check);
  -webkit-mask-size: contain; mask-size: contain;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
}

/* =========================================================
   22 — HAREKET
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity var(--dur-3) var(--ease-out), transform var(--dur-3) var(--ease-out);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 80ms; }
.reveal[data-delay="2"] { transition-delay: 160ms; }
.reveal[data-delay="3"] { transition-delay: 240ms; }

/* Rota çizgisi çizim animasyonu */
.route-live {
  stroke-dasharray: 1400;
  stroke-dashoffset: 1400;
  animation: drawRoute 3.2s var(--ease-out) 0.4s forwards;
}
@keyframes drawRoute { to { stroke-dashoffset: 0; } }

/* Hareket azaltma tercihi — TÜM hareketi durdurur */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .route-live { stroke-dashoffset: 0; }
}

/* =========================================================
   23 — YARDIMCI SINIFLAR
   ========================================================= */
.mb-0 { margin-bottom: 0 !important; }
.mt-5 { margin-top: var(--sp-5); }
.mt-6 { margin-top: var(--sp-6); }
.mt-7 { margin-top: var(--sp-7); }
.text-center { text-align: center; }
.muted { color: var(--yak-ink-3); }
.small { font-size: var(--fs-sm); }
.xsmall { font-size: var(--fs-xs); }

/* =========================================================
   24 — YAZDIRMA
   Sihirbaz listesinin yazdırılabilirliği korunur.
   ========================================================= */
@media print {
  .site-header, .site-footer, .wa-float, .mobile-bar,
  .hero, .cta-band, .wizard-grid, .wizard-cta, .wizard-bridge,
  .skip-link, .nav-mobile { display: none !important; }
  body { background: #fff; color: #000; padding: 0; }
  .wizard { box-shadow: none; border: none; padding: 0; }
  .wizard-result { background: #fff; border-left: 2px solid #000; }
  a[href^="http"]::after { content: ' (' attr(href) ')'; font-size: 0.8em; color: #555; }
}
