/* Sellertify — satış sitesi stilleri (v18)
   Tema: KOYU + NEON GLOW — siyaha yakın koyu lacivert zemin, turuncu (#FF6A00)
   neon vurgular, cam (glassmorphism) kartlar, radial-gradient mesh'ler ve
   ince "yıldız tozu" dokusu. Linear.app / Raycast / Vercel prodüksiyon hissi.
   Not: Tüm eski sınıf adları KORUNDU; yalnızca görünüm koyu/neon'a taşındı. */
:root {
  color-scheme: dark;
  --bg: #0A0A0F;            /* ana zemin — siyaha yakın koyu lacivert */
  --bg-2: #0D0D14;          /* bölüm varyasyonu (alt) */
  --bg-3: #101018;          /* bölüm varyasyonu (daha açık) */
  --panel: rgba(255, 255, 255, 0.035);   /* cam kart zemini */
  --panel-2: rgba(255, 255, 255, 0.055); /* daha belirgin cam */
  --text: #EDEDF2;          /* ana metin */
  --muted: #9A9AAB;         /* ikincil metin */
  --soft: #C9C9D4;          /* okunur gövde metni (uzun paragraflar) */
  --line: rgba(255, 255, 255, 0.08);     /* cam çerçeve */
  --line-2: rgba(255, 255, 255, 0.06);
  --brand: #FF6A00;
  --brand-soft: #ff8a33;
  --brand-amber: #ffb04d;
  --brand-dim: rgba(255, 106, 0, 0.12);
  --green: #22c98a;
  --radius: 20px;
  /* Neon glow sistemi (turuncu ışıma) */
  --glow-sm: 0 0 18px rgba(255, 106, 0, 0.30);
  --glow-md: 0 0 34px rgba(255, 106, 0, 0.38);
  --glow-lg: 0 10px 60px rgba(255, 106, 0, 0.30);
  /* Cam kart gölgesi (derinlik) */
  --card-sh: 0 10px 34px rgba(0, 0, 0, 0.45);
  --card-sh-lg: 0 24px 70px rgba(0, 0, 0, 0.55);
}

* { box-sizing: border-box; }

h1, h2, h3, h4, .sub-baslik { font-family: "Space Grotesk", Inter, sans-serif; letter-spacing: -0.02em; }

html { scroll-behavior: smooth; background: var(--bg); overflow-x: hidden; }

body {
  margin: 0;
  color: var(--text);
  font: 16px/1.65 Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

/* Global zemin: köşelerde büyük yumuşak turuncu/mor mesh'ler + çok ince yıldız tozu.
   (blur filtresi yerine geniş radial-gradient — GPU dostu, position:fixed kullanmadan) */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(720px 520px at 88% -4%, rgba(255, 106, 0, 0.16), transparent 60%),
    radial-gradient(640px 520px at -6% 10%, rgba(124, 58, 237, 0.14), transparent 60%),
    radial-gradient(900px 700px at 50% 108%, rgba(255, 138, 51, 0.08), transparent 60%),
    var(--bg);
}
/* Yıldız tozu dokusu — çok ince noktalar (CSS ile, görsel dosyası yok) */
body::after {
  content: "";
  position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: 0.5;
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(255, 255, 255, 0.5) 50%, transparent),
    radial-gradient(1px 1px at 70% 20%, rgba(255, 255, 255, 0.35) 50%, transparent),
    radial-gradient(1px 1px at 40% 70%, rgba(255, 255, 255, 0.4) 50%, transparent),
    radial-gradient(1px 1px at 85% 60%, rgba(255, 176, 77, 0.4) 50%, transparent),
    radial-gradient(1px 1px at 15% 85%, rgba(255, 255, 255, 0.3) 50%, transparent),
    radial-gradient(1px 1px at 60% 50%, rgba(255, 255, 255, 0.28) 50%, transparent);
  background-size: 480px 480px, 520px 520px, 400px 400px, 560px 560px, 440px 440px, 500px 500px;
}

a { color: var(--brand-soft); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; }

.wrap { max-width: 1360px; margin: 0 auto; padding: 0 24px; position: relative; }

/* ---------- Üst çubuk ---------- */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10, 10, 15, 0.72);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--line);
  transition: min-height 0.25s ease, background 0.25s ease;
}
.topbar .wrap { display: flex; align-items: center; gap: 28px; min-height: 84px; transition: min-height 0.25s ease; }
/* Scroll'da incelir (JS 'shrink' sınıfı ekler) */
.topbar.shrink { background: rgba(10, 10, 15, 0.88); }
.topbar.shrink .wrap { min-height: 64px; }
.brand-logo { height: 38px; width: auto; display: block; filter: drop-shadow(0 0 10px rgba(255, 106, 0, 0.35)); }
@media (max-width: 620px) { .brand-logo { height: 42px; } }
.nav { display: flex; gap: 22px; margin-left: auto; align-items: center; }
.nav a { color: var(--muted); font-size: 14.5px; font-weight: 600; transition: color 0.18s ease; }
.nav a:hover { color: var(--text); text-decoration: none; }
.lang-toggle {
  display: flex; border-radius: 999px; overflow: hidden;
  background: rgba(255, 255, 255, 0.05); border: 1px solid var(--line); padding: 4px;
}
.lang-toggle button,
.lang-toggle a {
  background: transparent; border: 0; color: var(--muted); border-radius: 999px;
  font: 700 12.5px/1 Inter, sans-serif; padding: 7px 13px; cursor: pointer;
  transition: all 0.15s ease;
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none; white-space: nowrap;
}
.lang-toggle button.active,
.lang-toggle a.active {
  background: linear-gradient(145deg, #ff8a33, #f26400); color: #fff;
  box-shadow: 0 0 16px rgba(255, 106, 0, 0.55);
}

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  border-radius: 14px; padding: 15px 28px; font-weight: 700; font-size: 15.5px;
  border: 1px solid var(--line); cursor: pointer; transition: all 0.2s ease;
  background: rgba(255, 255, 255, 0.04); color: var(--text);
  backdrop-filter: blur(6px);
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
/* Birincil: turuncu gradyan + dış neon glow */
.btn-brand {
  background: linear-gradient(135deg, #ff8a33 0%, #ff6a00 55%, #f25c00 100%);
  color: #fff; border: 0;
  box-shadow: 0 8px 24px rgba(255, 106, 0, 0.35), 0 0 22px rgba(255, 106, 0, 0.35);
}
.btn-brand:hover { box-shadow: 0 12px 34px rgba(255, 106, 0, 0.5), 0 0 40px rgba(255, 106, 0, 0.55); }
.btn-brand:active { box-shadow: 0 6px 18px rgba(255, 106, 0, 0.4); }
/* İkincil: cam / hayalet buton */
.btn-ghost { color: var(--soft); background: rgba(255, 255, 255, 0.03); }
.btn-ghost:hover { color: #fff; border-color: rgba(255, 106, 0, 0.5); box-shadow: 0 0 22px rgba(255, 106, 0, 0.18); }

/* ---------- Hero ---------- */
.hero { padding: 84px 0 66px; position: relative; overflow: hidden; }
/* Hero arkası: büyük blur'lu turuncu + mor mesh daireleri (absolute) */
.hero::before, .hero::after {
  content: ""; position: absolute; z-index: -1; border-radius: 50%;
  filter: blur(120px); pointer-events: none; will-change: transform;
}
.hero::before { width: 620px; height: 620px; top: -180px; right: -120px;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.42), transparent 70%); }
.hero::after { width: 560px; height: 560px; bottom: -220px; left: -140px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.34), transparent 70%); }
.hero-grid {
  display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 52px; align-items: center;
}
/* Görsel bir sağ bir sol yaslanacak şekilde slaytlar arasında dönsün (bkz. index.html .flip sınıfı). */
.hero-grid.flip { grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr); }
.hero-grid.flip .hero-left { order: 2; }
.hero-grid.flip .hero-right { order: 1; }
.hero-badge {
  display: inline-block; background: rgba(255, 106, 0, 0.10); color: var(--brand-soft);
  border-radius: 999px; border: 1px solid rgba(255, 106, 0, 0.28);
  font-size: 13px; font-weight: 700; padding: 8px 16px; margin-bottom: 22px;
  box-shadow: 0 0 20px rgba(255, 106, 0, 0.15);
}
.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem); line-height: 1.03; letter-spacing: -0.04em;
  margin: 0 0 20px; font-weight: 700; position: relative; z-index: 0;
}
.hero h1 .hl { color: var(--brand-soft); }
.hero p.lead { color: var(--soft); font-size: clamp(17px, 1.9vw, 20px); line-height: 1.55; max-width: 560px; margin: 0 0 30px; }
.cta-row { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero-note { margin-top: 18px; color: var(--muted); font-size: 13.5px; }

/* ---------- HERO full-width carousel ---------- */
.hero-carousel { position: relative; }
.hero-vp { overflow: hidden; }
.hero-track { display: flex; transition: transform 0.6s cubic-bezier(.22, .8, .26, 1); }
.hero-slide { flex: 0 0 100%; min-width: 0; opacity: 0.35; transition: opacity 0.6s ease; }
.hero-slide.active { opacity: 1; }
/* fiyat carousel oklarıyla aynı stil (.s-nav), hero için konumlandırma */
.hero-carousel .s-prev { left: 22px; }
.hero-carousel .s-next { right: 22px; }
.hero-dots { display: flex; gap: 14px; justify-content: center; margin-top: 20px; }
.hero-dot {
  width: 13px; height: 13px; border-radius: 999px; padding: 0; cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.32); background: transparent; transition: all 0.2s ease;
}
.hero-dot:hover { border-color: rgba(255, 106, 0, 0.6); }
.hero-dot.active {
  background: linear-gradient(145deg, #ff8a33, #f26400); border-color: transparent;
  box-shadow: 0 0 14px rgba(255, 106, 0, 0.6);
}

/* hero sağ: maskot + eklenti maketi yan yana */
.hero-right { display: flex; align-items: flex-end; justify-content: center; gap: 0; position: relative; }

/* ---------- Maskot (AI Producer) ---------- */
.maskot { width: 150px; height: auto; flex: none; animation: maskotZipla 5s ease-in-out infinite; }
.maskot.buyuk { width: 190px; }
.maskot.kucuk { width: 96px; }
@keyframes maskotZipla {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero-right .maskot { margin-right: -26px; margin-bottom: 10px; z-index: 2; filter: drop-shadow(0 0 18px rgba(255, 106, 0, 0.55)); }

/* ---------- Eklenti maketi (cam panel) ---------- */
.mock {
  width: 100%; max-width: 380px;
  background: var(--panel-2); border: 1px solid var(--line); border-radius: 24px;
  padding: 22px 22px 18px;
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--card-sh-lg), 0 0 50px rgba(255, 106, 0, 0.10);
}
.mock-head { display: flex; align-items: center; gap: 10px; padding-bottom: 14px; border-bottom: 1px solid var(--line); margin-bottom: 14px; }
.mock-head img { height: 24px; width: 24px; object-fit: contain; }
.mock-head b { font-size: 15px; }
.mock-live { margin-left: auto; display: flex; align-items: center; gap: 6px; font-size: 11.5px; color: var(--green); font-weight: 600; }
.mock-live i { width: 7px; height: 7px; border-radius: 999px; background: var(--green); box-shadow: 0 0 8px var(--green); animation: pulse 1.6s ease-in-out infinite; }
.mock-live em { font-style: normal; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.25; } }
.mock-label { font-size: 11px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin: 12px 0 8px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font-size: 12.5px; padding: 6px 12px; border-radius: 999px; border: 1px solid rgba(0, 0, 0, 0.12);
  color: #232936; background: #dde1e8; font-weight: 600;
}
.chip.on {
  background: linear-gradient(145deg, #ff8a33, #f26400); color: #fff; font-weight: 700; border: 0;
  box-shadow: 0 0 14px rgba(255, 106, 0, 0.5);
}
.mock-run {
  margin-top: 18px; background: linear-gradient(145deg, #ff8a33, #f26400); color: #fff;
  border-radius: 14px; padding: 12px 16px; font-weight: 800; font-size: 14px;
  display: flex; justify-content: space-between; align-items: center;
  box-shadow: 0 0 22px rgba(255, 106, 0, 0.45);
}
.mock-prog { height: 8px; background: rgba(255, 255, 255, 0.06); border-radius: 999px; margin: 16px 0; overflow: hidden; }
.mock-prog .bar { height: 100%; width: 40%; border-radius: 999px; background: linear-gradient(90deg, var(--brand), var(--brand-amber)); box-shadow: 0 0 12px rgba(255, 106, 0, 0.7); animation: prog 4s ease-in-out infinite; }
@keyframes prog { 0% { width: 12%; } 55% { width: 82%; } 100% { width: 12%; } }
.mock-file {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255, 255, 255, 0.04); border: 1px solid var(--line);
  border-radius: 12px; padding: 10px 12px; margin-top: 9px; font-size: 12.5px;
}
.mock-file .fname { flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: var(--soft); }
.mock-file b { color: var(--green); }
.mock-file.dim { opacity: 0.55; }
.mock-file .spin { color: var(--brand-soft); display: inline-block; animation: spin 1.2s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.eq { display: flex; align-items: flex-end; gap: 2px; height: 14px; flex: none; }
.eq i { width: 3px; background: var(--brand-soft); border-radius: 2px; animation: eq 1.1s ease-in-out infinite; }
.eq i:nth-child(1) { height: 60%; animation-delay: 0s; }
.eq i:nth-child(2) { height: 100%; animation-delay: 0.18s; }
.eq i:nth-child(3) { height: 45%; animation-delay: 0.36s; }
.eq i:nth-child(4) { height: 80%; animation-delay: 0.54s; }
@keyframes eq { 0%, 100% { transform: scaleY(0.5); } 50% { transform: scaleY(1); } }

/* ---------- İstatistik bandı (neon sayılar) ---------- */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  margin-top: 64px;
}
.stat {
  text-align: center; padding: 26px 18px; border-radius: var(--radius);
  background: rgba(10, 10, 15, 0.55); border: 1px solid var(--line);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--card-sh);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.stat:hover {
  transform: translateY(-4px); border-color: rgba(255, 106, 0, 0.3);
  box-shadow: var(--card-sh-lg), 0 0 30px rgba(255, 106, 0, 0.12);
}
.stat .stat-ikon {
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; margin: 0 auto 14px; border-radius: 15px;
  font-style: normal; font-size: 26px;
  background: rgba(255, 106, 0, 0.10); border: 1px solid rgba(255, 106, 0, 0.22);
}
.stat b {
  display: block; font-size: 36px; font-weight: 800; letter-spacing: -0.02em;
  font-family: "Space Grotesk", Inter, sans-serif;
  background: linear-gradient(180deg, #ffb04d, #ff6a00);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 14px rgba(255, 106, 0, 0.45));
}
.stat span { color: var(--muted); font-size: 13.5px; }

/* ---------- Bölümler ---------- */
section { padding: 60px 0 96px; position: relative; }
section.alt { background: linear-gradient(180deg, var(--bg-2), var(--bg-3)); }

/* ---------- Bölüm arka planı: gerçek stüdyo fotoğrafları (koyu overlay) ---------- */
/* katman: foto (en altta) → koyu overlay + üst/alt fade → (mesh/glow) → içerik */
.hero {
  background:
    linear-gradient(180deg, #0A0A0F 0%, rgba(10,10,15,.80) 14%, rgba(10,10,15,.86) 86%, #0A0A0F 100%),
    url('assets/foto/hero.jpg') center/cover no-repeat fixed;
}
#urunler {
  background:
    linear-gradient(180deg, #0A0A0F 0%, rgba(10,10,15,.90) 14%, rgba(10,10,15,.92) 86%, #0A0A0F 100%),
    url('assets/foto/urunler.jpg') center/cover no-repeat;
}
#nasil {
  background:
    linear-gradient(180deg, #0A0A0F 0%, rgba(10,10,15,.92) 14%, rgba(10,10,15,.94) 86%, #0A0A0F 100%),
    url('assets/foto/nasil.jpg') center/cover no-repeat;
}
#icerik {
  background:
    linear-gradient(180deg, #0A0A0F 0%, rgba(10,10,15,.90) 14%, rgba(10,10,15,.92) 86%, #0A0A0F 100%),
    url('assets/foto/icerik.jpg') center/cover no-repeat;
}
#fiyatlar {
  background:
    linear-gradient(180deg, #0A0A0F 0%, rgba(10,10,15,.93) 14%, rgba(10,10,15,.95) 86%, #0A0A0F 100%),
    url('assets/foto/fiyatlar.jpg') center/cover no-repeat;
}
#yorumlar {
  background:
    linear-gradient(180deg, #0A0A0F 0%, rgba(10,10,15,.88) 14%, rgba(10,10,15,.91) 86%, #0A0A0F 100%),
    url('assets/foto/yorumlar.jpg') center/cover no-repeat;
}
#sss {
  background:
    linear-gradient(180deg, #0A0A0F 0%, rgba(10,10,15,.93) 14%, rgba(10,10,15,.95) 86%, #0A0A0F 100%),
    url('assets/foto/sss.jpg') center/cover no-repeat;
}
.cta-band {
  background:
    linear-gradient(180deg, #0A0A0F 0%, rgba(10,10,15,.86) 14%, rgba(10,10,15,.90) 86%, #0A0A0F 100%),
    url('assets/foto/cta.jpg') center/cover no-repeat;
}
/* mobilde fixed attachment sorun çıkarır → scroll'a çevir */
@media (max-width: 900px) {
  .hero { background-attachment: scroll; }
}
.sec-head { text-align: center; margin-bottom: 52px; }
.sec-head .kicker {
  display: inline-flex; align-items: center; gap: 12px; color: var(--brand-soft);
  font-weight: 800; font-size: clamp(21px, 2.6vw, 27px); letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 16px;
}
.sec-head .kicker::before { content: ""; width: 30px; height: 2px; background: var(--brand); border-radius: 2px; box-shadow: 0 0 10px var(--brand); }
.sec-head h2 { font-size: clamp(30px, 4vw, 48px); letter-spacing: -0.032em; line-height: 1.06; margin: 0 0 14px; }
.sec-head p { color: var(--muted); max-width: 640px; margin: 0 auto; font-size: 16.5px; }

/* ---------- SLIDER (fiyatlar) ---------- */
.slider { position: relative; }
.s-viewport { overflow: hidden; border-radius: var(--radius); transition: height 0.35s ease; padding: 26px; margin: -26px; }
.s-track { display: flex; transition: transform 0.45s cubic-bezier(.22,.8,.26,1); align-items: flex-start; }
.s-slide { flex: 0 0 100%; min-width: 0; padding: 8px; display: flex; flex-direction: column; justify-content: center; background: none; border: none; }
.s-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 50px; height: 50px; border-radius: 999px; border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05); color: var(--soft); font-size: 22px; cursor: pointer;
  backdrop-filter: blur(10px); display: flex; align-items: center; justify-content: center;
  transition: all .18s ease;
}
.s-nav:hover { color: #fff; border-color: rgba(255, 106, 0, 0.55); box-shadow: 0 0 20px rgba(255, 106, 0, 0.28); }
.s-prev { left: -16px; }
.s-next { right: -16px; }
.s-dots { display: flex; gap: 12px; justify-content: center; margin-top: 26px; flex-wrap: wrap; }
.s-dot {
  border: 1px solid var(--line); background: rgba(255, 255, 255, 0.04); color: var(--muted);
  border-radius: 999px; padding: 10px 18px; font-size: 13px; font-weight: 700; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px; transition: all .18s ease;
}
.s-dot img { height: 16px; width: 16px; object-fit: contain; }
.s-dot:hover { color: #fff; border-color: rgba(255, 106, 0, 0.4); }
.s-dot.active {
  background: linear-gradient(145deg, #ff8a33, #f26400); color: #fff; border: 0;
  box-shadow: 0 0 18px rgba(255, 106, 0, 0.5);
}

/* ---------- Cam kart temeli (ortak) ---------- */
.vitrin, .feature, .adim, .price-card, .sub-card, .hakk-kart, .hakk-metin,
.fiyat-slayt, .yorum-kart {
  background: rgba(10, 10, 15, 0.55); border: 1px solid var(--line);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}

/* ---------- Ürün slaytı (legacy — korunur) ---------- */
.urun-slayt {
  display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 40px; align-items: center;
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 44px 46px; box-shadow: var(--card-sh); min-height: 380px;
}
.urun-slayt .num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 999px; background: rgba(255, 106, 0, 0.12);
  color: var(--brand-soft); font-weight: 800; font-size: 15px; margin-bottom: 16px;
  border: 1px solid rgba(255, 106, 0, 0.3);
}
.urun-slayt img.plogo {
  height: 46px; width: auto; object-fit: contain; display: block; margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.06); border-radius: 12px; padding: 9px 13px; border: 1px solid var(--line);
}
.urun-slayt h3 { margin: 0 0 10px; font-size: 24px; letter-spacing: -0.01em; }
.urun-slayt p { margin: 0 0 18px; color: var(--muted); font-size: 15px; }
.urun-slayt .plink { font-weight: 700; font-size: 14.5px; }
.tag {
  font-size: 12px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px; display: inline-block; margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.05); border: 1px solid var(--line);
}
.tag.live { color: var(--green); border-color: rgba(34, 201, 138, 0.35); box-shadow: 0 0 14px rgba(34, 201, 138, 0.18); }
.tag.soon { color: var(--brand-soft); border-color: rgba(255, 106, 0, 0.35); }

/* Görsel alanı — cam çerçeveli panel + arkasında renk glow'u */
.gorsel-alan {
  min-height: 300px; border-radius: var(--radius); position: relative;
  background: rgba(255, 255, 255, 0.03); border: 1px solid var(--line);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px; text-align: center; padding: 20px;
  overflow: hidden;
}
.gorsel-alan::before {
  content: ""; position: absolute; inset: -30% 40% 40% -30%; z-index: 0;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.22), transparent 65%);
  filter: blur(50px); pointer-events: none;
}
.gorsel-alan > * { position: relative; z-index: 1; }
.gorsel-alan .ga-ikon { font-size: 40px; opacity: 0.7; }
.gorsel-alan b { color: var(--soft); font-size: 15px; }
.gorsel-alan .ga-yol { font: 12px/1.4 ui-monospace, Menlo, monospace; color: var(--muted); background: rgba(255, 255, 255, 0.05); border-radius: 8px; padding: 4px 10px; border: 1px solid var(--line); }
.gorsel-alan img { display: none; }
.gorsel-alan.dolu { padding: 0; box-shadow: var(--card-sh), 0 0 44px rgba(255, 106, 0, 0.14); }
.gorsel-alan.dolu img { display: block; width: 100%; height: 100%; object-fit: cover; }
.gorsel-alan.dolu .ga-ikon, .gorsel-alan.dolu b, .gorsel-alan.dolu .ga-yol { display: none; }

/* ---------- DÖNÜŞÜMLÜ VİTRİN SATIRLARI (amzigo tarzı) ---------- */
.vitrinler { display: flex; flex-direction: column; gap: 40px; }
.vitrin {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
  gap: 56px; align-items: center;
  border-radius: 26px; padding: 48px 52px; box-shadow: var(--card-sh);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.vitrin:hover { border-color: rgba(255, 106, 0, 0.32); box-shadow: var(--card-sh-lg), 0 0 40px rgba(255, 106, 0, 0.12); }
.vitrin.ters .vitrin-metin { order: 2; }   /* çift satırlarda metin sağa, görsel sola */
.vitrin.ters .gorsel-alan { order: 1; }
.vitrin-metin { min-width: 0; }
.v-head { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 18px; }
.v-head .num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 999px; background: rgba(255, 106, 0, 0.12);
  color: var(--brand-soft); font-weight: 800; font-size: 15px;
  border: 1px solid rgba(255, 106, 0, 0.3); font-family: "Space Grotesk", Inter, sans-serif;
}
.v-head .plogo {
  height: 42px; width: auto; object-fit: contain; display: block;
  background: rgba(255, 255, 255, 0.06); border-radius: 12px; padding: 8px 12px; border: 1px solid var(--line);
}
.v-head .tag { margin-bottom: 0; }
.vitrin h3 { margin: 0 0 12px; font-size: clamp(24px, 2.4vw, 30px); letter-spacing: -0.02em; }
.vitrin > .vitrin-metin > p { margin: 0 0 20px; color: var(--muted); font-size: 15.5px; line-height: 1.65; }
.v-list { list-style: none; margin: 0 0 22px; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.v-list li {
  display: flex; align-items: center; gap: 12px;
  color: var(--text); font-size: 15px; font-weight: 600;
  background: rgba(255, 255, 255, 0.04); border: 1px solid var(--line); border-radius: 14px; padding: 12px 16px;
}
.vitrin .plink { font-weight: 800; font-size: 15px; }
.vitrin .gorsel-alan { min-height: 340px; height: 100%; }

@media (max-width: 900px) {
  .vitrin { grid-template-columns: 1fr; gap: 32px; padding: 32px 24px; }
  .vitrin.ters .vitrin-metin { order: 1; }
  .vitrin.ters .gorsel-alan { order: 2; }
  .vitrin .gorsel-alan { min-height: 260px; }
}

/* ---------- Nasıl çalışır — 3 adım ---------- */
.adimlar { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; counter-reset: adim; }
.adim {
  position: relative; border-radius: var(--radius);
  padding: 34px 28px 28px; box-shadow: var(--card-sh); transition: all .2s ease;
}
.adim:hover { transform: translateY(-4px); border-color: rgba(255, 106, 0, 0.3); box-shadow: var(--card-sh-lg), 0 0 34px rgba(255, 106, 0, 0.12); }
.adim-no {
  width: 48px; height: 48px; border-radius: 16px; margin-bottom: 18px;
  display: flex; align-items: center; justify-content: center;
  font-family: "Space Grotesk", Inter, sans-serif; font-weight: 800; font-size: 22px;
  color: #fff; background: linear-gradient(145deg, #ff8a33, #f26400);
  box-shadow: 0 0 22px rgba(255, 106, 0, 0.45);
}
.adim h3 { margin: 0 0 8px; font-size: 18px; }
.adim p { margin: 0; color: var(--muted); font-size: 14.5px; line-height: 1.6; }
.adim:not(:last-child)::after {
  content: "→"; position: absolute; right: -20px; top: 50%; transform: translateY(-50%);
  color: var(--brand); font-size: 24px; font-weight: 700; opacity: 0.6; z-index: 2;
  text-shadow: 0 0 12px rgba(255, 106, 0, 0.6);
}
@media (max-width: 900px) {
  .adimlar { grid-template-columns: 1fr; }
  .adim:not(:last-child)::after { content: "↓"; right: 50%; top: auto; bottom: -22px; transform: translateX(50%); }
}

/* ---------- Özellik kartları ---------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.feature {
  border-radius: var(--radius); padding: 28px 26px; transition: all 0.2s ease; box-shadow: var(--card-sh);
}
.feature:hover { transform: translateY(-4px); border-color: rgba(255, 106, 0, 0.3); box-shadow: var(--card-sh-lg), 0 0 34px rgba(255, 106, 0, 0.12); }
.f-ico {
  width: 52px; height: 52px; border-radius: 16px; background: rgba(255, 106, 0, 0.10);
  border: 1px solid rgba(255, 106, 0, 0.24);
  display: flex; align-items: center; justify-content: center; font-size: 23px;
  margin-bottom: 18px; box-shadow: 0 0 18px rgba(255, 106, 0, 0.14);
}
.feature h3 { margin: 0 0 8px; font-size: 16.5px; }
.feature p { margin: 0; color: var(--muted); font-size: 14px; }

/* ---------- Fiyat slaytları ---------- */
.fiyat-slayt { padding: 26px 24px; border-radius: var(--radius); box-shadow: var(--card-sh); }
.price-grid {
  display: flex; gap: 24px; overflow-x: auto; overflow-y: hidden;
  padding: 20px 4px 16px; scroll-snap-type: x mandatory;
  scrollbar-width: thin; scrollbar-color: var(--brand) transparent;
}
.price-grid::-webkit-scrollbar { height: 8px; }
.price-grid::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.05); border-radius: 999px; }
.price-grid::-webkit-scrollbar-thumb { background: var(--brand); border-radius: 999px; }
.price-grid .price-card {
  flex: 0 0 calc((100% - 48px) / 3);   /* tam 3 kart görünür, 4. sağa taşar */
  scroll-snap-align: start;
}
.price-card {
  border-radius: var(--radius);
  padding: 28px 24px; display: flex; flex-direction: column; gap: 6px; position: relative;
  box-shadow: var(--card-sh); transition: all 0.2s ease;
}
.price-card:hover { transform: translateY(-4px); border-color: rgba(255, 106, 0, 0.3); box-shadow: var(--card-sh-lg), 0 0 30px rgba(255, 106, 0, 0.12); }
/* "En Popüler" kart — sürekli yumuşak turuncu neon çerçeve pulse'ı */
.price-card.featured {
  border-color: rgba(255, 106, 0, 0.5);
  animation: neonPulse 2.6s ease-in-out infinite;
}
@keyframes neonPulse {
  0%, 100% { box-shadow: var(--card-sh), 0 0 0 1px rgba(255, 106, 0, 0.35), 0 0 22px rgba(255, 106, 0, 0.22); }
  50% { box-shadow: var(--card-sh), 0 0 0 1px rgba(255, 106, 0, 0.7), 0 0 44px rgba(255, 106, 0, 0.45); }
}
.price-card.featured::before {
  content: ""; position: absolute; left: 22px; right: 22px; top: 0; height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand-amber)); border-radius: 0 0 3px 3px;
  box-shadow: 0 0 14px rgba(255, 106, 0, 0.7);
}
.price-card .ribbon {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(145deg, #ff8a33, #f26400); color: #fff; font-size: 11.5px; font-weight: 800;
  padding: 5px 14px; border-radius: 999px; white-space: nowrap;
  box-shadow: 0 0 18px rgba(255, 106, 0, 0.6);
}
.price-card h4 { margin: 0; font-size: 16px; color: var(--soft); }
.price-card .amount { font-size: 40px; font-weight: 800; letter-spacing: -0.035em; font-family: "Space Grotesk", Inter, sans-serif; }
.price-card .amount small { font-size: 14px; color: var(--muted); font-weight: 500; }
.price-card .try { color: var(--muted); font-size: 13px; min-height: 18px; }
.price-card ul { list-style: none; margin: 14px 0 18px; padding: 0; flex: 1; }
.price-card li { padding: 6px 0; font-size: 13.5px; color: var(--soft); border-bottom: 1px dashed var(--line); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.price-card .btn { justify-content: center; }
.sub-note { text-align: center; color: var(--muted); font-size: 13.5px; margin: 26px 0 0; }

/* lifetime plan kartları (Maker/Share/Pro slaytları) */
.sub-baslik { display: flex; align-items: center; justify-content: center; gap: 12px; margin: 0 0 6px; font-size: 21px; font-weight: 700; }
.sub-baslik img { height: 30px; width: auto; object-fit: contain; }
.sub-desc { text-align: center; color: var(--muted); font-size: 14.5px; margin: 0 0 26px; }
.sub-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 0 auto; }
.sub-grid.one { grid-template-columns: minmax(0, 420px); justify-content: center; }
.sub-card {
  border-radius: var(--radius);
  padding: 26px 24px; display: flex; flex-direction: column; gap: 5px; text-align: center;
  box-shadow: var(--card-sh); transition: all 0.2s ease;
}
.sub-card:hover { transform: translateY(-4px); border-color: rgba(255, 106, 0, 0.3); box-shadow: var(--card-sh-lg), 0 0 30px rgba(255, 106, 0, 0.12); }
.sub-card.featured { border-color: rgba(255, 106, 0, 0.5); animation: neonPulse 2.6s ease-in-out infinite; }
.sub-card h5 { margin: 0; font-size: 13px; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; }
.sub-card .amount { font-size: 40px; letter-spacing: -0.035em; font-weight: 800; font-family: "Space Grotesk", Inter, sans-serif; }
.sub-card .amount small { font-size: 13px; color: var(--muted); font-weight: 500; }
.sub-card .chan { color: var(--brand-soft); font-size: 14px; font-weight: 700; }
.sub-card ul { list-style: none; margin: 12px 0 4px; padding: 0; text-align: left; flex: 1; }
.sub-card li { padding: 6px 0; font-size: 13.5px; color: var(--soft); border-bottom: 1px dashed var(--line); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.sub-card .btn { margin-top: 14px; justify-content: center; padding: 12px 16px; font-size: 14px; }

/* Uygulama satış modu anahtarı */
body.apps-sale .only-soon { display: none !important; }
body:not(.apps-sale) .only-sale { display: none !important; }

/* ---------- SSS ---------- */
.faq { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: start; }
.faq details {
  background: var(--panel); border: 1px solid var(--line); border-radius: 16px; padding: 0 24px;
  backdrop-filter: blur(10px); transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
@media (max-width: 820px) { .faq { grid-template-columns: 1fr; } }
.faq details[open] { border-color: rgba(255, 106, 0, 0.3); box-shadow: 0 0 26px rgba(255, 106, 0, 0.1); }
.faq summary { cursor: pointer; font-weight: 700; font-size: 15.5px; padding: 19px 0; list-style: none; position: relative; padding-right: 30px; color: var(--text); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 2px; top: 15px; color: var(--brand-soft); font-size: 22px; font-weight: 400; }
.faq details[open] summary::after { content: "–"; }
.faq .faq-body { color: var(--muted); font-size: 14.5px; padding: 0 0 19px; line-height: 1.7; }

/* ---------- TESTIMONIAL (yorumlar) ---------- */
.yorum-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.yorum-kart {
  border-radius: var(--radius); padding: 26px 24px; box-shadow: var(--card-sh);
  display: flex; flex-direction: column; gap: 14px; transition: all 0.2s ease;
}
.yorum-kart:hover { transform: translateY(-4px); border-color: rgba(255, 106, 0, 0.3); box-shadow: var(--card-sh-lg), 0 0 30px rgba(255, 106, 0, 0.12); }
.yorum-stars { color: var(--brand); font-size: 15px; letter-spacing: 2px; text-shadow: 0 0 10px rgba(255, 106, 0, 0.55); }
.yorum-metin { color: var(--soft); font-size: 14.5px; line-height: 1.65; flex: 1; margin: 0; }
.yorum-kisi { display: flex; align-items: center; gap: 12px; }
.yorum-avatar {
  width: 42px; height: 42px; border-radius: 999px; flex: none;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 16px; color: #fff; font-family: "Space Grotesk", Inter, sans-serif;
  background: linear-gradient(145deg, #ff8a33, #f26400); box-shadow: 0 0 16px rgba(255, 106, 0, 0.4);
}
.yorum-ad { font-weight: 700; font-size: 14px; color: var(--text); }
.yorum-kanal { font-size: 12.5px; color: var(--muted); }
@media (max-width: 900px) { .yorum-grid { grid-template-columns: 1fr; } }

/* ---------- GÜVEN ŞERİDİ ---------- */
.guven-serit {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin: 34px auto 0; max-width: 900px;
}
.guven-rozet {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--panel); border: 1px solid var(--line); border-radius: 999px;
  padding: 10px 18px; font-size: 13.5px; font-weight: 600; color: var(--soft);
  backdrop-filter: blur(10px);
}
.guven-rozet svg { width: 18px; height: 18px; flex: none; color: var(--brand-soft); }
.guven-rozet:hover { border-color: rgba(255, 106, 0, 0.35); box-shadow: 0 0 20px rgba(255, 106, 0, 0.14); }

/* Güven kartları (büyük ikonlu, açıklamalı) */
.guven-kartlar { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 1000px; }
.guven-kart {
  background: var(--panel); border: 1px solid var(--line); border-radius: 20px;
  padding: 26px 22px; text-align: center; backdrop-filter: blur(10px);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.guven-kart:hover { border-color: rgba(255, 106, 0, 0.35); box-shadow: 0 0 26px rgba(255, 106, 0, 0.16); transform: translateY(-2px); }
.guven-kart svg { width: 40px; height: 40px; color: var(--brand-soft); margin-bottom: 12px; filter: drop-shadow(0 0 10px rgba(255, 106, 0, 0.35)); }
.guven-kart h3 { font-size: 16px; margin: 0 0 8px; }
.guven-kart p { font-size: 13.5px; color: var(--muted); line-height: 1.55; margin: 0; }
@media (max-width: 760px) { .guven-kartlar { grid-template-columns: 1fr; } }

/* ---------- Kapanış CTA ---------- */
.cta-band { text-align: center; }
.cta-band .wrap {
  background: var(--panel-2); border: 1px solid rgba(255, 106, 0, 0.22); border-radius: 28px;
  backdrop-filter: blur(14px);
  box-shadow: var(--card-sh-lg), 0 0 60px rgba(255, 106, 0, 0.14);
  padding: 56px 30px 60px; max-width: 860px; position: relative; overflow: hidden;
}
.cta-band .wrap::before {
  content: ""; position: absolute; width: 500px; height: 500px; top: -260px; left: 50%; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255, 106, 0, 0.28), transparent 70%); filter: blur(60px); z-index: 0;
}
.cta-band .wrap > * { position: relative; z-index: 1; }
.cta-band .maskot { margin-bottom: 6px; }
.cta-band h2 { font-size: clamp(26px, 3.4vw, 38px); letter-spacing: -0.02em; margin: 0 0 12px; }
.cta-band p { color: var(--muted); max-width: 520px; margin: 0 auto 30px; }

/* ---------- Footer ---------- */
footer { background: var(--bg-2); padding: 30px 0 0; color: var(--muted); font-size: 14px; border-top: 1px solid var(--line); }
footer > .wrap {
  background: var(--panel); border: 1px solid var(--line); border-bottom: 0;
  border-radius: 28px 28px 0 0; box-shadow: var(--card-sh);
  padding: 44px 44px 0;
}
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; align-items: start; }
.foot-marka img { height: 30px; display: block; margin-bottom: 14px; }
.foot-marka p { margin: 0 0 14px; max-width: 320px; font-size: 13.5px; }
.foot-col h4 { margin: 0 0 14px; font-size: 13px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--soft); }
.foot-col ul { list-style: none; margin: 0; padding: 0; }
.foot-col li { margin-bottom: 10px; }
.foot-col a { color: var(--muted); font-weight: 500; }
.foot-col a:hover { color: var(--brand-soft); }
.foot-alt { border-top: 1px solid var(--line); margin-top: 40px; padding: 18px 0; font-size: 12.5px; color: #7a7a86; display: flex; flex-wrap: wrap; gap: 8px; justify-content: space-between; }

/* Şirket kimliği bloğu (footer) */
.foot-kimlik { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); font-size: 12.5px; color: var(--muted); line-height: 1.7; }
.foot-kimlik b { color: var(--soft); font-weight: 700; display: block; margin-bottom: 4px; letter-spacing: 0.01em; }

/* ETBİS bloğu (footer marka sütunu) */
.etbis { margin-top: 18px; }
.etbis > span { display: block; font-size: 13px; font-weight: 700; color: var(--soft); margin-bottom: 10px; }
.etbis-gorsel {
  width: 100px; height: 100px; border-radius: 14px;
  background: rgba(255, 255, 255, 0.05); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; text-align: center;
}
.etbis-gorsel img { display: none; }
.etbis-gorsel .ga-yol { font: 10px/1.3 ui-monospace, Menlo, monospace; color: var(--muted); padding: 4px; }
.etbis-gorsel.dolu { background: #fff; }
.etbis-gorsel.dolu img { display: block; width: 100%; height: 100%; object-fit: contain; }
.etbis-gorsel.dolu .ga-yol { display: none; }

/* ---------- Modal (satın alma) ---------- */
.modal-backdrop { position: fixed; inset: 0; background: rgba(5, 5, 9, 0.72); backdrop-filter: blur(6px); z-index: 100; display: none; align-items: center; justify-content: center; padding: 24px; }
.modal-backdrop.open { display: flex; }
.modal {
  background: #14141c; border: 1px solid rgba(255, 106, 0, 0.24); border-radius: 24px; max-width: 460px; width: 100%;
  padding: 32px 30px; box-shadow: var(--card-sh-lg), 0 0 50px rgba(255, 106, 0, 0.18); text-align: center;
}
.modal .m-icon { font-size: 38px; margin-bottom: 10px; }
.modal h3 { margin: 0 0 10px; font-size: 20px; }
.modal p { color: var(--muted); font-size: 14.5px; margin: 0 0 22px; }
.modal .btn { width: 100%; justify-content: center; margin-bottom: 12px; }
.modal .m-close { background: transparent; border: 0; color: var(--muted); cursor: pointer; font-size: 13.5px; text-decoration: underline; }

/* ---------- Hakkımızda sayfası ---------- */
.sayfa-baslik { text-align: center; padding: 72px 0 20px; position: relative; }
.sayfa-baslik h1 { font-size: clamp(30px, 4vw, 46px); margin: 18px 0 12px; }
.sayfa-baslik h1 span { color: var(--brand-soft); }
.sayfa-baslik p { color: var(--muted); max-width: 640px; margin: 0 auto; font-size: 17px; }
.hakk-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.hakk-kart {
  border-radius: var(--radius); padding: 30px 28px;
  box-shadow: var(--card-sh); transition: all 0.2s ease;
}
.hakk-kart:hover { transform: translateY(-4px); border-color: rgba(255, 106, 0, 0.3); box-shadow: var(--card-sh-lg), 0 0 30px rgba(255, 106, 0, 0.12); }
.hakk-kart .f-ico { margin-bottom: 16px; }
.hakk-kart h3 { margin: 0 0 8px; font-size: 17px; }
.hakk-kart p { margin: 0; color: var(--muted); font-size: 14px; }
.hakk-metin {
  border-radius: var(--radius); padding: 40px 44px;
  box-shadow: var(--card-sh); max-width: 860px; margin: 0 auto;
}
.hakk-metin h2 { margin: 0 0 14px; font-size: 24px; }
.hakk-metin p { color: var(--soft); font-size: 15.5px; line-height: 1.75; margin: 0 0 16px; }
.hakk-metin p:last-child { margin-bottom: 0; }
.hakk-metin b { color: var(--text); }

/* ---------- Mobil ---------- */
@media (max-width: 900px) {
  .features { grid-template-columns: repeat(2, 1fr); }
  .price-grid .price-card { flex: 0 0 46%; }
  .hakk-grid { grid-template-columns: 1fr; }
  .nav a.nav-link { display: none; }
  .hero-grid, .hero-grid.flip { grid-template-columns: 1fr; gap: 40px; }
  .hero-grid.flip .hero-left, .hero-grid.flip .hero-right { order: 0; }
  .stats { grid-template-columns: repeat(2, 1fr); row-gap: 26px; margin-top: 44px; }
  .urun-slayt { grid-template-columns: 1fr; padding: 30px 26px; gap: 24px; }
  .s-prev { left: -6px; }
  .s-next { right: -6px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .features { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .price-grid .price-card { flex: 0 0 82%; }
  .sub-grid { grid-template-columns: 1fr; }
  .hero { padding: 52px 0 44px; }
  section { padding: 60px 0; }
  .hero::before { width: 360px; height: 360px; top: -120px; right: -80px; }
  .hero::after { width: 320px; height: 320px; bottom: -140px; left: -90px; }
  .hero-right .maskot { display: none; }
  .foot-grid { grid-template-columns: 1fr; }
  footer > .wrap { padding: 34px 24px 0; }
  .guven-serit { gap: 10px; }
}

/* ---------- Kart ikon rozeti (Demo/Plus/Pro/Diamond + Solo/Growth/Agency) ---------- */
.pc-badge {
  width: 48px; height: 48px; border-radius: 15px; flex: none;
  display: flex; align-items: center; justify-content: center; font-size: 23px;
  background: rgba(255, 106, 0, 0.10); border: 1px solid rgba(255, 106, 0, 0.22); margin-bottom: 14px;
}
.sub-card .pc-badge { align-self: center; }
.price-card.featured .pc-badge, .sub-card.featured .pc-badge {
  background: linear-gradient(145deg, rgba(255, 138, 51, 0.25), rgba(242, 100, 0, 0.2));
  border-color: rgba(255, 106, 0, 0.5); box-shadow: 0 0 18px rgba(255, 106, 0, 0.4);
}

/* ---------- Üst sekme barı (fiyat) + üst teslim notu ---------- */
#fiyatSlider > .s-dots { margin-top: 0; margin-bottom: 8px; }
.ust-not { margin: 0 0 18px; }

/* ---------- İmza: hero anahtar kelimede neon turuncu vurgu ---------- */
.hero h1 .hl { color: var(--brand-soft); position: relative; white-space: nowrap; text-shadow: 0 0 26px rgba(255, 106, 0, 0.55); text-decoration: underline; text-decoration-color: var(--brand); text-decoration-thickness: 4px; text-underline-offset: 10px; }
.hero h1 .hl::after {
  content: ""; position: absolute; left: -.04em; right: -.04em; bottom: .06em; height: .26em;
  background: linear-gradient(90deg, rgba(255, 176, 77, 0.55), rgba(255, 106, 0, 0.5));
  z-index: -1; border-radius: 3px; transform: rotate(-.6deg);
  box-shadow: 0 0 22px rgba(255, 106, 0, 0.5);
}

/* ---------- Nav altı çizgi kayan animasyon ---------- */
.nav a.nav-link { position: relative; }
.nav a.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: -5px; width: 0; height: 2px;
  background: var(--brand); border-radius: 2px; box-shadow: 0 0 8px var(--brand);
  transition: width .22s cubic-bezier(.22,.8,.26,1);
}
.nav a.nav-link:hover { text-decoration: none; }
.nav a.nav-link:hover::after { width: 100%; }

/* ---------- Scroll reveal (Framer Motion hissi) ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s cubic-bezier(.22,.8,.26,1), transform .65s cubic-bezier(.22,.8,.26,1); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
/* Vitrin satırları soldan/sağdan girsin */
.vitrin.reveal { transform: translateX(-40px); }
.vitrin.ters.reveal { transform: translateX(40px); }
.vitrin.reveal.in { transform: none; }
@keyframes heroIn { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
.hero-left { animation: heroIn .7s cubic-bezier(.22,.8,.26,1) both; }
.hero-right { animation: heroIn .7s cubic-bezier(.22,.8,.26,1) .12s both; }

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal, .vitrin.reveal, .vitrin.ters.reveal, .hero-left, .hero-right { opacity: 1 !important; transform: none !important; transition: none !important; animation: none !important; }
  .maskot, .mock-live i, .mock-prog .bar, .eq i, .price-card.featured, .sub-card.featured { animation: none !important; }
}

/* ============================================================
   v18 REVİZYONLARI (11 maddelik tasarım güncellemesi)
   ============================================================ */

/* --- Item 5: geniş, yayvan, yumuşak hover gölgesi (tüm kart türleri) --- */
:root { --card-soft: 0 30px 80px -20px rgba(0, 0, 0, 0.55), 0 0 60px -30px rgba(255, 106, 0, 0.25); }
.vitrin:hover, .feature:hover, .adim:hover, .price-card:hover, .sub-card:hover,
.yorum-kart:hover, .y-card:hover, .hakk-kart:hover, .faq details:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-soft) !important;
  border-color: rgba(255, 106, 0, 0.32);
}
.faq details:hover { transform: none; }   /* SSS'te dikey kayma istemiyoruz, sadece gölge */
.faq details:hover { box-shadow: var(--card-soft) !important; }

/* --- Item 4: daha büyük, canlı reveal'lar (aşağıdan + scale) --- */
.reveal { opacity: 0; transform: translateY(40px) scale(0.96); }
.reveal.in { opacity: 1; transform: none; }
.vitrin.reveal { transform: translateX(-56px) scale(0.97); }
.vitrin.ters.reveal { transform: translateX(56px) scale(0.97); }
.vitrin.reveal.in, .vitrin.ters.reveal.in { transform: none; }

/* --- Item 4: hero mesh parallax (JS --sy custom property'sini kullanır) --- */
.hero::before { transform: translateY(calc(var(--sy, 0px) * 0.05)); }
.hero::after  { transform: translateY(calc(var(--sy, 0px) * -0.04)); }

/* --- Item 4: interaktif öğe hover'ları --- */
.hero-badge { transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease; }
.hero-badge:hover { transform: translateY(-2px); box-shadow: 0 0 30px rgba(255, 106, 0, 0.3); border-color: rgba(255, 106, 0, 0.5); }
.plink { display: inline-block; transition: transform 0.18s ease, color 0.18s ease; }
.plink:hover { transform: translateX(4px); color: var(--brand-amber); text-decoration: none; }
.tag { transition: box-shadow 0.18s ease, transform 0.18s ease; }
.tag:hover { transform: translateY(-1px); }
.tag.live:hover { box-shadow: 0 0 16px rgba(34, 201, 138, 0.35); }
.tag.soon:hover { box-shadow: 0 0 16px rgba(255, 106, 0, 0.3); }
.foot-col a { transition: color 0.18s ease, padding-left 0.18s ease; }
.foot-col a:hover { padding-left: 3px; }

/* --- Item 1: HERO MOCK 3'LÜ SLIDER --- */
.mock-slider { width: 100%; max-width: 380px; display: flex; flex-direction: column; gap: 14px; }
.mock { overflow: hidden; }
.mock-track { display: flex; transition: transform 0.6s cubic-bezier(.22,.8,.26,1); }
.mock-slide { flex: 0 0 100%; min-width: 0; }
.mock-dots { display: flex; gap: 8px; justify-content: center; }
.mock-dots i { width: 8px; height: 8px; border-radius: 999px; background: rgba(255, 255, 255, 0.2); transition: all 0.3s ease; }
.mock-dots i.on { width: 22px; background: linear-gradient(90deg, var(--brand-amber), var(--brand)); box-shadow: 0 0 12px rgba(255, 106, 0, 0.6); }
.mock-plan { margin-left: auto; font-size: 11px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: #fff; padding: 4px 11px; border-radius: 999px; background: linear-gradient(145deg, #ff8a33, #f26400); box-shadow: 0 0 14px rgba(255, 106, 0, 0.5); }
.mock-credit { display: flex; align-items: baseline; gap: 8px; margin: 4px 0 2px; }
.mock-credit b { font-family: "Space Grotesk", Inter, sans-serif; font-size: 40px; font-weight: 800; letter-spacing: -0.03em; background: linear-gradient(180deg, #ffb04d, #ff6a00); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.mock-credit span { color: var(--muted); font-size: 13px; font-weight: 600; }
.mock-ok { color: var(--green) !important; font-weight: 700; }
.mock-dl-sum { display: flex; justify-content: space-between; align-items: center; margin-top: 12px; padding: 10px 14px; border-radius: 12px; font-weight: 700; font-size: 13px; color: #fff; background: linear-gradient(145deg, #ff8a33, #f26400); box-shadow: 0 0 20px rgba(255, 106, 0, 0.4); }

/* --- Item 7 / vitrin.solo: büyük gösterişli autoPilot vitrini --- */
.vitrin.solo { padding: 56px 60px; }
.vitrin.solo h3 { font-size: clamp(30px, 3.4vw, 42px); }
.vitrin.solo .gorsel-alan { min-height: 420px; }
@media (max-width: 900px) { .vitrin.solo { padding: 32px 24px; } .vitrin.solo .gorsel-alan { min-height: 260px; } }

/* --- Item 8: YORUMLAR — 2 şerit sonsuz marquee --- */
.marquee-wrap {
  display: flex; flex-direction: column; gap: 24px; margin-top: 8px; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee { overflow: hidden; }
.marquee-track { display: flex; gap: 24px; width: max-content; will-change: transform; }
.marq-left  { animation: marqL 64s linear infinite; }
.marq-right { animation: marqR 76s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marqL { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes marqR { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.y-card {
  flex: 0 0 340px; width: 340px; border-radius: var(--radius); padding: 24px 24px;
  background: var(--panel); border: 1px solid var(--line);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--card-sh); display: flex; flex-direction: column; gap: 12px; margin: 6px 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.y-card .yorum-metin { color: var(--soft); font-size: 14px; line-height: 1.6; flex: 1; margin: 0; }
.y-card .yorum-kisi { display: flex; align-items: center; gap: 12px; }
.y-card .yorum-avatar { width: 40px; height: 40px; }
@media (max-width: 620px) { .y-card { flex-basis: 280px; width: 280px; } }

/* --- Item 6: ÖDEME YÖNTEMİ İKONLARI (inline SVG) --- */
.odeme-ikonlar { display: flex; gap: 14px; justify-content: center; align-items: center; flex-wrap: wrap; margin: 26px auto 0; }
.odeme-ikonlar img { width: min(460px, 96%); height: auto; opacity: .95; }
.odeme-ikonlar .iyz-colored { display: none; }
html[data-theme="light"] .odeme-ikonlar .iyz-white { display: none; }
html[data-theme="light"] .odeme-ikonlar .iyz-colored { display: block; }
.pay { height: 34px; width: auto; transition: transform 0.2s ease; }
.pay rect { fill: rgba(255, 255, 255, 0.05); stroke: var(--line); transition: fill 0.2s ease, stroke 0.2s ease; }
.pay text { fill: var(--muted); transition: fill 0.2s ease; }
.pay circle { fill: var(--muted); transition: fill 0.2s ease, opacity 0.2s ease; }
.pay-mc .mc-a { opacity: 0.75; }
.pay-mc .mc-b { opacity: 0.5; }
.pay:hover { transform: translateY(-3px); }
.pay:hover rect { fill: #fff; stroke: transparent; }
.pay-visa:hover text { fill: #1a1f71; }
.pay-troy:hover text { fill: #00a1a1; }
.pay-iyz:hover text { fill: #1e064f; }
.pay-mc:hover .mc-a { fill: #eb001b; opacity: 1; }
.pay-mc:hover .mc-b { fill: #f79e1b; opacity: 0.9; }
.pay-maestro .ms-a { opacity: 0.75; }
.pay-maestro .ms-b { opacity: 0.5; }
.pay-amex:hover text { fill: #2e77bc; }
.pay-maestro:hover .ms-a { fill: #0099df; opacity: 1; }
.pay-maestro:hover .ms-b { fill: #ed0006; opacity: 0.9; }

/* --- Item 10: DEMO ŞERİDİ (fiyat kartlarının üstünde) --- */
.demo-serit {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  background: linear-gradient(90deg, rgba(255, 106, 0, 0.14), rgba(255, 176, 77, 0.05));
  border: 1px solid rgba(255, 106, 0, 0.3); border-radius: 14px; padding: 12px 18px;
  box-shadow: var(--glow-sm);
}
.demo-metin { font-weight: 700; color: var(--soft); font-size: 14.5px; }
.demo-btn { padding: 10px 18px; font-size: 14px; flex: none; }
@media (max-width: 620px) { .demo-serit { flex-direction: column; text-align: center; } .demo-btn { width: 100%; justify-content: center; } }

/* --- Item 10: 3 eşit fiyat kartı (Plus/Pro/Diamond) --- */
.price-grid.three { overflow: visible; justify-content: center; }
.price-grid.three .price-card { flex: 1 1 0; min-width: 0; }
@media (max-width: 900px) { .price-grid.three { flex-wrap: wrap; } .price-grid.three .price-card { flex: 1 1 44%; } }
@media (max-width: 620px) { .price-grid.three .price-card { flex: 1 1 100%; } }

/* --- Item 9: KAPANIŞ CTA — kenardan kenara tam genişlik bant --- */
.cta-band { padding: 0; margin-bottom: 66px; } /* 66 + footer 30 = 96 → banta üstteki görsel boşlukla eşit alt boşluk */
@media (max-width: 760px) { .cta-band { margin-bottom: 30px; } } /* 30 + 30 = 60 = mobil bölüm boşluğu */
.cta-band .cta-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
  /* içerik standart .wrap (1360px - 2×24 padding = 1312px) ile hizalı: sol kenar = logo, sağ = Hemen Dene */
  padding: 56px max(24px, calc((100% - 1312px) / 2)); position: relative; overflow: hidden;
  background:
    radial-gradient(1200px 420px at 18% 50%, rgba(255, 106, 0, 0.4), transparent 60%),
    radial-gradient(900px 500px at 92% 120%, rgba(255, 176, 77, 0.22), transparent 60%),
    linear-gradient(180deg, #140d18, #17100b);
  border-top: 1px solid rgba(255, 106, 0, 0.3);
  border-bottom: 1px solid rgba(255, 106, 0, 0.3);
  box-shadow: inset 0 0 140px rgba(255, 106, 0, 0.16);
}
.cta-metin h2 { margin: 0 0 8px; font-size: clamp(26px, 3.6vw, 42px); letter-spacing: -0.02em; }
.cta-metin p { margin: 0; color: var(--soft); max-width: 540px; }
.cta-buton { flex: none; font-size: 16.5px; padding: 17px 34px; }
@media (max-width: 760px) {
  .cta-band .cta-inner { flex-direction: column; text-align: center; align-items: center; }
  .cta-metin p { margin: 0 auto; }
  .cta-buton { width: 100%; max-width: 360px; justify-content: center; }
}

/* --- reduced-motion: yeni animasyonları da durdur --- */
@media (prefers-reduced-motion: reduce) {
  .mock-track { transition: none !important; }
  .hero-track { transition: none !important; }
  .hero-slide { opacity: 1 !important; }
  .marq-left, .marq-right { animation: none !important; }
  .hero::before, .hero::after { transform: none !important; }
  .reveal, .vitrin.reveal, .vitrin.ters.reveal { opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   v21 REVİZYONLARI — ürün landing sayfaları, iletişim, footer,
   marka aksan renkleri, çift yönlü reveal, CTA foto
   ============================================================ */

/* --- Ürün marka aksan paletleri (body sınıfıyla) ---
   Yalnızca var() kullanan öğeleri (buton, kicker, link, hl, badge) boyar;
   literal turuncu glow'lar zeminde kalır → koyu neon dil korunur. */
body.pg-pilot { --brand:#d61f9a; --brand-soft:#f45fc4; --brand-amber:#b06bff; --green:#22c98a; }
body.pg-maker { --brand:#12b3a6; --brand-soft:#2dd4bf; --brand-amber:#34d399; }
body.pg-share { --brand:#e11d48; --brand-soft:#fb5c72; --brand-amber:#f97362; }
body.pg-pro   { --brand:#e0a80c; --brand-soft:#facc15; --brand-amber:#fde047; }
/* aksan glow'ları da renge uysun (landing hero mesh'leri) */
body.pg-pilot .lp-hero::before { background: radial-gradient(circle, rgba(214,31,154,.42), transparent 70%); }
body.pg-pilot .lp-hero::after  { background: radial-gradient(circle, rgba(176,107,255,.34), transparent 70%); }
body.pg-maker .lp-hero::before { background: radial-gradient(circle, rgba(18,179,166,.42), transparent 70%); }
body.pg-maker .lp-hero::after  { background: radial-gradient(circle, rgba(52,211,153,.30), transparent 70%); }
body.pg-share .lp-hero::before { background: radial-gradient(circle, rgba(225,29,72,.42), transparent 70%); }
body.pg-share .lp-hero::after  { background: radial-gradient(circle, rgba(20,20,26,.6), transparent 70%); }
body.pg-pro   .lp-hero::before { background: radial-gradient(circle, rgba(224,168,12,.42), transparent 70%); }
body.pg-pro   .lp-hero::after  { background: radial-gradient(circle, rgba(20,20,26,.6), transparent 70%); }

/* --- Landing hero --- */
.lp-hero { padding: 76px 0 60px; position: relative; overflow: hidden; }
.lp-hero::before, .lp-hero::after { content:""; position:absolute; z-index:-1; border-radius:50%; filter:blur(120px); pointer-events:none; }
.lp-hero::before { width:600px; height:600px; top:-180px; right:-120px; background: radial-gradient(circle, rgba(255,106,0,.4), transparent 70%); }
.lp-hero::after  { width:520px; height:520px; bottom:-200px; left:-140px; background: radial-gradient(circle, rgba(124,58,237,.3), transparent 70%); }
.lp-hero-grid { display:grid; grid-template-columns: minmax(0,1.05fr) minmax(0,.95fr); gap:52px; align-items:center; }
.lp-logo { height:64px; width:auto; display:block; margin-bottom:22px; filter: drop-shadow(0 0 22px rgba(255,106,0,.4)); }
.lp-hero h1 { font-size: clamp(2.4rem, 5.4vw, 4rem); line-height:1.05; letter-spacing:-.035em; margin:0 0 18px; font-weight:700; }
.lp-hero h1 .hl { color: var(--brand-soft); text-shadow: 0 0 26px rgba(255,106,0,.4); }
.lp-hero .lead { color: var(--soft); font-size: clamp(16px,1.8vw,19px); line-height:1.6; max-width:560px; margin:0 0 28px; }
.lp-badge { display:inline-block; background: rgba(255,255,255,.05); color: var(--brand-soft);
  border:1px solid var(--line); border-radius:999px; font-size:13px; font-weight:700; padding:8px 16px; margin-bottom:20px; }
.lp-visual { display:flex; align-items:center; justify-content:center; }
.lp-shot { width:100%; max-width:460px; border-radius:24px; border:1px solid var(--line);
  box-shadow: var(--card-sh-lg), 0 0 60px rgba(255,106,0,.14); display:block; }
@media (max-width:900px){ .lp-hero-grid { grid-template-columns:1fr; gap:36px; } .lp-visual { order:-1; } }

/* --- Landing "nasıl çalışır" mini akış --- */
.lp-flow { display:grid; grid-template-columns: repeat(4,1fr); gap:20px; counter-reset: f; }
.lp-flow.three { grid-template-columns: repeat(3,1fr); }
.lp-step { position:relative; border-radius: var(--radius); padding:28px 22px 24px;
  background: rgba(10,10,15,.55); border:1px solid var(--line); box-shadow: var(--card-sh); }
.lp-step .n { width:42px; height:42px; border-radius:14px; margin-bottom:14px; display:flex; align-items:center; justify-content:center;
  font-family:"Space Grotesk",Inter,sans-serif; font-weight:800; font-size:19px; color:#fff;
  background: linear-gradient(145deg, var(--brand-soft), var(--brand)); box-shadow: 0 0 20px rgba(255,106,0,.4); }
.lp-step h3 { margin:0 0 6px; font-size:16.5px; }
.lp-step p { margin:0; color: var(--muted); font-size:14px; line-height:1.6; }
@media (max-width:900px){ .lp-flow, .lp-flow.three { grid-template-columns:1fr 1fr; } }
@media (max-width:620px){ .lp-flow, .lp-flow.three { grid-template-columns:1fr; } }

/* --- Landing küçük fiyat özeti (index'e link) --- */
.lp-fiyat-not { text-align:center; color: var(--muted); font-size:13.5px; margin: 22px 0 0; }
.lp-fiyat-not a { font-weight:700; }

/* --- Footer: yeni "Ürünler" kolonu (ikonlu) --- */
.foot-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr 1.1fr; }
.foot-urun { list-style:none; margin:0; padding:0; }
.foot-urun li { margin-bottom:10px; }
.foot-urun a { display:flex; align-items:center; gap:9px; color: var(--muted); font-weight:600; }
.foot-urun a:hover { color: var(--brand-soft); }
.foot-urun img { width:18px; height:18px; object-fit:contain; border-radius:5px; flex:none;
  filter: drop-shadow(0 0 6px rgba(255,106,0,.25)); }
@media (max-width:900px){ .foot-grid { grid-template-columns:1fr 1fr; } }
@media (max-width:620px){ .foot-grid { grid-template-columns:1fr; } }

/* --- İletişim formu: Konu chip'leri (radio) --- */
.konu-etiket { display:block; margin-bottom:10px; font-weight:600; color: var(--muted); font-size:14px; }
.konu-chips { display:flex; flex-wrap:wrap; gap:10px; }
.konu-chip { position:relative; cursor:pointer; }
.konu-chip input { position:absolute; opacity:0; width:0; height:0; pointer-events:none; }
.konu-chip > span {
  display:inline-flex; align-items:center; gap:6px;
  padding:10px 16px; border-radius:999px;
  border:1.5px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.03);
  color: var(--muted); font-weight:600; font-size:14px;
  transition: all .18s ease; user-select:none;
}
.konu-chip:hover > span {
  border-color: var(--brand-soft);
  color:#fff;
  box-shadow: 0 0 14px rgba(255,106,0,.22);
}
.konu-chip input:checked + span {
  background: var(--brand);
  border-color: var(--brand);
  color:#fff;
  box-shadow: 0 0 18px rgba(255,106,0,.45);
}
.konu-chip input:focus-visible + span {
  outline:2px solid var(--brand-soft); outline-offset:2px;
}

/* --- Demo şeridi kompakt (metin+buton yan yana, daha az boşluk) --- */
.demo-serit { gap: 12px; padding: 10px 14px; }
.demo-serit.kompakt { justify-content: center; }
.demo-serit.kompakt .demo-metin { flex: 0 1 auto; }
.demo-btn { padding: 9px 16px; }
@media (min-width:621px){
  .demo-serit { flex-wrap: nowrap; }
  .demo-metin { white-space: normal; }
}

/* --- CTA bandı: arkasında foto + neon kenar ışıması --- */
.cta-band .cta-inner {
  background:
    linear-gradient(90deg, rgba(10,10,15,.86) 0%, rgba(21,13,10,.62) 55%, rgba(10,10,15,.5) 100%),
    radial-gradient(1100px 420px at 16% 50%, rgba(255,106,0,.42), transparent 60%),
    radial-gradient(900px 500px at 92% 120%, rgba(255,176,77,.2), transparent 60%),
    url('assets/foto/cta.jpg') center/cover no-repeat;
  box-shadow: inset 0 0 160px rgba(255,106,0,.22), 0 0 60px rgba(255,106,0,.12);
}
.cta-band .cta-metin h2 { text-shadow: 0 2px 24px rgba(0,0,0,.6); }

/* --- İletişim formu --- */
.iletisim-grid { display:grid; grid-template-columns: 1.2fr .8fr; gap:36px; align-items:start; max-width:1000px; margin:0 auto; }
.form-kart { border-radius: var(--radius); padding: 32px 34px; box-shadow: var(--card-sh);
  background: rgba(10,10,15,.55); border:1px solid var(--line); backdrop-filter: blur(12px); }
.form-satir { margin-bottom:16px; }
.form-satir.iki { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-kart label { display:block; font-size:13px; font-weight:700; color: var(--soft); margin-bottom:7px; letter-spacing:.01em; }
.form-kart input, .form-kart textarea {
  width:100%; background: rgba(255,255,255,.04); border:1px solid var(--line); border-radius:12px;
  padding:13px 15px; color: var(--text); font:15px/1.5 Inter, sans-serif; transition: border-color .18s ease, box-shadow .18s ease;
}
.form-kart input:focus, .form-kart textarea:focus { outline:none; border-color: rgba(255,106,0,.5); box-shadow: 0 0 0 3px rgba(255,106,0,.14); }
.form-kart textarea { resize:vertical; min-height:130px; }
.form-hp { position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; }
.form-kart .btn { width:100%; justify-content:center; margin-top:4px; }
.form-cevap { margin-top:16px; padding:13px 16px; border-radius:12px; font-size:14px; font-weight:600; display:none; }
.form-cevap.ok { display:block; color: var(--green); background: rgba(34,201,138,.1); border:1px solid rgba(34,201,138,.35); }
.form-cevap.err { display:block; color:#fb7185; background: rgba(225,29,72,.1); border:1px solid rgba(225,29,72,.35); }
.iletisim-yan { display:flex; flex-direction:column; gap:16px; }
.iletisim-yan .bilgi-kart { border-radius: var(--radius); padding:24px 26px; background: rgba(10,10,15,.55); border:1px solid var(--line); box-shadow: var(--card-sh); }
.iletisim-yan .bilgi-kart h3 { margin:0 0 8px; font-size:16px; }
.iletisim-yan .bilgi-kart p { margin:0 0 6px; color: var(--muted); font-size:14px; line-height:1.6; }
.iletisim-yan .bilgi-kart a { font-weight:700; }
@media (max-width:820px){ .iletisim-grid { grid-template-columns:1fr; } .form-satir.iki { grid-template-columns:1fr; } }

/* --- Legal sayfa üst çubuğu (gömülü stilli sayfalar için) --- */
.legal-topbar { display:flex; align-items:center; gap:22px; flex-wrap:wrap; margin-bottom:28px; padding-bottom:18px; border-bottom:1px solid var(--line); }
.legal-topbar .lt-logo img { height:28px; display:block; filter: drop-shadow(0 0 10px rgba(255,106,0,.35)); }
.legal-topbar nav { display:flex; gap:18px; margin-left:auto; flex-wrap:wrap; }
.legal-topbar nav a { color: var(--muted); font-size:14px; font-weight:600; }
.legal-topbar nav a:hover { color: var(--brand-soft); }

/* --- İş J: dört ürün vitrin görselini autoShare ile aynı boyuta eşitle ---
   Kaynak PNG'lerin doğal boyutları farklı; konteynere sabit 605/444 oranı +
   ortalanmış max 605px genişlik veriyoruz, img'e object-fit:contain (kırpma yok,
   ekran görüntüleri bozulmadan cam panel zeminine oturur). solo/ters fark etmez. */
.vitrin .gorsel-alan {
  width: 100%; max-width: 605px; margin-inline: auto;
  aspect-ratio: 605 / 444; min-height: 0; height: auto;
}
.vitrin.solo .gorsel-alan { aspect-ratio: 605 / 444; min-height: 0; }
.gorsel-alan.dolu img { object-fit: contain; background: rgba(255,255,255,.02); }
@media (max-width: 900px) {
  .vitrin .gorsel-alan, .vitrin.solo .gorsel-alan { min-height: 0; }
}
/* landing hero görseli de aynı orana otursun (contain) */
.lp-shot { aspect-ratio: 605 / 444; object-fit: contain; background: rgba(255,255,255,.02); }

/* --- İş L: Eğitim sayfası (video kütüphanesi) --- */
.egitim-kat { margin-bottom: 64px; }
.egitim-kat-head { display:flex; align-items:center; gap:14px; margin-bottom:22px; }
.egitim-kat-head .ek-ico { width:46px; height:46px; border-radius:14px; flex:none;
  display:flex; align-items:center; justify-content:center; font-size:21px;
  background: rgba(255,106,0,.10); border:1px solid rgba(255,106,0,.24); box-shadow: 0 0 18px rgba(255,106,0,.14); }
.egitim-kat-head h2 { margin:0; font-size: clamp(20px, 2.4vw, 26px); letter-spacing:-.02em; }
.egitim-kat-head p { margin:2px 0 0; color: var(--muted); font-size:13.5px; }
.video-grid { display:grid; grid-template-columns: repeat(3,1fr); gap:22px; }
.video-kart { border-radius: var(--radius); overflow:hidden; display:flex; flex-direction:column;
  background: rgba(10,10,15,.55); border:1px solid var(--line); box-shadow: var(--card-sh);
  backdrop-filter: blur(12px); transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
  color: inherit; text-decoration:none; }
.video-kart:hover { transform: translateY(-4px); border-color: rgba(255,106,0,.32);
  box-shadow: var(--card-sh-lg), 0 0 30px rgba(255,106,0,.12); text-decoration:none; }
.vk-kapak { aspect-ratio: 16/9; position:relative; display:flex; align-items:center; justify-content:center;
  background: linear-gradient(135deg, rgba(255,106,0,.14), rgba(124,58,237,.12)), var(--bg-3); overflow:hidden; }
.vk-kapak img { width:100%; height:100%; object-fit:cover; display:block; }
.vk-kapak .vk-play { position:absolute; width:52px; height:52px; border-radius:999px;
  display:flex; align-items:center; justify-content:center; font-size:20px; color:#fff;
  background: linear-gradient(145deg, #ff8a33, #f26400); box-shadow: 0 0 26px rgba(255,106,0,.55); }
.vk-govde { padding:16px 18px 18px; display:flex; flex-direction:column; gap:6px; flex:1; }
.vk-govde h3 { margin:0; font-size:15.5px; line-height:1.35; }
.vk-govde p { margin:0; color: var(--muted); font-size:13.5px; line-height:1.55; flex:1; }
.vk-rozet { align-self:flex-start; margin-top:8px; font-size:11px; font-weight:800; letter-spacing:.06em;
  text-transform:uppercase; padding:4px 11px; border-radius:999px; color: var(--brand-soft);
  background: rgba(255,106,0,.10); border:1px solid rgba(255,106,0,.3); }
@media (max-width:900px){ .video-grid { grid-template-columns:1fr 1fr; } }
@media (max-width:620px){ .video-grid { grid-template-columns:1fr; } }

/* --- İş P: header CTA butonu (TR/EN'in sağında, kompakt btn-brand) --- */
.nav-cta {
  padding: 10px 18px !important; font-size: 13.5px !important; border-radius: 12px;
  white-space: nowrap; flex: none;
}
.nav-cta:hover { box-shadow: 0 12px 34px rgba(255,106,0,.55), 0 0 44px rgba(255,106,0,.6); }
@media (max-width: 900px) {
  /* nav linkleri gizlenir ama CTA görünür kalır */
  .nav .nav-cta { display: inline-flex !important; padding: 9px 14px !important; font-size: 13px !important; }
}
@media (max-width: 420px) { .nav-cta { padding: 8px 12px !important; font-size: 12.5px !important; } }
/* Mobil taşma düzeltmesi: dar ekranlarda tema+dil+CTA+hamburger tek satıra sığmıyor
   (nav-actions nowrap taşıyor). CTA'nın gittiği yer zaten hamburger menüdeki
   "İndir/Download" bağlantısında var; bu genişlikte CTA'yı gizleyip taşmayı kökten çözüyoruz. */
@media (max-width: 430px) { .nav-actions .nav-cta { display: none !important; } }

/* --- İş Q: index onepage Eğitim özeti (4 kategori kartı) --- */
.egitim-ozet { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.egitim-ozet a.eg-kart {
  display: flex; flex-direction: column; gap: 8px; color: inherit; text-decoration: none;
  border-radius: var(--radius); padding: 26px 24px;
  background: rgba(10,10,15,.55); border: 1px solid var(--line);
  backdrop-filter: blur(12px); box-shadow: var(--card-sh);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.egitim-ozet a.eg-kart:hover { transform: translateY(-5px); border-color: rgba(255,106,0,.32);
  box-shadow: var(--card-soft); text-decoration: none; }
.eg-kart .f-ico { margin-bottom: 8px; }
.eg-kart h3 { margin: 0; font-size: 17px; }
.eg-kart p { margin: 0; color: var(--muted); font-size: 13.5px; line-height: 1.6; flex: 1; }
.eg-kart .eg-link { color: var(--brand-soft); font-weight: 700; font-size: 13.5px; }
.egitim-cta { text-align: center; margin-top: 34px; }
#egitim {
  background:
    linear-gradient(180deg, #0A0A0F 0%, rgba(10,10,15,.92) 14%, rgba(10,10,15,.94) 86%, #0A0A0F 100%),
    url('assets/foto/icerik.jpg') center/cover no-repeat;
}
@media (max-width: 900px) { .egitim-ozet { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .egitim-ozet { grid-template-columns: 1fr; } }

/* ============================================================
   İş R + S: ortalanmış header + mobil hamburger menü
   ============================================================ */
/* R: 3 bölge — sol logo | orta nav (flex:1, ortalı) | sağ aksiyonlar */
.topbar .wrap { gap: 18px; }
.nav { flex: 1; margin-left: 0 !important; justify-content: center; }
.nav-actions { display: flex; align-items: center; gap: 12px; flex: none; }

/* S: hamburger butonu (masaüstünde gizli) */
.nav-burger {
  display: none; width: 44px; height: 40px; border-radius: 11px; padding: 0;
  border: 1px solid var(--line); background: rgba(255,255,255,.04); cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-burger:hover { border-color: rgba(255,106,0,.5); }
.nav-burger span { display: block; width: 20px; height: 2px; border-radius: 2px; background: var(--text);
  transition: transform .25s ease, opacity .2s ease; }
.topbar.menu-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.topbar.menu-open .nav-burger span:nth-child(2) { opacity: 0; }
.topbar.menu-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-burger { display: inline-flex; }
  /* nav-links: üstten inen açılır panel */
  .nav {
    position: absolute; top: 100%; left: 0; right: 0; z-index: 49;
    flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0;
    background: rgba(10,10,15,.97); backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    border-bottom: 1px solid var(--line); box-shadow: var(--card-sh-lg);
    padding: 6px 0; max-height: 0; overflow: hidden; opacity: 0; pointer-events: none;
    transition: max-height .32s ease, opacity .25s ease;
  }
  .topbar.menu-open .nav { max-height: 78vh; overflow: auto; opacity: 1; pointer-events: auto; }
  /* mobilde linkler panelde blok olarak görünür (eski display:none kuralını ez) */
  .nav a.nav-link { display: block !important; padding: 15px 26px; font-size: 16px; border-bottom: 1px solid var(--line-2); }
  .nav a.nav-link::after { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .nav { transition: none !important; }
  .nav-burger span { transition: none !important; }
}


/* ============================================================
   LIGHT MODE (v25) — html[data-theme="light"] override'lari
   Koyu tema VARSAYILAN kalir; kullanici header dugmesiyle gecer.
   Turuncu (#FF6A00) marka aksani AYNEN korunur; neon glow'lar hafifler.
   ============================================================ */
html[data-theme="light"] {
  color-scheme: light;
  --bg: #F7F7FB;
  --bg-2: #FFFFFF;
  --bg-3: #EFEFF4;
  --panel: rgba(255,255,255,.75);
  --panel-2: rgba(255,255,255,.85);
  --text: #16161D;
  --muted: #5A5A6B;
  --soft: #33333F;
  --line: rgba(0,0,0,.08);
  --line-2: rgba(0,0,0,.06);
  --glass: rgba(0,0,0,.04);
  --glass-2: rgba(0,0,0,.06);
  --card-sh: 0 10px 30px rgba(20,20,45,.08);
  --card-sh-lg: 0 24px 60px rgba(20,20,45,.13);
  --card-soft: 0 30px 80px -20px rgba(20,20,45,.16), 0 0 60px -30px rgba(255,106,0,.18);
}

/* Zemin mesh'leri hafifle, beyaz yildiz tozunu gizle */
html[data-theme="light"] body::before {
  background:
    radial-gradient(720px 520px at 88% -4%, rgba(255,106,0,.10), transparent 60%),
    radial-gradient(640px 520px at -6% 10%, rgba(124,58,237,.07), transparent 60%),
    radial-gradient(900px 700px at 50% 108%, rgba(255,138,51,.05), transparent 60%),
    var(--bg);
}
html[data-theme="light"] body::after { opacity: 0; }

/* Header cami (acik) */
html[data-theme="light"] .topbar { background: rgba(255,255,255,.8); }
html[data-theme="light"] .topbar.shrink { background: rgba(255,255,255,.92); }
html[data-theme="light"] .brand-logo { filter: drop-shadow(0 0 8px rgba(255,106,0,.25)); }

/* Cam kart zeminleri (koyu literal rgba(10,10,15,..) -> panel) */
html[data-theme="light"] .vitrin,
html[data-theme="light"] .feature,
html[data-theme="light"] .adim,
html[data-theme="light"] .price-card,
html[data-theme="light"] .sub-card,
html[data-theme="light"] .hakk-kart,
html[data-theme="light"] .hakk-metin,
html[data-theme="light"] .fiyat-slayt,
html[data-theme="light"] .yorum-kart,
html[data-theme="light"] .stat,
html[data-theme="light"] .lp-step,
html[data-theme="light"] .video-kart,
html[data-theme="light"] .egitim-ozet a.eg-kart,
html[data-theme="light"] .form-kart,
html[data-theme="light"] .iletisim-yan .bilgi-kart { background: var(--panel); }

/* Fiyat slaytı: cam-kart (panel) kutusu tamamen kaldırıldı — arka plan/stroke yok,
   sadece içindeki price-card'lar (Plus/Pro/Diamond) kendi beyaz kart görünümünü korur. */
.fiyat-slayt,
html[data-theme="light"] .fiyat-slayt {
  background: none;
  border: none;
  box-shadow: none;
}

/* Beyaz cam dolgular -> koyu tint (acik zeminde gorunur kalsin) */
html[data-theme="light"] .btn-ghost,
html[data-theme="light"] .chip,
html[data-theme="light"] .mock-file,
html[data-theme="light"] .mock-prog,
html[data-theme="light"] .s-nav,
html[data-theme="light"] .s-dot,
html[data-theme="light"] .v-list li,
html[data-theme="light"] .tag,
html[data-theme="light"] .gorsel-alan,
html[data-theme="light"] .konu-chip > span,
html[data-theme="light"] .nav-burger,
html[data-theme="light"] .lang-toggle,
html[data-theme="light"] .lp-badge,
html[data-theme="light"] .etbis-gorsel,
html[data-theme="light"] .guven-rozet,
html[data-theme="light"] .guven-kart,
html[data-theme="light"] .urun-slayt img.plogo,
html[data-theme="light"] .v-head .plogo,
html[data-theme="light"] .gorsel-alan .ga-yol,
html[data-theme="light"] .form-kart input,
html[data-theme="light"] .form-kart textarea { background: var(--glass); }

html[data-theme="light"] .btn-brand { color:#fff; }        /* birincil buton beyaz metin korunur */
html[data-theme="light"] .konu-chip > span { border-color: rgba(0,0,0,.14); }
html[data-theme="light"] .mock-dots i { background: rgba(0,0,0,.18); }
html[data-theme="light"] .hero-dot { border-color: rgba(0,0,0,.25); }
html[data-theme="light"] .pay rect { fill: var(--glass); }
html[data-theme="light"] .foot-alt { color: var(--muted); }

/* Modal (satin alma) */
html[data-theme="light"] .modal { background:#fff; }
html[data-theme="light"] .modal-backdrop { background: rgba(20,20,40,.45); }

/* Foto arka planli bolumler — koyu overlay -> ACIK overlay (yazilar koyu okunur) */
html[data-theme="light"] .hero {
  background:
    linear-gradient(180deg, #F7F7FB 0%, rgba(247,247,251,.84) 14%, rgba(247,247,251,.90) 86%, #F7F7FB 100%),
    url('assets/foto/hero.jpg') center/cover no-repeat fixed;
}
html[data-theme="light"] #urunler {
  background:
    linear-gradient(180deg, #F7F7FB 0%, rgba(247,247,251,.93) 14%, rgba(247,247,251,.95) 86%, #F7F7FB 100%),
    url('assets/foto/urunler.jpg') center/cover no-repeat;
}
html[data-theme="light"] #nasil {
  background:
    linear-gradient(180deg, #F7F7FB 0%, rgba(247,247,251,.93) 14%, rgba(247,247,251,.95) 86%, #F7F7FB 100%),
    url('assets/foto/nasil.jpg') center/cover no-repeat;
}
html[data-theme="light"] #icerik {
  background:
    linear-gradient(180deg, #F7F7FB 0%, rgba(247,247,251,.92) 14%, rgba(247,247,251,.94) 86%, #F7F7FB 100%),
    url('assets/foto/icerik.jpg') center/cover no-repeat;
}
html[data-theme="light"] #fiyatlar {
  background:
    linear-gradient(180deg, #F7F7FB 0%, rgba(247,247,251,.94) 14%, rgba(247,247,251,.96) 86%, #F7F7FB 100%),
    url('assets/foto/fiyatlar.jpg') center/cover no-repeat;
}
html[data-theme="light"] #yorumlar {
  background:
    linear-gradient(180deg, #F7F7FB 0%, rgba(247,247,251,.91) 14%, rgba(247,247,251,.93) 86%, #F7F7FB 100%),
    url('assets/foto/yorumlar.jpg') center/cover no-repeat;
}
html[data-theme="light"] #sss {
  background:
    linear-gradient(180deg, #F7F7FB 0%, rgba(247,247,251,.94) 14%, rgba(247,247,251,.96) 86%, #F7F7FB 100%),
    url('assets/foto/sss.jpg') center/cover no-repeat;
}
html[data-theme="light"] #egitim {
  background:
    linear-gradient(180deg, #F7F7FB 0%, rgba(247,247,251,.93) 14%, rgba(247,247,251,.95) 86%, #F7F7FB 100%),
    url('assets/foto/icerik.jpg') center/cover no-repeat;
}
html[data-theme="light"] .cta-band {
  background:
    linear-gradient(180deg, #F7F7FB 0%, rgba(247,247,251,.90) 14%, rgba(247,247,251,.93) 86%, #F7F7FB 100%),
    url('assets/foto/cta.jpg') center/cover no-repeat;
}
/* mobilde fixed attachment sorun cikarir -> scroll */
@media (max-width: 900px) { html[data-theme="light"] .hero { background-attachment: scroll; } }

/* CTA ic bant — acik overlay + hafif turuncu isima */
html[data-theme="light"] .cta-band .cta-inner {
  background:
    linear-gradient(90deg, rgba(247,247,251,.92) 0%, rgba(255,241,232,.72) 55%, rgba(247,247,251,.68) 100%),
    radial-gradient(1100px 420px at 16% 50%, rgba(255,106,0,.20), transparent 60%),
    radial-gradient(900px 500px at 92% 120%, rgba(255,176,77,.14), transparent 60%),
    url('assets/foto/cta.jpg') center/cover no-repeat;
  box-shadow: inset 0 0 160px rgba(255,106,0,.10), 0 0 60px rgba(255,106,0,.06);
  border-top-color: rgba(255,106,0,.28); border-bottom-color: rgba(255,106,0,.28);
}
html[data-theme="light"] .cta-metin h2 { text-shadow: none; }

/* ---------- Tema degistirme dugmesi (header) ---------- */
.theme-toggle {
  width:40px; height:40px; border-radius:999px; flex:none; cursor:pointer; padding:0;
  display:inline-flex; align-items:center; justify-content:center; font-size:17px; line-height:1;
  border:1px solid var(--line); background: rgba(255,255,255,.05); color: var(--text);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.theme-toggle:hover { border-color: rgba(255,106,0,.5); box-shadow: 0 0 16px rgba(255,106,0,.25); transform: translateY(-1px); }
html[data-theme="light"] .theme-toggle { background: var(--glass); }

/* Light tema — buton düzeltmeleri (ghost okunurluk + brand korunur) */
html[data-theme="light"] .btn-brand {
  background: linear-gradient(135deg, #ff8a33 0%, #ff6a00 55%, #f25c00 100%);
  color: #fff;
}
html[data-theme="light"] .btn-ghost {
  color: var(--text);
  background: rgba(0, 0, 0, 0.045);
  border-color: rgba(0, 0, 0, 0.12);
}
html[data-theme="light"] .btn-ghost:hover {
  color: var(--brand);
  background: rgba(255, 106, 0, 0.07);
  border-color: rgba(255, 106, 0, 0.45);
  box-shadow: 0 6px 18px rgba(255, 106, 0, 0.14);
}

/* Light tema — hero mockup paneli uygulamanin KOYU arayuzunu temsil eder, koyu kalir */
html[data-theme="light"] .mock {
  background: rgba(16, 16, 24, 0.95);
  border-color: rgba(255, 255, 255, 0.10);
  color: #EDEDF2;
}
html[data-theme="light"] .mock b, html[data-theme="light"] .mock strong { color: #EDEDF2; }
html[data-theme="light"] .mock-label { color: #9A9AAB; }
html[data-theme="light"] .mock .chip {
  color: #232936; background: #dde1e8; border-color: rgba(0, 0, 0, 0.12);
}
html[data-theme="light"] .mock .chip.on {
  background: linear-gradient(145deg, #ff8a33, #f26400); color: #fff; border: 0;
}
html[data-theme="light"] .mock .mock-file,
html[data-theme="light"] .mock .mock-prog {
  background: rgba(255, 255, 255, 0.06); border-color: rgba(255, 255, 255, 0.09); color: #C9C9D4;
}
html[data-theme="light"] .mock .mock-dots i { background: rgba(255, 255, 255, 0.25); }

/* ---------- Online ödeme (checkout) modalı ---------- */
.modal .pay-plan { font-weight: 800; color: var(--brand-soft); font-size: 15px; margin-bottom: 12px; }
.pay-input {
  width: 100%; padding: 13px 16px; margin-bottom: 12px; font-size: 15px; color: var(--text);
  background: #0d0d13; border: 1px solid rgba(255, 255, 255, 0.14); border-radius: 12px; outline: none;
}
.pay-input:focus { border-color: rgba(255, 106, 0, 0.55); box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.14); }
.modal .pay-err { color: #ff6b7a; font-size: 13.5px; margin: 0 0 12px; }
.modal .pay-err a { color: var(--brand-soft); text-decoration: underline; }
.modal .pay-note { font-size: 12.5px; margin: 0 0 16px; }
.modal #payBtn:disabled { opacity: 0.6; cursor: wait; }
html[data-theme="light"] .pay-input { background: #f6f6f9; color: #1c1c28; border-color: rgba(20, 20, 40, 0.16); }

/* ============================================================
   v28 — ONEPAGE + MEGA MENÜ + HERO/4-ADIM REVİZYONLARI
   ============================================================ */

/* Çapa hedefleri sticky header'ın altında kalmasın */
section[id] { scroll-margin-top: 92px; }
.capa-alias { display: block; height: 0; scroll-margin-top: 92px; }

/* ---------- MEGA MENÜ (Ürünler + Blog) ---------- */
.nav-item { position: relative; display: inline-flex; align-items: center; }
.mega {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(10px);
  margin-top: 24px; width: 470px; z-index: 60;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 14px;
  background: rgba(13, 13, 20, 0.97); border: 1px solid var(--line); border-radius: 18px;
  box-shadow: var(--card-sh-lg), 0 0 40px rgba(255, 106, 0, 0.12);
  backdrop-filter: blur(18px) saturate(140%); -webkit-backdrop-filter: blur(18px) saturate(140%);
  opacity: 0; visibility: hidden;
  transition: opacity .2s ease, transform .2s ease, visibility 0s linear .28s;
}
/* link ile panel arasındaki boşlukta hover kopmasın (görünmez köprü) */
.mega::before { content: ""; position: absolute; left: 0; right: 0; top: -26px; height: 26px; }
.nav-item:hover .mega, .nav-item:focus-within .mega {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); transition-delay: 0s;
}
.mega-kart {
  display: flex; gap: 11px; align-items: flex-start; padding: 11px 12px; border-radius: 12px;
  color: var(--text); border: 1px solid transparent; transition: all .16s ease;
}
.mega-kart:hover { text-decoration: none; background: rgba(255, 106, 0, 0.08); border-color: rgba(255, 106, 0, 0.3); }
.mega-kart img { width: 26px; height: 26px; object-fit: contain; flex: none; margin-top: 2px; }
.mega-ico { font-size: 20px; flex: none; line-height: 1.2; }
.mega-kart b { display: block; font-size: 13.5px; }
.mega-kart small { display: block; color: var(--muted); font-size: 11.5px; line-height: 1.45; }
html[data-theme="light"] .mega { background: rgba(255, 255, 255, 0.98); }
@media (max-width: 900px) {
  .nav-item { display: contents; }   /* mobil panelde linkler düz akar */
  .mega { display: none !important; }
}

/* ---------- HERO: tam genişlik manifesto slaytı ---------- */
.hero-tam { text-align: center; padding-top: 6px; }
.hero-tam h1 { font-size: clamp(2.6rem, 6.2vw, 5.6rem); line-height: 1.06; margin: 0 auto 20px; max-width: 1200px; }
/* .hero p.lead genel kuralından güçlü olsun diye p ile yazıldı (blok ortalanır) */
.hero-tam p.lead { margin: 0 auto 30px; max-width: 720px; text-align: center; }
.cta-row.orta { justify-content: center; }

/* ---------- HERO: rozet kartları (tekil badge yerine 2-3 eşit kart) ---------- */
.hero-rozetler { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 22px; width: 100%; max-width: 620px; }
.hero-rozetler.orta { margin-left: auto; margin-right: auto; justify-content: center; }
.hero-rozet {
  flex: 1 1 0; min-width: 150px; text-align: center;
  background: rgba(255, 106, 0, 0.10); color: var(--brand-soft);
  border: 1px solid rgba(255, 106, 0, 0.28); border-radius: 14px;
  font-size: 12.5px; font-weight: 700; padding: 10px 12px;
  box-shadow: 0 0 20px rgba(255, 106, 0, 0.12);
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.hero-rozet:hover { transform: translateY(-2px); box-shadow: 0 0 30px rgba(255, 106, 0, 0.3); border-color: rgba(255, 106, 0, 0.5); }
@media (max-width: 620px) { .hero-rozet { min-width: 120px; font-size: 11.5px; padding: 8px 10px; } }

/* ---------- HERO: mock kutusu %15 büyütüldü ---------- */
.hero-right .mock { max-width: 440px; }

/* ---------- NASIL ÇALIŞIR: 4 adım + ürün logoları ---------- */
.adimlar.dort { grid-template-columns: repeat(4, 1fr); gap: 22px; }
.adimlar.dort .adim { padding: 28px 22px 24px; }
.adim-ust { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 18px; }
.adim-ust .adim-no { margin-bottom: 0; }
.adim-logo {
  height: 30px; width: auto; object-fit: contain; display: block;
  background: rgba(255, 255, 255, 0.06); border: 1px solid var(--line); border-radius: 10px; padding: 5px 9px;
}
html[data-theme="light"] .adim-logo { background: var(--glass); }
@media (max-width: 1100px) { .adimlar.dort { grid-template-columns: 1fr 1fr; } .adimlar.dort .adim:nth-child(2)::after { display: none; } }
@media (max-width: 620px) { .adimlar.dort { grid-template-columns: 1fr; } .adimlar.dort .adim:nth-child(2)::after { display: block; } }

/* ---------- İstatistik kartları: zengin alt satır ---------- */
.stat .stat-alt { display: block; color: var(--muted); font-size: 12px; line-height: 1.5; margin-top: 7px; opacity: 0.9; }

/* ---------- Fiyat kartları: uygulama slaytlarında kanal satırı (₺ satırıyla eş yükseklik) ---------- */
.price-card .chan { color: var(--brand-soft); font-size: 13px; font-weight: 700; min-height: 18px; }

/* ---------- LIGHT: ürün sekme butonları + slider okları okunur ---------- */
html[data-theme="light"] .s-dot { color: var(--soft); border-color: rgba(0, 0, 0, 0.16); }
html[data-theme="light"] .s-dot:hover { color: var(--brand); border-color: rgba(255, 106, 0, 0.5); }
html[data-theme="light"] .s-dot.active { color: #fff; border: 0; }
html[data-theme="light"] .s-nav { color: var(--soft); border-color: rgba(0, 0, 0, 0.16); }
html[data-theme="light"] .s-nav:hover { color: var(--brand); }
html[data-theme="light"] .hero-dot:hover { border-color: rgba(255, 106, 0, 0.6); }

/* ---------- Onepage yeni bölümler: foto zeminler ---------- */
#hakkimizda {
  background:
    linear-gradient(180deg, #0A0A0F 0%, rgba(10,10,15,.92) 14%, rgba(10,10,15,.94) 86%, #0A0A0F 100%),
    url('assets/foto/yorumlar.jpg') center/cover no-repeat;
}
#iletisim {
  background:
    linear-gradient(180deg, #0A0A0F 0%, rgba(10,10,15,.92) 14%, rgba(10,10,15,.94) 86%, #0A0A0F 100%),
    url('assets/foto/sss.jpg') center/cover no-repeat;
}
html[data-theme="light"] #hakkimizda {
  background:
    linear-gradient(180deg, #F7F7FB 0%, rgba(247,247,251,.93) 14%, rgba(247,247,251,.95) 86%, #F7F7FB 100%),
    url('assets/foto/yorumlar.jpg') center/cover no-repeat;
}
html[data-theme="light"] #iletisim {
  background:
    linear-gradient(180deg, #F7F7FB 0%, rgba(247,247,251,.93) 14%, rgba(247,247,251,.95) 86%, #F7F7FB 100%),
    url('assets/foto/sss.jpg') center/cover no-repeat;
}
#hakkimizda .hakk-metin { text-align: center; }

/* Fiyat kartlarında <a> ve <button> CTA'ları aynı yükseklikte olsun (kutu boyu sabit) */
.price-card .btn { line-height: 1.2; }

/* iyzico odeme logolari (footer bandi) — iyzico uyeisyeri kriteri */
/* iyzico seridi: logo bandi + altinda uyelik sarti geregi guvence metni.
   DIKKAT: bant satir (row) yonunde kalmali. Bir kez column + align-items:center
   yapilmisti; o zaman logo stretch ile aldigi yuksekligi kaybedip height:auto +
   heniz yuklenmemis SVG yuzunden 0 yukseklige dustu, lazy hic tetiklenmedi ve
   iyzico logosu sayfadan gorunmez oldu. Metin bandin ALTINA, ayri satira konur. */
/* iyzico seridi: yalnizca logo bandi, ORTADA. Guvence metni alt satirda (.foot-alt icinde,
   telif yazisinin karsisinda) durur. */
.iyzico-band { display: flex; justify-content: center; border-top: 1px solid var(--line); margin-top: 28px; padding: 18px 0 2px; }
/* aspect-ratio SART: SVG'nin kendi olculeri 456x32. Bu olmadan, dosya yuklenmeden
   yukseklik 0 kalir; yukseklik 0 olan ogeyi tarayici "gorunmuyor" sayip lazy'yi hic
   tetiklemez ve logo KALICI gorunmez olur. */
.iyzico-band img { width: min(310px, 80%); height: auto; aspect-ratio: 456 / 32; opacity: .9; }
/* Guvence notu: alt satirda saga yaslanir (telif solda). Dar ekranda alt alta gecer. */
.iyzico-not {
  margin: 0; text-align: right;
  font: 500 12.5px/1.5 Inter, sans-serif; color: inherit;
}
.iyzico-not b { color: var(--soft); font-weight: 700; }
@media (max-width: 640px) {
  .foot-alt { justify-content: center; text-align: center; }
  .iyzico-not { text-align: center; }
}
.iyzico-band .iyz-colored { display: none; }
html[data-theme="light"] .iyzico-band .iyz-white { display: none; }
html[data-theme="light"] .iyzico-band .iyz-colored { display: block; }

/* Platform rozetleri (paket bloklarinin ustu) — Windows / macOS / Chrome uzantisi */
.platform-rozet { display: flex; gap: 8px; justify-content: center; align-items: center; flex-wrap: wrap; margin: 12px 0 18px; }
.platform-rozet .pf {
  display: inline-flex; align-items: center; gap: 6px;
  font: 600 12px/1 Inter, sans-serif; color: var(--muted);
  background: rgba(255, 255, 255, 0.04); border: 1px solid var(--line);
  padding: 6px 11px; border-radius: 999px;
}
.platform-rozet .pf svg { width: 13px; height: 13px; flex: none; opacity: .85; }
html[data-theme="light"] .platform-rozet .pf { background: rgba(0, 0, 0, 0.03); }

/* Footer: logo bandi telif satirinin hemen ustunde — arada fazla bosluk olmasin.
   NOT: Eskiden burada `justify-content:center` + `span{width:100%}` vardi; telif yazisi
   tum satiri kaplayip iyzico guvence metnini alt satira itiyordu. Artik satir ikiye
   ayriliyor: SOL = telif, SAG = iyzico metni (.foot-alt zaten space-between). */
.iyzico-band + .foot-alt { margin-top: 0; padding: 10px 0 16px; border-top: 0; }
/* prod. king c. — Instagram linki */
.kingc-link { color: inherit; text-decoration: none; border-bottom: 1px dotted currentColor; transition: color .18s; }
.kingc-link:hover { color: var(--brand); }

/* iyzico ithaf metni — odeme logolarinin ustunde */
.odeme-ithaf { max-width: 640px; margin: 26px auto 0; text-align: center; font-size: 13.5px; line-height: 1.65; color: var(--muted); }
.odeme-ithaf strong { color: var(--soft); font-weight: 700; }
