/* ============================================================
   CariTakip.tr — Landing styles
   Yalnızca landing class'ları. Panel CSS'ine dokunulmaz.
   Renk paleti brief'e sadık (teal sabit).
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Brand teal (sabit) */
  --teal:        #0D9488;
  --teal-700:    #0F766E;
  --teal-900:    #115E59;
  --teal-050:    #F0FDFA;
  --teal-100:    #CCFBF1;

  /* Ink / metin rampası */
  --ink:         #0F172A;
  --slate:       #334155;
  --muted:       #64748B;
  --faint:       #94A3B8;

  /* Yüzeyler */
  --bg:          #F8FAFC;
  --surface:     #FFFFFF;
  --surface-2:   #F1F5F9;
  --line:        rgba(15, 23, 42, 0.08);
  --line-strong: rgba(15, 23, 42, 0.14);

  /* Durum */
  --good:        #16A34A;
  --warn:        #D97706;
  --bad:         #DC2626;
  --info:        #0284C7;

  /* WhatsApp (rozet) */
  --wa:          #25D366;
  --wa-deep:     #128C7E;

  /* Tipografi ölçeği */
  --fs-12: 0.75rem;
  --fs-13: 0.8125rem;
  --fs-14: 0.875rem;
  --fs-16: 1rem;
  --fs-18: 1.125rem;
  --fs-20: 1.25rem;
  --fs-24: 1.5rem;
  --fs-30: 1.875rem;
  --fs-38: 2.375rem;

  /* Boşluk 4/8 grid */
  --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px;
  --s-5: 22px; --s-6: 32px; --s-7: 48px; --s-8: 64px;
  --s-9: 96px; --s-10: 128px;

  /* Radius */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* Gölge — katmanlı, ince */
  --sh-1: 0 1px 2px rgba(15,23,42,.06), 0 1px 1px rgba(15,23,42,.04);
  --sh-2: 0 2px 4px rgba(15,23,42,.05), 0 8px 20px -8px rgba(15,23,42,.12);
  --sh-3: 0 10px 30px -12px rgba(15,23,42,.18), 0 4px 8px rgba(15,23,42,.05);
  --sh-teal: 0 18px 48px -16px rgba(13,148,136,.42);

  --maxw: 1160px;
  --nav-h: 68px;
  --ease: cubic-bezier(.22,1,.36,1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body.lp {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: var(--fs-16);
  line-height: 1.6;
  color: var(--slate);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

.lp h1, .lp h2, .lp h3, .lp h4 {
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
  font-weight: 800;
  text-wrap: balance;
}
.lp p { margin: 0; }
.lp a { color: inherit; text-decoration: none; }
.lp img, .lp svg { display: block; max-width: 100%; }
.lp ul { margin: 0; padding: 0; list-style: none; }

.lp :focus-visible {
  outline: 3px solid color-mix(in srgb, var(--teal) 55%, white);
  outline-offset: 2px;
  border-radius: 6px;
}

/* ---------- Layout helpers ---------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--s-5);
}
.section { padding-block: clamp(var(--s-8), 9vw, var(--s-10)); }
.section--tight { padding-block: clamp(var(--s-7), 6vw, var(--s-8)); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-size: var(--fs-13);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--teal-700);
}
.section-head { max-width: 660px; margin-bottom: var(--s-7); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(var(--fs-30), 4.4vw, var(--fs-38));
  margin-top: var(--s-3);
}
.section-head p {
  margin-top: var(--s-4);
  font-size: var(--fs-18);
  color: var(--muted);
  line-height: 1.55;
}

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--teal);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  font: inherit;
  font-weight: 700;
  font-size: var(--fs-16);
  line-height: 1;
  padding: 14px 22px;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  background: var(--btn-bg);
  color: var(--btn-fg);
  cursor: pointer;
  white-space: nowrap;
  transition: transform .18s var(--ease), box-shadow .22s var(--ease),
              background .2s var(--ease), border-color .2s var(--ease);
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary {
  background: linear-gradient(180deg, var(--teal) 0%, var(--teal-700) 100%);
  box-shadow: var(--sh-teal);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 22px 56px -16px rgba(13,148,136,.55); }
.btn--primary:active { transform: translateY(0) scale(.985); }

.btn--ghost {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--line-strong);
  box-shadow: var(--sh-1);
}
.btn--ghost:hover { transform: translateY(-2px); border-color: var(--teal); color: var(--teal-700); }
.btn--ghost:active { transform: translateY(0) scale(.985); }

.btn--lg { padding: 17px 30px; font-size: var(--fs-18); }
.btn--block { width: 100%; }
.btn--white { background: #fff; color: var(--teal-900); box-shadow: var(--sh-2); }
.btn--white:hover { transform: translateY(-2px); }
.btn--outline-white {
  background: rgba(255,255,255,.08);
  color: #fff;
  border-color: rgba(255,255,255,.45);
}
.btn--outline-white:hover { background: rgba(255,255,255,.16); transform: translateY(-2px); }

/* Google button glyph */
.g-mark { width: 18px; height: 18px; flex: none; }

/* ---------- Pills / badges ---------- */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--sh-1);
  font-size: var(--fs-14);
  font-weight: 600;
  color: var(--slate);
}
.chip svg { width: 16px; height: 16px; color: var(--teal); flex: none; }
.chip--bare { background: transparent; border: 0; box-shadow: none; padding-inline: 0; }

.badge-wa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  font-size: var(--fs-12);
  font-weight: 700;
  color: var(--wa-deep);
  background: color-mix(in srgb, var(--wa) 16%, white);
  border: 1px solid color-mix(in srgb, var(--wa) 35%, white);
}
.badge-wa svg { width: 13px; height: 13px; }

.pulse-dot {
  position: relative;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--good); flex: none;
}
.pulse-dot::after {
  content: ""; position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid var(--good); opacity: .6;
  animation: pulse 2s var(--ease) infinite;
}
@keyframes pulse {
  0%   { transform: scale(.7); opacity: .6; }
  70%  { transform: scale(1.6); opacity: 0; }
  100% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .pulse-dot::after { animation: none; } }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
}
.nav.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px -18px rgba(15,23,42,.4);
}
.nav__inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: var(--s-5);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: var(--fs-18);
  color: var(--ink);
  letter-spacing: -0.02em;
}
.brand__logo {
  width: 34px; height: 34px; border-radius: 10px;
  background: linear-gradient(150deg, var(--teal) 0%, var(--teal-900) 100%);
  display: grid; place-items: center;
  box-shadow: var(--sh-teal);
  flex: none;
}
.brand__logo svg { width: 19px; height: 19px; color: #fff; }
.brand b { color: var(--teal-700); font-weight: 800; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav__links a {
  padding: 9px 13px;
  border-radius: var(--r-pill);
  font-size: var(--fs-14);
  font-weight: 600;
  color: var(--slate);
  transition: color .18s var(--ease), background .18s var(--ease);
}
.nav__links a:hover { color: var(--teal-700); background: var(--teal-050); }
.nav__cta { display: flex; align-items: center; gap: var(--s-3); margin-left: var(--s-4); }
.nav__login { font-weight: 700; font-size: var(--fs-14); color: var(--ink); padding: 9px 6px; }
.nav__login:hover { color: var(--teal-700); }

.nav__burger {
  display: none;
  margin-left: auto;
  width: 44px; height: 44px;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  border-radius: 12px;
  cursor: pointer;
  align-items: center; justify-content: center;
  box-shadow: var(--sh-1);
}
.nav__burger span {
  display: block; position: relative;
  width: 19px; height: 2px; border-radius: 2px; background: var(--ink);
  transition: transform .25s var(--ease), opacity .2s var(--ease);
}
.nav__burger span::before, .nav__burger span::after {
  content: ""; position: absolute; left: 0; width: 19px; height: 2px; border-radius: 2px; background: var(--ink);
  transition: transform .25s var(--ease), opacity .2s var(--ease);
}
.nav__burger span::before { top: -6px; }
.nav__burger span::after  { top: 6px; }
.nav__burger[aria-expanded="true"] span { background: transparent; }
.nav__burger[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span::after  { transform: translateY(-6px) rotate(-45deg); }

/* Mobile menu panel */
.nav__mobile {
  position: fixed;
  inset: var(--nav-h) 0 auto 0;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--sh-3);
  padding: var(--s-4) var(--s-5) var(--s-6);
  transform: translateY(-12px);
  opacity: 0;
  visibility: hidden;
  transition: transform .28s var(--ease), opacity .22s var(--ease), visibility .28s;
  z-index: 55;
  max-height: calc(100dvh - var(--nav-h));
  overflow-y: auto;
}
.nav__mobile.open { transform: translateY(0); opacity: 1; visibility: visible; }
.nav__mobile a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 6px;
  font-size: var(--fs-18); font-weight: 700; color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.nav__mobile a svg { width: 18px; height: 18px; color: var(--faint); }
.nav__mobile .nav__mobile-cta { display: grid; gap: var(--s-3); margin-top: var(--s-5); }
.nav__scrim {
  position: fixed; inset: 0; z-index: 50;
  background: rgba(15,23,42,.35);
  opacity: 0; visibility: hidden;
  transition: opacity .25s var(--ease), visibility .25s;
}
.nav__scrim.open { opacity: 1; visibility: visible; }
body.menu-open { overflow: hidden; }

@media (max-width: 920px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: inline-flex; }
}

/* ============================================================
   HERO (shared)
   ============================================================ */
.hero { position: relative; padding-top: clamp(var(--s-7), 6vw, var(--s-9)); }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: var(--s-2);
  padding: 7px 14px 7px 10px;
  border-radius: var(--r-pill);
  background: var(--teal-050);
  border: 1px solid var(--teal-100);
  color: var(--teal-900);
  font-size: var(--fs-13); font-weight: 700;
}
.hero__eyebrow .pulse-dot { background: var(--teal); }
.hero__eyebrow .pulse-dot::after { border-color: var(--teal); }

.hero h1 {
  font-size: clamp(2.1rem, 6.4vw, 4rem);
  letter-spacing: -0.035em;
  line-height: 1.02;
}
.hero h1 .accent { color: var(--teal-700); position: relative; white-space: nowrap; }
.hero h1 .accent::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 4%;
  height: .34em; z-index: -1;
  background: var(--teal-100);
  border-radius: 4px;
}
.hero__sub {
  font-size: clamp(var(--fs-18), 2.2vw, 1.3rem);
  color: var(--slate);
  line-height: 1.55;
  max-width: 46ch;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--s-3); }
.hero__note { display: inline-flex; align-items: center; gap: 8px; font-size: var(--fs-14); color: var(--muted); }
.hero__note svg { width: 16px; height: 16px; color: var(--teal); }

/* show only active variant */
.hero-variant { display: none; }
body[data-hero="a"] #hero-a,
body[data-hero="b"] #hero-b,
body[data-hero="c"] #hero-c { display: block; }

/* Variant A — split */
.hero-a .hero__grid {
  display: grid;
  grid-template-columns: 1.02fr 1.1fr;
  gap: clamp(var(--s-6), 5vw, var(--s-9));
  align-items: center;
}
.hero-a .hero__copy { display: grid; gap: var(--s-5); align-content: start; }
.hero-a .hero__actions { margin-top: var(--s-1); }

/* Variant B — centered, mockup below over band */
.hero-b { text-align: center; }
.hero-b .hero__copy { display: grid; gap: var(--s-5); justify-items: center; max-width: 820px; margin-inline: auto; }
.hero-b .hero__actions { justify-content: center; }
.hero-b .hero__stage { margin-top: clamp(var(--s-7), 6vw, var(--s-8)); position: relative; }
.hero-b .hero__band {
  position: absolute; inset: 38% 0 -8% 0;
  background: radial-gradient(120% 100% at 50% 0%, var(--teal-050) 0%, var(--bg) 70%);
  z-index: -1;
}

/* Variant C — teal immersive */
.hero-c {
  position: relative;
  color: #fff;
  margin-top: calc(-1 * var(--s-7));
  padding-top: calc(var(--nav-h) + var(--s-8));
  padding-bottom: var(--s-9);
  background:
    radial-gradient(120% 90% at 85% -10%, rgba(204,251,241,.18) 0%, transparent 55%),
    linear-gradient(165deg, var(--teal-700) 0%, var(--teal-900) 70%);
  overflow: hidden;
}
.hero-c::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(80% 70% at 50% 30%, #000 0%, transparent 75%);
}
.hero-c .wrap { position: relative; z-index: 1; }
.hero-c .hero__grid {
  display: grid; grid-template-columns: 1fr 1.08fr;
  gap: clamp(var(--s-6), 5vw, var(--s-8)); align-items: center;
}
.hero-c .hero__copy { display: grid; gap: var(--s-5); }
.hero-c h1 { color: #fff; }
.hero-c h1 .accent { color: #fff; }
.hero-c h1 .accent::after { background: rgba(204,251,241,.28); }
.hero-c .hero__sub { color: rgba(240,253,250,.86); }
.hero-c .hero__eyebrow { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.25); color: #fff; }
.hero-c .hero__eyebrow .pulse-dot { background: var(--teal-100); }
.hero-c .hero__eyebrow .pulse-dot::after { border-color: var(--teal-100); }
.hero-c .hero__note { color: rgba(240,253,250,.82); }
.hero-c .hero__note svg { color: var(--teal-100); }
.hero-c .chip { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); color: #fff; }
.hero-c .chip svg { color: var(--teal-100); }

/* ============================================================
   APP MOCKUP (telefon + masaüstü panel, katmanlı)
   ============================================================ */
.mock { position: relative; }
.mock__glow {
  position: absolute; inset: -8% -6% -12% -6%; z-index: 0;
  background: radial-gradient(60% 60% at 60% 35%, rgba(13,148,136,.18), transparent 70%);
  filter: blur(8px);
}

/* Desktop panel window */
.panel {
  position: relative; z-index: 1;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-3);
  overflow: hidden;
  width: 100%;
}
.panel__bar {
  display: flex; align-items: center; gap: var(--s-3);
  padding: 11px 14px;
  border-bottom: 1px solid var(--line);
  background: var(--surface-2);
}
.panel__dots { display: flex; gap: 6px; }
.panel__dots i { width: 10px; height: 10px; border-radius: 50%; background: #CBD5E1; }
.panel__dots i:nth-child(1){ background:#F87171; } 
.panel__dots i:nth-child(2){ background:#FBBF24; } 
.panel__dots i:nth-child(3){ background:#34D399; }
.panel__addr {
  margin-left: 6px; flex: 1;
  display: flex; align-items: center; gap: 7px;
  font-size: var(--fs-12); color: var(--muted); font-weight: 600;
  background: var(--surface); border: 1px solid var(--line);
  padding: 5px 12px; border-radius: var(--r-pill);
  max-width: 260px;
}
.panel__addr svg { width: 12px; height: 12px; color: var(--good); }

.panel__body { display: grid; grid-template-columns: 168px 1fr; min-height: 312px; }
.panel__side {
  border-right: 1px solid var(--line);
  padding: var(--s-4) var(--s-3);
  display: grid; gap: 3px; align-content: start;
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 130%);
}
.panel__brandrow { display: flex; align-items: center; gap: 8px; padding: 4px 8px 12px; }
.panel__brandrow .brand__logo { width: 26px; height: 26px; border-radius: 8px; }
.panel__brandrow .brand__logo svg { width: 14px; height: 14px; }
.panel__brandrow b { font-size: var(--fs-13); color: var(--ink); font-weight: 800; }
.side-item {
  display: flex; align-items: center; gap: 9px;
  padding: 8px 10px; border-radius: 9px;
  font-size: var(--fs-13); font-weight: 600; color: var(--muted);
}
.side-item svg { width: 15px; height: 15px; }
.side-item.active { background: var(--teal-050); color: var(--teal-900); font-weight: 700; }
.side-item.active svg { color: var(--teal); }

.panel__main { padding: var(--s-4); display: grid; gap: var(--s-4); align-content: start; }
.panel__title { display: flex; align-items: center; justify-content: space-between; }
.panel__title h4 { font-size: var(--fs-16); }
.kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-3); }
.kpi {
  border: 1px solid var(--line); border-radius: var(--r-sm);
  padding: 11px 12px; background: var(--surface);
}
.kpi span { font-size: var(--fs-12); color: var(--muted); font-weight: 600; }
.kpi b { display: block; margin-top: 3px; font-size: var(--fs-18); color: var(--ink); font-variant-numeric: tabular-nums; letter-spacing: -.02em; }
.kpi b.good { color: var(--good); }
.kpi b.bad  { color: var(--bad); }

.ctable { border: 1px solid var(--line); border-radius: var(--r-sm); overflow: hidden; }
.crow {
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: var(--s-3);
  padding: 10px 12px;
  border-top: 1px solid var(--line);
  background: var(--surface);
}
.crow:first-child { border-top: 0; }
.crow__who { display: flex; align-items: center; gap: 10px; min-width: 0; }
.avatar {
  width: 30px; height: 30px; border-radius: 9px; flex: none;
  display: grid; place-items: center;
  font-size: var(--fs-12); font-weight: 800; color: var(--teal-900);
  background: var(--teal-100);
}
.crow__name { font-size: var(--fs-13); font-weight: 700; color: var(--ink); line-height: 1.2; }
.crow__meta { font-size: var(--fs-12); color: var(--faint); }
.crow__amt { font-size: var(--fs-14); font-weight: 800; font-variant-numeric: tabular-nums; }
.crow__amt.good { color: var(--good); }
.crow__amt.bad  { color: var(--bad); }
.crow__amt.zero { color: var(--faint); }

/* Phone overlay */
.phone {
  position: absolute;
  z-index: 2;
  width: 220px;
  right: -14px;
  bottom: -34px;
  background: #0B1220;
  border-radius: 34px;
  padding: 8px;
  box-shadow: 0 30px 60px -20px rgba(15,23,42,.5), 0 0 0 1px rgba(15,23,42,.06);
}
.phone__screen {
  background: var(--bg);
  border-radius: 27px;
  overflow: hidden;
  position: relative;
}
.phone__notch {
  position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 76px; height: 18px; border-radius: var(--r-pill);
  background: #0B1220; z-index: 3;
}
.phone__top {
  background: linear-gradient(165deg, var(--teal) 0%, var(--teal-900) 100%);
  color: #fff; padding: 30px 16px 16px;
}
.phone__top .ph-eyebrow { font-size: 11px; font-weight: 700; opacity: .85; display: flex; align-items: center; gap: 6px; }
.phone__top .ph-name { font-size: var(--fs-16); font-weight: 800; margin-top: 8px; }
.phone__top .ph-amt { font-size: 1.6rem; font-weight: 800; letter-spacing: -.02em; margin-top: 2px; font-variant-numeric: tabular-nums; }
.phone__top .ph-amt small { font-size: var(--fs-12); font-weight: 700; opacity: .85; }
.phone__body { padding: 12px; display: grid; gap: 8px; }
.ph-tx {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 11px; padding: 9px 11px;
}
.ph-tx .l { font-size: var(--fs-12); }
.ph-tx .l b { display: block; color: var(--ink); font-weight: 700; }
.ph-tx .l span { color: var(--faint); font-size: 11px; }
.ph-tx .r { font-size: var(--fs-13); font-weight: 800; font-variant-numeric: tabular-nums; }
.ph-tx .r.plus { color: var(--good); }
.ph-tx .r.minus { color: var(--bad); }
.ph-wa {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 2px;
  background: var(--wa); color: #fff;
  padding: 11px; border-radius: 12px;
  font-size: var(--fs-13); font-weight: 800;
  box-shadow: 0 8px 18px -8px rgba(37,211,102,.7);
}
.ph-wa svg { width: 16px; height: 16px; }

/* hero-c panel theming tweak */
.hero-c .panel { box-shadow: 0 40px 80px -28px rgba(0,0,0,.5); }
.hero-c .mock__glow { background: radial-gradient(60% 60% at 60% 35%, rgba(204,251,241,.22), transparent 70%); }

/* Float animation */
@media (prefers-reduced-motion: no-preference) {
  .mock--float .phone { animation: floaty 6s ease-in-out infinite; }
  @keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}
.trust__inner {
  display: flex; flex-wrap: wrap; align-items: center; gap: var(--s-5);
  padding-block: var(--s-5);
}
.trust__lead { font-weight: 800; color: var(--ink); font-size: var(--fs-16); display: flex; align-items: center; gap: 10px; }
.trust__lead svg { width: 20px; height: 20px; color: var(--teal); }
.trust__items { display: flex; flex-wrap: wrap; gap: var(--s-5); margin-left: auto; }
.trust__item { display: inline-flex; align-items: center; gap: 8px; font-size: var(--fs-14); font-weight: 600; color: var(--slate); }
.trust__item svg { width: 17px; height: 17px; color: var(--teal); }

/* ============================================================
   FEATURES
   ============================================================ */
.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-4);
}
.fcard {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: var(--s-5);
  box-shadow: var(--sh-1);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
  display: grid; gap: 10px; align-content: start;
}
.fcard:hover { transform: translateY(-4px); box-shadow: var(--sh-2); border-color: var(--teal-100); }
.fcard__ic {
  width: 44px; height: 44px; border-radius: 13px;
  display: grid; place-items: center;
  background: var(--teal-050); color: var(--teal-700);
  border: 1px solid var(--teal-100);
}
.fcard__ic svg { width: 22px; height: 22px; }
.fcard h3 { font-size: var(--fs-18); }
.fcard p { font-size: var(--fs-14); color: var(--muted); line-height: 1.5; }
.fcard--wa { border-color: color-mix(in srgb, var(--wa) 30%, white); background: linear-gradient(180deg, color-mix(in srgb, var(--wa) 7%, white), var(--surface)); }
.fcard--wa .fcard__ic { background: color-mix(in srgb, var(--wa) 14%, white); color: var(--wa-deep); border-color: color-mix(in srgb, var(--wa) 30%, white); }
.fcard__top { display: flex; align-items: center; justify-content: space-between; gap: 8px; }

@media (max-width: 980px) { .features__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .features__grid { grid-template-columns: 1fr; } }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how { background: var(--surface); border-block: 1px solid var(--line); }
.how__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-5); counter-reset: step; }
.step {
  position: relative;
  padding: var(--s-6) var(--s-5) var(--s-5);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--bg);
  display: grid; gap: 10px; align-content: start;
}
.step__num {
  position: absolute; top: -20px; left: var(--s-5);
  width: 44px; height: 44px; border-radius: 13px;
  display: grid; place-items: center;
  font-weight: 800; font-size: var(--fs-18); color: #fff;
  background: linear-gradient(165deg, var(--teal) 0%, var(--teal-900) 100%);
  box-shadow: var(--sh-teal);
}
.step h3 { font-size: var(--fs-20); margin-top: var(--s-3); }
.step p { font-size: var(--fs-14); color: var(--muted); line-height: 1.55; }
.step__ic { color: var(--teal); }
.step__ic svg { width: 22px; height: 22px; }
.how__conn { display: none; }
@media (max-width: 860px) { .how__grid { grid-template-columns: 1fr; gap: var(--s-7); } }

/* ============================================================
   PRICING
   ============================================================ */
.price__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: var(--s-5);
  align-items: stretch;
  max-width: 920px; margin-inline: auto;
}
.pcard {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: var(--s-6);
  box-shadow: var(--sh-2);
  display: grid; gap: var(--s-4); align-content: start;
}
.pcard--hero {
  position: relative; overflow: hidden;
  color: #fff;
  background:
    radial-gradient(120% 90% at 90% 0%, rgba(204,251,241,.2), transparent 55%),
    linear-gradient(165deg, var(--teal-700) 0%, var(--teal-900) 100%);
  border: 0;
  box-shadow: var(--sh-teal);
}
.pcard--hero::before {
  content:""; position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(70% 70% at 80% 0%, #000, transparent 70%);
}
.pcard--hero > * { position: relative; }
.pcard__tag {
  display: inline-flex; align-items: center; gap: 8px;
  align-self: start;
  padding: 7px 14px; border-radius: var(--r-pill);
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.28);
  font-size: var(--fs-13); font-weight: 700;
}
.pcard__price { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.pcard__price .big { font-size: clamp(2.6rem, 7vw, 3.4rem); font-weight: 800; letter-spacing: -.03em; line-height: 1; }
.pcard__price .unit { font-size: var(--fs-18); font-weight: 700; opacity: .9; }
.pcard__after { font-size: var(--fs-14); opacity: .88; }
.pcard__after b { font-weight: 800; }
.plist { display: grid; gap: 11px; }
.plist li { display: flex; align-items: flex-start; gap: 10px; font-size: var(--fs-15, .94rem); font-weight: 600; }
.plist li svg { width: 19px; height: 19px; flex: none; margin-top: 1px; }
.pcard--hero .plist li svg { color: var(--teal-100); }
.pcard__price .strike { text-decoration: line-through; opacity: .6; font-weight: 700; font-size: var(--fs-18); }

.pcard--plain h3 { font-size: var(--fs-20); }
.pcard--plain .plist li svg { color: var(--teal); }
.pcard__row { display:flex; align-items:baseline; gap:10px; }
.pcard--plain .pcard__price .big { color: var(--ink); }
.pmini { font-size: var(--fs-13); color: var(--muted); }
.pmini b { color: var(--ink); }
.price__foot { text-align: center; margin-top: var(--s-5); font-size: var(--fs-13); color: var(--muted); display:flex; gap:8px; align-items:center; justify-content:center; }
.price__foot svg { width: 15px; height: 15px; color: var(--faint); }

@media (max-width: 760px) { .price__grid { grid-template-columns: 1fr; } }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 800px; margin-inline: auto; display: grid; gap: var(--s-3); }
.faq__item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.faq__item[open] { border-color: var(--teal-100); box-shadow: var(--sh-1); }
.faq__q {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-4);
  padding: var(--s-5);
  font-size: var(--fs-18); font-weight: 700; color: var(--ink);
  cursor: pointer;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q .ic {
  width: 30px; height: 30px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  background: var(--teal-050); color: var(--teal-700);
  transition: transform .28s var(--ease), background .2s var(--ease);
}
.faq__q .ic svg { width: 16px; height: 16px; }
.faq__item[open] .faq__q .ic { transform: rotate(135deg); background: var(--teal); color: #fff; }
.faq__a { padding: 0 var(--s-5) var(--s-5); color: var(--muted); font-size: var(--fs-16); line-height: 1.6; max-width: 64ch; }
.faq__a b { color: var(--slate); }

/* ============================================================
   CTA BAND
   ============================================================ */
.ctaband { position: relative; }
.ctaband__box {
  position: relative; overflow: hidden;
  border-radius: var(--r-xl);
  padding: clamp(var(--s-7), 7vw, var(--s-9)) var(--s-6);
  text-align: center;
  color: #fff;
  background:
    radial-gradient(100% 120% at 50% -20%, rgba(204,251,241,.22), transparent 60%),
    linear-gradient(160deg, var(--teal) 0%, var(--teal-900) 90%);
  box-shadow: var(--sh-teal);
}
.ctaband__box::before {
  content:""; position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(70% 80% at 50% 0%, #000, transparent 75%);
}
.ctaband__box > * { position: relative; }
.ctaband h2 { color: #fff; font-size: clamp(var(--fs-30), 5vw, 3rem); }
.ctaband p { margin: var(--s-4) auto 0; max-width: 52ch; font-size: var(--fs-18); color: rgba(240,253,250,.9); }
.ctaband__actions { display: flex; flex-wrap: wrap; gap: var(--s-3); justify-content: center; margin-top: var(--s-6); }
.ctaband__mini { margin-top: var(--s-5); font-size: var(--fs-13); color: rgba(240,253,250,.8); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--surface); border-top: 1px solid var(--line); padding-block: var(--s-8) var(--s-6); }
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: var(--s-6);
}
.footer__brand { display: grid; gap: var(--s-3); align-content: start; max-width: 280px; }
.footer__brand p { font-size: var(--fs-14); color: var(--muted); line-height: 1.55; }
.footer__col h5 { font-size: var(--fs-13); text-transform: uppercase; letter-spacing: .08em; color: var(--faint); margin: 0 0 var(--s-3); font-weight: 800; }
.footer__col a { display: block; padding: 6px 0; font-size: var(--fs-14); color: var(--slate); font-weight: 600; }
.footer__col a:hover { color: var(--teal-700); }
.footer__bottom {
  margin-top: var(--s-7); padding-top: var(--s-5);
  border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: var(--s-4); justify-content: space-between; align-items: center;
}
.footer__bottom small { font-size: var(--fs-13); color: var(--muted); }
.footer__disclaimer {
  font-size: var(--fs-12); color: var(--faint); line-height: 1.5;
  max-width: 560px; margin-top: var(--s-3);
}
@media (max-width: 820px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--s-6); }
  .footer__brand { grid-column: 1 / -1; max-width: none; }
}
@media (max-width: 460px) { .footer__grid { grid-template-columns: 1fr; } }

/* ============================================================
   SCROLL REVEAL (ölçülü)
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
  .reveal.in { opacity: 1; transform: none; }
  .stagger > * { opacity: 0; transform: translateY(16px); transition: opacity .5s var(--ease), transform .5s var(--ease); }
  .stagger.in > * { opacity: 1; transform: none; }
  .stagger.in > *:nth-child(1){ transition-delay: .04s; }
  .stagger.in > *:nth-child(2){ transition-delay: .09s; }
  .stagger.in > *:nth-child(3){ transition-delay: .14s; }
  .stagger.in > *:nth-child(4){ transition-delay: .19s; }
  .stagger.in > *:nth-child(5){ transition-delay: .24s; }
  .stagger.in > *:nth-child(6){ transition-delay: .29s; }
  .stagger.in > *:nth-child(7){ transition-delay: .34s; }
  .stagger.in > *:nth-child(8){ transition-delay: .39s; }
}

/* ============================================================
   HERO RESPONSIVE
   ============================================================ */
@media (max-width: 940px) {
  .hero-a .hero__grid, .hero-c .hero__grid { grid-template-columns: 1fr; gap: clamp(var(--s-8), 14vw, 110px); }
  .hero-a .hero__stage, .hero-c .hero__stage { max-width: 540px; }
}
@media (max-width: 560px) {
  .phone { width: 168px; right: -6px; bottom: -26px; }
  .panel__body { grid-template-columns: 1fr; }
  .panel__side { display: none; }
  .kpis { grid-template-columns: 1fr 1fr; }
  .kpi:nth-child(3) { display: none; }
  .hero__actions .btn { flex: 1; }
}

/* ============================================================
   DESIGN PREVIEW — hero variant switcher (yalnızca önizleme)
   ============================================================ */
.hero-switch {
  position: fixed; z-index: 90;
  right: 16px; bottom: 16px;
  display: flex; align-items: center; gap: 6px;
  padding: 6px;
  background: rgba(15,23,42,.9);
  border-radius: var(--r-pill);
  box-shadow: var(--sh-3);
  backdrop-filter: blur(8px);
}
.hero-switch span { color: #fff; font-size: 11px; font-weight: 700; padding-left: 8px; opacity: .7; }
.hero-switch button {
  border: 0; cursor: pointer;
  width: 30px; height: 30px; border-radius: 50%;
  font: inherit; font-weight: 800; font-size: 13px;
  background: rgba(255,255,255,.12); color: #fff;
  transition: background .18s var(--ease), transform .18s var(--ease);
}
.hero-switch button:hover { background: rgba(255,255,255,.24); }
.hero-switch button.active { background: var(--teal); color: #fff; transform: scale(1.05); }
@media (max-width: 560px) { .hero-switch span { display: none; } }
