/* =====================================================================
   OBRANDY — Tasarım Sistemi
   Lane: "Şeffaf Pano" — İsviçre tabela netliği + atölye fiyat listesi.
   Beyaz taban, indigo ve alev renkli "bölüm"lerle noktalanır.
   Tüm hareket el yazımı: assets/js/obrandy.js
   ===================================================================== */

/* ------------------------------------------------------------------
   1. TOKENS
   ------------------------------------------------------------------ */
:root {
  /* Yüzeyler */
  --paper:        oklch(1 0 0);
  --paper-2:      oklch(0.977 0.0055 272);
  --paper-3:      oklch(0.955 0.009 272);
  --ink:          oklch(0.172 0.032 271);
  --ink-2:        oklch(0.255 0.030 267);
  --ink-3:        oklch(0.415 0.022 267);   /* 5.7:1 / beyaz  */
  --ink-4:        oklch(0.560 0.018 267);   /* yalnız büyük punto */
  --line:         oklch(0.905 0.010 271);
  --line-2:       oklch(0.845 0.014 271);

  /* Marka */
  --indigo:       oklch(0.512 0.229 274);
  --indigo-deep:  oklch(0.360 0.185 274);
  --indigo-lift:  oklch(0.720 0.145 274);
  --indigo-wash:  oklch(0.955 0.022 274);

  /* Dönüşüm (para + aksiyon) */
  --flame:        oklch(0.712 0.176 34);
  --flame-btn:    oklch(0.578 0.190 33);    /* 5.0:1 / beyaz */
  --flame-deep:   oklch(0.470 0.160 33);
  --flame-wash:   oklch(0.965 0.020 40);

  --green:        oklch(0.500 0.115 155);
  --green-lift:   oklch(0.780 0.140 155);

  /* Ters yüzeyde metin */
  --on-dark:      oklch(0.985 0.004 271);
  --on-dark-2:    oklch(0.800 0.015 271);

  /* Tipografi */
  --font-display: "Bricolage Grotesque", "Trebuchet MS", system-ui, sans-serif;
  --font-body:    "Manrope", "Segoe UI", system-ui, -apple-system, sans-serif;

  --step--1: clamp(0.82rem, 0.79rem + 0.15vw, 0.9rem);
  --step-0:  clamp(1rem, 0.96rem + 0.2vw, 1.1rem);
  --step-1:  clamp(1.25rem, 1.16rem + 0.44vw, 1.5rem);
  --step-2:  clamp(1.56rem, 1.38rem + 0.9vw, 2.1rem);
  --step-3:  clamp(1.95rem, 1.63rem + 1.6vw, 2.95rem);
  --step-4:  clamp(2.2rem, 1.6rem + 2.5vw, 3.5rem);
  --step-5:  clamp(2.5rem, 1.2rem + 3.3vw, 4.35rem);

  /* Ölçü */
  --shell:  min(100% - 2.5rem, 78rem);
  --shell-wide: min(100% - 2rem, 92rem);
  --radius: 18px;
  --radius-lg: 26px;
  --radius-sm: 11px;

  /* Yumuşak gölge sistemi */
  --sh-1: 0 1px 2px oklch(0.172 0.032 271 / 0.05), 0 4px 14px oklch(0.172 0.032 271 / 0.05);
  --sh-2: 0 2px 6px oklch(0.172 0.032 271 / 0.06), 0 18px 46px oklch(0.172 0.032 271 / 0.09);
  --sh-3: 0 4px 12px oklch(0.172 0.032 271 / 0.08), 0 36px 80px oklch(0.172 0.032 271 / 0.14);

  /* Eğriler — expo/quart ease-out, yay yok */
  --e-out: cubic-bezier(0.16, 1, 0.3, 1);
  --e-out-q: cubic-bezier(0.22, 1, 0.36, 1);
  --e-io: cubic-bezier(0.76, 0, 0.24, 1);

  /* z-index ölçeği */
  --z-base: 1;
  --z-sticky: 100;
  --z-header: 200;
  --z-bar: 300;
  --z-overlay: 400;
  --z-cursor: 900;
}

/* ------------------------------------------------------------------
   2. RESET
   ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /* Sticky pinlerin başlık altında kalmaması için */
  scroll-padding-top: 5rem;
}

body {
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.62;
  color: var(--ink-2);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  font-variant-numeric: tabular-nums;
}
.clock__mid > b span { font: inherit; color: inherit; display: inline; }

img, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.032em;
  color: var(--ink);
  text-wrap: balance;
}
p { text-wrap: pretty; }

:focus-visible {
  outline: 3px solid var(--indigo);
  outline-offset: 3px;
  border-radius: 4px;
}
::selection { background: var(--indigo); color: #fff; }

.skip {
  position: fixed; top: 0; left: 0; z-index: var(--z-overlay);
  padding: 0.85rem 1.4rem; background: var(--ink); color: #fff;
  border-radius: 0 0 12px 0; font-weight: 700;
  transform: translateY(-110%);
  transition: transform 0.2s var(--e-out);
}
.skip:focus-visible { transform: translateY(0); }

.sr {
  position: absolute; width: 1px; height: 1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ------------------------------------------------------------------
   3. LAYOUT YARDIMCILARI
   ------------------------------------------------------------------ */
.shell { width: var(--shell); margin-inline: auto; }
.shell-wide { width: var(--shell-wide); margin-inline: auto; }

section { position: relative; }
.pad { padding-block: clamp(4.5rem, 9vw, 9rem); }
.pad-sm { padding-block: clamp(3rem, 6vw, 5.5rem); }

.lede {
  font-size: var(--step-1);
  line-height: 1.5;
  color: var(--ink-3);
  max-width: 40ch;
  font-weight: 400;
}
.prose { max-width: 68ch; }

.kicker {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-display);
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--indigo);
}
.kicker::before {
  content: ""; width: 26px; height: 2px; background: currentColor;
  border-radius: 2px;
}

/* Ters (koyu) bölümler */
.inverse { background: var(--ink); color: var(--on-dark-2); }
.inverse h1, .inverse h2, .inverse h3, .inverse h4 { color: var(--on-dark); }
.inverse .lede { color: var(--on-dark-2); }
.inverse .kicker { color: var(--flame); }

/* ------------------------------------------------------------------
   4. BUTONLAR
   ------------------------------------------------------------------ */
.btn {
  --btn-bg: var(--ink);
  --btn-fg: #fff;
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  min-height: 52px;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--step-0);
  letter-spacing: -0.015em;
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.45s var(--e-out), box-shadow 0.45s var(--e-out), filter 0.3s var(--e-out);
  will-change: transform;
}
.btn > * { position: relative; }
/* Dolgu dalgası: alttan yükselen daire.
   z-index:-1 + isolation:isolate — daire butonun zemininin ÜSTÜNE, metnin ALTINA
   boyanır. Böylece etiketi <span> ile sarılmamış butonlarda da yazı örtülmez. */
.btn::after {
  content: "";
  position: absolute; inset: -60% -10%;
  z-index: -1;
  background: var(--btn-fill, var(--btn-fg));
  border-radius: 50%;
  transform: translate3d(0, 102%, 0) scale(1.1);
  transition: transform 0.62s var(--e-out);
}
.btn:hover::after, .btn:focus-visible::after { transform: translate3d(0, 0, 0) scale(1.1); }
/* Hover metni ayrı bir değişken: --btn-bg şeffaf olan hayalet butonda görünmez kalırdı */
.btn:hover, .btn:focus-visible { color: var(--btn-hover-fg, var(--btn-bg)); box-shadow: var(--sh-2); }
.btn:active { transform: scale(0.975); }

.btn--wa   { --btn-bg: var(--flame-btn); --btn-fg: #fff; }
.btn--ink  { --btn-bg: var(--ink); }
.btn--light{ --btn-bg: #fff; --btn-fg: var(--ink); }
.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--ink);
  --btn-fill: var(--ink); --btn-hover-fg: #fff;
  border: 1.5px solid var(--line-2);
}
.btn--ghost:hover, .btn--ghost:focus-visible { border-color: var(--ink); }
.inverse .btn--ghost {
  --btn-fg: #fff; --btn-fill: #fff; --btn-hover-fg: var(--ink);
  border-color: oklch(1 0 0 / 0.26);
}
.inverse .btn--ghost:hover { border-color: #fff; }

.btn--lg { min-height: 60px; padding: 1.05rem 2rem; font-size: var(--step-1); }
.btn__ico { width: 20px; height: 20px; flex: none; }

.linkish {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-weight: 700; text-decoration: none; color: var(--indigo);
  font-family: var(--font-display);
  letter-spacing: -0.015em;
}
.linkish svg { transition: transform 0.4s var(--e-out); }
.linkish:hover svg { transform: translateX(5px); }

/* ------------------------------------------------------------------
   5. GİRİŞ ANİMASYONU TABANI  (yalnız JS varsa gizle)
   ------------------------------------------------------------------ */
.js [data-reveal] {
  opacity: 0;
  transform: translate3d(0, var(--rv-y, 26px), 0);
  transition:
    opacity 0.85s var(--e-out) var(--rv-d, 0ms),
    transform 0.95s var(--e-out) var(--rv-d, 0ms),
    filter 0.85s var(--e-out) var(--rv-d, 0ms);
  filter: blur(var(--rv-b, 0px));
}
.js [data-reveal].is-in {
  opacity: 1; transform: none; filter: blur(0);
}
.js [data-reveal="scale"] { transform: translate3d(0, 34px, 0) scale(0.965); --rv-b: 6px; }
.js [data-reveal="left"]  { transform: translate3d(-34px, 0, 0); }
.js [data-reveal="right"] { transform: translate3d(34px, 0, 0); }
.js [data-reveal="clip"]  {
  opacity: 1; transform: none;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1.05s var(--e-out) var(--rv-d, 0ms);
}
.js [data-reveal="clip"].is-in { clip-path: inset(0 0 0 0); }

/* Satır satır maskeli başlık (JS böler) */
/* Alt boşluk, elle çizilen altı çizginin ve alt uzantıların kırpılmasını önler */
/* Üstteki pay bilerek geniş: Türkçe İ'nin noktası yazı tipinin en yüksek
   çıkıntısı ve satır yüksekliği 1.02 olduğu için mürekkep, satır kutusunun
   üstüne taşıyor. Maske yalnızca ALT kenarda gerekli — açılış animasyonu
   yazıyı aşağıdan yukarı taşıyor — bu yüzden üstü cömertçe açıyoruz. */
.split-line { display: block; overflow: hidden; padding-block: 0.3em 0.34em; margin-block: -0.3em -0.34em; }
/* flow-root şart: aksi hâlde ilk/son satırın negatif marjı başlıktan DIŞARI
   sızıyor (margin collapsing). Ped'i dengelemesi gereken marj, kendi kutusu
   yerine komşu boşlukları yiyor: başlık üstteki kicker'a yapışıyor, altındaki
   içerikle arası ~8 px kapanıyordu. */
[data-lines] { display: flow-root; }
.split-line > i {
  display: block; font-style: inherit;
  transform: translate3d(0, 152%, 0);
  transition: transform 1.05s var(--e-out) var(--ln-d, 0ms);
}
.is-in .split-line > i, .split-line.is-in > i { transform: none; }

/* ------------------------------------------------------------------
   6. ÜST DUYURU BANDI
   ------------------------------------------------------------------ */
.promo {
  position: relative; z-index: var(--z-bar);
  background: var(--ink);
  color: var(--on-dark);
  font-size: var(--step--1);
  overflow: hidden;
}
.promo__in {
  display: flex; align-items: center; gap: 1rem;
  min-height: 46px; padding-block: 0.4rem;
}
.promo a {
  display: inline-flex; align-items: center; gap: 0.5rem;
  text-decoration: none; font-weight: 600; flex: 1;
}
.promo a:hover .promo__cta { text-decoration-color: currentColor; }
.promo__dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--flame); flex: none;
  box-shadow: 0 0 0 0 oklch(0.712 0.176 34 / 0.65);
  animation: pulse 2.6s var(--e-out) infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 oklch(0.712 0.176 34 / 0.6); }
  70%  { box-shadow: 0 0 0 11px oklch(0.712 0.176 34 / 0); }
  100% { box-shadow: 0 0 0 0 oklch(0.712 0.176 34 / 0); }
}
.promo b { color: #fff; font-weight: 800; }
.promo__cta {
  text-decoration: underline; text-underline-offset: 3px;
  text-decoration-color: oklch(1 0 0 / 0.35);
  white-space: nowrap;
}
.promo__x {
  flex: none; width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center; color: var(--on-dark-2);
  transition: background 0.3s var(--e-out), color 0.3s var(--e-out);
}
.promo__x:hover { background: oklch(1 0 0 / 0.1); color: #fff; }
.promo.is-closed { display: none; }

/* ------------------------------------------------------------------
   7. HEADER
   ------------------------------------------------------------------ */
.hdr {
  position: sticky; top: 0; z-index: var(--z-header);
  background: oklch(1 0 0 / 0.82);
  backdrop-filter: saturate(1.7) blur(14px);
  -webkit-backdrop-filter: saturate(1.7) blur(14px);
  border-bottom: 1px solid transparent;
  transition: transform 0.5s var(--e-out), border-color 0.4s linear, background 0.4s linear;
}
/* Mobil menü açıkken başlık, örtünün üstünde kalır; aksi hâlde kapatma
   düğmesi (X'e dönüşen burger) örtünün altında kalıp görünmez oluyordu. */
.hdr.is-nav-open {
  z-index: calc(var(--z-overlay) + 1);
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: transparent;
  transform: none !important;
}
.hdr.is-nav-open .hdr__prog { opacity: 0; }
.hdr.is-stuck { border-bottom-color: var(--line); }
.hdr.is-hidden { transform: translateY(-101%); }

.hdr__in {
  display: flex; align-items: center; gap: clamp(1rem, 2vw, 2rem);
  min-height: 70px;
}
/* Marka: metin yerine logo görseli. width/height öznitelikleri oranı
   kilitler, CSS yalnızca yüksekliği verir — yükleme sırasında sıçrama olmaz. */
.brand { display: inline-flex; align-items: center; flex: none; text-decoration: none; }
.brand__img {
  display: block; height: 26px; width: auto;
  transition: transform 0.5s var(--e-out);
}
.brand:hover .brand__img { transform: translateY(-2px); }

.nav { display: flex; align-items: center; gap: 0.15rem; margin-left: auto; }
/* Not: seçici .nav > button DEĞİL — açılır menü butonu .drop içinde duruyor
   ve çocuk seçicisi onu ıskalayıp tarayıcı varsayılanlarında bırakıyordu. */
.nav a, .nav button {
  position: relative;
  padding: 0.55rem 0.8rem; border-radius: 10px;
  font-size: 0.95rem; font-weight: 600;
  text-decoration: none; color: var(--ink-2);
  white-space: nowrap;
  transition: color 0.28s var(--e-out), background 0.28s var(--e-out);
}
.nav a:hover, .nav button:hover { color: var(--ink); background: var(--paper-3); }
.nav a[aria-current="page"] { color: var(--indigo); }

.drop { position: relative; }
/* font/font-size burada TANIMLANMAZ: .nav button kuralıyla aynı özgüllükte olduğu
   için `font: inherit` onu ezip butonu gövde boyutuna döndürüyordu. */
.drop > button {
  display: inline-flex; align-items: center; gap: 0.35rem;
  cursor: pointer; border: 0; background: none;
}
.drop > button svg {
  flex: none; margin-top: 1px; color: var(--ink-4);
  transition: transform 0.35s var(--e-out), color 0.28s var(--e-out);
}
.drop > button:hover svg, .drop.is-open > button svg { color: var(--ink-2); }
.drop.is-open > button svg { transform: rotate(180deg); }
/* Buton ile menü arasındaki boşluk görünmez bir köprüyle menüye dahil edilir.
   Aksi hâlde fare boşluğa girdiğinde .drop'tan çıkmış sayılıyor ve menü
   seçeneklere ulaşılamadan kapanıyordu. */
.drop__menu::before {
  content: ""; position: absolute;
  left: 0; right: 0; top: -14px; height: 14px;
}
.drop__menu {
  position: absolute; top: calc(100% + 10px); left: 50%;
  width: 300px; padding: 0.5rem;
  background: #fff; border: 1px solid var(--line);
  border-radius: 16px; box-shadow: var(--sh-3);
  opacity: 0; visibility: hidden;
  transform: translate(-50%, -8px) scale(0.97);
  transform-origin: top center;
  transition: opacity 0.32s var(--e-out), transform 0.42s var(--e-out), visibility 0.32s;
}
.drop.is-open .drop__menu { opacity: 1; visibility: visible; transform: translate(-50%, 0) scale(1); }
.drop__menu a {
  display: block; padding: 0.65rem 0.8rem; border-radius: 11px;
  font-size: 0.95rem; line-height: 1.35;
}
.drop__menu a small { display: block; color: var(--ink-3); font-weight: 500; font-size: 0.8rem; }
.drop__menu a:hover { background: var(--indigo-wash); color: var(--indigo); }
.drop__menu a:hover small { color: var(--indigo); opacity: 0.8; }

.hdr__cta { display: flex; align-items: center; gap: 0.6rem; flex: none; }
.hdr .btn { min-height: 44px; padding: 0.6rem 1.15rem; font-size: 0.94rem; }

/* Okuma ilerlemesi */
.hdr__prog {
  position: absolute; left: 0; bottom: -1px; height: 2px;
  width: 100%; transform: scaleX(var(--read, 0)); transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--indigo), var(--flame));
}

/* Mobil menü */
.burger { display: none; width: 46px; height: 46px; border-radius: 12px; flex: none; }
.burger i {
  display: block; width: 21px; height: 1.8px; background: var(--ink); border-radius: 2px;
  margin: 4.6px auto; transition: transform 0.45s var(--e-out), opacity 0.3s;
}
.burger.is-open {
  background: var(--paper-3);
  box-shadow: inset 0 0 0 1px var(--line);
}
.burger.is-open i:nth-child(1) { transform: translateY(6.4px) rotate(45deg); }
.burger.is-open i:nth-child(2) { opacity: 0; transform: scaleX(0.3); }
.burger.is-open i:nth-child(3) { transform: translateY(-6.4px) rotate(-45deg); }

.mnav {
  position: fixed; inset: 0; z-index: var(--z-overlay);
  background: var(--paper);
  padding: 7rem 1.5rem 2.5rem;
  overflow-y: auto;
  clip-path: circle(0% at calc(100% - 44px) 44px);
  transition: clip-path 0.72s var(--e-io);
  visibility: hidden;
}
.mnav.is-open { clip-path: circle(150% at calc(100% - 44px) 44px); visibility: visible; }
/* Giriş animasyonu paneldeki tüm bağlantılara uygulanır… */
.mnav a {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.5s var(--e-out), transform 0.6s var(--e-out);
}
.mnav.is-open a { opacity: 1; transform: none; }

/* …ancak menü tipografisi yalnızca DOĞRUDAN çocuklara. Aksi hâlde alttaki
   harekete geçirici butonlar da 24 px yazı ve sıfır yan boşluk alıyor,
   buton görünümünü kaybedip taşma riskine giriyordu. */
.mnav > a {
  display: block; padding: 0.85rem 0;
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.45rem, 5.6vw, 1.9rem); letter-spacing: -0.035em;
  color: var(--ink); text-decoration: none;
  border-bottom: 1px solid var(--line);
}
.mnav__foot { margin-top: 2.2rem; display: grid; gap: 0.7rem; }
.mnav__foot .btn { width: 100%; }

/* ------------------------------------------------------------------
   8. HERO
   ------------------------------------------------------------------ */
.hero {
  position: relative;
  padding-block: clamp(2.2rem, 4vw, 4rem) clamp(3rem, 6vw, 6rem);
  overflow: hidden;
}
/* Arka plan: ince ızgara + iki yumuşak ışık — statik, ucuz */
.hero__bg {
  position: absolute; inset: -10% -5% 0; z-index: 0; pointer-events: none;
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, oklch(0.172 0.032 271 / 0.045) 1px, transparent 1px),
    linear-gradient(to bottom, oklch(0.172 0.032 271 / 0.045) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(120% 85% at 55% 12%, #000 25%, transparent 72%);
  -webkit-mask-image: radial-gradient(120% 85% at 55% 12%, #000 25%, transparent 72%);
  transform: translate3d(0, calc(var(--sy, 0) * -0.04px), 0);
}
.hero__glow {
  position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.5;
}
.hero__glow--a {
  width: 42vw; height: 42vw; max-width: 620px; max-height: 620px;
  left: -8vw; top: -6vw;
  background: radial-gradient(circle, oklch(0.512 0.229 274 / 0.34), transparent 66%);
  animation: drift-a 19s ease-in-out infinite alternate;
}
.hero__glow--b {
  width: 34vw; height: 34vw; max-width: 500px; max-height: 500px;
  right: 2vw; bottom: -10vw;
  background: radial-gradient(circle, oklch(0.712 0.176 34 / 0.3), transparent 66%);
  animation: drift-b 23s ease-in-out infinite alternate;
}
@keyframes drift-a { to { transform: translate3d(9%, 7%, 0) scale(1.14); } }
@keyframes drift-b { to { transform: translate3d(-8%, -9%, 0) scale(1.1); } }

.hero__in {
  position: relative; z-index: 1;
  display: grid; gap: clamp(2.5rem, 5vw, 4rem);
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  align-items: center;
}

.hero__eyebrow {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem 0.9rem;
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.86rem; letter-spacing: -0.01em; color: var(--ink-3);
  margin-bottom: clamp(0.9rem, 1.8vw, 1.3rem);
}
.hero__eyebrow span { display: inline-flex; align-items: center; gap: 0.55em; }
.hero__eyebrow span::before {
  content: ""; width: 0.36em; height: 0.36em; border-radius: 50%; flex: none;
  background: var(--indigo); opacity: 0.55;
}
.hero__eyebrow span:nth-child(2)::before { background: var(--flame); }
.hero__eyebrow span:nth-child(4)::before { background: var(--green); }

/* Mobilde beş disiplin tek satırda kalmalı; alt satıra düşen tek kelime
   kırık görünüyordu. Ölçüler em cinsinden olduğu için yazı boyutuyla
   birlikte nokta ve boşluklar da orantılı küçülür. */
@media (max-width: 700px) {
  .hero__eyebrow {
    /* Tek satırda tutulur, ancak taşma riskine karşı sarma açık bırakılır:
       kırpılmış bir satır, sarılmış iki satırdan daha kötüdür. */
    flex-wrap: wrap;
    gap: 0.45em 0.62em;
    font-size: clamp(0.68rem, 2.9vw, 0.86rem);
    min-width: 0;
  }
  .hero__eyebrow span { gap: 0.42em; white-space: nowrap; }
}
/* Çok dar ekranda noktalar yazıya yer açmak için kalkar; ayrımı boşluk yapar.
   Böylece yazı 10 px'in altına düşmez. */
@media (max-width: 380px) {
  .hero__eyebrow { gap: 0.9em; }
  .hero__eyebrow span::before { display: none; }
}

.hero h1 {
  font-size: var(--step-5);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.02;
  margin-bottom: 1.35rem;
}
.hero h1 u {
  text-decoration: none; position: relative; white-space: nowrap;
  color: var(--indigo);
}
/* Elle çizilmiş altı çizgi — yol uzunluğu JS ile açılır */
.hero h1 u svg {
  position: absolute; left: -1.5%; right: -1.5%; bottom: -0.05em; width: 103%; height: 0.16em;
  overflow: visible;
}
.hero h1 u path {
  /* Kelime mor, altı çizgi turuncu: iki marka rengi tek vurguda buluşur */
  fill: none; stroke: var(--flame); stroke-width: 5; stroke-linecap: round;
  stroke-dasharray: var(--len, 400); stroke-dashoffset: var(--len, 400);
  transition: stroke-dashoffset 1.15s var(--e-out) 0.75s;
}
.hero.is-live h1 u path { stroke-dashoffset: 0; }

.hero__act { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: clamp(1.5rem, 2.6vw, 2rem); }
.hero__trust {
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.35rem;
  /* ul varsayılan padding-inline-start: 40px — sıfırlanmazsa liste
     üstündeki butonlardan 40px kayık başlıyor */
  margin-top: clamp(1.1rem, 2vw, 1.4rem); padding-inline-start: 0;
  font-size: 0.88rem; color: var(--ink-3);
}
.hero__trust li { display: flex; align-items: center; gap: 0.45rem; list-style: none; }
.hero__trust svg { width: 15px; height: 15px; color: var(--green); flex: none; }

/* --- Hero görsel sahnesi --- */
.stage {
  position: relative;
  perspective: 1400px;
  transform: translate3d(0, calc(var(--sy, 0) * -0.05px), 0);
}
.stage__deck {
  position: relative;
  transform: rotateX(calc(var(--tilt, 0) * 1deg)) rotateY(calc(var(--tilt, 0) * -0.7deg)) scale(var(--pop, 1));
  transform-style: preserve-3d;
  transition: transform 0.1s linear;
}
/* --- Kendini kuran müşteri sitesi --- */
.window {
  position: relative;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: var(--sh-3);
  overflow: hidden;
}
.window__bar {
  display: flex; align-items: center; gap: 6px;
  padding: 11px 13px; background: var(--paper-2);
  border-bottom: 1px solid var(--line);
}
.window__bar i { width: 9px; height: 9px; border-radius: 50%; flex: none; }
.window__bar i:nth-child(1) { background: oklch(0.75 0.15 30); }
.window__bar i:nth-child(2) { background: oklch(0.83 0.13 85); }
.window__bar i:nth-child(3) { background: oklch(0.78 0.14 150); }
.window__url {
  margin-left: 8px; flex: 1; height: 22px; border-radius: 7px;
  background: #fff; border: 1px solid var(--line);
  font-size: 11px; line-height: 21px; padding-inline: 10px;
  color: var(--ink-4); font-weight: 600;
  overflow: hidden; white-space: nowrap; text-overflow: ellipsis;
}
.window__live {
  flex: none; display: inline-flex; align-items: center; gap: 5px;
  font-size: 10px; font-weight: 800; letter-spacing: -0.01em;
  font-family: var(--font-display);
  color: var(--green); padding: 3px 9px 3px 7px; border-radius: 999px;
  background: oklch(0.5 0.115 155 / 0.1);
  opacity: 0; animation: fade-up 0.6s var(--e-out) 1.75s forwards;
}
.window__live::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--green);
}
.hero:not(.is-live) .window__live { animation-play-state: paused; }

.window__site { padding: clamp(0.9rem, 1.7vw, 1.35rem); display: grid; gap: clamp(0.8rem, 1.6vw, 1.2rem); }

.site__nav { display: flex; align-items: center; gap: 0.7rem; }
.site__nav b {
  font-family: var(--font-display); font-weight: 800; font-size: 0.82rem;
  letter-spacing: -0.04em; color: var(--ink); margin-right: 0.3rem;
}
.site__nav u {
  text-decoration: none; height: 5px; width: 30px; border-radius: 3px;
  background: var(--line-2); flex: none;
}
.site__nav em {
  font-style: normal; margin-left: auto;
  font-size: 0.62rem; font-weight: 800; font-family: var(--font-display);
  color: #fff; background: var(--flame-btn);
  padding: 0.32em 0.85em; border-radius: 999px;
  opacity: 0; animation: fade-up 0.5s var(--e-out) 0.28s forwards;
}
.hero:not(.is-live) .site__nav em { animation-play-state: paused; }

.site__hero { display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); gap: clamp(0.7rem, 1.5vw, 1.1rem); align-items: center; }
.site__copy { display: grid; gap: 7px; align-content: center; }

.bar {
  height: 6px; border-radius: 4px; background: var(--line);
  transform-origin: 0 50%; transform: scaleX(0);
  animation: bar-in 0.6s var(--e-out) forwards;
  animation-delay: var(--d, 0ms);
}
.hero:not(.is-live) .bar { animation-play-state: paused; }
@keyframes bar-in { to { transform: scaleX(1); } }
.bar--w60 { width: 60%; } .bar--w70 { width: 70%; } .bar--w90 { width: 90%; }
.bar--tall { height: 13px; background: var(--ink); border-radius: 5px; }

.site__cta {
  margin-top: 5px; justify-self: start;
  padding: 0.5em 1em; border-radius: 999px;
  background: var(--flame-btn); color: #fff;
  font-family: var(--font-display); font-weight: 800;
  font-size: 0.63rem; letter-spacing: -0.01em; white-space: nowrap;
  opacity: 0; animation: fade-up 0.6s var(--e-out) 0.95s forwards;
}
.hero:not(.is-live) .site__cta { animation-play-state: paused; }

.site__shot {
  position: relative; border-radius: 11px; overflow: hidden;
  aspect-ratio: 3 / 2; background: var(--paper-3);
  opacity: 0; animation: shot-in 0.85s var(--e-out) 0.62s forwards;
}
.hero:not(.is-live) .site__shot { animation-play-state: paused; }
.site__shot img { width: 100%; height: 100%; object-fit: cover; }
.site__shot::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 32%, oklch(1 0 0 / 0.55) 50%, transparent 68%);
  transform: translateX(-130%);
  animation: sheen 4.5s var(--e-out) 2s infinite;
}
@keyframes shot-in { from { opacity: 0; transform: translateY(12px) scale(0.96); } to { opacity: 1; transform: none; } }
@keyframes sheen { 0% { transform: translateX(-130%); } 40%, 100% { transform: translateX(240%); } }
@keyframes fade-up { from { opacity: 0; transform: translateY(9px); } to { opacity: 1; transform: none; } }

.site__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.site__tile {
  border-radius: 9px; background: var(--paper-2); border: 1px solid var(--line);
  padding: 9px; display: grid; gap: 6px; align-content: start;
  min-height: 52px;
  opacity: 0; animation: fade-up 0.55s var(--e-out) var(--d, 0ms) forwards;
}
.hero:not(.is-live) .site__tile { animation-play-state: paused; }
.site__tile i { width: 13px; height: 13px; border-radius: 4px; background: var(--indigo); }
.site__tile i.f { background: var(--flame); }
.site__tile i.g { background: var(--green); }
.site__tile::after {
  content: ""; height: 4px; border-radius: 3px; background: var(--line-2); width: 72%;
}

/* Süre rozeti */
.badge-time {
  position: absolute; left: -5%; top: -7%;
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.6rem 1rem 0.6rem 0.6rem;
  background: #fff; border-radius: 999px;
  box-shadow: var(--sh-3); border: 1px solid var(--line);
  transform: translateZ(90px);
  font-size: 0.84rem; font-weight: 700; color: var(--ink);
  font-family: var(--font-display); letter-spacing: -0.02em;
  animation: float-y 5.5s ease-in-out infinite alternate;
}
.badge-time b {
  width: 34px; height: 34px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  background: var(--ink); color: #fff; font-size: 0.76rem; font-weight: 800;
}
.badge-time small { display: block; font-size: 0.7rem; color: var(--ink-3); font-weight: 600; }
@keyframes float-y { to { transform: translateZ(90px) translateY(-12px); } }

/* WhatsApp baloncuğu */
.badge-wa {
  position: absolute; left: -8%; bottom: -8%;
  max-width: 216px; padding: 0.75rem 0.9rem;
  background: var(--ink); color: #fff;
  border-radius: 16px 16px 16px 4px;
  box-shadow: var(--sh-3);
  font-size: 0.79rem; line-height: 1.45;
  transform: translateZ(110px);
  animation: float-y 6.8s ease-in-out 0.6s infinite alternate;
}
.badge-wa strong { display: block; color: var(--green-lift); font-size: 0.72rem; margin-bottom: 0.15rem; }
.badge-wa::after {
  content: ""; position: absolute; right: 12px; bottom: 9px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--green-lift);
}

/* ------------------------------------------------------------------
   9. GÜVEN ŞERİDİ (hız duyarlı marquee)
   ------------------------------------------------------------------ */
.strip {
  background: var(--ink); color: var(--on-dark);
  padding-block: 1.15rem;
  overflow: hidden;
  border-block: 1px solid oklch(1 0 0 / 0.08);
}
.strip__track { display: flex; width: max-content; will-change: transform; }
.strip__seq { display: flex; align-items: center; gap: 2.6rem; padding-right: 2.6rem; }
.strip__seq span {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(0.95rem, 1.6vw, 1.18rem);
  letter-spacing: -0.025em; white-space: nowrap;
}
.strip__seq span::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--flame); flex: none;
}
.strip__seq span:nth-child(even)::before { background: var(--indigo-lift); }

/* ------------------------------------------------------------------
   10. DÖNÜŞÜM (sticky scrub) — sayfanın omurgası
   ------------------------------------------------------------------ */
.morph { background: var(--paper-2); }
/* Bölüm kaydırmaya bağlı: uzun bir ray boyunca pin sabit kalır, ilerleme
   hem ifadeleri hem de önce/sonra silmesini sürer. Sığmayan ekranlarda
   JS .is-flat ekler ve bölüm normal akışa döner. */
.morph__rail { position: relative; }
.morph__pin {
  position: sticky; top: 0;
  height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding-block: clamp(1.6rem, 4vh, 3.4rem);
  overflow: hidden;
}
.morph.is-flat .morph__rail { height: auto !important; }
.morph.is-flat .morph__pin { position: static; height: auto; padding-block: clamp(3.4rem, 6.5vw, 5.5rem); }
.morph.is-flat .morph__item { grid-area: auto; opacity: 1; transform: none; pointer-events: auto; }
.morph.is-flat .morph__list { display: grid; gap: 1.6rem; }
.morph.is-flat .morph__prog { display: none; }

.morph__head { margin-bottom: clamp(1rem, 2.2vh, 2rem); }
.morph__head h2 { font-size: clamp(1.5rem, 1rem + 1.5vw + 0.6vh, 2.6rem); max-width: 17ch; }

.morph__body {
  display: grid; gap: clamp(1.5rem, 3vw, 3rem);
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  align-items: center;
}

/* Sol: değişen ifade çiftleri */
.morph__list { position: relative; display: grid; }
.morph__item {
  grid-area: 1 / 1;
  opacity: 0;
  /* --gir: girişin geldiği yön. Geri kaydırırken yukarıdan gelmesi,
     hareketin scroll yönüyle aynı olmasını sağlıyor. */
  transform: translateY(var(--gir, 22px)) scale(0.985);
  filter: blur(3px);
  transition: opacity 0.46s var(--e-out), transform 0.62s var(--e-out), filter 0.46s var(--e-out);
  pointer-events: none;
}
.morph__list[data-dir="geri"] .morph__item { --gir: -22px; }
.morph__item.is-on { transform: none; filter: none; }
.morph__item.is-on { opacity: 1; pointer-events: auto; }
.morph__no, .morph__yes { display: block; }
.morph__no {
  font-size: clamp(0.96rem, 0.75rem + 0.7vw, 1.32rem); font-weight: 600; color: var(--ink-4);
  text-decoration: line-through;
  text-decoration-color: oklch(0.712 0.176 34 / 0.5);
  text-decoration-thickness: 2px;
  margin-bottom: 0.85rem;
}
.morph__yes {
  font-family: var(--font-display);
  font-size: clamp(1.24rem, 0.9rem + 1.35vw, 2.05rem); font-weight: 700; letter-spacing: -0.034em;
  line-height: 1.14; color: var(--ink);
}
.morph__yes b { color: var(--indigo); font-weight: 700; }

.morph__prog {
  display: flex; align-items: center; gap: clamp(0.9rem, 2vw, 1.4rem);
  margin-top: clamp(1.1rem, 2.4vh, 1.9rem);
}
.morph__count {
  display: flex; align-items: baseline; gap: 0.22rem; flex: none;
  font-family: var(--font-display); font-weight: 800;
  letter-spacing: -0.03em; line-height: 1;
}
.morph__count b { font-size: 1.32rem; color: var(--ink); font-variant-numeric: tabular-nums; }
.morph__count span { font-size: 0.86rem; color: var(--ink-4); }

.morph__steps { display: flex; gap: 6px; flex: 1; min-width: 0; }
.morph__steps i {
  height: 3px; flex: 1; border-radius: 3px; background: var(--line-2);
  overflow: hidden; position: relative;
}
.morph__steps i::after {
  content: ""; position: absolute; inset: 0;
  background: var(--ink); transform-origin: 0 50%;
  transform: scaleX(var(--f, 0));
}
/* Dolmakta olan çubuk vurgulanır: hangi ifadede olunduğu bir bakışta anlaşılır */
.morph__steps i.is-now { background: var(--line-2); }
.morph__steps i.is-now::after { background: var(--indigo); }

/* Sağ: önce/sonra sahnesi */
.compare {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--sh-3);
  background: #fff;
  aspect-ratio: 16 / 11;
  max-height: min(58vh, 480px);
  isolation: isolate;
}
.compare__side { position: absolute; inset: 0; padding: clamp(2.4rem, 3.4vw, 3rem) clamp(0.9rem, 2vw, 1.5rem) clamp(0.9rem, 2vw, 1.5rem); }

/* "Önce": dağınık, gri, hiyerarşisiz */
.mock-bad {
  background: oklch(0.95 0.004 250);
  filter: saturate(0.15);
  font-family: "Times New Roman", Times, serif;
  color: oklch(0.45 0.01 250);
  display: flex; flex-direction: column; gap: 0.6rem;
}
.mock-bad__nav {
  display: flex; gap: 0.7rem; font-size: clamp(0.5rem, 1vw, 0.68rem);
  border-bottom: 1px solid oklch(0.8 0.005 250); padding-bottom: 0.45rem;
  flex-wrap: wrap;
}
.mock-bad h3 {
  font-family: inherit; font-size: clamp(0.85rem, 2vw, 1.3rem);
  color: oklch(0.35 0.01 250); font-weight: 700; letter-spacing: 0;
  line-height: 1.15;
}
.mock-bad p { font-size: clamp(0.5rem, 1.05vw, 0.72rem); line-height: 1.5; max-width: 46ch; }
.mock-bad__btn {
  align-self: flex-start;
  font-size: clamp(0.46rem, 0.9vw, 0.6rem);
  padding: 0.25rem 0.55rem;
  border: 1px solid oklch(0.62 0.01 250); border-radius: 3px;
  background: oklch(0.88 0.004 250);
}
.mock-bad__blocks { display: flex; gap: 0.5rem; margin-top: auto; }
.mock-bad__blocks i {
  flex: 1; height: clamp(38px, 8vw, 74px);
  background: oklch(0.86 0.004 250);
  border: 1px solid oklch(0.78 0.005 250);
}

/* "Sonra": Obrandy dili — sağdan wipe ile açılır */
.mock-good {
  background: #fff;
  clip-path: inset(0 0 0 calc((1 - var(--w, 0)) * 100%));
  display: flex; flex-direction: column; gap: clamp(0.5rem, 1.4vw, 0.9rem);
  will-change: clip-path;
}
.mock-good__nav {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: clamp(0.5rem, 1vw, 0.66rem); font-weight: 700;
  color: var(--ink); font-family: var(--font-display); letter-spacing: -0.02em;
}
.mock-good__nav b { color: var(--indigo); margin-right: auto; font-size: 1.1em; }
.mock-good__nav em {
  font-style: normal; background: var(--flame-btn); color: #fff;
  padding: 0.22em 0.7em; border-radius: 999px; font-size: 0.92em;
}
.mock-good h3 {
  font-size: clamp(0.95rem, 2.5vw, 1.75rem); letter-spacing: -0.04em;
  line-height: 1.02; color: var(--ink); max-width: 15ch;
}
.mock-good p { font-size: clamp(0.52rem, 1.1vw, 0.76rem); color: var(--ink-3); max-width: 40ch; line-height: 1.5; }
.mock-good__row { display: flex; gap: 0.4rem; align-items: center; }
.mock-good__pill {
  font-size: clamp(0.46rem, 0.95vw, 0.63rem); font-weight: 700;
  padding: 0.35em 0.85em; border-radius: 999px;
  background: var(--flame-btn); color: #fff; font-family: var(--font-display);
}
.mock-good__pill--g { background: var(--paper-2); color: var(--ink); border: 1px solid var(--line); }
.mock-good__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.45rem; margin-top: auto; }
.mock-good__card {
  border: 1px solid var(--line); border-radius: 9px;
  padding: clamp(0.35rem, 0.9vw, 0.6rem);
  background: var(--paper-2);
  display: grid; gap: 0.3rem; align-content: start;
}
.mock-good__card i { display: block; width: 14px; height: 14px; border-radius: 5px; background: var(--indigo); }
.mock-good__card i.f { background: var(--flame); }
.mock-good__card i.g { background: var(--green); }
.mock-good__card u {
  text-decoration: none; display: block; height: 4px; border-radius: 3px;
  background: var(--line-2);
}
.mock-good__card u:last-child { width: 62%; }

/* Wipe kolu */
.compare__handle {
  position: absolute; top: 0; bottom: 0;
  left: calc((1 - var(--w, 0)) * 100%);
  width: 2px; background: var(--ink);
  z-index: 3; pointer-events: none;
  box-shadow: 0 0 0 1px oklch(1 0 0 / 0.55);
}
.compare__handle::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 40px; height: 40px; margin: -20px 0 0 -20px;
  border-radius: 50%; background: var(--ink);
  box-shadow: var(--sh-2);
}
.compare__handle::before {
  content: "‹ ›"; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%); z-index: 1;
  color: #fff; font-size: 15px; font-weight: 700; letter-spacing: 2px;
  font-family: var(--font-display);
}
.compare__tag {
  position: absolute; z-index: 4; top: 10px;
  font-size: 0.66rem; font-weight: 800; letter-spacing: 0.04em;
  padding: 0.3rem 0.7rem; border-radius: 999px;
  font-family: var(--font-display);
  text-transform: uppercase;
}
/* Görsel alandaki gezinme okları — geçişi bunlar sürer */
.morph__arw {
  position: absolute; top: 50%; z-index: 5;
  width: 46px; height: 46px; margin-top: -23px;
  display: grid; place-items: center;
  border: 0; border-radius: 50%; cursor: pointer;
  background: oklch(1 0 0 / 0.93); color: var(--ink);
  box-shadow: var(--sh-2);
  transition: transform 0.32s var(--e-out), background 0.32s var(--e-out), color 0.32s var(--e-out);
}
.morph__arw svg { width: 20px; height: 20px; }
.morph__arw--p { left: 12px; }
.morph__arw--n { right: 12px; }
.morph__arw:hover { background: var(--indigo); color: #fff; transform: scale(1.08); }
.morph__arw:focus-visible { outline: 2px solid var(--indigo); outline-offset: 3px; }
.morph__arw[disabled] { opacity: 0.35; cursor: default; }
.morph__arw[disabled]:hover { background: oklch(1 0 0 / 0.93); color: var(--ink); transform: none; }

/* Tutamak: silme sınırını gösteren ince çizgi ve üzerinde yumuşak bir düğme */
.compare__handle::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 34px; height: 34px; margin: -17px 0 0 -17px;
  border-radius: 50%; background: #fff;
  box-shadow: 0 2px 10px oklch(0.172 0.032 271 / 0.28), 0 0 0 1px oklch(0.172 0.032 271 / 0.1);
}
.compare__handle::before {
  content: "‹ ›"; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%); z-index: 1;
  color: var(--ink); font-size: 13px; font-weight: 800; letter-spacing: 1px;
  font-family: var(--font-display);
}

/* Silme ilerledikçe "Obrandy öncesi" etiketi tamamen kaybolur: eski çarpanla
   son adımda 0.15 opaklıkla görünür kalıyordu. */
.compare__tag--l { left: 10px; background: oklch(0.172 0.032 271 / 0.72); color: #fff;
  opacity: clamp(0, calc((0.78 - var(--w, 0)) * 2.6), 1); }
.compare__tag--r { right: 10px; background: var(--indigo); color: #fff; opacity: clamp(0, calc((var(--w, 0) - 0.12) * 3), 1); }

/* ------------------------------------------------------------------
   11. HİZMETLER — üst üste binen kartlar
   ------------------------------------------------------------------ */
.svc__head { display: grid; gap: 1.4rem; margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.svc__head h2 { font-size: var(--step-4); max-width: 15ch; }

.deck { display: grid; gap: clamp(1rem, 2vw, 1.4rem); }
.card-svc {
  position: sticky;
  top: calc(84px + var(--i, 0) * 14px);
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--sh-2);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  min-height: 340px;
  transform: scale(var(--sc, 1));
  transform-origin: 50% 0;
  transition: transform 0.25s linear;
}
.card-svc__txt {
  padding: clamp(1.6rem, 3.2vw, 2.9rem);
  display: flex; flex-direction: column; gap: 0.9rem;
  align-content: start;
}
.card-svc__no {
  font-family: var(--font-display); font-weight: 800;
  font-size: 0.82rem; color: var(--indigo);
  letter-spacing: -0.01em;
}
.card-svc h3 { font-size: var(--step-2); letter-spacing: -0.038em; }
.card-svc p { color: var(--ink-3); max-width: 42ch; }
.card-svc ul { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.2rem; }
.card-svc li {
  font-size: 0.8rem; font-weight: 600; color: var(--ink-2);
  padding: 0.32rem 0.7rem; border-radius: 999px;
  background: var(--paper-2); border: 1px solid var(--line);
}
.card-svc__go { margin-top: auto; padding-top: 1rem; }
.card-svc__img { position: relative; overflow: hidden; background: var(--paper-2); }
.card-svc__img img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.06) translate3d(0, calc(var(--pz, 0) * 1px), 0);
  transition: transform 0.6s var(--e-out);
}
.card-svc:hover .card-svc__img img { transform: scale(1.1) translate3d(0, calc(var(--pz, 0) * 1px), 0); }
/* Kart ekrana sığmıyorsa yapışkanlık kapatılır: ekrandan uzun bir sticky
   öğenin alt kısmına scroll ile ulaşılamaz. Karar JS tarafında ölçülür. */
.deck.is-flat .card-svc { position: static; transform: none; }

/* ------------------------------------------------------------------
   12. AMİRAL TEKLİF — indigo drench + 48 saat sayacı
   ------------------------------------------------------------------ */
.offer {
  background: var(--indigo);
  color: oklch(0.97 0.02 274);
  position: relative; overflow: hidden;
}
.offer::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(70% 60% at 82% 8%, oklch(0.712 0.176 34 / 0.42), transparent 62%),
    radial-gradient(60% 60% at 10% 96%, oklch(0.36 0.185 274 / 0.85), transparent 60%);
  pointer-events: none;
}
.offer > * { position: relative; z-index: 1; }
.offer h2 { color: #fff; font-size: var(--step-4); max-width: 20ch; }
.offer__in {
  display: grid; gap: clamp(2rem, 4vw, 3.5rem);
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.82fr);
  align-items: center;
}
.offer .kicker { color: oklch(0.9 0.09 60); }

.offer__price {
  display: flex; align-items: flex-end; gap: 0.8rem; flex-wrap: wrap;
  margin: 1.8rem 0 0.4rem;
}
.offer__price b {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(3rem, 7vw, 5.2rem); line-height: 0.85;
  letter-spacing: -0.05em; color: #fff;
}
.offer__unit {
  color: oklch(0.87 0.05 274);
  font-size: var(--step-1); font-weight: 600; padding-bottom: 0.4rem;
}
.offer__note { color: oklch(0.92 0.035 274); font-size: 0.94rem; max-width: 46ch; }

.offer__list { list-style: none; padding: 0; display: grid; gap: 0.55rem; margin-top: 1.9rem; }
.offer__list li {
  display: flex; align-items: flex-start; gap: 0.65rem;
  font-size: 0.98rem; color: oklch(0.96 0.02 274);
  opacity: 0; transform: translateX(-12px);
  transition: opacity 0.5s var(--e-out) var(--d, 0ms), transform 0.6s var(--e-out) var(--d, 0ms);
}
.is-in .offer__list li { opacity: 1; transform: none; }
.offer__tick {
  flex: none; width: 21px; height: 21px; border-radius: 50%;
  background: oklch(1 0 0 / 0.14); display: grid; place-items: center;
  margin-top: 2px;
}
.offer__tick svg { width: 12px; height: 12px; color: oklch(0.88 0.15 155); }

.offer__act { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2.2rem; }
.offer__fine {
  margin-top: 1.3rem; font-size: 0.83rem; color: oklch(0.90 0.04 274);
  max-width: 52ch; line-height: 1.55;
}

/* Saat kadranı */
.clock {
  position: relative; aspect-ratio: 1; width: min(100%, 380px); margin-inline: auto;
  display: grid; place-items: center;
}
.clock svg { position: absolute; inset: 0; width: 100%; height: 100%; transform: rotate(-90deg); }
.clock__track { fill: none; stroke: oklch(1 0 0 / 0.16); stroke-width: 6; }
.clock__arc {
  fill: none; stroke: var(--flame); stroke-width: 6; stroke-linecap: round;
  stroke-dasharray: var(--c, 880);
  stroke-dashoffset: calc(var(--c, 880) * (1 - var(--p, 0)));
}
.clock__mid { text-align: center; }
.clock__mid > b {
  display: block; font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.6rem, 7vw, 4.2rem); line-height: 1;
  letter-spacing: -0.05em; color: #fff;
  font-variant-numeric: tabular-nums;
}
.clock__mid > span { display: block; font-size: 0.9rem; color: oklch(0.88 0.05 274); margin-top: 0.4rem; }
.clock__mid > em {
  display: block; font-style: normal; margin-top: 0.9rem;
  font-size: 0.8rem; font-weight: 700; color: #fff;
  padding: 0.3rem 0.85rem; border-radius: 999px;
  background: oklch(1 0 0 / 0.14); justify-self: center; width: max-content;
  margin-inline: auto;
}

/* ------------------------------------------------------------------
   13. SÜREÇ — yatay pinli
   ------------------------------------------------------------------ */
.flow { background: var(--ink); color: var(--on-dark-2); }
.flow__rail { position: relative; }
.flow__pin {
  position: sticky; top: 0; height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
}
.flow__head { width: var(--shell); margin-inline: auto; margin-bottom: clamp(1.6rem, 4vh, 3rem); }
.flow__head h2 { font-size: var(--step-3); color: #fff; max-width: 18ch; }
/* Kartların pin kenarında sert kesilmesi yerine yumuşak sönüm */
.flow__view { position: relative; }
.flow__view::before, .flow__view::after {
  content: ""; position: absolute; top: -10px; bottom: -10px; z-index: 2;
  width: clamp(16px, 5vw, 72px); pointer-events: none;
}
.flow__view::before { left: 0; background: linear-gradient(90deg, var(--ink) 12%, transparent); }
.flow__view::after { right: 0; background: linear-gradient(270deg, var(--ink) 12%, transparent); }

.flow__track {
  display: flex; gap: clamp(1rem, 2vw, 1.6rem);
  padding-inline: max(1.25rem, calc((100vw - var(--shell)) / 2 + 0px));
  width: max-content;
  transform: translate3d(calc(var(--x, 0) * -1px), 0, 0);
  will-change: transform;
}
.step {
  /* --act: kartın ekran ortasına yakınlığı (0–1). Scrub her karede yazar;
     bu yüzden opacity/transform'a geçiş TANIMLANMAZ — geçiş, scrub ile
     yarışıp gecikme hissi yaratıyor. */
  --act: 1;
  width: clamp(255px, 34vw, 380px);
  flex: none;
  padding: clamp(1.4rem, 2.4vw, 2rem);
  border-radius: var(--radius-lg);
  background: oklch(0.255 0.03 267 / 0.75);
  border: 1px solid oklch(1 0 0 / 0.09);
  display: flex; flex-direction: column; gap: 0.75rem;
  min-height: clamp(270px, 40vh, 340px);
  opacity: calc(0.44 + var(--act) * 0.56);
  transform: scale(calc(0.958 + var(--act) * 0.042));
  box-shadow: 0 calc(var(--act) * 16px) calc(var(--act) * 38px) oklch(0 0 0 / calc(var(--act) * 0.3));
  transition: border-color 0.4s var(--e-out), background 0.4s var(--e-out);
}
.step:hover { border-color: oklch(1 0 0 / 0.24); background: oklch(0.255 0.03 267 / 0.95); }
.step__n {
  width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center;
  background: oklch(1 0 0 / 0.08); color: #fff;
  font-family: var(--font-display); font-weight: 800; font-size: 1.05rem;
  border: 1px solid oklch(1 0 0 / 0.12);
}
.step:nth-child(1) .step__n { background: var(--indigo); border-color: transparent; }
.step:nth-child(5) .step__n { background: var(--flame-btn); border-color: transparent; }
.step__top { display: flex; align-items: center; gap: 0.7rem; }
.step__when {
  font-family: var(--font-display); font-weight: 800;
  font-size: 0.76rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--flame); white-space: nowrap;
}
.step h3 { color: #fff; font-size: var(--step-1); letter-spacing: -0.03em; }
.step p { font-size: 0.94rem; color: var(--on-dark-2); }
.step ul { list-style: none; padding: 0; margin-top: auto; display: grid; gap: 0.35rem; }
.step li {
  font-size: 0.83rem; color: oklch(0.72 0.02 271);
  display: flex; gap: 0.5rem; align-items: baseline;
}
.step li::before { content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--flame); flex: none; }

.flow__meter {
  width: var(--shell); margin: clamp(1.4rem, 3vh, 2.4rem) auto 0;
  display: flex; align-items: center; gap: clamp(0.9rem, 2vw, 1.4rem);
}
.flow__clock {
  flex: none; display: flex; align-items: baseline; gap: 0.28rem;
  font-family: var(--font-display); font-weight: 800; letter-spacing: -0.02em; line-height: 1;
}
.flow__clock b {
  font-size: 1.28rem; color: #fff;
  font-variant-numeric: tabular-nums; min-width: 2.2ch; text-align: right;
}
.flow__clock span { font-size: 0.8rem; color: oklch(0.72 0.02 271); }

.flow__bar {
  flex: 1; min-width: 0;
  height: 3px; background: oklch(1 0 0 / 0.13); border-radius: 3px; overflow: hidden;
}
.flow__bar i {
  display: block; height: 100%; background: linear-gradient(90deg, var(--indigo-lift), var(--flame));
  transform-origin: 0 50%; transform: scaleX(var(--p, 0));
}

/* ------------------------------------------------------------------
   14. FİYAT KARTLARI
   ------------------------------------------------------------------ */
.plans__head {
  display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: flex-end;
  justify-content: space-between; margin-bottom: clamp(2rem, 4vw, 3rem);
}
.plans__head h2 { font-size: var(--step-4); max-width: 14ch; }
.plans { display: grid; gap: clamp(1rem, 1.8vw, 1.35rem); grid-template-columns: repeat(auto-fit, minmax(288px, 1fr)); }

.plan {
  position: relative;
  display: flex; flex-direction: column; gap: 1rem;
  padding: clamp(1.5rem, 2.6vw, 2.1rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: #fff;
  transform: perspective(1000px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateZ(0);
  transition: transform 0.5s var(--e-out), box-shadow 0.5s var(--e-out), border-color 0.4s var(--e-out);
  transform-style: preserve-3d;
}
.plan::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: radial-gradient(340px circle at var(--mx, 50%) var(--my, 0%), oklch(0.512 0.229 274 / 0.09), transparent 62%);
  opacity: 0; transition: opacity 0.45s var(--e-out); pointer-events: none;
}
.plan:hover { box-shadow: var(--sh-3); border-color: var(--line-2); }
.plan:hover::before { opacity: 1; }
.plan--hero {
  background: var(--ink); border-color: var(--ink);
  color: var(--on-dark-2);
}
.plan--hero h3, .plan--hero .plan__amt { color: #fff; }
.plan--hero .plan__feat li { color: oklch(0.88 0.012 271); }
.plan--hero .plan__meta { color: oklch(0.72 0.02 271); border-color: oklch(1 0 0 / 0.14); }

.plan__flag {
  position: absolute; top: -11px; right: 18px;
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.02em;
  padding: 0.3rem 0.75rem; border-radius: 999px;
  background: var(--flame-btn); color: #fff;
  font-family: var(--font-display);
  text-transform: uppercase;
}
/* Sekmeler: dokuz paketi tek listede eşit ağırlıkta göstermek yerine
   proje bazlı / aylık olarak ayırır. */
.tabs__bar {
  display: inline-flex; gap: 4px; padding: 5px; max-width: 100%;
  border-radius: 999px; background: var(--paper-3); border: 1px solid var(--line);
  margin-bottom: clamp(1.5rem, 3vw, 2.4rem); overflow-x: auto;
}
.tabs__btn {
  border: 0; cursor: pointer; white-space: nowrap; background: transparent;
  padding: 0.72rem 1.25rem; border-radius: 999px;
  font-family: var(--font-display); font-weight: 700; font-size: 0.95rem;
  color: var(--ink-3);
  transition: color 0.3s var(--e-out), background 0.3s var(--e-out);
}
.tabs__btn:hover { color: var(--ink); }
.tabs__btn.is-on { background: var(--ink); color: #fff; }
.tabs__btn:focus-visible { outline: 2px solid var(--indigo); outline-offset: 2px; }
.tabs__panel[hidden] { display: none; }
.tabs__panel.is-on { animation: tabIn 0.45s var(--e-out) both; }
@keyframes tabIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.tabs__h {
  font-family: var(--font-display); font-size: var(--step-2);
  letter-spacing: -0.03em; line-height: 1.15; max-width: 32ch;
  margin-bottom: clamp(1.1rem, 2vw, 1.7rem);
}

/* Bedelin ne olduğu her kartta yazılı: proje yatırımı / aylık çalışma bedeli */
.plan__lbl {
  font-family: var(--font-display);
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--ink-4); margin-bottom: 0.4rem;
}
/* Negatif boşluk yalnızca kart içinde geçerli: .plan'ın 1rem'lik flex
   aralığını dengeler. Kart dışında (büyüme bölümü) bedelin etiketin
   üstüne binmesine yol açıyordu. */
.plan .plan__lbl { margin-bottom: -0.55rem; }
.plan--hero .plan__lbl { color: oklch(0.78 0.02 271); }

.plan h3 { font-size: var(--step-1); letter-spacing: -0.03em; }
.plan__for { font-size: 0.88rem; color: var(--ink-3); min-height: 2.6em; }
.plan--hero .plan__for { color: oklch(0.78 0.02 271); }
.plan__amt {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.1rem, 4.5vw, 2.9rem); line-height: 1;
  letter-spacing: -0.05em; color: var(--ink);
  display: flex; align-items: baseline; gap: 0.35rem;
}
.plan__amt small { font-size: 0.95rem; font-weight: 600; letter-spacing: -0.01em; color: var(--ink-3); }
.plan--hero .plan__amt small { color: oklch(0.78 0.02 271); }
.plan__feat { list-style: none; padding: 0; display: grid; gap: 0.5rem; font-size: 0.92rem; }
.plan__feat li { display: flex; gap: 0.55rem; align-items: flex-start; color: var(--ink-2); }
.plan__feat svg { flex: none; width: 16px; height: 16px; margin-top: 4px; color: var(--green); }
.plan--hero .plan__feat svg { color: var(--green-lift); }
.plan__meta {
  margin-top: auto; padding-top: 1rem; border-top: 1px dashed var(--line);
  font-size: 0.8rem; color: var(--ink-3); line-height: 1.5;
}
/* Paket kartı butonları: dar sütunda da tek satır kalsın ve dört kartta
   aynı yüksekliği paylaşsın. Metin taşarsa hizalama bozuluyordu. */
.plan .btn {
  width: 100%;
  margin-top: auto;
  padding-inline: 0.9rem;
  font-size: 0.95rem;
  line-height: 1.25;
  min-height: 58px;
  text-align: center;
  /* Paket adları uzun; tek satıra zorlamak yerine sararız, sabit yükseklik
     dokuz kartın butonlarını aynı hizada tutar. */
  white-space: normal;
}
.plan .btn > span { white-space: nowrap; }
.plans__foot {
  margin-top: 1.6rem; display: flex; flex-wrap: wrap; gap: 1rem 2rem;
  align-items: center; justify-content: space-between;
  font-size: 0.87rem; color: var(--ink-3);
}

/* ------------------------------------------------------------------
   15. ŞEFFAFLIK / KANIT
   ------------------------------------------------------------------ */
.proof { background: var(--paper-2); }
.proof__in { display: grid; gap: clamp(2rem, 4vw, 3.5rem); grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); align-items: start; }
.proof h2 { font-size: var(--step-3); max-width: 16ch; }
.proof__note {
  margin-top: 1.3rem; padding: 1.1rem 1.3rem;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: #fff; font-size: 0.93rem; color: var(--ink-3);
}
.proof__note b { color: var(--ink); }

.specs { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.spec {
  background: #fff; padding: 1.15rem 1.3rem;
  display: grid; grid-template-columns: auto 1fr; gap: 0.95rem; align-items: start;
  transition: background 0.35s var(--e-out);
}
.spec:hover { background: var(--indigo-wash); }
.spec__ico {
  flex: none; width: 26px; height: 26px; border-radius: 50%;
  display: grid; place-items: center; margin-top: 1px;
  background: oklch(0.5 0.115 155 / 0.12); color: var(--green);
}
.spec__ico svg { width: 14px; height: 14px; }
.spec__k {
  display: block; font-weight: 700; color: var(--ink);
  font-family: var(--font-display); letter-spacing: -0.025em;
  font-size: 1.02rem; margin-bottom: 0.15rem;
}
.spec__v { display: block; color: var(--ink-3); font-size: 0.92rem; line-height: 1.5; }

/* ------------------------------------------------------------------
   16. SSS
   ------------------------------------------------------------------ */
.faq__in { display: grid; gap: clamp(2rem, 4vw, 4rem); grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr); align-items: start; }
.faq__aside h2 { font-size: var(--step-3); }
.faq__aside p { color: var(--ink-3); margin-top: 1rem; max-width: 32ch; }
.faq__aside .btn { margin-top: 1.5rem; }

.qa { border-top: 1px solid var(--line); }
.qa__q {
  width: 100%; text-align: left;
  display: flex; align-items: flex-start; gap: 1.2rem;
  padding: 1.25rem 0;
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.02rem, 1.6vw, 1.2rem); letter-spacing: -0.025em;
  color: var(--ink); line-height: 1.32;
  transition: color 0.3s var(--e-out);
}
.qa__q:hover { color: var(--indigo); }
.qa__ico {
  flex: none; margin-left: auto; width: 26px; height: 26px; margin-top: 2px;
  border-radius: 50%; border: 1.5px solid var(--line-2);
  display: grid; place-items: center; position: relative;
  transition: background 0.4s var(--e-out), border-color 0.4s var(--e-out), transform 0.5s var(--e-out);
}
.qa__ico::before, .qa__ico::after {
  content: ""; position: absolute; background: var(--ink);
  border-radius: 2px; transition: transform 0.45s var(--e-out), background 0.3s;
}
.qa__ico::before { width: 11px; height: 1.7px; }
.qa__ico::after { width: 1.7px; height: 11px; }
.qa.is-open .qa__ico { background: var(--ink); border-color: var(--ink); transform: rotate(180deg); }
.qa.is-open .qa__ico::before, .qa.is-open .qa__ico::after { background: #fff; }
.qa.is-open .qa__ico::after { transform: scaleY(0); }
/* JS yoksa tüm cevaplar açık kalır */
.qa__body { display: grid; grid-template-rows: 1fr; }
.js .qa__body {
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.55s var(--e-out);
}
.js .qa.is-open .qa__body { grid-template-rows: 1fr; }
.qa__body > div { overflow: hidden; }
.qa__body p { padding-bottom: 1.4rem; color: var(--ink-3); max-width: 62ch; }
.qa__body p + p { margin-top: -0.6rem; }

/* ------------------------------------------------------------------
   17. KAPANIŞ CTA — alev drench
   ------------------------------------------------------------------ */
.close {
  background: var(--flame);
  color: oklch(0.24 0.06 33);
  position: relative; overflow: hidden;
}
.close::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(80% 70% at 15% 110%, oklch(0.47 0.16 33 / 0.5), transparent 60%);
}
.close > * { position: relative; z-index: 1; }
.close h2 {
  color: oklch(0.2 0.06 33); font-size: var(--step-5);
  letter-spacing: -0.05em; max-width: 16ch; line-height: 0.97;
}
.close p { font-size: var(--step-1); color: oklch(0.31 0.08 33); max-width: 44ch; margin-top: 1.4rem; }
.close__act { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2.4rem; }
.close .btn--ink { --btn-bg: oklch(0.2 0.055 33); --btn-fg: #fff; }
.close .btn--ghost {
  --btn-fg: oklch(0.2 0.06 33); --btn-fill: oklch(0.2 0.055 33); --btn-hover-fg: var(--flame);
  border-color: oklch(0.24 0.06 33 / 0.4);
}
.close .btn--ghost:hover { border-color: oklch(0.2 0.055 33); }
.close__meta {
  margin-top: 2.4rem; display: flex; flex-wrap: wrap; gap: 0.6rem 2rem;
  font-size: 0.9rem; font-weight: 600; color: oklch(0.29 0.07 33);
}
.close__meta a { text-decoration-color: oklch(0.29 0.07 33 / 0.4); text-underline-offset: 3px; }

/* ------------------------------------------------------------------
   18. FOOTER
   ------------------------------------------------------------------ */
.ftr { background: var(--ink); color: var(--on-dark-2); padding-block: clamp(3.5rem, 6vw, 5.5rem) 2rem; }
.ftr__top {
  display: grid; gap: clamp(2rem, 4vw, 3rem);
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  padding-bottom: 3rem; border-bottom: 1px solid oklch(1 0 0 / 0.1);
}
.ftr .brand__img { height: 30px; }
.ftr__blurb { margin-top: 1rem; font-size: 0.94rem; max-width: 34ch; color: var(--on-dark-2); }
.ftr h4 { color: #fff; font-size: 0.92rem; margin-bottom: 1rem; letter-spacing: -0.01em; }
.ftr ul { list-style: none; padding: 0; display: grid; gap: 0.6rem; font-size: 0.92rem; }
.ftr a { text-decoration: none; color: var(--on-dark-2); transition: color 0.28s var(--e-out); }
.ftr a:hover { color: #fff; }
.ftr__bottom {
  margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.8rem 2rem;
  justify-content: space-between; font-size: 0.83rem; color: oklch(0.66 0.02 271);
}
.ftr__legal { display: flex; flex-wrap: wrap; gap: 0.6rem 1.4rem; }

/* ------------------------------------------------------------------
   19. MOBİL SABİT CTA
   ------------------------------------------------------------------ */
.dock {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: var(--z-bar);
  display: none; gap: 0.55rem;
  padding: 0.6rem 0.75rem calc(0.6rem + env(safe-area-inset-bottom));
  background: oklch(1 0 0 / 0.9);
  backdrop-filter: blur(16px) saturate(1.6);
  -webkit-backdrop-filter: blur(16px) saturate(1.6);
  border-top: 1px solid var(--line);
  transform: translateY(110%);
  transition: transform 0.55s var(--e-out);
}
.dock.is-up { transform: none; }
.dock .btn { flex: 1; min-height: 50px; font-size: 0.94rem; padding-inline: 0.8rem; }

/* ------------------------------------------------------------------
   20. İMLEÇ
   ------------------------------------------------------------------ */
/* Karışım modu YOK.
   Daha önce mix-blend-mode: difference + invert(1) kullanılıyordu; koyu bölümlerde
   (footer, süreç, kapanış) halkanın içindeki alanı ters çevirip açık gri yazıyı
   zeminle aynı renge düşürüyor, bağlantılar hover'da kayboluyordu.
   İndigo halka hem beyaz hem koyu zeminde okunur; ters çevirmeye gerek yok. */
.cursor {
  position: fixed; top: 0; left: 0; z-index: var(--z-cursor);
  width: 30px; height: 30px; margin: -15px 0 0 -15px;
  border: 1.6px solid var(--indigo); border-radius: 50%;
  background: transparent;
  pointer-events: none; opacity: 0;
  transition: opacity 0.3s, width 0.4s var(--e-out), height 0.4s var(--e-out),
              margin 0.4s var(--e-out), border-color 0.35s var(--e-out),
              border-width 0.35s var(--e-out);
}
.cursor.is-on { opacity: 0.9; }
.cursor.is-hot {
  width: 44px; height: 44px; margin: -22px 0 0 -22px;
  border-width: 2px; border-color: var(--flame);
}

/* ------------------------------------------------------------------
   21. RESPONSIVE
   ------------------------------------------------------------------ */
/* 861–1120 px: menü tam kalsın ama başlık satırı taşmasın.
   Başlık içeriği 996 px yer istiyor; bu aralıkta kabuk 848–1088 px arasında
   kalıyor ve "48 Saatte Web Sitesi" etiketiyle birlikte satır taşıyordu.
   Menüyü hamburgere düşürmek yerine yatay payları kısıyoruz. */
@media (min-width: 861px) and (max-width: 1120px) {
  .hdr__cta .btn--ghost { display: none; }
  .nav { gap: 0; }
  .nav a, .nav button { padding: 0.5rem 0.52rem; font-size: 0.875rem; }
  .hdr .btn { padding: 0.6rem 0.95rem; font-size: 0.9rem; }
}

@media (max-width: 1080px) {
  /* minmax(0,1fr): nowrap bir çocuk sütunu ekranın dışına taşıyamaz.
     Daha önce üst şerit tüm hero sütununu (H1 dahil) 484 px'e zorluyordu. */
  /* row-gap: tek sütuna düşünce sahne, güven maddelerinin hemen altına geliyor.
     .badge-time mutlak konumlu ve top: -23px ile sahnenin üstüne taşıyor;
     40px'lik aralığın çoğunu yiyip araya 17px bırakıyordu. Taşmayı telafi eder. */
  .hero__in { grid-template-columns: minmax(0, 1fr); row-gap: 4.5rem; }
  .hero__copy { min-width: 0; }
  .stage { max-width: 560px; margin-inline: auto; width: 100%; }
  .morph__body { grid-template-columns: 1fr; gap: 1.5rem; }
  .morph__list { min-height: 11.5rem; }
  .offer__in, .proof__in, .faq__in { grid-template-columns: 1fr; }
  .card-svc { grid-template-columns: 1fr; }
  .card-svc__img { min-height: 200px; order: -1; }
  .clock { max-width: 300px; }
}

@media (max-width: 900px) {
  .ftr__top { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ftr__top > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .nav, .hdr__cta .btn--ghost { display: none; }
  .burger { display: block; }
  /* Sağa iten .nav mobilde gizli; grubu bizzat sağa yaslıyoruz */
  .hdr__cta { margin-left: auto; }
  .dock { display: flex; }
  body { padding-bottom: 0; }
  .hero h1 { font-size: clamp(2.5rem, 10vw, 3.4rem); }
  .compare { aspect-ratio: 4 / 3; }
  .badge-wa { left: 0; bottom: -6%; max-width: 186px; font-size: 0.74rem; }
  .badge-time { left: 0; top: -5%; }
  .site__hero { grid-template-columns: 1fr; }
  .site__shot { aspect-ratio: 16 / 9; }
  .flow__pin { height: auto; min-height: 0; padding-block: 4rem; position: static; }
  .flow__track {
    transform: none; overflow-x: auto; width: auto;
    scroll-snap-type: x mandatory; padding-bottom: 1rem;
    scrollbar-width: none;
  }
  .flow__track::-webkit-scrollbar { display: none; }
  .flow__track .step { scroll-snap-align: center; }
  /* Parmakla kaydırılırken her kart tam okunur olmalı */
  .step { opacity: 1; transform: none; box-shadow: none; }
  .flow__rail { height: auto !important; }
  .flow__bar { display: none; }
  /* Kartlar mobilde de yapışkan kalır; sığmadığı cihazlarda JS .is-flat ekler */
  .card-svc { top: calc(56px + var(--i, 0) * 8px); min-height: 0; }
  /* Kart ekrana sığsın diye görsel sabit ve alçak tutulur */
  .card-svc__img { aspect-ratio: auto; height: 200px; min-height: 0; }
  .card-svc__txt { padding: 1.3rem 1.25rem; gap: 0.62rem; }
  /* Alt sabit çubuk içeriği örtmesin */
  .ftr { padding-bottom: 5.5rem; }
  .morph__pin { padding-bottom: 5.5rem; }
  .compare { max-height: min(44vh, 360px); }
  .spec { padding: 1rem 1.1rem; }
}

@media (max-width: 860px) {
  /* Dokunma hedefleri: bağımsız satırdaki metin bağlantıları da rahat basılabilsin */
  .linkish { padding-block: 0.55rem; }
  .brand { padding-block: 0.35rem; }
  .close__meta a { display: inline-block; padding-block: 0.5rem; }
}

@media (max-width: 640px) {
  .brand__img { height: 22px; }

  /* Mobilde alt sabit çubuk zaten WhatsApp sunuyor; başlıkta ikon yeterli */
  .hdr__cta .btn--wa span { display: none; }
  .hdr__cta .btn--wa { min-width: 44px; padding: 0.6rem 0.85rem; }
}

@media (max-width: 700px) {
  /* Önce/Sonra telefonda da kaydırmaya bağlı kalsın diye sıkılır. Gerçek cihazda
     100svh, tarayıcı çubuğu açıkken ~694px; ekrana sığmazsa JS .is-flat ekleyip
     bölümü düz akışa bırakıyor. Bu blok temel .morph tanımlarından SONRA gelmeli,
     aksi hâlde aynı özgüllükte olduğu için eziliyor. */
  .morph__pin { padding-block: 1rem; }
  .morph__head { margin-bottom: 1.05rem; }
  .morph__head h2 { font-size: clamp(1.35rem, 0.9rem + 1.9vw, 1.75rem); }
  .morph__body { gap: 0.85rem; }
  .morph__no { font-size: 0.92rem; margin-bottom: 0.5rem; }
  .morph__yes { font-size: clamp(1.1rem, 0.8rem + 1.6vw, 1.42rem); }
  .morph__prog { margin-top: 0.8rem; }
  /* Tarayıcı maketi telefonda 16/9: hem bir tarayıcı penceresi için daha
     doğal, hem de pinin ekrana sığmasını sağlayan 45 px'i kazandırıyor. */
  .compare { aspect-ratio: 16 / 9; max-height: min(36vh, 400px); }

  /* Üç güven maddesi mobilde de yan yana kalsın: eşit üç sütun.
     İkon metnin üstünde durur; böylece sütun genişliğinin tamamı metne kalır
     ve en uzun ifade ("profesyonel") 320px'te bile taşmaz. */
  .hero__trust {
    display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem 0.6rem; font-size: 0.75rem; line-height: 1.32;
  }
  /* En dar sütun 90px; uzun bir kelime ("fiyatlandırma") yazı tipi render
     farkıyla sığmazsa sütunu taşırmak yerine kırılsın. */
  .hero__trust li {
    flex-direction: column; align-items: flex-start; gap: 0.32rem;
    min-width: 0; overflow-wrap: break-word;
  }
  /* Dört maddede 3'lü ızgara tek maddeyi alt satıra düşürürdü */
  .hero__trust--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero__trust svg { width: 14px; height: 14px; }
}

@media (max-width: 560px) {
  :root { --shell: min(100% - 1.75rem, 78rem); }
  .morph__pin { min-height: auto; padding-block: 3.5rem; }
  .promo__cta { display: none; }
  .close__act .btn, .hero__act .btn, .offer__act .btn { width: 100%; }
}

/* Dokunmatikte imleç/hover yok */
@media (hover: none), (pointer: coarse) {
  .cursor { display: none; }
}

/* ------------------------------------------------------------------
   22. AZALTILMIŞ HAREKET
   ------------------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .js [data-reveal] { opacity: 1 !important; transform: none !important; filter: none !important; clip-path: none !important; }
  .split-line > i { transform: none !important; }
  .morph__item { grid-area: auto; opacity: 1; transform: none; filter: none; }
  .morph__list { min-height: 0; display: grid; gap: 1.75rem; }
  .morph__arw, .morph__prog { display: none; }
  .morph__pin { position: static; height: auto; padding-block: 4rem; }
  .morph__rail { height: auto !important; }
  .mock-good { clip-path: none; }
  .compare__handle { display: none; }
  .flow__pin { position: static; height: auto; padding-block: 4rem; }
  .flow__track { transform: none; overflow-x: auto; }
  .step { opacity: 1; transform: none; box-shadow: none; }
  .flow__rail { height: auto !important; }
  .card-svc { position: static; transform: none; }
  .strip__track { transform: none !important; }
  .cursor { display: none; }
  .offer__list li { opacity: 1; transform: none; }
  .hero__glow { animation: none; }
}

/* Yazdırma */
@media print {
  .hdr, .dock, .promo, .cursor, .strip { display: none; }
  body { color: #000; }
}

/* ==================================================================
   23. ALT SAYFA BİLEŞENLERİ
   ================================================================== */

/* --- Alt sayfa girişi --- */
.phero { position: relative; overflow: hidden; padding-block: clamp(2.5rem, 5vw, 4.5rem) clamp(3rem, 6vw, 5.5rem); }
.phero__bg { position: absolute; inset: 0; pointer-events: none; }
.phero__bg span { position: absolute; border-radius: 50%; filter: blur(74px); opacity: 0.42; }
.phero__bg span:first-child {
  width: 38vw; height: 38vw; max-width: 520px; max-height: 520px; left: -6vw; top: -12vw;
  background: radial-gradient(circle, oklch(0.512 0.229 274 / 0.35), transparent 66%);
  animation: drift-a 21s ease-in-out infinite alternate;
}
.phero__bg span:last-child {
  width: 30vw; height: 30vw; max-width: 420px; max-height: 420px; right: -4vw; bottom: -12vw;
  background: radial-gradient(circle, oklch(0.712 0.176 34 / 0.3), transparent 66%);
  animation: drift-b 25s ease-in-out infinite alternate;
}
.phero__in {
  position: relative; z-index: 1;
  display: grid; gap: clamp(2rem, 4vw, 3.5rem);
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: center;
}
.phero h1 { font-size: var(--step-4); letter-spacing: -0.042em; margin: 1rem 0 1.2rem; }
.phero__art {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--sh-3); aspect-ratio: 4 / 3; background: var(--paper-2);
}
.phero__art img { width: 100%; height: 100%; object-fit: cover; }
.phero--solo .phero__in { grid-template-columns: 1fr; max-width: 48rem; }

/* --- Tablo --- */
.tbl-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; }
.tbl { width: 100%; border-collapse: collapse; min-width: 720px; font-size: 0.94rem; }
.tbl th, .tbl td { padding: 1rem 1.2rem; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
.tbl thead th {
  font-family: var(--font-display); font-weight: 800; color: var(--ink);
  font-size: 0.92rem; letter-spacing: -0.02em; background: var(--paper-2);
}
.tbl tbody tr { transition: background 0.3s var(--e-out); }
.tbl tbody tr:hover { background: var(--indigo-wash); }
.tbl tbody tr:last-child td { border-bottom: 0; }
.tbl td:first-child { font-weight: 700; color: var(--ink); font-family: var(--font-display); letter-spacing: -0.02em; }
.tbl .price { font-family: var(--font-display); font-weight: 800; color: var(--indigo); white-space: nowrap; font-size: 1.05rem; }

/* --- Izgaralar ve bloklar --- */
.grid-2 { display: grid; gap: clamp(1.2rem, 2.5vw, 2.2rem); grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { display: grid; gap: clamp(1rem, 2vw, 1.4rem); grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }

.note { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; padding: clamp(1.1rem, 2vw, 1.6rem); }
.note h3 { font-size: var(--step-1); margin-bottom: 0.6rem; }
.note p { color: var(--ink-3); }
.note p + p { margin-top: 0.7rem; }
.note--warn { background: var(--flame-wash); border-color: oklch(0.86 0.075 40); }
.note--ok { background: oklch(0.972 0.028 155); border-color: oklch(0.87 0.06 155); }

.ticks { list-style: none; padding: 0; display: grid; gap: 0.6rem; }
.ticks li { display: flex; gap: 0.65rem; align-items: flex-start; color: var(--ink-2); }
.ticks svg { flex: none; width: 17px; height: 17px; margin-top: 4px; color: var(--green); }
.ticks--no svg { color: var(--ink-4); }
.inverse .ticks li { color: var(--on-dark-2); }
.inverse .ticks svg { color: var(--green-lift); }

.sec-head { display: grid; gap: 1rem; margin-bottom: clamp(1.8rem, 3.5vw, 3rem); max-width: 46rem; }
.sec-head h2 { font-size: var(--step-3); }
.sec-head p { color: var(--ink-3); font-size: var(--step-1); line-height: 1.5; }
.inverse .sec-head p { color: var(--on-dark-2); }

/* --- Gün gün zaman çizelgesi (scroll scrub) --- */
.tl__rail { position: relative; }
.tl__pin { position: sticky; top: 0; height: 100svh; display: flex; flex-direction: column; justify-content: center; overflow: hidden; }
.tl__head { margin-bottom: clamp(1.4rem, 3vh, 2.4rem); }
.tl__head h2 { font-size: clamp(1.6rem, 1rem + 2.2vh, 2.6rem); color: #fff; max-width: 20ch; }
.tl__meter { position: relative; height: 4px; border-radius: 4px; background: oklch(1 0 0 / 0.14); margin-bottom: clamp(1.2rem, 3vh, 2.2rem); }
.tl__meter i {
  position: absolute; inset: 0; border-radius: 4px; transform-origin: 0 50%;
  transform: scaleX(var(--p, 0));
  background: linear-gradient(90deg, var(--indigo-lift), var(--flame));
}
.tl__meter b {
  position: absolute; top: -36px; left: calc(var(--p, 0) * 100%);
  transform: translateX(-50%);
  font-family: var(--font-display); font-weight: 800; font-size: 0.82rem;
  color: #fff; background: var(--ink-2); border: 1px solid oklch(1 0 0 / 0.18);
  padding: 0.24rem 0.62rem; border-radius: 999px; white-space: nowrap;
}
.tl__steps { display: grid; }
.tl__step {
  display: grid; grid-template-columns: 96px 1fr; gap: clamp(0.8rem, 2vw, 1.6rem);
  padding: clamp(0.65rem, 1.4vh, 1.05rem) 0;
  border-top: 1px solid oklch(1 0 0 / 0.1);
  opacity: 0.3; transition: opacity 0.45s var(--e-out), transform 0.5s var(--e-out);
  transform: translateY(6px);
}
.tl__step.is-on { opacity: 1; transform: none; }
.tl__when { font-family: var(--font-display); font-weight: 800; font-size: 0.86rem; color: var(--flame); letter-spacing: -0.02em; padding-top: 2px; }
.tl__what h3 { color: #fff; font-size: clamp(1rem, 0.7rem + 0.8vh, 1.28rem); margin-bottom: 0.25rem; }
.tl__what p { color: var(--on-dark-2); font-size: 0.92rem; }

/* --- Form --- */
.form-wrap { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.4rem, 3vw, 2.4rem); box-shadow: var(--sh-2); }
.fld { display: grid; gap: 0.4rem; margin-bottom: 1.1rem; }
.fld > label { font-weight: 700; font-size: 0.92rem; color: var(--ink); }
.fld > label span { color: var(--flame-btn); }
.fld input, .fld select, .fld textarea {
  width: 100%; padding: 0.85rem 1rem; min-height: 50px;
  border: 1.5px solid var(--line-2); border-radius: 12px;
  background: var(--paper-2); color: var(--ink);
  transition: border-color 0.3s var(--e-out), background 0.3s var(--e-out), box-shadow 0.3s var(--e-out);
}
.fld textarea { min-height: 120px; resize: vertical; }
.fld input::placeholder, .fld textarea::placeholder { color: var(--ink-3); opacity: 1; }
.fld input:focus, .fld select:focus, .fld textarea:focus {
  outline: none; background: #fff; border-color: var(--indigo);
  box-shadow: 0 0 0 4px oklch(0.512 0.229 274 / 0.13);
}
.fld [aria-invalid="true"] { border-color: var(--flame-btn); }
.fld .err { font-size: 0.83rem; color: var(--flame-btn); font-weight: 600; min-height: 1.1em; }
.fld--row { display: grid; gap: 1.1rem; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); margin-bottom: 0; }
/* Bal küpü: gerçek kullanıcıya görünmez, ekran okuyucuya okunmaz, klavyeyle
   odaklanılamaz. hidden özniteliği üçünü birden sağlar; konumlandırma yalnızca
   hidden'ı desteklemeyen eski tarayıcılar için yedek. */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.hp[hidden] { display: none; }

/* İletişim sayfasındaki dört maddelik güven listesi 3'lü ızgaraya sığmaz */
.form-sec {
  display: grid; gap: clamp(1.6rem, 3vw, 2.8rem);
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: start;
}
@media (max-width: 900px) { .form-sec { grid-template-columns: minmax(0, 1fr); } }
.consent { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.86rem; color: var(--ink-3); margin: 0.4rem 0 1.3rem; }
.consent input { width: 20px; height: 20px; min-height: 0; flex: none; margin-top: 2px; accent-color: var(--indigo); }

/* --- Uzun metin / yasal --- */
.legal { max-width: 70ch; }
.legal h2 { font-size: var(--step-2); margin: 2.4rem 0 0.8rem; }
.legal h3 { font-size: var(--step-1); margin: 1.8rem 0 0.6rem; }
.legal p, .legal li { color: var(--ink-2); }
.legal p + p { margin-top: 0.9rem; }
.legal ul, .legal ol { padding-left: 1.3rem; display: grid; gap: 0.5rem; margin: 0.9rem 0; }
.legal a { color: var(--indigo); }

/* --- Değer kartları --- */
.value { display: grid; gap: 0.7rem; padding: clamp(1.2rem, 2.2vw, 1.8rem); border-radius: var(--radius); border: 1px solid var(--line); background: #fff; align-content: start; }
.value b { font-family: var(--font-display); font-size: var(--step-1); letter-spacing: -0.03em; color: var(--ink); }
.value p { color: var(--ink-3); font-size: 0.95rem; }
.value i {
  width: 36px; height: 36px; border-radius: 11px; display: grid; place-items: center;
  background: var(--indigo-wash); color: var(--indigo); font-style: normal; font-weight: 800;
  font-family: var(--font-display); font-size: 0.95rem;
}

@media (max-width: 1080px) {
  .phero__in { grid-template-columns: 1fr; }
  .phero__art { max-width: 560px; }
}
@media (max-width: 860px) {
  .tl__pin { position: static; height: auto; padding-block: 3.5rem; }
  .tl__rail { height: auto !important; }
  .tl__step { opacity: 1; transform: none; grid-template-columns: 78px 1fr; }
  .tl__meter b { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .tl__pin { position: static; height: auto; }
  .tl__rail { height: auto !important; }
  .tl__step { opacity: 1; transform: none; }
  .phero__bg span { animation: none; }
}

/* Form sunucu tarafı uyarısı */
.form-uyari {
  display: block; margin-bottom: 1.2rem;
  padding: 0.85rem 1.05rem; border-radius: 12px;
  background: var(--flame-wash); border: 1px solid oklch(0.82 0.09 40);
  color: oklch(0.42 0.13 33); font-size: 0.92rem; font-weight: 600;
}

/* ==================================================================
   24. GEO / CEVAP-ÖNCE BLOĞU, KIRINTI YOLU, İLGİLİ SAYFALAR
   ================================================================== */

/* --- Sayfanın hedef sorusuna doğrudan cevap (40–80 kelime) ---
   Hem ziyaretçinin ilk itirazını karşılar hem de yapay zekâ aramalarının
   alıntılayabileceği net bir pasaj sağlar. */
.answer {
  position: relative;
  background: var(--paper-2);
  border-block: 1px solid var(--line);
  overflow: hidden;
}
/* Sol üstten sızan çok hafif marka ışığı — bölümü sayfadan ayırır */
.answer::before {
  content: ""; position: absolute; inset: -40% 55% 20% -10%;
  background: radial-gradient(closest-side, oklch(0.512 0.229 274 / 0.09), transparent 70%);
  pointer-events: none;
}
.answer__in {
  position: relative;
  display: grid; gap: clamp(1.4rem, 4vw, 4rem);
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: start;
  padding-block: clamp(2.4rem, 5vw, 4rem);
}

.answer__side { position: relative; padding-left: 1.4rem; }
/* Üç noktalı marka işareti: soru sütununu sabitler */
.answer__side::before {
  content: ""; position: absolute; left: 0; top: 0.5rem;
  width: 6px; height: 6px; border-radius: 50%; background: var(--indigo);
  box-shadow: 0 11px 0 -0.5px oklch(0.512 0.229 274 / 0.5),
              0 21px 0 -1.5px oklch(0.512 0.229 274 / 0.22);
}
.answer__tag {
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.8rem; letter-spacing: 0.01em; color: var(--indigo);
  margin-bottom: 0.55rem;
}
.answer__q {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.28rem, 1.05rem + 1.05vw, 1.85rem);
  letter-spacing: -0.035em; line-height: 1.2;
  color: var(--ink); max-width: 20ch; text-wrap: balance;
}

.answer__body { display: grid; gap: clamp(1.3rem, 2.6vw, 1.9rem); }
.answer__a {
  font-size: clamp(1.02rem, 0.98rem + 0.28vw, 1.16rem);
  line-height: 1.65; color: var(--ink-2); max-width: 66ch;
}
.answer__a b { color: var(--ink); font-weight: 700; }

/* Destekleyici veriler: değer üstte, etiket altta — hizalama şaşmaz */
.answer__facts {
  display: grid; margin: 0;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  border: 1px solid var(--line); border-radius: var(--radius);
  background: #fff; overflow: hidden;
}
.fact {
  padding: clamp(0.95rem, 2vw, 1.25rem) clamp(1rem, 2vw, 1.35rem);
  border-left: 1px solid var(--line);
  display: grid; gap: 0.2rem; align-content: start;
}
.fact:first-child { border-left: 0; }
.answer__facts dt {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.12rem, 1rem + 0.5vw, 1.4rem);
  letter-spacing: -0.035em; color: var(--ink);
  line-height: 1.15; font-variant-numeric: tabular-nums;
}
.answer__facts dd {
  margin: 0; font-size: 0.86rem; line-height: 1.4; color: var(--ink-3);
  text-wrap: pretty;
}

/* --- Kırıntı yolu --- */
.crumbs { padding-block: 0.9rem 0; }
.crumbs ol {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.35rem 0.5rem;
  font-size: 0.83rem; color: var(--ink-3);
}
.crumbs a { color: var(--ink-3); text-decoration: none; transition: color 0.25s var(--e-out); }
.crumbs a:hover { color: var(--indigo); text-decoration: underline; text-underline-offset: 3px; }
.crumbs li:not(:last-child)::after {
  content: "/"; margin-left: 0.5rem; color: var(--line-2);
}
.crumbs [aria-current="page"] { color: var(--ink-2); font-weight: 600; }

/* --- İlgili sayfalar (konu kümesi bağlantıları) --- */
.related { border-top: 1px solid var(--line); }
.related__head { display: grid; gap: 0.7rem; margin-bottom: clamp(1.4rem, 3vw, 2.2rem); }
.related__head h2 { font-size: var(--step-2); }
.related__head p { color: var(--ink-3); max-width: 60ch; }
.related__grid { display: grid; gap: clamp(0.9rem, 1.8vw, 1.3rem); grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.rel {
  display: grid; gap: 0.5rem; align-content: start;
  padding: clamp(1.1rem, 2vw, 1.5rem);
  border: 1px solid var(--line); border-radius: var(--radius);
  background: #fff; text-decoration: none;
  transition: transform 0.45s var(--e-out), box-shadow 0.45s var(--e-out), border-color 0.35s var(--e-out);
}
.rel:hover { transform: translateY(-3px); box-shadow: var(--sh-2); border-color: var(--line-2); }
.rel b {
  font-family: var(--font-display); font-weight: 700; letter-spacing: -0.03em;
  font-size: var(--step-1); color: var(--ink);
  display: flex; align-items: center; gap: 0.5rem;
}
.rel b svg { flex: none; color: var(--indigo); transition: transform 0.4s var(--e-out); }
.rel:hover b svg { transform: translateX(4px); }
.rel span { color: var(--ink-3); font-size: 0.93rem; line-height: 1.5; }

/* --- Güncelleme damgası --- */
.updated {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem; color: var(--ink-3); margin-top: 1.6rem;
}
.updated::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
}

/* --- 404 --- */
.notfound { min-height: 62svh; display: grid; place-items: center; text-align: center; }
.notfound__in { max-width: 46rem; display: grid; gap: 1.2rem; justify-items: center; }
.notfound__code {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(4rem, 14vw, 8rem); line-height: 0.9;
  letter-spacing: -0.06em; color: var(--indigo);
}
.notfound h1 { font-size: var(--step-3); }
.notfound p { color: var(--ink-3); max-width: 50ch; }
.notfound__links { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin-top: 0.6rem; }

@media (max-width: 900px) {
  .answer__in { grid-template-columns: 1fr; gap: 1.4rem; }
  .answer__q { max-width: 26ch; }
}
@media (max-width: 560px) {
  /* Dar ekranda sütun çizgisi yerine satır çizgisi doğru ayırıcıdır */
  .answer__facts { grid-template-columns: 1fr; }
  .fact { border-left: 0; border-top: 1px solid var(--line); }
  .fact:first-child { border-top: 0; }
}

/* Blog kartı üst bilgisi */
.blog__meta {
  display: block; font-family: var(--font-display); font-weight: 700;
  font-size: 0.78rem; color: var(--indigo); margin-bottom: 0.15rem;
}
