/* ==========================================================================
   Sinepia — Tasarım Sistemi (style.css)  ·  Aydınlık & Enerjik
   %100 statik, dış kaynak yok. Emoji yok; ikonlar inline SVG.
   Responsive: 1024 / 900 / 720 / 560 / 400 kırılımları test edilir.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Değişkenler
   -------------------------------------------------------------------------- */
:root {
  --red: #E53935;
  --red-2: #FF5A57;
  --red-ink: #C4231F;          /* koyu kırmızı — açık zeminde metin */
  --ink: #17172A;              /* başlıklar */
  --body: #3E3E4E;             /* gövde metni */
  --muted: #6E6E80;            /* silik */
  --bg: #FFFFFF;
  --bg-tint: #FFF6F5;          /* sıcak açık kırmızı */
  --bg-tint-2: #FFEFED;
  --surface: #FFFFFF;
  --line: #F1E9E9;
  --line-2: #E7DEDE;

  --grad: linear-gradient(135deg, #E53935 0%, #FF5A57 100%);
  --grad-band: linear-gradient(130deg, #FF5A57 0%, #E53935 48%, #C4231F 100%);
  --grad-text: linear-gradient(120deg, #E53935 0%, #FF5A57 100%);

  --r-sm: 12px; --r: 18px; --r-lg: 26px; --r-xl: 34px; --r-pill: 999px;

  --sh-sm: 0 2px 12px rgba(23,23,42,.05);
  --sh-md: 0 14px 34px rgba(23,23,42,.09);
  --sh-lg: 0 28px 64px rgba(23,23,42,.14);
  --sh-red: 0 12px 28px rgba(229,57,53,.32);
  --sh-red-lg: 0 22px 50px rgba(229,57,53,.40);

  --t: .28s cubic-bezier(.22,1,.36,1);
  --t-fast: .16s ease;

  --head-h: 70px;
  --maxw: 1200px;

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, "Apple Color Emoji", sans-serif;
}

/* --------------------------------------------------------------------------
   2. Reset & taban
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
input, button, select, textarea { font-family: inherit; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--head-h) + 14px);
  /* Windows'ta scrollbar her zaman yer kaplar; kısa/uzun sayfalar arası geçişte
     ortalanmış içeriğin yatay kaymasını (jump) önlemek için gutter'ı sabitle */
  scrollbar-gutter: stable;
}
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;           /* dekoratif blob'lar yatay kaydırma yaratmasın */
}
img, svg { max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { color: var(--ink); margin: 0; line-height: 1.1; letter-spacing: -0.02em; font-weight: 800; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 3px solid rgba(229,57,53,.45); outline-offset: 2px; border-radius: 4px; }

/* --------------------------------------------------------------------------
   3. Layout
   -------------------------------------------------------------------------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(18px, 4vw, 34px); }

.section { position: relative; padding-block: clamp(24px, 3vw, 48px); }
.section-tight { padding-block: clamp(18px, 2.4vw, 36px); }
.section-alt { background: var(--bg-tint); box-shadow: inset 0 1px 0 var(--line-2), inset 0 -1px 0 var(--line-2); }
/* Kart-ağırlıklı bölümler (iş ortaklığı / indir CTA): kartın kendi iç boşluğu var, dış boşluğu kıs */
.section-card { padding-block: clamp(16px, 2.2vw, 32px); }
/* Section dividers: aynı arka plan bölümler arasında ince çizgi */
main .section + .section { border-top: 1px solid var(--line); }
main .section-alt,
main .section-alt + .section,
main .section-card,
main .stat-band,
main .download-cta { border-top: 0; }

/* Yasal doküman sayfaları (Gizlilik, Kullanıcı Sözleşmesi):
   kart yığını yerine TEK sürekli belge sayfası. İçerik bölümleri .legal-sheet-wrap
   içinde tek beyaz sayfada toplanır; bölümler ince ayraçla ayrılır. */
.legal-doc { background: var(--bg-tint); padding-bottom: clamp(40px, 6vw, 72px); }
.legal-doc .section-alt { background: transparent; box-shadow: none; }
.legal-doc .section + .section { border-top: 0; }

/* Başlık bölümü — sayfanın üstünde, ortalı */
.legal-doc > .section:first-child { text-align: center; }
.legal-doc > .section:first-child .container { max-width: 720px; }

/* Tek belge sayfası (beyaz, yumuşak gölge, yuvarlak köşe) */
.legal-sheet-wrap {
  width: min(860px, calc(100% - clamp(28px, 8vw, 48px)));
  margin: 0 auto;
  background: #fff;
  border: 1px solid rgba(23, 23, 42, .06);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-md);
  overflow: hidden;
}
.legal-sheet-wrap .section { padding-block: 0; border-top: 0; }
.legal-sheet-wrap .container { max-width: none; padding-inline: clamp(22px, 4vw, 52px); }
.legal-sheet-wrap .card {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  margin: 0;
  padding: clamp(24px, 3.2vw, 38px) 0;
}
/* Bölümler arası ince ayraç */
.legal-sheet-wrap .section + .section .card { border-top: 1px solid rgba(23, 23, 42, .07); }

/* Yasal metin içi bağlantılar — kırmızı, altı çizili (buton bağlantıları hariç) */
.legal-doc .card a:not(.btn) {
  color: var(--red-ink);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}
.legal-doc .card a:not(.btn):hover { color: var(--red); }

.section-head { max-width: 720px; margin: 0 auto clamp(22px, 3vw, 36px); text-align: center; }
.section-head h2 { font-size: clamp(19px, 2vw, 25px); }
.section-title { font-size: clamp(19px, 2vw, 25px); }
.section-sub { margin-top: 12px; color: var(--muted); font-size: clamp(13.5px, 1.2vw, 15.5px); }
.section-cta { margin-top: clamp(18px, 2.6vw, 30px); text-align: center; }

/* Izgaralar — tek başına da çalışır (display:grid), taşma korumalı minmax(0,..) */
.grid-2, .grid-3 { display: grid; gap: clamp(16px, 2.4vw, 28px); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 900px) { .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   4. Eyebrow (pill etiket)
   -------------------------------------------------------------------------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 15px; border-radius: var(--r-pill);
  background: var(--bg-tint-2); color: var(--red-ink);
  font-size: 12.5px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: 18px;   /* rozet ile başlık arası tutarlı nefes payı */
}
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--grad); box-shadow: 0 0 0 3px rgba(229,57,53,.15); }
/* Flex satırındaki rozet (SSS kategori başlıkları): margin-bottom dikey boşluk yaratmaz, hizayı bozar → sıfırla */
.faq-category-head .eyebrow { margin-bottom: 0; }

/* İçerik dikey ritmi — art arda paragraflar ve başlık→gövde yapışmasın */
.prose h2 { margin: 0 0 14px; }
.prose p + p { margin-top: 14px; }
.legal-doc .card h2 { margin-bottom: 10px; }
.legal-doc .card p + p { margin-top: 10px; }
.legal-doc .card .check-list { margin: 12px 0; }
.legal-doc .card .check-list + p { margin-top: 12px; }

/* --------------------------------------------------------------------------
   5. Butonlar (pill + parıltı)
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 26px; border-radius: var(--r-pill);
  font-size: 15px; font-weight: 800; letter-spacing: -.01em;
  cursor: pointer; border: 0; white-space: nowrap;
  transition: transform var(--t), box-shadow var(--t), background var(--t), color var(--t);
}
.btn-primary { background: var(--grad); color: #fff; box-shadow: var(--sh-red); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--sh-red-lg); }
.btn-ghost {
  background: #fff; color: var(--ink);
  border: 2px solid var(--line-2);
}
.btn-ghost:hover { transform: translateY(-3px); border-color: var(--red); color: var(--red-ink); box-shadow: var(--sh-md); }
.btn.big { padding: 16px 32px; font-size: 16px; }

.link-arrow { display: inline-flex; align-items: center; gap: 7px; color: var(--red-ink); font-weight: 800; }
.link-arrow::after { content: "→"; transition: transform var(--t); }
.link-arrow:hover::after { transform: translateX(5px); }

/* --------------------------------------------------------------------------
   6. Header
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.82);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--t), border-color var(--t), background var(--t);
}
.site-header.scrolled { box-shadow: 0 6px 26px rgba(23,23,42,.08); border-bottom-color: var(--line); }
.nav { display: flex; align-items: center; gap: 22px; height: var(--head-h); }
.nav-logo { display: inline-flex; align-items: center; flex: none; }
.nav-logo img { height: 30px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 4px; margin-left: 6px; }
.nav-link {
  padding: 9px 13px; border-radius: var(--r-pill);
  font-size: 14.5px; font-weight: 700; color: var(--body);
  transition: color var(--t-fast), background var(--t-fast);
}
.nav-link:hover { color: var(--red-ink); background: var(--bg-tint); }
.nav-link.active { color: var(--red-ink); background: var(--bg-tint-2); }
.nav-actions { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.nav-cta-mobile { display: none; }  /* yalnızca dar mobil menüde görünür */

.lang-switch { display: inline-flex; background: var(--bg-tint); border-radius: var(--r-pill); padding: 3px; }
.lang-btn {
  border: 0; background: transparent; cursor: pointer;
  padding: 6px 12px; border-radius: var(--r-pill);
  font-size: 12.5px; font-weight: 800; color: var(--muted); transition: all var(--t-fast);
}
.lang-btn.active { background: var(--grad); color: #fff; box-shadow: var(--sh-red); }
.nav-actions .btn-primary { padding: 11px 20px; font-size: 14px; }

/* Hamburger */
.nav-toggle { display: none; width: 40px; height: 40px; border: 0; background: transparent; cursor: pointer; position: relative; flex: none; }
.nav-toggle .bars, .nav-toggle .bars::before, .nav-toggle .bars::after {
  position: absolute; width: 20px; height: 2px; border-radius: 2px; background: var(--ink); transition: transform var(--t), opacity var(--t-fast); content: "";
}
/* .bars butona göre (ortalanır); ::before/::after ise .bars'a göre konumlanır (left:0 ile hizalı) */
.nav-toggle .bars { left: 10px; top: 19px; }
.nav-toggle .bars::before { left: 0; top: -6px; }
.nav-toggle .bars::after { left: 0; top: 6px; }
body.nav-open .nav-toggle .bars { background: transparent; }
body.nav-open .nav-toggle .bars::before { transform: translateY(6px) rotate(45deg); }
body.nav-open .nav-toggle .bars::after { transform: translateY(-6px) rotate(-45deg); }

.nav-scrim {
  position: fixed; inset: var(--head-h) 0 0; z-index: 90;
  background: rgba(23,23,42,.4); opacity: 0; visibility: hidden;
  transition: opacity var(--t), visibility var(--t);
}
body.nav-open .nav-scrim { opacity: 1; visibility: visible; }

@media (max-width: 1024px) {
  /* Hamburger, dil pili ile uyumlu yumuşak bir ikon-buton olur */
  .nav-toggle {
    display: block; background: var(--bg-tint); border-radius: 13px;
    transition: background var(--t-fast);
  }
  .nav-toggle:hover { background: var(--bg-tint-2); }
  .nav-links {
    position: fixed; top: var(--head-h); left: 0; right: 0; z-index: 95;
    flex-direction: column; align-items: stretch; gap: 6px; margin: 0;
    background: #fff; padding: 20px clamp(18px,4vw,34px) 30px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--sh-lg);
    transform: translateY(-14px); opacity: 0; visibility: hidden; pointer-events: none;
    transition: transform var(--t), opacity var(--t), visibility var(--t);
    max-height: calc(100vh - var(--head-h)); overflow-y: auto;
  }
  body.nav-open .nav-links { transform: none; opacity: 1; visibility: visible; pointer-events: auto; }
  /* Tam genişlik satır: metin solda, chevron sağda — boş sağ alanı doldurur, net tıklama satırı olur */
  .nav-link {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    padding: 15px 18px; font-size: 16px; border-radius: var(--r);
  }
  .nav-link::after {
    content: ""; flex: none; width: 9px; height: 9px; margin-right: 2px;
    border-right: 2px solid currentColor; border-top: 2px solid currentColor;
    border-radius: 1px; transform: rotate(45deg); opacity: .3;
  }
  /* Hamburger aktifken İndir, header çubuğundan menünün altına taşınır —
     böylece çubuk her mobil/tablet genişlikte sade kalır: logo + TR/EN + hamburger */
  .nav-actions .btn-primary { display: none; }
  .nav-cta-mobile { display: block; margin-top: 12px; }
  .nav-cta-mobile .btn { width: 100%; justify-content: center; }
}

/* --------------------------------------------------------------------------
   7. Dekoratif blob'lar (float)
   -------------------------------------------------------------------------- */
.blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .5; z-index: 0; pointer-events: none; }
.blob-red { background: radial-gradient(circle, rgba(255,90,87,.7), transparent 68%); }
.blob-pink { background: radial-gradient(circle, rgba(229,57,53,.45), transparent 68%); }
.float { animation: floaty 9s ease-in-out infinite; }
.float-2 { animation: floaty 11s ease-in-out infinite reverse; }
@keyframes floaty { 0%,100% { transform: translateY(0) translateX(0); } 50% { transform: translateY(-24px) translateX(10px); } }

/* --------------------------------------------------------------------------
   8. Hero
   -------------------------------------------------------------------------- */
.hero { overflow: hidden; padding-block: clamp(36px, 5vw, 64px); }
.hero .blob-1 { width: 460px; height: 460px; top: -160px; right: -120px; }
.hero .blob-2 { width: 380px; height: 380px; bottom: -180px; left: -140px; }
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.06fr .94fr; gap: clamp(28px, 4vw, 56px); align-items: center;
}
.hero-copy { max-width: 600px; }
.hero-copy h1 { font-size: clamp(25px, 3vw, 38px); margin: 0 0 14px; }
.hero-copy h1 .accent { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-copy .lead { font-size: clamp(14.5px, 1.2vw, 16.5px); color: var(--body); max-width: 540px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.hero-secondary { margin-top: 18px; }
.hero-trust { margin-top: 22px; display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 13.5px; font-weight: 600; flex-wrap: wrap; }
.hero-trust strong { color: var(--ink); font-weight: 800; }

.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; min-width: 0; }
.phone-mockup { width: 100%; max-width: 300px; height: auto; display: block; filter: drop-shadow(0 30px 60px rgba(23,23,42,.22)); position: relative; z-index: 2; }

/* Yüzen format çipleri (hero görselinin etrafında) */
.float-chip {
  position: absolute; z-index: 3;
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 15px; border-radius: var(--r-pill);
  background: #fff; box-shadow: var(--sh-md);
  font-size: 13px; font-weight: 800; color: var(--ink);
}
.float-chip .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--grad); }
.float-chip.c1 { top: 10%; left: -6%; }
.float-chip.c2 { top: 46%; right: -8%; }
.float-chip.c3 { bottom: 8%; left: 0%; }
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: clamp(24px, 6vw, 40px); }
  .hero-copy { max-width: 640px; }
  .hero-visual { max-width: 340px; margin-inline: auto; }
  .phone-mockup { max-width: 250px; }
}
@media (max-width: 520px) { .float-chip.c1 { left: 0; } .float-chip.c2 { right: 0; } .float-chip { font-size: 12px; padding: 8px 13px; } }

/* --------------------------------------------------------------------------
   9. Marquee (kayan format şeridi)
   -------------------------------------------------------------------------- */
.marquee { overflow: hidden; padding-block: 16px; border-block: 1px solid var(--line); background: #fff; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; width: max-content; gap: 0; animation: marquee 34s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item { display: inline-flex; align-items: center; gap: 10px; padding: 0 20px; font-size: clamp(13px, 1.3vw, 16px); font-weight: 800; color: var(--ink); letter-spacing: -.02em; }
.marquee-item::after { content: "●"; color: var(--red); font-size: 11px; margin-left: 26px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* --------------------------------------------------------------------------
   10. İstatistik bandı (tam genişlik gradient + sayaçlar)
   -------------------------------------------------------------------------- */
.stat-band { background: var(--grad-band); color: #fff; overflow: hidden; position: relative; }
.stat-band .blob { opacity: .22; filter: blur(70px); }
.stat-band .blob-a { width: 420px; height: 420px; background: radial-gradient(circle,#fff,transparent 68%); top: -200px; left: 8%; }
.stat-strip { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: clamp(18px,3vw,32px); text-align: center; }
.stat { min-width: 0; }
.stat-num, .stat .count { display: block; font-size: clamp(20px, 2.2vw, 28px); font-weight: 800; letter-spacing: -.03em; line-height: 1; }
.stat-label { display: block; margin-top: 8px; font-size: clamp(12.5px,1.2vw,14px); font-weight: 600; color: rgba(255,255,255,.85); }
@media (max-width: 760px) { .stat-strip { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 30px 18px; } }

/* --------------------------------------------------------------------------
   11. Kartlar (feature / value / step / mission)
   -------------------------------------------------------------------------- */
.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: clamp(14px, 1.8vw, 20px);
  box-shadow: var(--sh-sm); transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  min-width: 0;
}
.feature-card:hover, .value-card:hover, .step-card:hover, .plan-card:hover, .mission-card:hover, .contact-card:hover {
  transform: translateY(-4px); box-shadow: var(--sh-lg); border-color: transparent;
}
.card h3 { font-size: clamp(15px, 1.5vw, 17px); margin-bottom: 6px; }
.card p { color: var(--muted); font-size: 14px; }

/* İkon rozetleri — sınırlı SVG boyutu (şişmeyi engeller) */
.feature-ico, .card-ico, .contact-ico, .value-ico, .icon-badge {
  flex: none; display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--grad); color: #fff; margin-bottom: 12px;
  box-shadow: var(--sh-red);
}
.feature-ico svg, .card-ico svg, .contact-ico svg, .value-ico svg, .icon-badge svg { width: 22px; height: 22px; flex: none; }
.feature-ico svg[stroke], .icon-badge svg[stroke] { stroke: #fff; fill: none; }

/* --------------------------------------------------------------------------
   12. Adımlar (numaralı akış)
   -------------------------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: clamp(16px,2.4vw,26px); counter-reset: step; }
.step-card { position: relative; }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 10px; margin-bottom: 12px;
  background: var(--grad); color: #fff; font-weight: 900; font-size: 15px; box-shadow: var(--sh-red);
}
.step-body { min-width: 0; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   13. Planlar (üyelik)
   -------------------------------------------------------------------------- */
.plans { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: clamp(18px,2.6vw,28px); }
.plan-card { display: flex; flex-direction: column; }
.plan-card.featured { border: 2px solid var(--red); box-shadow: var(--sh-red); position: relative; }
.plan-badge { position: absolute; top: -13px; left: 26px; background: var(--grad); color: #fff; font-size: 12px; font-weight: 800; padding: 6px 14px; border-radius: var(--r-pill); box-shadow: var(--sh-red); letter-spacing: .02em; }
.plan-tag { display: inline-block; font-size: 12.5px; font-weight: 800; color: var(--red-ink); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 12px; }
.plan-card h3 { font-size: clamp(16px, 1.8vw, 20px); }
.plan-price { font-size: clamp(20px,2.2vw,27px); font-weight: 800; color: var(--ink); margin: 4px 0 3px; }
.plan-list { margin: 14px 0 18px; display: grid; gap: 9px; }
.plan-list li { position: relative; padding-left: 26px; color: var(--body); font-size: 14px; font-weight: 500; }
.plan-list li::before {
  content: ""; position: absolute; left: 0; top: 2px; width: 17px; height: 17px; border-radius: 50%;
  background: var(--bg-tint-2) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E53935' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 11px no-repeat;
}
.plan-card .btn { margin-top: auto; width: 100%; }
@media (max-width: 620px) { .plans { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   14. İş ortaklığı şeridi (ana sayfa — enerjik gradient kart)
   -------------------------------------------------------------------------- */
.partner-strip {
  position: relative; overflow: hidden; color: #fff;
  background: var(--grad-band);
  border: 0; border-radius: var(--r-xl); box-shadow: var(--sh-red-lg);
  padding: clamp(22px, 3vw, 42px);
  display: grid; grid-template-columns: 1.4fr auto; align-items: center; gap: clamp(20px,2.6vw,32px);
}
.partner-strip .blob { opacity: .2; }
.partner-strip .blob-p { width: 360px; height: 360px; background: radial-gradient(circle,#fff,transparent 66%); top: -160px; right: -80px; }
.partner-copy { position: relative; z-index: 1; min-width: 0; }
.partner-copy .eyebrow { background: rgba(255,255,255,.18); color: #fff; }
.partner-copy .eyebrow::before { background: #fff; box-shadow: 0 0 0 3px rgba(255,255,255,.25); }
.partner-copy h2 { color: #fff; font-size: clamp(18px,2.2vw,26px); margin: 0 0 10px; }
.partner-copy p { color: rgba(255,255,255,.92); font-size: clamp(13.5px,1.2vw,15px); max-width: 640px; }
.partner-cta { position: relative; z-index: 1; }
.partner-cta .btn { background: #fff; color: var(--red-ink); box-shadow: 0 14px 30px rgba(0,0,0,.18); }
.partner-cta .btn:hover { transform: translateY(-3px); box-shadow: 0 20px 44px rgba(0,0,0,.26); }
@media (max-width: 820px) { .partner-strip { grid-template-columns: 1fr; text-align: left; } .partner-cta .btn { width: 100%; } }

/* --------------------------------------------------------------------------
   15. İndir CTA
   -------------------------------------------------------------------------- */
.download-cta .container { position: relative; }
.cta-card {
  position: relative; overflow: hidden; text-align: center;
  background: var(--ink); color: #fff; border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 52px) clamp(20px,3vw,36px); box-shadow: var(--sh-lg);
}
.cta-card .blob { opacity: .5; }
.cta-card .blob-c { width: 380px; height: 380px; background: radial-gradient(circle, rgba(255,90,87,.6), transparent 66%); top: -160px; right: -80px; }
.cta-card .blob-c2 { width: 320px; height: 320px; background: radial-gradient(circle, rgba(229,57,53,.5), transparent 66%); bottom: -160px; left: -80px; }
.cta-box { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.cta-card .eyebrow { background: rgba(255,255,255,.14); color: #fff; }
.cta-card .eyebrow::before { background: #fff; }
.cta-card h2 { color: #fff; font-size: clamp(19px,2.2vw,26px); margin: 0 0 10px; }
.cta-card p { color: rgba(255,255,255,.8); font-size: clamp(13.5px,1.2vw,15.5px); }
.cta-actions { margin-top: 26px; display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* --------------------------------------------------------------------------
   16. Store rozetleri
   -------------------------------------------------------------------------- */
.store-badges { display: flex; flex-wrap: wrap; gap: 12px; }
.store-badges-center { justify-content: center; }
.store-badge {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 12px 20px; border-radius: 15px;
  background: var(--ink); color: #fff;
  border: 1.5px solid rgba(255,255,255,.12);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t), background var(--t);
}
.store-badge:hover { transform: translateY(-3px); box-shadow: var(--sh-md); border-color: rgba(255,255,255,.28); }
.store-badge svg { width: 26px; height: 26px; fill: #fff; flex: none; }
.store-tx { display: flex; flex-direction: column; line-height: 1.15; }
.store-tx small { font-size: 10px; opacity: .65; font-weight: 500; }
.store-tx strong { font-size: 15.5px; font-weight: 800; letter-spacing: -.01em; }
/* Footer: glass efekti — koyu arka plandan ayrışır */
.site-footer .store-badge { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18); }
.site-footer .store-badge:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.35); box-shadow: 0 8px 22px rgba(0,0,0,.3); }
/* CTA kartı: koyu zeminde öne çıkan, hafif kabartmalı beyaz rozetler */
.cta-card .store-badge {
  background: linear-gradient(180deg, #ffffff 0%, #f0f1f4 100%);
  color: var(--ink); border-color: transparent;
  box-shadow: 0 10px 24px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.9);
}
.cta-card .store-badge:hover {
  background: linear-gradient(180deg, #ffffff 0%, #e9ebef 100%);
  transform: translateY(-3px); border-color: transparent;
  box-shadow: 0 18px 36px rgba(0,0,0,.38), inset 0 1px 0 rgba(255,255,255,.95);
}
/* Logo, koyu yuvarlak bir çip üzerinde durur — rozeti markalı ve tıklanabilir hissettirir */
.cta-card .store-badge svg {
  box-sizing: content-box; width: 20px; height: 20px; padding: 7px;
  border-radius: 10px; background: var(--ink); fill: #fff;
}

/* --------------------------------------------------------------------------
   17. Güven şeridi (ana sayfa)
   -------------------------------------------------------------------------- */
.trust-strip .trust-title { text-align: center; color: var(--muted); font-weight: 700; font-size: 14px; letter-spacing: .04em; margin-bottom: 22px; }
.trust-stats { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: clamp(14px,2vw,22px); }
.stat-card { text-align: center; }
.stat-card .stat-num { font-size: clamp(20px,2.6vw,26px); color: var(--red-ink); }
.stat-card .stat-label { color: var(--muted); font-weight: 500; }
@media (max-width: 620px) { .trust-stats { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   18. İç sayfa hero (hero-sm)
   -------------------------------------------------------------------------- */
.hero-sm { overflow: hidden; padding-block: clamp(30px,3.6vw,52px); }
.hero-sm .blob-1 { width: 380px; height: 380px; top: -170px; right: -120px; }
.hero-sm-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(22px,3.4vw,44px); align-items: center; }
.hero-sm-text { max-width: 600px; min-width: 0; }
.hero-sm-text h1 { font-size: clamp(21px,2.4vw,30px); margin: 0 0 12px; }
.hero-sm-text h1 .accent { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sm-text .lead, .hero-sm-text > p { font-size: clamp(14px,1.2vw,16px); color: var(--body); }
.hero-sm-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: 18px; }
.hero-sm-art { display: flex; justify-content: center; align-items: center; min-width: 0; }
.hero-sm-art svg, .hero-sm-art img { width: 100%; max-width: 420px; height: auto; display: block; filter: drop-shadow(0 24px 48px rgba(23,23,42,.16)); }
@media (max-width: 860px) { .hero-sm-inner { grid-template-columns: 1fr; } .hero-sm-art { order: -1; } .hero-sm-art svg, .hero-sm-art img { max-width: 340px; } }

/* --------------------------------------------------------------------------
   19. Medya çerçevesi / genel görsel
   -------------------------------------------------------------------------- */
.media-frame { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-lg); background: var(--bg-tint); }
.media-frame svg, .media-frame img { display: block; width: 100%; height: auto; }
.mission-card { background: var(--grad-band); color: #fff; border: 0; box-shadow: var(--sh-red-lg); padding: clamp(28px, 4vw, 48px); }
.mission-card h2, .mission-card h3 { color: #fff; }
.mission-card p { color: rgba(255,255,255,.9); }

/* --------------------------------------------------------------------------
   20. SSS akordeon
   -------------------------------------------------------------------------- */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 10px; }
.faq-item {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r); overflow: hidden;
  transition: box-shadow var(--t), border-color var(--t), background var(--t), transform var(--t);
}
.faq-item:not(.open):hover { border-color: var(--line-2); box-shadow: var(--sh-sm); transform: translateY(-1px); }
.faq-item.open {
  border-color: rgba(229,57,53,.2);
  background: linear-gradient(120deg, var(--bg-tint-2) 0%, var(--surface) 58%);
  box-shadow: inset 3px 0 0 var(--red), var(--sh-md);
}
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 17px 20px; font-size: clamp(14.5px,1.5vw,15.5px); font-weight: 700;
  color: var(--ink); transition: color var(--t-fast);
}
.faq-item.open .faq-q { color: var(--red-ink); }
.faq-ico-wrap {
  flex: none; width: 30px; height: 30px; border-radius: 50%;
  background: var(--bg-tint); border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background var(--t), border-color var(--t), transform var(--t-fast);
}
.faq-item:not(.open):hover .faq-ico-wrap { background: var(--bg-tint-2); transform: translateY(2px); }
.faq-item.open .faq-ico-wrap { background: var(--grad); border-color: transparent; }
.faq-q svg.faq-ico { flex: none; width: 15px; height: 15px; stroke: var(--muted); transition: transform var(--t), stroke var(--t-fast); }
.faq-item.open .faq-q svg.faq-ico { transform: rotate(180deg); stroke: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--t); }
.faq-a p, .faq-a-inner { margin: 0; padding: 2px 20px 20px; color: var(--body); font-size: 14.5px; line-height: 1.72; }

/* FAQ kategori başlıkları — belirgin başlık + soru sayısı rozeti */
.faq-cat { max-width: 820px; margin-inline: auto; }
.faq-cat + .faq-cat { margin-top: clamp(34px, 4vw, 52px); }
.faq-category-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.faq-category-head::before {
  content: ''; flex: none; width: 5px; height: 22px;
  background: var(--grad); border-radius: 3px;
}
.faq-cat-title { font-size: clamp(16px, 1.8vw, 19px); font-weight: 800; color: var(--ink); letter-spacing: -.01em; }

/* --------------------------------------------------------------------------
   21. Formlar
   -------------------------------------------------------------------------- */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(16px,2.2vw,26px); box-shadow: var(--sh-md); }
.form { display: grid; gap: 16px; }
.form-row { display: grid; gap: 7px; }
.form-row.cols-2 { grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .form-row.cols-2 { grid-template-columns: 1fr; } }
.field-label, .form label { font-size: 13.5px; font-weight: 700; color: var(--ink); }
.field input, .field select, .field textarea,
.form-row input, .form-row select, .form-row textarea {
  font-family: inherit; font-size: 15px; color: var(--ink);
  padding: 12px 14px; border: 1.5px solid var(--line-2); border-radius: 12px;
  background: #fff; width: 100%; min-height: 46px;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.field textarea, .form-row textarea { min-height: 130px; resize: vertical; line-height: 1.5; }
.field input:focus, .field select:focus, .field textarea:focus,
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none; border-color: var(--red); box-shadow: 0 0 0 4px rgba(229,57,53,.14);
}
.field input.invalid, .field select.invalid, .field textarea.invalid,
.form-row input.invalid, .form-row select.invalid, .form-row textarea.invalid { border-color: var(--red); box-shadow: 0 0 0 4px rgba(229,57,53,.12); }
.field-check { display: flex; align-items: flex-start; gap: 10px; }
.field-check input { width: 18px; height: 18px; min-height: 0; margin-top: 3px; flex: none; accent-color: var(--red); }
.field-check-tx { font-size: 13.5px; color: var(--muted); }
.field-error { display: none; color: var(--red-ink); font-size: 12.5px; font-weight: 600; }
.field-error.show { display: block; }
.form-actions { margin-top: 4px; }
.form-actions .btn { width: 100%; }
.form-note { font-size: 12.5px; color: var(--muted); margin-top: 12px; }
.form-status { display: none; margin-top: 14px; padding: 12px 15px; border-radius: 12px; font-size: 14px; font-weight: 600; }
.form-status.show { display: block; }
.form-status.ok { background: rgba(22,163,74,.10); color: #15803d; }
.form-status.err { background: var(--bg-tint-2); color: var(--red-ink); }

/* --------------------------------------------------------------------------
   22. İletişim sayfası
   -------------------------------------------------------------------------- */
.contact-info { display: grid; gap: 14px; align-content: start; }
.contact-card {
  display: flex; flex-direction: row; align-items: flex-start;
  gap: 16px; padding: clamp(16px,2vw,24px);
  background: linear-gradient(145deg, var(--bg-tint-2) 0%, var(--surface) 65%);
  position: relative; overflow: hidden;
}
.contact-card::before {
  content: ''; position: absolute; top: -32px; right: -32px;
  width: 110px; height: 110px;
  background: radial-gradient(circle, rgba(229,57,53,.11) 0%, transparent 68%);
  pointer-events: none;
}
.contact-card > div { flex: 1; min-width: 0; }
.contact-card .contact-ico {
  flex: none;
  margin-bottom: 0;
  width: 50px; height: 50px;
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(229,57,53,.30), 0 0 0 5px rgba(229,57,53,.08);
}
.contact-card .contact-ico svg { width: 24px; height: 24px; }
.contact-card h3 { font-size: 15.5px; font-weight: 700; margin-bottom: 5px; }
.contact-card p { font-size: 14px; color: var(--muted); margin: 0; }
.contact-mail { display: inline-block; margin-top: 9px; color: var(--red-ink); font-weight: 800; font-size: 14px; }
.contact-sub { font-size: 13.5px; margin: 9px 0 0; }
.contact-sub a { color: var(--red-ink); font-weight: 700; }
.contact-card .footer-social { margin: 12px 0 0; }
.contact-card .social-ico { width: 36px; height: 36px; background: var(--bg-tint); border-color: var(--line); }
.contact-card .social-ico svg { fill: var(--ink); }
.contact-card .social-ico:hover { background: var(--grad); border-color: transparent; }
.contact-card .social-ico:hover svg { fill: #fff; }
.form-card h2 { font-size: clamp(17px, 1.8vw, 20px); margin-bottom: 9px; }
.form-intro { font-size: 14px; color: var(--muted); margin: 0 0 18px; }
.form-check { flex-direction: row; align-items: flex-start; gap: 10px; }
.form-check label { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--body); line-height: 1.5; cursor: pointer; }
.form-check input[type="checkbox"] { width: 18px; height: 18px; margin-top: 2px; flex: none; accent-color: var(--red); cursor: pointer; }
.form-check a { color: var(--red-ink); font-weight: 700; text-decoration: underline; }

/* --- İş ortaklığı başvuru layoutu --- */
.partner-form-layout { display: grid; grid-template-columns: 1fr 1.85fr; gap: clamp(28px,5vw,60px); align-items: start; }
@media (max-width: 820px) { .partner-form-layout { grid-template-columns: 1fr; } }
.partner-aside { padding-top: 4px; }
.partner-aside h2 { font-size: clamp(19px,2vw,25px); margin: 0 0 10px; }
.partner-aside > p { font-size: 14.5px; color: var(--body); margin-bottom: 22px; line-height: 1.6; }
.partner-perk-list { display: grid; gap: 14px; margin: 0 0 26px; list-style: none; padding: 0; }
.partner-perk { display: flex; align-items: flex-start; gap: 12px; }
.partner-perk-ico { flex: none; width: 36px; height: 36px; border-radius: 10px; background: var(--grad); display: inline-flex; align-items: center; justify-content: center; box-shadow: var(--sh-red); }
.partner-perk-ico svg { width: 18px; height: 18px; fill: #fff; flex: none; }
.partner-perk-body strong { display: block; font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 2px; }
.partner-perk-body span { font-size: 13px; color: var(--muted); line-height: 1.4; }
.partner-direct { border-top: 1px solid var(--line); padding-top: 18px; }
.partner-direct p { font-size: 11px; color: var(--muted); margin-bottom: 5px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; }
.partner-direct a { font-size: 15px; font-weight: 700; color: var(--red-ink); text-decoration: underline; text-underline-offset: 3px; }

/* Onay listesi (gizlilik / haklar) */
.check-list { display: grid; gap: 12px; }
.check-list li { position: relative; padding-left: 28px; color: var(--body); font-size: 14px; line-height: 1.6; }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 2px; width: 18px; height: 18px; border-radius: 50%;
  background: var(--bg-tint-2) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E53935' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 11px no-repeat;
}

/* --------------------------------------------------------------------------
   23. Footer
   -------------------------------------------------------------------------- */
.site-footer { background: var(--ink); color: #fff; padding-block: clamp(48px,6vw,72px) 28px; position: relative; }
.site-footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--grad-band); }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.4fr; gap: clamp(28px,3vw,44px); }
.footer-brand img { height: 30px; width: auto; margin-bottom: 16px; }
.footer-brand p { color: rgba(255,255,255,.6); font-size: 14px; max-width: 340px; margin-bottom: 20px; }
.footer-col h4 { color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; }
.footer-links { display: grid; gap: 11px; }
.footer-links a { color: rgba(255,255,255,.62); font-size: 14.5px; transition: color var(--t-fast); }
.footer-links a:hover { color: #fff; }
.footer-social { display: flex; gap: 10px; margin: 16px 0; flex-wrap: wrap; }
.social-ico { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 12px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1); transition: all var(--t); }
.social-ico svg { width: 18px; height: 18px; fill: #fff; }
.social-ico:hover { background: var(--grad); border-color: transparent; transform: translateY(-3px); box-shadow: var(--sh-red); }
.footer-newsletter p { color: rgba(255,255,255,.6); font-size: 14px; margin-bottom: 10px; }
.footer-newsletter form { display: flex; gap: 8px; }
.footer-newsletter input { flex: 1; min-width: 0; padding: 11px 14px; border-radius: 12px; border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.06); color: #fff; font-size: 14px; }
.footer-newsletter input::placeholder { color: rgba(255,255,255,.5); }
.footer-newsletter input:focus { outline: none; border-color: var(--red-2); box-shadow: 0 0 0 3px rgba(229,57,53,.25); }
.footer-newsletter .btn { padding: 11px 18px; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; margin-top: clamp(34px,4vw,52px); padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.5); font-size: 13.5px; }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a { color: rgba(255,255,255,.5); }
.footer-legal a:hover { color: #fff; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   24. Scroll-reveal + stagger
   -------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .5s cubic-bezier(.22,1,.36,1), transform .5s cubic-bezier(.22,1,.36,1); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: none; }

.stagger > * { opacity: 0; transform: translateY(14px); transition: opacity .45s cubic-bezier(.22,1,.36,1), transform .45s cubic-bezier(.22,1,.36,1); }
.reveal.is-visible .stagger > * { opacity: 1; transform: none; }
.reveal.is-visible .stagger > *:nth-child(1) { transition-delay: .04s; }
.reveal.is-visible .stagger > *:nth-child(2) { transition-delay: .12s; }
.reveal.is-visible .stagger > *:nth-child(3) { transition-delay: .20s; }
.reveal.is-visible .stagger > *:nth-child(4) { transition-delay: .28s; }
.reveal.is-visible .stagger > *:nth-child(5) { transition-delay: .36s; }
.reveal.is-visible .stagger > *:nth-child(6) { transition-delay: .44s; }

/* --------------------------------------------------------------------------
   25. Yardımcılar
   -------------------------------------------------------------------------- */
.accent { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.text-muted { color: var(--muted); }
.center { text-align: center; }
.icon { display: inline-flex; }
.items-center { align-items: center; }

/* --------------------------------------------------------------------------
   27. İç sayfa ekleri (ortalı hero, grid-4, zaman çizelgesi, açık istatistik)
   -------------------------------------------------------------------------- */
.hero-sm-center { max-width: 760px; margin-inline: auto; text-align: center; }
.hero-sm-center h1 { font-size: clamp(21px, 2.4vw, 30px); margin: 0 0 12px; }
.hero-sm-center .lead { font-size: clamp(14px, 1.2vw, 16px); color: var(--body); }
.hero-sm-center .hero-cta { justify-content: center; margin-top: 18px; }

.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(16px, 2.2vw, 24px); }
@media (max-width: 980px) { .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 520px) { .grid-4 { grid-template-columns: 1fr; } }

/* Numaralı dikey zaman çizelgesi (adımlar) */
.timeline { max-width: 760px; margin-inline: auto; display: grid; gap: 14px; }
.timeline-step { position: relative; display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: start; }
.timeline-step:not(:last-child)::before { content: ""; position: absolute; left: 20px; top: 44px; bottom: -16px; width: 2px; transform: translateX(-1px); background: linear-gradient(var(--red), rgba(229,57,53,.12)); }
.timeline-num { flex: none; width: 40px; height: 40px; border-radius: 12px; background: var(--grad); color: #fff; font-weight: 900; font-size: 16px; display: inline-flex; align-items: center; justify-content: center; box-shadow: var(--sh-red); position: relative; z-index: 1; }
.timeline-body h3 { font-size: clamp(15px, 1.4vw, 16.5px); margin-bottom: 5px; }
.timeline-body p { font-size: 14px; color: var(--muted); }
.timeline-body { min-width: 0; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 15px 20px; box-shadow: var(--sh-sm); transition: transform var(--t), box-shadow var(--t); }
.timeline-body:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
@media (max-width: 520px) { .timeline-step { gap: 14px; } .timeline-num { width: 44px; height: 44px; font-size: 17px; border-radius: 13px; } .timeline-step:not(:last-child)::before { left: 22px; top: 46px; } }

/* Açık zeminde istatistik şeridi */
.stat-strip.light .stat-num { color: var(--red-ink); font-size: clamp(24px, 2.8vw, 34px); }
.stat-strip.light .stat-label { color: var(--muted); }
@media (max-width: 760px) { .stat-strip.light { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px 18px; } }

/* Ortalı vurgu kartı (misyon / paylaşım) */
.mission-card.center h2, .mission-card.center p { max-width: 720px; margin-inline: auto; }

/* --------------------------------------------------------------------------
   26. Hareket azaltma
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal, .stagger > * { opacity: 1 !important; transform: none !important; }
  .marquee-track, .float, .float-2 { animation: none !important; }
}

/* --------------------------------------------------------------------------
   28. Koyu CTA'da düğme varyantları
   -------------------------------------------------------------------------- */
.btn-white { background: #fff; color: var(--red-ink); box-shadow: 0 10px 26px rgba(0,0,0,.18); }
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(0,0,0,.26); }
.btn-dark-outline { background: rgba(255,255,255,.08); color: #fff; border: 2px solid rgba(255,255,255,.22); box-shadow: none; }
.btn-dark-outline:hover { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.36); transform: translateY(-3px); }

/* --------------------------------------------------------------------------
   29. Bölüm görsel ritmi — sade ayraç çizgisi
   -------------------------------------------------------------------------- */
.section-rule { border: 0; border-top: 1px solid var(--line); margin: 0; }
.section-alt + .section { border-top: 0; }
.section + .section-alt { border-top: 0; }

/* --------------------------------------------------------------------------
   30. Canlılık & mikro-etkileşimler
   (tümü transform/opacity tabanlı; prefers-reduced-motion ile otomatik kapanır)
   -------------------------------------------------------------------------- */

/* Vurgu kelimesinde yumuşakça akan gradyan */
.accent { background-size: 220% auto; animation: accent-flow 6s ease-in-out infinite; }
@keyframes accent-flow { 0%, 100% { background-position: 0% center; } 50% { background-position: 100% center; } }

/* Eyebrow noktası nabız gibi atar */
.eyebrow::before { animation: dot-pulse 2.6s ease-in-out infinite; }
@keyframes dot-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(229,57,53,.16); }
  50%      { box-shadow: 0 0 0 6px rgba(229,57,53,.04); }
}

/* İkon rozetleri kart hover'ında canlanır */
.feature-ico, .card-ico, .value-ico, .icon-badge, .contact-ico, .partner-perk-ico { transition: transform var(--t), box-shadow var(--t); }
.card:hover .feature-ico,
.card:hover .card-ico,
.card:hover .value-ico,
.card:hover .icon-badge,
.contact-card:hover .contact-ico { transform: scale(1.09) rotate(-5deg); }

/* Birincil düğmelerde ışık süpürme (hover) */
.btn-primary { position: relative; overflow: hidden; }
.btn-primary::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(115deg, transparent 34%, rgba(255,255,255,.35) 50%, transparent 66%);
  transform: translateX(-135%); transition: transform .7s cubic-bezier(.22,1,.36,1);
}
.btn-primary:hover::after { transform: translateX(135%); }

/* Öne çıkan plan kartı hafif nabız parlaması */
.plan-card.featured { animation: featured-glow 3.2s ease-in-out infinite; }
@keyframes featured-glow {
  0%, 100% { box-shadow: var(--sh-red); }
  50%      { box-shadow: 0 18px 46px rgba(229,57,53,.4); }
}

/* Zaman çizelgesi numarası hover'da hafif büyür */
.timeline-num { transition: transform var(--t), box-shadow var(--t); }
.timeline-step:hover .timeline-num { transform: scale(1.08); box-shadow: var(--sh-red-lg); }

/* Partner perk satırı hover'da hafif kayar + ikon canlanır */
.partner-perk { transition: transform var(--t-fast); }
.partner-perk:hover { transform: translateX(5px); }
.partner-perk:hover .partner-perk-ico { transform: scale(1.1) rotate(-5deg); }

/* Stat bandındaki büyük sayılara ışık vurgusu */
.stat-band .stat .count { background: linear-gradient(120deg, #fff 30%, rgba(255,255,255,.7) 70%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* --------------------------------------------------------------------------
   31. Paylaşım kartı (aile & arkadaş) — hafif, canlı 2 sütunlu kart
   -------------------------------------------------------------------------- */
.share-card {
  display: grid; grid-template-columns: auto 1fr; align-items: center;
  gap: clamp(22px, 4vw, 48px); padding: clamp(26px, 3.4vw, 42px) clamp(24px, 3vw, 44px);
  background: linear-gradient(135deg, var(--bg-tint-2) 0%, var(--surface) 62%);
  position: relative; overflow: hidden;
}
.share-card h2 { font-size: clamp(19px, 2vw, 26px); }
.share-card p { color: var(--body); font-size: clamp(14px,1.2vw,15.5px); max-width: 520px; margin-top: 10px; }
.share-visual { display: flex; justify-content: center; }
.share-avatars { display: flex; align-items: center; }
.share-av {
  width: clamp(54px, 6.5vw, 74px); height: clamp(54px, 6.5vw, 74px);
  border-radius: 50%; border: 4px solid var(--surface);
  background: var(--grad); box-shadow: var(--sh-md);
  display: grid; place-items: center; margin-left: -22px;
  animation: share-bob 4s ease-in-out infinite;
}
.share-av:first-child { margin-left: 0; }
.share-av:nth-child(2) { animation-delay: .35s; background: linear-gradient(135deg,#FF7A5C,#E5453B); }
.share-av:nth-child(3) { animation-delay: .7s; background: linear-gradient(135deg,#FF9A6B,#F0603C); }
.share-av svg { width: 46%; height: 46%; fill: #fff; }
@keyframes share-bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@media (max-width: 720px) {
  .share-card { grid-template-columns: 1fr; text-align: center; }
  .share-visual { order: -1; }
  .share-card p { margin-inline: auto; }
}

/* --------------------------------------------------------------------------
   32. Windows / farklı font metriği sağlamlaştırması
   Windows Chrome'da "Segoe UI" metni macOS'a göre daha geniş/uzun render olur;
   dar yerleşimler taşmasın veya üst üste binmesin diye savunmacı kurallar.
   -------------------------------------------------------------------------- */

/* Uzun kelime / e-posta / URL kutuyu taşırıp bozmasın */
body { overflow-wrap: break-word; }
h1, h2, h3, h4, p, li, a, .lead, .eyebrow, .btn { overflow-wrap: break-word; }

/* Grid/flex çocuklarının min-content kilidini aç — içerik kolonu taşırıp
   yan öğenin üstüne binmesin (Windows'ta en sık kayma/binme sebebi) */
.hero-copy, .hero-visual, .hero-sm-text, .hero-sm-art,
.partner-copy, .partner-aside, .footer-brand, .footer-col,
.card, .stat, .timeline-body, .contact-info, .form-card,
.plan-card, .feature-card, .value-card, .step-card { min-width: 0; }

/* Sticky header'daki backdrop-filter, Windows Chrome'da kaydırırken iz / çift
   render (üst üste binme) yapabiliyor → kendi compositing katmanına al */
.site-header { transform: translateZ(0); }

/* Hero: kolon arası boşluğu artır + soldaki yüzen çipleri telefona yaklaştır;
   böylece Windows'ta daha geniş hero metni çiplere binmez */
.hero-grid { gap: clamp(48px, 5vw, 76px); }
.float-chip.c1 { left: -1%; }
.float-chip.c3 { left: 4%; }
