/* ============================================================
   Car360 — Kurumsal tanıtım sitesi
   Tasarım sistemi · Kurumsal Güven (açık)
   ------------------------------------------------------------
   Renk:  lacivert anchor + ölçülü turuncu + sıcak nötrler
   Tip:   Schibsted Grotesk (başlık) / Hanken Grotesk (gövde) /
          IBM Plex Mono (etiket-veri)
   ============================================================ */

/* --- Tokenlar ------------------------------------------------ */
:root {
  /* Lacivert ölçeği (anchor) */
  --navy-950: #07172e;
  --navy-900: #0b2545;
  --navy-800: #11315a;
  --navy-700: #1a4173;
  --navy-600: #28568f;
  --navy-500: #3d6ea8;

  /* Turuncu (tek vurgu) */
  --orange-600: #d9531e;
  --orange-500: #ef6820;
  --orange-400: #f7894b;
  --orange-100: #fde8da;

  /* Sıcak nötrler — saf gri DEĞİL, hafif lacivert tonlu */
  --ink: #14202e;          /* ana metin */
  --ink-soft: #43566b;     /* ikincil metin */
  --ink-mute: #6b7c8f;     /* üçüncül */
  --line: #e3e8ee;         /* hairline çizgi */
  --line-strong: #cfd7e0;
  --paper: #ffffff;
  --paper-2: #f6f8fb;      /* sayfa zemini */
  --paper-3: #eef2f7;      /* alternatif bölüm */

  /* Durum */
  --green: #117a4d;
  --green-bg: #e2f3ea;
  --red: #c2402f;
  --amber: #b67708;

  /* Yapı */
  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 56px);
  --radius: 14px;
  --radius-sm: 9px;
  --radius-lg: 22px;

  /* Gölge — küçük & keskin (büyük bulanık gölge = AI klişesi) */
  --shadow-xs: 0 1px 2px rgba(11,37,69,.06);
  --shadow-sm: 0 1px 0 rgba(11,37,69,.04), 0 2px 6px rgba(11,37,69,.06);
  --shadow-md: 0 2px 4px rgba(11,37,69,.05), 0 8px 24px rgba(11,37,69,.08);
  --shadow-lg: 0 10px 40px rgba(11,37,69,.12), 0 2px 8px rgba(11,37,69,.06);

  --ease: cubic-bezier(.22,.61,.36,1);
  --t-fast: .15s var(--ease);
  --t: .22s var(--ease);

  --font-display: "Schibsted Grotesk", "Hanken Grotesk", system-ui, sans-serif;
  --font-body: "Hanken Grotesk", system-ui, -apple-system, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, "SF Mono", monospace;
}

/* --- Reset --------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  background: var(--paper-2);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
::selection { background: var(--navy-900); color: #fff; }

/* --- Tipografi ----------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.022em;
  color: var(--navy-950);
}
h1 { font-size: clamp(2.5rem, 1.6rem + 4.2vw, 4.4rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 1.3rem + 2.6vw, 3rem); }
h3 { font-size: clamp(1.25rem, 1.05rem + 1vw, 1.6rem); letter-spacing: -0.018em; }
h4 { font-size: 1.06rem; letter-spacing: -0.01em; }
p { color: var(--ink-soft); }
strong { color: var(--ink); font-weight: 600; }

/* mono etiket — "mühendislik" dokusu */
.eyebrow {
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange-600);
  display: inline-flex;
  align-items: center;
  gap: .55rem;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: var(--orange-500);
  display: inline-block;
}
.eyebrow.is-light { color: var(--orange-400); }
.eyebrow.is-light::before { background: var(--orange-400); }

/* --- Düzen --------------------------------------------------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 8vw, 120px); }
.section--tight { padding-block: clamp(48px, 6vw, 84px); }
.section-head { max-width: 660px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head.is-center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head h2 { margin-bottom: 18px; }
.section-head p { font-size: 1.12rem; }
.lede { font-size: 1.18rem; color: var(--ink-soft); }

/* --- Butonlar ------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-body);
  font-weight: 600; font-size: .98rem;
  padding: .82rem 1.4rem;
  border-radius: 10px;
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast), color var(--t-fast);
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--orange-500);
  color: #fff;
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255,255,255,.18);
}
.btn-primary:hover { background: var(--orange-600); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-primary:active { transform: translateY(0); }
.btn-dark { background: var(--navy-900); color: #fff; }
.btn-dark:hover { background: var(--navy-800); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-ghost {
  background: transparent; color: var(--navy-900);
  box-shadow: inset 0 0 0 1px var(--line-strong);
}
.btn-ghost:hover { box-shadow: inset 0 0 0 1px var(--navy-700); background: #fff; }
.btn-light { background: #fff; color: var(--navy-900); box-shadow: var(--shadow-sm); }
.btn-light:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-lg { padding: 1rem 1.7rem; font-size: 1.04rem; }
.btn-link { color: var(--navy-700); font-weight: 600; display: inline-flex; align-items: center; gap: .4rem; }
.btn-link svg { width: 16px; height: 16px; transition: transform var(--t-fast); }
.btn-link:hover svg { transform: translateX(3px); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(246,248,251,.82);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t), background var(--t);
}
.site-header.is-stuck { border-color: var(--line); background: rgba(246,248,251,.92); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 2rem;
}
.brand { display: inline-flex; align-items: center; gap: .6rem; flex-shrink: 0; }
.brand svg { height: 30px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  font-size: .94rem; font-weight: 500; color: var(--ink-soft);
  padding: .5rem .85rem; border-radius: 8px; transition: color var(--t-fast), background var(--t-fast);
}
.nav-links a:hover { color: var(--navy-950); background: rgba(11,37,69,.05); }
.nav-actions { display: flex; align-items: center; gap: .7rem; }
.nav-toggle { display: none; width: 42px; height: 42px; border-radius: 9px; align-items: center; justify-content: center; }
.nav-toggle:hover { background: rgba(11,37,69,.06); }
.nav-toggle svg { width: 22px; height: 22px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding-top: clamp(48px, 6vw, 88px); padding-bottom: clamp(40px, 6vw, 72px); overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: 1.02fr .98fr;
  gap: clamp(32px, 4vw, 64px); align-items: center;
}
.hero-copy { max-width: 560px; }
.hero h1 { margin: 20px 0 22px; }
.hero h1 .hl { color: var(--orange-600); position: relative; white-space: nowrap; }
.hero-sub { font-size: 1.2rem; color: var(--ink-soft); margin-bottom: 32px; max-width: 500px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }
.hero-trust { margin-top: 30px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.hero-trust .stars { display: inline-flex; gap: 2px; color: var(--orange-500); }
.hero-trust .stars svg { width: 16px; height: 16px; }
.hero-trust span { font-size: .9rem; color: var(--ink-mute); }
.hero-trust b { color: var(--ink); }

/* arka plan dokusu — ince blueprint grid + nokta */
.hero-bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.hero-bg .grid-lines {
  position: absolute; inset: -1px;
  background-image:
    linear-gradient(to right, rgba(11,37,69,.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(11,37,69,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 70% 30%, #000 30%, transparent 78%);
          mask-image: radial-gradient(ellipse 80% 70% at 70% 30%, #000 30%, transparent 78%);
}
.hero-bg .glow {
  position: absolute; top: -180px; right: -120px; width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(239,104,32,.10), transparent 62%);
}

/* badge satırı */
.kicker {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .82rem; font-weight: 500; color: var(--navy-800);
  background: #fff; padding: .4rem .4rem .4rem .75rem;
  border-radius: 100px; box-shadow: var(--shadow-sm); border: 1px solid var(--line);
}
.kicker .tag {
  font-family: var(--font-mono); font-size: .68rem; letter-spacing: .04em;
  background: var(--navy-900); color: #fff; padding: .25rem .5rem; border-radius: 100px;
}

/* ============================================================
   ÜRÜN MOCKUP (gerçek panel görünümü — saf HTML/CSS)
   ============================================================ */
.mock {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); overflow: hidden;
  font-size: 13px; position: relative;
}
.mock-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 11px 14px; border-bottom: 1px solid var(--line); background: var(--paper-2);
}
.mock-dots { display: flex; gap: 6px; }
.mock-dots i { width: 10px; height: 10px; border-radius: 50%; background: var(--line-strong); }
.mock-url {
  margin-left: 6px; font-family: var(--font-mono); font-size: 11px; color: var(--ink-mute);
  background: #fff; border: 1px solid var(--line); border-radius: 6px; padding: 4px 10px;
  flex: 1; max-width: 280px;
}
.mock-body { display: grid; grid-template-columns: 168px 1fr; min-height: 380px; }

/* mock sidebar (gerçek lacivert sidebar'ı yansıtır) */
.mock-side { background: linear-gradient(180deg, var(--navy-900), var(--navy-950)); padding: 14px 10px; color: #a8c4e0; }
.mock-side .ms-brand { display: flex; align-items: center; gap: 7px; padding: 4px 8px 14px; color: #fff; font-weight: 700; font-family: var(--font-display); letter-spacing: -.02em; }
.mock-side .ms-brand .o { color: var(--orange-400); }
.mock-side .ms-grp { font-size: 9.5px; text-transform: uppercase; letter-spacing: .1em; color: #5a8ab0; padding: 12px 8px 5px; font-family: var(--font-mono); }
.mock-side .ms-item { display: flex; align-items: center; gap: 8px; padding: 6px 8px; border-radius: 6px; font-size: 11.5px; color: #a8c4e0; }
.mock-side .ms-item .ic { width: 14px; height: 14px; opacity: .85; }
.mock-side .ms-item.on { background: rgba(59,130,246,.2); color: #fff; border-left: 2px solid var(--orange-400); padding-left: 6px; }

/* mock content */
.mock-main { padding: 16px 16px 18px; background: var(--paper-2); }
.mock-h { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.mock-h .t { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--navy-950); letter-spacing: -.02em; }
.mock-h .sub { font-size: 10.5px; color: var(--ink-mute); font-family: var(--font-mono); }
.mock-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 9px; margin-bottom: 12px; }
.kpi { background: #fff; border: 1px solid var(--line); border-radius: 9px; padding: 9px 10px; }
.kpi .lbl { font-size: 9.5px; color: var(--ink-mute); text-transform: uppercase; letter-spacing: .06em; font-family: var(--font-mono); }
.kpi .val { font-size: 16px; font-weight: 700; color: var(--navy-950); font-family: var(--font-display); margin-top: 3px; letter-spacing: -.02em; }
.kpi .chg { font-size: 9.5px; font-weight: 600; margin-top: 2px; }
.kpi .chg.up { color: var(--green); }
.kpi .chg.down { color: var(--red); }
.mock-row { display: grid; grid-template-columns: 1.5fr 1fr; gap: 9px; }
.mock-card { background: #fff; border: 1px solid var(--line); border-radius: 9px; padding: 11px 12px; }
.mock-card .ct { font-size: 11px; font-weight: 600; color: var(--ink); margin-bottom: 10px; display: flex; justify-content: space-between; align-items: center; }
.mock-card .ct .pill { font-size: 8.5px; font-family: var(--font-mono); color: var(--navy-700); background: var(--paper-3); padding: 2px 6px; border-radius: 20px; }

/* mini sütun grafik */
.bars { display: flex; align-items: flex-end; gap: 6px; height: 92px; padding-top: 6px; }
.bars .b { flex: 1; background: linear-gradient(180deg, var(--navy-600), var(--navy-800)); border-radius: 3px 3px 0 0; position: relative; min-height: 6px; }
.bars .b.accent { background: linear-gradient(180deg, var(--orange-400), var(--orange-600)); }
.bars .b span { position: absolute; bottom: -16px; left: 0; right: 0; text-align: center; font-size: 8px; color: var(--ink-mute); font-family: var(--font-mono); }

/* mini liste / departman */
.mlist { display: flex; flex-direction: column; gap: 7px; }
.mlist .li { display: flex; align-items: center; justify-content: space-between; font-size: 10.5px; }
.mlist .li .nm { color: var(--ink-soft); display: flex; align-items: center; gap: 6px; }
.mlist .li .dot { width: 7px; height: 7px; border-radius: 2px; }
.mlist .li .am { font-family: var(--font-mono); font-weight: 600; color: var(--ink); }

/* yüzen bildirim kartı */
.mock-float {
  position: absolute; right: -14px; bottom: 26px; width: 226px;
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  box-shadow: var(--shadow-lg); padding: 12px 13px; font-size: 12px;
}
.mock-float .mf-h { display: flex; align-items: center; gap: 8px; margin-bottom: 7px; }
.mock-float .mf-ic { width: 26px; height: 26px; border-radius: 7px; background: var(--orange-100); color: var(--orange-600); display: flex; align-items: center; justify-content: center; }
.mock-float .mf-ic svg { width: 15px; height: 15px; }
.mock-float .mf-t { font-weight: 700; font-size: 12px; color: var(--navy-950); font-family: var(--font-display); }
.mock-float .mf-x { font-size: 10px; color: var(--ink-mute); }
.mock-float .mf-b { font-size: 11px; color: var(--ink-soft); line-height: 1.45; }
.mock-float .mf-b b { color: var(--red); }

/* ============================================================
   GÜVEN BANDI / LOGO
   ============================================================ */
.trustbar { border-block: 1px solid var(--line); background: #fff; }
.trustbar .container { display: flex; align-items: center; gap: clamp(24px, 5vw, 64px); flex-wrap: wrap; justify-content: center; padding-block: 26px; }
.trustbar .lab { font-family: var(--font-mono); font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-mute); }
.trustbar .brands { display: flex; align-items: center; gap: clamp(20px, 4vw, 44px); flex-wrap: wrap; }
.trustbar .brands span { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--navy-800); opacity: .62; letter-spacing: -.01em; transition: opacity var(--t); }
.trustbar .brands span:hover { opacity: 1; }

/* ============================================================
   PROBLEM → ÇÖZÜM
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 28px); }
.panel { border-radius: var(--radius-lg); padding: clamp(26px, 3vw, 38px); }
.panel--problem { background: var(--paper-3); border: 1px solid var(--line); }
.panel--solution { background: var(--navy-900); color: #cfe0f1; position: relative; overflow: hidden; }
.panel--solution::after { content:""; position:absolute; inset:0; background-image: linear-gradient(to right, rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(to bottom, rgba(255,255,255,.03) 1px, transparent 1px); background-size: 40px 40px; pointer-events:none; }
.panel h3 { margin-bottom: 6px; }
.panel--solution h3 { color: #fff; }
.panel .phead { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.panel .pico { width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.panel--problem .pico { background: #fbe4df; color: var(--red); }
.panel--solution .pico { background: rgba(247,137,75,.18); color: var(--orange-400); }
.panel .pico svg { width: 20px; height: 20px; }
.checklist { display: flex; flex-direction: column; gap: 14px; position: relative; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; font-size: 1rem; }
.checklist li svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; }
.panel--problem .checklist li { color: var(--ink-soft); }
.panel--problem .checklist li svg { color: var(--ink-mute); }
.panel--solution .checklist li { color: #dce8f4; }
.panel--solution .checklist li svg { color: var(--orange-400); }

/* ============================================================
   MODÜLLER
   ============================================================ */
.modules-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.mod {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; transition: border-color var(--t), box-shadow var(--t), transform var(--t);
  position: relative; display: flex; flex-direction: column;
}
.mod:hover { border-color: var(--line-strong); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.mod-ico { width: 44px; height: 44px; border-radius: 11px; background: var(--navy-900); color: #fff; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.mod-ico svg { width: 22px; height: 22px; }
.mod.is-accent .mod-ico { background: var(--orange-500); }
.mod h3 { font-size: 1.12rem; margin-bottom: 7px; }
.mod p { font-size: .94rem; color: var(--ink-soft); line-height: 1.55; }
.mod .mod-tags { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 6px; }
.mod .mod-tags span { font-family: var(--font-mono); font-size: .68rem; color: var(--navy-700); background: var(--paper-2); border: 1px solid var(--line); padding: 3px 8px; border-radius: 6px; }
/* span genişlikleri (asimetrik düzen) */
.span-6 { grid-column: span 6; }
.span-4 { grid-column: span 4; }
.span-3 { grid-column: span 3; }
.span-12 { grid-column: span 12; }

/* öne çıkan geniş modül kartı */
.mod--wide { grid-column: span 6; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: center; }
.mod--wide .mw-copy { padding: 4px 0; }
.mod--feature { background: var(--navy-900); color: #cfe0f1; border-color: var(--navy-800); }
.mod--feature h3 { color: #fff; }
.mod--feature p { color: #b9cbde; }
.mod--feature .mod-ico { background: var(--orange-500); }

/* ============================================================
   SPOTLIGHT (derinlemesine özellik + mockup)
   ============================================================ */
.spotlight { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.spotlight + .spotlight { margin-top: clamp(64px, 8vw, 110px); }
.spotlight.is-rev .sp-media { order: -1; }
.sp-copy { max-width: 480px; }
.sp-copy .eyebrow { margin-bottom: 16px; }
.sp-copy h2 { font-size: clamp(1.6rem, 1.2rem + 1.8vw, 2.3rem); margin-bottom: 16px; }
.sp-copy > p { font-size: 1.08rem; margin-bottom: 22px; }
.sp-feats { display: flex; flex-direction: column; gap: 14px; }
.sp-feats li { display: flex; gap: 12px; align-items: flex-start; }
.sp-feats .sf-ic { width: 30px; height: 30px; border-radius: 8px; background: var(--orange-100); color: var(--orange-600); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sp-feats .sf-ic svg { width: 16px; height: 16px; }
.sp-feats .sf-t { font-weight: 600; color: var(--ink); font-size: .98rem; }
.sp-feats .sf-d { font-size: .9rem; color: var(--ink-mute); }

/* mockup çerçevesi (spotlight içi) */
.sp-frame {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); overflow: hidden; position: relative;
}
.sp-frame .frame-top { padding: 12px 16px; border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; background: var(--paper-2); }
.sp-frame .frame-top .ft-t { font-weight: 600; font-size: 13px; color: var(--navy-950); display: flex; align-items: center; gap: 8px; }
.sp-frame .frame-top .ft-t svg { width: 16px; height: 16px; color: var(--orange-500); }
.sp-frame .frame-top .ft-x { font-family: var(--font-mono); font-size: 10.5px; color: var(--ink-mute); }
.sp-frame .frame-body { padding: 16px; }

/* tablo mockup (kasa) */
.mtable { width: 100%; border-collapse: collapse; font-size: 12px; }
.mtable th { text-align: left; font-family: var(--font-mono); font-size: 9.5px; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-mute); padding: 7px 8px; border-bottom: 1px solid var(--line); font-weight: 500; }
.mtable td { padding: 9px 8px; border-bottom: 1px solid var(--paper-3); color: var(--ink-soft); }
.mtable td.num { font-family: var(--font-mono); text-align: right; color: var(--ink); font-weight: 500; }
.mtable td .plate { font-family: var(--font-mono); font-weight: 600; color: var(--navy-900); background: var(--paper-2); border: 1px solid var(--line); padding: 1px 5px; border-radius: 4px; font-size: 10.5px; }
.mtable .tag-g { color: var(--green); background: var(--green-bg); font-size: 9.5px; font-weight: 600; padding: 2px 7px; border-radius: 20px; font-family: var(--font-mono); }
.mtable .tag-r { color: var(--red); background: #fbe4df; font-size: 9.5px; font-weight: 600; padding: 2px 7px; border-radius: 20px; font-family: var(--font-mono); }
.mtable tfoot td { border-top: 2px solid var(--line-strong); border-bottom: none; font-weight: 700; color: var(--navy-950); padding-top: 11px; }

/* foto modülü mockup */
.photo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.photo-cell { aspect-ratio: 4/3; border-radius: 8px; border: 1px solid var(--line); position: relative; overflow: hidden; background: linear-gradient(135deg, var(--paper-3), var(--paper-2)); display: flex; align-items: center; justify-content: center; }
.photo-cell svg { width: 26px; height: 26px; color: var(--line-strong); }
.photo-cell .badge { position: absolute; left: 6px; bottom: 6px; font-family: var(--font-mono); font-size: 8px; background: rgba(11,37,69,.82); color: #fff; padding: 2px 6px; border-radius: 5px; }
.photo-cell.cam { background: var(--navy-900); border-color: var(--navy-800); }
.photo-cell.cam svg { color: var(--orange-400); }

/* ============================================================
   SAYILAR
   ============================================================ */
.stats-band { background: var(--navy-950); color: #fff; position: relative; overflow: hidden; }
.stats-band::before { content:""; position:absolute; inset:0; background-image: linear-gradient(to right, rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(to bottom, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 52px 52px; -webkit-mask-image: radial-gradient(ellipse 70% 100% at 50% 0%, #000, transparent 75%); mask-image: radial-gradient(ellipse 70% 100% at 50% 0%, #000, transparent 75%); }
.stats-band .container { position: relative; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 3vw, 40px); }
.stat { border-left: 2px solid rgba(247,137,75,.4); padding-left: 20px; }
.stat .num { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.2rem, 1.6rem + 2vw, 3.2rem); letter-spacing: -.03em; line-height: 1; color: #fff; }
.stat .num .u { color: var(--orange-400); }
.stat .lab { margin-top: 10px; color: #9fb6cd; font-size: .96rem; }

/* ============================================================
   FİYATLANDIRMA — tek paket
   ============================================================ */
.price-panel {
  display: grid; grid-template-columns: .92fr 1.08fr;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-lg); max-width: 960px; margin-inline: auto;
}
.price-left {
  background: linear-gradient(165deg, var(--navy-800), var(--navy-950));
  color: #cfe0f1; padding: clamp(30px, 3.4vw, 46px); position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.price-left::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(to right, rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(to bottom, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 38px 38px;
  -webkit-mask-image: radial-gradient(ellipse 85% 60% at 15% 15%, #000, transparent 78%);
          mask-image: radial-gradient(ellipse 85% 60% at 15% 15%, #000, transparent 78%);
}
.price-left > * { position: relative; z-index: 1; }
.price-left .eyebrow { margin-bottom: 18px; }
.pl-name { font-family: var(--font-display); font-weight: 700; font-size: 1.45rem; color: #fff; letter-spacing: -.02em; margin-bottom: 7px; }
.pl-desc { font-size: .95rem; color: #9fb6cd; margin-bottom: 26px; max-width: 300px; }
.price-amount { display: flex; align-items: baseline; gap: 5px; margin-bottom: 7px; }
.price-amount .cur { font-family: var(--font-display); font-weight: 700; font-size: 1.7rem; color: #fff; }
.price-amount .amt { font-family: var(--font-display); font-weight: 800; font-size: clamp(3rem, 2rem + 3.6vw, 4.2rem); color: #fff; letter-spacing: -.035em; line-height: 1; }
.price-amount .per { font-size: 1.05rem; color: #9fb6cd; }
.pl-vat { font-size: .85rem; color: #7f97b1; margin-bottom: 28px; }
.price-left .btn { width: 100%; justify-content: center; margin-top: auto; }
.pl-fine { margin-top: 14px; font-size: .82rem; color: #8aa2bb; display: flex; align-items: center; gap: 8px; justify-content: center; }
.pl-fine svg { width: 15px; height: 15px; color: var(--orange-400); flex-shrink: 0; }
.price-right { padding: clamp(30px, 3.4vw, 46px); }
.pr-h { font-family: var(--font-display); font-weight: 700; font-size: 1.12rem; color: var(--navy-950); letter-spacing: -.01em; margin-bottom: 4px; }
.pr-sub { font-size: .9rem; color: var(--ink-mute); margin-bottom: 24px; }
.price-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 22px; }
.price-feats li { display: flex; gap: 9px; align-items: flex-start; font-size: .93rem; color: var(--ink-soft); }
.price-feats li svg { width: 18px; height: 18px; color: var(--green); flex-shrink: 0; margin-top: 1px; }
.pricing-foot { text-align: center; margin-top: 30px; font-size: .94rem; color: var(--ink-mute); }
.pricing-foot b { color: var(--ink); }
.pricing-foot a { color: var(--navy-700); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.pricing-foot a:hover { color: var(--orange-600); }

@media (max-width: 820px) {
  .price-panel { grid-template-columns: 1fr; max-width: 470px; }
  .price-left { text-align: left; }
}
@media (max-width: 460px) {
  .price-feats { grid-template-columns: 1fr; }
}

/* ============================================================
   DEMO FORMU / CTA
   ============================================================ */
.cta-wrap { background: var(--navy-900); border-radius: var(--radius-lg); overflow: hidden; position: relative; }
.cta-wrap::before { content:""; position:absolute; inset:0; background-image: linear-gradient(to right, rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(to bottom, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 46px 46px; -webkit-mask-image: radial-gradient(ellipse 60% 80% at 20% 30%, #000, transparent 70%); mask-image: radial-gradient(ellipse 60% 80% at 20% 30%, #000, transparent 70%); }
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 4vw, 56px); position: relative; }
.cta-copy { padding: clamp(36px, 4vw, 56px); padding-right: 0; color: #cfe0f1; align-self: center; }
.cta-copy .eyebrow { margin-bottom: 16px; }
.cta-copy h2 { color: #fff; margin-bottom: 16px; }
.cta-copy > p { color: #b9cbde; font-size: 1.08rem; margin-bottom: 26px; }
.cta-points { display: flex; flex-direction: column; gap: 13px; }
.cta-points li { display: flex; gap: 11px; align-items: center; font-size: .98rem; color: #dce8f4; }
.cta-points li svg { width: 19px; height: 19px; color: var(--orange-400); flex-shrink: 0; }

.form-card { background: #fff; margin: 14px; border-radius: var(--radius); padding: clamp(26px, 3vw, 36px); box-shadow: var(--shadow-lg); }
.form-card h3 { font-size: 1.3rem; margin-bottom: 4px; }
.form-card .fc-sub { font-size: .92rem; color: var(--ink-mute); margin-bottom: 22px; }
.field { margin-bottom: 15px; }
.field label { display: block; font-size: .84rem; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.field label .req { color: var(--orange-600); }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: .95rem; color: var(--ink);
  padding: .7rem .85rem; border: 1px solid var(--line-strong); border-radius: 9px;
  background: var(--paper-2); transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-mute); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--navy-600); background: #fff;
  box-shadow: 0 0 0 3px rgba(40,86,143,.12);
}
.field textarea { resize: vertical; min-height: 76px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-card .btn { width: 100%; justify-content: center; margin-top: 6px; }
.form-fine { font-size: .78rem; color: var(--ink-mute); margin-top: 12px; text-align: center; line-height: 1.5; }
.form-fine a { color: var(--navy-700); text-decoration: underline; text-underline-offset: 2px; }
.form-msg { font-size: .9rem; padding: 12px 14px; border-radius: 9px; margin-top: 14px; display: none; }
.form-msg.ok { display: block; background: var(--green-bg); color: var(--green); border: 1px solid #bfe3cf; }
.form-msg.err { display: block; background: #fbe4df; color: var(--red); border: 1px solid #f3c9c0; }
.form-success { text-align: center; padding: 20px 0; display: none; }
.form-success.show { display: block; }
.form-success .fs-ic { width: 56px; height: 56px; border-radius: 50%; background: var(--green-bg); color: var(--green); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.form-success .fs-ic svg { width: 28px; height: 28px; }
.form-success h3 { margin-bottom: 8px; }
.form-success p { font-size: .95rem; }

/* ============================================================
   SSS
   ============================================================ */
.faq { max-width: 800px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 0; text-align: left; font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; color: var(--navy-950); letter-spacing: -.01em; }
.faq-q .fq-ic { width: 26px; height: 26px; flex-shrink: 0; border-radius: 7px; border: 1px solid var(--line-strong); display: flex; align-items: center; justify-content: center; transition: transform var(--t), background var(--t), color var(--t); }
.faq-q .fq-ic svg { width: 15px; height: 15px; }
.faq-item.open .fq-ic { background: var(--navy-900); color: #fff; border-color: var(--navy-900); transform: rotate(45deg); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height var(--t); }
.faq-a-inner { padding: 0 0 22px; color: var(--ink-soft); font-size: 1rem; max-width: 92%; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy-950); color: #9fb6cd; padding-top: clamp(56px, 7vw, 88px); }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 56px; }
.foot-brand svg { height: 30px; margin-bottom: 18px; }
.foot-brand p { color: #8aa2bb; font-size: .94rem; max-width: 280px; margin-bottom: 20px; }
.foot-contact { display: flex; flex-direction: column; gap: 9px; }
.foot-contact a, .foot-contact span { display: flex; align-items: center; gap: 9px; font-size: .92rem; color: #b9cbde; }
.foot-contact svg { width: 16px; height: 16px; color: var(--orange-400); flex-shrink: 0; }
.foot-contact a:hover { color: #fff; }
.foot-col h4 { color: #fff; font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; font-family: var(--font-mono); font-weight: 500; margin-bottom: 16px; }
.foot-col ul { display: flex; flex-direction: column; gap: 10px; }
.foot-col a { font-size: .92rem; color: #9fb6cd; transition: color var(--t-fast); }
.foot-col a:hover { color: #fff; }
.foot-bot { border-top: 1px solid rgba(255,255,255,.08); padding-block: 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.foot-bot p { font-size: .85rem; color: #6f8aa6; }
.foot-bot .made { font-family: var(--font-mono); font-size: .76rem; color: #5f7b97; }

/* ============================================================
   MOBİL MENÜ
   ============================================================ */
.mobile-menu { position: fixed; inset: 0; z-index: 70; background: var(--paper-2); transform: translateY(-100%); transition: transform var(--t); display: flex; flex-direction: column; padding: 20px var(--gutter) 40px; visibility: hidden; }
.mobile-menu.open { transform: translateY(0); visibility: visible; }
.mm-top { display: flex; align-items: center; justify-content: space-between; height: 52px; margin-bottom: 24px; }
.mm-top svg.lg { height: 28px; }
.mm-close { width: 42px; height: 42px; border-radius: 9px; display: flex; align-items: center; justify-content: center; }
.mm-close:hover { background: rgba(11,37,69,.06); }
.mm-close svg { width: 24px; height: 24px; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu nav a { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--navy-950); padding: 12px 0; border-bottom: 1px solid var(--line); }
.mobile-menu .mm-cta { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.mobile-menu .mm-cta .btn { width: 100%; justify-content: center; padding: 1rem; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .07s; }
.reveal[data-d="2"] { transition-delay: .14s; }
.reveal[data-d="3"] { transition-delay: .21s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { margin-top: 8px; }
  .mock-float { right: 0; }
  .spotlight, .spotlight.is-rev { grid-template-columns: 1fr; gap: 32px; }
  .spotlight.is-rev .sp-media { order: 0; }
  .cta-grid { grid-template-columns: 1fr; }
  .cta-copy { padding: clamp(28px,5vw,40px); padding-bottom: 0; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .foot-brand { grid-column: span 2; }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-actions .btn-ghost { display: none; }
  .nav-toggle { display: flex; }
  .split { grid-template-columns: 1fr; }
  .modules-grid { grid-template-columns: repeat(6, 1fr); }
  .span-6, .span-4, .span-3 { grid-column: span 3; }
  .mod--wide { grid-column: span 6; grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .modules-grid { grid-template-columns: 1fr; }
  .span-6, .span-4, .span-3, .mod--wide { grid-column: span 1; }
  .field-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .foot-brand { grid-column: span 1; }
  .hero-cta { width: 100%; }
  .hero-cta .btn { flex: 1; justify-content: center; }
  .mock-body { grid-template-columns: 1fr; }
  .mock-side { display: none; }
}
