/* ============================================================
   Flowoy — v3 "Creative SaaS + Dark Mode"
   Light: kırık beyaz zemin · Dark: gece moru zemin
   Sabitler: mürekkep panel #191331 · mor #7367F0 · lime #D9F45B
   Display: Bricolage Grotesque · Body: Inter
   ============================================================ */

:root {
  /* Tema token'ları (light) */
  --bg: #FAF8F5;
  --surface: #FFFFFF;
  --surface-2: #F3F0FA;
  --heading: #191331;
  --text: #494257;
  --muted: #7A7490;
  --border: #E8E4F2;
  --line: #191331;                 /* güçlü kontur */
  --tile-lilac: #ECE8FF;
  --tile-lime: #EDFA9E;
  --chat-bg: #F3F0E9;
  --bubble-in: #FFFFFF;
  --bubble-in-text: #2A2344;
  --bubble-out: #DCF8C6;
  --bubble-out-text: #22432F;
  --shadow-pop: 8px 8px 0 rgba(25, 19, 49, 0.07);
  --shadow-soft: 0 14px 40px rgba(25, 19, 49, 0.10);
  --header-glass: rgba(250, 248, 245, 0.85);

  /* Sabit marka renkleri (temayla değişmez) */
  --ink: #191331;
  --ink-soft: #2A2344;
  --primary: #7367F0;
  --primary-deep: #5A4BE8;
  --lime: #D9F45B;
  --lime-soft: #EDFA9E;
  --lilac: #ECE8FF;
  --success: #28C76F;
  --warning: #FF9F43;
  --danger: #EA5455;
  --info: #00CFE8;
  --whatsapp: #25D366;

  --radius: 20px;
  --radius-lg: 28px;
  --font-display: 'Bricolage Grotesque', 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --header-h: 70px;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --bg: #0E0A1F;
  --surface: #171130;
  --surface-2: #1F1840;
  --heading: #F4F1FF;
  --text: #C6C0DB;
  --muted: #8E86AC;
  --border: #2C2450;
  --line: #4A4080;
  --tile-lilac: #241C4B;
  --tile-lime: #2B3313;
  --chat-bg: #100C24;
  --bubble-in: #251E48;
  --bubble-in-text: #E8E4F8;
  --bubble-out: #1E4634;
  --bubble-out-text: #C9F3D9;
  --shadow-pop: 8px 8px 0 rgba(0, 0, 0, 0.35);
  --shadow-soft: 0 14px 40px rgba(0, 0, 0, 0.45);
  --header-glass: rgba(14, 10, 31, 0.82);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  transition: background .35s ease, color .35s ease;
}

img, svg { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; }

.container { max-width: 1320px; margin: 0 auto; padding: 0 28px; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--heading);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.5px;
}

/* Fosforlu kalem vurgusu — görünüme kayarak çizilir */
.marker { position: relative; display: inline-block; z-index: 1; white-space: nowrap; }
.marker::after {
  content: ''; position: absolute; z-index: -1;
  left: -4px; right: -4px; bottom: 6%; height: 42%;
  background: var(--lime);
  border-radius: 4px;
  transform: skew(-8deg) rotate(-1deg) scaleX(0);
  transform-origin: left center;
  animation: markerDraw .7s cubic-bezier(.6,0,.2,1) .45s forwards;
}
@keyframes markerDraw { to { transform: skew(-8deg) rotate(-1deg) scaleX(1); } }
html[data-theme="dark"] .marker { color: var(--heading); }
h1 .marker, h2 .marker { color: var(--heading); }
/* Koyu bantlarda: lime dolgu tam yükseklik, metin mürekkep — her iki temada okunur */
.cta-band .marker, .stats-band .marker, .price-card.featured .marker { color: var(--ink); }
.cta-band .marker::after, .stats-band .marker::after, .price-card.featured .marker::after {
  height: 86%; bottom: 4%; left: -8px; right: -8px; border-radius: 8px;
}
html[data-theme="dark"] .cta-band .marker, html[data-theme="dark"] .stats-band .marker { color: var(--ink); }
.marker-ink-text { color: var(--ink) !important; }

/* ---------------- Butonlar ---------------- */
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px; border-radius: 999px;
  font-weight: 700; font-size: 15.5px; font-family: var(--font-body);
  border: 2px solid transparent; cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
/* parlama süpürmesi */
.btn::before {
  content: ''; position: absolute; top: 0; bottom: 0; width: 46px;
  left: -70px; transform: skewX(-22deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
  transition: left .55s ease;
}
.btn:hover::before { left: calc(100% + 30px); }
.btn-lg { padding: 18px 38px; font-size: 16.5px; }
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: var(--primary); transform: translateY(-3px); box-shadow: 0 12px 26px rgba(115,103,240,.4); }
html[data-theme="dark"] .btn-primary { background: var(--primary); }
html[data-theme="dark"] .btn-primary:hover { background: var(--primary-deep); }
.btn-outline { border-color: var(--heading); color: var(--heading); background: transparent; }
.btn-outline:hover { background: var(--heading); color: var(--bg); transform: translateY(-3px); }
.btn-white { background: #fff; color: var(--ink); }
.btn-white:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.btn-lime { background: var(--lime); color: var(--ink); }
.btn-lime:hover { transform: translateY(-3px) rotate(-1deg); box-shadow: 0 12px 30px rgba(217,244,91,.45); }
.btn-whatsapp { background: var(--whatsapp); color: #fff; }
.btn-whatsapp:hover { background: #1fb857; transform: translateY(-3px); }

/* ---------------- Header ---------------- */
.site-header {
  position: sticky; top: 0; z-index: 300;
  background: transparent;
  transition: background .3s, box-shadow .3s, backdrop-filter .3s;
}
.site-header.scrolled {
  background: var(--header-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 6px 24px rgba(0,0,0,.10);
}
.site-header .container { max-width: 1560px; }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h); gap: 36px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 21px; font-weight: 800; color: var(--heading); letter-spacing: -0.5px;
}
.logo .logo-mark { width: 36px; height: 36px; flex-shrink: 0; }
.logo strong { color: var(--primary); font-weight: 800; }

.nav-links { display: flex; align-items: center; gap: 4px; margin: 0 auto; }
.nav-mobile-cta { display: none; }
.nav-item { position: relative; }
.nav-links a, .nav-links .nav-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 14px; border-radius: 999px;
  font-weight: 600; font-size: 15px; color: var(--heading);
  background: none; border: none; cursor: pointer;
  transition: background .2s, color .2s; white-space: nowrap;
}
.nav-links a:hover, .nav-links .nav-btn:hover,
.nav-links a.active { background: var(--tile-lilac); color: var(--primary); }
.nav-btn .caret {
  width: 9px; height: 9px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px); transition: transform .25s;
}
.nav-item.open > .nav-btn .caret { transform: rotate(225deg) translateY(-2px); }
.nav-item.open > .nav-btn { background: var(--tile-lilac); color: var(--primary); }

.header-cta { display: flex; align-items: center; gap: 8px; }
.header-cta .link-login { font-weight: 700; font-size: 14.5px; color: var(--heading); padding: 9px 13px; border-radius: 999px; }
.header-cta .link-login:hover { background: var(--tile-lilac); color: var(--primary); }
.header-cta .btn { padding: 11px 22px; font-size: 14px; }

/* Dil değiştirici */
.lang-toggle {
  display: inline-flex; align-items: center; gap: 5px;
  font-weight: 800; font-size: 12.5px; letter-spacing: .5px;
  border: 1.5px solid var(--border); border-radius: 999px;
  padding: 9px 14px; color: var(--heading);
  transition: border-color .2s, background .2s, transform .2s;
}
.lang-toggle:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }

/* Tema düğmesi */
.theme-toggle {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: var(--surface); border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--heading);
  transition: transform .25s, border-color .25s, background .25s;
}
.theme-toggle:hover { border-color: var(--primary); transform: rotate(15deg) scale(1.06); }
.theme-toggle .ico-sun, .theme-toggle .ico-moon { transition: opacity .2s, transform .4s; }
html[data-theme="dark"] .theme-toggle .ico-sun { display: block; }
html[data-theme="dark"] .theme-toggle .ico-moon { display: none; }
.theme-toggle .ico-sun { display: none; }
.theme-toggle .ico-moon { display: block; }

/* ---------------- Mega Menü v3 ----------------
   Panel EKRANA ortalanır (fixed). Açılma/kapanma JS hover-intent ile
   (.open sınıfı) — buton ile panel arasındaki boşluk kapanmaya yol açmaz. */
.mega-panel, .drop-panel {
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 90px rgba(0,0,0,.22);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .25s ease, transform .25s cubic-bezier(.2,.9,.3,1.1), visibility .25s;
  z-index: 350;
}
/* Mega: viewport'a ortalanmış sabit panel */
.mega-panel {
  position: fixed; top: calc(var(--header-h) + 8px); left: 50%;
  transform: translateX(-50%) translateY(14px) scale(.985);
  width: min(1140px, calc(100vw - 48px)); padding: 0;
}
/* Küçük dropdown: kendi öğesine göre ortalanır */
.drop-panel {
  position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%) translateY(14px) scale(.985);
}
/* Buton ile panel arasındaki görünmez hover köprüsü */
.mega-panel::before {
  content: ''; position: absolute; top: -18px; left: 0; right: 0; height: 18px;
}
.drop-panel::before {
  content: ''; position: absolute; top: -14px; left: -20px; right: -20px; height: 14px;
}
.nav-item.open > .mega-panel, .nav-item:focus-within > .mega-panel {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
}
.nav-item.open > .drop-panel, .nav-item:focus-within > .drop-panel {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
}
.mega-grid { display: grid; grid-template-columns: 1fr 1fr 1fr 1.15fr; gap: 30px; padding: 34px 36px 26px; }
.mega-col h5 {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-size: 11.5px; font-weight: 800; letter-spacing: 1.6px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 14px;
}
.mega-col h5::after { content: ''; flex: 1; height: 1.5px; background: var(--border); border-radius: 2px; }
.mega-col h5 a { color: var(--heading); font-size: 12.5px; transition: color .2s; }
.mega-col h5 a:hover { color: var(--primary); }

/* Stagger: panel açılınca linkler sırayla belirir */
.mega-link {
  display: flex; gap: 13px; align-items: flex-start;
  padding: 10px 12px; margin: 0 -12px; border-radius: 14px;
  transition: background .18s, translate .18s;
  opacity: 0; translate: 0 10px;
  position: relative;
}
.nav-item.open .mega-link, .nav-item:focus-within .mega-link {
  opacity: 1; translate: 0 0;
  transition: opacity .35s ease, translate .35s ease, background .18s;
}
.mega-link:nth-of-type(2) { transition-delay: .05s; }
.mega-link:nth-of-type(3) { transition-delay: .1s; }
.mega-link:nth-of-type(4) { transition-delay: .15s; }
.mega-link:nth-of-type(5) { transition-delay: .2s; }
.mega-link:hover { background: var(--surface-2); }
.mega-link::after {
  content: '→'; position: absolute; right: 12px; top: 50%; translate: -6px -50%;
  opacity: 0; font-weight: 800; color: var(--primary);
  transition: opacity .2s, translate .2s;
}
.mega-link:hover::after { opacity: 1; translate: 0 -50%; }
.mega-ic {
  width: 40px; height: 40px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 17px;
  background: linear-gradient(135deg, #7367F0, #9E95F5);
  box-shadow: 0 6px 14px rgba(115,103,240,.3);
  transition: transform .25s;
}
.mega-link:hover .mega-ic { transform: rotate(-6deg) scale(1.08); }
.mega-ic.g { background: linear-gradient(135deg, #28C76F, #5AE38D); box-shadow: 0 6px 14px rgba(40,199,111,.3); }
.mega-ic.o { background: linear-gradient(135deg, #FF9F43, #FFB976); box-shadow: 0 6px 14px rgba(255,159,67,.3); }
.mega-ic.c { background: linear-gradient(135deg, #00CFE8, #4DDFF0); box-shadow: 0 6px 14px rgba(0,207,232,.3); }
.mega-ic.l { background: linear-gradient(135deg, #b8d43e, #D9F45B); box-shadow: 0 6px 14px rgba(217,244,91,.4); }
.mega-ic.k { background: linear-gradient(135deg, #191331, #3A3060); box-shadow: 0 6px 14px rgba(25,19,49,.35); }
.mega-link strong { display: block; font-size: 14.5px; color: var(--heading); font-weight: 700; line-height: 1.3; }
.mega-link > span:last-child span { font-size: 12.5px; color: var(--muted); line-height: 1.45; display: block; margin-top: 2px; }

.mega-promo {
  background: var(--ink); border-radius: 20px; padding: 26px;
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 100%; position: relative; overflow: hidden;
}
.mega-promo::after {
  content: ''; position: absolute; width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, rgba(115,103,240,.55), transparent 70%);
  bottom: -90px; right: -70px;
}
.mega-promo .chip {
  align-self: flex-start;
  background: var(--lime); color: var(--ink);
  font-size: 11.5px; font-weight: 800; letter-spacing: .8px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px; margin-bottom: 14px;
  transform: rotate(-2deg);
}
.mega-promo strong { font-family: var(--font-display); color: #fff; font-size: 19px; line-height: 1.3; display: block; margin-bottom: 8px; position: relative; z-index: 1; }
.mega-promo p { color: rgba(255,255,255,.65); font-size: 13px; line-height: 1.55; margin-bottom: 14px; position: relative; z-index: 1; }
.promo-spark { display: flex; align-items: flex-end; gap: 5px; height: 42px; margin-bottom: 16px; position: relative; z-index: 1; }
.promo-spark i { flex: 1; border-radius: 4px 4px 2px 2px; background: rgba(255,255,255,.18); height: calc(var(--h) * 1%); }
.promo-spark i.hot { background: var(--lime); }
.mega-promo .promo-link { color: var(--lime); font-weight: 700; font-size: 14px; position: relative; z-index: 1; }
.mega-promo .promo-link:hover { text-decoration: underline; }

/* Mega alt bar */
.mega-foot {
  display: flex; align-items: center; gap: 26px;
  border-top: 1.5px solid var(--border);
  background: var(--surface-2);
  padding: 15px 36px;
  font-size: 13px; font-weight: 700; color: var(--muted);
}
.mega-foot span { display: inline-flex; align-items: center; gap: 7px; }
.mega-foot a { margin-left: auto; color: var(--primary); font-weight: 800; font-size: 14px; }
.mega-foot a:hover { text-decoration: underline; }

.drop-panel { width: 250px; padding: 14px; }
.drop-panel a { display: block; padding: 11px 14px; border-radius: 12px; font-size: 15px; font-weight: 600; color: var(--heading); }
.drop-panel a:hover { background: var(--surface-2); color: var(--primary); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-toggle span { width: 26px; height: 3px; background: var(--heading); border-radius: 3px; transition: all .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------------- Hero ---------------- */
.hero {
  position: relative; overflow: hidden;
  padding: 64px 0 96px;
}
/* ızgara zemin + aurora */
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, black 30%, transparent 75%);
  opacity: .55;
}
.hero-blob { position: absolute; border-radius: 50%; filter: blur(100px); z-index: 0; animation: blobDrift 14s ease-in-out infinite alternate; }
.hb-1 { width: 520px; height: 520px; background: rgba(115,103,240,.28); top: -180px; right: -140px; }
.hb-2 { width: 420px; height: 420px; background: rgba(217,244,91,.2); bottom: -190px; left: -120px; animation-delay: 4s; }
@keyframes blobDrift { from { translate: 0 0 scale(1); } to { translate: 40px 30px; scale: 1.12; } }
.hero-dots {
  position: absolute; width: 240px; height: 180px; z-index: 0;
  background-image: radial-gradient(var(--primary) 2.2px, transparent 2.2px);
  background-size: 22px 22px; opacity: .3;
}
.hd-1 { top: 40px; right: 4%; }
.hd-2 { bottom: 30px; left: 38%; }

.hero-inner { display: grid; grid-template-columns: 1.02fr .98fr; gap: 60px; align-items: center; position: relative; z-index: 1; }

/* giriş sekansı */
.hero-content > * { opacity: 0; translate: 0 26px; animation: riseIn .7s cubic-bezier(.2,.8,.2,1) forwards; }
.hero-content > :nth-child(1) { animation-delay: .05s; }
.hero-content > :nth-child(2) { animation-delay: .15s; }
.hero-content > :nth-child(3) { animation-delay: .28s; }
.hero-content > :nth-child(4) { animation-delay: .4s; }
.hero-content > :nth-child(5) { animation-delay: .52s; }
@keyframes riseIn { to { opacity: 1; translate: 0 0; } }
.hero-stage { opacity: 0; animation: stageIn .9s cubic-bezier(.2,.8,.2,1) .3s forwards; }
@keyframes stageIn { from { opacity: 0; translate: 40px 0; rotate: 2deg; } to { opacity: 1; translate: 0 0; rotate: 0deg; } }

.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--surface); border: 1.5px solid var(--line);
  padding: 9px 20px; border-radius: 999px;
  font-size: 14px; font-weight: 700; color: var(--heading);
  box-shadow: 4px 4px 0 rgba(25,19,49,.1);
  margin-bottom: 30px;
}
.hero-badge .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--whatsapp); animation: pulse 1.6s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(37,211,102,.5);} 50% { box-shadow: 0 0 0 8px rgba(37,211,102,0);} }

.hero h1 {
  font-size: clamp(42px, 5.2vw, 74px);
  font-weight: 800; letter-spacing: -2.5px; line-height: 1.04;
  margin-bottom: 28px;
}
.hero-text { font-size: 18.5px; color: var(--muted); max-width: 520px; margin-bottom: 38px; line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-bottom: 44px; }

.hero-social { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.avatar-stack { display: flex; align-items: center; }
.avatar-stack .av {
  width: 46px; height: 46px; border-radius: 50%;
  border: 3px solid var(--bg); margin-left: -13px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800; color: #fff;
  transition: translate .2s;
}
.avatar-stack .av:hover { translate: 0 -5px; }
.avatar-stack .av:first-child { margin-left: 0; }
.avatar-stack .av-plus { background: var(--primary); font-size: 20px; }
.hero-rating strong { display: block; font-size: 16.5px; color: var(--heading); font-weight: 800; font-family: var(--font-display); }
.hero-rating .rating-row { display: flex; align-items: center; gap: 7px; font-size: 13.5px; font-weight: 700; color: var(--muted); }
.hero-rating .stars { color: #FFB400; font-size: 14px; letter-spacing: 1.5px; }

/* --- Hero: Telefon / Sohbet demosu --- */
.hero-stage { position: relative; display: flex; justify-content: center; perspective: 1200px; }
.chat-phone {
  width: min(420px, 100%);
  background: var(--surface); border: 2px solid var(--line);
  border-radius: 34px;
  box-shadow: 12px 12px 0 rgba(25,19,49,.09);
  overflow: hidden;
  position: relative; z-index: 2;
  transform-style: preserve-3d;
  transition: transform .18s ease-out, box-shadow .3s;
  will-change: transform;
}
/* dark'ta neon halo */
html[data-theme="dark"] .chat-phone {
  box-shadow: 0 0 0 1px rgba(115,103,240,.35), 0 24px 80px rgba(115,103,240,.28), 0 8px 30px rgba(0,0,0,.5);
}
.phone-glow {
  position: absolute; inset: -40px; z-index: 1; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(115,103,240,.32), transparent 72%);
  filter: blur(30px); opacity: 0; pointer-events: none;
  transition: opacity .5s;
}
html[data-theme="dark"] .phone-glow { opacity: 1; animation: glowPulse 4.5s ease-in-out infinite; }
@keyframes glowPulse { 0%,100% { opacity: .7; } 50% { opacity: 1; } }

.chat-head {
  background: var(--ink); color: #fff;
  padding: 16px 20px; display: flex; align-items: center; gap: 13px;
}
.chat-head .ch-av {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: var(--lime); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 15px;
}
.chat-head strong { display: block; font-size: 15px; font-weight: 700; }
.chat-head span { font-size: 12px; color: #9ff0b8; font-weight: 600; }
.chat-head .ch-wa {
  margin-left: auto; width: 34px; height: 34px; border-radius: 50%;
  background: var(--whatsapp); display: flex; align-items: center; justify-content: center;
}
.chat-body {
  background: var(--chat-bg);
  padding: 22px 18px 16px; display: flex; flex-direction: column; gap: 12px;
  min-height: 380px;
}
.bubble {
  max-width: 82%; padding: 12px 15px; border-radius: 16px;
  font-size: 13.5px; line-height: 1.5;
  opacity: 0; transform: translateY(14px) scale(.97);
  animation: bubbleIn .5s cubic-bezier(.2,.9,.3,1.2) forwards;
  position: relative;
}
.bubble .b-time { display: block; font-size: 10px; opacity: .55; text-align: right; margin-top: 4px; font-weight: 600; }
.bubble-in { background: var(--bubble-in); color: var(--bubble-in-text); border-bottom-left-radius: 5px; align-self: flex-start; box-shadow: 0 2px 5px rgba(0,0,0,.08); }
.bubble-out { background: var(--bubble-out); color: var(--bubble-out-text); border-bottom-right-radius: 5px; align-self: flex-end; box-shadow: 0 2px 5px rgba(0,0,0,.08); }
.bubble-card {
  background: var(--surface); border: 1.5px solid var(--border); align-self: flex-end;
  border-radius: 16px; border-bottom-right-radius: 5px;
  padding: 0; overflow: hidden; max-width: 86%;
}
.bubble-card .bc-strip { height: 5px; background: var(--whatsapp); }
.bubble-card .bc-body { padding: 12px 15px; }
.bubble-card .bc-title { font-size: 13px; font-weight: 800; color: var(--heading); margin-bottom: 3px; }
.bubble-card .bc-sub { font-size: 12px; color: var(--muted); margin-bottom: 9px; }
.bubble-card .bc-badge {
  display: inline-block; background: rgba(40,199,111,.16); color: #2ebd6d;
  font-size: 10.5px; font-weight: 800; padding: 4px 11px; border-radius: 999px;
}
@keyframes bubbleIn { to { opacity: 1; transform: translateY(0) scale(1); } }
.b1 { animation-delay: .6s; } .b2 { animation-delay: 1.4s; } .b3 { animation-delay: 2.3s; } .b4 { animation-delay: 3.2s; }

.typing { display: inline-flex; gap: 4px; align-items: center; padding: 13px 16px; }
.typing i { width: 7px; height: 7px; border-radius: 50%; background: var(--muted); animation: typing 1.2s infinite; }
.typing i:nth-child(2) { animation-delay: .18s; }
.typing i:nth-child(3) { animation-delay: .36s; }
@keyframes typing { 0%,60%,100% { transform: translateY(0); opacity:.5; } 30% { transform: translateY(-5px); opacity:1; } }

.chat-input {
  background: var(--surface); border-top: 1.5px solid var(--border);
  padding: 13px 16px; display: flex; align-items: center; gap: 11px;
}
.chat-input .ci-field {
  flex: 1; background: var(--bg); border: 1.5px solid var(--border);
  border-radius: 999px; padding: 10px 17px; font-size: 13px; color: var(--muted);
}
.chat-input .ci-send {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: var(--whatsapp); display: flex; align-items: center; justify-content: center;
}

/* --- Sticker rozetler --- */
.sticker {
  position: absolute; z-index: 3;
  background: var(--surface); border: 2px solid var(--line);
  border-radius: 16px; padding: 12px 17px;
  font-weight: 800; font-size: 13.5px; color: var(--heading);
  box-shadow: 5px 5px 0 rgba(25,19,49,.12);
  display: flex; align-items: center; gap: 10px;
  animation: floaty 5.5s ease-in-out infinite;
  transition: scale .2s;
}
.sticker:hover { scale: 1.08; }
.sticker small { display: block; font-weight: 600; color: var(--muted); font-size: 11px; line-height: 1.2; }
.sticker .big { font-family: var(--font-display); font-size: 21px; line-height: 1; }
.sticker-lime { background: var(--lime); color: var(--ink); }
.sticker-lime small { color: rgba(25,19,49,.6); }
.sticker-ink { background: var(--ink); color: #fff; }
.sticker-ink small { color: rgba(255,255,255,.6); }
.st-1 { top: 26px; left: -30px; transform: rotate(-6deg); animation-delay: 0s; }
.st-2 { top: 45%; right: -38px; transform: rotate(4deg); animation-delay: 1.4s; }
.st-3 { bottom: -8px; left: -14px; transform: rotate(3deg); animation-delay: 2.6s; }
@keyframes floaty { 0%,100% { translate: 0 0; } 50% { translate: 0 -12px; } }

/* ---------------- Logo Marquee ---------------- */
.trustbar { padding: 40px 0 44px; border-top: 1.5px solid var(--line); border-bottom: 1.5px solid var(--line); background: var(--surface); overflow: hidden; }
.trustbar p { text-align: center; font-size: 12.5px; font-weight: 800; color: var(--muted); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 26px; }
.marquee { overflow: hidden; position: relative; }
.marquee::before, .marquee::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 110px; z-index: 2; pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--surface), transparent); }
.marquee::after { right: 0; background: linear-gradient(-90deg, var(--surface), transparent); }
.marquee-track {
  display: flex; align-items: center; gap: 72px; width: max-content;
  animation: marquee 34s linear infinite;
  padding-right: 72px;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track img {
  height: 30px; width: auto; max-width: 150px; object-fit: contain;
  filter: grayscale(1); opacity: .55; transition: filter .3s, opacity .3s, transform .3s;
}
.marquee-track img.tall { height: 50px; }
.marquee-track img:hover { filter: none; opacity: 1; transform: scale(1.1); }
html[data-theme="dark"] .marquee-track img { filter: grayscale(1) invert(.9) brightness(1.4); opacity: .5; }
html[data-theme="dark"] .marquee-track img:hover { filter: invert(.9) brightness(1.6); opacity: 1; }

/* ---------------- Bölüm iskeleti ---------------- */
.section { padding: 104px 0; }
section[id] { scroll-margin-top: calc(var(--header-h) + 16px); }
/* Bölümler arası sert çizgi yerine yumuşak renk geçişi */
.section-alt {
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 14%, var(--surface) 86%, var(--bg) 100%);
}
/* Geniş nefesli bölüm (ör. analitik vitrini) */
.section-roomy { padding: 150px 0; }
.section-tint {
  background:
    radial-gradient(720px 420px at 12% 30%, rgba(115,103,240,.07), transparent 65%),
    radial-gradient(640px 380px at 88% 70%, rgba(217,244,91,.08), transparent 65%);
}
.section-head { max-width: 780px; margin: 0 auto 64px; text-align: center; }
.section-head.left { text-align: left; margin-left: 0; }
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 18px; border-radius: 999px;
  background: transparent; border: 1.5px solid var(--line);
  color: var(--heading);
  font-size: 12.5px; font-weight: 800; letter-spacing: 1.2px;
  text-transform: uppercase; margin-bottom: 22px;
}
.section-head h2 { font-size: clamp(32px, 3.8vw, 50px); font-weight: 800; letter-spacing: -1.5px; margin-bottom: 18px; }
.section-head p { color: var(--muted); font-size: 17.5px; }

/* ---------------- Spotlight (fare izleyen ışık) ---------------- */
.spotlight { position: relative; }
.spotlight::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  background: radial-gradient(320px circle at var(--mx, 50%) var(--my, 50%), rgba(115,103,240,.16), transparent 65%);
  opacity: 0; transition: opacity .35s; pointer-events: none; z-index: 0;
}
html[data-theme="dark"] .spotlight::after {
  background: radial-gradient(320px circle at var(--mx, 50%) var(--my, 50%), rgba(115,103,240,.28), transparent 65%);
}
.spotlight:hover::after { opacity: 1; }
.spotlight > * { position: relative; z-index: 1; }

/* ---------------- Bento Grid ---------------- */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 205px; gap: 22px; }
.bento-tile {
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  position: relative; overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  display: flex; flex-direction: column;
}
.bento-tile:hover { transform: translateY(-6px); border-color: var(--line); box-shadow: var(--shadow-pop); }
.bento-tile h3 { font-size: 20px; font-weight: 800; letter-spacing: -.4px; margin-bottom: 8px; }
.bento-tile > p { font-size: 14px; color: var(--muted); line-height: 1.55; }
.bento-wide { grid-column: span 2; }
.bento-big { grid-column: span 2; grid-row: span 2; }
.bento-tint-lilac { background: var(--tile-lilac); border-color: transparent; }
.bento-tint-lime { background: var(--tile-lime); border-color: transparent; }
.bento-tint-ink { background: var(--ink); border-color: var(--ink); }
.bento-tint-ink h3 { color: #fff; }
.bento-tint-ink > p { color: rgba(255,255,255,.65); }
html[data-theme="dark"] .bento-tint-ink { border-color: var(--border); }
.bento-emoji { font-size: 26px; margin-bottom: 14px; }

.mini-chat { margin-top: auto; display: flex; flex-direction: column; gap: 8px; }
.mini-bub {
  padding: 9px 13px; border-radius: 13px; font-size: 12.5px; font-weight: 600;
  max-width: 88%; box-shadow: 0 2px 5px rgba(0,0,0,.06);
}
.mini-bub.in { background: var(--bubble-in); color: var(--bubble-in-text); border: 1px solid var(--border); align-self: flex-start; border-bottom-left-radius: 4px; }
.mini-bub.out { background: var(--bubble-out); color: var(--bubble-out-text); align-self: flex-end; border-bottom-right-radius: 4px; }

.mini-progress { margin-top: auto; }
.mini-progress .mp-row { display: flex; justify-content: space-between; font-size: 12px; font-weight: 700; color: var(--muted); margin-bottom: 7px; }
.mini-progress .mp-row b { color: var(--heading); }
.mini-progress .mp-track { height: 11px; background: rgba(125,115,165,.2); border-radius: 999px; overflow: hidden; }
.mini-progress .mp-fill {
  height: 100%; width: 0; border-radius: 999px;
  background: repeating-linear-gradient(-45deg, var(--primary), var(--primary) 8px, var(--primary-deep) 8px, var(--primary-deep) 16px);
  background-size: 200% 100%;
  transition: width 1.4s cubic-bezier(.2,.8,.2,1);
  animation: stripeMove 1.2s linear infinite;
}
@keyframes stripeMove { to { background-position: 22px 0; } }
.visible .mp-fill, .bento-tile:hover .mp-fill { width: var(--mp, 73%); }

.mini-bars { margin-top: auto; display: flex; align-items: flex-end; gap: 9px; height: 92px; }
.mini-bars i {
  flex: 1; border-radius: 7px 7px 3px 3px; background: rgba(125,115,165,.25);
  height: calc(var(--h) * 1%);
  transition: background .3s, height .5s cubic-bezier(.2,.8,.2,1);
}
.mini-bars i.hot { background: var(--primary); }
.mini-bars i.lime { background: var(--lime); }
.bento-tile:hover .mini-bars i { background: var(--primary); }
.bento-tile:hover .mini-bars i.lime { background: var(--lime); }

.gauge-wrap { margin-top: auto; display: flex; align-items: center; gap: 16px; }
.gauge { width: 92px; height: 92px; flex-shrink: 0; }
.gauge .g-bg { fill: none; stroke: rgba(255,255,255,.14); stroke-width: 11; }
.gauge .g-val {
  fill: none; stroke: var(--lime); stroke-width: 11; stroke-linecap: round;
  stroke-dasharray: 0 253;
  transform: rotate(-90deg); transform-origin: center;
  transition: stroke-dasharray 1.4s cubic-bezier(.2,.8,.2,1);
}
.visible .gauge .g-val, .bento-tile:hover .gauge .g-val { stroke-dasharray: 232 253; }
.gauge text { fill: #fff; font-family: var(--font-display); font-weight: 800; font-size: 26px; }
.gauge-note { font-size: 12.5px; color: rgba(255,255,255,.7); font-weight: 600; line-height: 1.5; }
.gauge-note b { color: var(--lime); }

.mini-order { margin-top: auto; background: var(--surface); border: 1.5px solid var(--border); border-radius: 14px; padding: 13px 15px; }
.mini-order .mo-top { display: flex; justify-content: space-between; align-items: center; font-size: 12.5px; font-weight: 800; color: var(--heading); margin-bottom: 5px; }
.mini-order .mo-top span { color: var(--primary); }
.mini-order .mo-sub { font-size: 11.5px; color: var(--muted); margin-bottom: 9px; }
.mini-order .mo-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--whatsapp); color: #fff; font-size: 11px; font-weight: 800;
  padding: 6px 12px; border-radius: 999px;
}
.mini-clock { margin-top: auto; display: flex; flex-direction: column; gap: 8px; }
.mini-clock .mc-row {
  display: flex; align-items: center; gap: 10px;
  background: var(--surface); border: 1px solid var(--border); border-radius: 11px;
  padding: 8px 12px; font-size: 12px; font-weight: 700; color: var(--text);
}
.mini-clock .mc-row span { margin-left: auto; font-size: 10.5px; font-weight: 800; color: var(--warning); background: rgba(255,159,67,.15); padding: 3px 9px; border-radius: 999px; }
.mini-clock .mc-row span.ok { color: var(--success); background: rgba(40,199,111,.15); }

/* Kod kartı (Webhook & API) */
.mini-code {
  margin-top: auto; background: #0D0A1C; border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px; padding: 14px 16px;
  font-family: 'SF Mono', ui-monospace, Menlo, monospace;
  font-size: 11.5px; line-height: 1.75; color: #B8B1D6;
  position: relative; overflow: hidden;
}
.mini-code::before {
  content: '● ● ●'; display: block; color: rgba(255,255,255,.25);
  font-size: 8px; letter-spacing: 3px; margin-bottom: 8px;
}
.mini-code .ck { color: #9E95F5; }
.mini-code .cs { color: #D9F45B; }
.mini-code .cn { color: #4DDFF0; }
.mini-code .cursor { display: inline-block; width: 7px; height: 13px; background: var(--lime); vertical-align: -2px; animation: blink 1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }

/* ---------------- Ticker (dönük lime şerit) ---------------- */
.ticker-wrap { overflow: hidden; padding: 34px 0; }
.ticker {
  background: var(--lime);
  border-top: 2.5px solid var(--ink); border-bottom: 2.5px solid var(--ink);
  transform: rotate(-1.3deg) scale(1.02);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(217,244,91,.25);
}
.ticker-track {
  display: flex; align-items: center; width: max-content;
  animation: marquee 26s linear infinite;
}
.ticker span {
  font-family: var(--font-display); font-weight: 800; font-size: 24px;
  color: var(--ink); padding: 15px 0 15px 30px; white-space: nowrap;
  letter-spacing: -.5px;
}
.ticker b { color: var(--ink); padding-left: 30px; font-size: 20px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------------- Adımlar ---------------- */
.steps-flow { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 20px; align-items: stretch; }
.step-card {
  background: var(--surface); border: 1.5px solid var(--line); border-radius: var(--radius-lg);
  padding: 36px 30px; position: relative;
  box-shadow: 6px 6px 0 rgba(25,19,49,.08);
  transition: transform .25s, box-shadow .25s;
  overflow: hidden;
}
.step-card:hover { transform: translate(-3px,-3px); box-shadow: 10px 10px 0 rgba(25,19,49,.1); }
.step-num {
  font-family: var(--font-display); font-weight: 800;
  font-size: 15px; color: var(--ink);
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--lime); border: 1.5px solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.step-card h3 { font-size: 21px; margin-bottom: 10px; letter-spacing: -.4px; }
.step-card p { font-size: 14.5px; color: var(--muted); }
.step-arrow {
  align-self: center; font-size: 30px; color: var(--heading); font-weight: 800;
  animation: nudge 1.8s ease-in-out infinite;
}
@keyframes nudge { 0%,100% { transform: translateX(0);} 50% { transform: translateX(7px);} }

/* ---------------- Analitik vitrin ---------------- */
.analytics-wrap { display: grid; grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: center; }
.analytics-visual { position: relative; }
.analytics-visual img { border-radius: var(--radius-lg); border: 2px solid var(--line); box-shadow: 12px 12px 0 rgba(25,19,49,.08); }
.check-list li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 10px 0; font-weight: 600; font-size: 16px; color: var(--text);
}
.check-list .chk {
  width: 26px; height: 26px; flex-shrink: 0; margin-top: 1px;
  border-radius: 50%; background: var(--lime); border: 1.5px solid var(--ink); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800;
}

.highlight { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.highlight + .highlight { margin-top: 104px; }
.highlight.reverse .h-visual { order: 2; }
.h-visual img { border-radius: var(--radius-lg); border: 2px solid var(--line); box-shadow: 12px 12px 0 rgba(25,19,49,.08); }
.h-content .section-tag { margin-bottom: 18px; }
.h-content h2 { font-size: clamp(28px, 3.2vw, 40px); font-weight: 800; letter-spacing: -1px; margin-bottom: 18px; }
.h-content > p { color: var(--muted); font-size: 16.5px; margin-bottom: 26px; }

/* ---------------- KPI Bandı ---------------- */
.stats-band { background: var(--ink); padding: 88px 0; position: relative; overflow: hidden; }
.stats-band::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.09) 1.6px, transparent 1.6px);
  background-size: 26px 26px;
}
.stats-band::after {
  content: ''; position: absolute; width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(115,103,240,.4), transparent 70%);
  top: -200px; right: -120px; filter: blur(20px);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px; position: relative; z-index: 1; }
.stat-item { text-align: center; }
.stat-item strong {
  display: block; font-family: var(--font-display);
  font-size: clamp(40px, 4.6vw, 64px); font-weight: 800; color: var(--lime); letter-spacing: -2px;
  line-height: 1.1;
  text-shadow: 0 0 40px rgba(217,244,91,.35);
}
.stat-item span { font-size: 15px; color: rgba(255,255,255,.7); font-weight: 600; }

/* ---------------- Fiyatlandırma ---------------- */
.pricing-toggle {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin-bottom: 56px; font-weight: 700; font-size: 15.5px; color: var(--heading);
}
.pricing-toggle .save-badge {
  background: var(--lime); border: 1.5px solid var(--ink); color: var(--ink);
  padding: 5px 14px; border-radius: 999px; font-size: 12.5px; font-weight: 800;
  transform: rotate(2deg);
}
.switch { position: relative; width: 60px; height: 32px; cursor: pointer; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider { position: absolute; inset: 0; background: rgba(125,115,165,.35); border-radius: 999px; transition: .3s; }
.slider::before {
  content: ''; position: absolute; width: 22px; height: 22px;
  left: 5px; top: 5px; border-radius: 50%; background: #fff; transition: .3s;
  box-shadow: 0 2px 6px rgba(0,0,0,.25);
}
.switch input:checked + .slider { background: var(--primary); }
.switch input:checked + .slider::before { transform: translateX(27px); background: var(--lime); }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
.price-card {
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 44px 36px;
  display: flex; flex-direction: column; position: relative;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  overflow: hidden;
}
.price-card:hover { transform: translateY(-7px); border-color: var(--line); box-shadow: var(--shadow-pop); }
.price-card.featured { background: var(--ink); border-color: var(--ink); }
html[data-theme="dark"] .price-card.featured {
  border-color: var(--primary);
  box-shadow: 0 20px 60px rgba(115,103,240,.25);
}
.price-card.featured h3, .price-card.featured .price-value strong { color: #fff; }
.price-card.featured .plan-desc, .price-card.featured .price-note, .price-card.featured .price-value span { color: rgba(255,255,255,.6); }
.price-card.featured .price-list li { color: rgba(255,255,255,.85); }
.price-card.featured .price-list li.mutedli { color: rgba(255,255,255,.35); }
.popular-badge {
  position: absolute; top: 18px; right: -34px; transform: rotate(35deg);
  background: var(--lime); color: var(--ink);
  padding: 7px 44px;
  font-size: 12px; font-weight: 800; letter-spacing: .5px;
  white-space: nowrap;
}
.price-card h3 { font-size: 23px; font-weight: 800; margin-bottom: 6px; }
.price-card .plan-desc { font-size: 14px; color: var(--muted); margin-bottom: 26px; min-height: 42px; }
.price-value { display: flex; align-items: baseline; gap: 6px; margin-bottom: 6px; }
.price-value strong { font-family: var(--font-display); font-size: 52px; font-weight: 800; color: var(--heading); letter-spacing: -2px; }
.price-value span { color: var(--muted); font-weight: 600; }
.price-note { font-size: 13px; color: var(--muted); margin-bottom: 26px; min-height: 20px; }
.price-limit {
  background: var(--tile-lilac); color: var(--primary);
  border-radius: 12px; padding: 11px 16px;
  font-weight: 800; font-size: 14px; text-align: center; margin-bottom: 28px;
}
.price-card.featured .price-limit { background: var(--lime); color: var(--ink); }
.price-list { flex: 1; margin-bottom: 32px; }
.price-list li {
  display: flex; align-items: flex-start; gap: 11px;
  padding: 8px 0; font-size: 14.5px; font-weight: 600; color: var(--text);
}
.price-list .chk {
  width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px;
  border-radius: 50%; background: var(--lime); border: 1px solid rgba(25,19,49,.35); color: var(--ink);
  display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 800;
}
.price-list li.mutedli { color: var(--muted); opacity: .55; }
.price-list li.mutedli .chk { background: rgba(125,115,165,.15); border-color: transparent; color: var(--muted); }
.price-card .btn { width: 100%; }
.price-card.featured .btn-outline { border-color: var(--lime); color: var(--lime); }
.price-card.featured .btn-outline:hover { background: var(--lime); color: var(--ink); }

/* ---------------- Karşılaştırma tablosu ---------------- */
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1.5px solid var(--line); background: var(--surface); box-shadow: 8px 8px 0 rgba(25,19,49,.07); }
.compare-table { width: 100%; border-collapse: collapse; min-width: 720px; font-size: 15px; }
.compare-table th, .compare-table td { padding: 16px 22px; text-align: center; border-bottom: 1px solid var(--border); }
.compare-table th:first-child, .compare-table td:first-child { text-align: left; font-weight: 700; color: var(--heading); }
.compare-table thead th { background: var(--surface-2); font-family: var(--font-display); font-weight: 800; color: var(--heading); font-size: 16px; }
.compare-table thead th.hl { background: var(--ink); color: var(--lime); }
.compare-table tbody tr { transition: background .15s; }
.compare-table tbody tr:hover { background: var(--surface-2); }
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table .yes { color: var(--success); font-weight: 800; font-size: 17px; }
.compare-table .no { color: var(--muted); opacity: .4; font-weight: 800; font-size: 17px; }
.compare-table .sect td { background: var(--tile-lilac); font-weight: 800; color: var(--primary); font-size: 12.5px; text-transform: uppercase; letter-spacing: 1px; }

/* ---------------- Yorumlar ---------------- */
.testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.testi-card {
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px;
  position: relative; overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.testi-card::before {
  content: '“'; position: absolute; top: 14px; right: 26px;
  font-family: var(--font-display); font-size: 90px; font-weight: 800;
  color: var(--tile-lilac); line-height: 1;
}
.testi-card:hover { transform: translateY(-6px); border-color: var(--line); box-shadow: var(--shadow-pop); }
.stars { color: #FFB400; font-size: 16px; letter-spacing: 3px; margin-bottom: 16px; }
.testi-card > p { font-size: 15.5px; color: var(--text); margin-bottom: 26px; position: relative; z-index: 1; }
.testi-user { display: flex; align-items: center; gap: 14px; }
.avatar {
  width: 50px; height: 50px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 16px; color: #fff; flex-shrink: 0;
}
.av-1 { background: var(--primary); }
.av-2 { background: #28C76F; }
.av-3 { background: #FF9F43; }
.av-4 { background: #00CFE8; }
.testi-user strong { display: block; color: var(--heading); font-size: 15.5px; font-weight: 700; }
.testi-user span { font-size: 13.5px; color: var(--muted); }

/* ---------------- SSS / Akordiyon ---------------- */
.accordion { max-width: 840px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.acc-item {
  background: var(--surface); border: 1.5px solid var(--border); border-radius: 18px;
  overflow: hidden; transition: border-color .25s, box-shadow .25s;
}
.acc-item.open { border-color: var(--line); box-shadow: 6px 6px 0 rgba(25,19,49,.07); }
.acc-head {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 22px 28px; background: none; border: none; cursor: pointer;
  font-family: var(--font-display); font-size: 17.5px; font-weight: 700; color: var(--heading); text-align: left;
}
.acc-head .acc-ic {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  background: var(--lime); border: 1.5px solid var(--ink); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; font-weight: 800; transition: transform .3s;
}
.acc-item.open .acc-ic { transform: rotate(45deg); background: var(--ink); color: var(--lime); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.acc-body p { padding: 0 28px 24px; color: var(--muted); font-size: 15.5px; }

/* ---------------- CTA Bandı ---------------- */
.cta-band {
  background: var(--ink); border-radius: 32px;
  padding: 60px 56px; text-align: center; position: relative; overflow: hidden;
}
/* Kompakt split CTA: solda mesaj + güven işaretleri, sağda aksiyonlar */
.cta-band.cta-split { text-align: left; padding: 54px 56px; }
.cta-inner { display: grid; grid-template-columns: 1.35fr auto; gap: 44px; align-items: center; position: relative; z-index: 1; }
.cta-split h2 { font-size: clamp(26px, 3vw, 40px); margin-bottom: 12px; }
.cta-split p { margin: 0 0 20px; max-width: 560px; }
.cta-trust { display: flex; gap: 22px; flex-wrap: wrap; font-size: 13.5px; color: rgba(255,255,255,.78); font-weight: 700; }
.cta-trust span { display: inline-flex; gap: 7px; align-items: center; }
.cta-trust .tick {
  width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0;
  background: var(--lime); color: var(--ink); font-size: 11px; font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center;
}
.cta-actions { display: flex; flex-direction: column; gap: 12px; min-width: 240px; }
.cta-actions .btn { width: 100%; }
.cta-note { font-size: 12px; color: rgba(255,255,255,.55); text-align: center; margin: 0; }
@media (max-width: 900px) {
  .cta-inner { grid-template-columns: 1fr; gap: 28px; }
  .cta-actions { min-width: 0; }
}
html[data-theme="dark"] .cta-band { border: 1.5px solid var(--border); box-shadow: 0 30px 80px rgba(115,103,240,.2); }
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.08) 1.6px, transparent 1.6px);
  background-size: 26px 26px;
}
.cta-band::after {
  content: ''; position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(115,103,240,.45), transparent 70%);
  bottom: -260px; left: 50%; transform: translateX(-50%); filter: blur(20px);
}
.cta-bub {
  position: absolute; padding: 11px 18px; border-radius: 16px;
  font-size: 13.5px; font-weight: 700; z-index: 1;
  animation: floaty 6s ease-in-out infinite;
}
.cta-bub.b-lime { background: var(--lime); color: var(--ink); border-bottom-left-radius: 4px; top: 56px; left: 7%; transform: rotate(-5deg); }
.cta-bub.b-white { background: #fff; color: var(--ink); border-bottom-right-radius: 4px; bottom: 62px; right: 7%; transform: rotate(4deg); animation-delay: 1.5s; }
.cta-band h2 {
  color: #fff; font-size: clamp(32px, 4.2vw, 56px); font-weight: 800; letter-spacing: -1.5px;
  margin-bottom: 18px; position: relative; z-index: 1;
}
.cta-band h2 .marker { color: var(--ink); }
.cta-band p { color: rgba(255,255,255,.72); font-size: 17.5px; max-width: 560px; margin: 0 auto 38px; position: relative; z-index: 1; }
.cta-band .hero-actions { justify-content: center; margin-bottom: 0; position: relative; z-index: 1; }

/* ---------------- Alt Sayfa Hero ---------------- */
.page-hero {
  padding: 72px 0 76px; text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 90% at 50% 0%, black 20%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 80% 90% at 50% 0%, black 20%, transparent 72%);
  opacity: .5;
}
.page-hero::after {
  content: ''; position: absolute; width: 300px; height: 200px; right: 3%; top: 30px; opacity: .25;
  background-image: radial-gradient(var(--primary) 2.2px, transparent 2.2px);
  background-size: 22px 22px;
}
.page-hero h1 { font-size: clamp(36px, 4.6vw, 60px); font-weight: 800; letter-spacing: -2px; margin-bottom: 18px; position: relative; z-index: 1; }
.page-hero p { color: var(--muted); font-size: 18px; max-width: 660px; margin: 0 auto; position: relative; z-index: 1; }
.breadcrumb { font-size: 14px; font-weight: 700; color: var(--muted); margin-bottom: 20px; position: relative; z-index: 1; }
.breadcrumb a { color: var(--primary); }

/* ---------------- Özellik kartları ---------------- */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.feature-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.feature-card {
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 34px 30px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative; overflow: hidden;
}
.feature-card:hover { transform: translateY(-7px); border-color: var(--line); box-shadow: var(--shadow-pop); }
.feature-icon {
  width: 58px; height: 58px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 25px; margin-bottom: 22px;
  background: var(--tile-lilac);
  transition: transform .25s;
}
.feature-card:hover .feature-icon { transform: rotate(-6deg) scale(1.08); }
.feature-icon.ic-green { background: rgba(40,199,111,.15); }
.feature-icon.ic-orange { background: rgba(255,159,67,.15); }
.feature-icon.ic-cyan { background: rgba(0,207,232,.13); }
.feature-icon.ic-red { background: rgba(234,84,85,.13); }
.feature-icon.ic-wa { background: rgba(37,211,102,.14); }
.feature-card h3 { font-size: 19.5px; font-weight: 800; margin-bottom: 12px; letter-spacing: -.3px; }
.feature-card p { font-size: 14.5px; color: var(--muted); }
.feature-card .badge-plan {
  position: absolute; top: 22px; right: 22px;
  font-size: 11px; font-weight: 800; letter-spacing: .5px;
  padding: 5px 12px; border-radius: 999px;
  background: var(--lime); border: 1px solid rgba(25,19,49,.3); color: var(--ink);
  transform: rotate(2deg);
}

.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.steps-grid .step-card { text-align: left; }

/* ---------------- Entegrasyon kartları ---------------- */
.int-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.int-card {
  background: var(--surface); border: 1.5px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px 26px; text-align: center;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.int-card:hover { transform: translateY(-7px) rotate(-.5deg); border-color: var(--line); box-shadow: var(--shadow-pop); }
.int-logo {
  width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 25px; font-weight: 800; color: #fff;
  transition: transform .25s;
}
.int-card:hover .int-logo { transform: rotate(-8deg) scale(1.1); }
.int-card h3 { font-size: 17.5px; font-weight: 800; margin-bottom: 8px; }
.int-card p { font-size: 13.5px; color: var(--muted); }
.il-1 { background: var(--primary); }
.il-2 { background: #00CFE8; }
.il-3 { background: #FF9F43; }
.il-4 { background: #28C76F; }
.il-5 { background: #EA5455; }
.il-6 { background: var(--ink); }
html[data-theme="dark"] .il-6 { background: #3A3060; }
.il-7 { background: var(--whatsapp); }

/* ---------------- İletişim ---------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 44px; align-items: start; }
.contact-info-card {
  background: var(--ink); border-radius: var(--radius-lg);
  padding: 46px 40px; color: #fff; position: sticky; top: calc(var(--header-h) + 20px);
  overflow: hidden;
}
html[data-theme="dark"] .contact-info-card { border: 1.5px solid var(--border); }
.contact-info-card::after {
  content: ''; position: absolute; width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, rgba(115,103,240,.45), transparent 70%);
  bottom: -90px; right: -70px;
}
.contact-info-card h3 { color: #fff; font-size: 26px; font-weight: 800; margin-bottom: 12px; }
.contact-info-card > p { color: rgba(255,255,255,.7); font-size: 15px; margin-bottom: 32px; }
.ci-item { display: flex; gap: 16px; align-items: flex-start; padding: 15px 0; border-top: 1px solid rgba(255,255,255,.14); position: relative; z-index: 1; }
.ci-item .ci-ic {
  width: 44px; height: 44px; border-radius: 13px; flex-shrink: 0;
  background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; font-size: 19px;
}
.ci-item strong { display: block; font-size: 15px; margin-bottom: 2px; }
.ci-item span { font-size: 14px; color: rgba(255,255,255,.68); }

.contact-form-card {
  background: var(--surface); border: 1.5px solid var(--line); border-radius: var(--radius-lg);
  padding: 46px 42px; box-shadow: 10px 10px 0 rgba(25,19,49,.07);
}
.contact-form-card h3 { font-size: 26px; font-weight: 800; margin-bottom: 8px; }
.contact-form-card > p { color: var(--muted); font-size: 15px; margin-bottom: 30px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 14px; font-weight: 700; color: var(--heading); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 17px; border-radius: 13px;
  border: 1.5px solid var(--border); font-family: inherit; font-size: 15px;
  color: var(--heading); background: var(--bg); transition: border-color .2s, box-shadow .2s, background .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--primary); background: var(--surface);
  box-shadow: 0 0 0 4px rgba(115,103,240,.18);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-alert { padding: 15px 20px; border-radius: 14px; font-weight: 700; font-size: 14.5px; margin-bottom: 22px; }
.form-alert.ok { background: rgba(40,199,111,.14); color: var(--success); border: 1.5px solid var(--success); }
.form-alert.err { background: rgba(234,84,85,.12); color: var(--danger); border: 1.5px solid var(--danger); }

.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

/* ---------------- Footer ---------------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.7); padding: 84px 0 0; position: relative; overflow: hidden; }
html[data-theme="dark"] .site-footer { border-top: 1.5px solid var(--border); }
.site-footer::before {
  content: 'Flowoy';
  position: absolute; bottom: -30px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(90px, 14vw, 220px); letter-spacing: -6px;
  color: rgba(255,255,255,.04); white-space: nowrap; pointer-events: none;
  line-height: 1;
}
/* Bülten şeridi */
.footer-news {
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px; padding: 28px 34px; margin-bottom: 56px;
  position: relative; z-index: 1;
}
.footer-news strong { display: block; font-family: var(--font-display); color: #fff; font-size: 19px; margin-bottom: 4px; }
.footer-news span { font-size: 13.5px; color: rgba(255,255,255,.6); }
.fn-form { display: flex; gap: 10px; flex-wrap: wrap; }
.fn-form input {
  min-width: 260px; padding: 14px 20px; border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,.2); background: rgba(255,255,255,.06);
  color: #fff; font-family: inherit; font-size: 14px;
}
.fn-form input::placeholder { color: rgba(255,255,255,.45); }
.fn-form input:focus { outline: none; border-color: var(--lime); }
.f-chips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 22px; }
.f-chip {
  font-size: 11.5px; font-weight: 700; color: rgba(255,255,255,.8);
  border: 1px solid rgba(255,255,255,.18); border-radius: 999px; padding: 6px 13px;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1.15fr; gap: 40px; padding-bottom: 60px; position: relative; z-index: 1; }
.footer-brand .logo { color: #fff; margin-bottom: 18px; }
.footer-brand .logo strong { color: var(--lime); }
.footer-brand p { font-size: 14.5px; max-width: 300px; margin-bottom: 24px; }
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  display: flex; align-items: center; justify-content: center;
  transition: all .25s; font-size: 15px; font-weight: 700;
}
.social-links a:hover { background: var(--lime); color: var(--ink); transform: translateY(-3px) rotate(-6deg); }
.footer-col h4 { font-family: var(--font-display); color: #fff; font-size: 16.5px; margin-bottom: 20px; }
.footer-col li { margin-bottom: 11px; }
.footer-col a { font-size: 14.5px; transition: color .2s, padding-left .2s; }
.footer-col a:hover { color: var(--lime); padding-left: 5px; }
.footer-col .ci-line { display: flex; gap: 10px; font-size: 14.5px; margin-bottom: 13px; align-items: flex-start; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 26px 0 30px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  font-size: 13.5px; position: relative; z-index: 1;
}
.footer-bottom a { color: rgba(255,255,255,.7); }
.footer-bottom a:hover { color: var(--lime); }

/* ---------------- Scroll Reveal ---------------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }

/* WhatsApp balonu gibi "pat" diye beliren varyant */
.reveal-bubble {
  opacity: 0; transform: translateY(26px) scale(.9); transform-origin: bottom left;
  transition: opacity .55s ease, transform .6s cubic-bezier(.34, 1.56, .64, 1);
}
.reveal-bubble.visible { opacity: 1; transform: translateY(0) scale(1); }

/* Bölüm başlıkları: rozet → başlık → paragraf sırayla balonlanır */
.section-head.reveal .section-tag,
.section-head.reveal h2,
.section-head.reveal p {
  opacity: 0; transform: translateY(20px) scale(.93); transform-origin: bottom left;
  transition: opacity .5s ease, transform .6s cubic-bezier(.34, 1.56, .64, 1);
}
.section-head.reveal.visible .section-tag { opacity: 1; transform: none; }
.section-head.reveal.visible h2 { opacity: 1; transform: none; transition-delay: .12s; }
.section-head.reveal.visible p { opacity: 1; transform: none; transition-delay: .24s; }

/* Check-list maddeleri: teker teker, mesaj gelir gibi */
.reveal .check-list li { opacity: 0; transform: translateY(14px) scale(.94); transform-origin: bottom left; }
.reveal.visible .check-list li {
  animation: bubblePop .55s cubic-bezier(.34, 1.56, .64, 1) forwards;
}
.reveal.visible .check-list li:nth-child(1) { animation-delay: .15s; }
.reveal.visible .check-list li:nth-child(2) { animation-delay: .3s; }
.reveal.visible .check-list li:nth-child(3) { animation-delay: .45s; }
.reveal.visible .check-list li:nth-child(4) { animation-delay: .6s; }
.reveal.visible .check-list li:nth-child(5) { animation-delay: .75s; }
@keyframes bubblePop { to { opacity: 1; transform: translateY(0) scale(1); } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .marker::after { transform: skew(-8deg) rotate(-1deg) scaleX(1); }
}

:focus-visible { outline: 3px solid var(--primary); outline-offset: 3px; border-radius: 6px; }

/* ---------------- Responsive ---------------- */
@media (max-width: 1330px) {
  .nav-links { gap: 0; }
  .nav-links a, .nav-links .nav-btn { font-size: 14.5px; padding: 9px 12px; }
  .logo { font-size: 22px; }
}

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-stage { max-width: 520px; margin: 0 auto; }
  .bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 215px; }
  .analytics-wrap { grid-template-columns: 1fr; gap: 44px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .int-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-flow { grid-template-columns: 1fr; }
  .step-arrow { transform: rotate(90deg); justify-self: center; animation: none; }
}

@media (max-width: 900px) {
  :root { --header-h: 62px; }
  /* Tam sayfa mobil menü */
  .nav-links {
    position: fixed; top: var(--header-h); left: 0; right: 0;
    height: calc(100dvh - var(--header-h)); overflow-y: auto;
    background: var(--bg); flex-direction: column; align-items: stretch;
    padding: 22px 22px 44px; gap: 4px;
    transform: translateX(105%); transition: transform .35s cubic-bezier(.2,.8,.2,1);
    z-index: 250; margin: 0;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-item { width: 100%; }
  .nav-links a, .nav-links .nav-btn {
    width: 100%; justify-content: space-between;
    padding: 15px 16px; font-size: 18px; font-weight: 700;
    border-radius: 14px; border-bottom: 1px solid var(--border);
  }
  .nav-links > a:last-of-type { border-bottom: none; }
  /* Menü içi aksiyon butonları */
  .nav-mobile-cta {
    display: flex; flex-direction: column; gap: 12px;
    margin-top: 22px; padding-top: 22px; border-top: 1.5px solid var(--border);
  }
  .nav-mobile-cta .btn { width: 100%; border-bottom: none; }
  /* Alt menüler: sığan, sade akordiyon */
  .mega-panel, .drop-panel {
    position: static; transform: none; width: 100%;
    opacity: 1; visibility: hidden; pointer-events: auto;
    box-shadow: none; border: none; border-radius: 0;
    padding: 0; display: none; overflow: visible; background: transparent;
  }
  .mega-panel::before, .drop-panel::before { display: none; }
  /* Masaüstü açılma kuralındaki translateX(-50%) mobilde kaymaya yol açıyor — sıfırla */
  .nav-item.open > .mega-panel, .nav-item.open > .drop-panel,
  .nav-item:focus-within > .mega-panel, .nav-item:focus-within > .drop-panel {
    display: block; visibility: visible;
    transform: none !important;
    position: static; width: 100%;
  }
  .mega-grid { grid-template-columns: 1fr; gap: 6px; padding: 8px 4px 16px; }
  .mega-col h5 { margin: 14px 0 6px; font-size: 11px; }
  .mega-link {
    opacity: 1; translate: 0 0; margin: 0; padding: 10px 8px;
    border-bottom: none !important;
    justify-content: flex-start; gap: 13px;
  }
  .mega-link > span:last-child { flex: 1; text-align: left; }
  .mega-link::after { display: none; }
  .mega-ic { width: 34px; height: 34px; border-radius: 10px; }
  .mega-ic svg { width: 16px; height: 16px; }
  .mega-link strong { font-size: 15px; border: none; }
  .mega-link > span:last-child span { font-size: 12px; }
  .drop-panel { padding: 4px 4px 12px; }
  .drop-panel a { border-bottom: none; font-size: 16px; padding: 11px 12px; }
  .mega-promo, .mega-foot { display: none; }
  .nav-toggle { display: flex; }
  .header-cta .link-login { display: none; }
  .header-cta .btn { display: none; }
  .lang-toggle { padding: 8px 12px; }
  /* Mobil footer: başlıklar akordiyon, varsayılan kapalı */
  .footer-col h4 {
    cursor: pointer; display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 8px; padding: 6px 0;
  }
  .footer-col h4::after { content: '+'; font-size: 20px; color: var(--lime); transition: transform .25s; }
  .footer-col.open h4::after { transform: rotate(45deg); }
  .footer-col > :not(h4) { display: none; }
  .footer-col.open > :not(h4) { display: block; }
  .footer-col.open .ci-line { display: flex; }
  .highlight { grid-template-columns: 1fr; gap: 36px; }
  .highlight.reverse .h-visual { order: 0; }
  .steps-grid, .pricing-grid, .testi-grid, .value-grid, .feature-grid.cols-3 { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
  .section { padding: 72px 0; }
  .cta-band { padding: 60px 30px; }
  .cta-bub { display: none; }
  .sticker { padding: 9px 13px; font-size: 12px; }
  .sticker .big { font-size: 17px; }
  .st-1 { left: -6px; } .st-2 { right: -8px; } .st-3 { left: -2px; }
  .ticker span { font-size: 19px; }
}

@media (max-width: 560px) {
  .feature-grid, .int-grid, .stats-grid, .form-row, .bento { grid-template-columns: 1fr; }
  .bento-big, .bento-wide { grid-column: span 1; }
  .bento { grid-auto-rows: auto; }
  .bento-tile { min-height: 200px; }
  .hero { padding: 44px 0 72px; }
  .hero h1 { letter-spacing: -1.2px; }
  .marquee-track { gap: 44px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .st-1, .st-3 { display: none; }
}

/* ============================================================
   Özellik Detay Sayfaları (feature-page.php şablonu)
   ============================================================ */
.feature-hero { position: relative; overflow: hidden; padding: 60px 0 88px; }
.feature-hero::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 75% at 50% 0%, black 25%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 75% at 50% 0%, black 25%, transparent 75%);
  opacity: .5;
}
.fh-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; position: relative; z-index: 1; }
.fh-content .breadcrumb { text-align: left; }
.chip-cat {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--tile-lilac); color: var(--primary);
  padding: 8px 18px; border-radius: 999px;
  font-size: 12.5px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 22px;
}
.fh-content h1 { font-size: clamp(38px, 4.4vw, 58px); font-weight: 800; letter-spacing: -2px; margin-bottom: 22px; }
.fh-content .lead { font-size: 17.5px; color: var(--muted); max-width: 540px; margin-bottom: 34px; }
.fh-content .hero-actions { margin-bottom: 0; }

.stat-chips { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 36px; }
.stat-chip {
  background: var(--surface); border: 2px solid var(--line); border-radius: 16px;
  padding: 12px 20px; box-shadow: 4px 4px 0 rgba(25,19,49,.1);
  transition: transform .2s;
}
.stat-chip:hover { transform: translateY(-4px) rotate(-1deg); }
.stat-chip b { display: block; font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--heading); line-height: 1.15; }
.stat-chip span { font-size: 12px; font-weight: 600; color: var(--muted); }
.stat-chip.lime { background: var(--lime); }
.stat-chip.lime b, .stat-chip.lime span { color: var(--ink); }

.fh-visual { position: relative; display: flex; justify-content: center; }
.visual-card {
  width: min(430px, 100%);
  background: var(--surface); border: 2px solid var(--line);
  border-radius: 28px; padding: 26px;
  box-shadow: 12px 12px 0 rgba(25,19,49,.09);
  position: relative;
  animation: floaty 7s ease-in-out infinite;
}
.visual-card.on-ink { background: var(--ink); border-color: var(--ink); }
html[data-theme="dark"] .visual-card.on-ink { border-color: var(--primary); box-shadow: 0 24px 70px rgba(115,103,240,.3); }
.visual-card h4 { font-size: 15px; font-weight: 800; margin-bottom: 16px; color: var(--heading); display: flex; align-items: center; gap: 9px; }
.visual-card.on-ink h4 { color: #fff; }
.visual-card .mini-chat, .visual-card .mini-clock, .visual-card .mini-progress,
.visual-card .mini-order, .visual-card .mini-bars, .visual-card .mini-code, .visual-card .gauge-wrap { margin-top: 0; }
.visual-card .mini-bars { height: 130px; }
.fh-sticker { position: absolute; bottom: -18px; right: -10px; z-index: 3; }
.fh-sticker .sticker { position: static; display: inline-flex; }

/* Erp / platform çipleri */
.chip-rows { display: flex; flex-direction: column; gap: 10px; }
.chip-row {
  display: flex; align-items: center; gap: 12px;
  background: var(--bg); border: 1.5px solid var(--border); border-radius: 13px;
  padding: 11px 14px; font-size: 13.5px; font-weight: 700; color: var(--heading);
}
.chip-row .cr-ic {
  width: 34px; height: 34px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 14px; color: #fff;
}
.chip-row .ok-badge { margin-left: auto; font-size: 10.5px; font-weight: 800; color: var(--success); background: rgba(40,199,111,.14); padding: 4px 10px; border-radius: 999px; }

/* İlgili özellikler */
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.related-card {
  display: flex; align-items: flex-start; gap: 15px;
  background: var(--surface); border: 1.5px solid var(--border); border-radius: 20px;
  padding: 24px; transition: transform .22s, border-color .22s, box-shadow .22s;
  position: relative; overflow: hidden;
}
.related-card:hover { transform: translateY(-5px); border-color: var(--line); box-shadow: var(--shadow-pop); }
.related-card .rc-emoji {
  width: 46px; height: 46px; border-radius: 13px; flex-shrink: 0;
  background: var(--tile-lilac); display: flex; align-items: center; justify-content: center; font-size: 20px;
  transition: transform .25s;
}
.related-card:hover .rc-emoji { transform: rotate(-8deg) scale(1.1); }
.related-card strong { display: block; font-family: var(--font-display); font-size: 16px; color: var(--heading); margin-bottom: 3px; }
.related-card span { font-size: 13px; color: var(--muted); line-height: 1.5; display: block; }
.related-card .rc-arrow {
  position: absolute; right: 20px; top: 24px; font-weight: 800; color: var(--primary);
  opacity: 0; translate: -8px 0; transition: opacity .2s, translate .2s;
}
.related-card:hover .rc-arrow { opacity: 1; translate: 0 0; }

/* Özellik hub grid (ozellikler.php üstü) */
.hub-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

@media (max-width: 1024px) {
  .fh-inner { grid-template-columns: 1fr; gap: 48px; }
  .related-grid { grid-template-columns: 1fr; }
  .hub-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .hub-grid { grid-template-columns: 1fr; }
  .feature-hero { padding: 40px 0 64px; }
}

/* ============================================================
   Öncesi/Sonrası, Alıntı bandı, Blog
   ============================================================ */
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; }
.ba-card { border-radius: var(--radius-lg); padding: 38px 34px; border: 1.5px solid var(--border); background: var(--surface); }
.ba-card h3 { font-size: 20px; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.ba-card li { display: flex; gap: 12px; align-items: flex-start; padding: 8px 0; font-size: 15px; font-weight: 600; color: var(--text); }
.ba-card .bx {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0; margin-top: 2px;
  display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 800;
}
.ba-bad .bx { background: rgba(234,84,85,.14); color: var(--danger); }
.ba-good { background: var(--ink); border-color: var(--ink); }
html[data-theme="dark"] .ba-good { border-color: var(--primary); }
.ba-good h3 { color: #fff; }
.ba-good li { color: rgba(255,255,255,.85); }
.ba-good .bx { background: var(--lime); color: var(--ink); }

.quote-band { padding: 84px 0; background: var(--tile-lilac); position: relative; overflow: hidden; }
.quote-band::before {
  content: '“'; position: absolute; top: -40px; left: 4%;
  font-family: var(--font-display); font-size: 300px; font-weight: 800;
  color: rgba(115,103,240,.14); line-height: 1;
}
.quote-band blockquote {
  max-width: 860px; margin: 0 auto; text-align: center; position: relative; z-index: 1;
  font-family: var(--font-display); font-size: clamp(21px, 2.6vw, 30px); font-weight: 700;
  color: var(--heading); line-height: 1.4; letter-spacing: -.5px;
}
.quote-band .q-author { text-align: center; margin-top: 24px; font-size: 14.5px; font-weight: 700; color: var(--muted); }
.quote-band .q-author b { color: var(--primary); }

/* ---------------- Blog ---------------- */
.cat-chips { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 48px; }
.cat-chip {
  padding: 9px 20px; border-radius: 999px; font-size: 13.5px; font-weight: 700;
  border: 1.5px solid var(--border); color: var(--text); background: var(--surface);
  transition: all .2s; cursor: pointer;
}
.cat-chip:hover, .cat-chip.active { border-color: var(--ink); background: var(--ink); color: #fff; }

.post-featured {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 0; overflow: hidden;
  border: 2px solid var(--line); border-radius: var(--radius-lg);
  background: var(--surface); box-shadow: 10px 10px 0 rgba(25,19,49,.07);
  margin-bottom: 56px; transition: transform .25s;
}
.post-featured:hover { transform: translateY(-5px); }
.post-featured .pf-body { padding: 46px 44px; display: flex; flex-direction: column; }
.post-featured .pf-cover { min-height: 340px; }

.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post-card {
  background: var(--surface); border: 1.5px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.post-card:hover { transform: translateY(-7px); border-color: var(--line); box-shadow: var(--shadow-pop); }
.post-cover {
  height: 190px; display: flex; align-items: center; justify-content: center;
  font-size: 58px; position: relative; overflow: hidden;
}
.post-cover::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.16) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
}
.pc-purple { background: linear-gradient(135deg, #7367F0, #9E95F5); }
.pc-ink    { background: linear-gradient(135deg, #191331, #3A3060); }
.pc-lime   { background: linear-gradient(135deg, #b8d43e, #D9F45B); }
.pc-green  { background: linear-gradient(135deg, #1fa757, #25D366); }
.pc-orange { background: linear-gradient(135deg, #F08A2C, #FFB976); }
.pc-cyan   { background: linear-gradient(135deg, #00AEC4, #4DDFF0); }
.post-body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.post-meta { display: flex; align-items: center; gap: 10px; font-size: 12.5px; font-weight: 700; color: var(--muted); margin-bottom: 12px; flex-wrap: wrap; }
.post-meta .pm-cat { background: var(--tile-lilac); color: var(--primary); padding: 4px 12px; border-radius: 999px; font-weight: 800; }
.post-card h3, .post-featured h2 { font-size: 19px; line-height: 1.35; margin-bottom: 10px; letter-spacing: -.3px; }
.post-featured h2 { font-size: clamp(24px, 2.4vw, 34px); }
.post-card p, .post-featured .pf-body > p { font-size: 14px; color: var(--muted); line-height: 1.6; flex: 1; margin-bottom: 18px; }
.post-link { font-weight: 800; font-size: 14px; color: var(--primary); display: inline-flex; align-items: center; gap: 7px; }
.post-link::after { content: '→'; transition: translate .2s; }
.post-card:hover .post-link::after, .post-featured:hover .post-link::after { translate: 5px 0; }

/* Makale sayfası */
.article-hero { padding: 56px 0 40px; text-align: center; position: relative; }
.article-hero h1 { font-size: clamp(30px, 3.8vw, 48px); font-weight: 800; letter-spacing: -1.5px; max-width: 860px; margin: 0 auto 20px; }
.article-hero .post-meta { justify-content: center; }
.article-wrap { max-width: 780px; margin: 0 auto; }
.tldr {
  background: var(--tile-lime); border: 2px solid var(--ink); border-radius: 20px;
  padding: 26px 30px; margin: 0 0 44px;
  box-shadow: 6px 6px 0 rgba(25,19,49,.1);
}
html[data-theme="dark"] .tldr { border-color: var(--lime); box-shadow: none; }
.tldr strong { font-family: var(--font-display); font-size: 16px; color: var(--heading); display: block; margin-bottom: 10px; }
.tldr ul { margin: 0; }
.tldr li { position: relative; padding: 4px 0 4px 24px; font-size: 14.5px; font-weight: 600; color: var(--text); }
.tldr li::before { content: '✦'; position: absolute; left: 0; top: 4px; color: var(--primary); font-weight: 800; }
.post-content { font-size: 16.5px; line-height: 1.85; color: var(--text); }
.post-content h2 {
  font-size: clamp(24px, 2.6vw, 32px); margin: 52px 0 18px; letter-spacing: -.8px;
  scroll-margin-top: calc(var(--header-h) + 16px);
}
.post-content h3 { font-size: 20px; margin: 36px 0 14px; }
.post-content p { margin-bottom: 18px; }
.post-content ul, .post-content ol { margin: 0 0 20px 22px; }
.post-content ul { list-style: disc; }
.post-content ol { list-style: decimal; }
.post-content li { margin-bottom: 8px; }
.post-content a { color: var(--primary); font-weight: 700; }
.post-content a:hover { text-decoration: underline; }
.post-content strong { color: var(--heading); }
.post-content .table-wrap { margin: 26px 0; }
.post-content blockquote {
  border-left: 4px solid var(--lime); background: var(--surface-2);
  padding: 18px 24px; border-radius: 0 14px 14px 0; margin: 26px 0;
  font-weight: 600; color: var(--heading);
}
.stat-callout {
  display: flex; gap: 18px; align-items: center;
  background: var(--ink); color: #fff; border-radius: 18px; padding: 22px 28px; margin: 26px 0;
}
.stat-callout b { font-family: var(--font-display); font-size: 38px; color: var(--lime); letter-spacing: -1px; flex-shrink: 0; }
.stat-callout span { font-size: 14.5px; color: rgba(255,255,255,.85); font-weight: 600; }
.article-cta {
  background: var(--tile-lilac); border-radius: 20px; padding: 30px 34px; margin: 44px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.article-cta strong { font-family: var(--font-display); font-size: 18px; color: var(--heading); display: block; margin-bottom: 4px; }
.article-cta span { font-size: 14px; color: var(--muted); }

@media (max-width: 1024px) {
  .post-grid { grid-template-columns: repeat(2, 1fr); }
  .post-featured { grid-template-columns: 1fr; }
  .post-featured .pf-cover { min-height: 220px; order: -1; }
}
@media (max-width: 900px) {
  .ba-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .post-grid { grid-template-columns: 1fr; }
  .article-cta { flex-direction: column; align-items: flex-start; }
}

/* ---------------- Yasal sayfalar ---------------- */
.legal-toc { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 46px; }
.legal-toc a {
  padding: 9px 17px; border-radius: 999px; font-size: 13px; font-weight: 700;
  border: 1.5px solid var(--border); color: var(--text); background: var(--surface);
  transition: all .2s;
}
.legal-toc a:hover { border-color: var(--ink); background: var(--ink); color: #fff; }
.post-content h2[id] { scroll-margin-top: calc(var(--header-h) + 20px); }
.legal-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(40,199,111,.12); color: #1d9d55; border: 1.5px solid #1d9d55;
  border-radius: 999px; padding: 7px 16px; font-size: 13px; font-weight: 800;
  margin: 0 8px 8px 0;
}
.legal-badge.red { background: rgba(234,84,85,.1); color: var(--danger); border-color: var(--danger); }

/* ---------------- Yasal sayfalar: geniş kurumsal düzen ---------------- */
.legal-wrap { max-width: 1020px; margin: 0 auto; }
.legal-wrap .tldr { padding: 34px 40px; margin-bottom: 44px; }
.legal-wrap .tldr strong { font-size: 18px; margin-bottom: 14px; }
.legal-wrap .tldr li { padding: 7px 0 7px 26px; font-size: 15.5px; line-height: 1.65; }
.legal-wrap .tldr li::before { top: 7px; }
.legal-wrap .legal-toc { margin-bottom: 60px; gap: 12px; }
.legal-wrap .legal-toc a { padding: 11px 20px; font-size: 14px; }
.legal-wrap .post-content { font-size: 16.5px; line-height: 1.9; }
.legal-wrap .post-content > p:first-child { font-size: 17.5px; color: var(--heading); }
.legal-wrap .post-content h2 {
  margin: 76px 0 26px; padding-bottom: 16px;
  border-bottom: 1.5px solid var(--border);
  font-size: clamp(23px, 2.5vw, 30px); letter-spacing: -.6px;
}
.legal-wrap .post-content h2:first-of-type { margin-top: 44px; }
.legal-wrap .post-content p { margin-bottom: 22px; }
.legal-wrap .post-content ul, .legal-wrap .post-content ol { margin: 0 0 28px 24px; }
.legal-wrap .post-content li { margin-bottom: 13px; line-height: 1.8; }
.legal-wrap .post-content blockquote {
  padding: 28px 34px; margin: 36px 0;
  font-size: 16.5px; line-height: 1.8; font-weight: 500;
  border-left-width: 5px; border-radius: 0 18px 18px 0;
}
.legal-wrap .table-wrap { margin: 32px 0 18px; }
.legal-wrap .compare-table { min-width: 860px; font-size: 15px; }
.legal-wrap .compare-table th, .legal-wrap .compare-table td { padding: 18px 26px; line-height: 1.6; }
.legal-wrap .compare-table th:nth-child(3), .legal-wrap .compare-table td:nth-child(3) { text-align: left; }
.legal-wrap .compare-table td:nth-child(2) { white-space: nowrap; }
.legal-wrap .compare-table .sect td { padding: 14px 26px; font-size: 13px; }
.legal-wrap .article-cta { padding: 38px 44px; margin-top: 64px; }
@media (max-width: 900px) {
  .legal-wrap .post-content h2 { margin: 52px 0 20px; }
  .legal-wrap .tldr { padding: 26px 24px; }
}

/* ---------------- Blog v2: manşet slider + sidebar ---------------- */
.featured-slider { position: relative; margin-bottom: 60px; }
.fs-track {
  display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; -ms-overflow-style: none; scroll-behavior: smooth;
  padding-bottom: 6px;
}
.fs-track::-webkit-scrollbar { display: none; }
.fs-track .post-featured { min-width: 100%; scroll-snap-align: start; margin-bottom: 0; }
.fs-dots { display: flex; justify-content: center; gap: 9px; margin-top: 20px; }
.fs-dot {
  width: 10px; height: 10px; border-radius: 999px; border: none; cursor: pointer;
  background: var(--border); transition: all .3s; padding: 0;
}
.fs-dot.active { background: var(--primary); width: 30px; }

.post-cover img, .pf-cover img { width: 100%; height: 100%; object-fit: cover; position: relative; z-index: 1; }
.pf-cover { position: relative; overflow: hidden; }

/* Yazı sayfası: içerik + sidebar */
.blog-layout {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 56px;
  align-items: start;
}
.blog-main { min-width: 0; }
.article-banner {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 2px solid var(--line); box-shadow: 8px 8px 0 rgba(25,19,49,.07);
  margin-bottom: 44px; aspect-ratio: 21 / 9;
}
.article-banner img { width: 100%; height: 100%; object-fit: cover; }

.blog-aside { position: sticky; top: calc(var(--header-h) + 24px); display: flex; flex-direction: column; gap: 22px; }
.aside-card {
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: 20px; padding: 24px 24px 20px;
}
.aside-card h4 {
  font-size: 15px; font-weight: 800; margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}
.aside-post { display: flex; gap: 12px; align-items: flex-start; padding: 9px 0; border-top: 1px solid var(--border); }
.aside-post:first-of-type { border-top: none; padding-top: 0; }
.aside-post .ap-thumb {
  width: 52px; height: 52px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 22px;
  overflow: hidden;
}
.aside-post .ap-thumb img { width: 100%; height: 100%; object-fit: cover; }
.aside-post strong { display: block; font-size: 13.5px; line-height: 1.4; color: var(--heading); font-weight: 700; }
.aside-post:hover strong { color: var(--primary); }
.aside-post span { font-size: 11.5px; color: var(--muted); font-weight: 600; }
.aside-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.aside-tags a {
  padding: 6px 13px; border-radius: 999px; font-size: 12px; font-weight: 700;
  background: var(--surface-2); color: var(--text); transition: all .2s;
}
.aside-tags a:hover { background: var(--ink); color: #fff; }
.aside-cta {
  background: var(--ink); border-radius: 20px; padding: 26px; color: #fff;
  position: relative; overflow: hidden;
}
.aside-cta::after {
  content: ''; position: absolute; width: 160px; height: 160px; border-radius: 50%;
  background: radial-gradient(circle, rgba(115,103,240,.5), transparent 70%);
  bottom: -60px; right: -50px;
}
.aside-cta strong { font-family: var(--font-display); font-size: 17px; display: block; margin-bottom: 8px; position: relative; z-index: 1; }
.aside-cta p { font-size: 13px; color: rgba(255,255,255,.7); margin-bottom: 16px; position: relative; z-index: 1; }
.aside-cta .btn { width: 100%; position: relative; z-index: 1; }

/* Yazı gövdesi yasal sayfa ferahlığında */
.blog-main .post-content { font-size: 16.5px; line-height: 1.9; }
.blog-main .post-content h2 { margin: 56px 0 20px; }
.blog-main .post-content p { margin-bottom: 20px; }
.blog-main .post-content li { margin-bottom: 10px; line-height: 1.75; }

@media (max-width: 1024px) {
  .blog-layout { grid-template-columns: 1fr; gap: 44px; }
  .blog-aside { position: static; }
}
