/* ===========================================================================
   Toserof Tech. — Redesign design system
   "Premium Glassmorphism + Aurora" (dark). Tokens extracted from the Stitch
   export (Space Grotesk + Inter, glass-panel, aurora, btn, form).
   =========================================================================== */

/* ---------- tokens ---------- */
:root {
  --bg:           #090B10;
  --surface:      #14122A;
  --surface-2:    #1C1836;
  --surface-3:    #282147;

  --text:         #ECEAF5;
  --muted:        #ACA3BC;
  --muted-2:      #83799A;

  --border:        rgba(255,255,255,.08);
  --border-strong: rgba(255,255,255,.15);

  --primary:    #A78BFA;
  --primary-2:  #6C35B2;
  --secondary:  #C6B2E8;
  --secondary-2:#601799;

  --green:   #96BF48;
  --cyan:    #06B6D4;
  --emerald: #34D399;
  --amber:   #F59E0B;
  --pink:    #38BDF8;

  --indigo:  #3C43DD;
  --lilac:   #DCAADC;

  --grad:      linear-gradient(135deg, #A78BFA 0%, #DCAADC 100%);
  --grad-soft: linear-gradient(135deg, #A78BFA 0%, #C6B2E8 100%);
  --grad-btn:  linear-gradient(90deg, #601799 0%, #3C43DD 100%);

  --font-head: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --container: 1920px;        /* edge-to-edge: fills the screen on laptops/desktops */
  --pad-x: clamp(20px, 3vw, 44px);
  --section: clamp(52px, 6vw, 84px);
  --radius: 24px;
  --radius-lg: 16px;
  --radius-sm: 12px;

  --glass-bg: rgba(22,29,43,.6);
  --glass-blur: 24px;
  --shadow: 0 15px 40px -10px rgba(0,0,0,.45);
}

/* ---------- reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: auto; -webkit-text-size-adjust: 100%; }
/* smooth scroll yalnız yükleme sonrası açılır: yenilemede pozisyon geri yüklemesi animasyonla zıplamasın */
html.smooth-ready { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;   /* clip (not hidden) so position:sticky keeps working */
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; }
ul { list-style: none; }
h1, h2, h3, h4, h5 { font-family: var(--font-head); font-weight: 700; line-height: 1.15; letter-spacing: -.02em; }
::selection { background: rgba(96,23,153,.4); color: #fff; }

/* ---------- aurora background (fixed) ---------- */
.aurora-bg { position: fixed; inset: 0; z-index: -2; background: var(--bg); overflow: hidden; }
.aurora-orb { position: absolute; border-radius: 50%; filter: blur(100px); opacity: .4; animation: float 22s infinite ease-in-out alternate; }
.aurora-orb.o1 { background: #6C35B2; width: 600px; height: 600px; top: -140px; left: -120px; }
.aurora-orb.o2 { background: #3C43DD; width: 520px; height: 520px; bottom: -120px; right: -80px; animation-delay: -6s; }
.aurora-orb.o3 { background: #601799; width: 440px; height: 440px; top: 45%; left: 35%; animation-delay: -12s; }
.noise-overlay {
  position: fixed; inset: 0; z-index: -1; opacity: .03; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
@keyframes float {
  0%   { transform: translate(0,0) scale(1); }
  50%  { transform: translate(50px,30px) scale(1.1); }
  100% { transform: translate(-30px,50px) scale(.9); }
}

/* ---------- layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--pad-x); }
.section { padding-block: var(--section); position: relative; }
/* collapse doubled vertical gaps between consecutive sections (keep banded ones) */
.section + .section { padding-top: 0; }
.section + .section.spotlight, .spotlight + .section { padding-top: var(--section); }
/* ===== KOYU YÜZEN PANEL — Penta tarzı kesintisiz koyu akış ===== */
/* eski "açık bant" bölümleri artık hafif aydınlatılmış koyu birer panel */
.section-light, .pd-light {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, #16132E 0%, #0D0B1A 100%);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: clamp(22px, 3vw, 34px);
  margin-block: clamp(18px, 3vw, 40px);
  margin-inline: clamp(14px, 3.2vw, 48px);
  box-shadow: 0 50px 120px -50px rgba(0,0,0,.7);
}
.section-light::before, .pd-light::before { content: ""; position: absolute; top: 0; left: 12%; right: 12%; height: 1px; background: linear-gradient(90deg, transparent, rgba(220,170,220,.4), transparent); pointer-events: none; }
.section + .section.section-light, .section-light + .section,
.section + .section.pd-light, .pd-light + .section { padding-top: var(--section); }
.section-light > .container, .pd-light > .container { position: relative; z-index: 1; }
main { padding-top: 92px; }

/* ---------- typography helpers ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 12px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--primary);
  padding: 7px 14px; border-radius: 999px;
  background: rgba(167,139,250,.08); border: 1px solid var(--border);
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; box-shadow: 0 0 10px currentColor; }
.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.section-head { max-width: 760px; margin-inline: auto; text-align: center; margin-bottom: clamp(40px,6vw,64px); display: flex; flex-direction: column; gap: 16px; align-items: center; }
.section-head h2 { font-size: clamp(32px, 5.6vw, 58px); letter-spacing: -.03em; }
.section-head p { color: var(--muted); font-size: clamp(16px,2vw,18px); }
.h-display { font-size: clamp(42px, 7.4vw, 80px); letter-spacing: -.035em; }
/* Penta-style silver-lilac shimmer on display headings */
.h-display .grad-text, .shimmer-text {
  background: linear-gradient(90deg, #DCAADC, #EFE8F8 25%, #A78BFA 50%, #EFE8F8 75%, #DCAADC);
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  animation: shimmer 6s linear infinite;
}
@keyframes shimmer { to { background-position: 200% center; } }
.lead { color: var(--muted); font-size: clamp(16px,2.2vw,18px); line-height: 1.6; }

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-weight: 600; font-size: 15px; padding: 13px 24px; border-radius: 999px; transition: transform .25s ease, box-shadow .25s ease, background .25s ease; white-space: nowrap; }
.btn svg { width: 16px; height: 16px; }
.btn-grad { background: var(--grad-btn); color: #fff; box-shadow: 0 8px 20px -8px rgba(60,67,221,.55); }
.btn-grad:hover { transform: translateY(-2px); box-shadow: 0 0 28px rgba(108,53,178,.6); }
.btn-ghost { background: rgba(255,255,255,.04); border: 1px solid var(--border-strong); backdrop-filter: blur(12px); color: var(--text); }
.btn-ghost:hover { background: rgba(255,255,255,.09); transform: translateY(-2px); }
.btn-wa { background: #25D366; color: #fff; box-shadow: 0 8px 20px -6px rgba(37,211,102,.5); }
.btn-wa:hover { background: #1da851; transform: translateY(-2px); }
.btn-lg { padding: 16px 30px; font-size: 16px; }
.btn-block { width: 100%; }
/* detay sayfası: eyebrow etiketi başlığa yapışmasın */
.pd-eyebrow + .pd-h2, .pd-eyebrow + .pd-title { margin-top: 18px; }
/* CTA buton grupları mobilde tam genişlik + dikey (dağınık görünmesin) */
@media (max-width: 560px) {
  .hero-btns, .pd-cta-row, .cta-actions { flex-direction: column; align-items: stretch; }
  .hero-btns .btn, .pd-cta-row .btn, .cta-actions .btn { width: 100%; }
}

/* ---------- glass card ---------- */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur)); -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--border); border-radius: var(--radius);
}
.card { padding: clamp(24px, 3vw, 32px); }
.card-hover { transition: transform .35s cubic-bezier(.16,1,.3,1), border-color .35s, box-shadow .35s; }
.card-hover:hover { transform: translateY(-6px); border-color: rgba(167,139,250,.35); box-shadow: 0 20px 50px -20px rgba(108,53,178,.35); }

/* icon chip */
.icon-chip { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: rgba(108,53,178,.14); color: var(--primary-2); }
.icon-chip svg { width: 24px; height: 24px; }
.card-link { display: inline-flex; align-items: center; gap: 6px; color: var(--primary); font-weight: 600; font-size: 14px; }
.card-link svg { width: 14px; height: 14px; transition: transform .25s; }
.card-hover:hover .card-link svg, .card-link:hover svg { transform: translateX(4px); }

/* ---------- nav ---------- */
/* eski site stili: yüzen, yuvarlak köşeli, contained cam navbar */
.nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  background: transparent; border: 0;
  padding-top: clamp(10px, 1.3vw, 16px);
  transition: padding-top .3s;
}
.nav-inner {
  height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 24px;
  max-width: min(1340px, calc(100% - clamp(20px, 4vw, 40px)));
  margin-inline: auto; padding: 0 14px 0 24px;
  background: rgba(18,24,37,.72); backdrop-filter: blur(26px); -webkit-backdrop-filter: blur(26px);
  border: 1px solid var(--border-strong); border-radius: 18px;
  box-shadow: 0 18px 44px -22px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.04);
  transition: background .3s, box-shadow .3s;
}
.nav.scrolled { padding-top: clamp(6px, .9vw, 11px); }
.nav.scrolled .nav-inner { background: rgba(14,19,30,.88); box-shadow: 0 22px 48px -20px rgba(0,0,0,.62), inset 0 1px 0 rgba(255,255,255,.05); }
.nav-progress { display: none; }
.nav-logo { display: inline-flex; align-items: center; gap: 9px; color: #fff; }
.nav-logo img { height: 30px; width: auto; }
.brand-mark { display: inline-flex; align-items: center; }
.brand-mark svg { height: 18px; width: auto; transition: transform .35s cubic-bezier(.16,1,.3,1); }
.nav-logo:hover .brand-mark svg { transform: translateX(2px); }
.brand-name { font-family: var(--font-head); font-weight: 700; font-size: 22px; letter-spacing: -.03em; color: #fff; line-height: 1; }
/* logo: masked SVG with periodic light sheen sweeping across the letters */
.brand-logo {
  display: inline-block; height: 40px; aspect-ratio: 250 / 108;
  background:
    linear-gradient(105deg, transparent 35%, rgba(255,255,255,.55) 46%, rgba(167,139,250,.95) 50%, rgba(255,255,255,.55) 54%, transparent 65%),
    #F0EEE6;
  background-size: 220% 100%, auto;
  background-position: 135% 0, 0 0;
  background-repeat: no-repeat;
  -webkit-mask: url('/images/logo-dark.svg') no-repeat center / contain;
  mask: url('/images/logo-dark.svg') no-repeat center / contain;
  animation: logoSheen 6s ease-in-out infinite;
  transition: filter .35s;
}
@keyframes logoSheen { 0% { background-position: 135% 0, 0 0; } 16%, 100% { background-position: -35% 0, 0 0; } }
.nav-logo { transition: transform .35s cubic-bezier(.16,1,.3,1); }
.nav-logo:hover { transform: scale(1.05); }
.nav-logo:hover .brand-logo { filter: drop-shadow(0 0 10px rgba(167,139,250,.55)); animation-duration: 1.3s; }
.footer .brand-logo { height: 52px; }
.mob-overlay .brand-logo { height: 38px; }
@media (prefers-reduced-motion: reduce) { .brand-logo { animation: none; background-position: -35% 0, 0 0; } }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links > li { position: relative; }
.nav-links a { display: inline-flex; align-items: center; gap: 5px; padding: 9px 14px; border-radius: 10px; color: var(--muted); font-size: 14.5px; font-weight: 500; transition: color .2s, background .2s; }
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,.04); }
.nav-links a.active { color: var(--primary); }
.nav-links a svg { width: 10px; height: 10px; opacity: .7; }
.nav-mega { position: absolute; top: calc(100% + 8px); left: 0; min-width: 250px; display: flex; flex-direction: column; gap: 2px; padding: 10px; opacity: 0; visibility: hidden; transform: translateY(8px); transition: .25s; background: rgba(22,29,43,.92); backdrop-filter: blur(30px); border: 1px solid var(--border); border-radius: 16px; box-shadow: var(--shadow); }
.nav-dropdown:hover .nav-mega { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-mega a { padding: 10px 12px; border-radius: 9px; color: var(--muted); font-size: 14px; }
.nav-mega a:hover { background: rgba(255,255,255,.05); color: var(--text); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.lang-toggle { display: inline-flex; background: rgba(255,255,255,.05); border: 1px solid var(--border); border-radius: 999px; padding: 3px; }
.lang-toggle button { padding: 5px 11px; border-radius: 999px; font-size: 12.5px; font-weight: 600; color: var(--muted-2); transition: .2s; }
.lang-toggle button.active { background: rgba(167,139,250,.18); color: var(--primary); }
.nav-cta { background: var(--grad-btn); color: #fff; padding: 10px 18px; border-radius: 999px; font-size: 14px; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; box-shadow: 0 8px 20px -8px rgba(60,67,221,.55); transition: transform .2s, box-shadow .2s; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 0 20px rgba(108,53,178,.55); }
.nav-cta svg { width: 13px; height: 13px; }
.nav-phone { display: inline-flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 600; color: var(--text); white-space: nowrap; transition: color .2s; }
.nav-phone:hover { color: var(--primary); }
.nav-phone svg { width: 14px; height: 14px; color: var(--primary); }
@media (max-width: 1280px) { .nav-phone { display: none; } }
.hamburger { display: none; width: 42px; height: 42px; border-radius: 12px; border: 1px solid var(--border); background: rgba(255,255,255,.04); flex-direction: column; align-items: center; justify-content: center; gap: 4px; }
.hamburger span { width: 18px; height: 2px; background: var(--text); border-radius: 2px; transition: .3s; }
.nav-progress { position: absolute; bottom: 0; left: 0; height: 2px; width: 0; background: var(--grad); }

/* ---------- mobile overlay ---------- */
.mob-overlay { position: fixed; inset: 0; z-index: 200; background: rgba(9,11,16,.96); backdrop-filter: blur(20px); padding: 24px var(--pad-x); display: flex; flex-direction: column; transform: translateX(100%); transition: transform .4s cubic-bezier(.16,1,.3,1); }
.mob-overlay.open { transform: translateX(0); }
.mob-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 40px; }
.mob-close { width: 42px; height: 42px; border-radius: 12px; border: 1px solid var(--border); display: grid; place-items: center; }
.mob-nav { flex: 1 1 auto; min-height: 0; overflow-y: auto; overscroll-behavior: contain; }
.mob-nav > a { display: block; font-family: var(--font-head); font-size: 28px; font-weight: 600; padding: 14px 0; color: var(--text); border-bottom: 1px solid var(--border); }
/* açılır alt menü (akordeon) */
.mob-acc-h { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px; font-family: var(--font-head); font-size: 28px; font-weight: 600; padding: 14px 0; color: var(--text); border-bottom: 1px solid var(--border); text-align: left; }
.mob-acc-ic { width: 24px; height: 24px; flex-shrink: 0; color: var(--muted-2); transition: transform .32s cubic-bezier(.16,1,.3,1); }
.mob-acc.open .mob-acc-ic { transform: rotate(180deg); color: var(--primary); }
.mob-acc.open .mob-acc-h { color: var(--primary); }
.mob-acc-body { max-height: 0; overflow: hidden; transition: max-height .38s cubic-bezier(.16,1,.3,1); }
.mob-acc.open .mob-acc-body { max-height: 540px; }
.mob-acc-body a { display: block; font-family: var(--font-body); font-size: 16px; font-weight: 500; padding: 12px 0 12px 18px; color: var(--muted); border-bottom: 1px solid var(--border); }
.mob-acc-body a:hover { color: var(--text); }
.mob-acc-body a.mob-acc-all { color: var(--primary); font-weight: 600; }
.mob-lang { display: flex; gap: 8px; margin-top: 22px; }
.mob-lang button { flex: 1; padding: 11px; border-radius: 11px; border: 1px solid var(--border); color: var(--muted); font-family: var(--font-head); font-weight: 600; font-size: 15px; transition: .2s; }
.mob-lang button.active { background: var(--grad); color: #fff; border-color: transparent; }
.mob-bottom { margin-top: auto; display: flex; flex-direction: column; gap: 16px; padding-top: 24px; }
.mob-social { display: flex; gap: 12px; }
.mob-social a { width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--border); display: grid; place-items: center; color: var(--muted); }

/* ---------- topbar ---------- */
.topbar { position: relative; z-index: 90; background: linear-gradient(90deg, rgba(108,53,178,.16), rgba(220,170,220,.16)); border-bottom: 1px solid var(--border); }
.topbar-inner { max-width: var(--container); margin-inline: auto; padding: 9px var(--pad-x); display: flex; align-items: center; justify-content: center; gap: 14px; font-size: 13.5px; color: var(--muted); flex-wrap: wrap; }
.topbar-badge { background: var(--grad); color: #fff; font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: 6px; letter-spacing: .03em; }
.topbar a { color: var(--primary); font-weight: 600; display: inline-flex; align-items: center; gap: 5px; }
.topbar a svg { width: 12px; height: 12px; }

/* ---------- hero ---------- */
.hero { position: relative; padding-top: clamp(48px,7vw,80px); padding-bottom: var(--section); }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px,5vw,64px); align-items: center; }
.hero-pills { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
.hero h1 { font-size: clamp(38px, 6vw, 68px); letter-spacing: -.03em; margin-bottom: 22px; }
.hero .lead { max-width: 540px; margin-bottom: 32px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.stat-num { font-family: var(--font-head); font-size: clamp(26px,3.4vw,34px); font-weight: 700; }
.stat-label { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted-2); margin-top: 4px; }

/* ---- video hero (anasayfa) — burada <head>'de, FOUC olmasın diye ----
   index.ejs gövdesindeki inline style sonradan yüklendiği için hero önce
   varsayılan iki-sütun düzeninde (dashboard kartı görünür) çizilip sonra
   "düzeliyordu". Render-blocking main.css'e taşındı. */
.hero-has-video { min-height: 92vh; overflow: visible; background: #0A0E18; }
/* .hero-pro (inline) overflow:hidden taşıyor; daha özgül seçici ile geçersiz kıl ki video navbar arkasına taşabilsin */
.hero-pro.hero-has-video { overflow: visible; }
.hero-has-video .hero-video, .hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; pointer-events: none; background: var(--bg); }
/* masaüstü: video + scrim'i navbar'ın arkasına (yukarı) uzat → üstteki koyu şerit kalkar, hero kutusu yerinde kalır (altta boşluk olmaz) */
@media (min-width: 961px) {
  .hero-has-video .hero-video, .hero-has-video .hero-scrim { top: -92px; height: calc(100% + 92px); }
}
.hero-still { display: none; }
.hero-scrim { position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(9,11,16,.9) 0%, rgba(9,11,16,.62) 38%, rgba(9,11,16,.22) 66%, rgba(9,11,16,0) 100%),
    linear-gradient(0deg, rgba(9,11,16,.7) 0%, rgba(9,11,16,0) 38%); }
.hero-has-video .hero-grid { grid-template-columns: 1fr; z-index: 2; }
/* Penta ölçeği: dev, ekranı kaplayan statement tipografi */
.hero-has-video .hero-left { max-width: 1100px; }
.hero-has-video .hero-title { font-size: clamp(52px, 8.2vw, 118px); letter-spacing: -.045em; line-height: 1.02; }
.hero-has-video .lead { font-size: clamp(17px, 2vw, 21px); max-width: 640px; }
/* aşağı kaydır göstergesi */
.hero-scroll { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 3;
  display: inline-flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); }
.hero-scroll::before { content: ""; width: 1px; height: 44px; background: linear-gradient(180deg, transparent, var(--lilac)); animation: scrollhint 2.2s ease-in-out infinite; }
@keyframes scrollhint { 0%,100% { transform: scaleY(.4); transform-origin: top; opacity: .4; } 50% { transform: scaleY(1); opacity: 1; } }
@media (max-width: 960px) { .hero-scroll { display: none; } }
.hero-has-video .hero-visual { display: none; }
.hero-vgap { display: none; }
.hero-has-video .hero-left .reveal { opacity: 1; transform: none; transition: none; }
@media (max-width: 960px) {
  .hero-pro.hero-has-video { display: flex; align-items: stretch; min-height: 92svh; overflow: hidden; margin-top: 0; padding-top: 0; padding-bottom: clamp(32px,7vw,52px); }
  .hero-has-video .hero-video { display: block; position: absolute; left: 0; right: 0; top: -13%; width: 100%; height: 114%; object-fit: cover; aspect-ratio: auto; z-index: 0; }
  .hero-has-video .hero-still { display: none; }
  .hero-has-video .hero-scrim { display: block; background:
    linear-gradient(0deg, rgba(9,11,16,.96) 0%, rgba(9,11,16,.8) 22%, rgba(9,11,16,.3) 36%, rgba(9,11,16,0) 44%),
    linear-gradient(180deg, rgba(9,11,16,.8) 0%, rgba(9,11,16,.26) 18%, rgba(9,11,16,0) 36%); }
  .hero-has-video > .container { position: relative; z-index: 2; display: flex; width: 100%; }
  .hero-has-video .hero-grid { display: flex; width: 100%; }
  .hero-has-video .hero-left { display: flex; flex-direction: column; width: 100%; max-width: none; padding-top: clamp(14px,4vh,38px); }
  .hero-vgap { display: block; flex: 1 1 auto; min-height: 12svh; }
  .hero-has-video .hero-visual { display: none; }
  .hero-has-video .hero-title { margin-bottom: 0; }
  .hero-has-video .lead { font-size: 14px; line-height: 1.5; margin: 0 0 2px; }
  .hero-has-video .hero-btns { margin-top: 14px; gap: 10px; }
  .hero-has-video .hero-btns .btn { padding: 13px 20px; font-size: 14.5px; }
  .hero-has-video .hero-trust { margin-top: 14px; }
}

/* hero visual mockups */
.hero-visual { position: relative; }
.hv-main { padding: 26px; }
.hv-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.hv-title { font-size: 13px; color: var(--muted); font-weight: 600; }
.live-dot { font-size: 11px; font-weight: 700; color: var(--emerald); display: inline-flex; align-items: center; gap: 6px; }
.live-dot::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--emerald); box-shadow: 0 0 8px var(--emerald); animation: blink 1.6s infinite; }
@keyframes blink { 50% { opacity: .35; } }
.hv-num { font-family: var(--font-head); font-size: 38px; font-weight: 700; margin-bottom: 18px; }
.hv-num small { font-size: 15px; color: var(--emerald); font-weight: 600; }
.hv-bar-label { display: flex; justify-content: space-between; font-size: 12px; color: var(--muted); margin-bottom: 8px; }
.hv-bar { height: 8px; border-radius: 999px; background: rgba(255,255,255,.08); overflow: hidden; }
.hv-bar > i { display: block; height: 100%; border-radius: 999px; background: var(--grad); width: 82%; }
.hv-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 20px; }
.hv-mini { background: rgba(255,255,255,.03); border: 1px solid var(--border); border-radius: 12px; padding: 12px; text-align: center; }
.hv-mini b { font-family: var(--font-head); font-size: 18px; display: block; }
.hv-mini span { font-size: 11px; color: var(--muted-2); }
.hv-float { position: absolute; padding: 16px 18px; min-width: 150px; }
.hv-float.f1 { top: -22px; right: -14px; }
.hv-float.f2 { bottom: -26px; left: -18px; }
.hv-float .icon-chip { width: 38px; height: 38px; border-radius: 11px; margin-bottom: 10px; }
.hv-float b { font-family: var(--font-head); font-size: 18px; display: block; }
.hv-float span { font-size: 12px; color: var(--muted-2); }

/* ---------- generic grids ---------- */
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.feature-card h4 { font-size: 19px; margin: 16px 0 8px; }
.feature-card p { color: var(--muted); font-size: 14.5px; }
.feature-card .card-link { margin-top: 16px; }

/* ---------- stats band ---------- */
.stats-band { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.stat-card { text-align: center; padding: 28px 18px; }
.stat-card .num { font-family: var(--font-head); font-size: clamp(30px,4vw,44px); font-weight: 700; }

/* ---------- partnership / two-column ---------- */
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.duo-panel h3 { font-size: 22px; margin-bottom: 20px; }
.duo-item { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.duo-item:last-child { border-bottom: none; }
.duo-item .ico { width: 38px; height: 38px; border-radius: 11px; flex-shrink: 0; display: grid; place-items: center; background: rgba(108,53,178,.14); color: var(--primary-2); }
.duo-item .ico svg { width: 18px; height: 18px; }
.duo-item b { display: block; font-family: var(--font-head); font-size: 15.5px; margin-bottom: 3px; }
.duo-item span { font-size: 13.5px; color: var(--muted); }
.quote-card { text-align: center; margin-top: 32px; padding: clamp(48px, 7vw, 96px) 32px; }
.quote-card p { font-family: var(--font-head); font-size: clamp(30px, 4.8vw, 64px); font-weight: 700; line-height: 1.12; letter-spacing: -.03em; }
.quote-card cite { display: block; margin-top: 14px; color: var(--muted-2); font-style: normal; font-size: 14px; }

/* ---------- product cards ---------- */
.prod-card { position: relative; overflow: hidden; }
.prod-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 0%, var(--pc, #6C35B2), transparent 70%); opacity: 0; transition: opacity .4s; }
.prod-card:hover::before { opacity: .12; }
.prod-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.prod-num { font-family: var(--font-head); font-size: 13px; color: var(--muted-2); }
.prod-icon { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; background: color-mix(in srgb, var(--pc,#6C35B2) 16%, transparent); color: var(--pc,#6C35B2); }
.prod-icon svg { width: 24px; height: 24px; }
.prod-card h4 { font-size: 18px; margin-bottom: 8px; }
.prod-card p { color: var(--muted); font-size: 14px; margin-bottom: 16px; }

/* ---------- yazılım ürünleri — yüzen ekran kompozisyonu ---------- */
.pbox-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--pc, #fff); }
.pbox-link svg { width: 14px; height: 14px; }

.pstage { display: grid; grid-template-columns: 1fr minmax(0, 620px) 1fr; align-items: center; gap: clamp(14px, 2vw, 30px); }
.pcol { display: flex; flex-direction: column; gap: clamp(16px, 2.4vw, 26px); }
.pcol-left { align-items: stretch; }
.pcol-right { align-items: stretch; }
/* ortadaki kart hafif içeride dursun (derinlik hissi) */
/* kartlar hizalı kalsın (girinti yok) */

/* --- orta web ekranı --- */
.pscreen { position: relative; z-index: 3; width: min(620px, 100%); border-radius: 18px; overflow: hidden; background: var(--surface); border: 1px solid var(--border-strong); box-shadow: 0 40px 90px -30px rgba(0,0,0,.7), 0 0 0 1px rgba(255,255,255,.02) inset; transition: transform .5s cubic-bezier(.16,1,.3,1), box-shadow .5s; }
.pscreen:hover { transform: translateY(-6px); box-shadow: 0 50px 110px -28px color-mix(in srgb, var(--pc) 40%, rgba(0,0,0,.7)); }
.ps-chrome { display: flex; align-items: center; gap: 7px; padding: 12px 16px; border-bottom: 1px solid var(--border); background: rgba(255,255,255,.02); }
.ps-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.16); }
.ps-dot:nth-child(1){ background:#ff5f57 } .ps-dot:nth-child(2){ background:var(--amber) } .ps-dot:nth-child(3){ background:var(--emerald) }
.ps-url { margin-left: 10px; display: inline-flex; align-items: center; gap: 7px; font-size: 12px; color: var(--muted-2); background: rgba(255,255,255,.03); border: 1px solid var(--border); padding: 5px 12px; border-radius: 8px; }
.ps-url svg { width: 12px; height: 12px; color: var(--emerald); }
.ps-badge { margin-left: auto; width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; background: color-mix(in srgb, var(--pc) 20%, transparent); color: var(--pc); }
.ps-badge svg { width: 16px; height: 16px; }
.ps-body { display: grid; grid-template-columns: 58px 1fr; height: 340px; }
.ps-side { display: flex; flex-direction: column; align-items: center; gap: 14px; padding: 16px 0; border-right: 1px solid var(--border); background: rgba(255,255,255,.012); }
.ps-logo { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; background: var(--grad); color: #fff; }
.ps-logo svg { width: 16px; height: 16px; }
.ps-navi { width: 22px; height: 7px; border-radius: 4px; background: rgba(255,255,255,.07); }
.ps-navi.on { background: var(--pc); box-shadow: 0 0 12px color-mix(in srgb, var(--pc) 60%, transparent); }
.ps-main { padding: 18px 20px; display: flex; flex-direction: column; gap: 14px; }
.ps-main-top { display: flex; align-items: center; justify-content: space-between; }
.ps-h { font-family: var(--font-head); font-weight: 600; font-size: 16px; }
.ps-sub { font-size: 11.5px; color: var(--muted-2); margin-top: 2px; }
.ps-pill { font-size: 11px; font-weight: 600; color: var(--emerald); background: rgba(52,211,153,.14); border: 1px solid rgba(52,211,153,.25); padding: 4px 10px; border-radius: 999px; }
.ps-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.ps-kpi { background: rgba(255,255,255,.025); border: 1px solid var(--border); border-radius: 11px; padding: 11px 12px; }
.ps-kpi-l { font-size: 10.5px; color: var(--muted-2); display: block; }
.ps-kpi b { font-family: var(--font-head); font-size: 18px; display: block; margin-top: 3px; }
.ps-kpi-up { font-size: 10.5px; color: var(--emerald); font-style: normal; }
.ps-kpi-dn { font-size: 10.5px; color: #ff7a7a; font-style: normal; }
.ps-chart { display: flex; align-items: flex-end; gap: 8px; height: 84px; padding: 10px; background: rgba(255,255,255,.02); border: 1px solid var(--border); border-radius: 12px; }
.ps-chart i { flex: 1; border-radius: 5px 5px 0 0; background: var(--grad); opacity: .9; }
.ps-chart i:last-child { background: linear-gradient(180deg, var(--pc), color-mix(in srgb, var(--pc) 30%, transparent)); box-shadow: 0 0 16px -2px var(--pc); }
.ps-rows { display: flex; flex-direction: column; gap: 8px; }
.ps-row { height: 14px; border-radius: 6px; background: rgba(255,255,255,.045); }
.ps-row.sm { width: 60%; }
.pscreen-cap { display: block; padding: 16px 20px 18px; border-top: 1px solid var(--border); background: rgba(255,255,255,.015); }
.pscreen-cap b { font-family: var(--font-head); font-size: 17px; display: block; }
.pscreen-cap em { font-style: normal; color: var(--muted); font-size: 13px; display: block; margin: 4px 0 10px; }

/* --- yüzen telefon/panel ekranları --- */
.pfloat { position: relative; z-index: 4; width: 100%; height: clamp(150px, 19vh, 168px); border-radius: 16px; overflow: hidden; background: var(--surface-2); border: 1px solid var(--border-strong); box-shadow: 0 24px 50px -22px rgba(0,0,0,.8); animation: pfFloat 7s ease-in-out infinite; transition: transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s, border-color .4s; }
.pfloat:hover { transform: translateY(-6px) scale(1.03); border-color: color-mix(in srgb, var(--pc) 55%, transparent); box-shadow: 0 30px 60px -20px color-mix(in srgb, var(--pc) 50%, transparent); z-index: 6; animation-play-state: paused; }
.pf-img { position: absolute; inset: 0; }
.pf-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: left center; transition: transform .6s cubic-bezier(.16,1,.3,1); }
.pfloat:hover .pf-img img { transform: scale(1.08); }
.pf-img-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(9,11,16,.05) 0%, rgba(9,11,16,.35) 45%, rgba(9,11,16,.92) 100%); transition: background .4s; }
.pfloat:hover .pf-img-scrim { background: linear-gradient(180deg, color-mix(in srgb, var(--pc) 26%, rgba(9,11,16,.05)) 0%, rgba(9,11,16,.7) 50%, rgba(9,11,16,.96) 100%); }
.pf-badge { position: absolute; top: 12px; left: 12px; z-index: 2; width: 36px; height: 36px; border-radius: 11px; display: grid; place-items: center; background: color-mix(in srgb, var(--pc) 30%, rgba(9,11,16,.55)); color: #fff; border: 1px solid color-mix(in srgb, var(--pc) 45%, transparent); backdrop-filter: blur(6px); transition: transform .35s; }
.pfloat:hover .pf-badge { transform: translateY(-2px) scale(1.06); }
.pf-badge svg { width: 18px; height: 18px; }
.pf-num { position: absolute; top: 14px; right: 14px; z-index: 2; font-family: var(--font-head); font-weight: 700; font-size: 12px; color: rgba(255,255,255,.9); text-shadow: 0 1px 8px rgba(0,0,0,.6); }
.pf-content { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 14px 14px 14px; }
.pf-title { font-family: var(--font-head); font-size: 15px; font-weight: 600; line-height: 1.2; color: #fff; text-shadow: 0 1px 10px rgba(0,0,0,.5); }
.pf-reveal { display: grid; grid-template-rows: 0fr; opacity: 0; transition: grid-template-rows .42s cubic-bezier(.16,1,.3,1), opacity .3s; }
.pfloat:hover .pf-reveal, .pfloat:focus-visible .pf-reveal { grid-template-rows: 1fr; opacity: 1; }
.pf-reveal > * { overflow: hidden; }
.pf-desc { color: rgba(234,238,245,.85); font-size: 12.5px; line-height: 1.5; margin: 8px 0 10px; }

/* float animasyonu — sütundaki kartlar kademeli süzülsün */
.pcol .pfloat:nth-child(1){ animation-delay: 0s; }
.pcol .pfloat:nth-child(2){ animation-delay: .9s; }
.pcol .pfloat:nth-child(3){ animation-delay: 1.8s; }
.pcol-right .pfloat:nth-child(1){ animation-delay: .5s; }
.pcol-right .pfloat:nth-child(2){ animation-delay: 1.3s; }
.pcol-right .pfloat:nth-child(3){ animation-delay: 2.2s; }
@keyframes pfFloat { 50% { transform: translateY(-10px); } }
@media (prefers-reduced-motion: reduce){ .pfloat { animation: none; } }

/* tablet/mobil: ekran üstte tam genişlik + 6 kart 2'li grid */
@media (max-width: 1080px){
  .pstage { grid-template-columns: 1fr 1fr; gap: 14px; }
  .pcol { display: contents; }                         /* sütunları çöz, kartlar grid'e aksın */
  .pscreen { grid-column: 1 / -1; justify-self: center; width: 100%; max-width: 620px; }
  .pfloat { animation: none; margin: 0 !important; }
  .pf-reveal { grid-template-rows: 1fr; opacity: 1; }   /* dokunmatik: açıklama hep açık */
}
@media (max-width: 560px){
  .pstage { grid-template-columns: 1fr; }
}

/* ---------- forms ---------- */
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.input, .textarea {
  width: 100%; background: rgba(255,255,255,.03); border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg); padding: 13px 16px; color: var(--text);
  backdrop-filter: blur(12px); transition: border-color .25s, box-shadow .25s;
}
.input::placeholder, .textarea::placeholder { color: var(--muted-2); }
.input:focus, .textarea:focus { outline: none; border-color: var(--primary); box-shadow: inset 0 0 12px rgba(167,139,250,.12); }
.textarea { resize: vertical; min-height: 130px; }

/* ---------- marquee ---------- */
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 24px; width: max-content; animation: scroll-x 40s linear infinite; }
.marquee-track.rev { animation-direction: reverse; }
/* sonsuz döngü — hover'da bile durmasın */
@keyframes scroll-x { to { transform: translateX(-50%); } }
.logo-item { height: 36px; display: grid; place-items: center; padding: 0 8px; opacity: .6; }
.logo-item img { height: 100%; width: auto; object-fit: contain; }
.logo-text { font-family: var(--font-head); font-weight: 600; color: var(--muted); font-size: 18px; white-space: nowrap; }

/* ---------- testimonial cards ---------- */
.tc { width: 360px; flex-shrink: 0; padding: 26px; }
.tc-stars { color: var(--amber); letter-spacing: 2px; margin-bottom: 12px; }
.tc-body { color: var(--text); font-size: 14.5px; line-height: 1.6; margin-bottom: 18px; }
.tc-author { display: flex; align-items: center; gap: 12px; }
.tc-av { position: relative; width: 42px; height: 42px; border-radius: 50%; background: var(--grad); display: grid; place-items: center; font-weight: 700; font-size: 14px; color: #fff; overflow: hidden; flex-shrink: 0; }
.tc-av img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.tc-av span { position: relative; z-index: 0; }
.tc-name { font-weight: 600; font-size: 14px; }
.tc-co { font-size: 12.5px; color: var(--muted-2); }

/* ---------- pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; align-items: stretch; }
.pcard { position: relative; padding: 36px 30px; display: flex; flex-direction: column; gap: 8px; }
.pcard.hot { border-color: transparent; background: linear-gradient(var(--surface), var(--surface)) padding-box, var(--grad) border-box; border: 1px solid transparent; box-shadow: 0 30px 70px -30px rgba(96,23,153,.5); }
.pcard.hot { transform: translateY(-8px); }
.hot-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--grad); color: #fff; font-size: 12px; font-weight: 700; padding: 6px 16px; border-radius: 999px; white-space: nowrap; }
.pcard-sub { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--primary); font-weight: 600; }
.pcard h3 { font-size: 24px; }
.pcard-price { font-family: var(--font-head); font-size: 40px; font-weight: 700; margin: 6px 0; }
.pcard-price span { font-size: 14px; font-weight: 500; color: var(--muted-2); }
.pcard-desc { color: var(--muted); font-size: 14px; margin-bottom: 8px; }
.pfeats { display: flex; flex-direction: column; gap: 12px; margin: 18px 0 26px; }
.pfeats li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text); }
.pfeats .pcheck, .pfeats .px { width: 20px; height: 20px; border-radius: 50%; display: grid; place-items: center; font-size: 11px; flex-shrink: 0; }
.pfeats .pcheck { background: rgba(52,211,153,.16); color: var(--emerald); }
.pfeats .px { background: rgba(255,255,255,.06); color: var(--muted-2); }
.pfeats li.off { color: var(--muted-2); }
.pbtn { margin-top: auto; text-align: center; padding: 13px; border-radius: 999px; font-weight: 600; font-size: 15px; background: rgba(255,255,255,.05); border: 1px solid var(--border-strong); transition: .25s; }
.pbtn:hover, .pbtn.active { background: var(--grad); color: #fff; border-color: transparent; }

/* ---------- accordion / FAQ ---------- */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--glass-bg); backdrop-filter: blur(var(--glass-blur)); overflow: hidden; }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 22px; text-align: left; font-family: var(--font-head); font-weight: 600; font-size: 16px; }
.faq-q .ico { width: 28px; height: 28px; border-radius: 8px; display: grid; place-items: center; background: rgba(255,255,255,.05); transition: transform .3s; flex-shrink: 0; }
.faq-item.active .faq-q .ico { transform: rotate(45deg); background: var(--grad); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a-inner { padding: 0 22px 20px; color: var(--muted); font-size: 14.5px; }

/* ---------- AI performans grafiği (anasayfa + ürünler) ---------- */
.hv-chart { display: flex; align-items: flex-end; gap: 8px; height: 150px; margin-bottom: 16px; }
.hv-chart i { flex: 1; background: var(--grad); border-radius: 6px 6px 0 0; opacity: .85; display: block; }
.chart-tip { position: absolute; top: -30px; left: 50%; transform: translateX(-50%); background: var(--surface); border: 1px solid var(--border); padding: 3px 8px; border-radius: 6px; font-size: 11px; font-weight: 600; white-space: nowrap; }

/* ---------- timeline (temel: düz adım kartları — global vs.) ---------- */
.timeline { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; position: relative; }
.timeline::before { content: ""; position: absolute; top: 28px; left: 8%; right: 8%; height: 2px; background: linear-gradient(90deg, transparent, var(--border-strong), transparent); }
.tl-step { text-align: center; position: relative; }
.tl-node { width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 18px; display: grid; place-items: center; background: var(--surface-2); border: 1px solid var(--border-strong); color: var(--primary); position: relative; z-index: 2; font-family: var(--font-head); font-weight: 700; font-size: 16px; }
.tl-node svg { width: 24px; height: 24px; }
.tl-step h4 { font-size: 17px; margin-bottom: 8px; }
.tl-step p { font-size: 13.5px; color: var(--muted); }
.tl-num { font-family: var(--font-head); font-size: 12px; color: var(--muted-2); display: block; margin-bottom: 6px; }

/* ---------- timeline (görselli kart varyantı — anasayfa ortaklık) ---------- */
.timeline-cards::before { display: none; }
.timeline-cards .tl-step { text-align: center; position: relative; padding: 0; overflow: hidden; background: linear-gradient(180deg, #DCD3E8 0%, #CFC4DE 100%); border-color: rgba(21,16,38,.14); box-shadow: 0 20px 46px -28px rgba(0,0,0,.6); -webkit-backdrop-filter: none; backdrop-filter: none; }
.timeline-cards .tl-img { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.timeline-cards .tl-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.16,1,.3,1); }
.timeline-cards .tl-step:hover .tl-img img { transform: scale(1.06); }
.timeline-cards .tl-img-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(9,11,16,.12) 0%, rgba(9,11,16,.2) 55%, rgba(9,11,16,.7) 100%); }
.timeline-cards .tl-node { position: absolute; left: 50%; top: 0; margin: 0; transform: translate(-50%, -50%); z-index: 3; width: 52px; height: 52px; background: #FFFFFF; border: 1px solid rgba(21,16,38,.12); color: var(--primary-2); box-shadow: 0 10px 24px -8px rgba(0,0,0,.5); transition: transform .35s cubic-bezier(.16,1,.3,1); }
.timeline-cards .tl-step:hover .tl-node { transform: translate(-50%, -50%) scale(1.08); border-color: color-mix(in srgb, var(--primary-2) 45%, transparent); }
.timeline-cards .tl-content { position: relative; padding: 40px 18px 24px; }
.timeline-cards .tl-step h4 { color: #151026; }
.timeline-cards .tl-step p { color: #52466E; }

/* ---------- blog cards ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.bcard { overflow: hidden; display: flex; flex-direction: column; }
.bcard-img { aspect-ratio: 16/10; position: relative; display: grid; place-items: center; overflow: hidden; }
.bcard-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.bcard-decor { font-family: var(--font-head); font-size: 56px; font-weight: 700; color: rgba(255,255,255,.18); }
.bcard-body { padding: 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.bcard-meta { display: flex; align-items: center; gap: 12px; font-size: 12.5px; color: var(--muted-2); }
.bcard-tag { background: rgba(167,139,250,.12); color: var(--primary); padding: 4px 10px; border-radius: 999px; font-weight: 600; }
.bcard-body h3 { font-size: 19px; line-height: 1.3; }
.bcard-body p { color: var(--muted); font-size: 14px; flex: 1; }
.chip-row { display: flex; gap: 10px; flex-wrap: wrap; }
.chip { padding: 9px 16px; border-radius: 999px; background: rgba(255,255,255,.04); border: 1px solid var(--border); font-size: 13.5px; color: var(--muted); font-weight: 500; transition: .2s; cursor: pointer; }
.chip:hover, .chip.active { background: rgba(167,139,250,.14); color: var(--primary); border-color: rgba(167,139,250,.3); }

/* ---------- newsletter / CTA band ---------- */
.cta-band { position: relative; overflow: hidden; text-align: center; padding: clamp(40px,6vw,64px); }
.cta-band h2 { font-size: clamp(26px,4vw,40px); margin-bottom: 14px; }
.cta-band p { color: var(--muted); max-width: 540px; margin: 0 auto 28px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.nl-form { display: flex; gap: 12px; max-width: 460px; margin: 0 auto; flex-wrap: wrap; }
.nl-form .input { flex: 1; min-width: 220px; }

/* ---------- footer ---------- */
.footer { position: relative; border-top: 1px solid var(--border); margin-top: var(--section); padding-block: clamp(48px,7vw,80px) 0; }
.ft-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1.3fr; gap: 32px; }
.ft-brand .nav-logo { display: inline-block; margin-bottom: 16px; }
.ft-desc { color: var(--muted); font-size: 14px; max-width: 280px; margin-bottom: 16px; }
.ft-loc { display: flex; align-items: center; gap: 8px; color: var(--muted-2); font-size: 13px; margin-bottom: 18px; }
.ft-loc svg { width: 14px; height: 14px; }
.ft-social { display: flex; gap: 10px; }
.ft-social a { width: 40px; height: 40px; border-radius: 11px; border: 1px solid var(--border); display: grid; place-items: center; color: var(--muted); transition: .2s; }
.ft-social a:hover { color: var(--primary); border-color: rgba(167,139,250,.3); }
.ft-col h4 { font-size: 13px; letter-spacing: .06em; text-transform: uppercase; color: var(--text); margin-bottom: 16px; }
.ft-col li { margin-bottom: 10px; }
.ft-col a, .ft-contact a, .ft-contact span { color: var(--muted); font-size: 14px; transition: color .2s; }
.ft-col a:hover, .ft-contact a:hover { color: var(--primary); }
.ft-contact-row { display: flex; gap: 10px; margin-bottom: 12px; align-items: flex-start; }
.ft-contact-row svg { width: 14px; height: 14px; color: var(--muted-2); flex-shrink: 0; margin-top: 3px; }
.ft-bottom { margin-top: 48px; border-top: 1px solid var(--border); padding: 24px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.ft-copy { color: var(--muted-2); font-size: 13px; }
.ft-legal { display: flex; gap: 18px; flex-wrap: wrap; }
.ft-legal a { color: var(--muted-2); font-size: 13px; }
.ft-legal a:hover { color: var(--primary); }

/* ---------- floating WhatsApp ---------- */
.wa-float { position: fixed; bottom: 28px; right: 28px; width: 56px; height: 56px; border-radius: 50%; background: #25D366; display: grid; place-items: center; z-index: 95; box-shadow: 0 10px 25px rgba(37,211,102,.4); transition: transform .25s; }
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 28px; height: 28px; }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }

/* pulse pin (contact map) */
.pulse-pin { animation: pulse-ring 2s cubic-bezier(.215,.61,.355,1) infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(167,139,250,.7); } 70% { box-shadow: 0 0 0 15px rgba(167,139,250,0); } 100% { box-shadow: 0 0 0 0 rgba(167,139,250,0); } }

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 460px; }
  .grid-4, .stats-band, .hero-stats { grid-template-columns: repeat(2,1fr); }
  .ft-grid { grid-template-columns: 1fr 1fr 1fr; }
  .ft-brand { grid-column: 1 / -1; }
  .timeline { grid-template-columns: repeat(2,1fr); }
  .timeline::before { display: none; }
}
@media (max-width: 860px) {
  .nav-links, .nav .lang-toggle, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .grid-3, .grid-2, .duo, .price-grid, .blog-grid, .faq-grid { grid-template-columns: 1fr; }
  .pcard.hot { transform: none; }
}
@media (max-width: 560px) {
  .grid-4, .stats-band, .hero-stats { grid-template-columns: 1fr 1fr; }
  .ft-grid { grid-template-columns: 1fr 1fr; }
  .tc { width: 300px; }
  main { padding-top: 72px; }
}
@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; }
}

/* ===========================================================================
   ✦ PREMIUM ENHANCEMENT LAYER  (animations, depth, micro-interactions)
   =========================================================================== */

/* ---- animated aurora mesh + livelier orbs ---- */
.aurora-mesh {
  position: absolute; inset: -35%;
  background: conic-gradient(from 0deg at 50% 50%, rgba(108,53,178,.07), rgba(220,170,220,.07), rgba(6,182,212,.05), rgba(150,191,72,.04), rgba(108,53,178,.07));
  filter: blur(70px); animation: meshspin 48s linear infinite; pointer-events: none;
}
@keyframes meshspin { to { transform: rotate(360deg); } }
.aurora-orb { opacity: .3; will-change: transform; }
.aurora-orb.o1 { animation-duration: 26s; }
.aurora-orb.o2 { animation-duration: 32s; }
.aurora-orb.o3 { animation-duration: 38s; }

/* ---- cursor spotlight ---- */
.cursor-glow {
  position: fixed; top: 0; left: 0; width: 480px; height: 480px; border-radius: 50%;
  pointer-events: none; z-index: 3; will-change: transform;
  background: radial-gradient(circle, rgba(108,53,178,.09), rgba(220,170,220,.05) 35%, transparent 62%);
}
@media (hover: none) { .cursor-glow { display: none; } }

/* ---- refined scrollbar ---- */
/* scrollbar yerini kalıcı rezerve et → içerik yüksekliği değişince genişlik oynamaz
   (navbar/hamburger sağa-sola titremez) */
html { scrollbar-color: #423A56 transparent; scrollbar-gutter: stable; overflow-y: scroll; }
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: linear-gradient(#423A56,#282147); border-radius: 99px; border: 3px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: linear-gradient(#6C35B2,#DCAADC); }

/* ---- glass: hairline top highlight + animated gradient hover border ---- */
.glass { box-shadow: inset 0 1px 0 rgba(255,255,255,.05), 0 10px 30px -18px rgba(0,0,0,.5); }

/* ---- card-hover: cursor spotlight + glow ring + lift ---- */
.glass.card-hover { position: relative; overflow: hidden; transition: transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s, border-color .4s; will-change: transform; }
.glass.card-hover > * { position: relative; z-index: 1; }
.glass.card-hover::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; z-index: 0; pointer-events: none;
  background: radial-gradient(300px circle at var(--mx,50%) var(--my,50%), rgba(167,139,250,.14), transparent 60%);
  opacity: 0; transition: opacity .4s;
}
.glass.card-hover:hover { border-color: rgba(167,139,250,.35); box-shadow: 0 26px 60px -24px rgba(108,53,178,.42), inset 0 1px 0 rgba(255,255,255,.08); }
.glass.card-hover:hover::after { opacity: 1; }

/* ---- buttons: animated gradient + sheen sweep + bigger glow ---- */
.btn-grad {
  position: relative; isolation: isolate; overflow: hidden;
  background: linear-gradient(120deg,#6C35B2,#7C3AED,#DCAADC,#6C35B2); background-size: 240% 240%;
  animation: btnflow 6s ease infinite; box-shadow: 0 10px 26px -10px rgba(96,23,153,.6);
}
@keyframes btnflow { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.btn-grad::after {
  content: ""; position: absolute; top: 0; left: -75%; width: 45%; height: 100%; z-index: -1;
  background: linear-gradient(115deg, transparent, rgba(255,255,255,.45), transparent); transform: skewX(-20deg); transition: left .7s ease;
}
.btn-grad:hover::after { left: 140%; }
.btn-grad:hover { box-shadow: 0 0 30px rgba(96,23,153,.55), 0 14px 30px -10px rgba(96,23,153,.6); }
.btn-ghost { transition: transform .25s, background .25s, border-color .25s, box-shadow .25s; }
.btn-ghost:hover { border-color: rgba(167,139,250,.4); box-shadow: 0 0 0 1px rgba(167,139,250,.2), 0 10px 24px -14px rgba(108,53,178,.5); }

/* ---- gradient text: subtle living shimmer ---- */
.grad-text { background: linear-gradient(120deg,#A78BFA,#C6B2E8,#6C35B2,#A78BFA); background-size: 220% auto; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; animation: shimmer 8s linear infinite; }
@keyframes shimmer { to { background-position: 220% center; } }

/* ---- icon chips: gradient sheen + glow on hover ---- */
.icon-chip, .prod-icon, .svc-icon, .svc-grad-icon { transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s; }
.card-hover:hover .icon-chip, .card-hover:hover .prod-icon, .card-hover:hover .svc-icon { transform: translateY(-3px) scale(1.06); }
.svc-grad-icon { box-shadow: 0 8px 22px -8px rgba(96,23,153,.6); }

/* ---- eyebrow: glowing pulse dot ---- */
.eyebrow { backdrop-filter: blur(12px); }
.eyebrow .dot { animation: pulseDot 2.4s ease-in-out infinite; }
@keyframes pulseDot { 0%,100% { box-shadow: 0 0 0 0 currentColor; opacity: 1; } 50% { box-shadow: 0 0 12px 2px currentColor; opacity: .7; } }

/* ---- section heading: animated accent underline ---- */
.section-head h2 { position: relative; display: inline-block; }
.section-head h2::after { content: ""; position: absolute; left: 50%; bottom: -14px; width: 0; height: 3px; border-radius: 3px; background: var(--grad); transform: translateX(-50%); transition: width .8s cubic-bezier(.16,1,.3,1) .2s; }
.section-head.is-visible h2::after, .reveal.is-visible .section-head h2::after { width: 64px; }
.section-head h2::after { width: 64px; } /* fallback when not reveal-wrapped */

/* ---- hero: entrance + gentle float on visual ---- */
.hero h1 { letter-spacing: -.035em; }
.hero-visual { transition: transform .3s ease-out; will-change: transform; }
.hv-browser { animation: floaty 7s ease-in-out infinite; }
@keyframes floaty { 50% { transform: translateY(-12px); } }

/* ---- nav polish ---- */
.nav-logo { transition: text-shadow .3s; }
.nav-logo:hover { text-shadow: 0 0 20px rgba(108,53,178,.5); }
.nav-links a { position: relative; }
.nav-links a::after { content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px; background: var(--grad); border-radius: 2px; transform: scaleX(0); transform-origin: left; transition: transform .3s; }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

/* ---- card-link arrow underline ---- */
.card-link { position: relative; }
.card-link::before { content: ""; position: absolute; left: 0; bottom: -3px; width: 0; height: 1.5px; background: currentColor; transition: width .3s; }
.card-link:hover::before, .card-hover:hover .card-link::before { width: calc(100% - 22px); }

/* ---- stat numbers: soft glow ---- */
.stat-card .num, .stat-num, .hstat-num { text-shadow: 0 0 24px rgba(108,53,178,.25); }

/* ---- reveal: smoother, with variants ---- */
.reveal { will-change: opacity, transform; }
.marquee-track { will-change: transform; }

/* ---- denser, richer card grids on large screens ---- */
@media (min-width: 1680px) {
  .grid-3 { grid-template-columns: repeat(4, 1fr); }
  .blog-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ---- focus-visible accessibility ---- */
a:focus-visible, button:focus-visible, .input:focus-visible, .textarea:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }

/* ---- page top load fade ---- */
body { animation: pageIn .6s ease both; }
@keyframes pageIn { from { opacity: 0; } to { opacity: 1; } }

@media (prefers-reduced-motion: reduce) {
  .aurora-mesh, .btn-grad, .grad-text, .shimmer-text, .hv-browser, .eyebrow .dot, .aurora-orb { animation: none !important; }
  .cursor-glow { display: none; }
}

/* ===========================================================================
   ✦ PAGE TRANSITIONS (View Transitions API) + reveal variants
   =========================================================================== */
@view-transition { navigation: auto; }
::view-transition-old(root) { animation: vtOut .32s cubic-bezier(.4,0,.2,1) both; }
::view-transition-new(root) { animation: vtIn .42s cubic-bezier(.16,1,.3,1) both; }
@keyframes vtOut { to { opacity: 0; transform: translateY(-10px); filter: blur(2px); } }
@keyframes vtIn  { from { opacity: 0; transform: translateY(14px); } }

/* keep the fixed chrome stable during transitions */
.nav, .aurora-bg, .noise-overlay, .cursor-glow, .wa-float { view-transition-name: none; }

/* reveal variants (handled by the same .is-visible observer) */
.reveal-scale { opacity: 0; transform: scale(.94); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.reveal-scale.is-visible { opacity: 1; transform: none; }
.reveal-clip { clip-path: inset(0 0 100% 0); transition: clip-path .9s cubic-bezier(.16,1,.3,1); }
.reveal-clip.is-visible { clip-path: inset(0 0 0 0); }

/* animated gradient section divider */
.sec-divider { height: 1px; max-width: var(--container); margin: 0 auto; background: linear-gradient(90deg, transparent, var(--border-strong), transparent); position: relative; overflow: hidden; }
.sec-divider::after { content: ""; position: absolute; top: 0; left: -30%; width: 30%; height: 100%; background: linear-gradient(90deg, transparent, rgba(96,23,153,.9), transparent); animation: dividerSweep 5s ease-in-out infinite; }
@keyframes dividerSweep { 0% { left: -30%; } 60%, 100% { left: 130%; } }
@media (prefers-reduced-motion: reduce) { .sec-divider::after { animation: none; display: none; } }

/* ===========================================================================
   ✦ CUSTOM CURSOR (dot + comet ring) + KINETIC TYPE BANDS
   =========================================================================== */
/* özel imleç kapatıldı — varsayılan (native) imleç kullanılıyor */
.cursor-dot, .cursor-ring, .cursor-glow { display: none !important; }
body.has-cursor { cursor: auto; }
body.has-cursor a, body.has-cursor button, body.has-cursor [role="button"] { cursor: pointer; }
body.has-cursor input, body.has-cursor textarea { cursor: text; }

/* kinetic marquee type bands */
.kinetic-band { overflow: hidden; padding: clamp(10px,1.4vw,16px) 0; border-block: 1px solid var(--border); background: rgba(255,255,255,.015); position: relative; }
.kinetic-track { display: flex; align-items: center; width: max-content; white-space: nowrap; will-change: transform; }
.kinetic-track span { font-family: var(--font-head); font-weight: 600; font-size: clamp(16px,2vw,24px); letter-spacing: .01em; padding: 0 .4em; line-height: 1.1; color: transparent; -webkit-text-stroke: .6px rgba(225,226,233,.32); }
.kinetic-track span.fill { color: var(--text); -webkit-text-stroke: 0; }
.kinetic-track span.grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; -webkit-text-stroke: 0; }
.kinetic-track .sep { color: var(--primary-2); -webkit-text-stroke: 0; padding: 0 .15em; font-size: .42em; transform: translateY(-.2em); opacity: .65; }

/* nav: collapse to hamburger earlier (tablets) so links don't wrap/overflow */
@media (max-width: 1024px) {
  .nav-links, .nav .lang-toggle, .nav-cta { display: none; }
  .hamburger { display: flex; }
}
