/* ============================================================
   DigiCardSystem — Marketing Website CSS
   Modern SaaS landing page, mobile-first, Turkish UI
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400&family=Space+Grotesk:wght@500;600;700;800;900&display=swap');

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── Renkler: panelle aynı ÖLÇÜLMÜŞ değerler (bkz. design-tokens.css tablosu) ──
   Kural: metin rengi üç zeminde (yüzey / yüzey-2 / zemin) 4,5:1'i geçmeli.
   Eski --c-text-3 (#8fa0b3) beyazda 3,0:1 idi ve küçük etiketlerde kullanılıyordu;
   footer %28–50 beyaz alfa ile 2,4–2,6:1 idi (13 sayfa × 9 ihlal, ölçüldü).
   Düğme: marka kırmızısı (#e51e25) beyaz metinle 3,26:1 — büyük yüzeyde (hero
   arka planı, rozet) kalır, DÜĞME zemini koyu kırmızıdır: beyaz üstünde 5,97:1. */
:root {
  --c-bg:            #f6f7fb;
  --c-bg-dark:       #07101e;
  --c-surface:       #ffffff;
  --c-surface-2:     #f1f3f6;
  --c-border:        var(--t-border);
  --c-border-strong: var(--t-border-strong);
  /* İki katman: --t-* TEMA değeri (açık/koyu), --c-* kullanılan ad. Hero gibi yerel olarak
     koyu bir bölge --c-*'ı ezer; içindeki bir yüzey kartı --c-text: var(--t-text) ile tema
     değerine GERİ DÖNER. Tek katmanla bu mümkün değildi: hero'nun beyaz metni beyaz maket
     kartın içine sızdı (ölçüldü: 1,00:1). */
  --t-text:          #0d1627;
  --t-text-2:        #475467;   /* 7,69:1 */
  --t-text-3:        #5d6779;   /* 5,4:1 yüzey-2 üstünde */
  --t-border:        rgba(16,24,40,.10);
  --t-border-strong: rgba(16,24,40,.18);
  --t-primary-d:     #c41920;
  --c-text:          var(--t-text);
  --c-text-2:        var(--t-text-2);
  --c-text-3:        var(--t-text-3);
  --c-primary:       #e51e25;
  --c-primary-d:     var(--t-primary-d);
  --c-btn-bg:        #c41920;   /* beyaz metin 5,97:1 */
  --c-btn-bg-hover:  #a8151b;
  --c-btn-fg:        #ffffff;
  --c-primary-glow:  rgba(229,30,37,.2);
  --c-primary-faint: rgba(229,30,37,.06);
  --c-success:       #05603a;   /* beyazda 6,5:1 — eski #16a34a 3,3 idi (deneme notu, rozet) */
  --c-success-bg:    rgba(5,96,58,.10);
  --c-warn:          #d97706;
  --c-indigo:        #4f46e5;
  --c-link:          #3730a3;   /* metin içi bağlantı: beyazda 8,9:1; indigo koyu zeminde 3,0 kalıyordu */
  --c-teal:          #0d9488;
  --c-amber:         #d97706;
  --c-violet:        #7c3aed;
  /* fonts — Google Fonts first, system fallbacks */
  --font:          "Inter", "Aptos", "Segoe UI Variable Text", system-ui, sans-serif;
  --font-display:  "Space Grotesk", "Aptos Display", "Bahnschrift SemiCondensed", sans-serif;
  --radius-sm:     8px;
  --radius-md:     14px;
  --radius-lg:     22px;
  --radius-xl:     32px;
  --shadow-sm:     0 1px 4px rgba(0,0,0,.06);
  --shadow-md:     0 4px 24px rgba(0,0,0,.10);
  --shadow-lg:     0 16px 64px rgba(0,0,0,.14);
  --shadow-xl:     0 32px 80px rgba(0,0,0,.18);
  --trans:         .2s ease;
  --container:     1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Layout ───────────────────────────────────────────────── */
.ws-container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* ── Navbar ───────────────────────────────────────────────── */
.ws-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(246,247,251,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--c-border);
  box-shadow: 0 1px 0 rgba(0,0,0,.04);
}

.ws-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  min-height: 76px;
  padding-top: 6px;
  padding-bottom: 6px;
  gap: 12px;
}

.ws-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--c-text);
  white-space: nowrap;
  letter-spacing: -.01em;
}

.ws-logo-name {
  /* The brand text next to the mark; hidden on small phones */
}

.ws-logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--c-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .9rem;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 2px 8px var(--c-primary-glow);
}

/* Platform logosu (v1.28.0, /img/brand): şeffaf SVG, açık/koyu iki varyant; blend hilesi kalktı.
   Hangi varyantın görüneceğini .brand-img--light/--dark kuralları (site.css) seçer. */
.ws-logo-img {
  display: block;
  height: 44px;
  width: auto;
  max-width: min(299px, 70vw);
  object-fit: contain;
  object-position: left center;
  flex-shrink: 0;
}

.ws-nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  flex-wrap: nowrap;
  gap: 8px;
  min-width: 0;
  /* `overflow-x: auto` YOKTU değil, VARDI ve yanlıştı: 769–1180px arasında bağlantı
     listesi kaydırma çubuklu bir kutuya sıkışıyor, "Dijital Kart" iki satıra kırılıyor,
     "İletişim" "İl" diye kesiliyordu (canlıda 1024 ve 900px'te ölçüldü). Taşmayı
     kaydırmakla saklamak çözüm değil; menü sığmayınca hamburgere iner (aşağıda). */
}

.ws-nav-links a {
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: .875rem;
  font-weight: 500;
  color: var(--c-text-2);
  transition: color var(--trans), background var(--trans);
  letter-spacing: -.01em;
}

.ws-nav-links a:hover {
  color: var(--c-text);
  background: rgba(0,0,0,.05);
}

/* Etkin bağlantı: 14px metin, tint üstünde marka kırmızısı 3,88 kalıyordu → koyu kırmızı 5,4. */
.ws-nav-links a.active {
  color: var(--c-primary-d);
  background: rgba(229,30,37,.07);
  font-weight: 600;
}
html[data-theme="dark"] .ws-nav-links a.active { color: var(--c-primary); }

.ws-nav-cta {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 8px;
}

.ws-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--c-text);
  border-radius: var(--radius-sm);
}
.ws-nav-toggle:hover { background: rgba(0,0,0,.05); }

/* ── Buttons ──────────────────────────────────────────────── */
.ws-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;           /* dokunma hedefi; dar ekranda parmak, genişte fare */
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--trans);
  white-space: nowrap;
  border: none;
  text-decoration: none;
  letter-spacing: -.01em;
}

.ws-btn-primary {
  background: var(--c-btn-bg);
  color: var(--c-btn-fg);
  box-shadow: 0 2px 10px var(--c-primary-glow);
}
.ws-btn-primary:hover {
  background: var(--c-btn-bg-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px var(--c-primary-glow);
}
.ws-btn-primary:active { transform: translateY(0); }

.ws-btn-outline {
  background: transparent;
  color: var(--c-text);
  border: 1.5px solid var(--c-border-strong);
}
.ws-btn-outline:hover {
  background: rgba(0,0,0,.04);
  border-color: rgba(0,0,0,.2);
}

.ws-btn-ghost {
  background: transparent;
  color: var(--c-text-2);
}
.ws-btn-ghost:hover {
  color: var(--c-text);
  background: rgba(0,0,0,.04);
}

.ws-btn-lg {
  padding: 15px 34px;
  font-size: 1rem;
  border-radius: var(--radius-md);
  font-weight: 700;
}

/* ── Badge ────────────────────────────────────────────────── */
.ws-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* Rozet metni küçük (12px) → marka kırmızısı tint üstünde 3,96:1 kalıyordu; koyu kırmızı 5,4:1.
   Koyu temada mercan (#ff4d54) koyu tint üstünde 6,1:1 zaten geçiyor. */
.ws-badge-primary {
  background: rgba(229,30,37,.09);
  color: var(--c-primary-d);
  border: 1px solid rgba(229,30,37,.18);
}
html[data-theme="dark"] .ws-badge-primary { color: var(--c-primary); }

.ws-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .4; transform: scale(.8); }
}

/* ── Hero ─────────────────────────────────────────────────── */
/* Hero iki temada da koyudur; metin tokenleri burada yerel olarak açık değerlere döner ki
   `u-c-var-c-text-2` gibi yardımcılar ve `.ws-btn-ghost`/`.ws-badge-primary` koyu zeminde
   okunsun. Ölçüldü: açık temada #475467 hero üstünde 2,48:1 idi; #b8c2cf 10,7:1. */
.ws-hero {
  --c-text: #ffffff;
  --c-text-2: #b8c2cf;
  --c-text-3: #9aa8b8;
  --c-border: rgba(255,255,255,.12);
  --c-border-strong: rgba(255,255,255,.22);
  --c-primary-d: #ff6b70;   /* rozet metni: koyu zeminde 6,9:1 */
  background: var(--c-bg-dark);
  color: #fff;
  padding: 100px 0 88px;
  position: relative;
  overflow: hidden;
}
/* Hero içindeki yüzey kartları (ürün maketleri) tema tokenlerine geri döner. */
.ws-hero .u-bg-var-c-surface,
.ws-hero .u-bg-var-c-surface-2,
.ws-hero .u-bg-var-c-bg {
  --c-text: var(--t-text);
  --c-text-2: var(--t-text-2);
  --c-text-3: var(--t-text-3);
  --c-border: var(--t-border);
  --c-border-strong: var(--t-border-strong);
  --c-primary-d: var(--t-primary-d);
}
/* Ürün maketleri (kart, istatistik, form) temayı izleyen yüzeylerdir: hero'nun yerel koyu
   tokenlerinden tema tokenlerine geri dönerler. Eskiden hero'nun beyaz metni maketin
   içine sızıyordu (ölçüldü: "vCard" 1,00:1). */
.ws-card-mockup {
  --c-text: var(--t-text);
  --c-text-2: var(--t-text-2);
  --c-text-3: var(--t-text-3);
  --c-border: var(--t-border);
  --c-border-strong: var(--t-border-strong);
  --c-primary-d: var(--t-primary-d);
  color: var(--c-text);
}

.ws-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 65% -5%, rgba(229,30,37,.26) 0%, transparent 65%),
    radial-gradient(ellipse 45% 45% at 15% 90%, rgba(79,70,229,.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 35% at 85% 85%, rgba(13,148,136,.12) 0%, transparent 60%);
  pointer-events: none;
}

.ws-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}

.ws-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: center;
}

.ws-hero-content { max-width: 580px; }

.ws-hero-eyebrow { margin-bottom: 22px; }

.ws-hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.8vw, 3.8rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.03em;
  color: #fff;
  margin-bottom: 22px;
}

.ws-hero-headline span {
  background: linear-gradient(90deg, var(--c-primary) 0%, #f97316 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ws-hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.62);
  line-height: 1.72;
  margin-bottom: 38px;
  max-width: 480px;
  font-weight: 400;
}

.ws-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.ws-hero-actions .ws-btn-outline {
  border-color: rgba(255,255,255,.18);
  color: rgba(255,255,255,.82);
}
.ws-hero-actions .ws-btn-outline:hover {
  border-color: rgba(255,255,255,.38);
  background: rgba(255,255,255,.07);
  color: #fff;
}

.ws-hero-note {
  margin-top: 20px;
  font-size: .825rem;
  color: #9aa8b8;   /* koyu hero zemininde 7,9:1; %38 beyaz 3,54 idi */
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 20px;
}
.ws-hero-note span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.ws-hero-note svg { opacity: .7; }

/* ── Hero trust strip (small logos/badges in hero) ────────── */
.ws-hero-trust {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.ws-hero-trust-label {
  font-size: .75rem;
  color: rgba(255,255,255,.35);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 600;
  white-space: nowrap;
}
.ws-hero-trust-avatars {
  display: flex;
  align-items: center;
}
.ws-hero-trust-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.15);
  background: linear-gradient(135deg, var(--c-primary) 0%, #f97316 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  font-weight: 700;
  color: #fff;
  margin-left: -8px;
}
.ws-hero-trust-avatar:first-child { margin-left: 0; }
.ws-hero-trust-count {
  margin-left: 10px;
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  font-weight: 500;
}
.ws-hero-trust-count strong {
  color: #fff;
  font-weight: 700;
}

/* Hero visual — mockup card */
.ws-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ws-card-mockup {
  width: 100%;
  max-width: 340px;
  background: #fff;
  border-radius: 26px;
  padding: 30px;
  box-shadow: 0 40px 100px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.08);
  position: relative;
  z-index: 2;
}

.ws-card-mockup-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.ws-mockup-avatar {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e51e25 0%, #f97316 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 1.5rem;
  box-shadow: 0 8px 24px rgba(229,30,37,.35);
}

.ws-mockup-name {
  font-weight: 800;
  font-size: 1.08rem;
  color: var(--c-text);
  letter-spacing: -.02em;
}

.ws-mockup-title {
  font-size: .8rem;
  color: var(--c-text-2);
  text-align: center;
}

.ws-mockup-divider {
  width: 100%;
  height: 1px;
  background: var(--c-border);
  margin: 4px 0;
}

/* Kart maketi eylem çipleri (ürün sayfaları): "LinkedIn · vCard · QR" */
.ws-mockup-chips { display: flex; gap: 8px; margin-top: 4px; flex-wrap: wrap; justify-content: center; }
.ws-mockup-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 100px;
  font-size: .8rem; font-weight: 600;
  border: 1px solid var(--c-border-strong);
  color: var(--c-text-2);
}
.ws-mockup-chip--primary { background: var(--c-btn-bg); border-color: transparent; color: #fff; }

/* İstatistik maketi (Analitik sayfası hero'su) */
.ws-mock-kicker { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--c-text-3); margin-bottom: 12px; }
.ws-mock-stats { display: flex; gap: 12px; margin-bottom: 16px; }
.ws-mock-stat { flex: 1; padding: 12px; background: var(--c-surface-2); border-radius: 8px; text-align: center; }
.ws-mock-stat-value { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; color: var(--c-text); letter-spacing: -.02em; }
.ws-mock-stat-label { font-size: .75rem; color: var(--c-text-3); margin-top: 2px; }
.ws-mock-bars { display: flex; align-items: flex-end; gap: 4px; height: 50px; }
.ws-mock-days { display: flex; justify-content: space-between; font-size: .75rem; color: var(--c-text-3); margin-top: 6px; }

/* Form maketi (Lead Capture hero'su) */
.ws-mock-form-title { font-weight: 700; font-size: .95rem; margin-bottom: 14px; color: var(--c-text); }
.ws-mock-form { display: flex; flex-direction: column; gap: 10px; }
.ws-mock-field { padding: 10px 14px; border: 1px solid var(--c-border-strong); border-radius: 8px; font-size: .85rem; color: var(--c-text-3); }
.ws-mock-field--area { min-height: 56px; }
.ws-mock-submit { padding: 10px 14px; border-radius: 8px; background: var(--c-btn-bg); color: #fff; font-size: .875rem; font-weight: 600; text-align: center; }

.ws-mockup-links {
  display: flex;
  gap: 10px;
}

.ws-mockup-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 800;
  color: #475569;
  border: 1px solid #e2e8f0;
}
.ws-mockup-link:nth-child(1) { color: #0077b5; }
.ws-mockup-link:nth-child(2) { color: #e51e25; }
.ws-mockup-link:nth-child(3) { color: #16a34a; }
.ws-mockup-link:nth-child(4) { color: #0d9488; }

.ws-mockup-footer {
  margin-top: 8px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ws-mockup-qr {
  width: 58px;
  height: 58px;
  background: #f1f5f9;
  border-radius: 8px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2.5px;
  padding: 5px;
}

.ws-mockup-qr-cell {
  border-radius: 1px;
  background: #0d1627;
}
.ws-mockup-qr-cell.empty { background: transparent; }

.ws-mockup-save-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--c-btn-bg);
  color: #fff;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 700;
  box-shadow: 0 4px 12px var(--c-primary-glow);
}

/* Floating stats */
.ws-hero-float {
  position: absolute;
  background: rgba(13,22,39,.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  padding: 12px 16px;
  z-index: 3;
}
.ws-hero-float-1 { top: -28px; right: -36px; }
.ws-hero-float-2 { bottom: 24px; left: -48px; }
.ws-hero-float-label { font-size: .75rem; color: #b8c2cf; margin-bottom: 3px; letter-spacing: .02em; }
.ws-hero-float-value { font-family: var(--font-display); font-size: 1.2rem; font-weight: 800; color: #fff; }

/* ── Stats bar ────────────────────────────────────────────── */
.ws-stats {
  background: var(--c-surface);
  border-bottom: 1px solid var(--c-border);
  padding: 0;
}

.ws-stats-inner {
  display: flex;
  justify-content: stretch;
  flex-wrap: wrap;
}

.ws-stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  padding: 24px 32px;
  border-right: 1px solid var(--c-border);
  min-width: 160px;
}
.ws-stat-item:last-child { border-right: none; }

.ws-stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ws-stat-icon svg { flex-shrink: 0; }

.ws-stat-body { display: flex; flex-direction: column; gap: 2px; }

.ws-stat-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--c-text);
  line-height: 1;
  letter-spacing: -.03em;
}

.ws-stat-label {
  font-size: .775rem;
  font-weight: 500;
  color: var(--c-text-3);
}

/* ── Section base ─────────────────────────────────────────── */
.ws-section { padding: 100px 0; }
.ws-section-alt { background: var(--c-surface-2); }
.ws-section-dark { background: var(--c-bg-dark); color: #fff; }

.ws-section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.ws-section-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
}

.ws-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -.03em;
  color: var(--c-text);
  margin-bottom: 16px;
}
.ws-section-dark .ws-section-title { color: #fff; }

.ws-section-sub {
  font-size: 1.02rem;
  color: var(--c-text-2);
  line-height: 1.72;
}
.ws-section-dark .ws-section-sub { color: rgba(255,255,255,.58); }

/* ── Features grid ────────────────────────────────────────── */
.ws-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.ws-feature-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 28px 26px 30px;
  transition: box-shadow var(--trans), transform var(--trans), border-color var(--trans);
  position: relative;
}
.ws-feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  opacity: 0;
  background: linear-gradient(135deg, rgba(229,30,37,.04) 0%, transparent 60%);
  transition: opacity var(--trans);
  pointer-events: none;
}
.ws-feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(229,30,37,.15);
}
.ws-feature-card:hover::after { opacity: 1; }

.ws-feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.ws-feature-icon svg { display: block; }

/* Per-feature icon colors */
.ws-feature-card:nth-child(1) .ws-feature-icon { background: rgba(229,30,37,.09); }
.ws-feature-card:nth-child(2) .ws-feature-icon { background: rgba(13,148,136,.09); }
.ws-feature-card:nth-child(3) .ws-feature-icon { background: rgba(79,70,229,.09); }
.ws-feature-card:nth-child(4) .ws-feature-icon { background: rgba(217,119,6,.09); }
.ws-feature-card:nth-child(5) .ws-feature-icon { background: rgba(124,58,237,.09); }
.ws-feature-card:nth-child(6) .ws-feature-icon { background: rgba(22,163,74,.09); }

.ws-feature-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 8px;
  letter-spacing: -.01em;
}

.ws-feature-desc {
  font-size: .875rem;
  color: var(--c-text-2);
  line-height: 1.68;
}

/* ── Trust strip ──────────────────────────────────────────── */
.ws-trust {
  background: var(--c-surface);
  border-bottom: 1px solid var(--c-border);
  padding: 28px 0;
}
.ws-trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.ws-trust-label {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--c-text-3);
  white-space: nowrap;
}
.ws-trust-divider {
  width: 1px;
  height: 24px;
  background: var(--c-border);
}
.ws-trust-badges {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.ws-trust-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--c-text-2);
  white-space: nowrap;
}
.ws-trust-badge svg { color: var(--c-success); flex-shrink: 0; }

/* ── How it works ─────────────────────────────────────────── */
.ws-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.ws-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(100%/6);
  right: calc(100%/6);
  height: 2px;
  background: linear-gradient(90deg, var(--c-primary) 0%, rgba(229,30,37,.15) 100%);
  z-index: 0;
}

.ws-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 28px;
}

.ws-step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--c-bg-dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  margin: 0 auto 22px;
  border: 3px solid var(--c-primary);
  box-shadow: 0 0 0 8px rgba(229,30,37,.08), 0 8px 24px rgba(229,30,37,.2);
  letter-spacing: -.02em;
}

.ws-step-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--c-text);
  letter-spacing: -.01em;
}

.ws-step-desc {
  font-size: .875rem;
  color: var(--c-text-2);
  line-height: 1.68;
}

/* ── Pricing ──────────────────────────────────────────────── */
.ws-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: start;
}

.ws-price-card {
  background: var(--c-surface);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  position: relative;
  transition: box-shadow var(--trans), transform var(--trans);
}
.ws-price-card:hover { box-shadow: var(--shadow-md); }

.ws-price-card-featured {
  border-color: var(--c-primary);
  box-shadow: 0 0 0 1px var(--c-primary), var(--shadow-lg);
  transform: scale(1.04);
  background: #fff;
}
.ws-price-card-featured:hover {
  box-shadow: 0 0 0 1px var(--c-primary), var(--shadow-xl);
  transform: scale(1.04) translateY(-2px);
}

.ws-price-popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-btn-bg);   /* beyaz metin 5,97:1 (marka kırmızısında 3,26 idi) */
  color: #fff;
  font-size: .75rem;
  font-weight: 800;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: .05em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px var(--c-primary-glow);
}

.ws-price-plan {
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--c-text-3);
  margin-bottom: 10px;
}
.ws-price-card-featured .ws-price-plan { color: var(--c-primary); }

.ws-price-amount {
  display: flex;
  align-items: baseline;
  gap: 3px;
  margin-bottom: 6px;
}

.ws-price-currency {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--c-text-2);
  align-self: flex-start;
  margin-top: 10px;
}

.ws-price-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--c-text);
  line-height: 1;
  letter-spacing: -.04em;
}

.ws-price-period {
  font-size: .82rem;
  color: var(--c-text-3);
  margin-left: 2px;
}

.ws-price-trial-hint {
  font-size: .8rem;
  color: var(--c-success);
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.ws-price-desc {
  font-size: .85rem;
  color: var(--c-text-2);
  margin-bottom: 22px;
  line-height: 1.58;
  min-height: 38px;
}

.ws-price-divider {
  height: 1px;
  background: var(--c-border);
  margin: 20px 0;
}

.ws-price-features {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 28px;
}

.ws-price-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .875rem;
  color: var(--c-text-2);
}

/* ✓ ve ✕ aynı daire; ✕ yalnızca rengi değiştirir (eskiden şekil tanımı yoktu, düz metin duruyordu). */
.ws-price-feature-check,
.ws-price-feature-x {
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: rgba(22,163,74,.1);
  color: var(--c-success);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .6rem;
  flex-shrink: 0;
  margin-top: 2px;
  font-weight: 700;
}

.ws-price-feature-x {
  background: rgba(0,0,0,.05);
  color: var(--c-text-3);
}

.ws-price-cta {
  width: 100%;
  text-align: center;
  padding: 13px;
  font-size: .9rem;
}

.ws-price-note {
  text-align: center;
  margin-top: 44px;
  font-size: .875rem;
  color: var(--c-text-2);
}
.ws-price-note a {
  color: var(--c-primary);
  font-weight: 600;
}

/* ── Testimonials ─────────────────────────────────────────── */
.ws-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ws-testimonial {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: background var(--trans), border-color var(--trans);
}
.ws-testimonial:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.15);
}

.ws-testimonial-stars {
  display: flex;
  gap: 3px;
}
.ws-testimonial-star {
  color: #facc15;
  font-size: 1rem;
  line-height: 1;
}

.ws-testimonial-text {
  font-size: .94rem;
  color: rgba(255,255,255,.78);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}
.ws-testimonial-text::before { content: '"'; }
.ws-testimonial-text::after  { content: '"'; }

.ws-testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ws-testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e51e25, #f97316);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: .88rem;
  flex-shrink: 0;
}

.ws-testimonial-name {
  font-size: .9rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.01em;
}
.ws-testimonial-role {
  font-size: .76rem;
  color: rgba(255,255,255,.45);
  margin-top: 2px;
}

/* ── FAQ ──────────────────────────────────────────────────── */
.ws-faq { max-width: 740px; margin: 0 auto; }

.ws-faq-item {
  border-bottom: 1px solid var(--c-border);
}

.ws-faq-q {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  text-align: left;
  cursor: pointer;
  font-family: var(--font);
  font-size: .975rem;
  font-weight: 600;
  color: var(--c-text);
  transition: color var(--trans);
  letter-spacing: -.01em;
}
.ws-faq-q:hover { color: var(--c-primary); }

.ws-faq-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--c-surface-2);
  border: 1.5px solid var(--c-border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--trans);
  font-size: .8rem;
  color: var(--c-text-2);
}

.ws-faq-item.open .ws-faq-icon {
  background: var(--c-primary);
  border-color: var(--c-primary);
  color: #fff;
  transform: rotate(45deg);
}

.ws-faq-a {
  display: none;
  padding: 0 0 22px;
  font-size: .9rem;
  color: var(--c-text-2);
  line-height: 1.78;
}
.ws-faq-item.open .ws-faq-a { display: block; }

/* ── CTA Banner ───────────────────────────────────────────── */
.ws-cta-banner {
  background: linear-gradient(135deg, #0d1627 0%, #1e1b4b 50%, #0d1627 100%);
  border-radius: var(--radius-xl);
  padding: 80px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ws-cta-banner::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229,30,37,.32) 0%, transparent 70%);
  pointer-events: none;
}
.ws-cta-banner::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79,70,229,.2) 0%, transparent 70%);
  pointer-events: none;
}

.ws-cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.12;
  letter-spacing: -.03em;
  position: relative;
  z-index: 1;
}

.ws-cta-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.58);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.ws-cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.ws-cta-actions .ws-btn-outline {
  border-color: rgba(255,255,255,.22);
  color: rgba(255,255,255,.82);
}
.ws-cta-actions .ws-btn-outline:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.38);
}

.ws-cta-sub-note {
  margin-top: 18px;
  font-size: .78rem;
  color: rgba(255,255,255,.3);
  position: relative;
  z-index: 1;
}

/* ── Footer ───────────────────────────────────────────────── */
/* Footer her iki temada koyudur; renkler koyu tema metin tokenleriyle aynı ölçülmüş
   değerler. Eski alfa beyazlar (%28–%55) 2,4–4,1:1 arasındaydı. */
.ws-footer {
  --ft-text: #e8ecf2;
  --ft-text-2: #9aa8b8;   /* #050d18 üstünde 7,9:1 */
  --ft-border: rgba(255,255,255,.09);
  background: #050d18;
  color: var(--ft-text-2);
  padding: 72px 0 36px;
}

.ws-footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--ft-border);
}

.ws-footer-brand .ws-logo { color: #fff; margin-bottom: 14px; }

/* Tema seçici (website.css site.css'i yüklemez; aynı kural burada da tanımlı — panel için site.css'te). */
.brand-img--dark { display: none; }
html[data-theme="dark"] .brand-img--light { display: none; }
html[data-theme="dark"] .brand-img--dark { display: block; }

/* Footer zemini her temada koyu: beyaz wordmark gösterilir. */
.ws-footer .brand-img--light { display: none; }
.ws-footer .brand-img--dark { display: block; }

.ws-footer-brand .ws-logo-img {
  height: 40px;
  max-width: min(299px, 85vw);
}

.ws-footer-desc {
  font-size: .875rem;
  line-height: 1.7;
  color: var(--ft-text-2);
  max-width: 300px;
}

.ws-footer-social {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}
.ws-footer-social-link {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  font-size: .75rem;
  font-weight: 700;
  transition: all var(--trans);
}
.ws-footer-social-link:hover {
  background: rgba(255,255,255,.1);
  color: #fff;
  border-color: rgba(255,255,255,.15);
}

.ws-footer-col-title {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--ft-text);
  margin-bottom: 12px;
}

.ws-footer-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}
/* Bağlantı en az 24px yüksek: 17px'lik satırlar dokunma/tıklama hedefi olarak dardı (19 × sayfa). */
.ws-footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  min-width: 32px;
  font-size: .875rem;
  color: var(--ft-text-2);
  transition: color var(--trans);
}
.ws-footer-links a:hover { color: var(--ft-text); text-decoration: underline; text-underline-offset: 3px; }

.ws-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 26px;
  font-size: .825rem;
  color: var(--ft-text-2);
}

.ws-footer-legal { display: flex; flex-wrap: wrap; gap: 4px 18px; }
.ws-footer-legal a { display: inline-flex; align-items: center; min-height: 32px; color: var(--ft-text-2); transition: color var(--trans); }
.ws-footer-legal a:hover { color: var(--ft-text); text-decoration: underline; text-underline-offset: 3px; }

/* ── Mobile ───────────────────────────────────────────────── */
@media (max-width: 960px) {
  .ws-hero-inner   { grid-template-columns: 1fr; gap: 48px; }
  .ws-hero         { padding: 72px 0 60px; }
  .ws-hero-visual  { display: none; }
  .ws-hero-content { max-width: 100%; }
  .ws-hero-headline { font-size: clamp(2.1rem, 7vw, 3rem); }
  .ws-features-grid { grid-template-columns: repeat(2, 1fr); }
  .ws-pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .ws-price-card-featured { transform: none; }
  .ws-price-card-featured:hover { transform: translateY(-2px); }
  .ws-testimonials-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .ws-footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .ws-steps::before { display: none; }
  .ws-steps { grid-template-columns: 1fr; gap: 36px; max-width: 420px; margin: 0 auto; }
  .ws-cta-banner { padding: 56px 32px; }
  .ws-stat-item { padding: 20px 24px; }
  .ws-trust-divider { display: none; }
}

/* ── Üst çubuk kırılımları ─────────────────────────────────────────────
   Tam çubuk (logo 130 + 7 bağlantı 655 + dil/giriş/kayıt 336 + boşluklar + kaydırma çubuğu) ≈ 1230px
   ister. 1081–1259: sıkışık düzen — bağlantı dolgusu daralır, "Giriş Yap" ve bayrak
   gizlenir (≈ 990px'e iner). ≤1080: hamburger; giriş, kayıt ve dil menünün içinde.
   Eski tek kırılım (768) ile arada 400px'lik kırık bir bölge kalıyordu. */
@media (min-width: 1081px) and (max-width: 1259px) {
  .ws-nav-links { gap: 2px; }
  .ws-nav-links a { padding: 6px 8px; }
  .ws-nav-cta .ws-btn-ghost { display: none; }
  .ws-lang-flag { display: none; }
}

/* Dar ekranda menünün içine inen eylemler; geniş ekranda çubukta durdukları
   için burada gizli. */
.ws-nav-mobile-only { display: none; }

@media (max-width: 1080px) {
  .ws-nav-links    { display: none; }
  .ws-nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 76px; left: 0; right: 0;
    background: var(--c-surface);
    border-bottom: 1px solid var(--c-border);
    box-shadow: var(--shadow-md);
    padding: 14px 18px 22px;
    gap: 4px;
    z-index: 199;
  }
  .ws-nav-links.open a {
    padding: 10px 14px;
    font-size: .95rem;
    border-radius: var(--radius-sm);
  }
  .ws-nav-toggle   { display: flex; }
  /* Çubukta yalnızca logo + menü düğmesi; giriş, kayıt ve dil seçimi açılır menüde.
     Çubukta da gösterilse aynı bağlantı iki kez sunulmuş olurdu. */
  .ws-nav-cta .ws-btn-ghost,
  .ws-nav-cta .ws-btn-primary,
  .ws-nav-cta .ws-lang-switcher { display: none; }
  .ws-nav-links.open .ws-nav-mobile-only { display: block; }
  .ws-nav-links.open .ws-nav-mobile-actions { display: flex; gap: 10px; padding: 10px 0 4px; }
  .ws-nav-mobile-actions .ws-btn { flex: 1 1 0; justify-content: center; }
  .ws-nav-mobile-lang { display: block; padding: 12px 14px; }
}

/* ── 640px: layout adjustments ────────────────────── */
@media (max-width: 640px) {
  .ws-container    { padding: 0 18px; }
  .ws-section      { padding: 72px 0; }
  .ws-features-grid { grid-template-columns: 1fr; }
  .ws-stats-inner  { flex-wrap: wrap; }
  .ws-stat-item    { flex: 0 0 50%; border-right: none; border-bottom: 1px solid var(--c-border); padding: 16px 20px; }
  .ws-stat-item:nth-child(odd) { border-right: 1px solid var(--c-border); }
  .ws-stat-item:last-child, .ws-stat-item:nth-last-child(2):nth-child(odd) { border-bottom: none; }
  .ws-hero-actions { flex-direction: column; }
  .ws-hero-actions .ws-btn { width: 100%; justify-content: center; }
  .ws-footer-top   { grid-template-columns: 1fr; }
  .ws-footer-bottom { flex-direction: column; text-align: center; }
  .ws-cta-banner   { padding: 40px 20px; border-radius: var(--radius-lg); }
  .ws-trust-inner  { gap: 16px; }
  .ws-hero-note    { gap: 10px 16px; }
  .ws-pricing-grid { max-width: 100%; grid-template-columns: minmax(0, 1fr); }
  /* 320px: kart iç genişliği 209px, düğme metni nowrap 226px → izi 1fr'yi büyütüp yatay kaydırma yapıyordu (v1.38 ölçümü) */
  .ws-price-card   { padding: 30px 22px; }
  .ws-price-cta    { white-space: normal; }
  /* Hide brand text on small phones — only show the logo mark to save space */
  .ws-logo-name    { display: none; }
}

/* ── Billing toggle ──────────────────────────────────────── */
.ws-billing-toggle {
  display: flex;
  gap: 6px;
  background: var(--c-surface-2);
  border: 1px solid var(--c-border);
  border-radius: 12px;
  padding: 5px;
  width: fit-content;
  margin: 0 auto 40px;
}
.ws-billing-btn {
  padding: 8px 20px;
  border: none;
  background: transparent;
  border-radius: 8px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--c-text-2);
  cursor: pointer;
  transition: background .18s, color .18s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ws-billing-btn.active {
  background: var(--c-surface);
  color: var(--c-text);
  box-shadow: 0 1px 4px rgba(0,0,0,.08);
}
/* Tint'li rozet: iki temada da metin kendi tokeni (açık 6,5 / koyu 9,7). Dolu yeşil zemin +
   beyaz metin koyu temada 1,9'a düşüyordu. */
.ws-billing-save-badge {
  background: var(--c-success-bg);
  color: var(--c-success);
  font-size: .75rem;   /* 12px; 10,9px okunmuyordu */
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
}
/* Kapalı özellik: ikincil-üçüncül metin tokeni (5,4:1). #94a3b8 beyazda 2,56 idi — "kapalı"
   görünmesi için okunmaz olması gerekmez; ✕ işareti zaten anlamı taşıyor. */
.ws-price-feat-disabled { color: var(--c-text-3); }
/* Karşılaştırma tablosu işareti (Pricing/PricingEn Check()) — eski `u-c-16a34a` 3,3:1 idi. */
.ws-cmp-check { color: var(--c-success); font-size: 1.1rem; font-weight: 700; }
.ws-cmp-no { color: var(--c-text-3); font-weight: 700; }

/* Plan kutuları (Analitik sayfası "Hangi planda ne var?") */
.ws-plan-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; max-width: 800px; margin: 0 auto; }
.ws-plan-box { padding: 28px; border-radius: 12px; border: 1px solid var(--c-border); background: var(--c-surface); }
.ws-plan-box--featured { border: 2px solid var(--c-primary); background: var(--c-primary-faint); }
.ws-plan-box-title { font-weight: 700; margin-bottom: 12px; }
.ws-plan-box-list { list-style: none; padding: 0; margin: 0; font-size: .9rem; color: var(--c-text-2); display: flex; flex-direction: column; gap: 8px; }
/* Öne çıkan sütun başlığı: rozetle aynı kural (açık: koyu kırmızı 5,4; koyu: mercan 6,1). */
.ws-cmp-featured { color: var(--c-primary-d); }
html[data-theme="dark"] .ws-cmp-featured { color: var(--c-primary); }
/* İletişim kartındaki telefon / e-posta bağlantıları: 19px'lik satır dokunma hedefi olarak dardı. */
.ws-contact-link { display: inline-flex; align-items: center; min-height: 32px; text-decoration: underline; text-underline-offset: 3px; }
.ws-feat-pro-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  background: var(--c-btn-bg);
  color: #fff;
  padding: 1px 6px;
  border-radius: 4px;
  vertical-align: middle;
  margin-left: 4px;
}

/* ── Enterprise strip ────────────────────────────────────── */
.ws-enterprise-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  padding: 22px 28px;
  background: var(--c-surface);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-lg);
}
.ws-enterprise-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.ws-enterprise-icon {
  width: 44px;
  height: 44px;
  background: color-mix(in srgb, var(--c-primary) 8%, transparent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--c-primary);
}
.ws-enterprise-icon svg { width: 22px; height: 22px; }
.ws-enterprise-left > div { display: flex; flex-direction: column; gap: 3px; }
.ws-enterprise-left strong { font-size: 1rem; font-weight: 700; }
.ws-enterprise-left span { font-size: .85rem; color: var(--c-text-2); }
.ws-enterprise-cta { white-space: nowrap; }

/* ── Pricing FAQ ─────────────────────────────────────────── */
.ws-pricing-faq { margin-top: 56px; }
.ws-pricing-faq-title {
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
}
.ws-faq-list { max-width: 680px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.ws-faq-item {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 12px;
  overflow: hidden;
}
.ws-faq-q {
  list-style: none;
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: .9rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}
.ws-faq-q::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--c-text-3);
  flex-shrink: 0;
  margin-left: 12px;
  transition: transform .2s;
}
.ws-faq-item[open] .ws-faq-q::after { transform: rotate(45deg); }
.ws-faq-a {
  padding: 0 20px 16px;
  font-size: .875rem;
  color: var(--c-text-2);
  line-height: 1.65;
  margin: 0;
}
.ws-faq-a code { background: var(--c-surface-2); padding: 1px 5px; border-radius: 4px; font-size: .82rem; }

@media (max-width: 768px) {
  .ws-enterprise-strip { flex-direction: column; align-items: flex-start; }
  .ws-enterprise-cta { width: 100%; text-align: center; }
  .ws-billing-toggle { width: 100%; }
  .ws-billing-btn { flex: 1; justify-content: center; }
}

/* ── Scroll animations ────────────────────────────────────── */
.ws-fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s cubic-bezier(.22,1,.36,1), transform .6s cubic-bezier(.22,1,.36,1);
}
.ws-fade-up.visible { opacity: 1; transform: none; }

/* ── Kullanım senaryoları (ana sayfa) ─────────────────────── */
.ws-sc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 8px;
}
.ws-sc-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 20px 20px 22px;
  transition: transform var(--trans), box-shadow var(--trans);
}
.ws-sc-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.ws-sc-title {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.ws-sc-desc {
  font-size: .875rem;
  color: var(--c-text-2);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .ws-sc-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .ws-sc-grid { grid-template-columns: 1fr; }
}

/* ── Legal documents (/privacy, /terms, /kvkk) ─────────────── */
.ws-legal-header {
  background: var(--c-surface);
  border-bottom: 1px solid var(--c-border);
  padding: 32px 0 28px;
}
.ws-legal-header-inner { max-width: 760px; margin: 0 auto; }
.ws-legal-back {
  display: inline-block;
  font-size: .875rem;
  font-weight: 600;
  color: var(--c-text-2);
  margin-bottom: 16px;
}
.ws-legal-back:hover { color: var(--c-primary); }
.ws-legal-title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 4vw, 2.1rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.02em;
  margin-bottom: 10px;
}
.ws-legal-meta {
  font-size: .875rem;
  color: var(--c-text-3);
}
.ws-legal-doc {
  padding: 40px 0 72px;
}
.ws-legal-doc .ws-container { max-width: 760px; }
.ws-legal-section {
  margin-bottom: 32px;
}
.ws-legal-section h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--c-text);
}
.ws-legal-section p,
.ws-legal-section li {
  font-size: .9375rem;
  line-height: 1.7;
  color: var(--c-text-2);
}
.ws-legal-section p { margin-bottom: 12px; }
.ws-legal-section ul {
  margin: 0 0 12px 1rem;
  padding: 0;
  list-style: disc;
}
.ws-legal-section li { margin-bottom: 8px; }
.ws-legal-section li::marker { color: var(--c-text-3); }
.ws-legal-section a {
  color: var(--c-link);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.ws-legal-section a:hover { color: var(--c-primary); }
.ws-legal-cross {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--c-border);
  font-size: .875rem;
  color: var(--c-text-3);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
}
.ws-legal-cross a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;   /* 22px'lik satır dokunma hedefi olarak dardı */
  color: var(--c-link);
  font-weight: 600;
}
.ws-legal-cross a:hover { color: var(--c-primary); }

/* ── Site chrome: gövde + açık/koyu tema ───────────────────── */
body.ws-site-body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --c-bg: #0c1118;
  --c-surface: #141b26;
  --c-surface-2: #1a2434;
  --t-border: rgba(255, 255, 255, 0.09);
  --t-border-strong: rgba(255, 255, 255, 0.16);
  --t-text: #e8ecf2;
  --t-text-2: #9aa8b8;   /* 7,8:1 zemin */
  --t-text-3: #8b97a6;   /* eski #6b7a8c zeminde 4,3, yüzeyde 3,9 idi; şimdi 6,4 / 5,25 */
  --t-primary-d: #ff4d54;   /* koyu zeminde küçük kırmızı metin: mercan (6,1); #e51e25 3,3 idi */
  --c-primary: #ff4d54;
  /* Düğme her iki temada aynı: koyu kırmızı zemin, beyaz metin (5,97:1). Koyu temada
     mercan (#ff4d54) zeminde beyaz metin 3,26:1 kalıyordu. */
  --c-btn-bg: #c41920;
  --c-btn-bg-hover: #e51e25;
  --c-success: #4ade80;   /* koyu yüzeyde 9,7:1; açık temanın #05603a'sı burada 2,3 kalırdı */
  --c-link: #a5b4fc;      /* koyu zeminde 9,4:1 */
  --c-success-bg: rgba(74,222,128,.14);
  --c-primary-glow: rgba(255, 77, 84, 0.28);
  --c-primary-faint: rgba(255, 77, 84, 0.08);
}

html[data-theme="dark"] .ws-price-card-featured {
  background: var(--c-surface);
}

html[data-theme="dark"] .ws-nav {
  background: rgba(12, 17, 24, 0.94);
  border-bottom-color: var(--c-border);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04);
}

html[data-theme="dark"] .ws-nav-links a:hover {
  background: rgba(255, 255, 255, 0.06);
}

html[data-theme="dark"] .ws-card-mockup {
  background: var(--c-surface);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--c-border);
}

html[data-theme="dark"] .ws-mockup-name {
  color: var(--c-text);
}
html[data-theme="dark"] .ws-mockup-title {
  color: var(--c-text-2);
}
html[data-theme="dark"] .ws-mockup-divider {
  background: var(--c-border);
}
html[data-theme="dark"] .ws-mockup-link {
  background: var(--c-surface-2);
  border-color: var(--c-border);
  color: var(--c-text-2);
}
html[data-theme="dark"] .ws-mockup-qr {
  background: var(--c-surface-2);
}

/* Sağ kenar: tema sekmesi — hover / odak / tıklanınca içeri kayar */
.ws-theme-fab {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10000;
  pointer-events: none;
}

/* Dinlenmede yalnızca tetikleyici görünür; seçenekler genişlik 0'a kapalıdır ve
   üzerine gelince sola doğru AÇILIR. Eski sürüm rayı sağa kaydırıyordu; kaydırılan
   parça her sayfada görünüm alanının dışına taşıyordu (ölçüldü: 375px'te sağ kenar
   436px). Genişlik animasyonu taşma bırakmaz. */
.ws-theme-fab__rail {
  display: flex;
  flex-direction: row-reverse;
  align-items: stretch;
  pointer-events: auto;
  filter: drop-shadow(-6px 0 20px rgba(0, 0, 0, 0.12));
}

html[data-theme="dark"] .ws-theme-fab__rail {
  filter: drop-shadow(-6px 0 28px rgba(0, 0, 0, 0.5));
}

.ws-theme-fab:hover .ws-theme-fab__choices,
.ws-theme-fab:focus-within .ws-theme-fab__choices,
.ws-theme-fab.is-open .ws-theme-fab__choices {
  width: 60px;
  padding: 8px;
  border-left-width: 1px;
}

.ws-theme-fab__trigger {
  width: 50px;
  min-height: 104px;
  flex-shrink: 0;
  border: 1px solid var(--c-border);
  border-radius: 0 12px 12px 0;
  background: linear-gradient(180deg, var(--c-surface) 0%, var(--c-surface-2) 100%);
  color: var(--c-text-2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s, background 0.2s;
}

.ws-theme-fab__trigger:hover {
  color: var(--c-primary);
}

html[data-theme="dark"] .ws-theme-fab__trigger {
  background: linear-gradient(180deg, #1a2434 0%, #121a24 100%);
}

.ws-theme-fab__choices {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 0;
  padding: 8px 0;
  overflow: hidden;
  box-sizing: border-box;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-left-width: 0;
  border-radius: 12px 0 0 12px;
  border-right: none;
  transition: width 0.38s cubic-bezier(0.34, 1.2, 0.64, 1),
              padding 0.38s cubic-bezier(0.34, 1.2, 0.64, 1),
              border-left-width 0.38s;
}

.ws-theme-fab__btn {
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: var(--c-text-2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.ws-theme-fab__btn:hover {
  background: var(--c-surface-2);
  color: var(--c-text);
}

.ws-theme-fab__btn.is-active {
  background: color-mix(in srgb, var(--c-primary) 14%, var(--c-surface));
  color: var(--c-primary);
}

@media (max-width: 640px) {
  .ws-theme-fab__trigger {
    width: 46px;
    min-height: 92px;
  }
}

/* ── Language Switcher ──────────────────────────────────────── */
.ws-lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px 6px 10px;
  border-radius: 20px;
  border: 1.5px solid var(--c-border, rgba(0,0,0,.14));
  background: transparent;
  color: var(--c-text, #0d1627);
  text-decoration: none;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .03em;
  cursor: pointer;
  transition: background .15s, border-color .15s, color .15s, box-shadow .15s;
  white-space: nowrap;
  flex-shrink: 0;
}
.ws-lang-switcher:hover {
  background: var(--c-primary, #e51e25);
  border-color: var(--c-primary, #e51e25);
  color: #fff;
  box-shadow: 0 2px 10px color-mix(in srgb, var(--c-primary,#e51e25) 30%, transparent);
}
.ws-lang-globe {
  opacity: .55;
  flex-shrink: 0;
  transition: opacity .15s;
}
.ws-lang-switcher:hover .ws-lang-globe { opacity: .9; }
.ws-lang-flag { font-size: 1rem; line-height: 1; }
.ws-lang-code { font-size: .75rem; font-weight: 700; letter-spacing: .04em; }
html[data-theme="dark"] .ws-lang-switcher {
  border-color: rgba(255,255,255,.18);
  color: rgba(255,255,255,.82);
}
html[data-theme="dark"] .ws-lang-switcher:hover {
  background: var(--c-primary, #e51e25);
  border-color: var(--c-primary, #e51e25);
  color: #fff;
}

/* ── Contact Page ────────────────────────────────────────────── */

/* Two-column grid: info left, form right */
.ws-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 56px;
  align-items: start;
}

/* Info column */
.ws-contact-info-title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--c-text);
  margin-bottom: 8px;
}

.ws-contact-info-sub {
  font-size: .925rem;
  color: var(--c-text-2);
  line-height: 1.6;
  margin-bottom: 28px;
}

/* Info card rows */
.ws-contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  transition: box-shadow var(--trans);
}
.ws-contact-card:hover {
  box-shadow: var(--shadow-md);
}

.ws-contact-card-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ws-contact-card-label {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--c-text-3);
  margin-bottom: 4px;
}

.ws-contact-card-value {
  font-size: .95rem;
  color: var(--c-text);
  line-height: 1.55;
}
.ws-contact-card-value a:hover {
  color: var(--c-primary);
}

.ws-contact-hours {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 20px;
  font-size: .82rem;
  color: var(--c-text-3);
}

/* Form column */
.ws-contact-form-wrap {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
}

.ws-contact-form-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--c-text);
  margin-bottom: 6px;
}

.ws-contact-form-sub {
  font-size: .875rem;
  color: var(--c-text-2);
  margin-bottom: 28px;
}

/* Form elements */
.ws-form-row { display: flex; flex-direction: column; gap: 0; }
.ws-form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.ws-form-group { margin-bottom: 18px; }

.ws-form-label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: var(--c-text-2);
  margin-bottom: 6px;
  letter-spacing: .01em;
}

.ws-form-req { color: var(--c-primary); }

.ws-form-input {
  width: 100%;
  padding: 10px 14px;
  font-family: var(--font);
  font-size: .9rem;
  color: var(--c-text);
  background: var(--c-bg);
  border: 1.5px solid var(--c-border-strong);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color var(--trans), box-shadow var(--trans);
  appearance: none;
}
.ws-form-input:focus {
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px var(--c-primary-glow);
  background: var(--c-surface);
}
.ws-form-input::placeholder { color: var(--c-text-3); }

.ws-form-textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.55;
}

/* Checkbox */
.ws-form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: .85rem;
  color: var(--c-text-2);
  line-height: 1.55;
}
.ws-form-check input[type="checkbox"] {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--c-primary);
}

/* Alert banner */
.ws-contact-alert {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: .875rem;
  line-height: 1.5;
  margin-bottom: 18px;
}
.ws-contact-alert-ok {
  background: rgba(22,163,74,.08);
  border: 1px solid rgba(22,163,74,.25);
  color: #15803d;
}
.ws-contact-alert-err {
  background: rgba(229,30,37,.07);
  border: 1px solid rgba(229,30,37,.22);
  color: var(--c-primary-d);
}

/* Submit button */
.ws-contact-submit {
  width: 100%;
  padding: 13px 24px;
  font-size: .95rem;
  border-radius: var(--radius-sm);
  justify-content: center;
}

/* Spinner keyframe (shared) */
@keyframes ws-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ── Contact responsive ─────────────────────────────────────── */
@media (max-width: 900px) {
  .ws-contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ws-contact-form-wrap {
    padding: 28px 22px;
  }
}

@media (max-width: 640px) {
  .ws-form-row-2 {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .ws-contact-form-wrap {
    border-radius: var(--radius-md);
    padding: 22px 16px;
  }
  .ws-contact-info-title,
  .ws-contact-form-title { font-size: 1.2rem; }
}

/* Dark mode overrides */
html[data-theme="dark"] .ws-contact-card,
html[data-theme="dark"] .ws-contact-form-wrap {
  background: var(--c-surface);
  border-color: var(--c-border);
}
html[data-theme="dark"] .ws-form-input {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.12);
  color: var(--c-text);
}
html[data-theme="dark"] .ws-form-input:focus {
  background: rgba(255,255,255,.07);
  border-color: var(--c-primary);
}
html[data-theme="dark"] .ws-contact-alert-ok { color: #4ade80; }
html[data-theme="dark"] .ws-contact-alert-err { color: #f87171; }

/* ═══ Faz 7 · CSP style-src hazırlığı ═══════════════════════════════════════
   Aşağıdaki sınıflar, yüksek trafikli genel sayfalardaki STATİK satır içi
   `style="…"` özniteliklerinin birebir karşılığıdır. CSP nonce'ları özniteliklere
   işlemez; `style-src 'unsafe-inline'` ancak bu öznitelikler bittiğinde
   kaldırılabilir (bkz. docs/CHECKLIST.md §C).

   NEDEN DOSYANIN SONUNDA: satır içi stil, medya sorguları dâhil tüm kuralları
   eziyordu. Aynı görüntüyü korumak için bu kuralların kaynak sırasında en sonda
   olması gerekir; aksi hâlde daha yukarıdaki @media blokları devreye girer ve
   görünüm değişir. */

/* Landing — hero kart yığını (yüzen rozetlerin konumlandığı sarmalayıcı) */
.ws-hero-visual-stack { position: relative; }

/* Landing — "aktif kart" sayacı yeşil vurgusu */
.ws-hero-float-value--up { color: #4ade80; }

/* Landing — istatistik ikonlarının renk tonları */
.ws-stat-icon--brand  { background: rgba(229,30,37,.08); }
.ws-stat-icon--indigo { background: rgba(79,70,229,.08); }
.ws-stat-icon--teal   { background: rgba(13,148,136,.08); }
.ws-stat-icon--green  { background: rgba(22,163,74,.08); }


/* Landing — koyu zeminde okunan rozet */
.ws-badge--on-dark {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.75);
  border-color: rgba(255,255,255,.12);
}

/* Landing — scroll animasyonu kademe gecikmeleri (.ws-fade-up ile birlikte) */
.ws-fade-up-d1  { transition-delay: .07s; }
.ws-fade-up-d2  { transition-delay: .14s; }
.ws-fade-up-d3  { transition-delay: .21s; }
.ws-fade-up-d4  { transition-delay: .28s; }
.ws-fade-up-d5  { transition-delay: .35s; }
.ws-fade-up-d6  { transition-delay: .42s; }
.ws-fade-up-d7  { transition-delay: .49s; }
.ws-fade-up-d8  { transition-delay: .56s; }
.ws-fade-up-d9  { transition-delay: .63s; }
.ws-fade-up-d10 { transition-delay: .70s; }

/* Fiyatlandırma — yıllık ödeme notu.
   Eskiden gizleme satır içi `display:none` idi ve JS `el.style.display` ile açıp
   kapatıyordu. Artık görünürlük `is-visible` sınıfıyla yönetiliyor (Landing,
   Pricing, PricingEn aynı desende). */
.ws-price-yearly-note {
  display: none;
  font-size: .78rem;
  color: var(--c-text-3);
  margin-bottom: 4px;
}
.ws-price-yearly-note.is-visible { display: block; }

/* Nav — CTA butonlarının nav ölçüsü.
   Satır içi stil, 640px altındaki `.ws-nav-cta .ws-btn-primary` kuralını da
   eziyordu; görüntüyü korumak için bu kural o medya bloğundan SONRA duruyor. */
.ws-nav-cta .ws-btn-primary { padding: 9px 20px; font-size: .875rem; }
.ws-nav-cta .ws-btn-ghost   { font-size: .875rem; }

/* Footer — iletişim listesinin altındaki adres satırı (footer tokenleri; tema bağımsız) */
.ws-footer-note {
  font-size: .825rem;
  color: var(--ft-text-2);
  line-height: 1.5;
  padding-top: 8px;
}

/* O13 — pazarlama sayfasındaki temsili günlük trend çubukları (Views/Website/Analytics*).
   Yükseklikler sabit bir dizi üzerinden hesaplanıyordu; değerler artık burada durur. */
.ws-mini-bar {
  flex: 1;
  background: var(--c-primary);
  border-radius: 3px 3px 0 0;
  opacity: .7;
}
.ws-mini-bar-1 { height: 39%; }
.ws-mini-bar-2 { height: 59%; }
.ws-mini-bar-3 { height: 49%; }
.ws-mini-bar-4 { height: 81%; }
.ws-mini-bar-5 { height: 100%; }
.ws-mini-bar-6 { height: 67%; }
.ws-mini-bar-7 { height: 90%; }

/* ── Prose & answer-first (v1.38, docs/29) ──────────────────
   Sütun sayfalarının okunur metin bloğu ve "nedir?" sorusuna
   ilk cümlede cevap veren tanım kutusu (arama motoru/LLM alıntısı
   için kısa, kendi başına anlamlı paragraf). */
.ws-prose {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.02rem;
  line-height: 1.78;
  color: var(--c-text-2);
}
.ws-prose p { margin: 0 0 18px; }
.ws-prose p:last-child { margin-bottom: 0; }
.ws-prose h3 {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--c-text);
  margin: 30px 0 10px;
}
.ws-prose strong { color: var(--c-text); font-weight: 600; }
.ws-prose a { color: var(--c-primary); text-decoration: underline; text-underline-offset: 3px; }
.ws-prose ul { margin: 0 0 18px; padding-left: 22px; }
.ws-prose li { margin: 0 0 8px; }
.ws-answer {
  max-width: 720px;
  margin: 0 auto 28px;
  padding: 22px 26px;
  border-left: 4px solid var(--c-primary);
  background: var(--c-surface-2);
  border-radius: 0 12px 12px 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--c-text);
}
.ws-answer strong { font-weight: 700; }
.ws-section-dark .ws-prose { color: rgba(255,255,255,.72); }
.ws-section-dark .ws-prose h3, .ws-section-dark .ws-prose strong { color: #fff; }

/* ── Lansman kampanyası landing (/kampanya, v1.43) ─────────────────────── */
.ws-countdown { margin: 22px 0 6px; }
.ws-countdown-label { display: block; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: #b8c2cf; margin-bottom: 8px; }
.ws-countdown-cells { display: flex; gap: 10px; flex-wrap: wrap; }
.ws-countdown-cell { min-width: 64px; padding: 10px 8px; border-radius: 12px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); text-align: center; }
.ws-countdown-cell strong { display: block; font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; color: #fff; line-height: 1.1; font-variant-numeric: tabular-nums; }
.ws-countdown-cell span { font-size: .72rem; color: #b8c2cf; }
.ws-campaign-hero-img { width: 100%; height: auto; border-radius: 20px; box-shadow: 0 30px 80px rgba(0,0,0,.45); }
.ws-campaign-numbers { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.ws-campaign-number { padding: 26px 20px; border: 1.5px solid var(--c-border); border-radius: var(--radius-lg); background: var(--c-surface); text-align: center; }
.ws-campaign-number strong { display: block; font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--c-primary); line-height: 1.1; margin-bottom: 6px; }
.ws-campaign-number span { font-size: .9rem; color: var(--c-text-muted); }
.ws-campaign-note { max-width: 720px; margin: 22px auto 0; text-align: center; color: var(--c-text-muted); line-height: 1.7; }
.ws-campaign-story { background: linear-gradient(135deg, #0c1118, #1a2333); color: #fff; }
.ws-campaign-story .ws-section-title { color: #fff; }
.ws-campaign-story-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.ws-campaign-story-inner p { color: #c9d1dc; font-size: 1.1rem; line-height: 1.75; margin: 0 0 16px; }
.ws-campaign-story-inner .ws-btn { margin-top: 10px; }
.ws-campaign-sticky { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 16px; background: rgba(12,17,24,.96); color: #fff; border-top: 1px solid rgba(255,255,255,.12); transform: translateY(110%); transition: transform .25s ease; font-size: .9rem; }
.ws-campaign-sticky.is-visible { transform: translateY(0); }
@media (max-width: 960px) { .ws-campaign-numbers { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .ws-countdown-cell { min-width: 56px; flex: 1 1 0; } .ws-countdown-cell strong { font-size: 1.3rem; } .ws-campaign-numbers { gap: 10px; } .ws-campaign-number { padding: 18px 12px; } .ws-campaign-number strong { font-size: 1.5rem; } }
@media (min-width: 961px) { .ws-campaign-sticky { display: none; } }
