/* ============================================================
   NovaPhone — Tasarım Sistemi
   Abstract · AI-powered · monolog · ölçülü dijital egoizm
   ============================================================ */

/* ---------- Fontlar (self-hosted, variable) ---------- */
@font-face {
  font-family: "Space Grotesk";
  src: url("/assets/fonts/space-grotesk-var.woff2") format("woff2");
  font-weight: 300 700; font-style: normal; font-display: optional;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212;
}
@font-face {
  font-family: "Space Grotesk";
  src: url("/assets/fonts/space-grotesk-var-ext.woff2") format("woff2");
  font-weight: 300 700; font-style: normal; font-display: optional;
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter-var.woff2") format("woff2");
  font-weight: 100 900; font-style: normal; font-display: optional;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+2000-206F, U+20AC, U+2122;
}
@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter-var-ext.woff2") format("woff2");
  font-weight: 100 900; font-style: normal; font-display: optional;
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+2C60-2C7F, U+A720-A7FF;
}

/* ---------- Token'lar ---------- */
:root {
  --bg: #0b0e16;
  --bg-soft: #0f1320;
  --surface: #141926;
  --surface-2: #1a2030;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.17);

  --ink: #f3f6ff;
  --ink-soft: #c2cbe0;
  --ink-mute: #8a94aa;

  --card-bg: #131826;
  --panel-bg: #10141f;
  --card-noise: .5;
  --veil-strength: 1;

  --brand: #5b8cff;
  --brand-2: #7c5cff;
  --cyan: #4be3d8;
  --magenta: #ff5c9e;
  --amber: #ffc24b;

  /* Sayfa başına değişen vurgu rengi (data-accent ile override edilir) */
  --accent: #5b8cff;
  --accent-2: #4be3d8;

  --grad-aurora: radial-gradient(120% 120% at 20% 10%, rgba(124,92,255,.35), transparent 55%),
                 radial-gradient(120% 120% at 80% 30%, rgba(75,227,216,.22), transparent 50%),
                 radial-gradient(140% 140% at 60% 100%, rgba(91,140,255,.25), transparent 55%);
  --grad-text: linear-gradient(95deg, #ffffff 0%, var(--accent) 30%, var(--accent-2) 55%, #e9efff 80%, #ffffff 100%);

  --font-display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --step--1: clamp(0.78rem, 0.74rem + 0.2vw, 0.9rem);
  --step-0:  clamp(0.95rem, 0.9rem + 0.25vw, 1.05rem);
  --step-1:  clamp(1.15rem, 1.05rem + 0.5vw, 1.4rem);
  --step-2:  clamp(1.45rem, 1.25rem + 1vw, 2rem);
  --step-3:  clamp(1.9rem, 1.5rem + 2vw, 3rem);
  --step-4:  clamp(2.5rem, 1.8rem + 3.5vw, 4.5rem);
  --step-5:  clamp(3.2rem, 2rem + 6vw, 7rem);
  --step-6:  clamp(3.8rem, 2rem + 9vw, 10rem);

  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --maxw: 1400px;
  --gutter: clamp(1.1rem, 4vw, 3rem);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
::selection { background: var(--brand); color: #fff; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.05; letter-spacing: -0.02em; }

/* ---------- Layout yardımcıları ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.container-wide { max-width: var(--maxw); }
.section { position: relative; padding-block: clamp(4rem, 9vw, 8rem); }
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-display); font-size: var(--step--1);
  letter-spacing: .28em; text-transform: uppercase; color: var(--ink-soft);
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--accent); box-shadow: 0 0 10px var(--accent); }
.eyebrow.center { justify-content: center; }
.gradient-text {
  background: var(--grad-text); background-size: 200% auto; background-position: 0% center;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 1px 14px color-mix(in srgb, var(--accent) 28%, transparent));
  animation: grad-shimmer 11s ease-in-out infinite alternate;
}
@keyframes grad-shimmer { from { background-position: 0% center; } to { background-position: 100% center; } }
.text-soft { color: var(--ink-soft); }
.text-mute { color: var(--ink-mute); }
.center { text-align: center; }

/* ---------- Immersive arka plan ---------- */
#bg-canvas {
  position: fixed; inset: 0; width: 100vw; height: 100vh;
  z-index: 0; pointer-events: none; opacity: 0; transition: opacity 1.2s var(--ease);
}
#bg-canvas.ready { opacity: .72; }
#bg-canvas.ready ~ .liquid-bg { opacity: .14; }
.aurora {
  position: fixed; inset: -20%; z-index: -1; background: var(--grad-aurora);
  filter: blur(58px) saturate(120%); opacity: .36; pointer-events: none;
  animation: aurora-drift 26s ease-in-out infinite alternate;
}
@keyframes aurora-drift {
  0%   { transform: translate3d(-6%, -4%, 0) scale(1) rotate(0deg); }
  50%  { transform: translate3d(5%, 4%, 0) scale(1.18) rotate(6deg); }
  100% { transform: translate3d(-2%, 6%, 0) scale(1.08) rotate(-4deg); }
}
/* Okunabilirlik perdesi: arka plan ile içerik arasında karartma + odak */
.veil {
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(5,6,10,.02) 0%, rgba(5,6,10,.46) 52%, rgba(5,6,10,.82) 100%),
    linear-gradient(180deg, rgba(5,6,10,.4) 0%, rgba(5,6,10,.18) 32%, rgba(5,6,10,.58) 100%);
}
.grain {
  position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: .035; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
main, .site-header, .site-footer { position: relative; z-index: 2; }

/* ---------- Dynamic Island Navbar ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; justify-content: center;
  padding: 14px var(--gutter); pointer-events: none;
  transition: transform .5s var(--ease), padding .5s var(--ease);
}
.site-header.hidden { transform: translateY(-180%); }
.nav {
  pointer-events: auto; position: relative;
  display: flex; align-items: center; gap: 1rem;
  height: 60px; padding: 0 .5rem 0 1.3rem;
  border-radius: 100px;
  background: linear-gradient(180deg, rgba(20,23,34,.7), rgba(10,12,20,.6));
  border: 1px solid transparent;
  backdrop-filter: blur(26px) saturate(180%); -webkit-backdrop-filter: blur(26px) saturate(180%);
  box-shadow: 0 14px 48px -16px rgba(0,0,0,.8), inset 0 1px 0 rgba(255,255,255,.08);
  transition: height .5s var(--ease), background .5s var(--ease), box-shadow .5s var(--ease), transform .5s var(--ease);
  max-width: calc(100vw - 2 * var(--gutter));
}
.nav::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px; pointer-events: none;
  background: linear-gradient(120deg, color-mix(in srgb, var(--accent) 55%, transparent), rgba(255,255,255,.12) 40%, color-mix(in srgb, var(--accent-2) 45%, transparent));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; opacity: .6;
}
.brand .dot { background: var(--accent); box-shadow: 0 0 16px var(--accent); }
.site-header.scrolled .nav {
  height: 52px;
  background: rgba(8, 10, 16, 0.78);
  box-shadow: 0 16px 54px -14px rgba(0,0,0,.9), inset 0 1px 0 rgba(255,255,255,.09);
}
.brand { display: flex; align-items: center; gap: .55rem; font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; letter-spacing: -.02em; white-space: nowrap; }
.brand .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 16px var(--brand); animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.35);opacity:.6} }
.nav-divider { width: 1px; height: 26px; background: var(--line-strong); flex: none; }
.nav-links { display: flex; align-items: center; gap: .15rem; }
.nav-links a { font-size: var(--step--1); color: var(--ink-soft); padding: .5rem .85rem; border-radius: 100px; transition: color .2s, background .2s; white-space: nowrap; }
.nav-links a:hover { color: var(--ink); background: rgba(255,255,255,.06); }
.nav-links a.is-active { color: var(--ink); background: rgba(91,140,255,.18); }
.nav-actions { display: flex; align-items: center; gap: .5rem; }
.nav-actions .btn { padding: .58rem 1.15rem; }
.nav-toggle { display: none; background: rgba(255,255,255,.05); border: 1px solid var(--line-strong); border-radius: 100px; padding: .55rem; cursor: pointer; color: var(--ink); }
.nav-toggle:hover { background: rgba(255,255,255,.1); }

/* ---------- Butonlar ---------- */
.btn {
  --b: var(--brand);
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .82rem 1.5rem; border-radius: 14px; font-family: var(--font-display);
  font-weight: 600; font-size: var(--step--1); letter-spacing: -0.005em; cursor: pointer;
  border: 1px solid transparent; transition: transform .18s var(--ease), box-shadow .25s, background .25s, border-color .25s, filter .2s;
  position: relative; white-space: nowrap; line-height: 1; user-select: none;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.btn[disabled] { opacity: .55; cursor: not-allowed; }
.btn-primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-2)); color: #06121f;
  box-shadow: 0 8px 22px -8px color-mix(in srgb, var(--accent) 70%, transparent), inset 0 1px 0 rgba(255,255,255,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px -10px color-mix(in srgb, var(--accent) 80%, transparent), inset 0 1px 0 rgba(255,255,255,.4); filter: saturate(1.08) brightness(1.03); }
.btn-ghost {
  border-color: var(--line-strong); color: var(--ink);
  background: color-mix(in srgb, var(--ink) 5%, transparent);
}
.btn-ghost:hover { transform: translateY(-2px); border-color: color-mix(in srgb, var(--accent) 55%, var(--line-strong)); background: color-mix(in srgb, var(--accent) 12%, transparent); color: var(--ink); }
.btn-lg { padding: 1rem 1.9rem; font-size: var(--step-0); border-radius: 16px; }
.btn-block { width: 100%; }

/* ---------- Glass / Kart (flat · dokulu · gölgeli) ---------- */
.glass {
  background: var(--panel-bg); border: 1px solid var(--line-strong); border-radius: var(--radius);
  box-shadow: 0 22px 50px -30px rgba(0,0,0,.85);
}
.card {
  position: relative; isolation: isolate;
  background: var(--card-bg);
  border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.5rem, 3vw, 2.3rem);
  box-shadow: 0 14px 40px -28px rgba(0,0,0,.9);
  transition: transform .4s var(--ease), border-color .4s, box-shadow .4s, background .4s;
  overflow: hidden;
}
.card::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: var(--card-noise); mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='90' height='90'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}
.card:hover { transform: translateY(-4px); border-color: var(--line-strong); box-shadow: 0 30px 60px -34px rgba(0,0,0,.95); background: color-mix(in srgb, var(--card-bg) 90%, var(--ink)); }

/* ---------- Hero ---------- */
.hero { min-height: 88svh; display: flex; align-items: center; padding-top: clamp(128px, 15vh, 178px); padding-bottom: clamp(2.5rem, 6vh, 5rem); }
.hero-grid { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (min-width: 960px) { .hero-grid { grid-template-columns: 1.1fr .9fr; } }
.hero h1 { font-size: clamp(2.3rem, 5.4vw, 4.6rem); font-weight: 700; line-height: 1.02; letter-spacing: -0.03em; }
.hero .lead { font-size: clamp(1.02rem, 0.95rem + 0.4vw, 1.25rem); color: var(--ink-soft); max-width: 48ch; margin-top: 1.6rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.4rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-top: 2rem; color: var(--ink-mute); font-size: var(--step--1); }
.hero-trust span { display: inline-flex; align-items: center; gap: .5rem; }
.hero-trust span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); }

.hero-visual { position: relative; min-height: 420px; display: grid; place-items: center; }

/* Canlı arama / ses sahnesi */
.voice-stage { width: min(420px, 100%); padding: 1.5rem 1.5rem 1.7rem; border-radius: var(--radius-lg); position: relative; z-index: 2; }
.vs-top { display: flex; align-items: center; gap: .6rem; font-family: var(--font-display); font-size: var(--step--1); }
.vs-top .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 14px var(--cyan); animation: pulse 1.6s ease-in-out infinite; }
.vs-time { margin-left: auto; color: var(--ink-mute); font-variant-numeric: tabular-nums; }
.eq { display: flex; align-items: flex-end; gap: 4px; height: 84px; margin: 1.3rem 0; }
.eq span { flex: 1; border-radius: 6px; background: linear-gradient(180deg, var(--cyan), var(--brand)); animation: eq-bounce 1.1s ease-in-out infinite; transform-origin: bottom; opacity: .85; }
@keyframes eq-bounce { 0%,100% { transform: scaleY(.25); } 50% { transform: scaleY(1); } }
.vs-quote { color: var(--ink-soft); font-size: var(--step--1); line-height: 1.55; }
.vs-score { display: flex; gap: 4px; margin-top: 1.1rem; }
.vs-score i { flex: 1; height: 6px; border-radius: 4px; background: var(--line-strong); }
.vs-score i.on { background: var(--cyan); box-shadow: 0 0 10px -2px var(--cyan); }

/* Yüzen veri çipleri */
.chip { position: absolute; z-index: 3; padding: .55rem .9rem; border-radius: 100px; font-family: var(--font-display); font-size: .78rem; font-weight: 600; color: var(--ink);
  background: rgba(12,14,22,.7); border: 1px solid var(--line-strong); backdrop-filter: blur(12px);
  box-shadow: 0 12px 30px -12px rgba(0,0,0,.7); white-space: nowrap; animation: chip-float 6s ease-in-out infinite; }
.chip b { color: var(--cyan); }
.chip-a { top: 4%; right: -2%; animation-delay: 0s; }
.chip-b { bottom: 18%; left: -6%; animation-delay: -2s; }
.chip-c { bottom: -2%; right: 8%; animation-delay: -4s; }
@keyframes chip-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@media (max-width: 600px) { .chip-a, .chip-b { display: none; } }

/* ---------- Kinetik başlık ---------- */
.kinetic { display: block; overflow: hidden; }
.kinetic .line { display: block; }
.reveal-word { display: inline-block; will-change: transform; }

/* ---------- Bölüm başlıkları (merkezli) ---------- */
.section-head { max-width: 62ch; margin: 0 auto clamp(2.5rem, 6vw, 4.5rem); text-align: center; }
.section-head h2 { font-size: var(--step-4); margin-top: 1rem; }
.section-head p { color: var(--ink-soft); font-size: var(--step-1); margin: 1.2rem auto 0; max-width: 56ch; }

/* ---------- Grid bileşenleri ---------- */
.grid { display: grid; gap: clamp(1rem, 2.5vw, 1.8rem); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.step-num { font-family: var(--font-display); font-size: var(--step-3); color: var(--brand); opacity: .5; }
.feature-icon { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: linear-gradient(135deg, rgba(91,140,255,.2), rgba(124,92,255,.1)); border: 1px solid var(--line); margin-bottom: 1.2rem; font-size: 1.4rem; }

/* ---------- Stat ---------- */
.stat { text-align: center; }
.stat .num { font-family: var(--font-display); font-size: var(--step-5); font-weight: 700; line-height: 1; }
.stat .label { color: var(--ink-soft); font-size: var(--step--1); margin-top: .6rem; letter-spacing: .04em; text-transform: uppercase; }

/* ---------- Fiyat ---------- */
.price-grid { display: grid; gap: 1.4rem; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.price-card { display: flex; flex-direction: column; position: relative; }
.price-card.featured { border-color: var(--brand); box-shadow: 0 0 0 1px var(--brand), 0 30px 80px -40px rgba(91,140,255,.7); }
.price-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: linear-gradient(100deg, var(--brand), var(--brand-2)); color: #fff; font-size: .7rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: .35rem .9rem; border-radius: 100px; }
.price-amount { font-family: var(--font-display); font-size: var(--step-3); font-weight: 700; margin-block: .5rem; }
.price-feature { display: flex; gap: .65rem; padding-block: .5rem; border-top: 1px solid var(--line); color: var(--ink-soft); font-size: var(--step--1); }
.price-feature::before { content: "→"; color: var(--cyan); }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; padding: 1.4rem 0; display: flex; justify-content: space-between; align-items: center; gap: 1rem; cursor: pointer; font-family: var(--font-display); font-size: var(--step-1); }
.faq-q .ico { transition: transform .4s var(--ease); color: var(--brand); }
.faq-item.open .faq-q .ico { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease); color: var(--ink-soft); }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a p { padding-bottom: 1.4rem; }

/* ---------- CTA ---------- */
.cta-band { position: relative; border-radius: var(--radius-lg); overflow: hidden; padding: clamp(2.8rem, 7vw, 6rem); text-align: center; border: 1px solid color-mix(in srgb, var(--accent) 40%, var(--line-strong));
  background: #0a0c14; isolation: isolate; }
.cta-band::before { content: ""; position: absolute; width: 55%; aspect-ratio: 1; left: 22%; top: -28%; z-index: 0; pointer-events: none; border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 55%, transparent), transparent 70%); filter: blur(48px); opacity: .8; animation: cta-orbit 13s ease-in-out infinite; }
.cta-band::after { content: ""; position: absolute; width: 45%; aspect-ratio: 1; right: 12%; bottom: -34%; z-index: 0; pointer-events: none; border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent-2) 50%, transparent), transparent 70%); filter: blur(52px); opacity: .7; animation: cta-orbit 16s ease-in-out infinite reverse; }
@keyframes cta-orbit { 0%,100% { transform: translate(-12%, 0) scale(1); } 50% { transform: translate(14%, 12%) scale(1.18); } }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { font-size: var(--step-4); }

/* ---------- Footer ---------- */
.site-footer {
  position: relative; margin-top: 6rem; padding: clamp(3.5rem, 7vw, 5.5rem) 0 2rem;
  background: linear-gradient(180deg, rgba(8,10,16,.4), rgba(4,5,9,.96) 60%);
  border-top: 1px solid var(--line-strong);
  box-shadow: 0 -40px 120px -40px color-mix(in srgb, var(--accent) 22%, transparent), inset 0 1px 0 rgba(255,255,255,.06);
}
.site-footer::before {
  content: ""; position: absolute; left: 0; right: 0; top: -1px; height: 1px;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--accent) 70%, transparent), color-mix(in srgb, var(--accent-2) 60%, transparent), transparent);
}
.footer-grid { display: grid; gap: 2.5rem; grid-template-columns: 1.7fr repeat(3, 1fr); }
.footer-grid h4 { font-size: var(--step--1); letter-spacing: .14em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 1rem; }
.footer-grid a { display: flex; align-items: center; gap: .4rem; width: fit-content; padding-block: .4rem; color: var(--ink-soft); font-size: var(--step--1); transition: color .2s, transform .2s; }
.footer-grid a:hover { color: var(--ink); transform: translateX(3px); }
.footer-legal { display: inline-flex; gap: 1.2rem; }
.footer-legal a { color: var(--ink-mute); transition: color .2s; }
.footer-legal a:hover { color: var(--ink); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1rem; margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--line); color: var(--ink-mute); font-size: var(--step--1); }
.footer-badge { display: inline-flex; align-items: center; gap: .5rem; padding: .4rem .9rem; border-radius: 100px; border: 1px solid var(--line-strong); background: rgba(255,255,255,.03); }
.footer-badge .dot2 { width: 7px; height: 7px; border-radius: 50%; background: var(--accent-2); box-shadow: 0 0 10px var(--accent-2); animation: pulse 2s infinite; }
@media (max-width: 760px) {
  .site-footer { text-align: center; margin-top: 4rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand-col { padding-bottom: 1.5rem; border-bottom: 1px solid var(--line); }
  .footer-grid a { justify-content: center; margin-inline: auto; }
  .footer-grid a:hover { transform: none; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ---------- Reveal animasyon (JS yokken görünür) ---------- */
[data-reveal] { opacity: 1; }
html.js [data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
html.js [data-reveal].in { opacity: 1; transform: none; }

/* ---------- Erişilebilirlik ---------- */
.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; border-radius: 4px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .aurora { animation: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .nav-links, .nav-divider, .nav-actions .btn-ghost { display: none; }
  .nav-toggle { display: inline-flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
#mobile-menu {
  display: none; position: fixed; top: 84px; left: 12px; right: 12px; z-index: 49;
  background: rgba(8,10,16,.96); backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid var(--line-strong); border-radius: 24px;
  box-shadow: 0 24px 70px -20px rgba(0,0,0,.85);
  flex-direction: column; padding: 1rem; gap: .2rem;
}
#mobile-menu.open { display: flex; animation: island-pop .35s var(--ease); }
@keyframes island-pop { from { opacity: 0; transform: translateY(-10px) scale(.97); } to { opacity: 1; transform: none; } }
#mobile-menu a { font-family: var(--font-display); font-size: var(--step-1); padding: .8rem 1rem; border-radius: 14px; }
#mobile-menu a:hover { background: rgba(255,255,255,.05); }

/* ============================================================
   Formlar / Auth / Alert
   ============================================================ */
.field { display: block; margin-bottom: .9rem; }
.field label { display: block; font-size: var(--step--1); color: var(--ink-soft); margin-bottom: .4rem; font-family: var(--font-display); }
.input, .textarea, .select {
  width: 100%; padding: .72rem .95rem; border-radius: 12px; height: 46px;
  background: rgba(255,255,255,.035); border: 1px solid var(--line-strong); color: var(--ink);
  font-size: var(--step-0); transition: border-color .2s, background .2s, box-shadow .2s;
}
.textarea { height: auto; min-height: 96px; resize: vertical; }
.input:focus, .textarea:focus, .select:focus {
  outline: none; border-color: var(--accent);
  background: color-mix(in srgb, var(--accent) 8%, rgba(255,255,255,.02));
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 18%, transparent);
}
.input:hover, .select:hover { border-color: color-mix(in srgb, var(--accent) 30%, var(--line-strong)); }
.input::placeholder { color: var(--ink-mute); }
.field-hint { font-size: var(--step--1); color: var(--ink-mute); margin-top: .35rem; }

/* Apple stili toggle/checkbox */
.checkbox-row { display: flex; align-items: flex-start; gap: .7rem; font-size: var(--step--1); color: var(--ink-soft); }
.checkbox-row input[type="checkbox"] {
  appearance: none; -webkit-appearance: none; flex: none; cursor: pointer; position: relative;
  width: 44px; height: 26px; border-radius: 100px; margin-top: 1px;
  background: rgba(255,255,255,.08); border: 1px solid var(--line-strong); transition: background .25s var(--ease), border-color .25s;
}
.checkbox-row input[type="checkbox"]::after {
  content: ""; position: absolute; top: 2px; left: 2px; width: 20px; height: 20px; border-radius: 50%;
  background: #fff; box-shadow: 0 2px 6px rgba(0,0,0,.4); transition: transform .25s var(--ease);
}
.checkbox-row input[type="checkbox"]:checked {
  background: linear-gradient(100deg, var(--accent), var(--accent-2)); border-color: transparent;
}
.checkbox-row input[type="checkbox"]:checked::after { transform: translateX(18px); }
.checkbox-row input[type="checkbox"]:focus-visible { box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 22%, transparent); }

.alert { padding: .9rem 1.1rem; border-radius: var(--radius-sm); font-size: var(--step--1); margin-bottom: 1.2rem; border: 1px solid; }
.alert-error { background: rgba(255,92,158,.1); border-color: rgba(255,92,158,.4); color: #ffc4d8; }
.alert-success { background: rgba(75,227,216,.1); border-color: rgba(75,227,216,.4); color: #c4fff9; }
.alert-info { background: rgba(91,140,255,.1); border-color: rgba(91,140,255,.4); color: #cfdcff; }

/* Auth split layout */
.auth-wrap { position: relative; z-index: 2; min-height: 100svh; display: grid; }
@media (min-width: 980px) { .auth-wrap { grid-template-columns: 1fr 1fr; } }
.auth-aside { position: relative; display: none; padding: 3rem; overflow: hidden; border-right: 1px solid var(--line); }
@media (min-width: 980px) { .auth-aside { display: flex; flex-direction: column; justify-content: space-between; } }
.auth-aside .quote { font-family: var(--font-display); font-size: var(--step-3); line-height: 1.15; letter-spacing: -.02em; max-width: 18ch; }
.auth-main { display: flex; align-items: center; justify-content: center; padding: 2.5rem var(--gutter); }
.auth-card { width: 100%; max-width: 440px; }
.auth-card h1 { font-size: var(--step-3); }
.auth-card .sub { color: var(--ink-soft); margin: .6rem 0 2rem; }
.auth-foot { margin-top: 1.6rem; text-align: center; color: var(--ink-soft); font-size: var(--step--1); }
.auth-foot a { color: var(--brand); }
.auth-back { display: inline-flex; align-items: center; gap: .4rem; color: var(--ink-soft); font-size: var(--step--1); margin-bottom: 2rem; }

/* ============================================================
   Process — "Tek liste, sonsuz içgörü" akış bileşeni
   ============================================================ */
.process { position: relative; display: grid; gap: 1.4rem; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.process::before {
  content: ""; position: absolute; top: 54px; left: 6%; right: 6%; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(91,140,255,.5), rgba(75,227,216,.5), rgba(124,92,255,.5), transparent);
  z-index: 0; opacity: .6;
}
@media (max-width: 760px) { .process::before { display: none; } }
.pstep {
  position: relative; z-index: 1;
  background: linear-gradient(170deg, rgba(20,24,38,.85), rgba(10,12,20,.85));
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 2rem 1.6rem; overflow: hidden;
  transition: transform .5s var(--ease), border-color .5s, box-shadow .5s;
}
.pstep:hover { transform: translateY(-8px); border-color: var(--brand); box-shadow: 0 30px 70px -30px rgba(91,140,255,.5); }
.pstep::after {
  content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity .5s;
  background: radial-gradient(80% 60% at 50% 0%, rgba(91,140,255,.14), transparent 70%);
}
.pstep:hover::after { opacity: 1; }
.pstep .ring {
  width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: var(--ink);
  background: radial-gradient(circle at 30% 30%, rgba(91,140,255,.3), rgba(12,14,22,.9));
  border: 1px solid var(--line-strong);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 0 30px -6px rgba(91,140,255,.5);
  margin-bottom: 1.3rem; position: relative;
}
.pstep .ring::before { content: ""; position: absolute; inset: -5px; border-radius: 50%; border: 1px solid rgba(91,140,255,.25); }
.pstep h3 { font-size: var(--step-1); margin-bottom: .5rem; }
.pstep p { color: var(--ink-soft); font-size: var(--step--1); }
.pstep .tag { display: inline-block; margin-top: 1rem; font-family: var(--font-display); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--cyan); }

/* ---------- Dynamic Island: kayan aktif gösterge ---------- */
.nav-links { position: relative; }
.nav-links a { position: relative; z-index: 1; }
.nav-links a.is-active { background: transparent; }
.nav-links a:hover { background: transparent; }
.nav-ind {
  position: absolute; top: 50%; left: 0; width: 0; height: 34px;
  transform: translateY(-50%); border-radius: 100px; z-index: 0; opacity: 0; pointer-events: none;
  background: linear-gradient(100deg, rgba(91,140,255,.24), rgba(124,92,255,.18));
  border: 1px solid rgba(91,140,255,.28);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
  transition: left .38s var(--ease), width .38s var(--ease), opacity .3s var(--ease);
}

/* ---------- Sayfa başına vurgu renkleri (enerji) ---------- */
body[data-accent="blue"]   { --accent: #5b8cff; --accent-2: #4be3d8; }
body[data-accent="violet"] { --accent: #8b6cff; --accent-2: #ff6fae; }
body[data-accent="cyan"]   { --accent: #36e0c8; --accent-2: #5b8cff; }
body[data-accent="amber"]  { --accent: #ffc24b; --accent-2: #ff6fae; }
body[data-accent="emerald"]{ --accent: #34e3a0; --accent-2: #4be3d8; }

/* ============================================================
   Landing v2 — merkezli hero, demo alanı, ikonlar, metrikler
   ============================================================ */

/* Merkezli hero */
.hero-center { min-height: auto; padding-top: clamp(140px, 16vh, 190px); padding-bottom: clamp(2.5rem, 6vh, 4rem); display: block; }
.hero-center .inner { text-align: center; max-width: 60rem; margin-inline: auto; }
.hero-center h1 { font-size: clamp(2.4rem, 5.6vw, 5rem); line-height: 1.02; letter-spacing: -0.035em; }
.hero-center .lead { margin: 1.6rem auto 0; max-width: 52ch; font-size: clamp(1.05rem, 0.95rem + 0.5vw, 1.35rem); color: var(--ink-soft); }
.hero-cta.center { justify-content: center; }
.hero-trust.center { justify-content: center; }

/* Yuvarlatılmış, sınırı belli panel */
.panel {
  border: 1px solid var(--line-strong); border-radius: var(--radius-lg);
  background: var(--panel-bg);
  box-shadow: 0 26px 70px -44px #000;
}

/* Demo (mikrofon ASMR) sahnesi */
.demo-stage { position: relative; margin-top: clamp(2rem, 5vw, 3.5rem); padding: clamp(1.2rem, 3vw, 2rem); overflow: hidden; }
.demo-canvas-wrap { position: relative; border-radius: var(--radius); overflow: hidden; background: #07080d; border: 1px solid var(--line); }
.demo-canvas { display: block; width: 100%; height: clamp(220px, 34vh, 360px); }
.demo-overlay { position: absolute; inset: 0; display: grid; place-items: center; text-align: center; padding: 1.5rem; transition: opacity .5s var(--ease); }
.demo-overlay.hidden { opacity: 0; pointer-events: none; }
.demo-overlay .mic-btn {
  width: 86px; height: 86px; border-radius: 50%; border: 1px solid color-mix(in srgb, var(--accent) 50%, var(--line-strong));
  background: radial-gradient(circle at 30% 30%, color-mix(in srgb, var(--accent) 45%, transparent), rgba(10,12,20,.9));
  color: var(--ink); display: grid; place-items: center; cursor: pointer; margin: 0 auto 1rem;
  box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 45%, transparent); animation: mic-pulse 2.4s ease-out infinite;
  transition: transform .3s var(--ease);
}
.demo-overlay .mic-btn:hover { transform: scale(1.06); }
@keyframes mic-pulse { 0% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 40%, transparent); } 100% { box-shadow: 0 0 0 26px transparent; } }
.demo-status { font-family: var(--font-display); font-size: var(--step-1); }
.demo-hint { color: var(--ink-mute); font-size: var(--step--1); margin-top: .4rem; }
.demo-bar { position: absolute; left: 1rem; right: 1rem; bottom: 1rem; display: flex; align-items: center; gap: .6rem; font-size: var(--step--1); color: var(--ink-soft); }
.demo-live { display: inline-flex; align-items: center; gap: .5rem; }
.demo-live i { width: 8px; height: 8px; border-radius: 50%; background: var(--accent-2); box-shadow: 0 0 12px var(--accent-2); animation: pulse 1.4s infinite; }

/* İkon kutusu (SVG) */
.ico-box {
  width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center; margin-bottom: 1.2rem;
  color: var(--accent-2);
  background: linear-gradient(140deg, color-mix(in srgb, var(--accent) 24%, transparent), color-mix(in srgb, var(--accent-2) 10%, transparent));
  border: 1px solid color-mix(in srgb, var(--accent) 30%, var(--line-strong));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1);
}
.ico-box svg { width: 24px; height: 24px; }

/* Büyük metrik */
.metric { text-align: center; }
.metric .n { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.6rem, 5vw, 4.2rem); line-height: 1; }
.metric .l { color: var(--ink-soft); font-size: var(--step--1); margin-top: .5rem; letter-spacing: .04em; text-transform: uppercase; }

/* Pazar / baskın yönler barları */
.bars-list { display: grid; gap: 1.1rem; }
.bar-row .top { display: flex; justify-content: space-between; margin-bottom: .45rem; font-size: var(--step--1); }
.bar-track { height: 10px; border-radius: 6px; background: var(--surface-2); overflow: hidden; }
.bar-fill { height: 100%; border-radius: 6px; background: linear-gradient(90deg, var(--accent), var(--accent-2)); box-shadow: 0 0 16px -4px var(--accent); }

/* Teklif kartı */
.quote-amount { font-family: var(--font-display); font-weight: 700; font-size: var(--step-2); margin: .4rem 0; color: var(--ink); }

/* Karşılaştırma satırı ikonları */
.li { display: flex; align-items: flex-start; gap: .6rem; padding-block: .5rem; }
.li svg { flex: none; margin-top: 2px; }
.li.no { color: var(--ink-soft); } .li.no svg { color: var(--magenta); }
.li.yes svg { color: var(--accent-2); }

/* ============================================================
   Landing v3 — AI core, ambient buton, kutusuz/interaktif bölümler
   ============================================================ */

/* Header AI çekirdeği (mini equalizer) */
.ai-core { display: inline-flex; align-items: center; gap: 2.5px; height: 18px; }
.ai-core i { width: 3px; border-radius: 3px; background: linear-gradient(180deg, var(--accent-2), var(--accent)); box-shadow: 0 0 8px color-mix(in srgb, var(--accent) 60%, transparent); animation: ai-eq 1.1s ease-in-out infinite; }
.ai-core i:nth-child(1){ height: 8px; animation-delay: 0s; }
.ai-core i:nth-child(2){ height: 16px; animation-delay: .18s; }
.ai-core i:nth-child(3){ height: 11px; animation-delay: .36s; }
.ai-core i:nth-child(4){ height: 14px; animation-delay: .54s; }
@keyframes ai-eq { 0%,100% { transform: scaleY(.4); } 50% { transform: scaleY(1); } }

/* Ambient ses butonu */
.snd-btn { display: inline-grid; place-items: center; width: 38px; height: 38px; border-radius: 100px; cursor: pointer;
  background: rgba(255,255,255,.04); border: 1px solid var(--line-strong); color: var(--ink-soft); transition: color .25s, background .25s, border-color .25s; }
.snd-btn:hover { color: var(--ink); background: rgba(255,255,255,.08); }
.snd-btn .w1, .snd-btn .w2 { opacity: 0; transition: opacity .3s; }
.snd-btn.on { color: var(--accent-2); border-color: color-mix(in srgb, var(--accent) 50%, var(--line-strong)); box-shadow: 0 0 18px -6px var(--accent-2); }
.snd-btn.on .w1 { opacity: 1; } .snd-btn.on .w2 { opacity: .7; animation: snd-wave 1.6s ease-in-out infinite; }
@keyframes snd-wave { 0%,100%{opacity:.3} 50%{opacity:.8} }
@media (max-width: 600px) { .snd-btn { display: none; } }

/* Favicon başlık süsü */
.fav-mark { width: 22px; height: 22px; vertical-align: -3px; margin-right: .4rem; border-radius: 6px; filter: drop-shadow(0 0 8px color-mix(in srgb, var(--accent) 50%, transparent)); }

/* Hero küçük yan dokunuşlar */
.hero-orb { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(2px); opacity: .5; z-index: 0; }
.hero-orb.a { width: 120px; height: 120px; left: -10px; top: 26%; background: radial-gradient(circle at 30% 30%, var(--accent), transparent 70%); animation: chip-float 9s ease-in-out infinite; }
.hero-orb.b { width: 90px; height: 90px; right: 2%; top: 40%; background: radial-gradient(circle at 30% 30%, var(--accent-2), transparent 70%); animation: chip-float 7s ease-in-out infinite reverse; }
@media (max-width: 760px){ .hero-orb { display:none; } }

/* Özellikler — kutusuz editöryel liste */
.feature-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border-top: 1px solid var(--line); }
@media (max-width: 740px){ .feature-list { grid-template-columns: 1fr; } }
.feature-row { display: flex; gap: 1.1rem; padding: 1.7rem 1.4rem; border-bottom: 1px solid var(--line); position: relative; transition: background .35s var(--ease); }
.feature-list > .feature-row:nth-child(odd) { border-right: 1px solid var(--line); }
.feature-row::after { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: linear-gradient(180deg, var(--accent), var(--accent-2)); transform: scaleY(0); transform-origin: top; transition: transform .4s var(--ease); }
.feature-row:hover { background: linear-gradient(90deg, color-mix(in srgb, var(--accent) 8%, transparent), transparent); }
.feature-row:hover::after { transform: scaleY(1); }
.feature-row .fi { flex: none; width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; color: var(--accent-2); background: color-mix(in srgb, var(--accent) 14%, transparent); border: 1px solid color-mix(in srgb, var(--accent) 24%, var(--line)); }
.feature-row h3 { font-size: var(--step-0); margin-bottom: .3rem; }
.feature-row p { color: var(--ink-soft); font-size: var(--step--1); line-height: 1.5; }

/* Yetenekler — interaktif seçici */
.cap-select { display: grid; gap: 1.5rem; grid-template-columns: 1fr 1.1fr; align-items: stretch; }
@media (max-width: 820px){ .cap-select { grid-template-columns: 1fr; } }
.cap-list { display: grid; gap: .5rem; align-content: start; }
.cap-item { display: flex; align-items: center; gap: .9rem; padding: 1rem 1.1rem; border-radius: var(--radius); border: 1px solid var(--line); cursor: pointer; color: var(--ink-soft); transition: all .3s var(--ease); background: rgba(255,255,255,.015); }
.cap-item .ci { width: 34px; height: 34px; flex: none; display: grid; place-items: center; border-radius: 9px; color: var(--ink-mute); border: 1px solid var(--line); transition: all .3s; }
.cap-item:hover { color: var(--ink); border-color: var(--line-strong); }
.cap-item.active { color: var(--ink); border-color: color-mix(in srgb, var(--accent) 50%, var(--line-strong)); background: color-mix(in srgb, var(--accent) 10%, transparent); }
.cap-item.active .ci { color: var(--accent-2); border-color: color-mix(in srgb, var(--accent) 45%, var(--line)); }
.cap-item .ct { font-family: var(--font-display); font-size: var(--step-0); }
.cap-detail { position: relative; overflow: hidden; padding: clamp(1.6rem,3vw,2.4rem); }
.cap-detail .cd-ico { width: 60px; height: 60px; display: grid; place-items: center; border-radius: 16px; color: var(--accent-2); background: linear-gradient(140deg, color-mix(in srgb, var(--accent) 22%, transparent), transparent); border: 1px solid color-mix(in srgb, var(--accent) 30%, var(--line)); margin-bottom: 1.2rem; }
.cap-detail .cd-ico svg { width: 28px; height: 28px; }
.cap-detail .cd-title { font-size: var(--step-2); }
.cap-detail .cd-text { color: var(--ink-soft); font-size: var(--step-1); margin-top: .8rem; }

/* Metrik info tooltip */
.metric { position: relative; }
.metric .info { display: inline-grid; place-items: center; width: 18px; height: 18px; border-radius: 50%; border: 1px solid var(--line-strong); color: var(--ink-mute); font-size: 11px; font-family: var(--font-display); cursor: help; margin-left: .4rem; vertical-align: middle; transition: color .2s, border-color .2s; }
.metric .info:hover { color: var(--accent-2); border-color: var(--accent); }
.metric .tip { position: absolute; left: 50%; top: calc(100% + 10px); transform: translateX(-50%) translateY(6px); width: min(260px, 80vw); padding: .9rem 1rem; border-radius: 14px; background: rgba(10,12,20,.97); border: 1px solid var(--line-strong); box-shadow: 0 20px 50px -20px #000; color: var(--ink-soft); font-size: var(--step--1); line-height: 1.5; opacity: 0; pointer-events: none; transition: opacity .25s, transform .25s; z-index: 5; text-transform: none; letter-spacing: 0; }
.metric .tip::before { content: ""; position: absolute; left: 50%; top: -6px; transform: translateX(-50%) rotate(45deg); width: 12px; height: 12px; background: rgba(10,12,20,.97); border-left: 1px solid var(--line-strong); border-top: 1px solid var(--line-strong); }
.metric:hover .tip, .metric:focus-within .tip { opacity: 1; transform: translateX(-50%); }

/* Baskın alanlar — interaktif */
.bar-row { cursor: pointer; padding: .6rem .7rem; border-radius: 12px; transition: background .3s; }
.bar-row:hover, .bar-row.active { background: rgba(255,255,255,.04); }
.bar-fill { transition: width .7s var(--ease); }
.bar-detail .bd-title { font-size: var(--step-2); }
.bar-detail .bd-text { color: var(--ink-soft); font-size: var(--step-1); margin-top: .8rem; }

/* Liquid abstract — process kutuları */
.pstep .liquid { position: absolute; inset: -40% -20% auto -20%; height: 160%; z-index: 0; pointer-events: none; opacity: .5; filter: blur(26px); }
.pstep .liquid::before, .pstep .liquid::after { content: ""; position: absolute; border-radius: 50%; }
.pstep .liquid::before { width: 60%; height: 60%; left: 5%; top: 10%; background: radial-gradient(circle, var(--accent), transparent 70%); animation: liquid-a 9s ease-in-out infinite; }
.pstep .liquid::after { width: 55%; height: 55%; right: 0; top: 25%; background: radial-gradient(circle, var(--accent-2), transparent 70%); animation: liquid-b 11s ease-in-out infinite; }
@keyframes liquid-a { 0%,100%{ transform: translate(0,0) scale(1); } 50%{ transform: translate(20%,18%) scale(1.25); } }
@keyframes liquid-b { 0%,100%{ transform: translate(0,0) scale(1.1); } 50%{ transform: translate(-18%,12%) scale(.85); } }
.pstep > * { position: relative; z-index: 1; }

/* Fiyat özellik ikonu */
.price-feature { align-items: center; }
.price-feature svg { width: 16px; height: 16px; color: var(--accent-2); flex: none; }
.price-feature::before { content: none; }
.plan-ico { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; color: var(--accent-2); background: color-mix(in srgb, var(--accent) 16%, transparent); border: 1px solid color-mix(in srgb, var(--accent) 28%, var(--line)); margin-bottom: 1rem; }

/* Demo başlık şeridi */
.demo-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0 .4rem 1rem; }
.demo-head .dh-title { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--font-display); font-weight: 600; color: var(--ink); }
.demo-head .dh-title svg { color: var(--accent-2); width: 18px; height: 18px; }
.demo-head .dh-badge { font-size: var(--step--1); color: var(--ink-mute); }
@media (max-width: 520px){ .demo-head .dh-badge { display: none; } }

/* Verified tick (güven çağrışımı) */
.hero-trust .vtrust::before { content: none; }
.vtrust { display: inline-flex; align-items: center; gap: .4rem; }
.vtrust svg { color: var(--accent-2); width: 14px; height: 14px; }
.verified { display: inline-grid; place-items: center; width: 18px; height: 18px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #06121f; vertical-align: -3px; }
.verified svg { width: 12px; height: 12px; stroke-width: 2.6; }

/* ============================================================
   Dialogue — problem/çözüm sohbet akışı (yeni stil)
   ============================================================ */
.dialogue { max-width: 880px; margin-inline: auto; display: grid; gap: 1.4rem; }
.dline { display: grid; gap: .6rem; }
.bubble { max-width: 78%; padding: 1rem 1.2rem; border-radius: 18px; font-size: var(--step-0); line-height: 1.5; position: relative; box-shadow: 0 12px 30px -22px #000; }
/* Gelen — müşteri şikayeti (sol, dokulu gri) */
.bubble.in { justify-self: start; border-bottom-left-radius: 5px; background: #14171f; border: 1px solid var(--line-strong); color: var(--ink); }
.bubble.in .who { display: block; font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: .3rem; font-family: var(--font-display); }
/* Giden — NovaPhone yanıtı (sağ, accent) */
.bubble.out { justify-self: end; border-bottom-right-radius: 5px; color: #eaf0ff; border: 1px solid color-mix(in srgb, var(--accent) 45%, var(--line-strong));
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 26%, #0e111b), color-mix(in srgb, var(--accent-2) 14%, #0e111b)); }
.bubble.out .who { display: flex; width: fit-content; align-items: center; gap: .4rem; font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: color-mix(in srgb, var(--accent-2) 80%, #fff); margin-bottom: .4rem; font-family: var(--font-display); }
.bubble.out .who svg { width: 13px; height: 13px; }
.dialogue .dline:nth-child(odd) .bubble.in { animation-delay: .05s; }
@media (max-width: 600px){ .bubble { max-width: 92%; } }

/* ============================================================
   Flow — kutusuz, liquid numaralar + kıvrımlı oklar (zamansız)
   ============================================================ */
.flow { position: relative; max-width: 920px; margin-inline: auto; display: grid; gap: clamp(2rem, 5vw, 3.4rem); }
.fstep { display: grid; grid-template-columns: 130px 1fr; gap: 1.6rem; align-items: center; position: relative; }
.fstep:nth-child(even) { grid-template-columns: 1fr 130px; }
.fstep:nth-child(even) .fnum { order: 2; }
.fstep:nth-child(even) .ftext { order: 1; text-align: right; }
@media (max-width: 620px){
  .fstep, .fstep:nth-child(even) { grid-template-columns: 88px 1fr; }
  .fstep:nth-child(even) .fnum { order: 0; }
  .fstep:nth-child(even) .ftext { order: 0; text-align: left; }
}
.fnum {
  position: relative; width: clamp(88px, 12vw, 130px); aspect-ratio: 1; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: clamp(1.8rem, 4vw, 2.8rem); color: #06121f;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-radius: 42% 58% 56% 44% / 48% 42% 58% 52%;
  animation: blob-morph 12s ease-in-out infinite; box-shadow: 0 20px 50px -22px color-mix(in srgb, var(--accent) 60%, transparent);
}
.fnum::after { content: ""; position: absolute; inset: -7px; border-radius: inherit; border: 1px dashed color-mix(in srgb, var(--accent) 40%, transparent); opacity: .6; animation: blob-morph 16s ease-in-out infinite reverse; }
@keyframes blob-morph {
  0%,100% { border-radius: 42% 58% 56% 44% / 48% 42% 58% 52%; }
  33% { border-radius: 60% 40% 34% 66% / 56% 60% 40% 44%; }
  66% { border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%; }
}
.ftext .ft-tag { font-family: var(--font-display); font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--accent-2); }
.ftext h3 { font-size: var(--step-2); margin: .35rem 0 .5rem; }
.ftext p { color: var(--ink-soft); max-width: 46ch; }
.fstep:nth-child(even) .ftext p { margin-left: auto; }

/* Kıvrımlı ok bağlayıcı */
.farrow { display: grid; place-items: center; margin: -0.6rem 0; height: 60px; pointer-events: none; }
.farrow svg { width: 120px; height: 60px; overflow: visible; color: color-mix(in srgb, var(--accent) 70%, var(--accent-2)); }
.farrow.flip svg { transform: scaleX(-1); }
.farrow path { stroke-dasharray: 220; stroke-dashoffset: 220; animation: draw 1.6s var(--ease) forwards; }
.farrow .head { fill: currentColor; opacity: 0; animation: head-in .4s ease 1.3s forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes head-in { to { opacity: 1; } }
@media (max-width: 620px){ .farrow svg { width: 80px; } }

/* ============================================================
   Lab — ürün sayfası akademik/bilimsel stil
   ============================================================ */
.lab-grid { display: grid; gap: 1.2rem; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.formula { font-family: "Space Grotesk", ui-monospace, monospace; background: #0b0e16; border: 1px solid var(--line-strong); border-radius: 14px; padding: 1.1rem 1.3rem; color: var(--ink); overflow-x: auto; }
.formula .var { color: var(--accent-2); }
.formula .op { color: var(--ink-mute); }
.formula .small { display: block; color: var(--ink-mute); font-size: var(--step--1); margin-top: .5rem; font-family: var(--font-body); }
.kv { display: grid; grid-template-columns: 1fr auto; gap: .4rem 1rem; font-size: var(--step--1); }
.kv div:nth-child(odd) { color: var(--ink-soft); }
.kv div:nth-child(even) { color: var(--ink); font-family: "Space Grotesk", monospace; text-align: right; }
.pipeline { display: grid; gap: .8rem; counter-reset: pp; }
.pipeline .pp { display: grid; grid-template-columns: 38px 1fr; gap: 1rem; align-items: start; padding: 1rem 0; border-bottom: 1px dashed var(--line); }
.pipeline .pp:last-child { border-bottom: 0; }
.pipeline .pp .no { counter-increment: pp; width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; font-family: "Space Grotesk", monospace; color: var(--accent-2); border: 1px solid color-mix(in srgb, var(--accent) 35%, var(--line)); background: color-mix(in srgb, var(--accent) 10%, transparent); }
.pipeline .pp .no::before { content: counter(pp, decimal-leading-zero); }
.pipeline .pp h4 { font-size: var(--step-0); margin-bottom: .3rem; }
.pipeline .pp p { color: var(--ink-soft); font-size: var(--step--1); }
.tag-row { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.tag-chip { font-family: "Space Grotesk", monospace; font-size: .72rem; padding: .35rem .7rem; border-radius: 8px; border: 1px solid var(--line-strong); color: var(--ink-soft); background: rgba(255,255,255,.02); }

/* ============================================================
   Roadmap — çizgili, checkpoint'li adım akışı
   ============================================================ */
.roadmap { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; max-width: 980px; margin-inline: auto; }
.roadmap::before { content: ""; position: absolute; top: 28px; left: 10%; right: 10%; height: 2px; background: repeating-linear-gradient(90deg, var(--line-strong) 0 7px, transparent 7px 15px); }
.roadmap::after { content: ""; position: absolute; top: 28px; left: 10%; width: 0; height: 2px; background: repeating-linear-gradient(90deg, var(--accent) 0 7px, transparent 7px 15px); filter: drop-shadow(0 0 6px var(--accent-2)); animation: rm-fill 2.6s steps(20) forwards; }
@keyframes rm-fill { to { width: 80%; } }
.rstep { text-align: center; position: relative; z-index: 1; }
.rdot { width: 58px; height: 58px; margin: 0 auto 1.1rem; border-radius: 18px; display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; font-size: 1.4rem; color: var(--ink-mute);
  background: #0a0d15; border: 1.5px solid var(--line-strong); transform: rotate(45deg); transition: border-color .4s, box-shadow .4s, color .4s, background .4s; }
.rdot > * { transform: rotate(-45deg); }
.rstep.lit .rdot, .rstep:hover .rdot { border-color: var(--accent); color: var(--accent-2); background: color-mix(in srgb, var(--accent) 12%, #0a0d15); box-shadow: 0 0 0 5px color-mix(in srgb, var(--accent) 12%, transparent), 0 0 26px -4px var(--accent); }
.rdot .tick { width: 16px; height: 16px; border-radius: 50%; background: var(--accent-2); color: #06121f; display: grid; place-items: center; position: absolute; top: -6px; right: -6px; opacity: 0; transform: rotate(-45deg) scale(.5); transition: opacity .4s var(--ease), transform .4s var(--ease); box-shadow: 0 0 12px var(--accent-2); }
.rstep.lit .rdot .tick { opacity: 1; transform: rotate(-45deg) scale(1); }
.rstep .rtag { font-family: var(--font-display); font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; color: var(--accent-2); }
.rstep h4 { font-size: var(--step-0); margin: .35rem 0 .4rem; }
.rstep p { color: var(--ink-soft); font-size: var(--step--1); max-width: 24ch; margin-inline: auto; }
@media (max-width: 720px) {
  .roadmap { grid-template-columns: 1fr; gap: 0; padding-left: 12px; }
  .roadmap::before { top: 0; bottom: 0; left: 40px; right: auto; width: 2px; height: auto; background: repeating-linear-gradient(180deg, var(--line-strong) 0 7px, transparent 7px 15px); }
  .roadmap::after { top: 0; left: 40px; width: 2px; height: 0; background: repeating-linear-gradient(180deg, var(--accent) 0 7px, transparent 7px 15px); animation: rm-fill-v 2.6s steps(20) forwards; }
  @keyframes rm-fill-v { to { height: 86%; } }
  .rstep { display: grid; grid-template-columns: 80px 1fr; text-align: left; gap: 1rem; padding: 1rem 0; align-items: center; }
  .rdot { margin: 0; }
  .rstep p, .rstep h4 { max-width: none; }
}

/* Capability detail — büyük transparan ikon + meta */
.cap-detail { position: relative; overflow: hidden; }
.cap-detail .cd-bg { position: absolute; right: -40px; bottom: -50px; opacity: .06; color: var(--accent-2); pointer-events: none; line-height: 0; }
.cap-detail .cd-bg svg { width: 240px; height: 240px; }
.cap-detail > * { position: relative; z-index: 1; }
.cd-meta { margin-top: 1.4rem; padding-top: 1.1rem; border-top: 1px solid var(--line); display: grid; gap: .3rem; }
.cd-meta-label { font-family: var(--font-display); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--accent-2); }
.cd-meta-text { color: var(--ink); font-size: var(--step-0); }
.cap-detail.swap .cd-ico, .cap-detail.swap .cd-title, .cap-detail.swap .cd-text, .cap-detail.swap .cd-meta { animation: cd-in .45s var(--ease) both; }
.cap-detail.swap .cd-title { animation-delay: .04s; } .cap-detail.swap .cd-text { animation-delay: .08s; } .cap-detail.swap .cd-meta { animation-delay: .12s; }
@keyframes cd-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* Home flat demo (holder yok) */
.demo-flat { margin-top: clamp(2rem, 5vw, 3.5rem); text-align: center; }
.demo-flat .demo-canvas { width: 100%; height: clamp(260px, 38vh, 420px); display: block; }
.demo-cta { margin-top: -1rem; }

/* /canli-test sahne */
.live-stage { text-align: center; }
.live-canvas { width: 100%; height: clamp(280px, 44vh, 460px); display: block; }
.live-readout { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.4rem; margin: 1rem 0 1.6rem; }
.lr-item { display: grid; gap: .2rem; }
.lr-k { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-mute); }
.lr-v { font-family: var(--font-display); color: var(--ink); }
.live-controls { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }

/* Ödeme / güven rozetleri */
.pay-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .8rem 1.4rem; margin: 2rem auto 0; max-width: 760px;
  padding: 1rem 1.4rem; border: 1px solid var(--line-strong); border-radius: 100px; background: rgba(255,255,255,.02); color: var(--ink-soft); font-size: var(--step--1); }
.pay-row > span { display: inline-flex; align-items: center; gap: .45rem; white-space: nowrap; }
.pay-row svg { color: var(--accent-2); flex: none; }
.pay-badges { display: inline-flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
.pay-chip { display: inline-flex; align-items: center; padding: .4rem .75rem; border-radius: 9px; border: 1px solid var(--line-strong); background: rgba(255,255,255,.04); color: var(--ink); font-family: var(--font-display); font-size: .74rem; font-weight: 600; letter-spacing: .02em; }
@media (max-width: 640px){ .pay-row { border-radius: 18px; } }
.bar-fill { position: relative; overflow: hidden; }
.bar-fill::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent); transform: translateX(-100%); animation: bar-shine 3.5s ease-in-out infinite; }
@keyframes bar-shine { 0%, 60% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }

/* ============================================================
   Başlık fontu — Bricolage Grotesque (karakterli, dikkat çekici)
   ============================================================ */
@font-face {
  font-family: "Bricolage Grotesque";
  src: url("/assets/fonts/bricolage-var.woff2") format("woff2");
  font-weight: 300 800; font-style: normal; font-display: optional;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+2000-206F, U+20AC, U+2122;
}
@font-face {
  font-family: "Bricolage Grotesque";
  src: url("/assets/fonts/bricolage-var-ext.woff2") format("woff2");
  font-weight: 300 800; font-style: normal; font-display: optional;
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2C60-2C7F, U+A720-A7FF;
}
:root { --font-head: "Bricolage Grotesque", "Space Grotesk", system-ui, sans-serif; }

h1, h2, h3, .hero h1, .section-head h2, .cta-band h2, .cd-title, .bd-title {
  font-family: var(--font-head);
  font-weight: 700; letter-spacing: -0.035em; font-optical-sizing: auto;
}
h1, .hero h1, .section-head h2, .cta-band h2 { font-weight: 800; }
h4, .eyebrow, .ft-tag, .rtag, .tag, .badge, .btn, .nav-links a, .price-amount, .quote-amount, .metric .n, .kpi .k-value { font-family: var(--font-display); }
/* Başlıklara ince karakter: gradient-text zaten accent; düz başlıklarda hafif ışıltı */
.section-head h2 { text-wrap: balance; }
.hero h1 { text-wrap: balance; }

/* ---------- Cila / son rötuşlar ---------- */
.eyebrow.center::after { content: ""; width: 28px; height: 1px; background: var(--accent); box-shadow: 0 0 10px var(--accent); }
.section-head .eyebrow { margin-bottom: .2rem; }
.dialogue .bubble { transition: transform .3s var(--ease), border-color .3s; }
.dialogue .dline:hover .bubble.out { transform: translateY(-2px); }
.btn-primary { letter-spacing: -0.01em; }
::selection { background: var(--accent); color: #06121f; }
.snd-btn { display: none !important; }

/* Hero merkez küre */
.hero-orb-stage { margin: clamp(1.5rem, 4vw, 2.6rem) auto .4rem; }
.hero-orb-stage .demo-canvas { width: 100%; max-width: 560px; height: clamp(240px, 36vh, 380px); display: block; margin-inline: auto; }
.hero-orb-cap { color: var(--ink-mute); font-size: var(--step--1); margin-top: .4rem; }
.hero-orb-cap a { color: var(--accent); }
.hero-orb-cap a:hover { color: var(--accent-2); }

/* Hero — iki kolon (metin sol, küre sağ) */
.hero-split { min-height: 92svh; display: flex; align-items: center; padding-top: clamp(120px, 14vh, 170px); padding-bottom: clamp(2.5rem, 6vh, 5rem); }
.hsplit { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (min-width: 960px) { .hsplit { grid-template-columns: 1.02fr .98fr; } }
.hcol-text { text-align: center; }
@media (min-width: 960px) { .hcol-text { text-align: left; } .hcol-text .hero-cta, .hcol-text .hero-trust { justify-content: flex-start; } }
.hcol-text h1 { font-size: clamp(2.4rem, 4.6vw, 4.6rem); line-height: 1.0; letter-spacing: -0.035em; }
.hcol-text .lead { margin-left: 0; margin-right: 0; max-width: 52ch; }
.hcol-visual { position: relative; }
.hcol-visual .demo-canvas { width: 100%; max-width: 560px; height: clamp(300px, 46vh, 520px); display: block; margin-inline: auto; }
.hcol-visual .hero-orb-cap { text-align: center; color: var(--ink-mute); font-size: var(--step--1); margin-top: .2rem; }
.hcol-visual .hero-orb-cap a { color: var(--accent); }
@media (max-width: 640px){ .hcol-visual .demo-canvas { height: 300px; } }

/* Müşteri yorumları */
.review { display: flex; flex-direction: column; gap: 1rem; }
.review-top { display: flex; align-items: center; justify-content: space-between; }
.review .quote-mark { font-family: var(--font-head); font-size: 3rem; line-height: .6; color: color-mix(in srgb, var(--accent) 50%, transparent); }
.review-score { display: inline-flex; align-items: center; gap: .35rem; font-family: var(--font-display); font-weight: 600; font-size: .78rem; color: var(--accent-2); padding: .3rem .7rem; border-radius: 100px; border: 1px solid color-mix(in srgb, var(--accent) 35%, var(--line-strong)); }
.review blockquote { font-size: var(--step-1); line-height: 1.55; color: var(--ink); }
.review figcaption { display: flex; align-items: center; gap: .8rem; margin-top: auto; }
.rv-avatar { width: 40px; height: 40px; flex: none; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; color: #06121f; background: linear-gradient(135deg, var(--accent), var(--accent-2)); }

/* ============================================================
   Eşlikçi asistan + rehberli tur
   ============================================================ */
.nv-companion { position: fixed; right: clamp(14px, 3vw, 28px); bottom: clamp(14px, 3vw, 28px); z-index: 80; display: flex; flex-direction: column; align-items: flex-end; gap: .6rem; pointer-events: none; }
.nv-companion > * { pointer-events: auto; }
.nvc-orb { display: none; }
.nv-companion.touring .nvc-orb { display: grid; }
.nvc-orb { width: 60px; height: 60px; border-radius: 50%; border: 1px solid color-mix(in srgb, var(--accent) 45%, var(--line-strong)); cursor: pointer; place-items: center;
  background: radial-gradient(circle at 32% 30%, color-mix(in srgb, var(--accent) 55%, #0a0c14), #0a0c14);
  box-shadow: 0 12px 36px -10px color-mix(in srgb, var(--accent) 60%, transparent), inset 0 1px 0 rgba(255,255,255,.12);
  transition: transform .3s var(--ease); }
.nvc-orb:hover { transform: scale(1.07); }
.nvc-eq { display: inline-flex; align-items: center; gap: 2.5px; height: 18px; }
.nvc-eq i { width: 3px; border-radius: 3px; background: linear-gradient(180deg, var(--accent-2), var(--accent)); height: 8px; animation: ai-eq 1.1s ease-in-out infinite; }
.nvc-eq i:nth-child(2){ animation-delay:.16s } .nvc-eq i:nth-child(3){ animation-delay:.32s } .nvc-eq i:nth-child(4){ animation-delay:.48s }
.nvc-orb.speaking .nvc-eq i { animation-duration: .5s; }
.nvc-bubble { max-width: min(320px, 80vw); padding: .9rem 1.1rem; border-radius: 18px 18px 4px 18px; font-size: var(--step--1); line-height: 1.5; color: var(--ink);
  background: rgba(14,17,27,.82); border: 1px solid var(--line-strong); backdrop-filter: blur(16px) saturate(150%); -webkit-backdrop-filter: blur(16px) saturate(150%);
  box-shadow: 0 20px 50px -22px #000; }
.nvc-bubble.pop { animation: cd-in .4s var(--ease); }
.nvc-bar { display: inline-flex; align-items: center; gap: .4rem; padding: .35rem .5rem; border-radius: 100px; background: rgba(14,17,27,.85); border: 1px solid var(--line-strong); backdrop-filter: blur(14px); }
.nvc-ctrl { width: 30px; height: 30px; border-radius: 50%; border: 0; background: rgba(255,255,255,.06); color: var(--ink); cursor: pointer; font-size: 1.1rem; line-height: 1; display: grid; place-items: center; }
.nvc-ctrl:hover { background: color-mix(in srgb, var(--accent) 30%, transparent); }
.nvc-stop:hover { background: rgba(255,92,158,.3); }
.nvc-step { font-family: var(--font-display); font-size: .8rem; color: var(--ink-soft); padding: 0 .3rem; }

/* Tur odak vurgusu */
.tour-focus { position: relative; z-index: 3; }
.tour-focus::after { content: ""; position: absolute; inset: -14px; border-radius: 24px; pointer-events: none; z-index: -1;
  border: 1.5px solid color-mix(in srgb, var(--accent) 55%, transparent);
  box-shadow: 0 0 0 100vmax rgba(3,4,8,.55), 0 0 40px -6px color-mix(in srgb, var(--accent) 50%, transparent);
  animation: focus-in .5s var(--ease); }
@keyframes focus-in { from { opacity: 0; transform: scale(.98); } to { opacity: 1; transform: none; } }

.linklike { background: none; border: 0; color: var(--accent); cursor: pointer; font: inherit; padding: 0; }
.linklike:hover { color: var(--accent-2); }

/* Reveal varyantları (data-reveal="scale|left|right|fade|blur") */
html.js [data-reveal="scale"]{ transform: scale(.94); }
html.js [data-reveal="left"]{ transform: translateX(-34px); }
html.js [data-reveal="right"]{ transform: translateX(34px); }
html.js [data-reveal="blur"]{ filter: blur(10px); }
html.js [data-reveal="fade"]{ transform: none; }
html.js [data-reveal].in{ transform: none; filter: none; }

/* ============================================================
   Auth v5 — üst düzey glassmorphism, sosyal, çıkan gözler
   ============================================================ */
.auth-aside { background: rgba(10,12,20,.35); backdrop-filter: blur(10px); border-right: 1px solid var(--line); }
.auth-card {
  background: linear-gradient(165deg, rgba(20,24,38,.55), rgba(10,12,20,.4));
  border: 1px solid var(--line-strong); border-radius: 26px; padding: clamp(1.5rem, 3vw, 2.4rem);
  backdrop-filter: blur(26px) saturate(160%); -webkit-backdrop-filter: blur(26px) saturate(160%);
  box-shadow: 0 40px 90px -40px #000, inset 0 1px 0 rgba(255,255,255,.1);
}
.auth-card h1 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.auth-card .sub { color: var(--ink-soft); margin: .5rem 0 1.4rem; font-size: var(--step--1); }
.auth-main { padding-block: clamp(1.5rem, 4vh, 3rem); }

/* Sosyal giriş */
.oauth-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; }
.oauth-btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; padding: .7rem .9rem; border-radius: 12px;
  border: 1px solid var(--line-strong); background: rgba(255,255,255,.04); color: var(--ink); font-family: var(--font-display); font-size: var(--step--1); font-weight: 500;
  transition: background .2s, border-color .2s, transform .2s; }
.oauth-btn:hover { background: rgba(255,255,255,.08); border-color: color-mix(in srgb, var(--accent) 40%, var(--line-strong)); transform: translateY(-1px); }
.auth-or { display: flex; align-items: center; gap: 1rem; margin: 1.2rem 0; color: var(--ink-mute); font-size: var(--step--1); }
.auth-or::before, .auth-or::after { content: ""; flex: 1; height: 1px; background: var(--line); }

.grid-2-compact { display: grid; grid-template-columns: 1fr 1fr; gap: 0 .9rem; }
@media (max-width: 480px){ .grid-2-compact { grid-template-columns: 1fr; } }

/* Şifre alanı + toggle */
.pass-wrap { position: relative; }
.pass-wrap .input { padding-right: 48px; }
.pass-toggle { position: absolute; right: 6px; top: 50%; transform: translateY(-50%); width: 36px; height: 36px; border: 0; background: none; color: var(--ink-mute); cursor: pointer; display: grid; place-items: center; border-radius: 9px; transition: color .2s, background .2s; }
.pass-toggle:hover { color: var(--ink); background: rgba(255,255,255,.05); }

/* Çıkan gözler (şifre görünürken siteden çıkar, fareyi/inputu izler) */
.eyes { position: absolute; right: 10px; top: -2px; display: flex; gap: 6px; opacity: 0; transform: translateY(8px) scale(.5); transition: opacity .35s var(--ease), transform .45s var(--ease); pointer-events: none; z-index: 4; }
.field-pass.peek .eyes { opacity: 1; transform: translateY(-26px) scale(1); }
.eye { width: 26px; height: 26px; border-radius: 50%; background: #fff; position: relative; box-shadow: 0 6px 14px -4px rgba(0,0,0,.6), inset 0 -3px 6px rgba(0,0,0,.12); overflow: hidden; }
.eye::after { content: ""; position: absolute; inset: 0; background: #fff; transform: scaleY(0); transform-origin: center; transition: transform .08s; }
.field-pass.blink .eye::after { transform: scaleY(1); }
.eye i { position: absolute; width: 11px; height: 11px; border-radius: 50%; background: radial-gradient(circle at 40% 35%, #2a3550, #0a0d16 70%); top: 50%; left: 50%;
  transform: translate(calc(-50% + var(--px, 0px)), calc(-50% + var(--py, 0px))); transition: transform .12s ease-out; }

.auth-secure { display: flex; align-items: center; gap: .45rem; justify-content: center; margin-top: 1rem; color: var(--ink-mute); font-size: var(--step--1); }
.auth-secure svg { color: var(--accent-2); }

/* Aside slaytlar */
.auth-slides { position: relative; }
.auth-slides .aslide { position: absolute; left: 0; right: 0; font-family: var(--font-head); font-weight: 700; font-size: clamp(1.6rem, 2.4vw, 2.4rem); line-height: 1.12; letter-spacing: -.02em; max-width: 16ch; opacity: 0; transform: translateY(14px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.auth-slides .aslide.on { opacity: 1; transform: none; position: relative; }
.auth-dots { display: flex; gap: .4rem; margin-top: 1.4rem; }
.auth-dots span { width: 22px; height: 3px; border-radius: 3px; background: var(--line-strong); transition: background .3s; }
.auth-dots span.on { background: var(--accent); box-shadow: 0 0 10px var(--accent); }
.auth-foot-aside .sec-badges { display: flex; gap: .6rem; flex-wrap: wrap; }
.sec-b { display: inline-flex; align-items: center; gap: .4rem; font-size: .72rem; padding: .35rem .7rem; border-radius: 100px; border: 1px solid var(--line-strong); color: var(--ink-soft); }
.sec-b svg { color: var(--accent-2); }
.auth-aside .auth-foot-aside a { color: var(--ink-soft); } .auth-aside .auth-foot-aside a:hover { color: var(--ink); }

/* ============================================================
   Tema — Açık (ana / beyaz) + Gece (yumuşak koyu)
   ============================================================ */
html[data-theme="light"] {
  --bg: #f5f7fc; --bg-soft: #eef1f8; --surface: #ffffff; --surface-2: #eef1f8;
  --line: rgba(14,20,38,.10); --line-strong: rgba(14,20,38,.18);
  --ink: #0c1322; --ink-soft: #3c465c; --ink-mute: #6b7488;
  --card-bg: #ffffff; --panel-bg: #ffffff; --card-noise: 0; --veil-strength: 0;
  /* Beyaz üstünde okunur gradyan (beyaz durak YOK) */
  --grad-text: linear-gradient(95deg,
    color-mix(in srgb, var(--accent) 65%, #0a1640),
    var(--accent) 38%,
    color-mix(in srgb, var(--accent-2) 72%, #064038) 68%,
    color-mix(in srgb, var(--accent) 65%, #0a1640));
}
html[data-theme="light"] .gradient-text { filter: none; }
html[data-theme="light"] body { background: var(--bg); }
html[data-theme="light"] #bg-canvas, html[data-theme="light"] .veil, html[data-theme="light"] .grain { display: none; }
html[data-theme="light"] .aurora { opacity: .12; filter: blur(80px) saturate(120%); }
html[data-theme="light"] .site-header .nav { background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,255,255,.72)); }
html[data-theme="light"] .glass, html[data-theme="light"] .card, html[data-theme="light"] .panel { box-shadow: 0 18px 50px -34px rgba(20,30,60,.5); }
html[data-theme="light"] .panel-body { background: radial-gradient(70% 60% at 100% 0%, color-mix(in srgb, var(--accent) 8%, transparent), transparent 60%), var(--bg-soft); }
html[data-theme="light"] .sidebar { background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.82)); }
html[data-theme="light"] .topbar { background: rgba(255,255,255,.7); }
html[data-theme="light"] .input, html[data-theme="light"] .textarea, html[data-theme="light"] .select { background: #fff; }
html[data-theme="light"] .bubble.in { background: var(--surface); }
html[data-theme="light"] .formula, html[data-theme="light"] .rdot, html[data-theme="light"] .demo-canvas-wrap { background: var(--surface-2); }
html[data-theme="light"] ::selection { background: var(--accent); color: #fff; }

/* Tema toggle butonu */
.theme-toggle { display: inline-grid; place-items: center; width: 38px; height: 38px; border-radius: 100px; cursor: pointer;
  background: rgba(255,255,255,.05); border: 1px solid var(--line-strong); color: var(--ink-soft); transition: color .2s, background .2s, border-color .2s; }
.theme-toggle:hover { color: var(--ink); border-color: color-mix(in srgb, var(--accent) 40%, var(--line-strong)); }
.theme-toggle .i-sun { display: none; } .theme-toggle .i-moon { display: block; }
html[data-theme="light"] .theme-toggle .i-sun { display: block; } html[data-theme="light"] .theme-toggle .i-moon { display: none; }

/* ============================================================
   Açık tema — beyaz doku, okunur metin, uyumlu arka plan
   ============================================================ */
html[data-theme="light"] body {
  background:
    radial-gradient(60% 45% at 80% -5%, color-mix(in srgb, var(--accent) 9%, transparent), transparent 60%),
    radial-gradient(50% 40% at 0% 100%, color-mix(in srgb, var(--accent-2) 7%, transparent), transparent 55%),
    #f3f6fc;
}
/* Beyaza özel ince doku (nokta ızgara + hafif kağıt hissi) */
html[data-theme="light"] body::after {
  content: ""; position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: .5;
  background-image:
    radial-gradient(rgba(18,28,56,.05) 1px, transparent 1.4px),
    radial-gradient(rgba(18,28,56,.035) 1px, transparent 1.4px);
  background-size: 26px 26px, 26px 26px;
  background-position: 0 0, 13px 13px;
}
html[data-theme="light"] main, html[data-theme="light"] .site-header, html[data-theme="light"] .site-footer { position: relative; z-index: 2; }

/* Metin okunaklılığı (siyaha yakın) */
html[data-theme="light"] body { color: var(--ink); }
html[data-theme="light"] h1, html[data-theme="light"] h2, html[data-theme="light"] h3, html[data-theme="light"] h4 { color: #0a1020; }
html[data-theme="light"] .lead, html[data-theme="light"] .section-head p { color: #2c3650; }

/* CTA bandı — açık temada beyaz panel + accent ışıltı */
html[data-theme="light"] .cta-band { background: #ffffff; border-color: color-mix(in srgb, var(--accent) 30%, var(--line-strong)); box-shadow: 0 30px 80px -50px rgba(20,30,60,.45); }
html[data-theme="light"] .cta-band::before { opacity: .35; }
html[data-theme="light"] .cta-band::after { background: radial-gradient(110% 130% at 50% 120%, color-mix(in srgb, var(--accent-2) 10%, transparent), #ffffff 60%); }

/* Sohbet balonu (gelen) açık; giden accent kalır ama okunur */
html[data-theme="light"] .bubble.in { background: #ffffff; border-color: var(--line-strong); color: var(--ink); }
html[data-theme="light"] .bubble.out { color: #07122b; }
html[data-theme="light"] .bubble.out .who { color: color-mix(in srgb, var(--accent-2) 60%, #063); }

/* Kod/formül & koyu kutucuklar açık zemine */
html[data-theme="light"] .formula { background: #f3f6fc; color: #0c1322; border-color: var(--line-strong); }
html[data-theme="light"] .formula .small { color: #5a6478; }
html[data-theme="light"] .rdot { background: #ffffff; }
html[data-theme="light"] .demo-canvas-wrap { background: #eef2fb; }
html[data-theme="light"] .tag-chip, html[data-theme="light"] .pay-chip { background: #fff; color: var(--ink); }
html[data-theme="light"] .vs-quote, html[data-theme="light"] .text-soft { color: #3c465c; }
html[data-theme="light"] .text-mute, html[data-theme="light"] .muted { color: #6b7488; }
html[data-theme="light"] ::selection { background: var(--accent); color: #fff; }

/* ============================================================
   Hero görsel kartı (profesyonel, tüm temalar)
   ============================================================ */
.hero-split .hsplit { align-items: center; }
@media (min-width: 960px) { .hero-split .hsplit { grid-template-columns: 1.04fr .96fr; gap: clamp(2.5rem, 5vw, 5rem); } }
.hcol-text { max-width: 40rem; }
@media (min-width: 960px) { .hcol-text { justify-self: start; } }

.hcol-visual { position: relative; display: flex; justify-content: center; }
.hero-card {
  width: min(440px, 100%); padding: 1.2rem; border-radius: var(--radius-lg); position: relative;
  background: var(--panel-bg); border: 1px solid var(--line-strong);
  box-shadow: 0 40px 90px -45px rgba(0,0,0,.7), inset 0 1px 0 rgba(255,255,255,.08);
}
html[data-theme="dark"] .hero-card, html:not([data-theme="light"]) .hero-card {
  background: linear-gradient(165deg, rgba(22,26,40,.7), rgba(12,15,24,.6)); backdrop-filter: blur(18px);
}
html[data-theme="light"] .hero-card { box-shadow: 0 40px 90px -50px rgba(20,30,60,.4), inset 0 1px 0 rgba(255,255,255,.6); }
.hero-card-top { display: flex; align-items: center; justify-content: space-between; padding: .2rem .3rem .9rem; }
.hc-live { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--font-display); font-weight: 600; font-size: var(--step--1); }
.hc-live i { width: 8px; height: 8px; border-radius: 50%; background: var(--accent-2); box-shadow: 0 0 10px var(--accent-2); animation: pulse 1.5s infinite; }
.hc-time { color: var(--ink-mute); font-size: var(--step--1); }
.hero-orb-wrap { border-radius: 16px; overflow: hidden; background: radial-gradient(circle at 50% 40%, color-mix(in srgb, var(--accent) 14%, transparent), transparent 70%); }
.hero-card .demo-canvas { width: 100%; height: clamp(190px, 26vh, 240px); display: block; }
.hero-eq { display: flex; align-items: flex-end; gap: 3px; height: 40px; margin: .9rem .2rem .2rem; }
.hero-eq span { flex: 1; border-radius: 4px; background: linear-gradient(180deg, var(--accent-2), var(--accent)); transform-origin: bottom; animation: eq-bounce 1s ease-in-out infinite; opacity: .85; }
.hero-card-foot { display: flex; align-items: center; justify-content: space-between; padding: .9rem .3rem .2rem; margin-top: .4rem; border-top: 1px solid var(--line); }
.hero-card-foot strong { font-family: var(--font-head); font-size: var(--step-1); }
.hero-chip {
  position: absolute; z-index: 3; padding: .5rem .85rem; border-radius: 100px; font-family: var(--font-display); font-weight: 600; font-size: .76rem; white-space: nowrap;
  background: var(--panel-bg); border: 1px solid var(--line-strong); box-shadow: 0 14px 34px -14px rgba(0,0,0,.5); animation: chip-float 6s ease-in-out infinite;
}
.hero-chip b { color: var(--accent-2); }
.hero-chip.chip-1 { top: 8%; right: -2%; animation-delay: 0s; }
.hero-chip.chip-2 { bottom: 12%; left: -4%; animation-delay: -3s; }
@media (max-width: 520px) { .hero-chip { display: none; } }

/* ============================================================
   Yorumlar v2 — bol değerlendirme, kalp/beğeni, kaynak
   ============================================================ */
.rating-stars { color: var(--amber); letter-spacing: 2px; margin-right: .3rem; }
.reviews-grid { display: grid; gap: 1.2rem; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.review { display: flex; flex-direction: column; gap: .9rem; }
.review .review-top { display: flex; align-items: center; justify-content: space-between; }
.review-src { font-family: var(--font-display); font-size: .7rem; color: var(--ink-mute); border: 1px solid var(--line); border-radius: 100px; padding: .2rem .6rem; }
.review blockquote { font-size: var(--step-0); line-height: 1.55; color: var(--ink); margin: 0; }
.review figcaption { display: flex; align-items: center; gap: .7rem; margin-top: auto; }
.rv-id { display: flex; flex-direction: column; min-width: 0; }
.rv-id strong { font-size: var(--step--1); }
.rv-id .text-mute { font-size: .72rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rv-like { margin-left: auto; display: inline-flex; align-items: center; gap: .35rem; background: none; border: 1px solid var(--line-strong); border-radius: 100px; padding: .3rem .6rem; cursor: pointer; color: var(--ink-soft); font-family: var(--font-display); font-size: .76rem; transition: border-color .2s, color .2s, background .2s; }
.rv-like:hover { border-color: var(--magenta); color: var(--magenta); }
.rv-heart { color: var(--magenta); animation: heart-pulse 1.6s ease-in-out infinite; transform-origin: center; }
.rv-like.liked { border-color: var(--magenta); color: var(--magenta); background: color-mix(in srgb, var(--magenta) 12%, transparent); }
.rv-like.liked .rv-heart { animation: heart-pop .45s var(--ease); }
@keyframes heart-pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.18); } }
@keyframes heart-pop { 0% { transform: scale(1); } 40% { transform: scale(1.5); } 100% { transform: scale(1); } }

/* Fiyat koruma — dinamik barlar */
.bar-volatile .bar-fill { width: 70%; animation: volatile-w 3.8s ease-in-out infinite; }
@keyframes volatile-w { 0%{width:54%} 20%{width:86%} 45%{width:62%} 65%{width:92%} 85%{width:58%} 100%{width:54%} }
.volatile-tag { color: var(--magenta); display: inline-block; animation: vol-bob 1.1s ease-in-out infinite; }
@keyframes vol-bob { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-3px); } }
.bar-steady .bar-fill { box-shadow: 0 0 16px -3px var(--accent); }

/* Açık tema — footer adaptasyonu */
html[data-theme="light"] .site-footer {
  background: linear-gradient(180deg, #ffffff, #f1f4fb);
  border-top: 1px solid var(--line-strong);
  box-shadow: 0 -30px 90px -50px color-mix(in srgb, var(--accent) 30%, transparent);
}
html[data-theme="light"] .footer-grid h4 { color: #6b7488; }
html[data-theme="light"] .footer-grid a, html[data-theme="light"] .footer-bottom, html[data-theme="light"] .footer-legal a { color: #3c465c; }
html[data-theme="light"] .footer-grid a:hover, html[data-theme="light"] .footer-legal a:hover { color: var(--ink); }
html[data-theme="light"] .footer-badge { background: #fff; }

/* SEO makale */
.seo-article h2 { margin-bottom: 1.5rem; }
.seo-article h3 { font-size: var(--step-2); margin: 2rem 0 .8rem; }
.seo-article p { color: var(--ink-soft); line-height: 1.75; margin-bottom: 1rem; }
.seo-article a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.seo-article a:hover { color: var(--accent-2); }
.seo-list { list-style: none; margin: 0 0 1.2rem; padding: 0; display: grid; gap: .7rem; }
.seo-list li { position: relative; padding-left: 1.7rem; color: var(--ink-soft); line-height: 1.6; }
.seo-list li::before { content: ""; position: absolute; left: 0; top: .55em; width: 8px; height: 8px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--accent-2)); box-shadow: 0 0 8px color-mix(in srgb, var(--accent) 60%, transparent); }
ol.seo-list { counter-reset: sl; }
ol.seo-list li::before { content: counter(sl); counter-increment: sl; width: 20px; height: 20px; top: .1em; background: color-mix(in srgb, var(--accent) 16%, transparent); border: 1px solid color-mix(in srgb, var(--accent) 35%, var(--line)); color: var(--accent-2); font-family: var(--font-display); font-size: .72rem; font-weight: 700; display: grid; place-items: center; box-shadow: none; }
ol.seo-list li { padding-left: 2.1rem; }

/* Fiyat kartları — flat */
.price-card { background: color-mix(in srgb, var(--surface) 70%, transparent); border: 1px solid var(--line-strong); box-shadow: none; }
.price-card::before { display: none; }
.price-card:hover { transform: translateY(-3px); box-shadow: 0 16px 44px -34px rgba(0,0,0,.7); border-color: color-mix(in srgb, var(--accent) 30%, var(--line-strong)); background: color-mix(in srgb, var(--surface) 85%, transparent); }
.price-card.featured { border-color: color-mix(in srgb, var(--accent) 55%, transparent); box-shadow: 0 0 0 1px color-mix(in srgb, var(--accent) 35%, transparent); }
.price-feature { border-top-color: var(--line); }

/* ============================================================
   Liquid arka plan — morphing blob'lar (konsept varyasyonu)
   ============================================================ */
.liquid-bg { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; filter: blur(60px) saturate(125%); opacity: .55; }
.liquid-bg span { position: absolute; display: block; width: 46vmax; height: 46vmax; border-radius: 42% 58% 56% 44% / 48% 42% 58% 52%; mix-blend-mode: screen; will-change: transform, border-radius; }
.liquid-bg span:nth-child(1) { left: -8%; top: -10%; background: radial-gradient(circle at 40% 40%, var(--accent), transparent 65%); animation: liq1 22s ease-in-out infinite; }
.liquid-bg span:nth-child(2) { right: -12%; top: 5%; background: radial-gradient(circle at 50% 50%, var(--accent-2), transparent 65%); animation: liq2 27s ease-in-out infinite; }
.liquid-bg span:nth-child(3) { left: 20%; bottom: -18%; background: radial-gradient(circle at 50% 50%, var(--brand-2), transparent 65%); animation: liq3 25s ease-in-out infinite; }
.liquid-bg span:nth-child(4) { right: 12%; bottom: -10%; width: 36vmax; height: 36vmax; background: radial-gradient(circle at 50% 50%, var(--magenta), transparent 70%); opacity: .55; animation: liq1 30s ease-in-out infinite reverse; }
@keyframes liq1 {
  0%,100% { transform: translate(0,0) scale(1) rotate(0deg); border-radius: 42% 58% 56% 44% / 48% 42% 58% 52%; }
  33% { transform: translate(12%,8%) scale(1.18) rotate(40deg); border-radius: 60% 40% 34% 66% / 56% 60% 40% 44%; }
  66% { transform: translate(-8%,14%) scale(.9) rotate(-30deg); border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%; }
}
@keyframes liq2 {
  0%,100% { transform: translate(0,0) scale(1.05) rotate(0deg); border-radius: 55% 45% 48% 52% / 52% 50% 50% 48%; }
  50% { transform: translate(-14%,10%) scale(1.25) rotate(-50deg); border-radius: 40% 60% 62% 38% / 44% 58% 42% 56%; }
}
@keyframes liq3 {
  0%,100% { transform: translate(0,0) scale(1) rotate(0deg); border-radius: 48% 52% 55% 45% / 50% 46% 54% 50%; }
  40% { transform: translate(10%,-12%) scale(1.2) rotate(35deg); border-radius: 62% 38% 40% 60% / 58% 42% 58% 42%; }
  75% { transform: translate(-6%,-6%) scale(.92) rotate(-20deg); border-radius: 44% 56% 60% 40% / 46% 54% 46% 54%; }
}
@media (prefers-reduced-motion: reduce) { .liquid-bg span { animation: none; } }
@media (max-width: 760px) { .liquid-bg { filter: blur(42px); opacity: .42; } .liquid-bg span:nth-child(3), .liquid-bg span:nth-child(4) { display: none; } }
html[data-theme="light"] .liquid-bg { display: none; }

/* Hero küre (kutusuz, sabit yükseklik -> CLS yok) */
.hero-orb-open { width: 100%; display: flex; justify-content: center; align-items: center; will-change: transform; }
.hero-orb-open .demo-canvas { width: 100%; max-width: 520px; aspect-ratio: 1 / 1; height: auto; min-height: 320px; display: block; }
@media (max-width: 600px) { .hero-orb-open .demo-canvas { min-height: 280px; } }
.hero-chip { display: none !important; }
/* CLS: sayaç ve hero görsel için yer ayrımı */
.metric .n, .kpi .k-value { min-height: 1em; }

/* Yetenek kartı — Avantaj satırı (baskın cevap) */
.cap-card { display: flex; flex-direction: column; }
.cap-adv { margin-top: 1.1rem; padding-top: 1rem; border-top: 1px solid var(--line); display: grid; gap: .35rem; }
.cap-adv-label { display: inline-flex; align-items: center; gap: .35rem; font-family: var(--font-display); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--accent-2); }
.cap-adv-label svg { color: var(--accent-2); }
.cap-adv-text { color: var(--ink); font-size: var(--step--1); font-weight: 500; line-height: 1.45; }

/* ============================================================
   Marquee — kayan yorumlar + referans şeridi
   ============================================================ */
.mq { overflow: hidden; margin-bottom: 1.2rem; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.mq-track { display: flex; gap: 1.2rem; width: max-content; animation: mq-scroll 60s linear infinite; }
.mq.mq-rev .mq-track { animation-direction: reverse; }
.mq:hover .mq-track { animation-play-state: paused; }
@keyframes mq-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.mq-item { width: 360px; flex: 0 0 360px; }
@media (max-width: 560px){ .mq-item { width: 300px; flex-basis: 300px; } }
.rv-like.static { pointer-events: none; }
@media (prefers-reduced-motion: reduce){ .mq-track { animation: none; } .mq { overflow-x: auto; } }

/* Referans şeridi */
.ref-title { text-align: center; color: var(--ink-mute); font-size: var(--step--1); margin-bottom: 1.2rem; }
.mq-logos .mq-track { animation-duration: 40s; gap: .8rem; }
.ref-chip { display: inline-flex; align-items: center; gap: .5rem; white-space: nowrap; padding: .7rem 1.2rem; border-radius: 100px; border: 1px solid var(--line-strong); background: color-mix(in srgb, var(--surface) 50%, transparent); font-family: var(--font-display); font-weight: 600; font-size: var(--step--1); color: var(--ink-soft); }
.ref-chip svg { color: var(--accent-2); flex: none; }

/* Hero sol — vurucu rozet + sosyal kanıt */
.hero-badge { display: inline-flex; align-items: center; gap: .5rem; padding: .45rem .9rem; border-radius: 100px; font-family: var(--font-display); font-size: var(--step--1); font-weight: 600; letter-spacing: .02em;
  color: var(--ink); border: 1px solid color-mix(in srgb, var(--accent) 40%, var(--line-strong)); background: color-mix(in srgb, var(--accent) 12%, transparent); }
.hero-badge i { width: 8px; height: 8px; border-radius: 50%; background: var(--accent-2); box-shadow: 0 0 10px var(--accent-2); animation: pulse 1.5s infinite; }
.hero-proof { margin-top: 1.6rem; color: var(--ink-soft); font-size: var(--step--1); }
.hero-proof .rating-stars { margin-right: .4rem; }
.hero-proof strong { color: var(--ink); }
@media (min-width: 960px) { .hcol-text .hero-badge, .hcol-text .hero-proof { } }
