/* ==========================================================================
   Wiowis — Global brand tasarım sistemi
   Koyu (varsayılan) + aydınlık tema, CSS değişkenleriyle.
   ========================================================================== */

:root {
  --bg: #08080f;
  --bg-2: #0d0d1a;
  --bg-3: #111122;
  --card: rgba(255, 255, 255, 0.035);
  --card-strong: #14142a;
  --border: rgba(255, 255, 255, 0.09);
  --border-soft: rgba(255, 255, 255, 0.06);
  --text: #f3f4fc;
  --muted: #9aa0bd;
  --muted-2: #6f75a0;
  --primary: #7c6cff;
  --primary-hi: #a78bfa;
  --accent: #ff8a5c;
  --ok: #34d399;
  --warn: #fbbf24;
  --danger: #fb7185;
  --grad: linear-gradient(135deg, #7c6cff 0%, #a06bff 45%, #ff8a5c 100%);
  --grad-soft: linear-gradient(135deg, rgba(124,108,255,.16), rgba(255,138,92,.12));
  --ring: rgba(124, 108, 255, 0.45);
  --shadow-lg: 0 24px 70px -20px rgba(0, 0, 0, 0.65);
  --shadow-sm: 0 10px 30px -12px rgba(0, 0, 0, 0.55);
  --radius: 18px;
  --radius-lg: 24px;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  --nav-h: 72px;
}

[data-theme="light"] {
  --bg: #f6f7fd;
  --bg-2: #ffffff;
  --bg-3: #eef0fb;
  --card: rgba(255, 255, 255, 0.85);
  --card-strong: #ffffff;
  --border: rgba(20, 22, 45, 0.1);
  --border-soft: rgba(20, 22, 45, 0.07);
  --text: #171a2b;
  --muted: #565c7d;
  --muted-2: #8a90af;
  --ring: rgba(109, 92, 248, 0.4);
  --shadow-lg: 0 24px 70px -28px rgba(60, 55, 140, 0.35);
  --shadow-sm: 0 10px 30px -14px rgba(60, 55, 140, 0.3);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 10px); }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  transition: background .3s ease, color .3s ease;
}

/* Arka plan katmanları: ışık huzmeleri + ince grid + doku */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: -3; pointer-events: none;
  background:
    radial-gradient(900px 520px at 85% -8%, rgba(124, 108, 255, 0.16), transparent 60%),
    radial-gradient(700px 460px at 8% 12%, rgba(255, 138, 92, 0.09), transparent 55%),
    radial-gradient(1000px 700px at 50% 120%, rgba(124, 108, 255, 0.1), transparent 60%);
  background-color: var(--bg);
}
body::after {
  content: "";
  position: fixed; inset: 0; z-index: -2; pointer-events: none; opacity: .5;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 90% 55% at 50% 0%, #000 0%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 90% 55% at 50% 0%, #000 0%, transparent 78%);
}
[data-theme="light"] body::after {
  background-image:
    linear-gradient(rgba(20, 22, 45, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 22, 45, 0.045) 1px, transparent 1px);
}

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 22px; }

::selection { background: rgba(124, 108, 255, 0.35); color: #fff; }

/* ---- Butonlar ---- */
.cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 30px; border-radius: 999px;
  background: var(--grad); color: #fff; font-weight: 700; font-size: 1rem;
  text-decoration: none; border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 12px 34px -10px rgba(124, 108, 255, 0.55);
  transition: transform .2s ease, box-shadow .25s ease, filter .2s ease;
  white-space: nowrap;
}
.cta:hover { filter: brightness(1.08); transform: translateY(-2px); box-shadow: 0 18px 44px -12px rgba(124, 108, 255, 0.65); }
.cta:active { transform: translateY(0); }
.cta-ghost {
  background: var(--card); color: var(--text);
  border: 1px solid var(--border); box-shadow: none;
}
.cta-ghost:hover { background: var(--card-strong); border-color: var(--ring); box-shadow: var(--shadow-sm); }
.cta-sm { padding: 9px 18px; font-size: .9rem; }

/* ---- Üst bar ---- */
.topbar {
  position: sticky; top: 0; z-index: 100;
  height: var(--nav-h);
  background: color-mix(in srgb, var(--bg) 72%, transparent);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease, background .3s ease;
}
.topbar.scrolled {
  border-color: var(--border);
  box-shadow: 0 12px 40px -18px rgba(0, 0, 0, 0.5);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: var(--nav-h); }
.logo { display: flex; align-items: center; gap: 11px; font-weight: 800; font-size: 1.18rem; text-decoration: none; color: var(--text); letter-spacing: -.01em; }
.logo-badge {
  width: 38px; height: 38px; border-radius: 11px; overflow: hidden; flex-shrink: 0;
  box-shadow: 0 6px 20px -6px rgba(124, 108, 255, 0.6);
  outline: 1px solid rgba(255,255,255,.08);
}
.logo-badge img { width: 100%; height: 100%; object-fit: cover; display: block; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { position: relative; color: var(--muted); text-decoration: none; font-size: .94rem; font-weight: 550; transition: color .2s; }
.nav-links a:not(.cta)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--grad); border-radius: 2px; transition: width .25s ease;
}
.nav-links a:not(.cta):hover, .nav-links a.active { color: var(--text); }
.nav-links a:not(.cta):hover::after, .nav-links a.active::after { width: 100%; }
.nav-links .cta { padding: 10px 20px; font-size: .9rem; }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: 1px solid var(--border); color: var(--text); font-size: 1.3rem; cursor: pointer; line-height: 1; padding: 6px 10px; border-radius: 10px; }

/* Tema düğmesi */
.theme-btn {
  display: grid; place-items: center; width: 38px; height: 38px; border-radius: 11px;
  background: var(--card); border: 1px solid var(--border); color: var(--muted);
  cursor: pointer; transition: all .2s;
}
.theme-btn:hover { color: var(--text); border-color: var(--ring); }
.theme-btn svg { width: 17px; height: 17px; fill: currentColor; }
.theme-btn .ic-sun { display: none; }
[data-theme="light"] .theme-btn .ic-moon { display: none; }
[data-theme="light"] .theme-btn .ic-sun { display: block; }

/* Dil seçici */
.lang-switch { display: inline-flex; gap: 4px; align-items: center; }
.lang-link {
  font-size: .74rem; font-weight: 700; letter-spacing: .04em;
  padding: 4px 9px; border-radius: 999px; color: var(--muted);
  background: var(--card); border: 1px solid var(--border);
  text-decoration: none; transition: all .2s;
}
.lang-link:hover { color: var(--text); }
.lang-link.on { color: #fff; background: linear-gradient(135deg, rgba(124,108,255,.5), rgba(160,107,255,.35)); border-color: var(--ring); }
[data-theme="light"] .lang-link.on { color: #fff; }

/* ---- Bölüm başlıkları ---- */
.sect { padding: 96px 0; }
.sect-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--primary-hi); margin-bottom: 16px;
}
.sect-tag::before { content: ""; width: 22px; height: 2px; background: var(--grad); border-radius: 2px; }
.sect h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); font-weight: 800; letter-spacing: -.03em; line-height: 1.12; }
.sect .sub { color: var(--muted); max-width: 640px; margin: 16px auto 0; font-size: 1.05rem; }
.sect.center { text-align: center; }
.sect.center .sub { margin-left: auto; margin-right: auto; }
.sect.center .sect-tag::before { display: none; }

/* ---- Görünme animasyonu ---- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.16,1,.3,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

/* ---- Hero ---- */
.hero { position: relative; padding: 92px 0 40px; text-align: center; overflow: hidden; }
.hero .hero-inner { position: relative; z-index: 2; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 15px; border-radius: 999px;
  background: var(--card); border: 1px solid var(--border);
  color: var(--muted); font-size: .84rem; font-weight: 600;
  margin-bottom: 26px;
}
.eyebrow .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 0 rgba(52, 211, 153, .6); animation: pulse 2.2s infinite; flex-shrink: 0; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, .55); }
  70% { box-shadow: 0 0 0 9px rgba(52, 211, 153, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}
.hero h1 {
  font-size: clamp(2.4rem, 6.5vw, 4.1rem); font-weight: 800; letter-spacing: -.035em; line-height: 1.06;
  max-width: 900px; margin: 0 auto;
}
.hero h1 .grad {
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero .lead { color: var(--muted); max-width: 620px; margin: 24px auto 0; font-size: 1.14rem; }
.hero .cta-row { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 36px; }
.store-badges { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 18px; }
.store-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 18px; border-radius: 13px;
  background: var(--card); border: 1px solid var(--border);
  text-decoration: none; color: var(--text); transition: all .2s;
}
.store-badge:hover { border-color: var(--ring); transform: translateY(-2px); }
.store-badge .sb-ic { font-size: 1.5rem; line-height: 1; }
.store-badge .sb-tx { text-align: left; line-height: 1.15; }
.store-badge .sb-sm { font-size: .66rem; color: var(--muted); font-weight: 600; letter-spacing: .03em; }
.store-badge .sb-lg { font-size: .95rem; font-weight: 700; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 40px; }
.hero-badges .badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .82rem; font-weight: 600; padding: 7px 14px; border-radius: 999px;
  background: var(--card); border: 1px solid var(--border); color: var(--muted);
}
.hero-badges .badge svg { width: 14px; height: 14px; fill: var(--ok); }

/* Telefon maketi */
.phone-stage { position: relative; margin-top: 68px; display: flex; justify-content: center; }
.phone-glow {
  position: absolute; top: 6%; left: 50%; transform: translateX(-50%);
  width: 620px; height: 620px; border-radius: 50%; z-index: 0;
  background: radial-gradient(circle, rgba(124, 108, 255, 0.28), rgba(255, 138, 92, 0.08) 55%, transparent 70%);
  filter: blur(30px);
}
.phone {
  position: relative; z-index: 1; width: 320px; border-radius: 44px; padding: 10px;
  background: linear-gradient(165deg, #3a3d70, #141529);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 60px 120px -30px rgba(0, 0, 0, 0.75), inset 0 1px 0 rgba(255,255,255,.18);
  transform: rotate(0deg) translateY(0);
  animation: floaty 7s ease-in-out infinite;
}
[data-theme="light"] .phone { background: linear-gradient(165deg, #e7e9f7, #c9cde9); }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.phone-notch { width: 110px; height: 26px; border-radius: 999px; background: rgba(0,0,0,.85); margin: 4px auto 10px; position: relative; z-index: 2; }
[data-theme="light"] .phone-notch { background: #171a2b; }
.phone-screen {
  border-radius: 34px; overflow: hidden; background: var(--bg-2);
  border: 1px solid rgba(255,255,255,.06);
}
.phone-top { display: flex; align-items: center; gap: 10px; padding: 14px 16px; border-bottom: 1px solid var(--border-soft); }
.phone-ava {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  background: var(--grad); display: grid; place-items: center;
  color: #fff; font-weight: 800; font-size: .8rem;
}
.phone-top .pt-tx { text-align: left; line-height: 1.15; }
.phone-top .pt-tx b { display: block; font-size: .86rem; }
.phone-top .pt-tx span { font-size: .68rem; color: var(--ok); font-weight: 600; }
.phone-top .pt-right { margin-left: auto; }
.phone-top .pt-right svg { width: 16px; height: 16px; fill: var(--muted); }
.phone-chat { display: flex; flex-direction: column; gap: 10px; padding: 16px 14px 18px; min-height: 340px; }
.msg { max-width: 78%; padding: 10px 13px; border-radius: 16px; font-size: .8rem; line-height: 1.45; animation: msg-in .5s cubic-bezier(.16,1,.3,1) both; }
@keyframes msg-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.msg.bot {
  align-self: flex-start; background: var(--card); border: 1px solid var(--border-soft);
  border-bottom-left-radius: 5px; color: var(--text);
}
.msg.user {
  align-self: flex-end; background: var(--grad); color: #fff; border-bottom-right-radius: 5px;
}
.msg .typing { display: inline-flex; gap: 4px; align-items: center; padding: 2px 0; }
.msg .typing i { width: 5px; height: 5px; border-radius: 50%; background: currentColor; opacity: .7; animation: blink 1.2s infinite; }
.msg .typing i:nth-child(2) { animation-delay: .15s; }
.msg .typing i:nth-child(3) { animation-delay: .3s; }
@keyframes blink { 0%, 60%, 100% { opacity: .2; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }
.msg.time { font-size: .64rem; color: var(--muted-2); align-self: center; background: none; padding: 2px 8px; }
.phone-input { display: flex; align-items: center; gap: 10px; padding: 12px 14px; border-top: 1px solid var(--border-soft); }
.phone-input .pi-f {
  flex: 1; background: var(--card); border: 1px solid var(--border-soft);
  border-radius: 999px; padding: 9px 14px; font-size: .76rem; color: var(--muted);
  text-align: left;
}
.phone-input .pi-send {
  width: 32px; height: 32px; border-radius: 50%; background: var(--grad);
  display: grid; place-items: center; color: #fff; flex-shrink: 0;
}
.phone-input .pi-send svg { width: 13px; height: 13px; fill: currentColor; }

/* Yüzen kartlar */
.float-chip {
  position: absolute; z-index: 2; display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; border-radius: 16px;
  background: var(--card-strong); border: 1px solid var(--border);
  box-shadow: var(--shadow-lg); backdrop-filter: blur(10px);
  font-size: .82rem; font-weight: 600; color: var(--text);
  animation: floaty 6s ease-in-out infinite;
}
.float-chip .fc-ic {
  width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; flex-shrink: 0;
}
.float-chip .fc-ic svg { width: 15px; height: 15px; fill: #fff; }
.float-chip small { display: block; font-weight: 500; color: var(--muted); font-size: .68rem; }
.fc-1 { top: 14%; left: calc(50% - 330px); animation-delay: .6s; }
.fc-2 { top: 46%; right: calc(50% - 340px); animation-delay: 1.4s; }
@media (max-width: 880px) {
  .fc-1 { left: 2%; }
  .fc-2 { right: 2%; }
}

/* ---- Marquee (güven şeridi) ---- */
.marquee { padding: 40px 0; border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); overflow: hidden; background: var(--bg-2); }
.marquee-track { display: flex; gap: 60px; width: max-content; animation: scroll-x 34s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes scroll-x { to { transform: translateX(-50%); } }
.marquee-item { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: .95rem; font-weight: 600; white-space: nowrap; opacity: .9; }
.marquee-item svg { width: 18px; height: 18px; fill: var(--primary-hi); }

/* ---- Feature kartları ---- */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.card {
  position: relative; background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  transition: transform .3s cubic-bezier(.16,1,.3,1), border-color .3s, box-shadow .3s, background .3s;
  overflow: hidden;
}
.card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; opacity: 0; pointer-events: none;
  background: radial-gradient(420px 200px at var(--mx, 50%) 0%, rgba(124,108,255,.12), transparent 70%);
  transition: opacity .35s;
}
.card:hover { transform: translateY(-5px); border-color: var(--ring); box-shadow: var(--shadow-lg); }
.card:hover::before { opacity: 1; }
.card .ic {
  width: 48px; height: 48px; border-radius: 14px; margin-bottom: 18px;
  display: grid; place-items: center; color: #fff;
  background: var(--grad); box-shadow: 0 10px 24px -8px rgba(124, 108, 255, 0.6);
}
.card .ic svg { width: 22px; height: 22px; fill: currentColor; }
.card h3 { font-size: 1.08rem; font-weight: 700; margin-bottom: 8px; letter-spacing: -.01em; }
.card p { color: var(--muted); font-size: .93rem; }

/* Gizlilik bandı */
.privacy {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 30px; margin-top: 44px;
  text-align: left;
}
.privacy > .ic {
  width: 46px; height: 46px; border-radius: 13px; flex-shrink: 0;
  display: grid; place-items: center; color: #fff;
  background: linear-gradient(135deg, rgba(52,211,153,.85), rgba(14,165,233,.85));
  box-shadow: 0 10px 24px -8px rgba(52, 211, 153, 0.5);
}
.privacy > .ic svg { width: 22px; height: 22px; fill: currentColor; }
.privacy h3 { font-size: 1.08rem; font-weight: 700; margin-bottom: 6px; }
.privacy p { color: var(--muted); font-size: .94rem; margin: 0; }
.privacy a { color: var(--primary-hi); text-decoration: none; font-weight: 650; }
.privacy a:hover { color: var(--text); }
@media (max-width: 480px) { .privacy { flex-direction: column; } }

/* ---- Nasıl çalışır ---- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; counter-reset: step; }
.step { position: relative; text-align: left; }
.step .step-num {
  font-size: .8rem; font-weight: 800; letter-spacing: .1em;
  color: var(--primary-hi); margin-bottom: 14px; display: flex; align-items: center; gap: 10px;
}
.step .step-num::before {
  content: ""; width: 34px; height: 2px; border-radius: 2px; background: var(--grad); opacity: .6;
}
.step h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .93rem; }

/* ---- Modeller ---- */
.models-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 18px; margin-top: 44px; }
.model-card { position: relative; display: flex; flex-direction: column; gap: 12px; }
.model-card .mc-head { display: flex; align-items: flex-start; gap: 12px; }
.model-card .mc-logo {
  width: 44px; height: 44px; border-radius: 13px; flex-shrink: 0;
  display: grid; place-items: center; color: #fff; font-weight: 800; font-size: .82rem;
  background: var(--grad-soft); border: 1px solid var(--border); color: var(--primary-hi);
}
.model-card .mc-title { flex: 1; }
.model-card .mc-title h3 { font-size: 1.02rem; font-weight: 700; letter-spacing: -.01em; }
.model-card .mc-title p { color: var(--muted); font-size: .8rem; line-height: 1.4; }
.model-card .mc-stats { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 2px; }
.mc-stat {
  font-size: .72rem; font-weight: 600; padding: 4px 10px; border-radius: 999px;
  background: var(--card); border: 1px solid var(--border); color: var(--muted);
}
.mc-stat b { color: var(--text); font-weight: 700; }
.mc-class {
  align-self: flex-start; font-size: .7rem; font-weight: 800; letter-spacing: .06em;
  padding: 4px 11px; border-radius: 999px;
}
.mc-class.free { background: rgba(52, 211, 153, .13); color: var(--ok); border: 1px solid rgba(52, 211, 153, .3); }
.mc-class.pro { background: rgba(124, 108, 255, .15); color: var(--primary-hi); border: 1px solid rgba(124, 108, 255, .35); }
.mc-class.soon { background: rgba(251, 191, 36, .12); color: var(--warn); border: 1px solid rgba(251, 191, 36, .3); }
.mc-foot { display: flex; align-items: center; gap: 8px; border-top: 1px solid var(--border-soft); padding-top: 12px; }
.mc-foot span { font-size: .72rem; color: var(--muted); }
.mc-foot svg { width: 13px; height: 13px; fill: var(--ok); }
.models-note { margin-top: 26px; text-align: center; color: var(--muted); font-size: .88rem; }

/* Ajanlar */
.agents-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px; margin-top: 44px; text-align: left;
}
.agent-card {
  --cat-grad: linear-gradient(135deg, rgba(52,211,153,.85), rgba(14,165,233,.85));
  --dot: #34d399;
  display: flex; flex-direction: column; gap: 18px;
}
.agent-card::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--cat-grad, var(--grad)); border-radius: inherit;
}
.agent-card .mc-logo {
  width: 48px; height: 48px; font-size: 1.15rem; flex-shrink: 0;
  color: #fff; background: var(--cat-grad, var(--grad));
  box-shadow: 0 8px 20px -8px rgba(0, 0, 0, .4);
}
.ac-head { display: flex; align-items: center; gap: 14px; }
.ac-head .mc-title { flex: 1; min-width: 0; }
.ac-head h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 3px; }
.ac-head p { color: var(--muted); font-size: .86rem; margin: 0; }
.ac-count {
  flex-shrink: 0; font-size: .72rem; font-weight: 700;
  padding: 5px 11px; border-radius: 999px; color: var(--muted);
  background: var(--bg2); border: 1px solid var(--border);
  white-space: nowrap;
}
.ac-count b { color: var(--primary-hi); font-weight: 800; }
.ac-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font-size: .8rem; padding: 7px 12px; border-radius: 999px;
  background: var(--bg2); border: 1px solid var(--border); color: var(--text);
  font-weight: 600;
}
.chip::before { content: ""; display: inline-block; width: 7px; height: 7px; margin-right: 8px; border-radius: 50%; background: var(--dot, var(--primary-hi)); vertical-align: middle; }
.chip-lg {
  font-size: .88rem; padding: 11px 20px;
  background: var(--cat-grad, var(--grad)); border: 0; color: #fff;
  box-shadow: 0 10px 24px -10px rgba(124, 108, 255, .55);
}
.chip-lg::before { background: rgba(255, 255, 255, .9); }
.agent-hero { grid-column: 1 / -1; flex-direction: row; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 18px; }
.agent-hero .ac-head { flex: 1 1 300px; }
.agent-hero .ac-chips { justify-content: flex-end; }

/* ---- Yorumlar ---- */
.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.quote { display: flex; flex-direction: column; gap: 16px; }
.quote .stars { display: flex; gap: 3px; }
.quote .stars svg { width: 15px; height: 15px; fill: var(--warn); }
.quote p { color: var(--text); font-size: .96rem; flex: 1; }
.quote .who { display: flex; align-items: center; gap: 12px; }
.quote .who .avatar {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  color: #fff; font-weight: 800; font-size: .82rem; flex-shrink: 0;
}
.quote .who .qt-name { font-weight: 700; font-size: .9rem; }
.quote .who .qt-role { font-size: .78rem; color: var(--muted); }

/* ---- Fiyatlandırma ---- */
.price-toggle { display: inline-flex; gap: 4px; padding: 5px; border-radius: 999px; background: var(--card); border: 1px solid var(--border); margin: 30px auto 0; }
.price-toggle button {
  border: 0; background: none; color: var(--muted); font-weight: 600; font-size: .86rem;
  padding: 8px 18px; border-radius: 999px; cursor: pointer; transition: all .2s;
}
.price-toggle button.on { background: var(--grad); color: #fff; }
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; max-width: 820px; margin: 30px auto 0; }
.price { position: relative; text-align: left; display: flex; flex-direction: column; gap: 18px; }
.price .price-head { display: flex; align-items: center; justify-content: space-between; }
.price h3 { font-size: 1.12rem; font-weight: 800; }
.price .plan-badge {
  font-size: .68rem; font-weight: 800; letter-spacing: .06em;
  padding: 4px 11px; border-radius: 999px; background: var(--grad); color: #fff;
}
.price .amt { font-size: 2.9rem; font-weight: 800; letter-spacing: -.03em; line-height: 1; display: flex; align-items: baseline; gap: 8px; }
.price .amt small { font-size: .95rem; color: var(--muted); font-weight: 500; }
.price .amt .yearly-note { font-size: .8rem; color: var(--ok); font-weight: 600; }
.price ul { list-style: none; display: grid; gap: 10px; flex: 1; }
.price li { display: flex; gap: 10px; color: var(--muted); font-size: .92rem; align-items: flex-start; }
.price li::before {
  content: ""; width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0; margin-top: 1px;
  background: rgba(52, 211, 153, .16);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/60% no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/60% no-repeat;
}
.price .cta { width: 100%; }
.price.highlight { border-color: var(--ring); }
.price.highlight::before { opacity: 1; }
.price .save-badge {
  display: inline-block; font-size: .7rem; font-weight: 700; padding: 3px 9px; border-radius: 999px;
  background: rgba(251, 191, 36, .14); color: var(--warn); border: 1px solid rgba(251, 191, 36, .3);
}
.price-foot { text-align: center; color: var(--muted); font-size: .84rem; margin-top: 22px; }

/* ---- SSS ---- */
.faq-list { max-width: 760px; margin: 36px auto 0; display: grid; gap: 12px; }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; transition: border-color .25s; }
.faq-item[open] { border-color: var(--ring); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  cursor: pointer; padding: 18px 20px; list-style: none; font-weight: 650; font-size: .97rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 1.4rem; font-weight: 500; color: var(--muted); transition: transform .25s; flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); color: var(--primary-hi); }
.faq-item .faq-a { padding: 0 20px 20px; color: var(--muted); font-size: .92rem; }

/* ---- CTA bandı ---- */
.cta-band { position: relative; margin-top: 40px; border-radius: var(--radius-lg); overflow: hidden; padding: 72px 32px; text-align: center; }
.cta-band::before {
  content: ""; position: absolute; inset: 0; background: var(--grad); opacity: .92;
}
.cta-band::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(400px 220px at 15% 0%, rgba(255,255,255,.28), transparent 60%),
    radial-gradient(420px 240px at 88% 100%, rgba(0,0,0,.18), transparent 60%);
}
.cta-band > * { position: relative; z-index: 2; }
.cta-band h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; color: #fff; letter-spacing: -.03em; line-height: 1.15; max-width: 640px; margin: 0 auto; }
.cta-band p { color: rgba(255,255,255,.85); margin: 16px auto 0; max-width: 540px; font-size: 1.03rem; }
.cta-band .cta { margin-top: 30px; background: #fff; color: #16142e; box-shadow: 0 16px 40px -12px rgba(0,0,0,.4); border-color: transparent; }
.cta-band .cta:hover { filter: none; transform: translateY(-2px); box-shadow: 0 22px 50px -14px rgba(0,0,0,.45); }
.cta-band .cta-note { margin-top: 14px; font-size: .8rem; color: rgba(255,255,255,.75); }

/* ---- Footer ---- */
footer { margin-top: 96px; border-top: 1px solid var(--border); background: var(--bg-2); }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.3fr; gap: 44px; padding: 64px 22px 48px; }
.footer-brand .logo { font-size: 1.15rem; margin-bottom: 16px; }
.footer-brand p { color: var(--muted); font-size: .92rem; margin: 0 0 20px; max-width: 300px; }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center;
  background: var(--card); border: 1px solid var(--border); color: var(--muted);
  transition: all .2s;
}
.socials a:hover { color: #fff; border-color: var(--ring); background: rgba(124,108,255,.16); transform: translateY(-2px); }
.socials svg { width: 17px; height: 17px; fill: currentColor; }
.footer-col h4 { font-size: .9rem; margin-bottom: 16px; letter-spacing: .02em; color: var(--text); }
.footer-col a, .footer-col p { display: block; color: var(--muted); text-decoration: none; font-size: .9rem; padding: 5px 0; transition: color .2s; }
.footer-col a:hover { color: var(--text); }
.footer-app { margin-top: 14px; }
.newsletter { display: flex; gap: 8px; margin-top: 14px; }
.newsletter input {
  flex: 1; min-width: 0; background: var(--card); border: 1px solid var(--border);
  color: var(--text); border-radius: 12px; padding: 11px 14px; font-size: .9rem; font-family: inherit;
  outline: none; transition: border-color .2s;
}
.newsletter input:focus { border-color: var(--ring); }
.newsletter button {
  border: 0; border-radius: 12px; padding: 0 16px; background: var(--grad); color: #fff;
  font-weight: 700; font-size: .86rem; cursor: pointer; transition: filter .2s;
}
.newsletter button:hover { filter: brightness(1.08); }
.newsletter .ns-msg { font-size: .78rem; color: var(--ok); margin-top: 8px; }
.footer-bottom { border-top: 1px solid var(--border-soft); padding: 20px 0; color: var(--muted); font-size: .84rem; }
.footer-bottom .wrap { display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; }
.footer-bottom a { color: var(--muted); text-decoration: none; }
.footer-bottom a:hover { color: var(--text); }

/* ---- İçerik sayfaları (blog/yazı/yasal) ---- */
.page-head { padding: 80px 0 30px; text-align: center; }
.page-head h1 { font-size: clamp(1.9rem, 4vw, 2.7rem); font-weight: 800; letter-spacing: -.03em; line-height: 1.15; }
.page-head p { color: var(--muted); margin: 12px auto 0; max-width: 620px; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin: 30px 0 20px; }
.post-card { display: flex; flex-direction: column; }
.post-card h3 { margin-bottom: 8px; font-size: 1.08rem; line-height: 1.35; }
.post-card h3 a { color: var(--text); text-decoration: none; }
.post-card h3 a:hover { color: var(--primary-hi); }
.post-card p { flex: 1; color: var(--muted); font-size: .92rem; }
.post-meta { color: var(--muted); font-size: .8rem; margin-top: 12px; }
.post-link { display: inline-block; margin-top: 14px; color: var(--primary-hi); text-decoration: none; font-weight: 650; font-size: .92rem; }
.post-link:hover { color: var(--text); }
.article { max-width: 720px; margin: 0 auto; padding: 40px 0 60px; }
.article .post-meta { margin: 10px 0 30px; }
.article h1 { font-size: clamp(1.9rem, 4vw, 2.6rem); font-weight: 800; letter-spacing: -.03em; line-height: 1.2; }
.article h2 { font-size: 1.45rem; font-weight: 750; margin: 34px 0 12px; }
.article h3 { font-size: 1.15rem; font-weight: 700; margin: 26px 0 10px; }
.article h4 { font-size: 1rem; font-weight: 700; margin: 22px 0 8px; }
.article p { color: var(--muted); margin: 14px 0; }
.article ul, .article ol { margin: 14px 0 14px 24px; color: var(--muted); }
.article li { margin: 7px 0; }
.article code { background: var(--card); color: var(--primary-hi); padding: 2px 7px; border-radius: 6px; font-size: .9em; border: 1px solid var(--border-soft); }
.article a { color: var(--primary-hi); }
.article a:hover { color: var(--text); }
.article hr { border: 0; border-top: 1px solid var(--border); margin: 34px 0; }
.article blockquote { border-left: 3px solid var(--ring); padding: 6px 0 6px 18px; margin: 16px 0; color: var(--muted); font-style: italic; }

/* ---- Tablo (models legacy) ---- */
table.models { width: 100%; border-collapse: collapse; margin-top: 8px; }
table.models th, table.models td { text-align: left; padding: 13px 15px; border-bottom: 1px solid var(--border-soft); font-size: .92rem; }
table.models th { color: var(--muted); font-weight: 650; font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; }
table.models td .tag { font-size: .72rem; padding: 3px 10px; border-radius: 999px; background: rgba(124,108,255,.16); color: var(--primary-hi); font-weight: 700; }

/* ---- Coming Soon ---- */
.coming-soon { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 48px 20px; text-align: center; }
.cs-card { max-width: 540px; width: 100%; }
.cs-logo {
  width: 92px; height: 92px; border-radius: 26px; margin: 0 auto 26px; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cs-logo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cs-title {
  font-size: clamp(2rem, 6vw, 3.1rem); font-weight: 850; letter-spacing: -.04em; line-height: 1.08;
  margin: 20px 0 16px;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.cs-sub { color: var(--muted); font-size: 1.08rem; line-height: 1.6; max-width: 460px; margin: 0 auto; }
.cs-news { margin-top: 34px; }
.cs-note { color: var(--muted); font-size: .9rem; margin-bottom: 12px; }
.cs-news .newsletter { justify-content: center; max-width: 420px; margin: 0 auto; }
.cs-socials { display: flex; justify-content: center; gap: 12px; margin-top: 34px; }
.cs-socials a {
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid var(--border); color: var(--muted); transition: all .2s;
}
.cs-socials a:hover { color: #fff; border-color: var(--ring); background: rgba(124,108,255,.16); transform: translateY(-2px); }
.cs-socials svg { width: 18px; height: 18px; fill: currentColor; }
.cs-lang { margin-top: 30px; }
.cs-foot { margin-top: 18px; color: var(--muted-2); font-size: .8rem; }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 6px;
    background: color-mix(in srgb, var(--bg) 96%, transparent);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 14px 20px 20px; display: none; box-shadow: var(--shadow-lg);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 4px; font-size: 1.02rem; }
  .nav-links .cta { text-align: center; margin-top: 6px; }
  .nav-actions { gap: 10px; }
  .hero { padding: 64px 0 24px; }
  .sect { padding: 72px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; padding: 48px 22px 36px; }
  .fc-1, .fc-2 { display: none; }
  .phone { width: 288px; }
}
