/* ============================================================
   KOKPİT AJANS — Koyu Mode / Modern SaaS Premium Tema
   Sağlayıcı: MosFlex Market (Kokpit Ajans)
   ============================================================ */

:root {
  --bg: #070b14;
  --surface: #0f172a;
  --surface-2: #1e293b;
  --surface-card: rgba(15, 23, 42, 0.75);
  
  --ink: #f8fafc;
  --ink-soft: #cbd5e1;
  --muted: #94a3b8;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);

  --brand: #6d5efc;
  --brand-2: #9b6bff;
  --brand-ink: #a78bfa;
  --brand-tint: rgba(109, 94, 252, 0.15);

  --accent: #10b981;
  --accent-light: #34d399;
  --accent-tint: rgba(16, 185, 129, 0.15);
  --cyan: #06b6d4;

  --red: #8b5cf6;
  --blue: #06b6d4;
  --green: #10b981;
  --paper: #070b14;
  --white: #0f172a;

  --serif: "Instrument Serif", Georgia, serif;
  --sans: "DM Sans", system-ui, -apple-system, sans-serif;
  --max: 1220px;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 10px 40px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 50px -10px rgba(109, 94, 252, 0.3);

  --amber: #f0b96e;
  --amber-2: #d98c4a;
  --amber-ink: #1c1206;
  --shadow-amber: 0 8px 24px rgba(240, 185, 110, .25);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background-color: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
img { display: block; width: 100%; height: auto; }

.skip-link {
  position: fixed; left: 16px; top: -70px; z-index: 100;
  background: var(--brand); color: white; padding: 10px 16px; border-radius: 8px;
}
.skip-link:focus { top: 16px; }

/* ---------- Top Bar ---------- */
.top-bar {
  background: #030712;
  color: var(--muted);
  font-size: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}
.top-bar-inner {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.top-bar-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
  font-weight: 500;
}
.top-bar-phone a {
  color: var(--accent-light);
  text-decoration: underline;
  font-weight: 700;
}
.top-bar-phone a:hover { color: #6ee7b7; }
.top-bar-legal {
  color: var(--muted);
  font-size: 11.5px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.top-bar-legal strong { color: var(--ink-soft); }

/* ---------- Language Switcher ---------- */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  background: rgba(15, 23, 42, 0.8);
  padding: 4px 8px;
  border-radius: 20px;
  border: 1px solid var(--line-strong);
}
.lang-btn {
  background: transparent;
  border: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 12px;
  transition: color .2s, background .2s;
}
.lang-btn:hover {
  color: var(--cyan);
}
.lang-btn.active {
  color: #fff;
  background: var(--brand);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 50;
  background: rgba(7, 11, 20, 0.85);
  border-bottom: 1px solid var(--line);
  backdrop-filter: saturate(180%) blur(16px);
  transition: background .3s, border-color .3s;
}
.site-header.scrolled {
  background: rgba(7, 11, 20, 0.95);
  border-bottom-color: var(--line-strong);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.nav-shell {
  width: min(calc(100% - 48px), var(--max));
  height: 80px; margin: auto;
  display: flex; align-items: center; justify-content: space-between;
}
.brand {
  display: inline-flex; align-items: center; gap: 13px;
  position: relative; z-index: 3; font-size: 15px; font-weight: 800; letter-spacing: .08em;
  color: var(--ink);
}
.brand em { color: var(--brand-ink); font-style: normal; }
.brand-logo {
  width: 50px; height: 50px; display: block; flex: 0 0 auto;
  border-radius: 12px; object-fit: cover; border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 25px rgba(109, 94, 252, 0.55), 0 0 10px rgba(6, 182, 212, 0.3);
  transition: transform .25s ease, box-shadow .25s ease;
}
.brand:hover .brand-logo {
  transform: scale(1.05);
  box-shadow: 0 0 35px rgba(109, 94, 252, 0.8), 0 0 15px rgba(6, 182, 212, 0.5);
}

.hero-brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 18px 8px 10px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(109, 94, 252, 0.4);
  border-radius: 99px;
  backdrop-filter: blur(14px);
  margin-bottom: 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35), 0 0 35px rgba(109, 94, 252, 0.25);
}
.hero-brand-badge img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(109, 94, 252, 0.5);
}
.hero-brand-badge span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--ink);
  text-transform: uppercase;
}
.hero-brand-badge em {
  color: var(--accent-light);
  font-style: normal;
}
.nav-menu { display: flex; align-items: center; gap: 32px; }
.nav-menu > a { font-size: 13.5px; font-weight: 500; color: var(--ink-soft); transition: color .2s; }
.nav-menu > a:hover { color: var(--brand-ink); }
.nav-cta {
  padding: 10px 20px; border-radius: 99px;
  background: linear-gradient(135deg, var(--amber), var(--amber-2));
  color: var(--amber-ink) !important; font-weight: 700 !important;
  box-shadow: var(--shadow-amber);
  transition: transform .2s, box-shadow .2s !important;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(240, 185, 110, .4) !important; }

.menu-button {
  display: none; width: 42px; height: 42px; border: 0; background: none;
  flex-direction: column; align-items: center; justify-content: center; gap: 6px; cursor: pointer;
}
.menu-button span { width: 22px; height: 2px; background: var(--ink); transition: .25s; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 780px;
  padding: 150px max(24px, calc((100vw - var(--max))/2)) 80px;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(600px 500px at 75% 20%, rgba(109, 94, 252, 0.18), transparent 70%),
    radial-gradient(500px 450px at 20% 40%, rgba(16, 185, 129, 0.12), transparent 70%),
    radial-gradient(480px 420px at 92% 88%, rgba(240, 185, 110, 0.12), transparent 70%);
  pointer-events: none;
}
.hero-grid {
  width: 100%; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center;
  gap: clamp(40px, 6vw, 90px);
}
.eyebrow, .kicker {
  color: var(--brand-ink); font-size: 11px; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
}
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.eyebrow span { width: 26px; height: 2px; background: var(--brand); border-radius: 2px; }
.hero h1 {
  font-size: clamp(52px, 6.4vw, 86px); line-height: .92; letter-spacing: -.05em; font-weight: 600;
  color: var(--ink);
}
.hero h1 em, h2 em {
  background: linear-gradient(135deg, var(--brand-ink), var(--accent-light), var(--cyan));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-family: var(--serif); font-weight: 400; font-style: italic;
}
.hero-lede { max-width: 550px; margin: 22px 0 36px; color: var(--muted); font-size: 17.5px; line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 24px; }
.button {
  min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 16px;
  border: 0; padding: 0 24px; font-size: 13px; font-weight: 700; border-radius: 12px;
  cursor: pointer; transition: transform .2s, box-shadow .2s, background .2s;
}
.button-primary {
  background: linear-gradient(135deg, var(--amber), var(--amber-2)); color: var(--amber-ink);
  border-radius: 99px; box-shadow: var(--shadow-amber);
}
.button-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(240, 185, 110, .4); }
.text-link {
  font-size: 13px; font-weight: 700; color: var(--ink-soft); border-bottom: 1px solid var(--line-strong); padding-bottom: 3px;
  transition: color .2s, border-color .2s;
}
.text-link:hover { color: var(--accent-light); border-color: var(--accent-light); }
.hero-trust { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 32px; color: var(--muted); font-size: 12px; }
.hero-trust span::first-letter { color: var(--accent-light); font-weight: 700; }

.hero-media { position: relative; padding-right: 10px; }
.image-frame {
  height: 560px; overflow: hidden; border-radius: 24px;
  background: var(--surface); border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-glow);
}
.image-frame img {
  height: 100%; object-fit: cover; object-position: center 27%;
  filter: saturate(.9) contrast(1.05);
}
.floating-card {
  position: absolute; right: -12px; top: 16%;
  display: flex; align-items: center; gap: 12px; padding: 14px 18px;
  background: rgba(15, 23, 42, 0.9); border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px; backdrop-filter: blur(12px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
.floating-card > span {
  width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--brand)); color: white; font-size: 14px;
}
.floating-card small { color: var(--muted); font-size: 8px; letter-spacing: .12em; }
.floating-card strong { color: var(--ink); font-size: 12px; }

/* ---------- Sections ---------- */
.section { padding: 100px max(24px, calc((100vw - var(--max))/2)); }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 56px; }
.section-heading h2 { font-size: clamp(40px, 5vw, 64px); line-height: 1; letter-spacing: -.04em; font-weight: 500; color: var(--ink); }

/* ---------- Services / Features ---------- */
.services { background: #05080f; overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-card {
  position: relative; min-height: 490px; padding: 32px; overflow: hidden;
  background: var(--surface-card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  backdrop-filter: blur(10px); box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s;
}
.service-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-md), var(--shadow-glow); border-color: rgba(109, 94, 252, 0.4);
}
.service-card header, .service-card footer { display: flex; align-items: center; justify-content: space-between; gap: 15px; }
.service-card header > span { font: italic 22px var(--serif); color: var(--brand-ink); }
.service-card header small { font-size: 10px; letter-spacing: .14em; color: var(--muted); }
.service-card h3 { max-width: 330px; margin: 28px 0 12px; font-size: 28px; line-height: 1.1; letter-spacing: -.03em; color: var(--ink); }
.service-card > p { max-width: 330px; color: var(--muted); font-size: 14.5px; line-height: 1.6; }
.service-card footer {
  position: absolute; right: 32px; bottom: 28px; left: 32px;
  padding-top: 18px; border-top: 1px solid var(--line);
}
.service-card footer strong { font-size: 12.5px; color: var(--ink); }
.service-card footer span { font-size: 11px; color: var(--muted); }

.service-card.sales-card { background: rgba(15, 23, 42, 0.95); border-color: rgba(6, 182, 212, 0.3); }
.sales-card header small, .sales-card header > span { color: var(--cyan); }
.service-card.growth-card {
  background: linear-gradient(145deg, rgba(109, 94, 252, 0.25), rgba(15, 23, 42, 0.9));
  border-color: rgba(109, 94, 252, 0.4);
}
.growth-card header small, .growth-card header > span { color: var(--brand-ink); }

.audience-visual, .funnel-visual, .growth-visual { height: 180px; margin-top: 24px; position: relative; }
.audience-visual { display: grid; place-items: center; }
.audience-visual i { position: absolute; border: 1px solid rgba(6, 182, 212, 0.3); border-radius: 50%; }
.audience-visual i:nth-child(1) { width: 160px; height: 160px; }
.audience-visual i:nth-child(2) { width: 112px; height: 112px; }
.audience-visual i:nth-child(3) { width: 65px; height: 65px; background: rgba(109, 94, 252, 0.2); }
.audience-visual > strong {
  z-index: 1; width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--brand)); color: white; font-size: 14px;
}
.audience-visual > span {
  position: absolute; right: 5px; bottom: 12px; padding: 7px 12px;
  background: var(--surface-2); border: 1px solid var(--line-strong); color: var(--accent-light);
  font-size: 10px; border-radius: 6px; box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}
.funnel-visual { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; gap: 7px; }
.funnel-visual span {
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  min-height: 92px; padding: 8px; border: 1px solid var(--line); border-radius: 8px;
  color: var(--muted); font-size: 9px; background: rgba(255,255,255,0.03);
}
.funnel-visual span:nth-of-type(2) { background: rgba(6, 182, 212, 0.1); border-color: rgba(6, 182, 212, 0.2); }
.funnel-visual span:nth-of-type(3) { background: rgba(16, 185, 129, 0.15); border-color: rgba(16, 185, 129, 0.3); color: var(--accent-light); }
.funnel-visual b { margin-bottom: 6px; color: white; font-size: 17px; }
.funnel-visual span:nth-of-type(3) b { color: var(--accent-light); }
.funnel-visual > i { color: var(--cyan); font-style: normal; }

.growth-visual { display: flex; align-items: flex-end; gap: 18px; padding: 20px; background: rgba(0,0,0,0.3); border: 1px solid var(--line); border-radius: 12px; }
.growth-visual > div { height: 120px; display: flex; align-items: flex-end; flex: 1; gap: 7px; }
.growth-visual i { height: var(--h); flex: 1; background: linear-gradient(var(--accent-light), var(--brand)); border-radius: 3px 3px 0 0; }
.growth-visual > strong { align-self: center; font-size: 34px; color: var(--accent-light); }
.growth-visual > span { position: absolute; right: 20px; bottom: 18px; color: var(--brand-ink); font-size: 10px; }

/* ---------- Panel Section & Dashboard ---------- */
.panel-section { background: #070b14; color: white; border-bottom: 1px solid var(--line); }
.panel-grid { display: grid; grid-template-columns: .62fr 1.38fr; align-items: center; gap: 48px; }
.kicker.light { color: var(--cyan); }
.panel-copy h2, .contact-copy h2 { font-size: clamp(44px, 5.2vw, 68px); line-height: .96; letter-spacing: -.045em; font-weight: 500; }
.panel-copy h2 em { color: var(--cyan); font-family: var(--serif); font-style: italic; }
.panel-copy > p:not(.kicker) { max-width: 455px; margin: 24px 0 30px; color: var(--muted); font-size: 17px; line-height: 1.6; }
.platform-pills { display: flex; flex-wrap: wrap; gap: 8px; margin: -15px 0 28px; }
.platform-pills span { padding: 8px 14px; border: 1px solid var(--line-strong); border-radius: 20px; color: var(--ink-soft); font-size: 13px; background: var(--surface); }
.feature-list { border-top: 1px solid var(--line); }
.feature-list article { display: grid; grid-template-columns: 34px 1fr; gap: 12px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.feature-list article > span { color: var(--cyan); font: italic 18px var(--serif); }
.feature-list h3 { font-size: 18px; color: var(--ink); }
.feature-list p { margin-top: 4px; color: var(--muted); font-size: 14px; line-height: 1.5; }

.simple-dashboard {
  background: #0f172a; color: var(--ink); padding: 32px; border-radius: 20px;
  border: 1px solid var(--line-strong); box-shadow: var(--shadow-glow);
}
.dashboard-top { display: flex; justify-content: space-between; align-items: center; }
.dashboard-top small, .dashboard-top strong { display: block; }
.dashboard-top small { color: var(--muted); font-size: 11px; letter-spacing: .1em; }
.dashboard-top strong { margin-top: 4px; font-size: 24px; color: var(--ink); }
.dashboard-top > span { color: var(--accent-light); background: var(--accent-tint); border: 1px solid rgba(16,185,129,0.3); padding: 6px 14px; border-radius: 20px; font-size: 11px; font-weight: 700; }
.data-sources { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin: 12px 0; }
.data-sources article { min-width: 0; background: var(--surface-2); border: 1px solid var(--line); border-radius: 10px; padding: 13px; }
.data-sources article > div { display: flex; align-items: center; gap: 8px; }
.data-sources i { width: 30px; height: 30px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 8px; color: white; font-size: 13px; font-style: normal; font-weight: 700; }
.data-sources article > div > strong { font-size: 14px; color: var(--ink); }
.data-sources b { margin-left: auto; color: var(--accent-light); font-size: 9px; }
.data-sources p { display: flex; justify-content: space-between; gap: 5px; margin-top: 11px; padding-top: 9px; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; }
.data-sources p strong { color: var(--ink); font-size: 13.5px; }
.data-sources .instagram i { background: linear-gradient(135deg, #e1306c, #fd1d1d); }
.data-sources .shopier i { background: #7f47d8; }
.data-sources .ikas i { background: #1e293b; border: 1px solid var(--line-strong); }
.data-sources .trendyol i { background: #f27a1a; }

.dashboard-metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 20px; }
.dashboard-metrics article { background: var(--surface-2); border: 1px solid var(--line); border-radius: 10px; padding: 15px; }
.dashboard-metrics small, .dashboard-metrics strong, .dashboard-metrics span { display: block; }
.dashboard-metrics small { color: var(--muted); font-size: 12px; }
.dashboard-metrics strong { font-size: 25px; margin: 6px 0; color: var(--ink); }
.dashboard-metrics span { color: var(--accent-light); font-size: 11px; font-weight: 600; }

.meta-overview { margin-top: 12px; padding: 20px; background: rgba(6, 182, 212, 0.06); border: 1px solid rgba(6, 182, 212, 0.2); border-radius: 12px; }
.meta-heading, .meta-heading > div { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.meta-heading > div > div small, .meta-heading > div > div strong { display: block; }
.meta-heading small { color: var(--cyan); font-size: 10px; letter-spacing: .09em; }
.meta-heading strong { margin-top: 3px; font-size: 16px; color: var(--ink); }
.meta-heading > span { padding: 5px 12px; border-radius: 20px; background: var(--surface-2); color: var(--ink-soft); font-size: 11px; }
.meta-mark { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 8px; background: linear-gradient(135deg, var(--cyan), var(--brand)); color: white; font-weight: 800; }
.meta-metrics { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; margin-top: 15px; }
.meta-metrics article { min-width: 0; padding: 12px; background: var(--surface-2); border: 1px solid var(--line); border-radius: 8px; }
.meta-metrics small, .meta-metrics strong, .meta-metrics em { display: block; }
.meta-metrics small { min-height: 28px; color: var(--muted); font-size: 11px; line-height: 1.3; }
.meta-metrics strong { margin: 5px 0; font-size: 18px; line-height: 1.1; color: var(--ink); }
.meta-metrics em { color: var(--muted); font-size: 9.5px; font-style: normal; }
.meta-metrics .meta-highlight { background: rgba(16, 185, 129, 0.15); border-color: rgba(16, 185, 129, 0.4); }
.meta-metrics .meta-highlight strong { color: var(--accent-light); }

.dashboard-chart { margin-top: 12px; padding: 18px; background: var(--surface-2); border: 1px solid var(--line); border-radius: 12px; }
.dashboard-chart small, .dashboard-chart strong { display: block; }
.dashboard-chart small { color: var(--muted); font-size: 9.5px; letter-spacing: .08em; }
.dashboard-chart strong { margin-top: 3px; font-size: 15px; color: var(--ink); }
.dashboard-chart svg { width: 100%; height: 130px; margin-top: 8px; }
.chart-fill { fill: url(#simpleFill); }
.chart-line { fill: none; stroke: var(--cyan); stroke-width: 3; vector-effect: non-scaling-stroke; }

.dashboard-bottom { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 10px; }
.dashboard-bottom > div { background: var(--surface-2); border: 1px solid var(--line); border-radius: 10px; padding: 16px; }
.dashboard-bottom small { display: block; color: var(--muted); font-size: 9.5px; letter-spacing: .08em; }
.dashboard-bottom > div > p { display: grid; grid-template-columns: 88px 1fr; align-items: center; gap: 9px; margin-top: 10px; color: var(--ink-soft); font-size: 11px; }
.dashboard-bottom i { display: block; height: 8px; background: linear-gradient(90deg, var(--cyan) var(--w), var(--surface) var(--w)); border-radius: 5px; }
.demo-note { margin-top: 10px; color: var(--muted); font-size: 10px; text-align: right; }

/* ---------- Difference & WhatsApp Showcase ---------- */
.difference { background: #05080f; border-bottom: 1px solid var(--line); }
.difference-intro { display: grid; grid-template-columns: 1.1fr .9fr; align-items: flex-end; gap: 80px; margin-bottom: 48px; }
.difference-intro h2 { font-size: clamp(48px, 5.8vw, 78px); line-height: .95; letter-spacing: -.05em; font-weight: 500; color: var(--ink); }
.difference-intro h2 em { color: var(--brand-ink); font-family: var(--serif); font-style: italic; }
.difference-intro > p { max-width: 500px; padding-bottom: 5px; color: var(--muted); font-size: 17px; line-height: 1.65; }
.outcome-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.outcome-grid article {
  min-height: 250px; padding: 28px; background: var(--surface-card);
  border: 1px solid var(--line); border-radius: var(--radius);
  backdrop-filter: blur(10px); box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s;
}
.outcome-grid article:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-strong);
}
.outcome-grid article > span { color: var(--brand-ink); font: italic 22px var(--serif); }
.outcome-grid small { display: block; margin-top: 36px; color: var(--cyan); font-size: 10px; letter-spacing: .14em; }
.outcome-grid h3 { margin: 10px 0; font-size: 21px; color: var(--ink); }
.outcome-grid p { color: var(--muted); font-size: 14px; line-height: 1.55; }

.product-showcase { margin-top: 92px; }
.product-showcase-heading {
  display: grid; grid-template-columns: 1.05fr .95fr; align-items: end;
  gap: 70px; margin-bottom: 34px;
}
.product-showcase-heading h3 {
  font-size: clamp(40px, 4.7vw, 64px); line-height: .98;
  letter-spacing: -.045em; font-weight: 500; color: var(--ink);
}
.product-showcase-heading h3 em { color: var(--cyan); font-family: var(--serif); font-style: italic; }
.product-showcase-heading > p {
  max-width: 560px; color: var(--muted); font-size: 17px; line-height: 1.65;
}
.product-shot {
  overflow: hidden; background: rgba(12,18,30,.88);
  border: 1px solid var(--line-strong); border-radius: var(--radius-lg);
  box-shadow: 0 26px 80px rgba(0,0,0,.28);
}
.product-shot-featured { margin-bottom: 18px; }
.product-shot-copy { padding: 28px 30px 24px; }
.product-shot-copy > span {
  color: var(--cyan); font-size: 10px; font-weight: 700; letter-spacing: .14em;
}
.product-shot-copy h4 {
  margin: 10px 0 8px; color: var(--ink); font-size: clamp(23px, 2vw, 31px);
  line-height: 1.12; letter-spacing: -.025em;
}
.product-shot-copy p { max-width: 720px; color: var(--muted); font-size: 14px; line-height: 1.6; }
.product-shot figure { position: relative; margin: 0; padding: 0 12px 12px; }
.product-shot img {
  display: block; width: 100%; height: auto; border-radius: 12px;
  border: 1px solid rgba(255,255,255,.09); background: #080d15;
}
.product-shot figcaption {
  position: absolute; right: 26px; bottom: 24px; padding: 6px 10px;
  color: #d8e9ef; background: rgba(4,8,14,.8); border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px; font-size: 9px; letter-spacing: .04em;
  backdrop-filter: blur(8px);
}
.product-shot-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.product-shot-grid .product-shot-copy { min-height: 168px; }
.campaign-control {
  display: grid; grid-template-columns: minmax(250px, .36fr) minmax(0, 1fr); gap: 24px;
  margin-bottom: 24px; padding: 26px; background: linear-gradient(145deg, rgba(15, 23, 42, .94), rgba(8, 13, 24, .98));
  border: 1px solid rgba(56, 189, 248, .22); border-radius: 24px; box-shadow: 0 22px 70px rgba(0, 0, 0, .32);
}
.campaign-control-copy { padding: 18px 10px 18px 8px; }
.campaign-control-badge {
  display: inline-flex; padding: 7px 10px; border: 1px solid rgba(56, 189, 248, .28); border-radius: 999px;
  color: var(--cyan); background: rgba(56, 189, 248, .08); font-size: 10px; font-weight: 800; letter-spacing: .12em;
}
.campaign-control-copy h4 { margin: 20px 0 12px; color: var(--ink); font-size: clamp(24px, 2.6vw, 34px); line-height: 1.1; }
.campaign-control-copy > p { color: var(--muted); font-size: 14px; line-height: 1.65; }
.campaign-control-steps { display: grid; gap: 12px; margin-top: 24px; padding: 0; list-style: none; counter-reset: campaign-step; }
.campaign-control-steps li {
  position: relative; padding: 14px 14px 14px 48px; border: 1px solid var(--line); border-radius: 13px;
  background: rgba(255, 255, 255, .025); counter-increment: campaign-step;
}
.campaign-control-steps li::before {
  content: "0" counter(campaign-step); position: absolute; left: 14px; top: 14px; color: var(--brand-ink);
  font-size: 11px; font-weight: 800; letter-spacing: .08em;
}
.campaign-control-steps strong, .campaign-control-steps span { display: block; }
.campaign-control-steps strong { margin-bottom: 4px; color: var(--ink); font-size: 13px; }
.campaign-control-steps span { color: var(--muted); font-size: 11.5px; line-height: 1.5; }
.campaign-gallery { min-width: 0; }
.campaign-tabs {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin-bottom: 12px; padding: 6px;
  border: 1px solid var(--line); border-radius: 13px; background: rgba(255, 255, 255, .035);
}
.campaign-tab {
  min-height: 42px; padding: 8px 12px; border: 1px solid transparent; border-radius: 9px; background: transparent;
  color: var(--muted); font: 700 12px var(--sans); cursor: pointer; transition: color .2s, background .2s, border-color .2s;
}
.campaign-tab:hover { color: var(--ink); background: rgba(255, 255, 255, .04); }
.campaign-tab.active {
  color: #fff; border-color: rgba(109, 94, 252, .52);
  background: linear-gradient(135deg, rgba(49, 88, 212, .36), rgba(109, 94, 252, .24));
}
.campaign-tab:focus-visible { outline: 2px solid var(--cyan); outline-offset: 2px; }
.campaign-panel {
  position: relative; margin: 0; overflow: hidden; border: 1px solid var(--line-strong); border-radius: 16px;
  background: #090e17; animation: campaign-panel-in .24s ease;
}
.campaign-panel[hidden] { display: none; }
.campaign-panel img { display: block; width: 100%; height: auto; max-height: 720px; object-fit: contain; object-position: top center; background: #090e17; }
.campaign-panel figcaption {
  display: flex; justify-content: space-between; gap: 12px; padding: 12px 14px; border-top: 1px solid var(--line);
  color: var(--muted); font-size: 11px; background: rgba(7, 11, 20, .92);
}
.campaign-panel figcaption strong { color: var(--ink); }
.product-shot-grid-secondary { margin-top: 18px; }
@keyframes campaign-panel-in { from { opacity: .35; transform: translateY(5px); } to { opacity: 1; transform: none; } }

.whatsapp-showcase {
  display: grid; grid-template-columns: .72fr 1.28fr; gap: 65px; margin-top: 90px; padding: 60px;
  background: var(--surface-card); border: 1px solid var(--line-strong); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glow);
}
.whatsapp-copy { align-self: start; position: sticky; top: 120px; }
.whatsapp-copy .kicker { color: var(--cyan); }
.whatsapp-copy h3 { font-size: clamp(40px, 4.4vw, 58px); line-height: 1; letter-spacing: -.045em; font-weight: 500; color: var(--ink); }
.whatsapp-copy h3 em { color: var(--cyan); font-family: var(--serif); font-style: italic; }
.whatsapp-copy > p:not(.kicker) { margin: 24px 0; color: var(--muted); font-size: 16px; line-height: 1.65; }
.whatsapp-copy ul { list-style: none; border-top: 1px solid var(--line); }
.whatsapp-copy li { padding: 14px 0; border-bottom: 1px solid var(--line); color: var(--ink-soft); font-size: 14px; }
.whatsapp-copy li::before { content: '✓'; margin-right: 10px; color: var(--accent-light); font-weight: 700; }
.report-feed { display: grid; gap: 14px; }
.wa-report {
  padding: 22px; background: var(--surface-2); color: var(--ink);
  border: 1px solid var(--line-strong); border-radius: 12px; box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.wa-report:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.wa-report header, .wa-report header > div, .wa-report footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.wa-report header > div { justify-content: flex-start; }
.wa-icon { width: 40px; height: 40px; border-radius: 8px; object-fit: cover; }
.wa-report header p strong { font-size: 14px; color: var(--ink); }
.wa-report header p small, .wa-report time { color: var(--muted); font-size: 11px; }
.wa-report h4 { margin: 18px 0 6px; font-size: 19px; color: var(--ink); }
.wa-report > p { color: var(--muted); font-size: 13.5px; line-height: 1.5; }
.wa-report > div { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 16px; }
.wa-report > div span { padding: 11px; background: var(--surface); border: 1px solid var(--line); border-radius: 8px; }
.wa-report > div small { color: var(--muted); font-size: 9.5px; }
.wa-report > div strong { margin-top: 4px; font-size: 16.5px; color: var(--ink); }
.wa-report footer { margin-top: 14px; }
.wa-report footer > span { color: var(--accent-light); font-size: 11.5px; font-weight: 700; }
.wa-report footer small { color: var(--cyan); }
.campaign-report { border-left: 4px solid var(--brand); }

/* ---------- Contact Section ---------- */
.contact { padding: 100px max(24px, calc((100vw - var(--max))/2)); background: #05080f; color: white; }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 80px; }
.contact-copy h2 em { color: var(--accent-light); font-family: var(--serif); font-style: italic; }
.contact-copy > p:not(.kicker) { margin: 24px 0 30px; color: var(--muted); font-size: 17px; }
.contact-copy > div span { padding: 9px 16px; border: 1px solid var(--line-strong); border-radius: 20px; font-size: 12.5px; color: var(--ink-soft); background: var(--surface); font-weight: 500; }

.contact-form {
  background: var(--surface-card); color: var(--ink); padding: 38px;
  border: 1px solid var(--line-strong); border-radius: var(--radius-lg);
  backdrop-filter: blur(16px); box-shadow: var(--shadow-glow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-form label { display: block; margin-bottom: 22px; font-size: 14.5px; font-weight: 600; color: #f1f5f9; letter-spacing: .01em; }
.contact-form input:not([type=checkbox]), .contact-form textarea {
  width: 100%; border: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.22); border-radius: 0;
  background: transparent; padding: 12px 0; outline: none; resize: vertical; font-size: 16px; color: #ffffff;
  transition: border-color .2s, box-shadow .2s;
}
.contact-form input::placeholder, .contact-form textarea::placeholder {
  color: #64748b; font-size: 15px; font-weight: 400;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--brand-ink); box-shadow: 0 1px 0 0 var(--brand-ink); }
.consent { display: flex !important; gap: 12px; align-items: flex-start; color: #cbd5e1; font-weight: 400 !important; font-size: 13.5px; line-height: 1.5; }
.consent input { width: 17px; height: 17px; margin-top: 2px; accent-color: var(--brand); cursor: pointer; }
.submit-button {
  width: 100%; min-height: 54px; font-size: 15px; font-weight: 700; justify-content: space-between;
  background: linear-gradient(135deg, var(--amber), var(--amber-2)); color: var(--amber-ink);
  border-radius: 99px; box-shadow: var(--shadow-amber); cursor: pointer;
}
.submit-button:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(240, 185, 110, .4); }
.submit-button:disabled { opacity: .6; }
.hidden-field { position: absolute; left: -9999px; }
.form-status { min-height: 18px; margin-top: 10px; text-align: center; color: var(--muted); font-size: 12px; }
.form-status.success { color: var(--accent-light); }
.form-status.error { color: #f87171; }

/* ---------- Footer ---------- */
.footer {
  min-height: 120px; padding: 44px max(24px, calc((100vw - var(--max))/2));
  background: #030712; color: white; border-top: 1px solid var(--line);
}
.footer p, .footer > span { color: var(--muted); font-size: 12px; }

/* ---------- Legal & Compliance Pages ---------- */
.legal-page {
  padding: 140px max(24px, calc((100vw - var(--max))/2)) 90px;
  background: #070b14;
}
.legal-card {
  background: var(--surface-card); border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg); padding: clamp(30px, 5vw, 54px);
  backdrop-filter: blur(16px); box-shadow: var(--shadow-glow);
  max-width: 900px; margin: 0 auto; color: var(--ink);
}
.legal-card h1 { font-size: clamp(32px, 4vw, 48px); font-weight: 500; line-height: 1.05; margin-bottom: 12px; color: var(--ink); }
.legal-card h1 em { color: var(--brand-ink); font-family: var(--serif); font-style: italic; }
.legal-meta { font-size: 13px; color: var(--muted); margin-bottom: 30px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.legal-meta strong { color: var(--ink-soft); }
.legal-body h2 { font-size: 22px; font-weight: 700; margin: 30px 0 12px; color: var(--ink); }
.legal-body h3 { font-size: 17px; font-weight: 700; margin: 22px 0 10px; color: var(--ink-soft); }
.legal-body p, .legal-body ul, .legal-body ol { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
.legal-body ul, .legal-body ol { padding-left: 24px; }
.legal-body li { margin-bottom: 8px; }
.legal-highlight {
  background: rgba(109, 94, 252, 0.12); border-left: 4px solid var(--brand);
  padding: 18px 22px; margin: 24px 0; color: var(--ink-soft); font-size: 14.5px; line-height: 1.6;
  border-radius: 0 10px 10px 0;
}
.legal-highlight strong { color: var(--brand-ink); }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s cubic-bezier(.22, 1, .36, 1); }
.reveal.visible { opacity: 1; transform: none; }

@media(max-width: 900px) {
  .hero-grid, .panel-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 720px; }
  .hero-media { max-width: 600px; margin: auto; width: 100%; }
  .panel-grid, .contact-grid { gap: 55px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 440px; }
  .data-sources, .dashboard-metrics, .meta-metrics { grid-template-columns: 1fr 1fr; }
  .difference-intro, .whatsapp-showcase { grid-template-columns: 1fr; }
  .outcome-grid { grid-template-columns: 1fr 1fr; }
  .product-showcase-heading, .product-shot-grid, .campaign-control { grid-template-columns: 1fr; }
  .product-showcase-heading { gap: 22px; }
  .product-shot-grid .product-shot-copy { min-height: 0; }
  .campaign-control-copy { padding: 8px 2px; }
  .whatsapp-showcase { padding: 40px; gap: 40px; }
  .whatsapp-copy { position: static; }
}

@media(max-width: 680px) {
  .top-bar { padding: 6px 12px; }
  .top-bar-inner { justify-content: center; text-align: center; font-size: 11px; flex-direction: column; gap: 6px; }
  .top-bar-phone { flex-wrap: wrap; justify-content: center; gap: 4px; }
  .top-bar-legal { width: 100%; justify-content: center; flex-wrap: wrap; gap: 8px; }
  .lang-switcher { max-width: 100%; overflow-x: auto; padding: 2px 6px; -webkit-overflow-scrolling: touch; }
  .lang-btn { padding: 3px 8px; font-size: 11px; }

  .nav-shell { width: calc(100% - 24px); height: 62px; padding: 0 16px; }
  .brand-logo { width: 40px !important; height: 40px !important; }
  .brand span { font-size: 16px; }
  .menu-button { display: flex; position: relative; z-index: 3; }
  .menu-button.active span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-button.active span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .nav-menu {
    position: fixed; inset: 0; z-index: 2; background: #070b14;
    flex-direction: column; align-items: flex-start; justify-content: center;
    padding: 35px 28px; opacity: 0; visibility: hidden; transform: translateY(-10px); transition: .22s;
  }
  .nav-menu.open { opacity: 1; visibility: visible; transform: none; }
  .nav-menu > a { font: 30px var(--serif); color: var(--ink); margin-bottom: 12px; }
  .nav-cta { font: 12px var(--sans) !important; margin-top: 15px; width: 100%; text-align: center; }
  
  .hero { padding-top: 125px; min-height: auto; }
  .hero h1 { font-size: clamp(36px, 11vw, 54px); }
  .hero-lede { font-size: 14.5px; line-height: 1.6; }
  .hero-brand-badge { font-size: 12px; padding: 5px 12px; max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .hero-brand-badge img { width: 20px; height: 20px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 14px; width: 100%; }
  .hero-actions .button { width: 100%; text-align: center; justify-content: center; }
  .hero-trust { gap: 8px 12px; font-size: 12px; flex-wrap: wrap; }
  
  .hero-media { padding: 0; margin-top: 24px; position: relative; }
  .image-frame { height: 380px; border-radius: 18px; }
  .floating-card { position: relative; inset: auto; margin-top: -30px; margin-left: 12px; margin-right: 12px; width: calc(100% - 24px); }
  
  .section { padding-top: 55px; padding-bottom: 55px; }
  .section-heading { display: block; }
  .section-heading h2 { font-size: 32px; }
  .service-grid { grid-template-columns: 1fr; gap: 18px; }
  .service-card { min-height: auto; padding: 22px; }
  .service-card h3 { font-size: 22px; }
  .outcome-grid { grid-template-columns: 1fr; }
  
  .panel-copy h2, .contact-copy h2 { font-size: 34px; }
  .simple-dashboard { padding: 14px; border-radius: 16px; }
  .dashboard-top { flex-direction: column; align-items: flex-start; gap: 8px; }
  .dashboard-metrics { grid-template-columns: 1fr; gap: 10px; }
  .dashboard-metrics article h3, .dashboard-metrics article strong { font-size: 22px; }
  .data-sources { grid-template-columns: 1fr; gap: 10px; }
  .meta-metrics { grid-template-columns: 1fr; gap: 10px; }
  
  .whatsapp-showcase { margin-top: 36px; padding: 20px 14px; gap: 24px; border-radius: 20px; }
  .product-showcase { margin-top: 58px; }
  .product-showcase-heading h3 { font-size: 32px; }
  .product-showcase-heading > p { font-size: 15px; }
  .product-shot-copy { padding: 22px 18px 18px; }
  .product-shot-copy h4 { font-size: 22px; }
  .product-shot figure { padding: 0 6px 6px; }
  .product-shot figcaption { right: 14px; bottom: 14px; }
  .campaign-control { padding: 12px; border-radius: 18px; }
  .campaign-tabs { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; }
  .campaign-tab { flex: 0 0 76%; scroll-snap-align: start; }
  .campaign-panel figcaption { align-items: flex-start; flex-direction: column; }
  .whatsapp-copy h3 { font-size: 28px; }
  .wa-report { padding: 14px; border-radius: 14px; }
  .wa-report > div { grid-template-columns: 1fr; gap: 8px; }
  
  .contact { padding-top: 55px; padding-bottom: 55px; }
  .contact-form { padding: 20px; border-radius: 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .consent { font-size: 12.5px; }
  .footer { padding: 30px 16px; }
  
  /* Cookie Banner & Modal Mobile Fixes */
  .kokpit-cookie-banner { left: 12px; right: 12px; bottom: 12px; padding: 16px; border-radius: 14px; }
  .cookie-banner-inner { flex-direction: column; align-items: stretch; gap: 14px; }
  .cookie-banner-text p { font-size: 12.5px; }
  .cookie-banner-actions { width: 100%; justify-content: space-between; gap: 8px; }
  .cookie-btn { flex: 1; min-height: 40px !important; padding: 0 10px !important; font-size: 11.5px !important; text-align: center; }
  .cookie-btn-subtle { flex: 1; min-height: 40px; padding: 0 10px; font-size: 11.5px; text-align: center; }

  .cookie-modal-card { padding: 20px; max-height: 88vh; overflow-y: auto; border-radius: 16px; }
  .cookie-modal-header h2 { font-size: 17px; }
  .cookie-option-group { padding: 12px; margin-bottom: 12px; }
  
  .kokpit-toast-notification { left: 12px; right: 12px; bottom: 12px; max-width: 100%; padding: 16px; }
}

@media(prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; transition-duration: .01ms !important; }
}

/* ---------- Advanced Cookie Banner & Modal ---------- */
.kokpit-cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 960px;
  margin: 0 auto;
  z-index: 999;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  padding: 20px 24px;
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), var(--shadow-glow);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .35s ease, transform .35s cubic-bezier(.22, 1, .36, 1);
}
.kokpit-cookie-banner.visible {
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner-text {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 280px;
}
.cookie-banner-text span {
  font-size: 24px;
}
.cookie-banner-text p {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-btn {
  min-height: 42px !important;
  padding: 0 18px !important;
  font-size: 12.5px !important;
  white-space: nowrap;
}
.cookie-btn-subtle {
  background: var(--surface-2);
  color: var(--ink-soft);
  border: 1px solid var(--line-strong);
  min-height: 42px;
  padding: 0 16px;
  border-radius: 10px;
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.cookie-btn-subtle:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}
.cookie-link {
  background: transparent;
  border: 0;
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  padding: 6px 10px;
}
.cookie-link:hover {
  color: var(--cyan);
}

/* Modal UI */
.kokpit-cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.kokpit-cookie-modal.visible {
  opacity: 1;
  visibility: visible;
}
.cookie-modal-card {
  width: 100%;
  max-width: 580px;
  background: #0f172a;
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.8), var(--shadow-glow);
  color: var(--ink);
}
.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.cookie-modal-header h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
}
.cookie-modal-close {
  background: transparent;
  border: 0;
  color: var(--muted);
  font-size: 26px;
  cursor: pointer;
}
.cookie-option-group {
  margin-bottom: 18px;
  padding: 16px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.cookie-option-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.cookie-option-title strong {
  font-size: 14.5px;
  color: var(--ink);
}
.cookie-badge-required {
  font-size: 10px;
  padding: 4px 8px;
  background: rgba(109, 94, 252, 0.2);
  color: var(--brand-ink);
  border-radius: 6px;
  font-weight: 700;
}
.cookie-option-group p {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.5;
}

/* Switch Toggle Slider */
.switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}
.switch input { opacity: 0; width: 0; height: 0; }
.slider {
  position: absolute; cursor: pointer; inset: 0;
  background-color: rgba(255,255,255,0.2); transition: .3s; border-radius: 24px;
}
.slider:before {
  position: absolute; content: ""; height: 18px; width: 18px; left: 3px; bottom: 3px;
  background-color: white; transition: .3s; border-radius: 50%;
}
input:checked + .slider { background-color: var(--brand); }
input:checked + .slider:before { transform: translateX(20px); }

/* Returning Visitor Toast */
/* ---------- Case Studies (Vaka Çalışmaları) ---------- */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
  margin-top: 36px;
}
.case-card {
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(109, 94, 252, 0.25);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.case-card:hover {
  transform: translateY(-4px);
  border-color: rgba(109, 94, 252, 0.6);
  box-shadow: 0 15px 35px rgba(109, 94, 252, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.case-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.case-badge {
  background: linear-gradient(135deg, rgba(109, 94, 252, 0.25), rgba(167, 139, 250, 0.15));
  color: #c4b5fd;
  border: 1px solid rgba(167, 139, 250, 0.3);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
  letter-spacing: 0.6px;
}
.case-header small {
  color: #94a3b8;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.case-card h3 {
  font-size: 21px;
  color: #f8fafc;
  margin-bottom: 10px;
  font-weight: 600;
  line-height: 1.35;
}
.case-desc {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 22px;
}
.case-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  background: rgba(30, 41, 59, 0.6);
  padding: 18px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 18px;
}
.case-stats small {
  display: block;
  font-size: 11px;
  color: #94a3b8;
  margin-bottom: 3px;
}
.case-stats strong {
  font-size: 19px;
  color: #f8fafc;
  font-weight: 700;
}
.highlight-green {
  color: #34d399 !important;
  text-shadow: 0 0 12px rgba(52, 211, 153, 0.3);
}
.case-footer {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  color: #cbd5e1;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 14px;
}
.case-methodology {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed rgba(255, 255, 255, 0.12);
}
.case-methodology summary {
  font-size: 12.5px;
  color: #a78bfa;
  cursor: pointer;
  font-weight: 600;
  user-select: none;
  transition: color .2s;
}
.case-methodology summary:hover {
  color: #c4b5fd;
}
.case-methodology p {
  font-size: 12px;
  color: #94a3b8;
  line-height: 1.6;
  margin-top: 10px;
  background: rgba(15, 23, 42, 0.7);
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* ---------- Testimonials (Müşteri Yorumları) ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
  margin-top: 36px;
}
.testimonial-card {
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(12px);
  transition: transform .25s ease, border-color .25s ease;
}
.testimonial-card:hover {
  transform: translateY(-3px);
  border-color: rgba(109, 94, 252, 0.4);
}
.stars {
  color: #fbbf24;
  font-size: 16px;
  letter-spacing: 3px;
  margin-bottom: 14px;
}
.quote {
  font-size: 14.5px;
  color: #cbd5e1;
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 20px;
  border-left: 3px solid var(--brand);
  padding-left: 14px;
}
.client-info strong {
  display: block;
  font-size: 14.5px;
  color: #f8fafc;
  font-weight: 600;
}
.client-info span {
  font-size: 12px;
  color: #94a3b8;
}

/* ---------- FAQ Section (SSS) ---------- */
.faq-container {
  max-width: 860px;
  margin: 36px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 18px 22px;
  backdrop-filter: blur(12px);
  transition: border-color .2s ease, background-color .2s ease;
}
.faq-item[open] {
  border-color: rgba(109, 94, 252, 0.5);
  background: rgba(15, 23, 42, 0.92);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  color: #f8fafc;
  user-select: none;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary span {
  font-size: 22px;
  color: #a78bfa;
  font-weight: 400;
  transition: transform .2s ease;
}
.faq-item[open] summary span {
  transform: rotate(45deg);
  color: #34d399;
}
.faq-item p {
  margin-top: 14px;
  font-size: 14.5px;
  color: #cbd5e1;
  line-height: 1.65;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 12px;
}
.kokpit-toast-notification {
  position: fixed;
  bottom: 24px;
  right: 24px;
  max-width: 420px;
  z-index: 998;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(16, 185, 129, 0.4);
  border-radius: 16px;
  padding: 20px;
  backdrop-filter: blur(16px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(16, 185, 129, 0.2);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .35s ease, transform .35s cubic-bezier(.22, 1, .36, 1);
}
.kokpit-toast-notification.visible {
  opacity: 1;
  transform: translateY(0);
}
.toast-inner { display: flex; flex-direction: column; gap: 14px; }
.toast-content strong { color: var(--ink); font-size: 15px; display: block; margin-bottom: 4px; }
.toast-content p { color: var(--muted); font-size: 13px; line-height: 1.5; }
.toast-actions { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.toast-btn { min-height: 40px !important; padding: 0 16px !important; font-size: 12px !important; }
.toast-close { background: transparent; border: 0; color: var(--muted); font-size: 22px; cursor: pointer; }
