/* ============================================================
   Müştericep — Tanıtım Sitesi Stilleri (Lüks revizyon 2026-07)
   Marka: Derin lacivert #1c2b5e + krem #faf8f3 + turkuaz vurgu #109386
   Fontlar: Fraunces (başlık) + Figtree (gövde)
   Boşluk sistemi: 8px taban — 8/16/24/32/48/64/96/128
   ============================================================ */

:root {
  /* Renk tokenları — derin lacivert + krem zemin, turkuaz yalnız vurgu */
  --navy-900: #131e45;
  --navy-800: #1c2b5e;
  --navy-700: #2a3b78;
  --teal-600: #0b7f74;
  --teal-500: #109386;
  --teal-400: #3ab3a6;
  --teal-50:  #eef6f2;
  --ink-900:  #24272e;
  --ink-600:  #52555e;
  --ink-400:  #6e6a5b;
  --line:     #e6e0d2;
  --bg:       #faf8f3;
  --bg-soft:  #f3efe6;
  --paper:    #fffdf8;
  --cream:    #f7f3e9;

  /* Tipografi */
  --font-body: "Figtree", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;

  /* 8px boşluk ölçeği */
  --s-1: 8px;
  --s-2: 16px;
  --s-3: 24px;
  --s-4: 32px;
  --s-6: 48px;
  --s-8: 64px;
  --s-12: 96px;
  --s-16: 128px;

  /* Ölçüler — gölgeler lacivertten türetilir, gri değil */
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 8px rgba(28, 43, 94, 0.07);
  --shadow-md: 0 12px 32px rgba(28, 43, 94, 0.11);
  --shadow-lg: 0 28px 64px rgba(19, 30, 69, 0.16);
  --container: 1160px;
  --header-h: 76px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-900);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.08;
  margin: 0 0 0.5em;
  color: var(--navy-900);
  letter-spacing: -0.015em;
}

h1 { font-size: clamp(2.5rem, 5.6vw, 4.1rem); font-weight: 600; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); font-weight: 600; }
h3 { font-size: 1.15rem; font-weight: 600; }

p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; list-style: none; }

a { color: var(--teal-600); text-decoration: none; }
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid var(--teal-400);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-3);
}
.container-narrow { max-width: 820px; }

/* Vurgu: turkuaz + Fraunces italik — imza dokunuş */
.text-accent {
  color: var(--teal-600);
  font-style: italic;
  font-weight: 500;
}

/* ---------- SVG ikonlar (tek aile: çizgi stili) ---------- */
.ic {
  width: 1.15em;
  height: 1.15em;
  flex-shrink: 0;
  vertical-align: -0.18em;
}
.ic-lg { width: 1.5em; height: 1.5em; }

/* ---------- Butonlar — lacivert, köşeli, dokunuşlu ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
  padding: 0.8em 1.6em;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--navy-800);
  color: var(--cream);
  box-shadow: 0 6px 18px rgba(28, 43, 94, 0.28);
}
.btn-primary:hover { background: var(--navy-900); box-shadow: 0 12px 28px rgba(19, 30, 69, 0.34); }

.btn-ghost {
  background: transparent;
  color: var(--navy-800);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--navy-800); background: rgba(28, 43, 94, 0.04); }

.btn-outline {
  background: transparent;
  color: var(--navy-800);
  border-color: var(--navy-800);
}
.btn-outline:hover { background: var(--navy-800); color: var(--cream); }

.btn-light {
  background: var(--cream);
  color: var(--navy-900);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
}
.btn-light:hover { background: var(--paper); }

.btn-lg { font-size: 1.05rem; padding: 0.95em 1.9em; }
.btn-sm { font-size: 0.9rem; padding: 0.6em 1.3em; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 248, 243, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: var(--s-3);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand-logo { width: 42px; height: 42px; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--navy-800);
  letter-spacing: -0.02em;
}
.brand-name-light { color: #ffffff; }
.brand-accent { color: var(--teal-500); }

.main-nav {
  display: flex;
  align-items: center;
  gap: var(--s-4);
}
.main-nav > a:not(.btn) {
  position: relative;
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--ink-600);
  padding: 4px 0;
  transition: color 0.15s ease;
}
.main-nav > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 2px;
  background: var(--teal-500);
  transition: right 0.22s ease;
}
.main-nav > a:not(.btn):hover { color: var(--navy-800); }
.main-nav > a:not(.btn):hover::after { right: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: 0;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2.5px;
  border-radius: 2px;
  background: var(--navy-800);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero — kırık simetri: geniş metin, kayan görsel ---------- */
.hero {
  position: relative;
  padding: var(--s-12) 0 var(--s-8);
  background: linear-gradient(180deg, #f4efe4, var(--bg) 70%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
/* İnce serif doku: sağ üstte büyük, soluk süs harfi */
.hero::before {
  content: "M";
  position: absolute;
  top: -0.28em;
  right: -0.06em;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(18rem, 34vw, 34rem);
  line-height: 1;
  color: rgba(28, 43, 94, 0.045);
  pointer-events: none;
  user-select: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: var(--s-8);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--teal-600);
  margin-bottom: var(--s-3);
}
/* Etiket yerine editoryal çizgi */
.eyebrow::before {
  content: "";
  width: var(--s-6);
  height: 1px;
  background: var(--teal-500);
}

.lead {
  font-size: 1.18rem;
  color: var(--ink-600);
  max-width: 33em;
  margin-top: var(--s-3);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  margin-top: var(--s-4);
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 0.5em;
  margin-top: var(--s-3);
  font-size: 0.9rem;
  color: var(--ink-400);
}
.hero-note .ic { color: var(--teal-500); }

.hero-visual { position: relative; }
.hero-visual img { width: 100%; }

/* ---------- Canlı sohbet simülasyonu ---------- */
.sim-phone {
  max-width: 360px;
  margin: 0 auto;
  background: var(--paper);
  border: 10px solid var(--navy-800);
  border-radius: 34px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 480px;
  transform: rotate(1.5deg);   /* kırık simetri: hafif eğik telefon */
}
.sim-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--teal-50);
  border-bottom: 1px solid #ddeae2;
}
.sim-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--navy-800);
  color: #fff;
  display: grid; place-items: center;
  font-weight: 700;
  font-family: var(--font-display);
  flex-shrink: 0;
}
.sim-head b { font-family: var(--font-display); font-size: .95rem; color: var(--ink-900); display: block; line-height: 1.2; }
.sim-sub { display: inline-flex; align-items: center; gap: 4px; font-size: .74rem; color: var(--ink-600); }
.sim-sub .ic { color: #e1306c; }
.sim-ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-left: auto;
  font-size: .7rem;
  font-weight: 700;
  color: var(--teal-600);
  background: var(--paper);
  border: 1px solid var(--teal-400);
  border-radius: 6px;
  padding: 3px 9px;
  white-space: nowrap;
}
.sim-ai-badge::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal-500);
  animation: shPulse 1.6s infinite;
}
.sim-body {
  flex: 1;
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
  background:
    radial-gradient(300px 200px at 90% 10%, rgba(16, 147, 134, .06), transparent),
    #fdfcf7;
}
.sim-msg {
  max-width: 82%;
  padding: 9px 12px;
  border-radius: 14px;
  font-size: .86rem;
  line-height: 1.45;
  opacity: 0;
  transform: translateY(10px);
  animation: simIn .35s ease forwards;
}
.sim-msg.in { align-self: flex-start; background: #efeadf; border-bottom-left-radius: 4px; color: var(--ink-900); }
.sim-msg.out { align-self: flex-end; background: var(--teal-500); color: #fff; border-bottom-right-radius: 4px; }
.sim-msg.out .sim-who { display: block; font-size: .68rem; opacity: .85; font-weight: 700; margin-bottom: 2px; }
.sim-msg.card {
  align-self: center;
  background: #eef6ee;
  border: 1.5px solid #b7d9b4;
  color: #2c5e34;
  font-weight: 600;
  text-align: center;
  max-width: 92%;
  border-radius: 14px;
}
.sim-typing {
  align-self: flex-end;
  background: var(--teal-500);
  border-radius: 14px;
  border-bottom-right-radius: 4px;
  padding: 12px 14px;
  display: flex;
  gap: 4px;
  opacity: 0;
  animation: simIn .25s ease forwards;
}
.sim-typing span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  animation: simDot 1s infinite;
}
.sim-typing span:nth-child(2) { animation-delay: .18s; }
.sim-typing span:nth-child(3) { animation-delay: .36s; }
.sim-note {
  text-align: center;
  font-size: .78rem;
  color: var(--ink-400);
  margin-top: var(--s-2);
}
@keyframes simIn { to { opacity: 1; transform: none; } }
@keyframes simDot { 0%,60%,100% { transform: translateY(0); } 30% { transform: translateY(-4px); } }
@media (prefers-reduced-motion: reduce) {
  .sim-msg, .sim-typing { animation: none; opacity: 1; transform: none; }
  .sim-phone { transform: none; }
}

/* ---------- Site AI sohbet widget'ı ---------- */
.chatw-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 0;
  background: var(--navy-800);
  color: var(--cream);
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(19, 30, 69, 0.4);
  display: grid;
  place-items: center;
  transition: transform 0.15s ease, background 0.15s ease;
}
.chatw-btn .ic { width: 26px; height: 26px; }
.chatw-btn:hover { transform: scale(1.07); background: var(--navy-900); }
.chatw {
  position: fixed;
  right: 20px;
  bottom: 92px;
  z-index: 91;
  width: 350px;
  max-width: calc(100vw - 32px);
  height: 500px;
  max-height: calc(100vh - 120px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  display: none;
  flex-direction: column;
  overflow: hidden;
}
.chatw.open { display: flex; }
.chatw-head {
  background: var(--navy-800);
  color: #fff;
  padding: 13px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.chatw-head .cwa {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--teal-500);
  color: #fff;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.chatw-head .cwa .ic { width: 20px; height: 20px; }
.chatw-head b { font-family: var(--font-display); font-size: 0.95rem; display: block; line-height: 1.2; }
.chatw-head span { font-size: 0.72rem; color: #b9c4e6; }
.chatw-close {
  margin-left: auto;
  background: none; border: 0;
  color: #fff; font-size: 20px;
  cursor: pointer; padding: 4px;
}
.chatw-msgs {
  flex: 1;
  overflow-y: auto;
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #fdfcf7;
}
.cw-m {
  max-width: 85%;
  padding: 9px 12px;
  border-radius: 14px;
  font-size: 0.88rem;
  line-height: 1.5;
  white-space: pre-wrap;
  word-wrap: break-word;
}
.cw-m.bot { align-self: flex-start; background: #efeadf; color: var(--ink-900); border-bottom-left-radius: 4px; }
.cw-m.user { align-self: flex-end; background: var(--teal-500); color: #fff; border-bottom-right-radius: 4px; }
.cw-m.bot a { color: var(--teal-600); font-weight: 600; }
.cw-typing { align-self: flex-start; display: flex; gap: 4px; background: #efeadf; border-radius: 14px; padding: 12px 14px; }
.cw-typing span { width: 6px; height: 6px; border-radius: 50%; background: var(--ink-400); animation: simDot 1s infinite; }
.cw-typing span:nth-child(2) { animation-delay: 0.18s; }
.cw-typing span:nth-child(3) { animation-delay: 0.36s; }
.chatw-chips { display: flex; flex-wrap: wrap; gap: 6px; padding: 0 12px 8px; background: #fdfcf7; }
.chatw-chips button {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  background: var(--paper);
  color: var(--teal-600);
  border: 1px solid var(--teal-400);
  border-radius: 8px;
  padding: 6px 12px;
  cursor: pointer;
  transition: background 0.15s ease;
}
.chatw-chips button:hover { background: var(--teal-50); }
.chatw-input {
  display: flex;
  gap: 8px;
  padding: 10px;
  border-top: 1px solid var(--line);
  background: var(--paper);
}
.chatw-input input {
  flex: 1;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 10px 15px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  background: var(--paper);
  color: var(--ink-900);
}
.chatw-input input:focus { outline: none; border-color: var(--teal-400); box-shadow: 0 0 0 3px rgba(16, 147, 134, .12); }
.chatw-input button {
  width: 42px; height: 42px;
  border-radius: var(--radius-sm);
  border: 0;
  background: var(--navy-800);
  color: #fff;
  cursor: pointer;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  transition: background 0.15s ease;
}
.chatw-input button:hover { background: var(--navy-900); }
.chatw-input button .ic { width: 18px; height: 18px; }
.chatw-input button:disabled { opacity: 0.5; }
@media (max-width: 480px) {
  .chatw { right: 8px; bottom: 84px; width: calc(100vw - 16px); height: 70vh; }
}

/* ---------- Karşılaştırma tablosu ---------- */
.vs-table {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--paper);
}
.vs-row {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr 1.2fr;
  border-top: 1px solid var(--line);
}
.vs-row:first-child { border-top: 0; }
.vs-row > div {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: var(--s-2) var(--s-2);
  font-size: .93rem;
  color: var(--ink-600);
}
.vs-row > div:first-child { font-weight: 600; color: var(--ink-900); }
.vs-row .ic-no { color: #c25542; }
.vs-row .ic-yes { color: var(--teal-600); }
.vs-us { background: var(--teal-50); font-weight: 500; }
.vs-head > div {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink-900);
  background: var(--bg-soft);
}
.vs-head > .vs-us { background: var(--teal-500); color: #fff; }
@media (max-width: 640px) {
  .vs-row { grid-template-columns: 1fr; }
  .vs-row > div { padding: 10px 14px; }
  .vs-row > div:first-child { padding-bottom: 2px; }
  .vs-head { display: none; }
  .vs-row > div:nth-child(2)::before { content: "Kendi başına: "; font-weight: 700; }
  .vs-row .vs-us::before { content: "Müştericep: "; font-weight: 700; }
}

/* ---------- Güven şeridi — ince ayraçlı editoryal sıra ---------- */
.trust-strip {
  border-block: 1px solid var(--line);
  background: var(--bg-soft);
  padding: var(--s-3) 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  padding: 0 var(--s-3);
  border-left: 1px solid var(--line);
}
.trust-item:first-child { border-left: 0; padding-left: 0; }
.trust-item > .ic {
  width: 26px; height: 26px;
  color: var(--teal-600);
}
.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.98rem;
  color: var(--navy-900);
}
.trust-item span { font-size: 0.85rem; color: var(--ink-600); }

/* ---------- Bölüm iskeleti — 8px ölçeği: 96px ritim ---------- */
.section { padding: var(--s-12) 0; }
.section-alt { background: var(--bg-soft); }
.section-tint {
  background: linear-gradient(180deg, #f1ecdf, var(--bg));
}

/* Başlıklar sola yaslı — her şey ortalanmış olmasın */
.section-head {
  max-width: 640px;
  margin-bottom: var(--s-8);
}
.section-head.head-center {
  margin-inline: auto;
  text-align: center;
}
.section-head p { color: var(--ink-600); font-size: 1.05rem; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.8em;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--teal-600);
  margin-bottom: var(--s-2);
}
.kicker::before {
  content: "";
  width: var(--s-4);
  height: 1px;
  background: var(--teal-500);
}
.head-center .kicker::after {
  content: "";
  width: var(--s-4);
  height: 1px;
  background: var(--teal-500);
}

/* ---------- Alt sayfa başlığı ---------- */
.page-hero {
  position: relative;
  padding: var(--s-8) 0 var(--s-6);
  text-align: center;
  background: linear-gradient(180deg, #f4efe4, var(--bg));
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.page-hero::before {
  content: "M";
  position: absolute;
  top: -0.3em;
  right: -0.05em;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 16rem;
  line-height: 1;
  color: rgba(28, 43, 94, 0.04);
  pointer-events: none;
  user-select: none;
}
.page-hero h1 {
  font-size: clamp(2rem, 4.8vw, 3.1rem);
  font-weight: 600;
  font-family: var(--font-display);
  color: var(--navy-900);
  letter-spacing: -0.02em;
}
.page-hero p { color: var(--ink-600); max-width: 620px; margin: 14px auto 0; }
.page-hero .kicker { justify-content: center; }
.page-hero .kicker::after {
  content: "";
  width: var(--s-4);
  height: 1px;
  background: var(--teal-500);
}

/* Aktif menü linki */
.main-nav > a.nav-active:not(.btn) { color: var(--teal-600); }
.main-nav > a.nav-active:not(.btn)::after { right: 0; }

/* ---------- Koyu bant (Nasıl Çalışır) ---------- */
.section-dark {
  position: relative;
  background: linear-gradient(170deg, var(--navy-900), #0e1732 85%);
  color: #e9e6dc;
  overflow: hidden;
}
.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(720px 340px at 12% 0%, rgba(16, 147, 134, 0.10), transparent);
  pointer-events: none;
}
.section-dark .section-head h2 { color: var(--cream); }
.section-dark .section-head p { color: #aab2cf; }
.kicker-light { color: var(--teal-400); }
.kicker-light::before { background: var(--teal-400); }
.head-center .kicker-light::after { background: var(--teal-400); }

.steps-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-3);
  position: relative;
}
.steps-flow::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(247, 243, 233, 0.35) 20%, rgba(247, 243, 233, 0.35) 80%, transparent);
}
.flow-step { position: relative; text-align: center; padding-top: 4px; }
.flow-no {
  width: 52px; height: 52px;
  margin: 0 auto var(--s-2);
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--cream);
  color: var(--navy-900);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px rgba(247, 243, 233, 0.08);
}
.flow-icon { color: var(--teal-400); margin-bottom: var(--s-2); }
.flow-icon .ic { width: 28px; height: 28px; }
.flow-step h3 { color: var(--cream); font-size: 1.08rem; }
.flow-step p { color: #aab2cf; font-size: 0.92rem; margin: 0; }

/* Dürüst büyük rakamlar */
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-2);
  margin-top: var(--s-8);
  padding-top: var(--s-6);
  border-top: 1px solid rgba(247, 243, 233, 0.14);
}
.stat-big { text-align: center; }
.stat-big b {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.1rem, 5vw, 3.1rem);
  line-height: 1;
  color: var(--cream);
}
.stat-big span { display: block; margin-top: var(--s-1); font-size: 0.85rem; color: #aab2cf; }
@media (max-width: 720px) {
  .steps-flow { grid-template-columns: repeat(2, 1fr); row-gap: var(--s-4); }
  .steps-flow::before { display: none; }
  .stat-row { grid-template-columns: repeat(2, 1fr); row-gap: var(--s-4); }
}

/* ---------- Sorun → Çözüm — kırık simetri: dar sorun, geniş çözüm ---------- */
.ps-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--s-3);
  align-items: start;
}
.ps-card {
  border-radius: var(--radius);
  padding: var(--s-4);
}
.ps-card h3 {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-size: 1.2rem;
  margin-bottom: var(--s-2);
}
.ps-card ul { display: grid; gap: 12px; }
.ps-card li {
  position: relative;
  padding-left: var(--s-3);
  color: var(--ink-600);
}
.ps-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.ps-problem {
  background: #faf1ec;
  border: 1px solid #e8c8ba;
}
.ps-problem h3 { color: #a23c2a; }
.ps-problem h3 .ic { color: #c25542; }
.ps-problem li::before { background: #dda490; }

.ps-solution {
  background: var(--teal-50);
  border: 1px solid #c9dcd0;
  box-shadow: var(--shadow-md);
  padding: var(--s-6) var(--s-4);
  margin-top: calc(-1 * var(--s-3));   /* öne çıkan taraf hafif yukarı taşar */
}
.ps-solution h3 { color: var(--teal-600); }
.ps-solution h3 .ic { color: var(--teal-500); }
.ps-solution li::before { background: var(--teal-400); }
@media (max-width: 860px) {
  .ps-solution { margin-top: 0; }
}

/* ---------- Özellik kartları — numaralı, çizgi ayraçlı ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3);
}
.feature-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--s-4) 28px;
  counter-increment: feature;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(28, 43, 94, 0.28);
}
.feature-grid { counter-reset: feature; }
.feature-card::after {
  content: counter(feature, decimal-leading-zero);
  position: absolute;
  top: var(--s-3);
  right: var(--s-3);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-400);
}
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  color: var(--navy-800);
  margin-bottom: var(--s-2);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.feature-icon .ic { width: 24px; height: 24px; }
.feature-card:hover .feature-icon {
  background: var(--navy-800);
  border-color: var(--navy-800);
  color: var(--cream);
}
.feature-card p { color: var(--ink-600); margin: 0; font-size: 0.96rem; }

/* Geniş kart — satırı dengelemek için 2 sütuna yayılır */
.feature-card.feature-wide { grid-column: span 2; }
.feature-card.feature-full { grid-column: 1 / -1; }
@media (max-width: 560px) {
  .feature-card.feature-wide { grid-column: auto; }
}

/* Öne çıkan (geniş, lacivert) özellik kartı — grid'i kırar */
.feature-card.feature-hero {
  grid-column: span 2;
  background: var(--navy-800);
  border-color: var(--navy-800);
  background-image: radial-gradient(420px 220px at 88% 8%, rgba(16, 147, 134, 0.22), transparent);
}
.feature-card.feature-hero h3 { color: var(--cream); font-size: 1.4rem; }
.feature-card.feature-hero p { color: #b9c4e6; max-width: 36em; }
.feature-card.feature-hero::after { color: rgba(247, 243, 233, 0.45); }
.feature-card.feature-hero .feature-icon {
  background: rgba(247, 243, 233, 0.1);
  border-color: rgba(247, 243, 233, 0.25);
  color: var(--teal-400);
}
.feature-card.feature-hero:hover .feature-icon { background: var(--teal-500); border-color: var(--teal-500); color: #fff; }

/* ---------- Adımlar (yatay kartlar) ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-3);
  counter-reset: step;
}
.step-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--s-4) var(--s-3) 26px;
  text-align: center;
}
.step-no {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  background: var(--navy-800);
  color: #ffffff;
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 4px 10px rgba(28, 43, 94, 0.35);
}
.step-icon { color: var(--teal-500); margin: var(--s-1) 0 14px; }
.step-icon .ic { width: 30px; height: 30px; }
.step-card h3 { font-size: 1.05rem; }
.step-card p { color: var(--ink-600); font-size: 0.92rem; margin: 0; }

/* ---------- Kimler için — editoryal liste ---------- */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-block: 1px solid var(--line);
}
.audience-card {
  background: transparent;
  border-left: 1px solid var(--line);
  padding: var(--s-4) var(--s-3);
  text-align: left;
  transition: background 0.2s ease;
}
.audience-card:first-child { border-left: 0; }
.audience-card:hover { background: var(--paper); }
.audience-card > .ic {
  width: 32px;
  height: 32px;
  color: var(--teal-600);
  margin-bottom: var(--s-2);
}
.audience-card h3 { font-size: 1.1rem; }
.audience-card p { color: var(--ink-600); font-size: 0.92rem; margin: 0; }
@media (max-width: 860px) {
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-card:nth-child(odd) { border-left: 0; }
  .audience-card:nth-child(n+3) { border-top: 1px solid var(--line); }
}
@media (max-width: 560px) {
  .audience-grid { grid-template-columns: 1fr; }
  .audience-card { border-left: 0; }
  .audience-card:nth-child(n+2) { border-top: 1px solid var(--line); }
}

/* ---------- Fiyatlar ---------- */
.bill-toggle {
  display: flex;
  justify-content: center;
  gap: 4px;
  width: max-content;
  margin: 0 auto var(--s-4);
  padding: 4px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}
.bt-opt {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-600);
  background: transparent;
  border: 0;
  border-radius: 8px;
  padding: 9px 22px;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}
.bt-opt:hover { color: var(--navy-800); }
.bt-opt.active {
  background: var(--navy-800);
  color: var(--cream);
  box-shadow: 0 4px 12px rgba(28, 43, 94, 0.22);
}
.bt-save {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--teal-600);
  background: var(--teal-50);
  border: 1px solid var(--teal-400);
  border-radius: 6px;
  padding: 2px 9px;
  white-space: nowrap;
}
.bt-opt.active .bt-save {
  color: var(--cream);
  background: rgba(247, 243, 233, 0.14);
  border-color: rgba(247, 243, 233, 0.35);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3);
  align-items: stretch;
}
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--s-4) 30px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(28, 43, 94, 0.28);
}
.price-featured {
  border: 2px solid var(--navy-800);
  box-shadow: var(--shadow-lg);
  transform: translateY(calc(-1 * var(--s-2)));  /* öne çıkan plan yukarı taşar */
}
.price-featured:hover { transform: translateY(calc(-1 * var(--s-2) - 4px)); box-shadow: var(--shadow-lg); }
.badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy-800);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4em 1.1em;
  border-radius: 6px;
  white-space: nowrap;
}
.price-desc { color: var(--ink-600); font-size: 0.92rem; min-height: 2.8em; }
.price { margin: 6px 0 22px; }
.price .amount {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2.6rem;
  color: var(--navy-900);
}
.price .period { color: var(--ink-400); font-weight: 600; margin-left: 2px; }

.price-list {
  display: grid;
  gap: 11px;
  margin-bottom: var(--s-4);
  flex-grow: 1;
}
.price-list li {
  display: flex;
  gap: 10px;
  align-items: baseline;
  color: var(--ink-600);
  font-size: 0.95rem;
}
.price-list .ic { color: var(--teal-500); width: 1em; height: 1em; }

.muted { color: var(--ink-400); }

/* ---------- Kayıp kazanç hesaplayıcısı ---------- */
.calc {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--s-4) 26px;
  box-shadow: var(--shadow-md);
}
.calc-row { margin-bottom: var(--s-3); }
.calc-row label { font-weight: 600; color: var(--ink-900); display: block; margin-bottom: 10px; }
.calc-slider { display: flex; align-items: center; gap: var(--s-2); }
.calc-slider b {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--navy-800);
  min-width: 84px;
  text-align: right;
}
.calc-slider input[type="range"] {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 8px;
  border-radius: 4px;
  background: var(--panel2, #e6e0d2);
  background: linear-gradient(90deg, var(--teal-500) var(--fill, 20%), #e6e0d2 var(--fill, 20%));
  outline: none;
}
.calc-slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--paper);
  border: 3px solid var(--teal-500);
  box-shadow: 0 2px 8px rgba(16, 147, 134, .4);
  cursor: pointer;
}
.calc-slider input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--paper);
  border: 3px solid var(--teal-500);
  cursor: pointer;
}
.calc-result {
  text-align: center;
  background: #faf1ec;
  border: 2px dashed #dda490;
  border-radius: var(--radius);
  padding: var(--s-3);
}
.calc-result > span { font-weight: 600; color: #a23c2a; font-size: .9rem; text-transform: uppercase; letter-spacing: .08em; }
.calc-result strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 3.2rem);
  color: #b3402c;
  margin: 6px 0 4px;
  letter-spacing: -0.02em;
}
.calc-result p { color: var(--ink-600); margin-bottom: var(--s-2); }

/* ---------- Panelden kareler ---------- */
.shots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-3);
}
.shot p { text-align: center; font-size: .88rem; color: var(--ink-600); margin: 10px 0 0; }
/* Kırık simetri: kareler dama gibi hafif kaydırılır */
.shot:nth-child(even) { transform: translateY(var(--s-3)); }
.shot-frame {
  background: var(--paper);
  border: 6px solid var(--navy-800);
  border-radius: 22px;
  overflow: hidden;
  height: 320px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.shot:hover .shot-frame { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.shot-head {
  background: var(--teal-50);
  border-bottom: 1px solid #ddeae2;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .85rem;
  color: var(--navy-900);
  padding: 10px 12px;
}
.shot-body { flex: 1; padding: 12px; background: #fdfcf7; overflow: hidden; }
/* Takvim mini */
.sh-cal { display: flex; gap: 8px; height: 100%; }
.sh-col { flex: 1; position: relative; background: #f1ede2; border-radius: 10px; padding-top: 26px; }
.sh-name { position: absolute; top: 5px; left: 0; right: 0; text-align: center; font-size: .7rem; font-weight: 700; }
.sh-appt {
  position: absolute; left: 5px; right: 5px;
  border-radius: 8px; color: #fff;
  font-size: .68rem; font-weight: 700;
  padding: 5px 7px; line-height: 1.25;
}
.sh-appt small { display: block; font-weight: 400; opacity: .9; }
/* Kasa mini */
.sh-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-bottom: 10px; }
.sh-stats div { background: var(--paper); border: 1px solid var(--line); border-radius: 8px; padding: 7px 9px; }
.sh-stats span { display: block; font-size: .62rem; color: var(--ink-400); }
.sh-stats b { font-family: var(--font-display); font-size: .92rem; }
.sh-bar { display: flex; align-items: center; gap: 6px; font-size: .7rem; margin: 6px 0; color: var(--ink-600); }
.sh-bar span { width: 58px; }
.sh-bar i { flex: 1; height: 7px; border-radius: 4px; background: var(--teal-500); display: block; max-width: 55%; }
.sh-bar b { font-size: .72rem; }
.sh-btn {
  margin-top: 10px; text-align: center;
  background: var(--navy-800); color: #fff;
  border-radius: 8px; font-size: .74rem; font-weight: 700;
  padding: 8px;
}
/* Profil mini */
.sh-profile { display: flex; align-items: center; gap: 9px; margin-bottom: 10px; }
.sh-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--navy-800); color: #fff;
  display: grid; place-items: center;
  font-weight: 600; font-family: var(--font-display);
}
.sh-profile b { display: block; font-size: .85rem; }
.sh-profile small { color: var(--ink-400); font-size: .68rem; }
.sh-pkg { background: var(--paper); border: 1px solid var(--line); border-radius: 10px; padding: 8px 10px; font-size: .74rem; margin-bottom: 8px; }
.sh-pkg span { font-weight: 700; }
.sh-pkg small { color: var(--teal-600); font-weight: 600; }
.sh-pkgbar { height: 7px; background: #e6e0d2; border-radius: 4px; margin: 5px 0; overflow: hidden; }
.sh-pkgbar i { display: block; height: 100%; background: var(--teal-500); }
.sh-note {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 10px; padding: 7px 10px;
  font-size: .72rem; color: var(--ink-600); margin-bottom: 7px;
}
.sh-ring {
  background: var(--navy-800); color: #fff;
  border-radius: 12px; text-align: center;
  padding: 12px; font-size: .8rem; font-weight: 700;
  animation: shPulse 1.6s infinite;
}
@keyframes shPulse { 0%,100% { opacity: 1; } 50% { opacity: .75; } }
@media (max-width: 1024px) {
  .shots { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .shots { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
  .shot:nth-child(even) { transform: none; }
}

/* ---------- Mobil yapışkan CTA ---------- */
.sticky-cta {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 80;
  background: var(--navy-800);
  color: #fff;
  padding: 10px 14px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  box-shadow: 0 -6px 20px rgba(19, 30, 69, .3);
}
.sticky-cta span { font-size: .88rem; }
@media (max-width: 768px) {
  .sticky-cta { display: flex; }
  body { padding-bottom: 62px; }
  .chatw-btn { bottom: 76px; }
  .chatw { bottom: 148px; }
}

/* ---------- Garanti kutusu ---------- */
.guarantee {
  margin-top: var(--s-4);
  display: flex;
  gap: var(--s-2);
  align-items: flex-start;
  background: var(--teal-50);
  border: 1px solid var(--teal-400);
  border-radius: var(--radius);
  padding: var(--s-3) 26px;
  box-shadow: var(--shadow-sm);
}
.guarantee .g-ic {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  background: var(--teal-500);
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 6px 14px rgba(16, 147, 134, .3);
}
.guarantee .g-ic .ic { width: 26px; height: 26px; }
.guarantee b {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--navy-900);
}
.guarantee p { margin: 6px 0 0; color: var(--ink-600); font-size: .95rem; }
@media (max-width: 560px) {
  .guarantee { flex-direction: column; align-items: center; text-align: center; }
}

/* ---------- SSS ---------- */
.faq { display: grid; gap: 12px; }
.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-item:hover { border-color: rgba(28, 43, 94, 0.28); }
.faq-item[open] {
  border-color: #c9dcd0;
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-2);
  padding: 18px 22px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy-900);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "\2b";
  font-weight: 400;
  font-size: 1.3rem;
  color: var(--teal-500);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 22px 20px;
  margin: 0;
  color: var(--ink-600);
}

/* ---------- CTA bandı ---------- */
.cta-band {
  position: relative;
  background: var(--navy-900);
  color: var(--cream);
  padding: var(--s-12) 0;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(640px 300px at 85% 110%, rgba(16, 147, 134, 0.14), transparent);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  flex-wrap: wrap;
}
.cta-band h2 { color: var(--cream); margin-bottom: var(--s-1); font-size: clamp(1.9rem, 4vw, 2.8rem); }
.cta-band p { color: rgba(247, 243, 233, 0.75); margin: 0; font-size: 1.05rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-900);
  color: #b9c4e6;
  padding: var(--s-8) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--s-6);
  padding-bottom: var(--s-6);
}
.footer-brand p {
  margin-top: var(--s-2);
  font-size: 0.93rem;
  color: #8e9bc4;
  max-width: 28em;
}
.footer-col h3 {
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: var(--s-2);
}
.footer-col a {
  display: flex;
  align-items: center;
  gap: 0.6em;
  color: #b9c4e6;
  padding: 5px 0;
  font-size: 0.95rem;
  transition: color 0.15s ease;
}
.footer-col a:hover { color: var(--teal-400); }
.footer-col a .ic { color: var(--teal-400); width: 1.1em; height: 1.1em; }

.footer-bottom {
  border-top: 1px solid rgba(185, 196, 230, 0.18);
  padding-top: var(--s-3);
  padding-bottom: var(--s-3);
}
.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
  color: #7585b5;
}

/* ---------- Scroll-reveal animasyonu ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .feature-card, .audience-card, .price-card, .shot-frame { transition: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card.feature-hero { grid-column: span 2; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); row-gap: var(--s-4); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .price-featured { order: -1; transform: none; }
  .price-featured:hover { transform: translateY(-4px); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .hero { padding-top: var(--s-6); }
  .hero::before { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: var(--s-6); }
  .hero-copy { text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-note { justify-content: center; }
  .eyebrow::before { display: none; }
  .lead { margin-inline: auto; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); row-gap: var(--s-3); }
  .trust-item { border-left: 0; padding: 0; }
  .ps-grid { grid-template-columns: 1fr; }
  .section-head { text-align: center; margin-inline: auto; }
  .section-head .kicker { justify-content: center; }
  .section-head .kicker::after { content: ""; width: var(--s-4); height: 1px; background: var(--teal-500); }
  .section-head .kicker-light::after { background: var(--teal-400); }

  /* Mobil menü */
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: var(--s-2) var(--s-3) var(--s-3);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.22s ease, opacity 0.22s ease, visibility 0.22s;
  }
  .main-nav.is-open {
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .main-nav > a:not(.btn) {
    padding: 12px 6px;
    font-size: 1.05rem;
    border-radius: 8px;
  }
  .main-nav > a:not(.btn)::after { display: none; }
  .main-nav > a:not(.btn):hover { background: var(--bg-soft); }
  .nav-cta { margin-top: 10px; }
}

@media (max-width: 560px) {
  .section { padding: var(--s-8) 0; }
  .feature-grid, .steps-grid, .trust-grid { grid-template-columns: 1fr; }
  .feature-card.feature-hero { grid-column: auto; }
  .hero-actions .btn { width: 100%; }
  .cta-inner { justify-content: center; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--s-4); }
}
