/* =============================================================================
   DÜZLEM — Tasarım Sistemi
   Yön A · "Teknik Çizim": kağıt zemin, hairline ızgara, lacivert mürekkep,
   tek vurgu logo mavisi. Kırmızı yalnızca kritik/hata sinyali olarak kullanılır —
   marka rengi değildir.
   ========================================================================== */

/* ---------- 1. Tokenlar --------------------------------------------------- */
:root {
  /* Yüzeyler */
  --paper:        #FAFAF7;
  --surface:      #FFFFFF;
  --surface-sunk: #F3F2ED;

  /* Çizgiler */
  --grid:         #E8E6DF;
  --rule:         #DCD9D0;
  --rule-strong:  #C4C0B4;

  /* Mürekkep — logo laciverti temel alındı, tüm tonlar WCAG AA (≥4.5:1) geçer */
  --ink:          #01162E;   /* 17.4:1 · logo laciverti */
  --ink-2:        #334659;   /*  9.3:1 */
  --muted:        #516276;   /*  6.0:1 · sunk üstünde 5.6:1 */
  --faint:        #5E7082;   /*  4.9:1 · sunk üstünde 4.6:1 */

  /* Vurgu — logo mavisi */
  --seal:         #0A56E4;   /*  5.8:1 · buton üstünde beyaz 6.1:1 */
  --seal-ink:     #0A46BC;   /*  7.7:1 · soft üstünde 7.2:1 */
  --seal-soft:    #EDF2FE;

  /* Durum — her biri kendi soft zemininde AA */
  --ok:           #0F7A46;   /* soft üstünde 4.8:1 */
  --ok-soft:      #EAF5EF;
  --warn:         #965F00;   /* soft üstünde 4.8:1 */
  --warn-soft:    #FBF2E2;
  --crit:         #C4271C;   /* soft üstünde 5.0:1 */
  --crit-soft:    #FBECEA;

  /* Tipografi */
  --font-display: 'Sora', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body:    'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  /* --------------------------------------------------------------------
     BOŞLUK ÖLÇEĞİ — 4 px tabanlı, on basamak.
     Bu dosyada ölçek dışı boşluk değeri kullanılmaz. Denetimde 120 ayrı
     boşluk değeri çıkmıştı; her bölümün elle ayarlanması düzenin
     bozulmasının asıl sebebiydi.
     -------------------------------------------------------------------- */
  --s-1:   4px;
  --s-2:   8px;
  --s-3:  12px;
  --s-4:  16px;
  --s-5:  24px;
  --s-6:  32px;
  --s-7:  48px;
  --s-8:  64px;
  --s-9:  96px;
  --s-10:128px;

  /* Bölüm ritmi — tek kaynak. Bölümler kendi padding'ini yazmaz. */
  --ritim:      clamp(64px, 8vw, 112px);
  --ritim-dar:  clamp(40px, 5vw, 72px);
  --ritim-genis: clamp(80px, 10vw, 144px);

  /* --------------------------------------------------------------------
     YAZI ÖLÇEĞİ — sekiz basamak. Ara değer üretilmez.
     -------------------------------------------------------------------- */
  --t-2xs: .6875rem;  /* 11 — mono etiket */
  --t-xs:  .75rem;    /* 12 */
  --t-sm:  .8125rem;  /* 13 */
  --t-md:  .9375rem;  /* 15 — arayüz temel */
  --t-lg:  1.0625rem; /* 17 — gövde/giriş */
  --t-xl:  1.25rem;   /* 20 */
  --t-2xl: clamp(1.375rem, 2.2vw, 1.75rem);
  --t-3xl: clamp(1.75rem, 3.6vw, 2.75rem);
  --t-4xl: clamp(2.5rem, 5.6vw, 4rem);

  /* Satır uzunluğu — üç ölçü. "68ch mi 70ch mi" kararı kalmasın.
     DİKKAT: ch birimi "0" karakterinin genişliğidir ve Inter'de ortalama
     karakterden ~%25 geniştir. 64ch ölçüldüğünde 686 px = ~80 karakter
     çıkıyordu; okunabilir bant 60–75. Değerler buna göre kalibre edildi.
       40ch ≈ 50 karakter · 56ch ≈ 70 karakter · 64ch ≈ 80 karakter */
  --olcu-dar:   40ch;
  --olcu:       56ch;
  --olcu-genis: 64ch;

  /* --------------------------------------------------------------------
     KIRILMA NOKTALARI — üç tane. CSS değişkeni medya sorgusunda
     kullanılamadığı için değerler elle yazılır; başka değer eklenmez.
       620px   tek sütun (mobil)
       900px   iki sütun → tek sütun (tablet)
      1180px   tam masaüstü ızgara
     -------------------------------------------------------------------- */

  /* Ölçü */
  --unit:         8px;
  /* 1200 → 1320: geniş ekranda iki yanda 350'şer px boş kağıt kalıyor ve
     alttaki tam genişlik fotoğraf bantlarıyla çelişiyordu. Metin blokları
     zaten kendi --olcu değerleriyle sınırlı, satır uzunluğu etkilenmiyor. */
  --container:    1320px;
  --radius:       4px;
  --radius-lg:    8px;

  /* Gölge — kağıt üstünde çok hafif */
  --lift:         0 1px 2px rgba(1, 22, 46, .05),
                  0 8px 24px -12px rgba(1, 22, 46, .12);
  --lift-lg:      0 2px 4px rgba(1, 22, 46, .05),
                  0 24px 48px -20px rgba(1, 22, 46, .18);

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

/* ---------- 2. Sıfırlama -------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -.022em;
  line-height: 1.12;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }
ul, ol { margin: 0; padding: 0; list-style: none; }

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

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--ink);
  color: #fff;
  padding: 12px 16px;
  font-size: var(--t-md);
}
.skip-link:focus { left: 12px; top: 12px; }

.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;
}

/* ---------- 3. Yerleşim --------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--s-5);
}
@media (max-width: 640px) { .container { padding-inline: var(--s-4); } }

/* Bölüm ritmi tek kaynaktan gelir; bölümler kendi padding'ini yazmaz.
   Sayfa boyunca aynı dikey nefes — düzensizliğin en görünür sebebi buydu. */
.section { padding-block: var(--ritim); position: relative; }
.section--sunk  { background: var(--surface-sunk); }
.section--tight { padding-block: var(--ritim-dar); }
.section--genis { padding-block: var(--ritim-genis); }

/* Ardışık iki bölüm arasında iki padding üst üste biniyordu (72 + 72 = 144 px)
   ve sayfada anlamsız boşluk kuyuları açıyordu. Zemin aynıysa aradaki nefes
   tek sayılır; zemin değişiyorsa (gömük bölüm) tam boşluk korunur, yoksa
   renk geçişi metne yapışır. */
.section--sunk + .section--sunk { padding-top: 0; }
.section--tight:not(.section--sunk) + .section--tight:not(.section--sunk) { padding-top: 0; }

/* ---- Yığın: dikey ritmi tek yerden yöneten yardımcı ------------------------
   Kardeş öğeler arasına eşit boşluk koyar. Her bileşenin kendi
   margin-bottom'unu yazması yerine kap bir kez ölçek adımı seçer. */
.yigin      > * + * { margin-top: var(--s-5); }
.yigin--sik > * + * { margin-top: var(--s-3); }
.yigin--gev > * + * { margin-top: var(--s-7); }

/* ---- Küme: yan yana dizilen, sarabilen öğeler ---- */
.kume {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-3);
}

/* Teknik çizim ızgarası — kağıt dokusu */
.grid-bg { position: relative; isolation: isolate; }
.grid-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(to right,  var(--grid) 1px, transparent 1px),
    linear-gradient(to bottom, var(--grid) 1px, transparent 1px);
  background-size: 32px 32px;
  -webkit-mask-image: radial-gradient(ellipse 120% 80% at 50% 0%, #000 20%, transparent 78%);
          mask-image: radial-gradient(ellipse 120% 80% at 50% 0%, #000 20%, transparent 78%);
  pointer-events: none;
}

.rule { height: 1px; background: var(--rule); border: 0; margin: 0; }

/* ---------- 4. Tipografi araçları ----------------------------------------- */
.label {
  font-family: var(--font-mono);
  font-size: var(--t-2xs);
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}

.label--seal { color: var(--seal); }

.display-1 { font-size: var(--t-4xl); letter-spacing: -.035em; }
.display-2 { font-size: var(--t-3xl); letter-spacing: -.028em; }
.display-3 { font-size: var(--t-2xl); letter-spacing: -.018em; }

.lede {
  font-size: var(--t-lg);
  line-height: 1.62;
  color: var(--ink-2);
  max-width: var(--olcu);
}

.muted { color: var(--muted); }
.mono  { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }

/* Bölüm başlığı — "01 —" numaralandırma.
   Ölçüsü .container'dan değil, okunabilir satır uzunluğundan gelir. */
.section-head {
  max-width: var(--olcu-genis);
  margin-bottom: var(--s-7);
}
.section-head__no {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  margin-bottom: var(--s-4);
}
.section-head__no::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--rule-strong);
}
.section-head h2 { margin-bottom: var(--s-4); }

/* ---------- 5. Butonlar --------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: var(--t-md);
  font-weight: 500;
  font-family: var(--font-body);
  letter-spacing: -.006em;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  white-space: nowrap;
  transition: background .18s var(--ease), border-color .18s var(--ease),
              color .18s var(--ease), transform .18s var(--ease);
}
.btn:active { transform: translateY(1px); }

/* Birincil — mürekkep, "kaşe basar gibi" */
.btn--ink {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.btn--ink:hover { background: #000; }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--rule-strong);
}
.btn--ghost:hover { border-color: var(--ink); background: rgba(1,22,46,.03); }

.btn--seal {
  background: var(--seal);
  color: #fff;
  border-color: var(--seal);
}
.btn--seal:hover { background: var(--seal-ink); border-color: var(--seal-ink); }

.btn--sm { padding: 8px 16px; font-size: var(--t-md); }
.btn--lg { padding: 16px 24px; font-size: var(--t-lg); }
.btn--block { width: 100%; }

.btn__arrow { transition: transform .22s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(3px); }

/* Metin bağlantısı */
.link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: var(--t-md);
  color: var(--ink);
  border-bottom: 1px solid var(--rule-strong);
  padding-bottom: 2px;
  transition: border-color .18s var(--ease), color .18s var(--ease);
}
.link:hover { color: var(--seal); border-color: var(--seal); }
.link svg { transition: transform .22s var(--ease); }
.link:hover svg { transform: translateX(3px); }

/* ---------- 6. Çipler ve rozetler ----------------------------------------- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-size: var(--t-sm);
  color: var(--ink-2);
  white-space: nowrap;
}
.chip svg { flex: none; color: var(--ok); }

.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 3px;
  font-family: var(--font-mono);
  font-size: var(--t-2xs);
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.badge--ok   { background: var(--ok-soft);   color: var(--ok);   }
.badge--warn { background: var(--warn-soft); color: var(--warn); }
.badge--crit { background: var(--crit-soft); color: var(--crit); }
.badge--ink  { background: rgba(1,22,46,.06); color: var(--ink-2); }

/* Canlı nokta */
.pulse {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ok);
  position: relative;
  flex: none;
}
.pulse::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid var(--ok);
  animation: pulse 2.2s var(--ease) infinite;
}
@keyframes pulse {
  0%   { transform: scale(.7); opacity: .9; }
  70%  { transform: scale(1.9); opacity: 0; }
  100% { transform: scale(1.9); opacity: 0; }
}

/* ---------- 7. Kartlar — teknik çizim köşe işaretleriyle ------------------ */
.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 24px;
}

/* Köşe kesim işaretleri (crop marks) */
.card--ticks::before,
.card--ticks::after {
  content: '';
  position: absolute;
  width: 9px; height: 9px;
  border: 1px solid var(--seal);
  pointer-events: none;
}
.card--ticks::before { top: -1px;  left: -1px;  border-right: 0; border-bottom: 0; }
.card--ticks::after  { bottom: -1px; right: -1px; border-left: 0;  border-top: 0;    }

.card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--rule);
}

/* ---------- 8. Başlık / Navigasyon ---------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 247, .82);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
          backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.site-header.is-stuck {
  border-bottom-color: var(--rule);
  background: rgba(250, 250, 247, .94);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 68px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: none;
}
.brand__logo {
  display: block;
  width: auto;
  height: 28px;          /* oran 917:177 — genişlik kendiliğinden gelir */
  flex: none;
}
@media (max-width: 560px) { .brand__logo { height: 24px; } }

.nav { display: flex; align-items: center; gap: 4px; margin-inline-start: auto; }
.nav__link {
  padding: 8px 12px;
  font-size: var(--t-md);
  color: var(--ink-2);
  border-radius: var(--radius);
  transition: color .16s var(--ease), background .16s var(--ease);
}
.nav__link:hover { color: var(--ink); background: rgba(1,22,46,.045); }
.nav__link.is-active { color: var(--ink); font-weight: 500; }

.site-header__cta { display: flex; align-items: center; gap: 8px; flex: none; }

.nav-toggle {
  display: none;
  margin-inline-start: auto;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  cursor: pointer;
}

@media (max-width: 1080px) {
  .nav, .site-header__cta { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* Mobil menü */
.mobile-nav {
  display: none;
  border-top: 1px solid var(--rule);
  background: var(--paper);
  padding: 16px 0 24px;
}
.mobile-nav.is-open { display: block; }
.mobile-nav a {
  display: block;
  padding: 12px 0;
  font-size: var(--t-lg);
  border-bottom: 1px solid var(--rule);
}
.mobile-nav .btn { margin-top: 16px; }

/* ---------- 9. Hero — TEK EKSEN -------------------------------------------
   Önceki iki sütunlu kurguda metin bloğu ile ürün kartı hiçbir hizalamada
   oturmuyordu: ortalayınca kart başlığın üstünden başlıyor, üstten
   hizalayınca sol sütunun altında boşluk kuyusu açılıyordu. Sebep yapısal —
   iki farklı yükseklikte nesneyi yan yana koyup üçüncü bir öğe (fotoğraf)
   eklendiğinde denge matematiksel olarak tutmuyor.

   Çözüm sütunları kaldırmak: her şey tek merkez çizgisinde.
     1) Ortalanmış metin bloğu
     2) Tam genişlik fotoğraf
     3) Fotoğrafın üstüne binen ürün kartı

   Bindirme negatif üst kenar boşluğuyla yapılır — mutlak konumlandırma
   yok, :has() yok. Fotoğraf silinirse kart yerinde kalır, yalnızca
   bindirdiği zemin kaybolur.
   -------------------------------------------------------------------------- */
.hero { padding-block: var(--s-8) var(--s-7); }

/* Ortalanmış metin bloğu. Dikey ritim tek yerden verilir. */
.hero__ic { text-align: center; }
.hero__ic > * + * { margin-top: var(--s-5); }
.hero__ic h1 { margin: 0; }
.hero__ic .h1-kicker { margin-bottom: 0; }

/* Başlık üstü etiket — hem hero'da hem iç sayfa başlıklarında geçerli */
.h1-kicker {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--t-2xs);
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--seal);
  margin-bottom: var(--s-3);
}

/* Ortalanmış metinde okunabilir satır uzunluğu kap değil, ölçü belirler. */
.hero__lede {
  max-width: var(--olcu);
  margin-inline: auto;
  font-size: var(--t-lg);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  justify-content: center;
}
.hero .chip-row {
  gap: var(--s-2);
  justify-content: center;
}
.hero .chip-row .chip { padding: var(--s-1) var(--s-3); font-size: var(--t-xs); }

/* ---- Sahne: tam genişlik fotoğraf + üstüne binen kart -------------------- */
.hero-sahne {
  position: relative;
  padding-bottom: var(--ritim-dar);
  background: var(--paper);
}

/* Fotoğraf bandı. Kartın bineceği alan koyulaştırılır ki beyaz kart
   kenarları her karede net ayrılsın — kontrast fotoğrafa bırakılmaz. */
.foto-bant {
  display: block;
  position: relative;
  background: var(--ink);
  border-block: 1px solid var(--rule);
}
.foto-bant img {
  width: 100%;
  height: clamp(260px, 30vw, 420px);
  object-fit: cover;
  object-position: 50% 40%;
  filter: saturate(.62) contrast(1.04) brightness(.82);
}
.foto-bant::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(1, 22, 46, .18) 0%,
    rgba(1, 22, 46, .34) 100%);
  pointer-events: none;
}

/* Kart bandın içine girer: negatif üst boşluk kadar bindirir. */
.hero-sahne__kart {
  position: relative;
  z-index: 1;
  margin-top: calc(-1 * clamp(170px, 21vw, 300px));
}
.hero-sahne__kart .radar {
  /* Kap 1320 px; kart o genişlikte gerilir ve liste satırları okunmaz
     ölçüde uzardı. Ürün paneli kendi ölçüsünde ortalanır. */
  max-width: 900px;
  margin-inline: auto;
}
.hero-sahne__kart .radar__dim {
  display: block;
  max-width: 900px;
  margin: var(--s-3) auto 0;
  text-align: end;
  font-family: var(--font-mono);
  font-size: .625rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--faint);
}

@media (max-width: 640px) {
  /* Dar ekranda kart bandın neredeyse tamamını kaplar; bindirmeyi azaltıp
     bandın bir kısmını görünür bırakıyoruz. */
  .foto-bant img { height: 220px; }
  .hero-sahne__kart { margin-top: -120px; }

  /* Alt alta düşen iki düğme farklı genişlikte olunca ortalanmış blok
     tırtıklı duruyordu; ikisi de tam genişlik. */
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }

  /* Etiket iki satıra bölünüyordu; harf aralığı biraz kısılınca tek satır. */
  .hero__ic .h1-kicker { letter-spacing: .1em; }
}

/* ---- Kanıt şeridi — hero altı rakamlar ---- */
.kanitbar {
  background: var(--surface);
  border-block: 1px solid var(--rule);
}
.kanitbar__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.kanitbar__list li {
  padding: 24px 24px;
  border-inline-start: 1px solid var(--rule);
}
.kanitbar__list li:first-child { border-inline-start: 0; padding-inline-start: 0; }

.kanitbar__sayi {
  display: block;
  font-size: var(--t-2xl);
  font-weight: 500;
  letter-spacing: -.03em;
  line-height: 1;
  color: var(--seal);
  margin-bottom: 8px;
}
.kanitbar__baslik {
  display: block;
  font-size: var(--t-md);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}
.kanitbar__not {
  display: block;
  font-size: var(--t-xs);
  line-height: 1.5;
  color: var(--muted);
}

@media (max-width: 900px) {
  .kanitbar__list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .kanitbar__list li { padding: 24px 16px; }
  .kanitbar__list li:nth-child(odd)  { border-inline-start: 0; padding-inline-start: 0; }
  .kanitbar__list li:nth-child(n+3)  { border-top: 1px solid var(--rule); }
}
@media (max-width: 560px) {
  .kanitbar__list { grid-template-columns: minmax(0, 1fr); }
  .kanitbar__list li { border-inline-start: 0; padding-inline: 0; }
  .kanitbar__list li + li { border-top: 1px solid var(--rule); }
}

/* ---------- 10. Geçersizlik Radarı ---------------------------------------- */
.radar {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--rule-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--lift-lg);
  overflow: hidden;
}

/* Teknik çizim ölçü etiketi — kartın üstünde kendi satırında.
   Önceden kartın içinde position:absolute ile duruyordu ama .radar
   overflow:hidden olduğu için kırpılıyordu: "örnek veri" uyarısı hiç
   görünmüyordu. Artık kardeş öğe. */
.radar__dim {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--t-2xs);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: calc(var(--s-2) * -1);
}

.radar__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 16px;
  border-bottom: 1px solid var(--rule);
  background: linear-gradient(var(--surface), var(--surface-sunk));
}
.radar__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: var(--t-2xs);
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink);
}

.radar__alert {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--crit-soft);
  border-bottom: 1px solid rgba(196, 39, 28, .14);
  font-size: var(--t-md);
  font-weight: 500;
  color: var(--crit);
}
.radar__alert strong { font-variant-numeric: tabular-nums; }

.radar__list { padding: 4px 0; }

.radar__item {
  width: 100%;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: transparent;
  border: 0;
  border-inline-start: 2px solid transparent;
  text-align: start;
  cursor: pointer;
  transition: background .16s var(--ease), border-color .16s var(--ease);
}
.radar__item:hover { background: var(--surface-sunk); }
.radar__item.is-open { background: var(--surface-sunk); }
.radar__item[data-level="crit"].is-open { border-inline-start-color: var(--crit); }
.radar__item[data-level="warn"].is-open { border-inline-start-color: var(--warn); }

.radar__no {
  font-family: var(--font-mono);
  font-size: var(--t-sm);
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.radar__what { font-size: var(--t-md); color: var(--ink); }

.radar__detail {
  display: none;
  padding: 0 16px 16px 48px;
  font-size: var(--t-md);
  line-height: 1.6;
  color: var(--muted);
  background: var(--surface-sunk);
}
.radar__detail.is-open { display: block; }

.radar__foot {
  padding: 16px 16px;
  border-top: 1px solid var(--rule);
  background: var(--surface-sunk);
}
.radar__score-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
}
.radar__score {
  font-family: var(--font-mono);
  font-size: var(--t-2xl);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  letter-spacing: -.02em;
}
.radar__meter {
  height: 5px;
  background: var(--rule);
  border-radius: 999px;
  overflow: hidden;
}
.radar__meter span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--ok), #2FA96B);
  transition: width 1.4s var(--ease);
}

/* Kontrol listesi — artık kartın DIŞINDA değil, kartın alt bölümü.
   Ayrı bir panel olarak durduğunda hero'da üçüncü bir kutu açıyordu; sistemin
   neyi kontrol ettiği zaten radarın kendi bilgisi, aynı kartta yeri var. */
.radar__checks {
  display: grid;
  gap: var(--s-2);
  padding: var(--s-4) var(--s-5);
  border-top: 1px solid var(--rule);
  background: var(--surface-sunk);
}
.radar__checks li {
  display: flex;
  align-items: flex-start;
  gap: var(--s-2);
  font-size: var(--t-sm);
  line-height: 1.45;
  color: var(--muted);
}
.radar__checks svg { flex: none; margin-top: 4px; color: var(--ok); }

/* ---------- 11. Yardımcı ızgaralar ---------------------------------------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; }

@media (max-width: 980px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: minmax(0,1fr); }
}

/* ---------- 12. Belirme animasyonu ---------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* ---------- 13. Ortak: onay işaretli liste -------------------------------- */
.tick-list { display: grid; gap: 12px; }
.tick-list li {
  position: relative;
  padding-inline-start: 26px;
  font-size: var(--t-md);
  line-height: 1.55;
  color: var(--ink-2);
}
.tick-list li::before {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  top: .5em;
  width: 12px; height: 7px;
  border-inline-start: 1.6px solid var(--seal);
  border-bottom: 1.6px solid var(--seal);
  transform: rotate(-45deg) translateY(-1px);
}

/* ---------- 13b. Bedel kartları ------------------------------------------- */
.bedel-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
@media (max-width: 1080px) { .bedel-list { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 640px)  { .bedel-list { grid-template-columns: minmax(0,1fr); } }

.bedel {
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-top: 2px solid var(--crit);
  border-radius: var(--radius);
}
.bedel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}
.bedel__no { font-size: var(--t-2xl); font-weight: 500; letter-spacing: -.03em; color: var(--rule-strong); }
.bedel__title { font-size: var(--t-lg); font-weight: 600; margin-bottom: 8px; }
.bedel__body  { font-size: var(--t-md); line-height: 1.62; color: var(--muted); margin-bottom: 16px; }

.bedel__vurgu {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--rule);
  font-size: var(--t-md);
  font-weight: 600;
  line-height: 1.45;
  color: var(--crit);
}

.bedel__kapanis {
  margin-top: 24px;
  padding: 16px 24px;
  background: var(--surface-sunk);
  border-inline-start: 2px solid var(--ok);
  border-radius: var(--radius);
  font-size: var(--t-lg);
  line-height: 1.6;
  color: var(--ink-2);
  max-width: var(--olcu-genis);
}
.bedel__kapanis strong { color: var(--ink); font-weight: 600; }

/* ---------- 14. Problem kartları ------------------------------------------ */
.prob-card__no {
  display: block;
  font-size: var(--t-3xl);
  font-weight: 500;
  letter-spacing: -.03em;
  color: var(--rule-strong);
  margin-bottom: 16px;
}
.prob-card__title { font-size: var(--t-lg); font-weight: 600; margin-bottom: 8px; }
.prob-card__body  { font-size: var(--t-md); line-height: 1.62; color: var(--muted); }

/* ---------- 15. Akış rayı ------------------------------------------------- */
.rail {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--rule-strong);
  border-radius: var(--radius-lg);
  padding: 32px 24px 24px;
  margin-bottom: clamp(48px, 6vw, 72px);
  box-shadow: var(--lift);
}
.rail__dim {
  position: absolute;
  top: -10px;
  left: 24px;
  padding: 0 8px;
  background: var(--paper);
  font-family: var(--font-mono);
  font-size: var(--t-2xs);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--faint);
}

.rail__track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
}
.rail__node {
  position: relative;
  padding-top: 24px;
  padding-inline-end: 16px;
}
/* Bağlantı çizgisi */
.rail__node::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 0;
  right: 0;
  height: 1px;
  background: repeating-linear-gradient(90deg,
    var(--rule-strong) 0 4px, transparent 4px 8px);
}
.rail__node:last-child::before { right: calc(100% - 11px); }

.rail__dot {
  position: absolute;
  top: 0;
  left: 0;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--rule-strong);
}
.rail__node[data-state="ok"]   .rail__dot { border-color: var(--ok);   background: var(--ok);   }
.rail__node[data-state="live"] .rail__dot { border-color: var(--seal); background: var(--seal); }
.rail__node[data-state="live"] .rail__dot::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1px solid var(--seal);
  animation: pulse 2.2s var(--ease) infinite;
}

.rail__label { display: block; font-weight: 600; font-size: var(--t-md); margin-bottom: 4px; }
.rail__code  { display: block; font-size: var(--t-xs); color: var(--seal); margin-bottom: 4px; }
.rail__note  { display: block; font-size: var(--t-sm); color: var(--muted); }
.rail__node[data-state="idle"] .rail__label,
.rail__node[data-state="idle"] .rail__code  { color: var(--faint); }

@media (max-width: 900px) {
  .rail__track { grid-template-columns: minmax(0,1fr); gap: 4px; }
  .rail__node { padding: 0 0 16px 24px; }
  .rail__node::before {
    top: 5px; bottom: -5px; left: 5px; right: auto;
    width: 1px; height: auto;
    background: repeating-linear-gradient(180deg,
      var(--rule-strong) 0 4px, transparent 4px 8px);
  }
  .rail__node:last-child::before { display: none; }
  .rail__label { display: inline; margin-inline-end: 10px; }
  .rail__code  { display: inline; margin-inline-end: 10px; }
  .rail__note  { display: inline; }
}

/* ---------- 16. Adımlar --------------------------------------------------- */
.steps {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--rule);
}
.step {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 24px;
  padding-block: 24px;
  border-bottom: 1px solid var(--rule);
}
.step__no {
  font-size: var(--t-2xl);
  font-weight: 500;
  letter-spacing: -.03em;
  color: var(--rule-strong);
}
.step__body { display: grid; gap: 8px; max-width: var(--olcu-genis); }
.step__title { font-size: var(--t-xl); font-weight: 600; }
.step__text  { font-size: var(--t-md); line-height: 1.65; color: var(--muted); }

@media (max-width: 640px) {
  .step { grid-template-columns: minmax(0,1fr); gap: 12px; }
  .step__no { font-size: var(--t-lg); }
}

/* ---------- 17. Şablonlar ------------------------------------------------- */
.tpl-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
}
@media (max-width: 980px) { .tpl-grid { grid-template-columns: minmax(0,1fr); } }

.tpl-cats {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.tpl-cats__head {
  padding: 16px 24px;
  background: var(--surface-sunk);
  border-bottom: 1px solid var(--rule);
}
.tpl-cats__foot {
  padding: 12px 24px;
  border-top: 1px solid var(--rule);
  background: var(--surface-sunk);
  font-size: var(--t-xs);
  color: var(--muted);
}
.tpl-cats__foot strong { color: var(--ink); font-weight: 600; }

.tpl-cat { border-bottom: 1px solid var(--rule); }
.tpl-cat:last-child { border-bottom: 0; }
.tpl-cat > a {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  transition: background .16s var(--ease);
}
.tpl-cat > a:hover { background: var(--surface-sunk); }
.tpl-cat > a:hover .tpl-cat__name { color: var(--seal); }
.tpl-cat > a > svg { color: var(--rule-strong); transition: transform .22s var(--ease), color .18s var(--ease); }
.tpl-cat > a:hover > svg { color: var(--seal); transform: translateX(3px); }

.tpl-cat__no    { font-size: var(--t-xs); color: var(--rule-strong); }
.tpl-cat__name  { display: block; font-size: var(--t-md); font-weight: 600; transition: color .16s var(--ease); }
.tpl-cat__items { display: block; font-size: var(--t-2xs); color: var(--muted); margin-top: 4px; }

/* ---------- 18. Kanıt zinciri --------------------------------------------- */
.chain {
  background: var(--surface);
  border: 1px solid var(--rule-strong);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--lift);
}
.chain__head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--rule);
  background: linear-gradient(var(--surface), var(--surface-sunk));
}
.chain__report { display: flex; align-items: baseline; gap: 12px; flex: 1 1 auto; min-width: 0; }
.chain__report strong { font-size: var(--t-lg); color: var(--seal); }
.chain__report span   { font-size: var(--t-md); color: var(--ink-2); }

.chain__links { display: grid; }
.chain__link {
  display: grid;
  grid-template-columns: 190px 1fr auto;
  grid-template-areas: 'label leader value' '. . meta';
  align-items: center;
  gap: 4px 16px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--rule);
}
.chain__link:last-child { border-bottom: 0; }
.chain__label  { grid-area: label; }
.chain__leader {
  grid-area: leader;
  height: 1px;
  background: repeating-linear-gradient(90deg,
    var(--rule-strong) 0 2px, transparent 2px 6px);
}
.chain__value {
  grid-area: value;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--t-md);
  font-weight: 500;
  white-space: nowrap;
}
.chain__value svg { color: var(--ok); flex: none; }
.chain__meta {
  grid-area: meta;
  justify-self: end;
  font-size: var(--t-2xs);
  color: var(--faint);
}

@media (max-width: 780px) {
  .chain__link {
    grid-template-columns: minmax(0,1fr);
    grid-template-areas: 'label' 'value' 'meta';
    gap: 4px;
  }
  .chain__leader { display: none; }
  .chain__value  { white-space: normal; }
  .chain__meta   { justify-self: start; }
}

/* ---------- 19. Modüller -------------------------------------------------- */
.mod-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
@media (max-width: 1080px) { .mod-grid { grid-template-columns: repeat(3, minmax(0,1fr)); } }
@media (max-width: 900px)  { .mod-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 560px)  { .mod-grid { grid-template-columns: minmax(0,1fr); } }

.mod-card {
  padding: 16px;
  transition: border-color .18s var(--ease), transform .18s var(--ease), box-shadow .18s var(--ease);
}
.mod-card:hover {
  border-color: var(--rule-strong);
  transform: translateY(-2px);
  box-shadow: var(--lift);
}
.mod-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 16px;
}
.mod-card__no   { font-size: var(--t-2xs); letter-spacing: .12em; color: var(--faint); }
.mod-card__name { font-size: var(--t-lg); font-weight: 600; margin-bottom: 8px; }
.mod-card__desc { font-size: var(--t-md); line-height: 1.58; color: var(--muted); }

/* ---------- 20. Çevrimdışı saha ------------------------------------------- */
.off-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .82fr);
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}
@media (max-width: 980px) { .off-grid { grid-template-columns: minmax(0,1fr); } }

.sync {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--rule-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--lift-lg);
  overflow: hidden;
}
.sync__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 16px;
  border-bottom: 1px solid var(--rule);
  background: linear-gradient(var(--surface), var(--surface-sunk));
}
.sync__title { font-size: var(--t-2xs); letter-spacing: .14em; font-weight: 500; }

.sync__list { padding: 4px 0; }
.sync__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  font-size: var(--t-md);
  border-bottom: 1px solid var(--rule);
}
.sync__list li:last-child { border-bottom: 0; }
.sync__list span { color: var(--muted); font-size: var(--t-sm); flex: none; }
.sync__list em {
  margin-inline-start: auto;
  font-style: normal;
  font-size: var(--t-xs);
  color: var(--faint);
  flex: none;
}

.sync__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 16px;
  border-top: 1px solid var(--rule);
  background: var(--warn-soft);
  font-size: var(--t-md);
  color: var(--warn);
}
.sync__count strong { font-size: var(--t-lg); }
.sync__state { display: inline-flex; align-items: center; gap: 8px; }
.sync__state svg { animation: spin 2.6s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- 21. Zaman kazancı hesaplayıcı --------------------------------- */
.calc-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .9fr);
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}
@media (max-width: 980px) { .calc-grid { grid-template-columns: minmax(0,1fr); } }

.calc-note { margin-top: 16px; font-size: var(--t-xs); color: var(--faint); }

.calc { padding: 24px; }
.calc__field {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}
.calc__out {
  font-size: var(--t-2xl);
  font-weight: 500;
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
}

.calc__range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: var(--rule);
  cursor: pointer;
}
.calc__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--ink);
  border: 3px solid var(--surface);
  box-shadow: 0 0 0 1px var(--rule-strong);
  cursor: grab;
}
.calc__range::-moz-range-thumb {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--ink);
  border: 3px solid var(--surface);
  box-shadow: 0 0 0 1px var(--rule-strong);
  cursor: grab;
}
.calc__scale {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: var(--t-2xs);
  color: var(--faint);
}

.calc__result {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}
.calc__stat { display: grid; gap: 8px; }
.calc__big {
  font-size: var(--t-3xl);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1;
  color: var(--seal);
  font-variant-numeric: tabular-nums;
}
.calc__big small {
  font-size: var(--t-sm);
  font-weight: 400;
  letter-spacing: 0;
  color: var(--muted);
}
.calc__foot { margin-top: 16px; font-size: var(--t-xs); line-height: 1.55; }

/* ---------- 22. Neden Düzlem ---------------------------------------------- */
.why-card { padding: 24px; }
.why-card__icon  { color: var(--seal); margin-bottom: 16px; }
.why-card__title { font-size: var(--t-lg); font-weight: 600; margin-bottom: 8px; }
.why-card__body  { font-size: var(--t-md); line-height: 1.6; color: var(--muted); }

/* ---------- 23. Paketler -------------------------------------------------- */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}
@media (max-width: 980px) { .pkg-grid { grid-template-columns: minmax(0,1fr); } }

.pkg {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.pkg--featured {
  border-color: var(--ink);
  box-shadow: var(--lift-lg);
}
.pkg__flag {
  position: absolute;
  top: -10px;
  inset-inline-start: 24px;
  padding: 4px 8px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 3px;
  font-size: var(--t-2xs);
}
.pkg__name    { font-size: var(--t-2xl); font-weight: 600; margin-bottom: 4px; }
.pkg__users {
  font-size: var(--t-sm);
  font-weight: 500;
  letter-spacing: .02em;
  color: var(--seal);
  margin-bottom: 12px;
}
.pkg__for     { font-size: var(--t-sm); color: var(--ink-2); margin-bottom: 12px; }
.pkg__summary { font-size: var(--t-md); line-height: 1.6; color: var(--muted); padding-bottom: 16px; border-bottom: 1px solid var(--rule); margin-bottom: 16px; }
.pkg__features { margin-bottom: 24px; }

.pkg__all {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: var(--t-md);
  font-weight: 500;
  color: var(--ink);
}
.pkg__all svg { color: var(--ok); flex: none; }

.pkg .btn { margin-top: auto; }

/* ---- Çekirdek sistem listesi ---- */
.core-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
@media (max-width: 980px) { .core-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 640px) { .core-grid { grid-template-columns: minmax(0,1fr); } }

.core-block__title {
  font-family: var(--font-mono);
  font-size: var(--t-2xs);
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 12px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--rule);
}

/* ---- Ek modüller ---- */
.addon-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
@media (max-width: 900px) { .addon-list { grid-template-columns: minmax(0,1fr); } }

.addon {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--rule-strong);
  border-radius: var(--radius);
  padding: 24px;
}
.addon::before,
.addon::after {
  content: '';
  position: absolute;
  width: 9px; height: 9px;
  border: 1px solid var(--seal);
  pointer-events: none;
}
.addon::before { top: -1px;  left: -1px;  border-right: 0; border-bottom: 0; }
.addon::after  { bottom: -1px; right: -1px; border-left: 0;  border-top: 0;   }

.addon__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}
.addon__no   { font-size: var(--t-2xs); letter-spacing: .12em; color: var(--faint); }
.addon__name { font-size: var(--t-lg); font-weight: 600; margin-bottom: 8px; }
.addon__desc { font-size: var(--t-md); line-height: 1.62; color: var(--muted); }
.addon__items {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
}
.addon__items li { font-size: var(--t-md); }

/* Ana sayfadaki ek modül şeridi */
.addon-strip {
  margin-top: 24px;
  padding: 24px 24px;
  background: var(--surface);
  border: 1px dashed var(--rule-strong);
  border-radius: var(--radius-lg);
}
.addon-strip__head { max-width: var(--olcu-genis); margin-bottom: 16px; }
.addon-strip__head p {
  margin-top: 8px;
  font-size: var(--t-md);
  line-height: 1.6;
  color: var(--muted);
}
.addon-strip__list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--rule);
}
@media (max-width: 980px) { .addon-strip__list { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 560px) { .addon-strip__list { grid-template-columns: minmax(0,1fr); } }

.addon-strip__list li { display: flex; gap: 8px; align-items: flex-start; }
.addon-strip__no { font-size: var(--t-2xs); color: var(--seal); padding-top: 2px; }
.addon-strip__list strong { display: block; font-size: var(--t-md); font-weight: 600; line-height: 1.35; }
.addon-strip__list strong + span { display: block; margin-top: 4px; font-size: var(--t-xs); color: var(--faint); }

.pkg-note {
  margin-top: 24px;
  text-align: center;
  font-size: var(--t-md);
  color: var(--muted);
  max-width: var(--olcu);
  margin-inline: auto;
}

/* ---------- 24. SSS ------------------------------------------------------- */
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
}
@media (max-width: 980px) { .faq-grid { grid-template-columns: minmax(0,1fr); } }

.faq {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.faq__item { border-bottom: 1px solid var(--rule); }
.faq__item:last-child { border-bottom: 0; }

.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 24px;
  background: transparent;
  border: 0;
  text-align: start;
  font-size: var(--t-lg);
  font-weight: 500;
  cursor: pointer;
  transition: background .16s var(--ease);
}
.faq__q:hover { background: var(--surface-sunk); }
.faq__chev { flex: none; color: var(--muted); transition: transform .22s var(--ease); }
.faq__q[aria-expanded="true"] .faq__chev { transform: rotate(180deg); }

.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .28s var(--ease);
}
.faq__a > p {
  overflow: hidden;
  font-size: var(--t-md);
  line-height: 1.65;
  color: var(--muted);
  padding-inline: 24px;
}
.faq__a.is-open { grid-template-rows: 1fr; }
.faq__a.is-open > p { padding-bottom: 16px; }

/* details/summary sürümü.
   ESKİ SÜRÜMDE soru bir <button data-faq> idi; açılıp kapanması tamamen
   JavaScript'e bağlıydı ve betik yüklenmeden cevaplar erişilemiyordu.
   Artık <details>/<summary> kullanılıyor: betik olmadan da çalışıyor.
   Aşağıdaki kurallar aynı görünümü tarayıcının kendi durumuna bağlıyor —
   .is-open sınıfı gelmiyor, [open] geliyor.

   .faq__item sınıfı bazen <details>'in kendisinde, bazen dıştaki <li>'de
   duruyor; durumu her iki dizilişte de <details> taşıdığı için seçiciler
   ona bağlandı. */
.faq summary.faq__q { list-style: none; }
.faq summary.faq__q::-webkit-details-marker { display: none; }
.faq details[open] .faq__chev { transform: rotate(180deg); }
.faq details[open] > .faq__a { grid-template-rows: 1fr; }
.faq details[open] > .faq__a > p { padding-bottom: 16px; }

/* Yazdırmada bütün cevaplar açık olsun. */
@media print { .faq .faq__a { grid-template-rows: 1fr; } }

/* ---------- 25. Son çağrı ------------------------------------------------- */
.cta__inner {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
  display: grid;
  gap: 16px;
  justify-items: center;
}
.cta__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 8px; }

/* ---------- 26. Standartlar ve belgeler ----------------------------------- */
.std-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
@media (max-width: 980px) { .std-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 640px) { .std-grid { grid-template-columns: minmax(0,1fr); } }

.std-card { padding: 24px; }

.std-card__code {
  display: block;
  font-size: var(--t-sm);
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--seal);
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--rule);
}

.std-card__name {
  font-size: var(--t-lg);
  font-weight: 600;
  margin-bottom: 8px;
}

.std-card__desc {
  font-size: var(--t-md);
  line-height: 1.6;
  color: var(--muted);
}

.std-certs {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
}

.std-certs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.std-cert {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  font-size: var(--t-md);
}
.std-cert svg { color: var(--ok); flex: none; }
.std-cert strong { font-weight: 600; }
.std-cert span { color: var(--muted); }

/* ---------- 27. İç sayfa başlığı ve kırıntı yolu -------------------------- */
.page-head { padding-block: clamp(28px, 3vw, 44px) clamp(28px, 3vw, 40px); }
.page-head + .section,
.page-head + .section--tight { padding-top: clamp(28px, 3.2vw, 44px); }

.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-family: var(--font-mono);
  font-size: var(--t-2xs);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--faint);
}
.crumbs a { color: var(--muted); transition: color .16s var(--ease); }
.crumbs a:hover { color: var(--seal); }

/* ---------- 28. Şablon süzgeci -------------------------------------------- */
.filter {
  display: grid;
  gap: 16px;
  padding-bottom: 24px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--rule);
}

.filter__search {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  transition: border-color .16s var(--ease);
}
.filter__search:focus-within { border-color: var(--ink); }
.filter__search svg { color: var(--faint); flex: none; }
.filter__search input {
  flex: 1 1 auto;
  min-width: 0;
  border: 0;
  background: transparent;
  font-size: var(--t-md);
  outline: none;
}
.filter__search input::-webkit-search-cancel-button { cursor: pointer; }

.filter__cats { display: flex; flex-wrap: wrap; gap: 8px; }
.filter__cat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-size: var(--t-md);
  cursor: pointer;
  transition: background .16s var(--ease), border-color .16s var(--ease), color .16s var(--ease);
}
.filter__cat span { font-size: var(--t-2xs); color: var(--faint); }
.filter__cat:hover { border-color: var(--rule-strong); }
.filter__cat.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}
.filter__cat.is-active span { color: rgba(250,250,247,.6); }

.filter__count { font-size: var(--t-sm); margin: 16px 0 16px; }

.filter__empty {
  padding: 32px 24px;
  text-align: center;
  color: var(--muted);
  border: 1px dashed var(--rule-strong);
  border-radius: var(--radius-lg);
  max-width: var(--olcu);
  margin-inline: auto;
}

/* ---------- 29. Şablon listesi -------------------------------------------- */
.tpl-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
@media (max-width: 1080px) { .tpl-list { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 640px)  { .tpl-list { grid-template-columns: minmax(0,1fr); } }

.tpl-item[hidden] { display: none; }

.tpl-item__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  transition: border-color .18s var(--ease), transform .18s var(--ease), box-shadow .18s var(--ease);
}
.tpl-item__link:hover {
  border-color: var(--rule-strong);
  transform: translateY(-2px);
  box-shadow: var(--lift);
}

.tpl-item__cat   { display: block; color: var(--seal); margin-bottom: 12px; }
.tpl-item__name  { font-size: var(--t-lg); font-weight: 600; line-height: 1.32; margin-bottom: 8px; }
.tpl-item__equip { font-size: var(--t-2xs); line-height: 1.7; color: var(--muted); margin-bottom: 16px; }
.tpl-item__go {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  font-size: var(--t-sm);
  font-weight: 500;
  color: var(--ink);
}
.tpl-item__go svg { transition: transform .22s var(--ease); }
.tpl-item__link:hover .tpl-item__go svg { transform: translateX(3px); }

/* ---------- 30. Şablon detayı --------------------------------------------- */
.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: clamp(32px, 4vw, 56px);
  align-items: start;
}
@media (max-width: 980px) { .detail-grid { grid-template-columns: minmax(0,1fr); } }

.detail-h2 {
  font-size: var(--t-xl);
  font-weight: 600;
  margin-top: 32px;
  margin-bottom: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}
.detail-main > .detail-h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.detail-p { font-size: var(--t-md); line-height: 1.68; color: var(--muted); max-width: var(--olcu-genis); }

.check-list {
  display: grid;
  gap: 0;
  margin-top: 16px;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
}
.check-item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 12px;
  padding: 16px 16px;
  border-bottom: 1px solid var(--rule);
  font-size: var(--t-md);
  line-height: 1.55;
}
.check-item:last-child { border-bottom: 0; }
.check-item__no { color: var(--seal); font-size: var(--t-sm); padding-top: 2px; }

.mini-steps { display: grid; gap: 12px; margin-top: 16px; counter-reset: ms; }
.mini-steps li {
  position: relative;
  padding-inline-start: 34px;
  font-size: var(--t-md);
  line-height: 1.6;
  color: var(--muted);
  counter-increment: ms;
}
.mini-steps li::before {
  content: counter(ms, decimal-leading-zero);
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  color: var(--rule-strong);
}
.mini-steps strong { color: var(--ink); font-weight: 600; }

.detail-side { display: grid; gap: 16px; position: sticky; top: 92px; }
@media (max-width: 980px) { .detail-side { position: static; } }

.side-card { padding: 24px; }
.side-list { display: grid; gap: 8px; }
.side-list li {
  position: relative;
  padding-inline-start: 16px;
  font-size: var(--t-md);
  line-height: 1.5;
  color: var(--ink-2);
}
.side-list li::before {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  top: .62em;
  width: 6px; height: 1px;
  background: var(--seal);
}
.side-note {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
  font-size: var(--t-xs);
  line-height: 1.6;
  color: var(--faint);
}

.side-cta { padding: 24px; background: var(--surface-sunk); }
.side-cta__title { font-size: var(--t-lg); font-weight: 600; margin-bottom: 8px; }
.side-cta__body  { font-size: var(--t-md); line-height: 1.6; color: var(--muted); margin-bottom: 16px; }

/* ---------- 31. Formlar --------------------------------------------------- */
.form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(32px, 4vw, 56px);
  align-items: start;
}
@media (max-width: 980px) { .form-grid { grid-template-columns: minmax(0,1fr); } }

.form-side { display: grid; gap: 16px; }

.form { display: grid; gap: 16px; }

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
@media (max-width: 640px) { .form-row { grid-template-columns: minmax(0,1fr); } }

.field { display: grid; gap: 8px; }

.field > label {
  font-size: var(--t-md);
  font-weight: 500;
  color: var(--ink);
}
.field .req { color: var(--seal); }
.field .opt { font-weight: 400; color: var(--faint); font-size: var(--t-sm); }

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
  width: 100%;
  padding: 12px 12px;
  background: var(--surface);
  border: 1px solid var(--rule-strong);
  border-radius: var(--radius);
  font-size: var(--t-md);
  color: var(--ink);
  transition: border-color .16s var(--ease), box-shadow .16s var(--ease);
}
.field textarea { resize: vertical; min-height: 110px; line-height: 1.6; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(1, 22, 46,.07);
}

.field select {
  appearance: none;
  -webkit-appearance: none;
  padding-inline-end: 38px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none'%3E%3Cpath d='M4 6.5 8 10.5l4-4' stroke='%236B7378' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
}

/* ---------- Görseller ve yer tutucular ------------------------------------
   Yer tutucu, görselin kaplayacağı alanı oran kutusuyla baştan ayırır; görsel
   sonradan eklendiğinde düzen kaymaz.

   Fotoğraf kenarlık almaz: açık kağıt zemin üzerinde ince gri çizgi fotoğrafı
   kesip yapıştırılmış gösteriyordu. Yerine iki katmanlı, laciverte çalan bir
   gölge var — görsel zeminin bir milim üstünde duruyor. */
.gorsel { margin: 32px 0; }
.gorsel img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow:
    0 1px 2px rgba(1, 22, 46, .07),
    0 16px 34px -18px rgba(1, 22, 46, .32);
}
/* Altyazı bir açıklama, bir alt bilgi değil: sola mavi bir çubuk alır,
   böylece hangi görsele ait olduğu tek bakışta belli olur. */
.gorsel figcaption {
  margin-top: 12px;
  padding-inline-start: 14px;
  border-inline-start: 2px solid var(--seal);
  font-size: var(--t-md);
  line-height: 1.55;
  color: var(--ink-2);
}

/* Bölüm içinde tam genişlik duran destekleyici fotoğraflar.
   16:9'da 675 px yükselip metnin önüne geçiyorlardı; şerit oranına kırpılınca
   bölümü desteklerler, ele geçirmezler. Oran satır içi --gorsel-oran ile
   geliyor (data/gorseller.php → 'oran'). */
.gorsel--kirpik img {
  aspect-ratio: var(--gorsel-oran, 2.6 / 1);
  object-fit: cover;
  object-position: var(--gorsel-konum, 50% 50%);
}
@media (max-width: 780px) {
  /* Dar ekranda 2.6:1 fazla ince kalıyor; biraz yükseltiyoruz. */
  .gorsel--kirpik img { aspect-ratio: 16 / 10; }
}

/* Ürün ekran görüntüsü — pencere çerçevesi içinde.
   Fotoğrafla ekran görüntüsünü ayırt edilebilir kılar; ayrıca ekran
   görüntülerinin kenarı fotoğraf gibi yumuşamaz, keskin durmalı. */
/* Ekran görüntüsü sayfanın tamamını kaplamaz: 980 px'te ortalanır, böylece
   çevresindeki metin sütunuyla aynı ölçekte okunur. */
.gorsel--urun {
  max-width: 980px;
  margin-inline: auto;
}
.gorsel--urun img {
  border-radius: 0;
  box-shadow: none;
}
.urun-cerceve {
  border: 1px solid var(--rule-strong);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  box-shadow:
    0 1px 2px rgba(1, 22, 46, .06),
    0 22px 44px -24px rgba(1, 22, 46, .34);
}
.urun-cerceve__bar {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 12px;
  height: 34px;
  background: var(--surface-sunk);
  border-bottom: 1px solid var(--rule);
}
.urun-cerceve__nokta {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rule-strong);
  flex: none;
}
.urun-cerceve__yol {
  margin-inline-start: 12px;
  font-family: var(--font-mono);
  font-size: var(--t-2xs);
  letter-spacing: .02em;
  color: var(--faint);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* Ekran görüntüsü henüz yokken tam yüksekliğinde boş bir kutu sayfada kocaman
   bir delik bırakıyordu. Yer tutucu 360 px'te kesilir; gerçek görsel geldiğinde
   kendi oranını alır — yer tutucu zaten görünmez olur. */
.gorsel--urun .gorsel__yer {
  border: 0;
  border-radius: 0;
  max-height: 360px;
}

.gorsel__yer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 100%;
  padding: 16px;
  text-align: center;
  background: repeating-linear-gradient(45deg,
              var(--surface-sunk) 0 10px, transparent 10px 20px);
  border: 1px dashed var(--rule-strong);
  border-radius: var(--radius);
  color: var(--muted);
}
.gorsel__etiket {
  font-size: var(--t-md);
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--ink-2);
}
.gorsel__yol  { font-family: var(--font-mono); font-size: var(--t-xs); word-break: break-all; }
.gorsel__olcu { font-size: var(--t-xs); opacity: .75; }

.gorsel-ikili {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 32px 0;
}
/* Yan yana iki görselin altyazıları alttan hizalanır: biri iki satır, diğeri
   tek satır olduğunda görseller kaymasın diye altyazı aşağı itilir. */
.gorsel-ikili .gorsel {
  margin: 0;
  display: flex;
  flex-direction: column;
}
.gorsel-ikili figcaption { margin-top: auto; padding-top: 12px; }
@media (max-width: 640px) {
  .gorsel-ikili { grid-template-columns: 1fr; gap: 32px; }
  .gorsel-ikili figcaption { margin-top: 0; }
}

/* ---------- Modül ve standart özetleri -------------------------------------
   Bu iki bölüm ana sayfada kart ızgarasıyla 3.720 px yer kaplıyordu (%17) ve
   anlattıkları şey karar aşamasında değil, fiyat/şablon sayfalarında işe
   yarıyor. Kartlar oraya taşındı; burada yalnızca kapsamın genişliğini
   gösteren özet kaldı. */
.mod-ozet {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 2.6vw, 30px);
  box-shadow: var(--lift);
}
.mod-ozet__liste {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2px 24px;
}
@media (max-width: 900px) { .mod-ozet__liste { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 560px) { .mod-ozet__liste { grid-template-columns: minmax(0,1fr); } }
.mod-ozet__liste li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding-block: 8px;
  border-bottom: 1px solid var(--rule-soft, var(--rule));
}
.mod-ozet__no {
  flex: none;
  font-size: var(--t-2xs);
  color: var(--faint);
  font-variant-numeric: tabular-nums;
}
.mod-ozet__ad { font-size: var(--t-md); font-weight: 500; color: var(--ink); }
.mod-ozet__alt {
  margin: 16px 0 16px;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
  font-size: var(--t-md);
  line-height: 1.6;
  color: var(--muted);
}
.mod-ozet__alt .label { margin-inline-end: 8px; }

/* Standart rozetleri — altı kartın yerine tek şerit */
.std-ozet {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: clamp(26px, 3vw, 36px);
}
.std-ozet__oge {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 8px 16px;
  background: var(--surface);
  border: 1px solid var(--rule-strong);
  border-radius: 999px;
}
.std-ozet__kod {
  font-size: var(--t-xs);
  font-weight: 600;
  color: var(--seal-ink);
  white-space: nowrap;
}
.std-ozet__ad { font-size: var(--t-md); color: var(--ink-2); }
.std-ozet__alt {
  margin-top: 24px;
  font-size: var(--t-md);
  color: var(--muted);
  max-width: var(--olcu-genis);
}
.std-ozet__alt .link { margin-inline-start: 6px; }
@media (max-width: 640px) {
  .std-ozet__oge { flex-direction: column; gap: 4px; border-radius: var(--radius); }
}

/* ---------- Örnek rapor kartları -------------------------------------------
   Kapak 3:4 — bir A4 sayfanın oranı. Görüntü olsun olmasın aynı oran
   kullanılır, böylece kartlar dosyalar tek tek eklenirken de eşit yükseklikte
   kalır ve düzen adım adım bozulmaz. */
.rapor-izgara {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--s-5);
}
@media (max-width: 1080px) { .rapor-izgara { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 640px)  { .rapor-izgara { grid-template-columns: minmax(0,1fr); } }

.rapor-kart {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--lift);
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.rapor-kart:hover { border-color: var(--rule-strong); box-shadow: var(--lift-lg); }

/* Dosyası olmayan kart soluk durur — "yakında" olduğu bakışta belli olsun. */
.rapor-kart--bos { box-shadow: none; opacity: .72; }
.rapor-kart--bos:hover { border-color: var(--rule); box-shadow: none; }

/* Kapak yüksekliği SABİT, oran değil.
   3:4 kullanınca kart 400 px genişlikte 533 px kapak alıyordu; beş kart
   yan yana dururken sayfa kapaktan ibaret kalıyordu. Ayrıca dosyalar tek
   tek eklendiği için bazı kartlarda görüntü, bazılarında yer tutucu olur —
   sabit yükseklik ikisini de aynı hizada tutar.

   Kırpma üstten: raporun künyesi ve başlık bloğu görünsün, boş orta
   kısmı değil. */
.rapor-kart__kapak {
  display: block;
  height: clamp(220px, 20vw, 280px);
  background: var(--surface-sunk);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
}
.rapor-kart__kapak img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 0;
}

/* Görüntü yokken: belge simgesi, aynı yükseklikte */
.rapor-kart__kapak--sade {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s-3);
  color: var(--rule-strong);
  background:
    repeating-linear-gradient(45deg,
      var(--surface) 0 12px, var(--surface-sunk) 12px 24px);
}
.rapor-kart__bicim {
  font-size: var(--t-2xs);
  letter-spacing: .16em;
  color: var(--faint);
}

.rapor-kart__govde {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  padding: var(--s-5);
  flex: 1;
}
.rapor-kart__ust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-2) var(--s-4);
  font-size: var(--t-2xs);
  color: var(--faint);
}
.rapor-kart__ad {
  font-size: var(--t-lg);
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
}
.rapor-kart__ozet {
  font-size: var(--t-md);
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}
/* Eylem satırı kartın altına yapışır: farklı uzunluktaki özetlerde
   düğmeler aynı hizada kalsın. */
.rapor-kart__eylem {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-3);
  margin-top: auto;
  padding-top: var(--s-2);
}
.rapor-kart__boyut { font-size: var(--t-2xs); color: var(--faint); }

.rapor-kart__sablon {
  display: inline-flex;
  align-items: center;
  gap: var(--s-1);
  font-size: var(--t-xs);
  font-weight: 500;
  color: var(--muted);
  transition: color .16s var(--ease);
}
.rapor-kart__sablon:hover { color: var(--seal); }
.rapor-kart__sablon svg { transition: transform .2s var(--ease); }
.rapor-kart__sablon:hover svg { transform: translateX(3px); }

.rapor-kart__pdf {
  display: inline-flex;
  align-items: baseline;
  gap: var(--s-2);
  font-size: var(--t-xs);
  font-weight: 500;
  color: var(--muted);
  border-bottom: 1px solid var(--rule-strong);
  transition: color .16s var(--ease), border-color .16s var(--ease);
}
.rapor-kart__pdf:hover { color: var(--seal); border-color: currentColor; }
.rapor-kart__pdf span { font-size: var(--t-2xs); color: var(--faint); }

/* ---- Kartta iki ayrı hedef ------------------------------------------------
     KAPAK        → raporu büyütücüde aç   (buton)
     GÖVDE        → şablon detay sayfasına git   (bağlantının kendisi)

   Yayılan bağlantı (::after ile kaplama) denendi, güvenilir olmadı:
   elementFromPoint bağlantıyı gösterse de gerçek tıklama ızgara kabına
   gidiyordu. Gövdeyi doğrudan <a> yapmak hem çalışıyor hem daha anlaşılır. */
.rapor-kart__kapak--acilir {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
  cursor: zoom-in;
}
.rapor-kart__kapak--acilir img { transition: transform .4s var(--ease); }
.rapor-kart__kapak--acilir:hover img,
.rapor-kart__kapak--acilir:focus-visible img { transform: scale(1.03); }

/* Gövde bir bağlantı: tıklanabilir olduğu imleçten de belli olsun. */
a.rapor-kart__govde { cursor: pointer; }
a.rapor-kart__govde:hover .rapor-kart__ad { color: var(--seal); }
a.rapor-kart__govde:hover .rapor-kart__ana {
  border-color: var(--ink);
}
.rapor-kart__ad { transition: color .16s var(--ease); }

/* Görsel olarak düğme ama <span> — tıklama hedefi gövdenin kendisi. */
.rapor-kart__ana { align-self: start; margin-top: var(--s-2); }

/* PDF bağlantısı gövdenin dışında (iç içe bağlantı geçersiz HTML). */
.rapor-kart__pdf { margin: 0 var(--s-5) var(--s-5); align-self: start; }

/* Odak halkası düğmenin kendisinde değil, kartın çevresinde belirir —
   yayılan düğmede odağın nerede olduğu yoksa görünmez. */
.rapor-kart--tiklanir:focus-within {
  border-color: var(--seal);
  box-shadow: var(--lift-lg), 0 0 0 3px var(--seal-soft);
}
.rapor-kart__ana:focus-visible { outline: none; }

/* "Büyüt" rozeti — imleç kartın üstüne gelince belirir, dokunmatikte hep açık */
.rapor-kart__buyut {
  position: absolute;
  inset-inline-end: var(--s-3);
  inset-block-end: var(--s-3);
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: var(--s-2) var(--s-3);
  background: rgba(1, 22, 46, .84);
  color: #fff;
  border-radius: 999px;
  font-size: var(--t-2xs);
  font-weight: 600;
  letter-spacing: .04em;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .18s var(--ease), transform .18s var(--ease);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}
.rapor-kart__kapak--acilir:hover .rapor-kart__buyut,
.rapor-kart__kapak--acilir:focus-visible .rapor-kart__buyut {
  opacity: 1;
  transform: none;
}
@media (hover: none) {
  /* Dokunmatikte hover yok: rozet kalıcı, yoksa tıklanabilir olduğu belli olmaz */
  .rapor-kart__buyut { opacity: 1; transform: none; }
}

/* ---------- Şablon detayında örnek rapor şeridi ----------------------------
   Şablon sayfasında kategori fotoğrafının yerini alır: ekipman fotoğrafı
   yerine şablonun gerçekte ürettiği raporu göstermek çok daha değerli.
   Solda rapor sayfası, sağda açıklama ve çağrı. */
.ornek-serit {
  display: grid;
  grid-template-columns: minmax(0, 230px) minmax(0, 1fr);
  gap: var(--s-5);
  align-items: center;
  margin-bottom: clamp(28px, 4vw, 44px);
  padding: var(--s-5);
  background: var(--surface);
  border: 1px solid var(--rule-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--lift);
}
@media (max-width: 640px) {
  .ornek-serit { grid-template-columns: minmax(0, 1fr); }
}

.ornek-serit__gorsel {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: var(--surface-sunk);
  overflow: hidden;
  cursor: zoom-in;
}
.ornek-serit__gorsel img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: 50% 0;
  transition: transform .4s var(--ease);
}
.ornek-serit__gorsel:hover img,
.ornek-serit__gorsel:focus-visible img { transform: scale(1.03); }

.ornek-serit__rozet {
  position: absolute;
  inset-inline-end: var(--s-2);
  inset-block-end: var(--s-2);
  display: inline-flex;
  align-items: center;
  gap: var(--s-1);
  padding: var(--s-1) var(--s-2);
  background: rgba(1, 22, 46, .84);
  color: #fff;
  border-radius: 999px;
  font-size: var(--t-2xs);
  font-weight: 600;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}

.ornek-serit__metin { display: grid; gap: var(--s-3); justify-items: start; }
.ornek-serit__baslik {
  font-size: var(--t-xl);
  font-weight: 600;
  line-height: 1.25;
  margin: 0;
}
.ornek-serit__ozet {
  margin: 0;
  font-size: var(--t-md);
  line-height: 1.6;
  color: var(--muted);
}
.ornek-serit__not {
  margin: 0;
  font-size: var(--t-xs);
  line-height: 1.55;
  color: var(--faint);
}

/* ---------- Büyütücü (tam ekran rapor görüntüleyici) -----------------------
   Kart tıklanınca açılan katman. Sayfada bir kez basılır, bütün kartlar
   aynı katmanı kullanır — her kart için ayrı DOM üretmenin anlamı yok.

   Erişilebilirlik: Esc kapatır, ←/→ sayfa değiştirir, Tab katmanın içinde
   döner, kapanınca odak açan düğmeye geri gider. */
.buyutec {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  grid-template-rows: auto minmax(0, 1fr) auto;
  align-items: center;
  /* Neredeyse tam örtü: arkadaki sayfa okunmamalı, yoksa rapor sayfası
     arka planla karışıyor. backdrop-filter destek gerektirir; örtü tek
     başına yeterli olacak koyulukta. */
  background: rgba(1, 12, 26, .975);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity .18s var(--ease);
}
/* KRİTİK: display:grid, [hidden] özniteliğinin display:none'unu eziyor.
   Bu kural olmadan katman "gizli" iken bile sayfanın üstünde duruyor,
   opacity:0 olduğu için görünmüyor ama BÜTÜN tıklamaları yutuyordu —
   kartlar dahil sayfadaki hiçbir şey tıklanamıyordu. */
.buyutec[hidden] { display: none; }

/* İkinci emniyet: açık değilken tıklama geçirmez. Bir geçiş karesinde
   bile araya girmesin. */
.buyutec:not(.is-acik) { pointer-events: none; }
.buyutec.is-acik { opacity: 1; pointer-events: auto; }

@media (prefers-reduced-motion: reduce) { .buyutec { transition: none; } }

/* Tek satır, sarma yok: dar ekranda sarınca kapat düğmesi alt satıra
   düşüyor ve başlığın altında yalnız kalıyordu. Başlık kısalır, düğme
   yerinde kalır. */
.buyutec__ust {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  padding: var(--s-4) var(--s-5);
  color: #fff;
}
.buyutec__kimlik {
  display: flex;
  align-items: baseline;
  gap: var(--s-4);
  min-width: 0;
  flex: 1 1 auto;
}
.buyutec__ad {
  min-width: 0;
  font-family: var(--font-display);
  font-size: var(--t-lg);
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.buyutec__sayac { font-size: var(--t-xs); color: rgba(255, 255, 255, .62); flex: none; }

.buyutec__araclar { display: flex; align-items: center; gap: var(--s-4); flex: none; }
.buyutec__ipucu { font-size: var(--t-xs); color: rgba(255, 255, 255, .55); }
@media (max-width: 640px) { .buyutec__ipucu { display: none; } }

.buyutec__dugme,
.buyutec__gez {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  color: #fff;
  cursor: pointer;
  transition: background .16s var(--ease), border-color .16s var(--ease);
}
.buyutec__dugme:hover,
.buyutec__gez:hover { background: rgba(255, 255, 255, .16); border-color: rgba(255, 255, 255, .4); }
.buyutec__gez { margin-inline: var(--s-4); }
.buyutec__gez[hidden] { display: none; }

/* Sahne: görselin ölçüsü kadar, taşarsa kadraja sığar */
.buyutec__sahne {
  grid-row: 2;
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 0;
  /* Alt/üst nefes: görsel kadrajın kenarına yapışmasın. */
  padding-block: var(--s-3);
  overflow: hidden;
}
.buyutec__gorsel {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, .6);
  cursor: zoom-in;
  transition: transform .22s var(--ease);
  transform-origin: center;
}
.buyutec.is-yakin .buyutec__gorsel { cursor: zoom-out; }
@media (prefers-reduced-motion: reduce) { .buyutec__gorsel { transition: none; } }

/* Küçük sayfa şeritleri — çok sayfalı raporlarda */
.buyutec__seritler {
  grid-column: 1 / -1;
  display: flex;
  gap: var(--s-2);
  justify-content: center;
  flex-wrap: wrap;
  padding: var(--s-4);
}
.buyutec__seritler[hidden] { display: none; }
.buyutec__serit {
  width: 46px;
  height: 60px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 3px;
  background: rgba(255, 255, 255, .06);
  overflow: hidden;
  cursor: pointer;
  opacity: .55;
  transition: opacity .16s var(--ease), border-color .16s var(--ease);
}
.buyutec__serit img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 0; }
.buyutec__serit:hover { opacity: .85; }
.buyutec__serit.is-aktif { opacity: 1; border-color: #fff; }

@media (max-width: 640px) {
  .buyutec__gez { margin-inline: var(--s-2); width: 36px; height: 36px; }
  .buyutec__ust { padding: var(--s-3) var(--s-4); }
  .buyutec__serit { width: 36px; height: 48px; }
}

/* ---------- Ara çağrı satırı ----------------------------------------------
   Bölüm değil, bölümün sonuna eklenen tek satır. Sayfayı uzatmadan araya
   girer; tek düğme, tek hedef. */
.cta-satir {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  margin-top: clamp(36px, 4vw, 56px);
  padding: clamp(20px, 2.4vw, 28px) clamp(22px, 2.8vw, 34px);
  background: var(--surface);
  border: 1px solid var(--rule-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--lift);
}
/* Koyu/gömük bölümlerde kart beyaz kaldığı için ayrışır; gömük zeminde
   kenarlık biraz koyulaşmalı yoksa kart yüzer gibi durur. */
.section--sunk .cta-satir { border-color: var(--rule-strong); }
.cta-satir__metin {
  flex: 1 1 30ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--t-xl);
  font-weight: 600;
  letter-spacing: -.018em;
  line-height: 1.32;
  color: var(--ink);
}
.cta-satir .btn { flex: none; }
@media (max-width: 560px) {
  .cta-satir { flex-direction: column; align-items: stretch; }
  .cta-satir .btn { justify-content: center; }
}

/* ---------- Tam genişlik görsel şerit --------------------------------------
   Bölümler arasında duran koyu bant. Açık kağıt zemini keser, sayfaya ritim
   verir ve üzerine tek cümlelik bir vurgu biner.

   Şerit .container dışına taşar; bir bölümün içine değil, iki bölümün arasına
   konur. Metnin okunurluğu fotoğrafa bırakılmaz: laciverte çalan bir örtü
   fotoğrafı %25 görünürlüğe indirir, kontrast her karede aynı kalır. */
.gorsel-serit {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--ink);
}
.gorsel-serit img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
  object-position: 50% 55%;
  filter: brightness(.78) saturate(.62) contrast(1.05);
}
.gorsel-serit::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    /* yazının oturduğu alt kısımda örtü koyulaşır */
    linear-gradient(to bottom,
      rgba(1, 22, 46, .58) 0%,
      rgba(1, 22, 46, .70) 46%,
      rgba(1, 22, 46, .93) 100%),
    /* soldan gelen marka mavisi — logonun lacivertine bağlar */
    linear-gradient(90deg,
      rgba(10, 86, 228, .26) 0%, rgba(10, 86, 228, 0) 62%);
  pointer-events: none;
}
.gorsel-serit__yazi {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 2;
  padding-block: clamp(20px, 3vw, 34px);
}
.gorsel-serit__yazi p {
  max-width: var(--olcu-dar);
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--t-2xl);
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.28;
  color: #fff;
  /* Örtü zaten yeterli; bu yalnızca fotoğrafın açık bir noktaya denk
     gelmesi ihtimaline karşı emniyet payı. */
  text-shadow: 0 1px 20px rgba(1, 22, 46, .5);
}
.gorsel-serit__yer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 100%;
  max-height: 420px;
  padding: 16px;
  text-align: center;
  background: repeating-linear-gradient(45deg,
              rgba(255, 255, 255, .05) 0 10px, transparent 10px 20px);
  color: #9FB0C2;
}
.gorsel-serit__yer .gorsel__etiket { color: #E4EAF1; }
@media (max-width: 640px) {
  /* Dar ekranda 2.8:1 kare yandan sertçe kırpılır; konuyu genelde sol yarıda
     tuttuğumuz için kırpma noktasını sola çekiyoruz. */
  .gorsel-serit img { max-height: 320px; object-position: 38% 50%; }
  .gorsel-serit__yer { max-height: 320px; }
  .gorsel-serit__yazi p { max-width: none; font-size: var(--t-lg); }
}

/* ---------- İSG-KATİP şeridi ---------------------------------------------
   Kanıt şeridinin hemen altında duran tek satırlık vurgu. Sayfanın üst
   kısmında yer aldığı için kısa tutuldu; ayrıntı ilgili rehbere bağlanır. */
.katip-serit {
  background: var(--seal-soft);
  border-block: 1px solid var(--rule);
}

.katip-serit__ic {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-block: 16px;
}

.katip-serit__rozet {
  flex: none;
  align-self: flex-start;
  padding: 4px 12px;
  border: 1px solid var(--seal);
  border-radius: 999px;
  background: var(--surface);
  font-family: var(--font-mono);
  font-size: var(--t-2xs);
  font-weight: 500;
  letter-spacing: .1em;
  color: var(--seal-ink);
  white-space: nowrap;
}

.katip-serit__slogan {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  font-size: var(--t-md);
  line-height: 1.6;
  color: var(--ink-2);
}
.katip-serit__slogan strong {
  color: var(--ink);
  font-weight: 600;
}

.katip-serit__bag {
  flex: none;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: var(--t-md);
  font-weight: 600;
  color: var(--seal);
  white-space: nowrap;
}
.katip-serit__bag:hover { color: var(--seal-ink); }
.katip-serit__bag svg { transition: transform .2s var(--ease); }
.katip-serit__bag:hover svg { transform: translateX(3px); }

@media (max-width: 900px) {
  .katip-serit__ic { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* Telefon alanı — girilmemiş haneler arkada soluk şablon olarak durur.
   Yazılmış kısım hizalamayı korumak için görünmez bırakılır; rakam
   genişlikleri eşit olsun diye her iki katmanda da tabular-nums kullanılır. */
.tel-alan { position: relative; }

.tel-alan input,
.tel-ipucu {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}

.tel-ipucu {
  position: absolute;
  inset: 1px;                     /* 1px kenarlığın içine otur */
  display: flex;
  align-items: center;
  padding-inline: 12px;           /* input ile aynı yatay iç boşluk */
  font-family: var(--font-body);
  font-size: var(--t-md);
  color: var(--faint);
  white-space: pre;
  pointer-events: none;
  overflow: hidden;
  border-radius: var(--radius);
}
.tel-ipucu[hidden] { display: none; }

/* Yazılan kısım yalnızca yer tutar */
.tel-ipucu__yazilan { visibility: hidden; }

.field.is-error input,
.field.is-error select,
.field.is-error textarea {
  border-color: var(--crit);
  background: var(--crit-soft);
}
.field.is-error input:focus,
.field.is-error select:focus,
.field.is-error textarea:focus {
  box-shadow: 0 0 0 3px rgba(196, 39, 28, .12);
}

.field__error {
  font-size: var(--t-sm);
  color: var(--crit);
  display: flex;
  align-items: center;
  gap: 4px;
}
.field__error::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: currentColor;
  flex: none;
}

/* Onay kutusu */
.field--check { gap: 4px; }
.check {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  font-size: var(--t-md);
  line-height: 1.55;
  color: var(--ink-2);
  cursor: pointer;
}
.check input[type="checkbox"] {
  width: 17px; height: 17px;
  margin-top: 2px;
  accent-color: var(--ink);
  cursor: pointer;
  flex: none;
}
.check a { border-bottom: 1px solid var(--rule-strong); }
.check a:hover { color: var(--seal); border-color: var(--seal); }
.field--check.is-error .check { color: var(--crit); }

.form__note {
  font-size: var(--t-sm);
  line-height: 1.6;
  color: var(--faint);
  max-width: var(--olcu);
}

/* Bot tuzağı — ekranda ve okuyucularda görünmez */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}

/* ---------- 32. Bildirim kutuları ----------------------------------------- */
.notice {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 16px 16px;
  border: 1px solid;
  border-radius: var(--radius);
  margin-bottom: 24px;
}
.notice strong { display: block; font-size: var(--t-lg); font-weight: 600; }
.notice p { margin-top: 4px; font-size: var(--t-md); line-height: 1.6; }
.notice a { border-bottom: 1px solid currentColor; }

.notice--ok {
  background: var(--ok-soft);
  border-color: rgba(15, 122, 70, .22);
  color: var(--ok);
}
.notice--ok p { color: var(--ink-2); }

.notice--error {
  background: var(--crit-soft);
  border-color: rgba(196, 39, 28, .22);
  color: var(--crit);
}
.notice--error p { color: var(--ink-2); }

/* Bilgi/uyarı — hata değil, dikkat çekilen bir bağlam notu.
   Örnek raporlardaki "bu veriler uydurmadır" uyarısı bunu kullanır. */
.notice--info {
  background: var(--seal-soft);
  border-color: rgba(10, 86, 228, .2);
  color: var(--seal-ink);
}
.notice--info p { color: var(--ink-2); }

.next-steps { padding-top: 8px; }

/* ---------- 33. İletişim listesi ------------------------------------------ */
.contact-list { display: grid; gap: 16px; }
.contact-list li { display: grid; gap: 4px; }
.contact-list a { font-size: var(--t-md); font-weight: 500; }
.contact-list a:hover { color: var(--seal); }
.contact-list span:not(.label) { font-size: var(--t-md); color: var(--ink-2); }

/* ---------- 34. Karşılaştırma tablosu ------------------------------------- */
.cmp-wrap {
  overflow-x: auto;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  -webkit-overflow-scrolling: touch;
}

.cmp {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: var(--t-md);
}

.cmp thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  padding: 16px 16px;
  background: var(--surface);
  border-bottom: 1px solid var(--rule-strong);
  font-family: var(--font-display);
  font-size: var(--t-md);
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
}
.cmp thead th:first-child { text-align: start; width: 42%; }
.cmp thead th.is-featured { background: var(--surface-sunk); }

.cmp__group th {
  padding: 12px 16px 8px;
  background: var(--surface-sunk);
  border-block: 1px solid var(--rule);
  text-align: start;
  font-family: var(--font-mono);
  font-size: var(--t-2xs);
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}

.cmp tbody th {
  padding: 12px 16px;
  text-align: start;
  font-weight: 400;
  color: var(--ink-2);
  border-bottom: 1px solid var(--rule);
}
.cmp tbody td {
  padding: 12px 16px;
  text-align: center;
  border-bottom: 1px solid var(--rule);
}
.cmp tbody td.is-featured { background: rgba(1, 22, 46,.022); }
.cmp tbody tr:hover th,
.cmp tbody tr:hover td { background: var(--surface-sunk); }

.cmp__yes { display: inline-flex; color: var(--ok); }
.cmp__no  { color: var(--rule-strong); }
.cmp__txt { font-size: var(--t-sm); color: var(--ink-2); }

.cmp tfoot th,
.cmp tfoot td {
  padding: 16px;
  border-top: 1px solid var(--rule-strong);
  text-align: center;
}
.cmp tfoot th { text-align: start; font-weight: 500; }
.cmp tfoot td.is-featured { background: rgba(1, 22, 46,.022); }

/* ---------- 35. SSS sayfası ----------------------------------------------- */
.sss-grid {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: clamp(32px, 4vw, 56px);
  align-items: start;
}
@media (max-width: 980px) { .sss-grid { grid-template-columns: minmax(0,1fr); } }

.sss-nav { position: sticky; top: 92px; }
@media (max-width: 980px) { .sss-nav { position: static; } }

.sss-nav ul { display: grid; gap: 2px; }
.sss-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 12px;
  border-radius: var(--radius);
  font-size: var(--t-md);
  color: var(--ink-2);
  transition: background .16s var(--ease), color .16s var(--ease);
}
.sss-nav a:hover { background: var(--surface-sunk); color: var(--ink); }
.sss-nav a span { font-size: var(--t-2xs); color: var(--faint); }

.sss-nav__cta {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
}
.sss-nav__cta p { font-size: var(--t-sm); color: var(--muted); margin-bottom: 12px; }

.sss-main { display: grid; gap: 48px; }
.sss-group { scroll-margin-top: 96px; }
.sss-group__title {
  font-size: var(--t-xl);
  font-weight: 600;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rule);
}

/* ---------- 36. Rapor doğrulama ------------------------------------------- */
.verify-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(32px, 4vw, 56px);
  align-items: start;
}
@media (max-width: 980px) { .verify-grid { grid-template-columns: minmax(0,1fr); } }

.verify-side { display: grid; gap: 16px; }

.verify { margin-bottom: 32px; }
.verify .field { margin-bottom: 8px; }

.verify__row { display: flex; gap: 8px; }
.verify__row input {
  flex: 1 1 auto;
  min-width: 0;
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--rule-strong);
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: var(--t-lg);
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: border-color .16s var(--ease), box-shadow .16s var(--ease);
}
.verify__row input::placeholder { text-transform: none; letter-spacing: normal; color: var(--faint); }
.verify__row input:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(1, 22, 46,.07);
}
@media (max-width: 560px) {
  .verify__row { flex-direction: column; }
}

.field__hint { margin-top: 8px; font-size: var(--t-sm); color: var(--faint); }

/* Doğrulama sonucu kartı */
.verify-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--rule-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--lift);
  margin-bottom: 24px;
  overflow: hidden;
}
.verify-card[data-state="ok"] { border-color: rgba(15, 122, 70, .35); }
.verify-card[data-state="ok"]::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--ok);
}

.verify-card__dim {
  position: absolute;
  top: -10px;
  left: 24px;
  padding: 0 8px;
  background: var(--paper);
  font-family: var(--font-mono);
  font-size: var(--t-2xs);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--faint);
}

.verify-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 24px 16px;
  border-bottom: 1px solid var(--rule);
}
.verify-card__code { font-size: var(--t-sm); color: var(--muted); }

.verify-card__rows { display: grid; }
.verify-card__rows > div {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 16px;
  padding: 12px 24px;
  border-bottom: 1px solid var(--rule);
  font-size: var(--t-md);
}
.verify-card__rows dt { color: var(--muted); }
.verify-card__rows dd { margin: 0; color: var(--ink); font-weight: 500; }
@media (max-width: 640px) {
  .verify-card__rows > div { grid-template-columns: minmax(0,1fr); gap: 4px; }
}

.verify-card__note {
  padding: 16px 24px;
  background: var(--surface-sunk);
  font-size: var(--t-sm);
  line-height: 1.6;
  color: var(--muted);
}

.verify-empty {
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: 48px 24px;
  text-align: center;
  border: 1px dashed var(--rule-strong);
  border-radius: var(--radius-lg);
  margin-bottom: 24px;
}
.verify-empty svg { color: var(--rule-strong); }
.verify-empty p { color: var(--muted); font-size: var(--t-md); max-width: var(--olcu-dar); }

/* Yan listede tire rengi değiştirilebilsin */
.side-list li::before { background: var(--dash, var(--seal)); }

/* ---------- 37. En çok kullanılan şablonlar ------------------------------- */
.pop-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}
.pop-head__note {
  font-size: var(--t-md);
  color: var(--muted);
  max-width: var(--olcu-dar);
}

.pop-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  counter-reset: pop;
}
@media (max-width: 980px) { .pop-list { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 640px) { .pop-list { grid-template-columns: minmax(0,1fr); } }

.pop-item__link {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: start;
  gap: 12px;
  height: 100%;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--rule-strong);
  border-radius: var(--radius);
  transition: border-color .18s var(--ease), transform .18s var(--ease), box-shadow .18s var(--ease);
}
.pop-item__link::before,
.pop-item__link::after {
  content: '';
  position: absolute;
  width: 9px; height: 9px;
  border: 1px solid var(--seal);
  pointer-events: none;
}
.pop-item__link::before { top: -1px;  left: -1px;  border-right: 0; border-bottom: 0; }
.pop-item__link::after  { bottom: -1px; right: -1px; border-left: 0;  border-top: 0;   }

.pop-item__link:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: var(--lift);
}

.pop-item__no {
  font-size: var(--t-lg);
  font-weight: 500;
  letter-spacing: -.02em;
  color: var(--seal);
  line-height: 1.25;
}
.pop-item__body { display: grid; gap: 4px; min-width: 0; }
.pop-item__cat  { color: var(--muted); }
.pop-item__name { font-family: var(--font-display); font-size: var(--t-lg); font-weight: 600; line-height: 1.32; }
.pop-item__equip {
  font-size: var(--t-2xs);
  line-height: 1.6;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pop-item__arrow { color: var(--rule-strong); margin-top: 4px; transition: transform .22s var(--ease), color .18s var(--ease); }
.pop-item__link:hover .pop-item__arrow { color: var(--seal); transform: translateX(3px); }

/* Sık kullanılan rozeti */
.badge--seal { background: var(--seal-soft); color: var(--seal-ink); }

.tpl-item__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
}
.tpl-item__top .tpl-item__cat { margin-bottom: 0; }

/* ---------- 38. Mevzuat rehberi ------------------------------------------- */
.feat {
  position: relative;
  display: block;
  background: var(--surface);
  border: 1px solid var(--rule-strong);
  border-radius: var(--radius-lg);
  padding: 34px clamp(24px, 4vw, 44px);
  box-shadow: var(--lift);
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.feat:hover { border-color: var(--ink); box-shadow: var(--lift-lg); }
.feat__dim {
  position: absolute;
  top: -10px;
  left: 28px;
  padding: 0 8px;
  background: var(--paper);
  font-family: var(--font-mono);
  font-size: var(--t-2xs);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--faint);
}
.feat__body { max-width: var(--olcu-genis); }
.feat__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 16px;
  margin-bottom: 16px;
  font-size: var(--t-2xs);
  color: var(--faint);
}
.feat__title {
  font-size: var(--t-2xl);
  font-weight: 600;
  letter-spacing: -.024em;
  line-height: 1.22;
  margin-bottom: 12px;
  transition: color .16s var(--ease);
}
.feat:hover .feat__title { color: var(--seal); }
.feat__excerpt { font-size: var(--t-lg); line-height: 1.62; color: var(--muted); margin-bottom: 16px; }
.feat__go {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--t-md);
  font-weight: 500;
}
.feat__go svg { transition: transform .22s var(--ease); }
.feat:hover .feat__go svg { transform: translateX(3px); }

/* Kap 1320'ye çıkınca iki sütunda kartlar 620 px oldu ve 21:9 kapak görseli
   265 px yükselip metni ezdi. Üç sütunda kart ~410 px, görsel ~175 px —
   kapak yeniden başlık şeridi ölçüsünde. */
.post-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.post-list--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 1080px) {
  .post-list, .post-list--3 { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 780px) { .post-list, .post-list--3 { grid-template-columns: minmax(0,1fr); } }

.post__link {
  display: block;
  height: 100%;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  transition: border-color .18s var(--ease), transform .18s var(--ease), box-shadow .18s var(--ease);
}
.post__link:hover {
  border-color: var(--rule-strong);
  transform: translateY(-2px);
  box-shadow: var(--lift);
}
.post__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin-bottom: 12px;
  font-size: var(--t-2xs);
  color: var(--faint);
}
.post__title {
  font-size: var(--t-lg);
  font-weight: 600;
  line-height: 1.34;
  margin-bottom: 8px;
  transition: color .16s var(--ease);
}
.post__link:hover .post__title { color: var(--seal); }
.post__excerpt { font-size: var(--t-md); line-height: 1.6; color: var(--muted); }

/* ---------- Liste kartlarının kapak görselleri -----------------------------
   Kart görseli yalnızca dosya gerçekten varken basılır; --gorselli sınıfı da
   aynı koşula bağlı. Bir görseli silersen kart eski görselsiz hâline döner,
   hiçbir yerde kırık resim çıkmaz. */
.kart-gorsel,
.feat-gorsel {
  display: block;
  overflow: hidden;
  background: var(--surface-sunk);
}
.kart-gorsel img,
.feat-gorsel img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  /* Kartta fotoğraf ikinci plandadır: imleç üzerine gelince öne çıkar. */
  filter: saturate(.82) contrast(1.02);
  transition: transform .4s var(--ease), filter .25s var(--ease);
}

/* Rehber listesi kartı — görsel kartın üstünde, kenardan kenara.
   .post__link'in 24px iç boşluğu negatif kenar boşluğuyla iptal edilir. */
.post__link--gorselli { padding-top: 0; }
.post__link--gorselli .kart-gorsel {
  margin: 0 -24px 16px;
  border-bottom: 1px solid var(--rule);
}
/* Kart görseli bir başlık şerididir, kartın kendisi değil: 21:9 tuttuk,
   16:9'da fotoğraf metni ezip kartı görsel kartına çeviriyordu. */
.post__link--gorselli .kart-gorsel img { aspect-ratio: 21 / 9; }
.post__link--gorselli:hover .kart-gorsel img {
  filter: saturate(1) contrast(1.02);
  transform: scale(1.04);
}

/* Öne çıkan yazı kartı — görsel solda, metin sağda */
.feat--gorselli {
  display: grid;
  grid-template-columns: minmax(0, 42%) minmax(0, 1fr);
  gap: clamp(24px, 3.5vw, 44px);
  align-items: center;
  padding: 0;
  /* overflow:hidden yok: "Son yazı" etiketi kartın üst kenarına taşıyor,
     kırpılırdı. Yuvarlatmayı görselin kendisi yapıyor. */
}
.feat--gorselli .feat__body { padding: 34px clamp(24px, 3vw, 40px) 34px 0; }
.feat--gorselli .feat__dim { left: auto; right: 28px; }
.feat-gorsel {
  height: 100%;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}
.feat-gorsel img { height: 100%; aspect-ratio: 4 / 3; }
.feat--gorselli:hover .feat-gorsel img {
  filter: saturate(1) contrast(1.02);
  transform: scale(1.035);
}
@media (max-width: 780px) {
  .feat--gorselli { grid-template-columns: minmax(0, 1fr); gap: 0; }
  .feat--gorselli .feat__body { padding: 24px 24px 32px; }
  .feat--gorselli .feat__dim { right: auto; left: 24px; }
  .feat-gorsel {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    border-bottom: 1px solid var(--rule);
  }
  .feat-gorsel img { aspect-ratio: 16 / 9; }
}

/* Yazı kapağı — başlık bloğunun hemen altında, gövdeden önce */
.yazi-kapak { margin: 0 0 clamp(28px, 4vw, 44px); }

@media (prefers-reduced-motion: reduce) {
  .kart-gorsel img, .feat-gorsel img { transition: none; }
  .post__link--gorselli:hover .kart-gorsel img,
  .feat--gorselli:hover .feat-gorsel img { transform: none; }
}


/* ---------- 39. Yazı gövdesi ---------------------------------------------- */
.article__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 16px;
  margin-top: 16px;
  font-size: var(--t-2xs);
  color: var(--faint);
}
.article__intro {
  max-width: var(--olcu);
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
}

.article__p {
  font-size: var(--t-lg);
  line-height: 1.75;
  color: var(--ink-2);
  max-width: var(--olcu);
  margin-bottom: 16px;
}
.article__p:last-of-type { margin-bottom: 0; }
.article__list { margin-top: 16px; max-width: var(--olcu); }
.article .detail-h2 { scroll-margin-top: 96px; }

.takeaway {
  margin-top: 48px;
  padding: 24px 24px;
  background: var(--surface);
  border: 1px solid var(--rule-strong);
  border-inline-start: 3px solid var(--seal);
  border-radius: var(--radius);
}
.takeaway .label { display: block; margin-bottom: 16px; }
.takeaway ul { display: grid; gap: 12px; }
.takeaway li {
  position: relative;
  padding-inline-start: 22px;
  font-size: var(--t-md);
  line-height: 1.6;
  color: var(--ink);
}
.takeaway li::before {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  top: .66em;
  width: 10px; height: 1px;
  background: var(--seal);
}

.article__disclaimer {
  margin-top: 32px;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
  font-size: var(--t-xs);
  line-height: 1.65;
  color: var(--faint);
  max-width: var(--olcu-genis);
}

/* İçindekiler */
.toc ol { display: grid; gap: 2px; counter-reset: toc; }
.toc a {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px;
  padding: 8px 0;
  font-size: var(--t-sm);
  line-height: 1.45;
  color: var(--muted);
  transition: color .16s var(--ease);
}
.toc a:hover { color: var(--seal); }
.toc a span { color: var(--rule-strong); font-size: var(--t-2xs); padding-top: 1px; }

/* Yan panelde bağlantı listesi */
.side-links { display: grid; gap: 2px; }
.side-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--rule);
  font-size: var(--t-md);
  line-height: 1.45;
  color: var(--ink-2);
  transition: color .16s var(--ease);
}
.side-links li:last-child a { border-bottom: 0; }
.side-links a svg { flex: none; color: var(--rule-strong); transition: transform .22s var(--ease), color .18s var(--ease); }
.side-links a:hover { color: var(--seal); }
.side-links a:hover svg { color: var(--seal); transform: translateX(3px); }

/* ---------- 40. 404 sayfası ----------------------------------------------- */
.nf { max-width: 640px; margin-bottom: clamp(40px, 5vw, 64px); }
.nf__code {
  display: block;
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: 1;
  color: var(--seal);
  margin-bottom: 16px;
}
.nf h1 { margin-bottom: 16px; }
.nf .lede { margin-bottom: 24px; }

.nf__search { display: flex; gap: 8px; max-width: 480px; }
.nf__search input {
  flex: 1 1 auto;
  min-width: 0;
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--rule-strong);
  border-radius: var(--radius);
  font-size: var(--t-md);
  transition: border-color .16s var(--ease), box-shadow .16s var(--ease);
}
.nf__search input:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(1, 22, 46,.07);
}
@media (max-width: 560px) { .nf__search { flex-direction: column; } }

.nf-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
@media (max-width: 900px) { .nf-links { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 560px) { .nf-links { grid-template-columns: minmax(0,1fr); } }

.nf-links a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  height: 100%;
  padding: 16px 16px;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  transition: border-color .18s var(--ease), transform .18s var(--ease), box-shadow .18s var(--ease);
}
.nf-links a:hover {
  border-color: var(--rule-strong);
  transform: translateY(-2px);
  box-shadow: var(--lift);
}
.nf-links__name { display: block; font-weight: 600; font-size: var(--t-md); }
.nf-links__desc { display: block; margin-top: 4px; font-size: var(--t-sm); color: var(--muted); }
.nf-links a svg { color: var(--rule-strong); transition: transform .22s var(--ease), color .18s var(--ease); }
.nf-links a:hover svg { color: var(--seal); transform: translateX(3px); }

.nf-pop {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}
.nf-pop .label { display: block; margin-bottom: 12px; }
.nf-pop ul { display: flex; flex-wrap: wrap; gap: 8px; }
.nf-pop a {
  display: inline-block;
  padding: 8px 12px;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-size: var(--t-sm);
  color: var(--ink-2);
  transition: border-color .16s var(--ease), color .16s var(--ease);
}
.nf-pop a:hover { border-color: var(--seal); color: var(--seal); }

/* ---------- 41. Doğrulama simülasyonu ------------------------------------- */
.sim {
  background: var(--surface);
  border: 1px solid var(--rule-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--lift-lg);
  overflow: hidden;
}

.sim__chrome {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 12px;
  background: var(--surface-sunk);
  border-bottom: 1px solid var(--rule);
}
.sim__dots { display: flex; gap: 4px; flex: none; }
.sim__dots i {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--rule-strong);
}
.sim__url {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 1 1 auto;
  min-width: 0;
  padding: 4px 12px;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-size: var(--t-2xs);
  color: var(--muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.sim__url svg { color: var(--ok); flex: none; }

.sim__body { position: relative; padding: 24px 24px 24px; }

.sim__tag {
  position: absolute;
  top: 12px; right: 14px;
  font-family: var(--font-mono);
  font-size: var(--t-2xs);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--faint);
}

.sim__brand {
  font-family: var(--font-display);
  font-size: var(--t-lg);
  font-weight: 600;
  margin-bottom: 2px;
}
.sim__lead {
  font-size: var(--t-sm);
  color: var(--muted);
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--rule);
}

.sim .verify { margin-bottom: 0; }
.sim .verify__row input { font-size: var(--t-md); padding: 12px 12px; }
.sim .field__hint code {
  padding: 1px 4px;
  background: var(--surface-sunk);
  border: 1px solid var(--rule);
  border-radius: 3px;
  font-size: var(--t-xs);
  color: var(--seal);
}

.sim__hint {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 24px 16px 8px;
  text-align: center;
}
.sim__hint svg { color: var(--rule-strong); }
.sim__hint p { font-size: var(--t-sm); color: var(--muted); max-width: var(--olcu-dar); }

.sim__note {
  margin-top: 16px;
  font-size: var(--t-xs);
  line-height: 1.6;
  color: var(--faint);
}

/* ---------- 42. Ana sayfa akış simülasyonu -------------------------------- */
.simflow {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--rule-strong);
  border-radius: var(--radius-lg);
  padding: 32px 24px 24px;
  margin-bottom: clamp(48px, 6vw, 72px);
  box-shadow: var(--lift);
}
@media (max-width: 640px) { .simflow { padding: 32px 16px 16px; } }

/* --- Ray: hem gösterge hem sekme --- */
.simflow__rail {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin-bottom: 24px;
}

.simflow__node {
  position: relative;
  display: grid;
  gap: 4px;
  padding: 24px 12px 0 0;
  background: transparent;
  border: 0;
  text-align: start;
  cursor: pointer;
  border-radius: var(--radius);
}
.simflow__node::before {
  content: '';
  position: absolute;
  top: 5px; left: 0; right: 0;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--rule-strong) 0 4px, transparent 4px 8px);
}
.simflow__node:last-child::before { right: calc(100% - 11px); }

.simflow__dot {
  position: absolute;
  top: 0; left: 0;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--rule-strong);
  transition: background .3s var(--ease), border-color .3s var(--ease);
}

.simflow__label {
  font-family: var(--font-display);
  font-size: var(--t-md);
  font-weight: 600;
  color: var(--muted);
  transition: color .25s var(--ease);
}
.simflow__code {
  font-size: var(--t-xs);
  color: var(--faint);
  transition: color .25s var(--ease);
}

/* Tamamlanmış adımlar */
.simflow__node[data-done="1"] .simflow__dot { background: var(--ok); border-color: var(--ok); }
.simflow__node[data-done="1"] .simflow__label { color: var(--ink-2); }

/* Etkin adım */
.simflow__node[aria-selected="true"] .simflow__dot {
  background: var(--seal);
  border-color: var(--seal);
}
.simflow__node[aria-selected="true"] .simflow__dot::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1px solid var(--seal);
  animation: pulse 2.2s var(--ease) infinite;
}
.simflow__node[aria-selected="true"] .simflow__label { color: var(--ink); }
.simflow__node[aria-selected="true"] .simflow__code  { color: var(--seal); }

.simflow__node:hover .simflow__label { color: var(--ink); }

@media (max-width: 780px) {
  .simflow__rail { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 2px; }
  .simflow__node { padding: 24px 4px 0 0; }
  .simflow__label { font-size: var(--t-xs); }
  .simflow__code { display: none; }
}

/* --- Ekran --- */
.simflow__screen {
  position: relative;
  min-height: 268px;
  background: var(--surface-sunk);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
}
@media (max-width: 640px) { .simflow__screen { min-height: 320px; } }

.simpanel { padding: 24px 24px 16px; }
.simpanel[hidden] { display: none; }
.simpanel.is-active { animation: simIn .45s var(--ease) both; }

@keyframes simIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}

.simpanel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--rule);
  font-size: var(--t-2xs);
  letter-spacing: .12em;
  color: var(--ink);
}
.simpanel__sub { font-size: var(--t-sm); color: var(--muted); margin-bottom: 12px; }

.simrows { display: grid; gap: 1px; background: var(--rule); border-radius: var(--radius); overflow: hidden; }
.simrows li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 12px;
  background: var(--surface);
  font-size: var(--t-md);
}
.simrows li span:last-child { color: var(--ink); font-size: var(--t-sm); flex: none; }
.simrows li.is-ok span:last-child { color: var(--ok); }

/* Rapor doldurma etkisi — satırlar sırayla düşer */
.simpanel.is-active .simrows--type li {
  animation: rowIn .4s var(--ease) both;
  animation-delay: var(--d, 0s);
}
@keyframes rowIn {
  from { opacity: 0; transform: translateX(-8px); }
  to   { opacity: 1; transform: none; }
}

.simbar { margin-top: 16px; }
.simbar__meter {
  height: 4px;
  background: var(--rule);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 8px;
}
.simbar__meter span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--seal), #4C8DF5);
}
.simpanel.is-active .simbar__meter span { animation: barFill 2.4s var(--ease) forwards; }
@keyframes barFill { from { width: 0; } to { width: 88%; } }

.simbar__txt { font-size: var(--t-2xs); color: var(--faint); }

/* Personel listesi */
.simpeople { display: grid; gap: 8px; }
.simpeople li {
  display: grid;
  grid-template-columns: auto minmax(0,1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 12px 12px;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
}
.simpeople__ini {
  display: grid;
  place-items: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--seal-soft);
  color: var(--seal-ink);
  font-family: var(--font-mono);
  font-size: var(--t-2xs);
  font-weight: 500;
}
.simpeople__body strong { display: block; font-size: var(--t-md); font-weight: 600; }
.simpeople__body span   { display: block; font-size: var(--t-2xs); color: var(--muted); margin-top: 1px; }
.simpeople__dev { font-size: var(--t-2xs); color: var(--ok); flex: none; }

/* PDF önizleme */
.simdoc {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}
@media (max-width: 560px) { .simdoc { grid-template-columns: 84px minmax(0,1fr); gap: 12px; } }

.simdoc__page {
  position: relative;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 12px 12px;
  background: var(--surface);
  border: 1px solid var(--rule-strong);
  border-radius: 3px;
  aspect-ratio: 1 / 1.414;
  box-shadow: var(--lift);
}
.simdoc__line { height: 4px; border-radius: 2px; background: var(--rule); }
.simdoc__line--title { height: 7px; width: 70%; background: var(--rule-strong); margin-bottom: 4px; }
.simdoc__line--short { width: 58%; }
.simdoc__seal {
  position: absolute;
  right: 9px; bottom: 9px;
  display: grid;
  place-items: center;
  width: 26px; height: 26px;
  border: 1.5px solid var(--seal);
  border-radius: 50%;
  color: var(--seal);
  font-size: var(--t-xs);
  transform: rotate(-12deg);
}
.simpanel.is-active .simdoc__seal { animation: sealIn .5s var(--ease) .5s both; }
@keyframes sealIn {
  from { opacity: 0; transform: rotate(-12deg) scale(1.6); }
  to   { opacity: 1; transform: rotate(-12deg) scale(1); }
}

.simdoc__meta { display: grid; gap: 12px; }
.simdoc__meta li { font-size: var(--t-sm); color: var(--ink-2); line-height: 1.45; }
.simdoc__meta .label { display: block; margin-bottom: 2px; }

.simpanel__foot {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: var(--t-xs);
  color: var(--muted);
}
.simpanel__foot svg { flex: none; color: var(--faint); }
.simpanel__foot--ok, .simpanel__foot--ok svg { color: var(--ok); }

.simflow__note { margin-top: 12px; font-size: var(--t-2xs); color: var(--faint); }

/* Etkin adımın metin bloğu vurgulanır */
.step { transition: border-color .3s var(--ease); }
.step[data-sim-active] .step__no    { color: var(--seal); }
.step[data-sim-active] .step__title { color: var(--ink); }

@media (prefers-reduced-motion: reduce) {
  .simpanel.is-active,
  .simpanel.is-active .simrows--type li,
  .simpanel.is-active .simdoc__seal { animation: none; }
  .simpanel.is-active .simbar__meter span { width: 88%; animation: none; }
  .simflow__node[aria-selected="true"] .simflow__dot::after { animation: none; }
}

/* ---------- 43. Akış sahnesi (çizgi resim anlatım) ------------------------
   Kurgu: çizgiler bir kez kendini çizer, ardından 12 sn'lik anlatım döngüsü
   başlar. Döngü süresi --tur, çizim gecikmesi --giris ile ayarlanır.
   ------------------------------------------------------------------------- */
.sahne-band {
  padding-block: clamp(40px, 5vw, 64px) clamp(32px, 4vw, 48px);
  border-block: 1px solid var(--rule);
  background-color: var(--surface);
}
.sahne-band__head { max-width: var(--olcu-dar); margin-bottom: clamp(18px, 2.4vw, 26px); }
.sahne-band__head .label { display: block; margin-bottom: 12px; }

.sahne__wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.sahne {
  display: block;
  width: 100%;
  min-width: 780px;
  height: auto;
  --tur: 12s;      /* anlatım döngüsü */
  --giris: 2.6s;   /* çizim bittikten sonra döngü başlar */
}

/* --- Statik stiller --- */
.sahne .cz {
  fill: none;
  stroke: var(--ink-2);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.sahne .cz--ince  { stroke-width: 1.4; stroke: var(--muted); }
.sahne .cz--yazi  { stroke-width: 3;   stroke: var(--rule-strong); }
.sahne .cz--muhur { stroke: var(--seal); }
.sahne .dolu       { fill: var(--ink-2); }
.sahne .dolu-soluk { fill: var(--rule-strong); }

.sahne-anlatim {
  font-family: var(--font-body);
  font-size: var(--t-md);
  font-weight: 500;
  fill: var(--ink);
  text-anchor: middle;
}
.sahne-mono {
  font-family: var(--font-mono);
  font-size: var(--t-2xs);
  letter-spacing: .12em;
  fill: var(--faint);
}
.sahne-deger {
  font-family: var(--font-mono);
  font-size: var(--t-sm);
  fill: var(--ink);
  text-anchor: middle;
}
.sahne-rozet {
  font-family: var(--font-mono);
  font-size: var(--t-2xs);
  letter-spacing: .1em;
  fill: var(--warn);
  text-anchor: middle;
}
.sahne .rozet { fill: var(--warn-soft); stroke: var(--warn); stroke-width: 1.1; }
.sahne .balon rect { fill: var(--surface); stroke: var(--seal); stroke-width: 1.4; }
.sahne .muhur circle { fill: none; stroke: var(--seal); stroke-width: 2; }
.sahne .muhur path   { fill: none; stroke: var(--seal); stroke-width: 2.4;
                       stroke-linecap: round; stroke-linejoin: round; }
.sahne .halka { fill: none; stroke: var(--seal); stroke-width: 1.4; }

.sahne-ray {
  fill: none;
  stroke: var(--rule-strong);
  stroke-width: 1.4;
  stroke-dasharray: 3 6;
  stroke-linecap: round;
}
.sahne .kayit rect { fill: var(--surface); stroke: var(--seal); stroke-width: 1.6; }
.sahne .kayit path { fill: none; stroke: var(--seal); stroke-width: 1.2; stroke-linecap: round; }

/* --- Başlangıç durumu: her şey gizli --- */
.sahne .ciz    { stroke-dasharray: 100; stroke-dashoffset: 100; }
.sahne .yz,
.sahne .bl     { stroke-dasharray: 100; stroke-dashoffset: 100; }
.sahne .belir,
.sahne .balon,
.sahne .muhur,
.sahne .halka,
.sahne .an,
.sahne .kayit  { opacity: 0; }
.sahne .perde  { opacity: .36; }

/* --- 1. Çizgiler kendini çizer (bir kez) --- */
.sahne__wrap.is-in .sahne .p1 .ciz { animation: szCiz .95s ease-out both; animation-delay: var(--d, 0s); }
.sahne__wrap.is-in .sahne .p2 .ciz { animation: szCiz .95s ease-out both; animation-delay: calc(var(--d, 0s) + .8s); }
.sahne__wrap.is-in .sahne .p3 .ciz { animation: szCiz .95s ease-out both; animation-delay: calc(var(--d, 0s) + 1.6s); }
@keyframes szCiz { to { stroke-dashoffset: 0; } }

/* Çizimle birlikte beliren dolgular */
.sahne__wrap.is-in .sahne .p1 .belir { animation: szBelir .5s var(--ease) both; animation-delay: calc(var(--y, 0s) + .3s); }
.sahne__wrap.is-in .sahne .p2 .belir { animation: szBelir .5s var(--ease) both; animation-delay: calc(var(--y, 0s) + .9s); }
.sahne__wrap.is-in .sahne .p3 .belir { animation: szBelir .5s var(--ease) both; animation-delay: calc(var(--y, 0s) + 1.7s); }
@keyframes szBelir { from { opacity: 0; } to { opacity: 1; } }

/* --- 2. Anlatım döngüsü (çizim bitince başlar) --- */
.sahne__wrap.is-in .sahne .p1 { animation: szIsik1 var(--tur) var(--ease) var(--giris) infinite; }
.sahne__wrap.is-in .sahne .p2 { animation: szIsik2 var(--tur) var(--ease) var(--giris) infinite; }
.sahne__wrap.is-in .sahne .p3 { animation: szIsik3 var(--tur) var(--ease) var(--giris) infinite; }

@keyframes szIsik1 { 0%, 26% { opacity: 1; } 33%, 94% { opacity: .36; } 100% { opacity: 1; } }
@keyframes szIsik2 { 0%, 27% { opacity: .36; } 34%, 60% { opacity: 1; } 67%, 100% { opacity: .36; } }
@keyframes szIsik3 { 0%, 61% { opacity: .36; } 68%, 96% { opacity: 1; } 100% { opacity: .36; } }

/* Anlatım cümleleri perdeyle birlikte değişir */
.sahne__wrap.is-in .sahne .an--1 { animation: szAn1 var(--tur) var(--ease) var(--giris) infinite; }
.sahne__wrap.is-in .sahne .an--2 { animation: szAn2 var(--tur) var(--ease) var(--giris) infinite; }
.sahne__wrap.is-in .sahne .an--3 { animation: szAn3 var(--tur) var(--ease) var(--giris) infinite; }

@keyframes szAn1 { 0%, 26% { opacity: 1; } 31%, 96% { opacity: 0; } 100% { opacity: 1; } }
@keyframes szAn2 { 0%, 29% { opacity: 0; } 34%, 60% { opacity: 1; } 65%, 100% { opacity: 0; } }
@keyframes szAn3 { 0%, 63% { opacity: 0; } 68%, 96% { opacity: 1; } 100% { opacity: 0; } }

/* Perde 01 — ekranda satırlar yazılır */
.sahne__wrap.is-in .sahne .yz {
  animation: szYaz var(--tur) var(--ease) infinite;
  animation-delay: calc(var(--giris) + var(--y, 0s));
}
@keyframes szYaz {
  0%       { stroke-dashoffset: 100; }
  9%, 90%  { stroke-dashoffset: 0; }
  97%,100% { stroke-dashoffset: 100; }
}

/* Yazan kol */
.sahne__wrap.is-in .sahne .kol {
  animation: szKol 1.6s ease-in-out infinite;
  animation-delay: var(--giris);
  transform-box: fill-box;
  transform-origin: 0% 50%;
}
.sahne__wrap.is-in .sahne .kol--saha { animation-duration: 2.8s; }
@keyframes szKol { 0%, 100% { transform: rotate(0deg); } 50% { transform: rotate(-5deg); } }

/* Perde 02 — ölçüm balonları */
.sahne__wrap.is-in .sahne .balon {
  animation: szBalon var(--tur) var(--ease) infinite;
  animation-delay: calc(var(--giris) + var(--y, 0s));
  transform-box: fill-box;
  transform-origin: center;
}
@keyframes szBalon {
  0%, 33%   { opacity: 0; transform: translateY(12px) scale(.9); }
  40%, 58%  { opacity: 1; transform: translateY(0) scale(1); }
  64%, 100% { opacity: 0; transform: translateY(-10px) scale(.96); }
}

/* Perde 03 — belge satırları, mühür, doğrulama halkaları */
.sahne__wrap.is-in .sahne .bl {
  animation: szBelge var(--tur) var(--ease) infinite;
  animation-delay: calc(var(--giris) + var(--y, 0s));
}
@keyframes szBelge {
  0%, 66%   { stroke-dashoffset: 100; }
  74%, 96%  { stroke-dashoffset: 0; }
  100%      { stroke-dashoffset: 100; }
}

.sahne__wrap.is-in .sahne .muhur {
  animation: szMuhur var(--tur) var(--ease) var(--giris) infinite;
  transform-box: fill-box;
  transform-origin: center;
}
@keyframes szMuhur {
  0%, 80%   { opacity: 0; transform: scale(2.1) rotate(-16deg); }
  86%, 96%  { opacity: 1; transform: scale(1) rotate(-16deg); }
  100%      { opacity: 0; transform: scale(2.1) rotate(-16deg); }
}

.sahne__wrap.is-in .sahne .halka {
  animation: szHalka var(--tur) linear infinite;
  animation-delay: calc(var(--giris) + var(--y, 0s));
  transform-box: fill-box;
  transform-origin: center;
}
@keyframes szHalka {
  0%, 88%  { opacity: 0; transform: scale(.5); }
  90%      { opacity: .8; transform: scale(.6); }
  99%,100% { opacity: 0; transform: scale(1.5); }
}

/* Kayıt kartı raydan perdeden perdeye taşınır */
.sahne__wrap.is-in .sahne .kayit {
  animation: szKayit var(--tur) var(--ease) var(--giris) infinite;
}
@keyframes szKayit {
  0%        { opacity: 0; transform: translate(210px, 274px); }
  6%, 26%   { opacity: 1; transform: translate(210px, 274px); }
  36%, 60%  { opacity: 1; transform: translate(620px, 274px); }
  70%, 94%  { opacity: 1; transform: translate(1006px, 274px); }
  100%      { opacity: 0; transform: translate(1006px, 274px); }
}

/* --- Hareket azaltma: her şey son hâlinde durur --- */
@media (prefers-reduced-motion: reduce) {
  .sahne .ciz, .sahne .yz, .sahne .bl { stroke-dashoffset: 0; }
  .sahne .belir, .sahne .balon, .sahne .muhur, .sahne .kayit { opacity: 1; }
  .sahne .halka { opacity: 0; }
  .sahne .perde { opacity: 1; }
  .sahne .an--1 { opacity: 1; }
  .sahne .an--2, .sahne .an--3 { opacity: 0; }
  .sahne .kayit { transform: translate(210px, 274px); }
  .sahne__wrap.is-in .sahne * { animation: none !important; }
}

/* --- Mobil sürüm: aynı sahne, dikey dizilim, yatay kaydırma yok --- */
.sahne--mobil { display: none; }
.sahne .dugum { fill: var(--rule-strong); }
.sahne .perde[class*="p"] .dugum { transition: fill .3s var(--ease); }
.sahne-alt {
  font-family: var(--font-body);
  font-size: var(--t-xs);
  fill: var(--muted);
}

@media (max-width: 780px) {
  .sahne__wrap { overflow-x: visible; margin-inline: 0; padding-inline: 0; }
  .sahne       { display: none; }
  .sahne--mobil {
    display: block;
    min-width: 0;
    max-width: 360px;
    margin-inline: auto;
  }
}

/* Mobilde kayıt kartı raydan aşağı iner */
.sahne__wrap.is-in .sahne--mobil .kayit {
  animation: szKayitMobil var(--tur) var(--ease) var(--giris) infinite;
}
@keyframes szKayitMobil {
  0%        { opacity: 0; transform: translate(18px, 54px); }
  6%, 26%   { opacity: 1; transform: translate(18px, 54px); }
  36%, 60%  { opacity: 1; transform: translate(18px, 272px); }
  70%, 94%  { opacity: 1; transform: translate(18px, 522px); }
  100%      { opacity: 0; transform: translate(18px, 522px); }
}

@media (prefers-reduced-motion: reduce) {
  .sahne--mobil .kayit { transform: translate(18px, 54px); }
}

/* ---------- 44. Yolculuk haritası ----------------------------------------- */
.yol-head { max-width: var(--olcu-dar); margin-bottom: clamp(24px, 3vw, 36px); }
.yol-head .label { display: block; margin-bottom: 12px; }

.yol {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.yol__durak {
  position: relative;
  padding: 48px 24px 0 0;
}

/* Duraklar arası rota — noktalı, harita çizgisi hissi */
.yol__durak::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 12px;
  right: 0;
  height: 1px;
  background: repeating-linear-gradient(90deg,
    var(--rule-strong) 0 5px, transparent 5px 10px);
}
.yol__durak:last-child::before { display: none; }

/* Pin */
.yol__pin {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 24px;
  height: 30px;
}
.yol__pin-govde {
  fill: var(--surface);
  stroke: var(--rule-strong);
  stroke-width: 1.6;
  stroke-linejoin: round;
}
.yol__pin-nokta { fill: var(--rule-strong); }

.yol__durak--son .yol__pin-govde { fill: var(--seal-soft); stroke: var(--seal); }
.yol__durak--son .yol__pin-nokta { fill: var(--seal); }

/* Son durakta "buradayız" nabzı */
.yol__durak--son .yol__pin::after {
  content: '';
  position: absolute;
  top: 4px; left: 2px;
  width: 20px; height: 20px;
  border: 1px solid var(--seal);
  border-radius: 50%;
  animation: pulse 2.4s var(--ease) infinite;
}

.yol__yil {
  display: block;
  font-size: var(--t-2xs);
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--seal);
  margin-bottom: 8px;
}
.yol__baslik { font-size: var(--t-lg); font-weight: 600; margin-bottom: 8px; }
.yol__metin  { font-size: var(--t-md); line-height: 1.6; color: var(--muted); max-width: var(--olcu-dar); }

/* Sırayla belirme */
.yol.reveal .yol__durak { opacity: 0; transform: translateY(10px); }
.yol.reveal.is-in .yol__durak {
  animation: yolGir .5s var(--ease) both;
  animation-delay: var(--s, 0s);
}
@keyframes yolGir {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  .yol { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .yol__durak:nth-child(2)::before { display: none; }
  .yol__durak:nth-child(n+3) { padding-top: 48px; margin-top: 24px; }
}

/* Mobilde rota dikeye döner */
@media (max-width: 640px) {
  .yol { grid-template-columns: minmax(0, 1fr); }
  .yol__durak,
  .yol__durak:nth-child(n+3) {
    padding: 0 0 24px 48px;
    margin-top: 0;
  }
  /* Tablet kuralında gizlenen ara çizgiyi geri getir */
  .yol__durak:nth-child(2)::before { display: block; }
  .yol__durak::before {
    top: 26px; bottom: -4px; left: 11px; right: auto;
    width: 1px; height: auto;
    background: repeating-linear-gradient(180deg,
      var(--rule-strong) 0 5px, transparent 5px 10px);
  }
  .yol__durak:last-child { padding-bottom: 0; }
  .yol__metin { max-width: none; }
}

@media (prefers-reduced-motion: reduce) {
  .yol.reveal .yol__durak { opacity: 1; transform: none; }
  .yol.reveal.is-in .yol__durak { animation: none; }
  .yol__durak--son .yol__pin::after { animation: none; }
}

/* ---------- 45. Alt bilgi ------------------------------------------------- */
.site-footer {
  border-top: 1px solid var(--rule);
  background: var(--surface-sunk);
  padding-block: clamp(48px, 6vw, 72px) 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 32px;
  padding-bottom: 32px;
}
@media (max-width: 900px) { .footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; gap: 32px; } }

.footer__col h3 {
  font-family: var(--font-mono);
  font-size: var(--t-2xs);
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.footer__col li { margin-bottom: 8px; }
.footer__col a {
  font-size: var(--t-md);
  color: var(--ink-2);
  transition: color .16s var(--ease);
}
.footer__col a:hover { color: var(--seal); }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  font-size: var(--t-sm);
  color: var(--muted);
}

/* ==========================================================================
   İKONLAR
   Satır içi SVG sprite (partials/ikon.php). Dış kaynak yok: ikon fontu
   render'ı bloklar ve ziyaretçi IP'sini üçüncü tarafa taşırdı.
   Boyut em cinsinden — bağlantının kendi punto'suyla ölçekleniyor.
   ========================================================================== */

.ikon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.ikon {
  width: 1.05em;
  height: 1.05em;
  flex: none;
  vertical-align: -.16em;
}

/* Üst menü — ikon etiketin yardımcısı, yarışanı değil: sönük durur,
   üzerine gelince ve etkin sayfada tam renge çıkar.

   ÖLÇÜLDÜ: yedi öğeye ikon eklemek menüyü 598px'ten 739px'e çıkardı ve
   1280px ekranda üst çubuk sayfayı 40px taşırdı; ayrıca "Örnek rapor"
   kendi içinde iki satıra kırıldı. Yatay dolgu 12→9, aradaki boşluk 7→6
   ve ikon 1.05→.92em ile menü 680px'e iniyor, taşma kalkıyor.
   nowrap: iki kelimelik etiket asla kendi içinde kırılmasın. */
.nav__link {
  display: inline-flex; align-items: center; gap: 6px;
  padding-left: 9px; padding-right: 9px;
  white-space: nowrap;
}
.nav__link .ikon { width: .92em; height: .92em; opacity: .5; transition: opacity .16s var(--ease); }
.nav__link:hover .ikon,
.nav__link.is-active .ikon { opacity: 1; }

/* Dar masaüstünde marka ile menü arasındaki 32px payı da kısılır. */
@media (max-width: 1340px) {
  .site-header__inner { gap: 20px; }
  .nav__link { padding-left: 7px; padding-right: 7px; }
}

/* Mobil menü — dikey listede ikon taramayı en çok burada hızlandırıyor,
   o yüzden biraz daha büyük. .btn hariç: kendi hizalaması var. */
.mobile-nav a:not(.btn) { display: flex; align-items: center; gap: 12px; }
.mobile-nav a:not(.btn) .ikon { width: 1.15em; height: 1.15em; opacity: .45; }

/* Alt bilgi
   flex-start + margin-top: iki satıra kırılan bir bağlantıda ikon iki
   satırın ortasında asılı kalıyor; ilk satırın optik ortasına hizalanmalı. */
.footer__col a,
.site-footer ul a { display: inline-flex; align-items: flex-start; gap: 8px; }
.footer__col a .ikon,
.site-footer ul a .ikon { margin-top: .2em; opacity: .38; transition: opacity .16s var(--ease); }
.footer__col a:hover .ikon,
.site-footer ul a:hover .ikon { opacity: 1; }

/* Düğmede: .btn zaten inline-flex ve kendi gap'i var. */
.btn .ikon { width: 1em; height: 1em; opacity: .85; }
.btn--ink .ikon { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .ikon { transition: none; }
}

/* Kaynak satırı — mevzuat yazılarının dayandığı resmî belge.
   Uyarı metninin hemen üstünde, ondan ayrışsın diye ince çizgiyle. */
.article__kaynak {
  margin: 28px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
  font-size: var(--t-md);
}
.article__kaynak .label { margin-right: 10px; }
.article__kaynak a { color: var(--seal); text-decoration: underline; text-underline-offset: 3px; }
.article__kaynak a:hover { color: var(--seal-ink); }