/* ============================================================
   STIRPIO v4 — Squarespace okulu (17 Tem 2026)
   Kaynak desen: squarespace.com EN — siyah hero + dev tipografik
   vaat + kenardan taşan dev örnek-kart carousel'i; alt bölümler
   aydınlık; hareket bütçesi = carousel + dönen kelime, başka yok.
   Pentagram dili (serif logotip, kaybolan nav, beyaz galeri) TERK.
   Sayfalar: / (hero+carousel) · /preise/ · /ueber/ · /kontakt/
   ============================================================ */

:root {
  /* Aydınlık yüzey merdiveni (5 Ağu): üç beyaz birbiriyle KAVGA ediyordu —
     soğuk #fbfbfa zemin + sıcak #f7f6f1 form bölümü + saf #fff kart.
     Artık üçü de aynı sıcak-nötr aileden ve aralarında eşit adım var:
       --bg (sayfa)  →  --surface-2 (ikinci zemin, form bölümü)  →  --surface (kart)
     Kural: kart DAİMA kendi zemininden bir basamak açık olur. */
  --bg: #faf9f5;
  --surface: #ffffff;
  --surface-2: #f2f0e9;
  --surface-3: #e6e3d9;          /* mini görsellerin dolgu tonu */
  --ink: #141413;
  --muted: #6c6c66;
  --line: rgba(20, 20, 19, 0.12);
  --line-strong: rgba(20, 20, 19, 0.22);

  /* koyu sahne (nav + hero + footer) — Squarespace siyahı */
  --dark: #0c0c0b;
  --dark-2: #161615;
  --dark-ink: #f5f4f1;
  --dark-muted: #a5a29b;
  --dark-line: rgba(245, 244, 241, 0.16);

  --accent: #d6491f;

  --font-text: "Instrument Sans", system-ui, sans-serif;

  /* 5 Ağu: bir basamak büyütüldü — telefonda ve masaüstünde metinler küçük kalıyordu.
     Site mobil öncelikli: alt sınırlar (clamp'in ilk değeri) telefonda okunan boyuttur. */
  --fs-xs: clamp(0.8rem, 0.78rem + 0.1vw, 0.875rem);
  --fs-sm: clamp(0.94rem, 0.9rem + 0.18vw, 1.05rem);
  --fs-base: clamp(1rem, 0.96rem + 0.2vw, 1.12rem);
  --fs-md: clamp(1.28rem, 1.15rem + 0.55vw, 1.6rem);
  --fs-lg: clamp(1.6rem, 1.3rem + 1.5vw, 2.5rem);
  --fs-xl: clamp(2.1rem, 1.6rem + 2.6vw, 3.9rem);
  --fs-hero: clamp(2.6rem, 1.8rem + 4.6vw, 5.4rem);

  --sp-2xs: 0.5rem;
  --sp-xs: 0.75rem;
  --sp-sm: 1rem;
  --sp-md: 1.5rem;
  --sp-lg: 2.5rem;
  --sp-xl: 4rem;
  --sp-2xl: 6.5rem;

  --pad-x: clamp(1.1rem, 3.5vw, 2.6rem);
  --nav-h: 3.8rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

/* ---------- BÖLÜM = EKRAN (5 Ağu) ----------
   Şikâyet: bir bölüme bakarken bir sonrakinin yarısı görünüyordu.
   Çözüm: her ana bölüm en az bir ekran yüksekliğinde ve içeriği dikeyde ortalı;
   yakınlık (proximity) snap'i kaydırmayı bölüm başına oturtur — ZORUNLU snap değil,
   çünkü içeriği ekrandan uzun bölümler (mobilde paket listesi) serbest kaymalı. */
html { scroll-snap-type: y proximity; scroll-padding-top: var(--nav-h); }
@media (prefers-reduced-motion: reduce) { html { scroll-snap-type: none; } }
.hero-sq, .funnel, .pack, .how { scroll-snap-align: start; }
.funnel, .pack, .how {
  min-height: calc(100svh - var(--nav-h));
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* HUNİ = tek ekran: üstte "talep nerede kayboluyor", altında onu kapatan formun kendisi.
   İkisi ayrı ekran olunca sayfa boşluğa boğuluyordu (5 Ağu geri bildirimi). */
.funnel {
  background: var(--surface-2);
  border-bottom: 1px solid var(--line);
  padding: clamp(1.4rem, 4vh, 3rem) var(--pad-x);
}
/* Masaüstünde YAN YANA: solda dört kayıp noktası, sağda onları kapatan form.
   Üst üsteyken hem sıkışıyor hem yazılar küçülmek zorunda kalıyordu. */
.funnel__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.8rem, 5vw, 4.5rem);
  align-items: center;
  max-width: 78rem;
  margin-inline: auto;
  width: 100%;
}
@media (max-width: 940px) { .funnel__grid { grid-template-columns: 1fr; gap: var(--sp-lg); } }
.funnel > .funnel__grid > .loss, .funnel > .funnel__grid > .lead-demo {
  padding: 0; background: none; border: 0; min-height: 0; display: block;
}
/* Dokunmatikte tarayıcı çubuğu açılıp kapanırken svh zıplıyor → snap kapalı.
   Ayrıca yapışkan [Ara|WhatsApp] barı ekranın altını kapatıyor → bölüm yüksekliğinden düşülür,
   yoksa her bölümün son satırı barın altında kalıyor. */
@media (max-width: 760px) { html { scroll-snap-type: none; } }
/* NOT: mobil bölüm yüksekliği .hero-sq tanımından SONRA gelmek zorunda (aynı özgüllük,
   sonraki kural kazanır) → dosyanın sonundaki "MOBİL BÖLÜM YÜKSEKLİĞİ" bloğunda. */

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-text);
  font-size: var(--fs-base);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  /* Kısa sayfalarda footer aşağıya yapışsın — altında beyaz boşluk kalmasın */
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}
body > main { flex: 1 0 auto; }
img { max-width: 100%; display: block; }
a { color: inherit; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* Reveal gizlemesi YALNIZ html.js varken (1 Eyl): JS çalışmazsa içerik animasyonsuz ama görünür.
   Ders: kurucu bandı, JS'i engellenen bir telefonda tamamen boş göründü — içerik asla JS'e rehin bırakılmaz. */
/* 2 Eyl: aynı bant bir iPhone Safari'de JS açıkken de boş kaldı (IntersectionObserver tetiklenmedi; neden cihaza göre değişebilir).
   Güvence CSS'e taşındı: JS/IO ne yaparsa yapsın 1,8 sn sonra her .reveal kendiliğinden görünür (animation forwards).
   Görünür alandakiler yine IO ile animasyonlu açılır; alttakiler en geç 1,8 sn'de sessizce görünür olur. */
.js .reveal { opacity: 0; transform: translateY(0.9rem); transition: opacity 0.55s ease, transform 0.55s ease; animation: reveal-safety 0.4s ease 1.8s forwards; }
.js .reveal.is-visible { opacity: 1; transform: none; animation: none; }
@keyframes reveal-safety { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; transition: none; animation: none; } }

/* ---------- NAV: sabit siyah bant (Squarespace) ---------- */
.site-head {
  position: sticky;
  top: 0;
  z-index: 20;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-md);
  padding-inline: var(--pad-x);
  background: var(--dark);
  color: var(--dark-ink);
  transition: transform 0.3s ease;
}
.site-head.is-hidden { transform: translateY(-100%); }
@media (prefers-reduced-motion: reduce) { .site-head { transition: none; } }
.site-head__mark {
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-decoration: none;
}
.site-head__nav {
  display: flex;
  align-items: baseline;
  gap: clamp(0.9rem, 2vw, 1.8rem);
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.site-head__nav a { color: var(--dark-muted); text-decoration: none; padding-block: 0.4rem; }
.site-head__nav a:hover { color: var(--dark-ink); }
.site-head__nav a[aria-current="page"] { color: var(--dark-ink); border-bottom: 1px solid var(--accent); }
.site-head__meta { color: var(--dark-muted); white-space: nowrap; letter-spacing: 0.1em; }
.site-head__meta b { font-weight: 500; color: var(--dark-ink); font-variant-numeric: tabular-nums; }
.site-head__lang { white-space: nowrap; border-left: 1px solid var(--dark-line); padding-left: clamp(0.9rem, 2vw, 1.8rem); }
.site-head__lang a { color: var(--dark-muted); text-decoration: none; }
.site-head__lang strong { color: var(--dark-ink); font-weight: 600; }
@media (max-width: 760px) { .site-head__meta { display: none; } }
@media (max-width: 640px) {
  .site-head { padding-inline: 0.9rem; gap: 0.6rem; }
  .site-head__mark { letter-spacing: 0.18em; font-size: 0.9rem; }
  .site-head__nav { gap: 0.55rem; }
  .site-head__nav a { letter-spacing: 0.02em; }
  .site-head__lang { padding-left: 0.55rem; }
}
/* Dar ekranda menü ikinci satıra iner (28 Tem: TR menüsü 390px'te 55px taşıyordu —
   TR sözcükleri DE'den uzun; tek satır hiçbir dilde 520px altına sığmıyor) */
@media (max-width: 520px) {
  .site-head { flex-wrap: wrap; height: auto; padding-block: 0.6rem; row-gap: 0.35rem; }
  .site-head__nav { flex-basis: 100%; flex-wrap: wrap; row-gap: 0.35rem; }
}

/* Bölüm menüsü (1 Eyl): masaüstünde satır içi bağlantılar, mobilde hamburger paneli.
   Eski .site-head__nav kuralları hukuk sayfaları için duruyor. */
.site-head__links {
  display: flex; align-items: baseline; gap: clamp(0.9rem, 2vw, 1.7rem);
  font-size: var(--fs-xs); letter-spacing: 0.08em; text-transform: uppercase;
}
.site-head__links a { color: var(--dark-muted); text-decoration: none; padding-block: 0.4rem; }
.site-head__links a:hover { color: var(--dark-ink); }
.site-head__menu-cta { display: none; }
.site-head__right { display: flex; align-items: center; gap: 0.7rem; }
.site-head__burger { display: none; }
/* Üst CTA: hero ekrandayken gizli (JS .has-cta ekler), hukuk sayfalarında data-head-cta yok → hep görünür */
.site-head__cta[data-head-cta] { opacity: 0; pointer-events: none; transition: opacity 0.25s ease; }
.site-head.has-cta .site-head__cta[data-head-cta] { opacity: 1; pointer-events: auto; }
@media (prefers-reduced-motion: reduce) { .site-head__cta[data-head-cta] { transition: none; } }
@media (max-width: 760px) {
  /* Mobil: CTA işini alttaki yüzen düğme yapıyor; üstte yalnız marka + Menu.
     .site-head__right öneki ŞART: tek sınıf olursa sonra gelen .btn{display:inline-flex} eziyor. */
  .site-head__right .site-head__cta { display: none; }
  .site-head__burger {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: none; border: 1px solid var(--dark-line); border-radius: 999px;
    color: var(--dark-ink); font: inherit; font-size: var(--fs-xs); font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase; padding: 0.45rem 0.9rem; cursor: pointer;
  }
  .site-head__burger span { width: 1rem; height: 2px; background: currentColor; position: relative; }
  .site-head__burger span::before, .site-head__burger span::after {
    content: ""; position: absolute; left: 0; width: 1rem; height: 2px; background: currentColor;
  }
  .site-head__burger span::before { top: -5px; }
  .site-head__burger span::after { top: 5px; }
  .site-head__links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--dark); border-bottom: 1px solid var(--dark-line);
    padding: 0.3rem 0.9rem 0.9rem; flex-direction: column; align-items: stretch; gap: 0;
  }
  .site-head.menu-open .site-head__links { display: flex; }
  .site-head__links a { padding: 0.85rem 0; font-size: var(--fs-sm); color: var(--dark-ink); border-bottom: 1px solid var(--dark-line); }
  .site-head__links a:last-child { border-bottom: 0; }
  .site-head__menu-cta { display: block; color: var(--accent) !important; font-weight: 600; }
}

/* Booking formuna gelişte vurgu: menü/CTA #call'a atlayınca kart bir kez yanıp söner */
@keyframes call-flash {
  0% { box-shadow: 0 0 0 3px var(--accent); }
  100% { box-shadow: 0 0 0 12px rgba(214, 73, 31, 0); }
}
#call:target .ld-card, .ld-card.is-flash { animation: call-flash 1.4s ease-out 1; }
@media (prefers-reduced-motion: reduce) { #call:target .ld-card, .ld-card.is-flash { animation: none; } }

/* ---------- BUTONLAR ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.82rem 1.5rem;
  background: var(--ink);
  color: var(--bg);
  font-weight: 600;
  font-size: var(--fs-sm);
  text-decoration: none;
  border-radius: 2px;
}
.btn:hover { background: var(--accent); color: #fff; }
.btn--ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn--ghost:hover { background: transparent; color: var(--accent); border-color: var(--accent); }
/* koyu zemin varyantları (hero) */
.btn--light { background: var(--dark-ink); color: var(--dark); }
.btn--light:hover { background: var(--accent); color: #fff; }
.btn--ghost-dark { background: transparent; color: var(--dark-ink); border: 1px solid var(--dark-line); }
.btn--ghost-dark:hover { color: var(--accent); border-color: var(--accent); background: transparent; }

/* ---------- HERO: siyah sahne + dev başlık + carousel ---------- */
.hero-sq {
  background: var(--dark);
  color: var(--dark-ink);
  /* 5 Ağu: TAM ekran. Eski %58'lik hero, altındaki formun yarısını ekrana sokuyordu —
     iki bölüm birbirinin üstüne biniyordu. Artık hero bir ekran, form bir ekran. */
  min-height: calc(100svh - var(--nav-h));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: clamp(1.6rem, 4vh, 3rem);
  overflow: hidden;
}
.hero-sq__head { text-align: center; padding-inline: var(--pad-x); }
.hero-sq__title {
  font-size: var(--fs-hero);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.04;
  margin: 0;
  text-wrap: balance;
}
.hero-sq__title b { font-weight: 500; color: var(--accent); }
.hero-sq__promise {
  color: var(--dark-muted);
  font-size: var(--fs-md);
  margin: var(--sp-sm) auto 0;
  max-width: 44ch;
  text-wrap: balance;
}
.hero-sq__ctas {
  display: flex;
  justify-content: center;
  gap: var(--sp-sm);
  flex-wrap: wrap;
  margin-top: var(--sp-md);
}

/* ---------- AÇILIŞ KOREOGRAFİSİ (18 Tem kararı): "park eden hero" ----------
   Oturum başına BİR KEZ (sessionStorage; <head> inline script html'e .intro-play ekler,
   yalnız ilk ziyaret + reduced-motion kapalıyken + sayfa en üstteyken).
   Akış: boş siyah sahnede ortada %18 büyük başlık (~0.45s) → küçülerek yerine park eder
   (~0.6s, FLIP transform'u JS ölçer) → vaat → butonlar → nav → carousel alttan kayar.
   Toplam ~1.6s. JS çökerse emniyet: 2.6s sonra her şey kendiliğinden görünür. */
html.intro-play body { background: var(--dark); } /* boş sahne tam siyah (nav şeridi beyaz sızmasın) */
html.intro-play .site-head { opacity: 0; transition: opacity 0.45s ease; }
html.intro-play .hero-sq__promise,
html.intro-play .hero-sq__ctas { opacity: 0; transform: translateY(0.8rem); transition: opacity 0.45s ease, transform 0.5s cubic-bezier(0.22, 0.7, 0.3, 1); }
html.intro-play .is-in { opacity: 1 !important; transform: none !important; }
html.intro-play .hero-sq__title { will-change: transform; }
html.intro-play .hero-sq__title.is-parking { transition: transform 0.62s cubic-bezier(0.3, 0.7, 0.25, 1); }
/* JS'siz emniyet ağı: koreografi hiç koşmazsa 2.6s'de zorla görünür yap */
@keyframes intro-force { to { opacity: 1; transform: none; } }
html.intro-play .site-head,
html.intro-play .hero-sq__promise,
html.intro-play .hero-sq__ctas { animation: intro-force 0.4s ease 2.6s forwards; }

/* ============================================================
   ÜRÜN DESTESİ (5 Ağu) — hero'nun sağ yarısı: 4 ürün kartı telefon
   çerçevesinde kendi kendine kayar (swipe), kayan döngüyle geri gelir,
   altta senkron ürün adı + tek cümle anlatım.
   JS yoksa / reduced-motion: ilk kart sabit durur, otomatik kayma yok.
   ============================================================ */
@media (min-width: 900px) {
  .hero-sq__inner { display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: clamp(1.5rem, 4vw, 4rem); padding-inline: var(--pad-x); max-width: 74rem; margin-inline: auto; width: 100%; }
  .hero-sq__inner .hero-sq__head { text-align: left; padding-inline: 0; }
  .hero-sq__inner .hero-sq__promise { margin-inline: 0; }
  .hero-sq__inner .hero-sq__ctas { justify-content: flex-start; }
}
.deck { display: grid; gap: 0.9rem; justify-items: center; margin-top: clamp(1.6rem, 4vh, 2.6rem); }
@media (min-width: 900px) { .deck { margin-top: 0; } }

.deck__stage { position: relative; width: min(17.5rem, 74vw); aspect-ratio: 9 / 10.6; }
@media (min-width: 900px) { .deck__stage { width: min(19rem, 30vw); } }
/* Telefonda hero tek ekrana sığsın: başlık + vaat + butonlar + deste bir arada
   844px'e girmeliydi, 1026px'e taşıyordu → deste ve tipografi kademeli küçülür. */
@media (max-width: 760px) {
  .hero-sq { padding-block: 0.6rem 0.8rem; }
  /* Başlık telefonda 3 satır × 44px yer kaplıyordu; deste ekranın altında kalıyordu */
  .hero-sq__title { font-size: clamp(2.05rem, 8.6vw, 2.8rem); line-height: 1.06; }
  .hero-sq__promise { font-size: 0.92rem; line-height: 1.45; max-width: 34ch; margin-top: 0.6rem; }
  /* İki buton tek satırda kalsın — alt alta inince hero 65px uzuyordu */
  .hero-sq__ctas { margin-top: 1rem; gap: 0.55rem; }
  .hero-sq__ctas .btn { padding: 0.72rem 1rem; font-size: 0.92rem; }
  .deck { margin-top: 0.9rem; gap: 0.5rem; }
  .deck__stage { width: min(12.6rem, 55vw); aspect-ratio: 9 / 10.2; }
  .ph-frame { padding: 0.7rem 0.6rem 0.6rem; font-size: 0.6rem; border-radius: 16px; gap: 0.35rem; box-shadow: 0 10px 26px -12px rgba(0,0,0,0.6), inset 0 0 0 4px #1d1d1b; }
  /* Künye satırı iki satıra inince kartın altı taşıyordu → tek satır, kısaltmalı */
  .ph-frame .ph-cap { font-size: 0.5rem; white-space: nowrap; gap: 0.4rem; }
  .ph-frame .ph-cap b { min-width: 0; flex: 0 1 auto; overflow: hidden; text-overflow: ellipsis; }
  .ph-frame .ph-cap > span:last-child { flex: 0 0 auto; }
  .scene-form { gap: 0.28rem; }
  .scene-form .sf-q { font-size: 0.76rem; margin-top: 0; }
  .scene-form .sf-opt { padding: 0.26rem 0.55rem; font-size: 0.62rem; }
  /* Dar kartta [noktalar | WhatsApp] tek satıra sığmıyor, buton çerçevenin köşesine
     biniyordu → telefonda yalnız adım noktaları kalır (WhatsApp zaten 3. kartın konusu
     ve ekranın altındaki yapışkan barda duruyor). */
  .scene-form .sf-wa { display: none; }
  .scene-form .sf-foot { justify-content: center; }
  .scene-form .sf-dots i { width: 0.34rem; height: 0.34rem; }
  .bub { padding: 0.42rem 0.55rem; border-radius: 9px; }
  .scene-ok .tick { width: 1.9rem; height: 1.9rem; font-size: 1rem; }
  .scene-ok b { font-size: 0.82rem; }
  .scene-book .row { padding: 0.36rem 0.5rem; }
  .deck__info { min-height: 4.4rem; gap: 0.15rem; }
  .deck__name { font-size: 0.86rem; }
  .deck__desc { font-size: 0.7rem; line-height: 1.32; max-width: 30ch; }
  .deck__step { font-size: 0.56rem; }
  .deck__dots { margin-top: 0.3rem; }
}
.deck__card {
  position: absolute; inset: 0; margin: 0;
  opacity: 0; transform: translateX(112%) rotate(5deg) scale(0.92);
  transition: transform 0.62s cubic-bezier(0.25, 0.7, 0.25, 1), opacity 0.5s ease;
  pointer-events: none;
}
.deck__card.is-on { opacity: 1; transform: none; z-index: 2; pointer-events: auto; }
.deck__card.is-out { opacity: 0; transform: translateX(-112%) rotate(-5deg) scale(0.92); z-index: 1; }
/* JS yok / reduced-motion: ilk kart sabit, gerisi gizli */
.deck:not(.is-ready) .deck__card:first-child { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .deck__card { transition: none; }
  .deck__card * { animation: none !important; }
}

/* telefon çerçevesi — kartların ortak kabuğu */
.ph-frame {
  width: 100%; height: 100%;
  background: #f7f6f2; border: 1px solid rgba(245,244,241,0.14); border-radius: 22px;
  box-shadow: 0 18px 50px -18px rgba(0,0,0,0.65), inset 0 0 0 5px #1d1d1b;
  padding: 1.15rem 0.95rem 0.95rem; overflow: hidden;
  display: flex; flex-direction: column; gap: 0.5rem;
  color: var(--ink); font-size: 0.72rem; line-height: 1.35;
}
.ph-frame .ph-cap { font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase; color: #98958c; display: flex; justify-content: space-between; }
.ph-frame .ph-cap b { font-weight: 600; color: #6c6c66; letter-spacing: 0.06em; }

/* kart içi ortak balonlar */
.bub { padding: 0.5rem 0.7rem; border-radius: 11px; max-width: 86%; }
.bub--in { background: var(--surface); border: 1px solid var(--line-strong); color: #454540; align-self: flex-start; border-bottom-left-radius: 4px; }
.bub--out { background: var(--dark); color: #f5f4f1; align-self: flex-end; border-bottom-right-radius: 4px; }
.bub--acc { background: var(--accent); color: #fff; align-self: flex-end; border-bottom-right-radius: 4px; }
.bub .bt { display: block; font-size: 0.56rem; opacity: 0.65; margin-top: 0.2rem; }

/* kart aktifken içerik sırayla belirir */
@keyframes deck-pop { from { opacity: 0; transform: translateY(0.55rem); } to { opacity: 1; transform: none; } }
.deck__card .anim { opacity: 0; }
.deck__card.is-on .anim { animation: deck-pop 0.45s cubic-bezier(0.2, 0.7, 0.3, 1) forwards; }
.deck__card.is-on .a1 { animation-delay: 0.25s; }
.deck__card.is-on .a2 { animation-delay: 1.05s; }
.deck__card.is-on .a3 { animation-delay: 1.95s; }
.deck__card.is-on .a4 { animation-delay: 2.85s; }

/* sahne 1: talep formu — içerik dikeyde dağılır, ortada boşluk kalmaz */
.scene-form { display: flex; flex-direction: column; justify-content: space-evenly; gap: 0.45rem; flex: 1; }
.scene-form .sf-q { font-size: 0.98rem; font-weight: 600; letter-spacing: -0.01em; margin-top: 0.2rem; }
.scene-form .sf-opt { padding: 0.5rem 0.75rem; border: 1.5px solid var(--line-strong); border-radius: 999px; background: var(--surface); color: #454540; width: fit-content; }
.scene-form .sf-opt.on { border-color: var(--accent); color: var(--accent); font-weight: 600; }
.scene-form .sf-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; }
.scene-form .sf-dots { display: flex; gap: 0.3rem; }
.scene-form .sf-dots i { width: 0.42rem; height: 0.42rem; border-radius: 50%; background: var(--surface-3); }
.scene-form .sf-dots i.on { background: var(--accent); }
.scene-form .sf-wa { background: var(--accent); color: #fff; font-weight: 600; padding: 0.5rem 0.8rem; border-radius: 7px; }

/* sahne 2: ekran teyidi — formu gönderenin GERÇEKTE gördüğü ekran (canlı üründeki ld-ok) */
.scene-ok { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.55rem; text-align: center; padding-inline: 0.4rem; }
.scene-ok .tick { width: 2.3rem; height: 2.3rem; border-radius: 50%; background: #2f9e44; color: #fff; display: grid; place-items: center; font-size: 1.15rem; line-height: 1; }
.scene-ok b { font-size: 0.95rem; letter-spacing: -0.01em; }
.scene-ok p { margin: 0; color: #6c6c66; font-size: 0.72rem; }
.scene-ok .ghost { border: 1.5px solid var(--line-strong); border-radius: 7px; padding: 0.48rem 0.75rem; color: #454540; font-weight: 600; margin-top: 0.25rem; }

/* sahne 3: WhatsApp + tıklanabilir numara + yapışkan bar (canlı üründeki sticky-cta) */
.scene-bar { flex: 1; display: flex; flex-direction: column; gap: 0.5rem; padding-top: 0.3rem; margin-inline: -0.95rem; padding-inline: 0.95rem; margin-bottom: -0.95rem; }
.scene-bar .hint { font-size: 0.6rem; color: #98958c; text-align: center; margin-top: auto; padding-bottom: 0.5rem; }
.scene-bar .bar { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-inline: -0.95rem; border-top: 1px solid var(--line-strong); }
.scene-bar .bar span { padding: 0.68rem 0.4rem; text-align: center; font-weight: 700; font-size: 0.72rem; }
.scene-bar .bar .call { background: #141413; color: #f5f4f1; }
.scene-bar .bar .wa { background: var(--accent); color: #fff; }

/* sahne 4: haftalık defter */
.scene-book { display: flex; flex-direction: column; gap: 0.42rem; flex: 1; padding-top: 0.3rem; }
.scene-book .row { display: grid; grid-template-columns: auto 1fr auto; gap: 0.5rem; align-items: baseline; background: var(--surface); border: 1px solid var(--line-strong); border-radius: 8px; padding: 0.45rem 0.6rem; }
.scene-book .row time { font-size: 0.58rem; color: #98958c; font-variant-numeric: tabular-nums; }
.scene-book .row b { font-size: 0.68rem; font-weight: 600; }
.scene-book .row .st { font-size: 0.55rem; font-weight: 700; letter-spacing: 0.05em; padding: 0.14rem 0.42rem; border-radius: 999px; }
.scene-book .row .st.g { background: #dff5e3; color: #17552a; }
.scene-book .row .st.y { background: #fff4d6; color: #7a5300; }
.scene-book .sum { margin-top: auto; display: flex; justify-content: space-between; align-items: baseline; border-top: 1px solid var(--line-strong); padding-top: 0.5rem; }
.scene-book .sum b { font-size: 1.05rem; font-weight: 700; letter-spacing: -0.02em; }
.scene-book .sum b em { font-style: normal; color: var(--accent); }
.scene-book .sum span { font-size: 0.58rem; color: #98958c; }

/* alt bilgi: adım sayacı + ürün adı + anlatım + noktalar */
.deck__info { text-align: center; max-width: 24rem; display: grid; gap: 0.3rem; justify-items: center; min-height: 5.8rem; align-content: start; }
.deck__step { margin: 0; font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--dark-muted); font-variant-numeric: tabular-nums; }
.deck__step b { color: var(--accent); font-weight: 700; }
.deck__name { margin: 0; font-size: var(--fs-sm); font-weight: 600; color: var(--dark-ink); letter-spacing: 0.01em; transition: opacity 0.3s ease; }
.deck__desc { margin: 0; font-size: var(--fs-xs); color: var(--dark-muted); transition: opacity 0.3s ease; }
.deck__info.is-fading .deck__name, .deck__info.is-fading .deck__desc { opacity: 0; }
.deck__dots { display: flex; gap: 0.45rem; margin-top: 0.45rem; }
.deck__dots button { position: relative; width: 1.7rem; height: 0.24rem; border-radius: 999px; border: 0; padding: 0; background: rgba(245,244,241,0.22); cursor: pointer; overflow: hidden; }
.deck__dots button.on::after { content: ""; position: absolute; inset: 0; background: var(--accent); transform-origin: left; animation: deck-dot linear forwards; animation-duration: var(--deck-ms, 5200ms); }
@keyframes deck-dot { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@media (prefers-reduced-motion: reduce) { .deck__dots button.on::after { animation: none; transform: none; } }

/* açılış koreografisine katıl: carousel'in eski yerini ürün destesi aldı */
html.intro-play .deck { opacity: 0; transform: translateY(2.4rem); transition: opacity 0.5s ease, transform 0.65s cubic-bezier(0.22, 0.7, 0.3, 1); animation: intro-force 0.4s ease 2.6s forwards; }

/* ---------- VAAT DETAYI (aydınlık bölüm) ---------- */
.promise {
  padding: var(--sp-2xl) var(--pad-x);
  border-bottom: 1px solid var(--line);
}
.promise__text {
  font-size: var(--fs-xl);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.12;
  margin: 0;
  max-width: 26ch;
  text-wrap: balance;
}
.promise__text em { font-style: normal; color: var(--accent); }
.promise__link {
  display: inline-block;
  margin-top: var(--sp-md);
  color: var(--muted);
  font-size: var(--fs-sm);
  text-decoration: none;
}
.promise__link:hover { color: var(--accent); }

/* ============================================================
   PAKET (5 Ağu) — "€399 karşılığında ne alırsınız" üç bölüme ayrıldı:
     ① reklam sayfasında  ② müşteri talep bırakırken  ③ daima
   Görseller küçüldü (2,1 rem ikon): ürün sayısı artacak, dev kutular
   listeyi taşırıyordu. Yeni madde eklemek = bir <li>, düzen bozulmaz.
   ============================================================ */
.pack { padding: clamp(1.8rem, 5vh, 3.4rem) var(--pad-x); }
.pack__wrap { max-width: 78rem; margin-inline: auto; width: 100%; }
/* 1 Eyl: tek başlık (eski "$397 a month. Everything included." + "Setup takes 15 minutes" gitti),
   solda tek satırlık maddeler, sağda yapışkan fiyat kartı. Fiyat sayfada TEK yerde. */
.pack__lead {
  font-size: var(--fs-lg); font-weight: 500; letter-spacing: -0.025em;
  line-height: 1.12; margin: 0 0 var(--sp-lg); max-width: 22ch; text-wrap: balance;
}
.pack__lead em { font-style: normal; color: var(--accent); }
.pack__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(17rem, 21rem);
  gap: clamp(1.8rem, 5vw, 5rem);
  align-items: start;
}
.pack__groups { display: grid; gap: var(--sp-md); }
.pack__group { display: grid; grid-template-columns: 11rem 1fr; gap: var(--sp-sm) var(--sp-md); align-items: start; padding-top: var(--sp-sm); border-top: 1px solid var(--line); }
.pack__gh { display: flex; align-items: baseline; gap: 0.6rem; margin: 0; }
.pack__gh b { font-size: var(--fs-base); font-weight: 600; letter-spacing: -0.01em; line-height: 1.3; }
.pack__gh i {
  font-style: normal; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent); font-weight: 700; font-variant-numeric: tabular-nums;
}
.pack__list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.55rem var(--sp-md); }
.pack__list li { position: relative; padding-left: 1.5rem; font-size: var(--fs-base); line-height: 1.35; }
.pack__list li::before {
  content: ""; position: absolute; left: 0; top: 0.42em; width: 0.9rem; height: 0.9rem;
  border-radius: 50%; background: var(--accent);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 12.5l3.2 3.2L17 9' stroke='%23fff' stroke-width='2.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 80%; background-position: center; background-repeat: no-repeat;
}
@media (max-width: 1000px) {
  .pack__grid { grid-template-columns: 1fr; gap: var(--sp-lg); }
  .pack__list { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .pack__group { grid-template-columns: 1fr; gap: 0.6rem; }
}

/* Fiyat kartı: kart zeminden bir basamak açık (kural), masaüstünde yapışkan */
.price-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 14px;
  padding: clamp(1.3rem, 2.5vw, 1.8rem); display: grid; gap: var(--sp-sm);
  position: sticky; top: calc(var(--nav-h) + 1rem);
  box-shadow: 0 18px 40px -30px rgba(20, 20, 19, 0.35);
}
.price-card__num { margin: 0; display: flex; align-items: baseline; gap: 0.4rem; }
.price-card__num b { font-size: clamp(2.2rem, 1.6rem + 2vw, 3rem); font-weight: 600; letter-spacing: -0.03em; line-height: 1; }
.price-card__num span { color: var(--muted); font-size: var(--fs-base); }
.price-card__terms { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.35rem; color: var(--ink); font-size: var(--fs-sm); }
.price-card__terms li { display: flex; align-items: baseline; gap: 0.5rem; }
.price-card__terms li::before { content: "\2713"; color: var(--accent); font-weight: 700; }
.price-card__ctas { display: grid; gap: var(--sp-2xs); margin-top: 0.2rem; }
.price-card__ctas .btn { justify-content: center; width: 100%; }
.price-card__note { margin: 0; font-size: var(--fs-xs); color: var(--muted); line-height: 1.5; }
.price-card__note a { color: inherit; }
@media (max-width: 1000px) { .price-card { position: static; } }

/* ============================================================
   KAYIP NOKTALARI — form bölümünün altında: talep nerede kayboluyor
   ============================================================ */
.loss__title { font-size: var(--fs-lg); font-weight: 500; letter-spacing: -0.025em; line-height: 1.1; margin: 0 0 0.5rem; max-width: 20ch; text-wrap: balance; }
.loss__sub { color: var(--muted); font-size: var(--fs-sm); margin: 0 0 var(--sp-md); max-width: 44ch; }
/* "üçünü biz kapatıyoruz" — hangi üçü olduğunu numaraların rengi söyler (kırmızı = çözülüyor),
   böylece her maddenin altına etiket tekrarlamaya gerek kalmıyor. */
.loss__sub b { color: var(--ink); font-weight: 600; }

/* Dört kayıp noktası: kutu değil, numaralı liste. Az kelime, büyük punto —
   müşteri telefonda okuyor, kart içinde 4 satırlık paragraf okumuyor. */
.lossx { list-style: none; margin: 0; padding: 0; display: grid; gap: clamp(0.8rem, 2vh, 1.25rem); }
.lossx li { display: grid; grid-template-columns: 2rem 1fr; gap: 0.85rem; align-items: baseline; }
.lossx__n {
  font-size: var(--fs-sm); font-weight: 700; color: var(--accent);
  font-variant-numeric: tabular-nums; border-top: 2px solid var(--accent); padding-top: 0.3rem;
}
.lossx b { display: block; font-size: var(--fs-base); font-weight: 600; line-height: 1.3; }
.lossx p { margin: 0.15rem 0 0; font-size: var(--fs-sm); color: var(--muted); line-height: 1.45; }

/* ---------- ÖZELLİK ŞERİDİ (aydınlık, kutusuz) ---------- */
.features { padding: var(--sp-2xl) var(--pad-x); }
.features__title { font-size: var(--fs-lg); font-weight: 500; letter-spacing: -0.02em; margin: 0 0 var(--sp-2xs); }
.features__sub { color: var(--muted); font-size: var(--fs-sm); margin: 0 0 var(--sp-lg); max-width: 52ch; }
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.9rem, 2vw, 1.6rem);
}
@media (max-width: 980px) { .features__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .features__grid { grid-template-columns: 1fr; } }
.feature { display: flex; flex-direction: column; gap: var(--sp-sm); }
.feature__name { font-weight: 600; font-size: var(--fs-sm); margin: 0; }
.feature__desc { color: var(--muted); font-size: var(--fs-sm); margin: 0; }
.feature__vis {
  height: 7.6rem;
  border-radius: 6px;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.vis-cal { display: grid; grid-template-columns: repeat(7, 0.95rem); gap: 0.28rem; }
.vis-cal i { height: 0.95rem; background: var(--surface-3); border-radius: 2px; }
.vis-cal i.on { background: var(--accent); }
.vis-cal i.dim { opacity: 0.45; }
.vis-blog { width: 62%; display: grid; gap: 0.4rem; }
.vis-blog b { height: 0.65rem; width: 70%; background: #c6c2b4; border-radius: 2px; }
.vis-blog i { height: 0.38rem; background: var(--surface-3); border-radius: 2px; }
.vis-blog i:last-child { width: 82%; }
.vis-lang { display: flex; gap: 0.4rem; }
.vis-lang span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.32rem 0.6rem;
  border-radius: 999px;
  border: 1px solid #c6c2b4;
  color: var(--muted);
  background: var(--surface);
}
.vis-lang span.on { background: var(--ink); color: #fff; border-color: var(--ink); }
.vis-gmb { display: flex; align-items: center; gap: 0.55rem; background: var(--surface); border: 1px solid var(--surface-3); border-radius: 4px; padding: 0.5rem 0.7rem; }
.vis-gmb .pin { width: 1rem; height: 1rem; border-radius: 50% 50% 50% 0; background: var(--accent); rotate: -45deg; }
.vis-gmb .lines { display: grid; gap: 0.3rem; }
.vis-gmb .lines b { width: 4.4rem; height: 0.5rem; background: #c6c2b4; border-radius: 2px; }
.vis-gmb .lines i { font-style: normal; font-size: 0.62rem; color: #e8a13a; letter-spacing: 0.08em; }

/* ---------- ALT-SAYFA ORTAK (aydınlık) ---------- */
.page { max-width: 46rem; padding: clamp(2.5rem, 7vh, 5rem) var(--pad-x) var(--sp-2xl); margin-inline: auto; }
.page--wide { max-width: 62rem; }
.page__eyebrow {
  font-size: var(--fs-xs);
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 var(--sp-sm);
}
.page__eyebrow::before { content: "\2731 "; color: var(--accent); letter-spacing: 0; } /* U+2731 ✱: emoji karşılığı YOK. ✳ (U+2733) Safari/WebKit'te yeşil emoji çiziyordu, FE0E de yetmedi (3 Eyl) */
.page__title { font-size: var(--fs-xl); font-weight: 500; letter-spacing: -0.025em; line-height: 1.05; margin: 0 0 var(--sp-md); text-wrap: balance; }
.page__lead { color: var(--muted); font-size: var(--fs-md); line-height: 1.45; margin: 0 0 var(--sp-lg); text-wrap: balance; }

.price-list { list-style: none; margin: var(--sp-lg) 0 0; padding: 0; border-top: 1px solid var(--line); }
.price-list li {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}
.price-list i { flex: 1; }
.price-list b { font-weight: 500; color: var(--muted); white-space: nowrap; }
.price-list b.num { font-weight: 600; color: var(--ink); font-size: var(--fs-md); }
.price-promise {
  margin: var(--sp-lg) 0 0;
  font-size: var(--fs-md);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--accent);
  max-width: 26ch;
  line-height: 1.35;
}
.price-note { color: var(--muted); font-size: var(--fs-sm); margin-top: var(--sp-md); max-width: 52ch; }

.steps { list-style: none; margin: var(--sp-lg) 0 0; padding: 0; display: grid; gap: var(--sp-lg); counter-reset: s; }
.steps li { counter-increment: s; display: grid; grid-template-columns: 3.2rem 1fr; gap: var(--sp-sm); }
.steps li::before {
  content: counter(s, decimal-leading-zero);
  font-weight: 600;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}
.steps h3 { margin: 0 0 0.2rem; font-size: var(--fs-md); font-weight: 600; }
.steps p { margin: 0; color: var(--muted); }

.faq-list { margin-top: var(--sp-lg); border-bottom: 1px solid var(--line); }
.faq-item { border-top: 1px solid var(--line); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--sp-md);
  padding: var(--sp-sm) 0;
  font-weight: 600;
  font-size: var(--fs-sm);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; flex-shrink: 0; color: var(--accent); font-size: 1.15em; line-height: 1; transition: transform 0.25s ease; }
.faq-item[open] summary::after { transform: rotate(45deg); }
@media (prefers-reduced-motion: reduce) { .faq-item summary::after { transition: none; } }
.faq-item summary:hover { color: var(--accent); }
.faq-item p { margin: 0; padding: 0 0 var(--sp-sm); color: var(--muted); font-size: var(--fs-sm); max-width: 60ch; }

.contact-actions { display: flex; gap: var(--sp-sm); flex-wrap: wrap; margin-top: var(--sp-lg); }

/* ---------- FOOTER: siyah bant ---------- */
.site-foot {
  background: var(--dark);
  color: var(--dark-muted);
  margin-top: var(--sp-2xl);
  padding: var(--sp-lg) var(--pad-x) var(--sp-md);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-sm) var(--sp-lg);
  align-items: baseline;
  font-size: var(--fs-xs);
  letter-spacing: 0.04em;
}
.site-foot a { color: var(--dark-muted); }
.site-foot a:hover { color: var(--accent); }
.site-foot__copy { margin-left: auto; }

/* ============================================================
   PREISE: zwei Pakete (Auftritt / Großer Auftritt)
   ============================================================ */
.pkg-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-md); margin-top: var(--sp-lg); align-items: start; }
@media (max-width: 680px) { .pkg-grid { grid-template-columns: 1fr; } }
.pkg { border: 1px solid var(--line); border-radius: 4px; padding: var(--sp-md); display: flex; flex-direction: column; gap: var(--sp-sm); background: var(--surface); }
.pkg--feat { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent); position: relative; }
.pkg__badge { position: absolute; top: -0.7rem; left: var(--sp-md); background: var(--accent); color: #fff; font-size: 0.66rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.28rem 0.6rem; border-radius: 2px; }
.pkg__name { font-size: var(--fs-md); font-weight: 600; letter-spacing: -0.01em; }
.pkg__tag { color: var(--muted); font-size: var(--fs-sm); margin-top: -0.4rem; }
.pkg__price { display: flex; align-items: baseline; gap: 0.5rem; padding: 0.4rem 0 0.2rem; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.pkg__price b { font-size: 1.7rem; font-weight: 600; letter-spacing: -0.02em; white-space: nowrap; }
.pkg__price span { color: var(--muted); font-size: var(--fs-sm); }
.pkg ul { list-style: none; padding: 0; margin: 0.2rem 0 0; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.pkg li { display: flex; gap: 0.55rem; font-size: var(--fs-sm); line-height: 1.4; align-items: baseline; }
.pkg li::before { content: "\2192"; color: var(--accent); flex-shrink: 0; font-weight: 600; }
.pkg li.head { font-weight: 600; color: var(--ink); }
.pkg li.head::before { content: ""; }
/* Grid statt flex-wrap: in schmalen Spalten sprang der Text sonst unter den Pfeil
   (Pfeil blieb allein auf der Zeile). Spalte 1 = Pfeil, Spalte 2 = Text + Zusatz. */
.pkg li.choice { display: grid; grid-template-columns: auto 1fr; column-gap: 0.55rem; }
.pkg li.choice em { grid-column: 2; color: var(--muted); font-style: normal; font-size: 0.8rem; margin-top: 0.15rem; }
.pkg__cta { margin-top: 0.4rem; }
/* Ab 681px teilen beide Karten dieselben Zeilen (subgrid): Preiszeile, Liste und CTA
   stehen auf exakt gleicher Hoehe, auch wenn der Untertitel einer Karte zweizeilig umbricht.
   Zeilen: name / tag / price / ul (1fr) / cta. Badge ist absolut positioniert -> zaehlt nicht mit.
   Nur bei zwei Karten noetig: bei einer Karte bleibt es bei flex, sonst zwaengt das feste
   5-Zeilen-Raster eine Karte mit mehr Elementen (z. B. Gruendungspreis-Zeile) in zu wenige
   Zeilen -- CTA und Liste landen dann uebereinander. */
@media (min-width: 681px) {
  .pkg-grid:has(.pkg + .pkg) { grid-template-rows: auto auto auto 1fr auto; align-items: stretch; }
  .pkg-grid:has(.pkg + .pkg) .pkg { display: grid; grid-template-rows: subgrid; grid-row: span 5; }
}
.btn--full { width: 100%; justify-content: center; }
.btn--accent { background: var(--accent); color: #fff; }
.btn--accent:hover { background: var(--ink); color: #fff; }
.promise-row { margin-top: var(--sp-lg); padding-top: var(--sp-md); border-top: 1px solid var(--line); }

/* "Nicht sicher, was Sie brauchen?" Hilfe-Panel */
.help { margin-top: var(--sp-xl); background: linear-gradient(180deg, rgba(214,73,31,0.07), rgba(214,73,31,0.04)); border: 1px solid rgba(214,73,31,0.28); border-radius: 6px; padding: clamp(1.4rem, 3.5vw, 2.2rem); }
.help__ey { font-size: var(--fs-xs); letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); font-weight: 600; margin: 0 0 0.7rem; }
.help h2 { font-size: var(--fs-lg); font-weight: 500; letter-spacing: -0.02em; line-height: 1.08; margin: 0 0 0.7rem; text-wrap: balance; max-width: 24ch; }
.help p { color: #4b4a45; font-size: var(--fs-base); line-height: 1.5; max-width: 54ch; margin: 0 0 var(--sp-md); }
.help__actions { display: flex; gap: var(--sp-sm); flex-wrap: wrap; }

/* ============================================================
   STARTSEITE: erweiterte Features + neue Mini-Visuals
   ============================================================ */
.feature--new .feature__name::after { content: "neu"; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; background: var(--accent); padding: 0.1rem 0.35rem; border-radius: 2px; margin-left: 0.5rem; vertical-align: 1px; }
[lang="en"] .feature--new .feature__name::after { content: "new"; }
.vis-flags { display: flex; flex-wrap: wrap; gap: 0.32rem; max-width: 6.6rem; justify-content: center; }
.vis-flags .fl { width: 1.5rem; height: 1.02rem; border-radius: 2px; overflow: hidden; box-shadow: 0 0 0 1px rgba(0,0,0,0.1); }
.vis-flags .fl svg { display: block; width: 100%; height: 100%; }
.vis-motion { position: relative; width: 3.2rem; height: 4.4rem; background: var(--surface); border: 1px solid var(--surface-3); border-radius: 7px; overflow: hidden; }
.vis-motion .top { position: absolute; top: 0; left: 0; right: 0; height: 1rem; background: linear-gradient(#efefe9, #f7f7f3); border-bottom: 1px solid #eee; }
.vis-motion .ln { position: absolute; left: 0.5rem; right: 0.5rem; height: 0.3rem; background: var(--surface-3); border-radius: 2px; }
.vis-motion .ln.a { top: 1.5rem; } .vis-motion .ln.b { top: 2.2rem; width: 60%; } .vis-motion .ln.c { top: 2.9rem; }
.vis-motion .scrub { position: absolute; left: 0.45rem; right: 0.45rem; top: 1.4rem; height: 0.42rem; background: var(--accent); border-radius: 2px; animation: vm 2.6s ease-in-out infinite; }
@keyframes vm { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(2.3rem); } }
@media (prefers-reduced-motion: reduce) { .vis-motion .scrub { animation: none; } }
.vis-mail { position: relative; width: 3.9rem; height: 2.7rem; border: 1.5px solid var(--ink); border-radius: 5px; background: var(--surface); }
.vis-mail .flap { position: absolute; top: -1px; left: -1px; right: -1px; height: 1.5rem; background: var(--accent); clip-path: polygon(0 0, 100% 0, 50% 92%); }
.vis-mail .dot { position: absolute; right: -0.35rem; top: -0.35rem; width: 0.8rem; height: 0.8rem; border-radius: 50%; background: #2f9e44; box-shadow: 0 0 0 2px var(--surface-2); }
.vis-gallery { display: grid; grid-template-columns: repeat(3, 1.35rem); grid-auto-rows: 1.35rem; gap: 0.28rem; }
.vis-gallery i { border-radius: 2px; background: var(--surface-3); }
.vis-gallery i.big { grid-row: span 2; background: var(--accent); opacity: 0.9; }
.vis-gallery i.mid { background: #c6c2b4; }
.vis-map { position: relative; width: 4.6rem; height: 3.4rem; background: var(--surface-2); border-radius: 7px; overflow: hidden; }
.vis-map::before { content: ""; position: absolute; top: 1.35rem; left: -10%; width: 120%; height: 0.32rem; background: #fff; transform: rotate(-13deg); }
.vis-map::after { content: ""; position: absolute; top: -10%; left: 1.7rem; width: 0.32rem; height: 120%; background: #fff; transform: rotate(9deg); }
.vis-map .pin { position: absolute; top: 0.85rem; left: 2.1rem; width: 1rem; height: 1rem; border-radius: 50% 50% 50% 0; background: var(--accent); rotate: -45deg; box-shadow: 0 2px 4px rgba(0,0,0,0.2); }
.vis-reviews { display: grid; gap: 0.3rem; justify-items: center; }
.vis-reviews b { font-size: 1.5rem; font-weight: 700; color: var(--ink); letter-spacing: -0.01em; line-height: 1; }
.vis-reviews i { font-style: normal; color: #e8a13a; letter-spacing: 0.14em; font-size: 0.85rem; }
.vis-reviews u { text-decoration: none; color: var(--muted); font-size: 0.6rem; letter-spacing: 0.06em; }

/* 5 Ağu: özellik görselleri metinle eşleşsin diye üç yeni mini görsel.
   vis-chat  = "Antwort in Sekunden": gelen mesaj + anında otomatik cevap balonu
   vis-callsms = "Verpasste Anrufe": kaçan çağrı rozeti → giden SMS oku
   vis-chart = "Jede Woche klare Zahlen": önce/sonra çubukları */
.vis-chat { display: grid; gap: 0.35rem; width: 62%; }
.vis-chat .in, .vis-chat .out { padding: 0.34rem 0.6rem; border-radius: 9px; font-size: 0.58rem; letter-spacing: 0.02em; line-height: 1.2; max-width: 78%; }
.vis-chat .in { background: var(--surface); border: 1px solid var(--surface-3); color: var(--muted); justify-self: start; border-bottom-left-radius: 3px; }
.vis-chat .out { background: var(--accent); color: #fff; justify-self: end; border-bottom-right-radius: 3px; }
.vis-chat .t { font-size: 0.52rem; color: var(--muted); justify-self: end; letter-spacing: 0.06em; }
.vis-callsms { display: flex; align-items: center; gap: 0.55rem; }
.vis-callsms .ph { position: relative; width: 2rem; height: 2rem; border-radius: 50%; background: var(--surface); border: 1.5px solid var(--ink); display: grid; place-items: center; }
.vis-callsms .ph::before { content: "✆"; font-size: 1rem; color: var(--ink); }
.vis-callsms .ph .miss { position: absolute; right: -0.3rem; top: -0.3rem; width: 0.72rem; height: 0.72rem; border-radius: 50%; background: #d6491f; box-shadow: 0 0 0 2px var(--surface-2); }
.vis-callsms .arrow { color: var(--muted); font-size: 0.9rem; letter-spacing: -0.1em; }
.vis-callsms .sms { padding: 0.4rem 0.65rem; border-radius: 9px; border-bottom-left-radius: 3px; background: var(--surface); border: 1px solid var(--surface-3); font-size: 0.58rem; color: var(--muted); max-width: 8.5rem; line-height: 1.25; }
.vis-chart { display: flex; align-items: flex-end; gap: 0.85rem; height: 4.6rem; }
.vis-chart .col { display: grid; gap: 0.28rem; justify-items: center; align-content: end; height: 100%; }
.vis-chart .bar { width: 1.35rem; border-radius: 3px 3px 0 0; background: #c6c2b4; }
.vis-chart .col.b .bar { background: var(--accent); }
.vis-chart .col span { font-size: 0.52rem; color: var(--muted); letter-spacing: 0.06em; }
.vis-chart .col b { font-size: 0.72rem; font-weight: 700; color: var(--ink); line-height: 1; }
.vis-chart .col.b b { color: var(--accent); }

/* STARTSEITE: "So einfach arbeiten wir" + sağda kapanış (slogan + iletişim).
   Sağ sütun 5 Ağu'da eklendi: adımlar tek başınayken ekranın sağ yarısı boştu. */
.how { padding: var(--sp-xl) var(--pad-x); border-top: 1px solid var(--line); }
/* 1 Eyl: sağ sütun (kurucu kartı) kaldırıldı; adımlar 2×2, kurucu bandı altta tam genişlik. */
.how__wrap { display: grid; gap: var(--sp-lg); max-width: 78rem; margin-inline: auto; width: 100%; }
.how__title { font-size: var(--fs-lg); font-weight: 500; letter-spacing: -0.02em; margin: 0 0 var(--sp-2xs); }
.how__sub { color: var(--muted); font-size: var(--fs-sm); margin: 0 0 var(--sp-md); max-width: 56ch; }
.how .steps { gap: var(--sp-md); margin-top: 0; }
.how .steps--grid { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: clamp(1.5rem, 4vw, 4rem); }
@media (max-width: 760px) { .how .steps--grid { grid-template-columns: 1fr; } }
.how .steps em { font-style: normal; color: var(--accent); font-weight: 600; }

.how__aside { border-left: 1px solid var(--line); padding-left: clamp(1.2rem, 3vw, 2.6rem); display: grid; gap: var(--sp-md); align-content: center; }
@media (max-width: 900px) { .how__aside { border-left: 0; border-top: 1px solid var(--line); padding: var(--sp-md) 0 0; } }
.slogan { font-size: clamp(1.5rem, 1.1rem + 1.5vw, 2.4rem); font-weight: 500; letter-spacing: -0.03em; line-height: 1.1; margin: 0; text-wrap: balance; }
.slogan em { font-style: normal; color: var(--accent); }
.how__cta { display: flex; gap: var(--sp-2xs); flex-wrap: wrap; }
.how__meta { margin: 0; font-size: var(--fs-xs); color: var(--muted); line-height: 1.5; }
.how__meta b { color: var(--ink); font-weight: 600; }

/* CANLI DEMO: adım-adım talep formu — sattığımız sistemin kendisi (iletişim en sonda) */
.lead-demo { padding: var(--sp-xl) var(--pad-x); border-bottom: 1px solid var(--line); background: var(--surface-2); }
.lead-demo__inner { max-width: 32rem; margin-inline: auto; text-align: center; width: 100%; }
.lead-demo__ey { font-size: var(--fs-xs); letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); font-weight: 600; margin: 0 0 var(--sp-2xs); }
.lead-demo__title { font-size: var(--fs-md); font-weight: 600; letter-spacing: -0.015em; margin: 0 0 var(--sp-xs); text-wrap: balance; }
/* İletişim sayfası: üst blok da ortalı olsun ki alttaki formla aynı eksende dursun */
.page--center { text-align: center; }
.page--center .contact-actions { justify-content: center; }
.page--center .price-note { margin-inline: auto; max-width: 46ch; }
.lead-demo__sub { color: var(--muted); font-size: var(--fs-sm); margin: 0 auto var(--sp-md); max-width: 44ch; }
/* Kart sabit yükseklikte: adımlar arasında zıplamasın + bir ekranlık bölümde boşlukta yüzmesin */
.ld-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: clamp(1.6rem, 4vw, 2.4rem) clamp(1.2rem, 3vw, 2.2rem) var(--sp-md);
  box-shadow: 0 14px 40px -18px rgba(20, 20, 19, 0.28);
  min-height: 13.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* :not([hidden]) ŞART — display:flex yazmak [hidden]'ı ezer ve bütün adımlar aynı anda görünür */
.ld-card > [data-ld-step]:not([hidden]) { flex: 1 0 auto; display: flex; flex-direction: column; justify-content: center; }
.ld-q { font-size: var(--fs-md); font-weight: 500; margin: 0 0 var(--sp-md); letter-spacing: -0.01em; }
.ld-opts { display: flex; flex-wrap: wrap; gap: var(--sp-2xs); justify-content: center; }
.ld-opts button { font: inherit; font-size: var(--fs-sm); padding: 0.7rem 1.15rem; border: 1.5px solid var(--line); border-radius: 999px; background: #fff; cursor: pointer; transition: border-color 0.15s ease, background 0.15s ease; }
.ld-opts button:hover { border-color: var(--accent); color: var(--accent); }
.ld-input { display: flex; gap: var(--sp-2xs); justify-content: center; flex-wrap: wrap; }
.ld-input input { font: inherit; font-size: var(--fs-sm); padding: 0.7rem 1rem; border: 1.5px solid var(--line); border-radius: 8px; min-width: 14rem; }
.ld-input input:focus { outline: 2px solid var(--accent); outline-offset: 1px; border-color: transparent; }
.ld-skip { background: none; border: none; font: inherit; font-size: var(--fs-xs); color: var(--muted); cursor: pointer; text-decoration: underline; margin-top: var(--sp-xs); }
.ld-done p { color: var(--muted); font-size: var(--fs-sm); margin: 0 0 var(--sp-sm); }
.ld-fields { display: grid; gap: var(--sp-2xs); justify-items: center; }
.ld-fields input { font: inherit; font-size: var(--fs-sm); padding: 0.7rem 1rem; border: 1.5px solid var(--line); border-radius: 8px; width: min(20rem, 100%); }
.ld-fields input:focus { outline: 2px solid var(--accent); outline-offset: 1px; border-color: transparent; }
.ld-fields .btn { margin-top: var(--sp-2xs); }
.ld-error { color: var(--accent); font-size: var(--fs-xs); margin: var(--sp-2xs) 0 0; }
.ld-legal { font-size: var(--fs-xs); color: var(--muted); margin: var(--sp-xs) 0 0; }
.ld-legal a { color: inherit; }

/* ONAY KUTUSU (5 Ağu) — hukuk gereği: işaretsiz gelir, kendiliğinden işaretli OLAMAZ.
   İşaretlenmeden gönderim yok; işaretlenen metnin tam hâli kayda geçer. */
.ld-consent {
  display: grid; grid-template-columns: auto 1fr; gap: 0.55rem;
  text-align: left; margin: var(--sp-xs) auto 0; max-width: 22rem;
  font-size: var(--fs-xs); color: var(--muted); line-height: 1.45; cursor: pointer;
}
.ld-consent input { width: 1.05rem; height: 1.05rem; margin: 0.1rem 0 0; accent-color: var(--accent); cursor: pointer; }
.ld-consent a { color: inherit; }
.ld-consent.is-missing { color: var(--accent); }
.ld-consent.is-missing input { outline: 2px solid var(--accent); outline-offset: 2px; }
/* Gönder butonu artık alanların değil, onayın ALTINDA — okunmadan basılmasın */
.ld-send { margin-top: var(--sp-xs); }
.ld-ok { display: grid; gap: 0.35rem; justify-items: center; }
.ld-ok .tick { width: 2.4rem; height: 2.4rem; border-radius: 50%; background: #2f9e44; color: #fff; display: grid; place-items: center; font-size: 1.3rem; line-height: 1; }
.ld-ok strong { font-size: var(--fs-md); font-weight: 500; }
.ld-dots { display: flex; gap: 0.4rem; justify-content: center; margin-top: var(--sp-sm); }
.ld-dots i { width: 0.5rem; height: 0.5rem; border-radius: 50%; background: var(--surface-3); }
.ld-dots i.on { background: var(--accent); }
.ld-note { font-size: var(--fs-xs); color: var(--muted); margin-top: var(--sp-xs); }

/* YAPIŞKAN MOBİL CTA (1 Eyl): tam genişlik bar değil, ortada yüzen hap düğme — bar ekranı kaplıyordu */
.sticky-cta { display: none; }
@media (max-width: 760px) {
  .sticky-cta {
    display: flex; justify-content: center; position: fixed; z-index: 60;
    inset: auto 0 calc(0.85rem + env(safe-area-inset-bottom)) 0; pointer-events: none;
  }
  .sticky-cta a {
    pointer-events: auto; display: inline-flex; align-items: center; gap: 0.45rem;
    padding: 0.72rem 1.35rem; font-size: var(--fs-sm); font-weight: 600; text-decoration: none;
    background: var(--accent); color: #fff; border-radius: 999px;
    box-shadow: 0 12px 30px -10px rgba(214, 73, 31, 0.55), 0 2px 8px rgba(20, 20, 19, 0.18);
  }
  .sticky-cta a:active { background: var(--ink); }
  body { padding-bottom: 4.2rem; }
}

/* ============================================================
   v6 · 31 Ağu 2026 — reputation management (EN/ABD) eklemeleri.
   Kabuk korunuyor; yalnız yeni sahneler ve tek-CTA düzeni.
   ============================================================ */
/* Nav: yalnız logo + tek düğme */
.site-head__nav--cta { align-items: center; text-transform: none; letter-spacing: 0; }
.btn--sm { padding: 0.55rem 1rem; font-size: var(--fs-xs); font-weight: 600; letter-spacing: 0.02em; }
@media (max-width: 520px) {
  .site-head:has(.site-head__nav--cta) { flex-wrap: nowrap; height: var(--nav-h); padding-block: 0; }
  .site-head__nav--cta { flex-basis: auto; }
}

/* Hero: eyebrow + CTA yanındaki ikincil yol */
.hero-sq__eyebrow { margin: 0 0 var(--sp-sm); font-size: var(--fs-xs); letter-spacing: 0.22em; text-transform: uppercase; color: var(--dark-muted); }
.hero-sq__eyebrow::before { content: "\2731 "; color: var(--accent); letter-spacing: 0; } /* U+2731 ✱: emoji karşılığı YOK. ✳ (U+2733) Safari/WebKit'te yeşil emoji çiziyordu, FE0E de yetmedi (3 Eyl) */
.hero-sq__alt { align-self: center; font-size: var(--fs-xs); color: var(--dark-muted); }
.hero-sq__alt--light { color: var(--muted); }
@media (max-width: 760px) { .hero-sq__eyebrow { font-size: 0.66rem; margin-bottom: 0.6rem; } .hero-sq__alt { flex-basis: 100%; text-align: center; } }

/* Başlık iki tam cümle: eski hero ölçüsü 6 satıra taşıyordu, bir basamak küçük */
.hero-sq__title { font-size: clamp(2.3rem, 1.4rem + 3.2vw, 4.2rem); }
@media (max-width: 760px) { .hero-sq__title { font-size: clamp(1.9rem, 7.6vw, 2.5rem); } }

/* Deste elle: ilerleme çubuğu animasyonu yok, nokta dolu kalır */
.deck--manual .deck__dots button.on::after { animation: none; transform: none; }
.deck--manual .deck__stage { cursor: pointer; }
/* Hareket azaltmada kart içi öğeler animasyonsuz ama GÖRÜNÜR (eskiden boş kart kalıyordu) */
@media (prefers-reduced-motion: reduce) { .deck__card .anim { opacity: 1; } }

/* Sahne: SMS yorum isteği */
.scene-sms { flex: 1; display: flex; flex-direction: column; gap: 0.5rem; padding-top: 0.3rem; }
.scene-sms .bub u { text-decoration: underline; text-decoration-color: rgba(245,244,241,0.5); }
.scene-sms__star { margin-top: auto; align-self: center; font-size: 0.78rem; color: #e8a13a; letter-spacing: 0.08em; text-align: center; }
.scene-sms__star em { display: block; font-style: normal; font-size: 0.56rem; color: #98958c; letter-spacing: 0.04em; margin-top: 0.15rem; }

/* Sahne: yorum + sahibin cevabı */
.scene-rev { flex: 1; display: flex; flex-direction: column; gap: 0.45rem; padding-top: 0.2rem; }
.scene-rev__item, .scene-rev__reply { background: var(--surface); border: 1px solid var(--line-strong); border-radius: 9px; padding: 0.5rem 0.6rem; }
.scene-rev__reply { margin-left: 0.7rem; border-left: 2px solid var(--accent); }
.scene-rev__who { display: flex; justify-content: space-between; align-items: baseline; gap: 0.4rem; margin-bottom: 0.2rem; }
.scene-rev__who b { font-size: 0.66rem; font-weight: 600; }
.scene-rev__who i { font-style: normal; font-size: 0.62rem; letter-spacing: 0.05em; color: #e8a13a; }
.scene-rev p { margin: 0; font-size: 0.62rem; line-height: 1.35; color: #454540; }
.scene-rev__meta { margin-top: auto; font-size: 0.56rem; color: #98958c; text-align: center; }

/* Sahne: GBP gönderisi */
.scene-post { flex: 1; display: flex; flex-direction: column; gap: 0.4rem; padding-top: 0.2rem; }
.scene-post__img { height: 42%; min-height: 4.2rem; border-radius: 9px; background: linear-gradient(135deg, #e6e3d9, #cfcabd); position: relative; overflow: hidden; }
.scene-post__img span { position: absolute; left: 12%; right: 12%; bottom: 18%; height: 34%; border-radius: 6px 6px 2px 2px; background: rgba(20,20,19,0.18); }
.scene-post b { font-size: 0.8rem; font-weight: 600; letter-spacing: -0.01em; }
.scene-post p { margin: 0; font-size: 0.64rem; line-height: 1.35; color: #454540; }
.scene-post__meta { margin-top: auto; font-size: 0.56rem; color: #98958c; }
@media (max-width: 760px) {
  /* Yeni sahneler eski 9/10.2 karta sığmıyordu (SMS yıldız satırı, cevap alt satırı kesiliyordu) */
  .deck__stage { aspect-ratio: 9 / 12.6; }
  .hero-sq__eyebrow { letter-spacing: 0.1em; }
  .scene-sms .bub { font-size: 0.56rem; padding: 0.36rem 0.5rem; line-height: 1.3; }
  .scene-sms__star { font-size: 0.66rem; }
  .scene-sms__star em, .scene-rev__meta, .scene-post__meta { font-size: 0.48rem; }
  .scene-rev p, .scene-post p { font-size: 0.54rem; }
  .scene-rev__who b { font-size: 0.6rem; }
  .scene-rev__item, .scene-rev__reply { padding: 0.34rem 0.45rem; }
  .scene-post__img { min-height: 3rem; }
  .scene-post b { font-size: 0.7rem; }
  .scene-book .row b { font-size: 0.6rem; }
}

/* Kurucu bandı (1 Eyl): yatay, fotoğraf solda kare, metin sağda. Zemin = fotoğrafın duvar rengi
   (örneklenen: sol #2b151b · üst #673840 · sağ #7a4952 · alt #160c11); fotoğraf sağa doğru zemine erir. */
.founder-band {
  --fc-bg: #3d1e26;
  display: grid; grid-template-columns: minmax(14rem, 19rem) 1fr; align-items: center;
  background: linear-gradient(100deg, #4a252e 0%, var(--fc-bg) 45%, #2e161c 100%);
  color: #f3e9eb; border-radius: 16px; overflow: hidden;
  box-shadow: 0 24px 60px -30px rgba(43, 21, 27, 0.6);
}
/* 3 Eyl: mask-image KALDIRILDI (iPhone Safari'de bant boş: maske + .reveal animasyonu birleşimi Safari çizim hatası şüphesi).
   Erime etkisi artık ::after gradyan örtüsüyle (zemin rengine), tarayıcı özelliğine bağlı değil. `inset` yerine dört kenar (iOS <14.5). */
.founder-band__media { position: relative; height: 100%; min-height: 17rem; }
.founder-band__media::after { content: ""; position: absolute; top: 0; right: 0; bottom: 0; left: 0; pointer-events: none;
  background: linear-gradient(90deg, rgba(61,30,38,0) 65%, #3d1e26 100%); }
.founder-band__photo {
  display: block; width: 100%; height: 100%; min-height: 17rem; aspect-ratio: 1 / 1; object-fit: cover; object-position: 50% 25%;
}
.founder-band__body { padding: clamp(1.4rem, 3vw, 2.4rem) clamp(1.4rem, 3.5vw, 2.8rem); display: grid; gap: 0.9rem; max-width: 46rem; }
.founder-card__eyebrow { margin: 0; font-size: var(--fs-xs); letter-spacing: 0.22em; text-transform: uppercase; color: #cfa9b0; }
.founder-card__eyebrow::before { content: "\2731 "; color: var(--accent); letter-spacing: 0; } /* U+2731 ✱: emoji karşılığı YOK. ✳ (U+2733) Safari/WebKit'te yeşil emoji çiziyordu, FE0E de yetmedi (3 Eyl) */
.founder-band__quote { margin: 0; font-size: clamp(1.1rem, 1rem + 0.5vw, 1.4rem); line-height: 1.4; letter-spacing: -0.01em; color: #f3e9eb; text-wrap: pretty; }
.founder-band__who { margin: 0; display: grid; gap: 0.15rem; font-size: var(--fs-sm); }
.founder-band__who b { font-weight: 600; }
.founder-band__who span { color: #cfa9b0; font-size: var(--fs-xs); }
.founder-band__who a { color: inherit; }
.founder-band .btn--light { background: #f3e9eb; color: #2e161c; }
.founder-band .btn--light:hover { background: var(--accent); color: #fff; }
@media (max-width: 760px) {
  .founder-band { grid-template-columns: 1fr; }
  .founder-band__media { min-height: 0; }
  .founder-band__media::after { background: linear-gradient(180deg, rgba(61,30,38,0) 65%, #3d1e26 100%); }
  .founder-band__photo { min-height: 0; aspect-ratio: 4 / 3; object-position: 50% 20%; }
  .founder-band__body { margin-top: -2rem; position: relative; }
}

/* SSS bölümü ana sayfada */
.faqs { border-top: 1px solid var(--line); }
.faqs .page { padding-bottom: var(--sp-xl); }
.faqs .faq-list { margin-top: var(--sp-md); }
.faqs .contact-actions { align-items: center; }

/* Hukuk sayfaları */
.legal h1 { font-size: var(--fs-xl); font-weight: 500; letter-spacing: -0.025em; margin: 0 0 var(--sp-sm); }
.legal h2 { font-size: var(--fs-md); font-weight: 600; margin-top: var(--sp-lg); }
.legal p { color: var(--muted); }
.legal a { color: var(--accent); }
.legal__back { display: inline-block; margin-bottom: var(--sp-lg); color: var(--muted); text-decoration: none; }
.legal__meta { margin-top: 2.5rem; }

/* (1 Eyl: eski iki sütunlu bar kuralı kaldırıldı; .sticky-cta artık yüzen hap düğme) */

/* ============================================================
   MOBİL BÖLÜM YÜKSEKLİĞİ — dosyanın SONUNDA olmak zorunda:
   .hero-sq kendi min-height'ını daha aşağıda tanımlıyor, aynı özgüllükte
   sonraki kural kazanıyor. Yapışkan [Ara|WhatsApp] barı + (≤520px'te)
   iki satıra inen menü payı burada düşülür.
   ============================================================ */
@media (max-width: 760px) {
  .hero-sq, .funnel, .pack, .how { min-height: calc(100svh - var(--nav-h) - 3.6rem); }
}
@media (max-width: 520px) {
  .hero-sq, .funnel, .pack, .how { min-height: calc(100svh - 9.8rem); }
}
