/* ═══════════════════════════════════════════
   MENUGO.TR — QR Menü Yazılımı
   Açık krem tema · Space Grotesk + Manrope
   ═══════════════════════════════════════════ */

:root {
  --bg: #f3f1ec;
  --bg-alt: #ebe8e1;
  --surface: #ffffff;
  --surface-2: #f8f6f1;
  --border: rgba(28, 40, 34, 0.08);
  --border-strong: rgba(28, 40, 34, 0.14);
  --text: #1a2420;
  --text-dim: #5a6b63;
  --text-faint: #87968e;
  --accent: #0d9b75;
  --accent-strong: #0a7d5e;
  --accent-soft: rgba(13, 155, 117, 0.1);
  --accent-glow: rgba(13, 155, 117, 0.2);
  --on-accent: #ffffff;
  --warn: #c4850a;
  --danger: #dc3b3b;
  --radius: 18px;
  --radius-sm: 12px;
  --font-display: "Space Grotesk", sans-serif;
  --font-body: "Manrope", sans-serif;
  --shadow-sm: 0 2px 8px rgba(26, 36, 32, 0.04);
  --shadow-md: 0 8px 24px rgba(26, 36, 32, 0.06);
  --shadow-lg: 0 20px 48px rgba(26, 36, 32, 0.09);
}

/* Tutarlı ölçülendirme ve tarayıcı varsayılanlarını sıfırlama */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── Lucide ikon tabanı ── */
svg.lucide {
  display: block;
  stroke: currentColor;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.stars svg.lucide {
  fill: currentColor;
  stroke: none;
}

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: var(--font-body);
  background:
    radial-gradient(ellipse 90% 50% at 10% -10%, rgba(13, 155, 117, 0.07), transparent 55%),
    radial-gradient(ellipse 70% 40% at 100% 0%, rgba(196, 133, 10, 0.04), transparent 50%),
    var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; letter-spacing: -0.02em; }

img { display: block; max-width: 100%; height: auto; }
svg { display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
body.nav-open { overflow: hidden; }

.container { width: min(1180px, 100% - 48px); margin-inline: auto; }
.container-narrow { width: min(820px, 100% - 48px); }

.accent { color: var(--accent); }

/* ── Scroll reveal ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.in { opacity: 1; transform: none; }

/* ── Butonlar ── */
.btn {
  display: inline-flex; align-items: center; gap: 10px; justify-content: center;
  font-weight: 600; font-size: 15px; border: none; border-radius: 999px;
  padding: 13px 26px; transition: all 0.25s ease; white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: var(--on-accent); box-shadow: 0 8px 24px var(--accent-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px var(--accent-glow); }
.btn-ghost { background: var(--surface); color: var(--text); border: 1px solid var(--border-strong); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-soft); }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-block { width: 100%; }

/* ── Pulse dot ── */
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
  display: inline-block; position: relative; flex: none;
}
.pulse-dot::after {
  content: ""; position: absolute; inset: -4px; border-radius: 50%;
  background: var(--accent); opacity: 0.4; animation: pulse 1.8s infinite;
}
@keyframes pulse { 0% { transform: scale(0.6); opacity: 0.5; } 100% { transform: scale(1.8); opacity: 0; } }

/* ═══════════ NAVBAR ═══════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  backdrop-filter: blur(16px); background: rgba(243, 241, 236, 0.82);
  border-bottom: 1px solid transparent; transition: border-color 0.3s, background 0.3s;
}
.nav.scrolled { border-bottom-color: var(--border); background: rgba(243, 241, 236, 0.94); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 24px; }

.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark {
  width: 36px; height: 36px; border-radius: 10px; background: var(--accent-soft);
  color: var(--accent); display: grid; place-items: center;
}
.logo-mark svg { width: 20px; height: 20px; }
.logo-text { font-family: var(--font-display); font-weight: 700; font-size: 21px; letter-spacing: -0.02em; }
.logo-text em { font-style: normal; color: var(--accent); }

.nav-links { display: flex; gap: 28px; }
.nav-links a { font-size: 14.5px; font-weight: 500; color: var(--text-dim); transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }

.nav-cta { display: flex; align-items: center; gap: 14px; }

/* ── Dil değiştirme (TR / EN) ── */
.lang-switch {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  border-radius: 999px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  gap: 2px;
}
.lang-switch button {
  border: none;
  background: transparent;
  color: var(--text-dim);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.02em;
  padding: 6px 12px;
  border-radius: 999px;
  line-height: 1;
  transition: background 0.2s, color 0.2s;
}
.lang-switch button:hover { color: var(--text); }
.lang-switch button.active {
  background: var(--accent);
  color: var(--on-accent);
  box-shadow: 0 2px 8px var(--accent-glow);
}

.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 6px; }
.nav-burger span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s; }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════ HERO ═══════════ */
.hero { position: relative; padding: 170px 0 110px; overflow: hidden; }
.hero-glow {
  position: absolute; top: -220px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 600px; border-radius: 50%;
  background: radial-gradient(ellipse, var(--accent-glow), transparent 65%);
  opacity: 0.7; pointer-events: none; filter: blur(40px);
}
.hero-grid-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(26, 36, 32, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 36, 32, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 30%, transparent 75%);
}
.hero-inner { position: relative; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }
.hero-copy, .hero-phone { min-width: 0; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 18px;
  border-radius: 999px; border: 1px solid var(--border-strong);
  background: var(--surface); font-size: 13.5px; font-weight: 500;
  color: var(--text-dim); margin-bottom: 26px; box-shadow: var(--shadow-sm);
  max-width: 100%;
}
.hero h1 { font-size: clamp(38px, 5.4vw, 64px); font-weight: 700; margin-bottom: 22px; }
.hero-sub { font-size: 18px; color: var(--text-dim); max-width: 540px; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats { display: flex; gap: 36px; flex-wrap: wrap; }
.hstat strong { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--accent); display: block; }
.hstat span { font-size: 13px; color: var(--text-faint); }

/* ── Telefon mockup ── */
.hero-phone { position: relative; display: flex; justify-content: center; }
.phone {
  width: min(300px, 100%); border-radius: 42px; background: #1c2420;
  border: 1px solid rgba(26, 36, 32, 0.2); padding: 10px;
  box-shadow: var(--shadow-lg), 0 0 60px rgba(13, 155, 117, 0.12);
  position: relative; animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.phone-notch {
  position: absolute; top: 20px; left: 50%; transform: translateX(-50%);
  width: 92px; height: 24px; background: #1c2420; border-radius: 999px; z-index: 5;
}
.phone-screen {
  border-radius: 34px; background: var(--surface-2); overflow: hidden;
  height: 590px; display: flex; flex-direction: column;
}

.pm-header { display: flex; align-items: center; justify-content: space-between; padding: 44px 16px 12px; }
.pm-brand { display: flex; align-items: center; gap: 10px; }
.pm-avatar {
  width: 36px; height: 36px; border-radius: 12px; background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: var(--on-accent); font-weight: 700; display: grid; place-items: center; font-family: var(--font-display);
}
.pm-brand strong { display: block; font-size: 14px; line-height: 1.2; }
.pm-brand small { font-size: 11px; color: var(--accent); }
.pm-langs { display: flex; gap: 4px; }
.pm-langs span { font-size: 10px; font-weight: 700; padding: 4px 7px; border-radius: 7px; color: var(--text-faint); background: rgba(26, 36, 32, 0.05); }
.pm-langs span.active { background: var(--accent-soft); color: var(--accent); }

.pm-search {
  margin: 4px 16px 10px; padding: 9px 14px; border-radius: 12px;
  background: rgba(26, 36, 32, 0.04); font-size: 12px; color: var(--text-faint);
  display: flex; align-items: center; gap: 8px;
}
.pm-search svg { width: 14px; height: 14px; stroke-width: 2; flex: none; }

.pm-tabs { display: flex; gap: 8px; padding: 0 16px 12px; overflow-x: auto; scrollbar-width: none; }
.pm-tabs::-webkit-scrollbar { display: none; }
.pm-tabs button {
  flex: none; font-size: 12px; font-weight: 600; padding: 7px 14px; border-radius: 999px;
  border: 1px solid var(--border); background: transparent; color: var(--text-dim); transition: 0.2s;
}
.pm-tabs button.active { background: var(--accent); border-color: var(--accent); color: var(--on-accent); }

.pm-list { flex: 1; overflow: hidden; padding: 0 16px; display: flex; flex-direction: column; gap: 10px; }
.pm-item {
  display: flex; gap: 12px; padding: 10px; border-radius: 14px;
  background: var(--surface); border: 1px solid var(--border);
  animation: itemIn 0.4s ease both; box-shadow: var(--shadow-sm);
}
@keyframes itemIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.pm-item .pi-img {
  width: 52px; height: 52px; border-radius: 10px; display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent); flex: none;
}
.pm-item .pi-img svg { width: 22px; height: 22px; stroke-width: 1.75; }
.pm-item .pi-body { flex: 1; min-width: 0; }
.pm-item .pi-body b { font-size: 13px; display: block; }
.pm-item .pi-body small { font-size: 10.5px; color: var(--text-faint); display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pm-item .pi-tags { display: flex; gap: 4px; margin-top: 4px; }
.pm-item .pi-tags span { font-style: normal; font-size: 9px; font-weight: 700; padding: 2px 6px; border-radius: 5px; background: var(--accent-soft); color: var(--accent); }
.pm-item .pi-tags span.w { background: rgba(196, 133, 10, 0.12); color: var(--warn); }
.pm-item .pi-price { font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--accent); align-self: center; }

.pm-footer { display: flex; gap: 10px; padding: 12px 16px 18px; }
.pm-footer button {
  flex: 1; font-size: 12px; font-weight: 600; padding: 11px; border-radius: 12px; border: none;
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
}
.pm-footer button svg { width: 13px; height: 13px; stroke-width: 2; }
.pm-call { background: var(--accent); color: var(--on-accent); }
.pm-bill { background: rgba(26, 36, 32, 0.06); color: var(--text); }

/* ── Yüzen kartlar ── */
.float-card {
  position: absolute; display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; border-radius: 14px; background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border-strong); backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md); animation: floaty 6s ease-in-out infinite;
}
.float-card strong { font-family: var(--font-display); font-size: 15px; display: block; line-height: 1.2; }
.float-card small { font-size: 11px; color: var(--text-dim); }
.fc-icon {
  width: 38px; height: 38px; border-radius: 11px; flex: none;
  background: var(--accent-soft); color: var(--accent);
  display: grid; place-items: center;
}
.fc-icon svg { width: 18px; height: 18px; stroke-width: 1.75; }
.fc-1 { top: 12%; left: -6%; animation-delay: 0.8s; }
.fc-2 { top: 44%; right: -9%; animation-delay: 1.6s; }
.fc-3 { bottom: 10%; left: -3%; animation-delay: 2.4s; }

/* ═══════════ TRUSTBAND ═══════════ */
.trustband { padding: 56px 0 64px; border-block: 1px solid var(--border); background: var(--bg-alt); }
.trust-label { text-align: center; font-size: 16px; color: var(--text-faint); margin-bottom: 36px; }
.trust-label strong { color: var(--text-dim); }
.marquee-wrap {
  position: relative;
  display: grid;
  place-items: center;
}
.marquee {
  grid-area: 1 / 1;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
}
.marquee-track { display: flex; gap: 72px; width: max-content; animation: scroll 40s linear infinite; }
.brand-item {
  display: inline-flex; align-items: center; gap: 16px;
  font-family: var(--font-display); font-size: 21px; font-weight: 600;
  color: var(--text-faint); white-space: nowrap; padding: 10px 0;
  filter: blur(14px) grayscale(1);
  opacity: 0.7;
  pointer-events: none;
  user-select: none;
}
.brand-item img {
  width: 48px; height: 48px; border-radius: 12px; object-fit: contain;
  background: var(--surface); padding: 6px; box-shadow: var(--shadow-sm);
}
.trust-overlay {
  grid-area: 1 / 1;
  z-index: 2;
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(18px, 2.6vw, 26px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  text-align: center;
  text-decoration: none;
  padding: 14px 28px;
  max-width: min(92vw, 520px);
  line-height: 1.35;
  text-shadow: 0 1px 0 rgba(243, 241, 236, 0.9), 0 0 24px rgba(243, 241, 236, 0.95);
  transition: color 0.25s ease;
}
.trust-overlay:hover { color: var(--accent); }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ═══════════ SECTION GENEL ═══════════ */
.section { padding: 110px 0; }
.section-alt { background: var(--bg-alt); border-block: 1px solid var(--border); }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.eyebrow {
  display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 16px;
  padding: 6px 16px; border-radius: 999px; background: var(--accent-soft);
}
.section-head h2 { font-size: clamp(30px, 4vw, 44px); margin-bottom: 18px; }
.section-head p { color: var(--text-dim); font-size: 17px; }

/* ═══════════ BENTO ═══════════ */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.bento-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px; display: flex; flex-direction: column; gap: 20px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  box-shadow: var(--shadow-sm);
}
.bento-card:hover { border-color: rgba(13, 155, 117, 0.35); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.b-wide { grid-column: span 2; }
.b-tall { grid-row: span 2; }

.bc-head { display: flex; gap: 14px; align-items: flex-start; }
.bc-icon {
  width: 48px; height: 48px; border-radius: 13px; background: var(--accent-soft);
  color: var(--accent); display: grid; place-items: center; flex: none;
}
.bc-icon svg { width: 22px; height: 22px; stroke-width: 1.75; }
.bc-head h3 { font-size: 18px; margin-bottom: 5px; }
.bc-head p { font-size: 14px; color: var(--text-dim); }
.bc-demo { margin-top: auto; }

/* fiyat demo */
.price-demo { display: flex; flex-direction: column; gap: 8px; }
.price-row {
  display: grid; grid-template-columns: 1fr auto auto auto; gap: 12px; align-items: center;
  padding: 11px 14px; border-radius: 12px; background: var(--surface-2); font-size: 14px;
}
.price-old { color: var(--text-faint); text-decoration: line-through; font-size: 13px; }
.price-new { font-family: var(--font-display); font-weight: 700; color: var(--accent); }
.price-tag { font-size: 11px; font-weight: 600; padding: 3px 9px; border-radius: 7px; background: var(--accent-soft); color: var(--accent); }
.price-tag.live { background: rgba(26, 36, 32, 0.06); color: var(--text-dim); }
.price-row.muted { opacity: 0.75; }

/* dil demo */
.lang-demo { display: flex; flex-direction: column; gap: 7px; }
.lang-row { display: flex; gap: 12px; align-items: center; font-size: 13.5px; padding: 8px 12px; border-radius: 10px; background: var(--surface-2); }
.lang-row b { font-size: 10.5px; color: var(--accent); background: var(--accent-soft); padding: 3px 7px; border-radius: 6px; flex: none; }

/* chip */
.tag-demo { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { font-size: 12px; font-weight: 600; padding: 7px 13px; border-radius: 999px; display: inline-flex; align-items: center; gap: 5px; }
.chip svg { width: 12px; height: 12px; stroke-width: 2; flex: none; }
.chip.ok { background: var(--accent-soft); color: var(--accent); }
.chip.warn { background: rgba(196, 133, 10, 0.12); color: var(--warn); }
.chip.info { background: rgba(220, 59, 59, 0.1); color: var(--danger); }

/* chart */
.chart-demo { display: flex; flex-direction: column; gap: 20px; flex: 1; justify-content: flex-end; }
.chart-bars { display: flex; align-items: flex-end; gap: 10px; height: 150px; }
.cbar { flex: 1; display: flex; flex-direction: column; justify-content: flex-end; align-items: center; gap: 8px; height: 100%; }
.cbar i {
  width: 100%; border-radius: 7px 7px 3px 3px; height: var(--h);
  background: linear-gradient(180deg, rgba(13, 155, 117, 0.55), rgba(13, 155, 117, 0.12));
  transition: height 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.cbar.hot i { background: linear-gradient(180deg, var(--accent), rgba(13, 155, 117, 0.25)); box-shadow: 0 0 18px var(--accent-glow); }
.cbar label { font-size: 10.5px; color: var(--text-faint); }
.chart-meta { display: flex; gap: 24px; }
.chart-meta strong { font-family: var(--font-display); font-size: 20px; color: var(--accent); display: block; }
.chart-meta small { font-size: 12px; color: var(--text-faint); }

/* media */
.media-demo { display: flex; gap: 10px; }
.media-thumb {
  flex: 1; aspect-ratio: 1; border-radius: 13px; background: var(--surface-2);
  display: grid; place-items: center; position: relative; overflow: hidden;
  border: 1px solid var(--border); color: var(--accent);
}
.media-thumb > svg { width: 28px; height: 28px; stroke-width: 1.6; }
.media-thumb .play {
  position: absolute; bottom: 7px; right: 7px; width: 22px; height: 22px;
  border-radius: 50%; background: rgba(26, 36, 32, 0.72); color: #fff;
  display: grid; place-items: center;
}
.media-thumb .play svg { width: 10px; height: 10px; }

/* promo */
.promo-demo { display: flex; flex-direction: column; gap: 8px; }
.promo-banner {
  font-size: 12.5px; font-weight: 600; padding: 12px 15px; border-radius: 12px;
  background: linear-gradient(90deg, rgba(196, 133, 10, 0.12), rgba(196, 133, 10, 0.04));
  border: 1px solid rgba(196, 133, 10, 0.28); color: var(--warn);
  display: flex; align-items: center; gap: 8px;
}
.promo-banner svg { width: 15px; height: 15px; stroke-width: 2; flex: none; }
.promo-banner.alt {
  background: linear-gradient(90deg, var(--accent-soft), transparent);
  border-color: rgba(13, 155, 117, 0.28); color: var(--accent);
}

/* theme */
.theme-demo { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.theme-dot { width: 34px; height: 34px; border-radius: 50%; background: var(--c); border: 3px solid rgba(26, 36, 32, 0.08); transition: transform 0.2s; box-shadow: var(--shadow-sm); }
.theme-dot:hover { transform: scale(1.15); }
.theme-label { font-size: 12.5px; color: var(--text-faint); }

/* rate */
.rate-demo { background: var(--surface-2); border-radius: 13px; padding: 16px; border: 1px solid var(--border); }
.stars { display: flex; gap: 3px; color: var(--warn); margin-bottom: 8px; }
.stars svg { width: 14px; height: 14px; fill: currentColor; stroke: currentColor; stroke-width: 0; }
.testi .stars { margin: 0; }
.rate-demo p { font-size: 13.5px; font-style: italic; color: var(--text-dim); margin-bottom: 6px; }
.rate-demo small { font-size: 11px; color: var(--text-faint); }

/* wifi */
.wifi-card {
  display: flex; flex-direction: row; align-items: center; gap: 14px; padding: 15px 17px; border-radius: 13px;
  background: rgba(14, 165, 233, 0.08); border: 1px solid rgba(14, 165, 233, 0.25);
  color: #0284c7;
}
.wifi-card > svg { width: 20px; height: 20px; stroke-width: 1.75; flex: none; }
.wifi-card b { font-size: 14px; color: #0284c7; display: block; }
.wifi-card span { font-size: 12px; color: var(--text-dim); }

/* ═══════════ STEPS ═══════════ */
.steps { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 22px; align-items: stretch; }
.step {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 34px 28px; position: relative; transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  box-shadow: var(--shadow-sm);
}
.step:hover { border-color: rgba(13, 155, 117, 0.35); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-num {
  position: absolute; top: 24px; right: 26px; font-family: var(--font-display);
  font-size: 42px; font-weight: 700; color: rgba(26, 36, 32, 0.05);
}
.step-icon {
  width: 52px; height: 52px; border-radius: 14px; background: var(--accent-soft);
  color: var(--accent); display: grid; place-items: center; margin-bottom: 18px;
}
.step-icon svg { width: 24px; height: 24px; stroke-width: 1.75; }
.step h3 { font-size: 20px; margin-bottom: 12px; }
.step p { font-size: 14.5px; color: var(--text-dim); margin-bottom: 18px; }
.step-time { font-size: 12.5px; font-weight: 600; color: var(--accent); background: var(--accent-soft); padding: 6px 13px; border-radius: 999px; display: inline-block; }
.step-arrow { align-self: center; color: var(--accent); opacity: 0.55; display: grid; place-items: center; }
.step-arrow svg { width: 22px; height: 22px; stroke-width: 2; }
.steps-cta { text-align: center; margin-top: 52px; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.steps-cta small { color: var(--text-faint); font-size: 13.5px; }

/* ═══════════ PANEL ═══════════ */
.panel-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: center; }
.panel-copy .eyebrow { margin-bottom: 18px; }
.panel-copy h2 { font-size: clamp(28px, 3.6vw, 40px); margin-bottom: 16px; }
.panel-copy > p { color: var(--text-dim); font-size: 16.5px; margin-bottom: 26px; }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.check-list li { padding-left: 32px; position: relative; font-size: 15px; color: var(--text-dim); }
.check-list li b { color: var(--text); }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 1px; width: 21px; height: 21px;
  border-radius: 7px; background: var(--accent-soft); color: var(--accent);
  font-size: 12px; font-weight: 700; display: grid; place-items: center;
}

/* dash mock */
.dash {
  display: grid; grid-template-columns: 150px 1fr; border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--border-strong); background: var(--surface);
  box-shadow: var(--shadow-lg); font-size: 13px;
}
.dash-side { background: var(--surface-2); padding: 20px 12px; display: flex; flex-direction: column; gap: 6px; border-right: 1px solid var(--border); }
.ds-item {
  padding: 9px 13px; border-radius: 10px; color: var(--text-faint); font-weight: 500; font-size: 12.5px;
  display: flex; align-items: center; gap: 8px;
}
.ds-item svg { width: 14px; height: 14px; stroke-width: 1.75; flex: none; }
.ds-item.active { background: var(--accent-soft); color: var(--accent); }
.dash-main { padding: 20px; }
.dash-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.dash-top strong { font-family: var(--font-display); font-size: 15px; }
.dash-live { display: flex; align-items: center; gap: 7px; font-size: 11.5px; color: var(--accent); font-weight: 600; }
.dash-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 16px; }
.dcard { background: var(--surface-2); border: 1px solid var(--border); border-radius: 12px; padding: 12px; }
.dcard small { font-size: 10.5px; color: var(--text-faint); display: block; margin-bottom: 3px; }
.dcard strong { font-family: var(--font-display); font-size: 19px; display: block; }
.dcard em { font-style: normal; font-size: 10.5px; color: var(--text-faint); }
.dcard em.up { color: var(--accent); }
.dash-rows { display: flex; flex-direction: column; gap: 7px; }
.drow {
  display: flex; align-items: center; gap: 12px; padding: 11px 14px;
  border-radius: 11px; background: var(--surface-2); border: 1px solid var(--border);
}
.drow span { flex: 1; font-weight: 500; display: flex; align-items: center; gap: 10px; min-width: 0; }
.drow-ico {
  width: 28px; height: 28px; border-radius: 8px; background: var(--surface);
  border: 1px solid var(--border); color: var(--accent);
  display: grid; place-items: center; flex: none;
}
.drow-ico svg { width: 14px; height: 14px; stroke-width: 1.75; }
.drow b { font-family: var(--font-display); color: var(--accent); }
.drow.off { opacity: 0.5; }
.toggle { width: 36px; height: 20px; border-radius: 999px; background: rgba(26, 36, 32, 0.12); position: relative; flex: none; }
.toggle i { position: absolute; top: 2px; left: 2px; width: 16px; height: 16px; border-radius: 50%; background: var(--surface); transition: 0.25s; box-shadow: var(--shadow-sm); }
.toggle.on { background: var(--accent); }
.toggle.on i { left: 18px; background: var(--on-accent); }

/* ═══════════ SEKTÖRLER ═══════════ */
.sectors { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.sector {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 24px; transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  box-shadow: var(--shadow-sm);
}
.sector:hover { border-color: rgba(13, 155, 117, 0.35); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.sector-icon {
  width: 48px; height: 48px; border-radius: 13px; background: var(--accent-soft);
  color: var(--accent); display: grid; place-items: center; margin-bottom: 16px;
}
.sector-icon svg { width: 22px; height: 22px; stroke-width: 1.75; }
.sector h3 { font-size: 17px; margin-bottom: 8px; }
.sector p { font-size: 13.5px; color: var(--text-dim); }

/* ═══════════ REFERANSLAR ═══════════ */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testi {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; display: flex; flex-direction: column; gap: 16px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  box-shadow: var(--shadow-sm);
}
.testi:hover { border-color: rgba(13, 155, 117, 0.3); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.testi p { font-size: 14.5px; color: var(--text-dim); flex: 1; }
.testi footer { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 42px; height: 42px; border-radius: 50%; flex: none;
  background: linear-gradient(135deg, var(--accent-soft), rgba(13, 155, 117, 0.22));
  color: var(--accent); font-weight: 700; font-size: 13px;
  display: grid; place-items: center; font-family: var(--font-display);
}
.testi footer b { font-size: 14px; display: block; }
.testi footer small { font-size: 12px; color: var(--text-faint); }

/* ═══════════ STATSBAND ═══════════ */
.statsband { padding: 64px 0; background: linear-gradient(180deg, var(--bg-alt), var(--bg)); border-block: 1px solid var(--border); }
.statsband-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 32px; }
.sb-item { text-align: center; flex: 1; min-width: 140px; }
.sb-item strong { font-family: var(--font-display); font-size: clamp(30px, 3.4vw, 42px); font-weight: 700; color: var(--accent); display: block; margin-bottom: 4px; }
.sb-item span { font-size: 13.5px; color: var(--text-dim); }

/* ═══════════ TEKLİF ═══════════ */
.offer-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 48px;
  align-items: stretch;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 28px;
  padding: 48px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.offer-wrap::before {
  content: "";
  position: absolute;
  top: -160px;
  right: -160px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow), transparent 65%);
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}
.offer-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.offer-copy h2 { font-size: clamp(28px, 3.6vw, 40px); margin: 16px 0; }
.offer-copy > p { color: var(--text-dim); font-size: 16.5px; margin-bottom: 24px; }
.offer-copy p b { color: var(--text); }
.offer-list { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 32px; }
.offer-list li { font-size: 15px; color: var(--text-dim); }
.offer-list li b { color: var(--text); }
.offer-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-top: auto; }

.offer-card {
  position: relative;
  z-index: 1;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
  background: var(--surface-2);
  border: 1px solid rgba(13, 155, 117, 0.3);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.oc-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}
.oc-badge {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--on-accent);
  padding: 5px 12px;
  border-radius: 999px;
  line-height: 1.3;
}
.oc-head h3 {
  font-size: 22px;
  margin: 0;
  line-height: 1.25;
}
.offer-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 0 22px;
  padding: 0;
  flex: 1;
}
.offer-card ul li {
  font-size: 13.5px;
  color: var(--text-dim);
  line-height: 1.45;
}
.oc-footer {
  border-top: 1px dashed var(--border-strong);
  padding-top: 20px;
  margin-top: auto;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}
.oc-price {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
}
.oc-footer p {
  font-size: 13.5px;
  color: var(--text-dim);
  margin: 6px 0 16px;
}
.oc-footer p b { color: var(--text); }
.offer-card .btn-block {
  display: flex;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  border-radius: 14px;
  box-shadow: none;
}

/* ═══════════ SSS ═══════════ */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm);
  overflow: hidden; transition: border-color 0.3s; box-shadow: var(--shadow-sm);
}
.faq-item[open] { border-color: rgba(13, 155, 117, 0.35); }
.faq-item summary {
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 20px 24px; font-family: var(--font-display); font-weight: 600; font-size: 16px; cursor: pointer;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  flex: none; width: 28px; height: 28px; border-radius: 9px; background: var(--accent-soft);
  color: var(--accent); font-size: 17px; display: grid; place-items: center; transition: transform 0.3s;
}
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-item p { padding: 0 24px 22px; font-size: 15px; color: var(--text-dim); }

/* ═══════════ İLETİŞİM ═══════════ */
.contact-section { position: relative; overflow: hidden; }
.contact-glow {
  position: absolute; bottom: -260px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 520px; border-radius: 50%;
  background: radial-gradient(ellipse, var(--accent-glow), transparent 65%);
  opacity: 0.45; pointer-events: none; filter: blur(50px);
}
.contact-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 64px; position: relative; }
.contact-copy .eyebrow { margin-bottom: 18px; }
.contact-copy h2 { font-size: clamp(28px, 3.6vw, 42px); margin-bottom: 16px; }
.contact-copy > p { color: var(--text-dim); font-size: 16.5px; margin-bottom: 32px; }
.contact-copy p b { color: var(--text); }

.contact-channels { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.channel {
  display: flex; align-items: center; gap: 16px; padding: 16px 20px;
  border-radius: var(--radius-sm); background: var(--surface); border: 1px solid var(--border);
  transition: border-color 0.25s, transform 0.25s; box-shadow: var(--shadow-sm);
}
.channel:hover { border-color: rgba(13, 155, 117, 0.4); transform: translateX(4px); }
.ch-icon {
  width: 46px; height: 46px; border-radius: 13px; background: var(--accent-soft);
  color: var(--accent); display: grid; place-items: center; flex: none;
}
.ch-icon svg { width: 20px; height: 20px; stroke-width: 1.75; }
.channel b { font-size: 15px; display: block; }
.channel small { font-size: 12.5px; color: var(--text-faint); }

.contact-note { display: flex; gap: 12px; align-items: flex-start; padding: 16px 18px; border-radius: var(--radius-sm); background: var(--surface); border: 1px dashed var(--border-strong); }
.contact-note > svg { width: 18px; height: 18px; stroke-width: 1.75; color: var(--accent); flex: none; margin-top: 1px; }
.contact-note p { font-size: 13px; color: var(--text-faint); }
.contact-note p b { color: var(--text-dim); }

/* form */
.contact-form {
  position: relative;
  background: var(--surface); border: 1px solid var(--border-strong); border-radius: 24px;
  padding: 38px; box-shadow: var(--shadow-lg);
  min-width: 0; width: 100%; box-sizing: border-box;
}
.contact-form h3 { font-size: 23px; margin-bottom: 6px; }
.form-sub { font-size: 14px; color: var(--text-faint); margin-bottom: 26px; }
.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 0;
}
.field { margin-bottom: 16px; min-width: 0; width: 100%; }
.form-row > .field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--text-dim); margin-bottom: 7px; }
.field input,
.field select,
.field textarea {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  padding: 13px 16px;
  border-radius: 12px;
  font-size: 14.5px;
  font-family: inherit;
  line-height: 1.4;
  background-color: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text);
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--text-faint); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(13, 155, 117, 0.14);
}
.field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 42px;
  background-color: var(--surface-2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%235a6b63' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
  cursor: pointer;
}
.field select::-ms-expand { display: none; }
.field select option { background: var(--surface); color: var(--text); }
.field textarea { resize: vertical; min-height: 96px; }
.field input.err,
.field select.err,
.field textarea.err { border-color: var(--danger); }

.consent { display: flex; gap: 11px; align-items: flex-start; font-size: 13px; color: var(--text-faint); margin: 6px 0 22px; cursor: pointer; }
.consent input { margin-top: 3px; accent-color: var(--accent); width: 16px; height: 16px; flex: none; }
.consent a { color: var(--accent); text-decoration: underline; }

.hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-success {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent-soft), rgba(13, 155, 117, 0.04));
  border: 1px solid rgba(13, 155, 117, 0.28);
  box-shadow: 0 10px 30px rgba(13, 155, 117, 0.1);
  animation: successIn 0.45s cubic-bezier(0.2, 0.7, 0.3, 1) both;
}
.form-success[hidden] {
  display: none !important;
}
.form-success__icon {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #fff;
  box-shadow: 0 6px 16px var(--accent-glow);
  animation: successPop 0.5s cubic-bezier(0.2, 1.4, 0.5, 1) 0.1s both;
}
.form-success__icon i,
.form-success__icon svg { width: 22px; height: 22px; stroke-width: 3; }
.form-success__body { display: flex; flex-direction: column; gap: 3px; padding-top: 1px; }
.form-success__title { font-size: 15.5px; font-weight: 700; color: var(--accent-strong); line-height: 1.3; }
.form-success__text { font-size: 14px; line-height: 1.55; color: var(--text-dim); }
.form-success__text b { color: var(--accent-strong); font-weight: 700; }

@keyframes successIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes successPop {
  0% { transform: scale(0.4); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.form-error {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 15px 18px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.5;
  background: rgba(196, 64, 64, 0.08);
  border: 1px solid rgba(196, 64, 64, 0.3);
  color: var(--danger);
}
.form-error[hidden] {
  display: none !important;
}

/* ═══════════ FOOTER ═══════════ */
.footer { border-top: 1px solid var(--border); background: var(--bg-alt); padding: 72px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 52px; }
.footer-brand p { font-size: 14px; color: var(--text-dim); margin: 18px 0 22px; max-width: 300px; }
.powered-by {
  display: inline-block; font-family: var(--font-display);
  font-size: 15px; font-weight: 700; color: var(--text);
  transition: color 0.2s;
}
.powered-by:hover { color: var(--accent); }
.footer-col h4 { font-size: 14px; margin-bottom: 18px; color: var(--text); }
.footer-col a { display: block; font-size: 14px; color: var(--text-dim); margin-bottom: 11px; transition: color 0.2s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 28px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: var(--text-faint);
}

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1080px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .hero-stats, .hero-actions { justify-content: center; }
  .float-card { display: none; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .b-wide { grid-column: span 2; }
  .b-tall { grid-row: auto; }
  .sectors { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .panel-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .offer-wrap { grid-template-columns: 1fr; padding: 36px 28px; gap: 32px; }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-brand { grid-column: span 3; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; position: fixed; inset: 74px 0 auto 0; flex-direction: column;
    background: rgba(243, 241, 236, 0.98); backdrop-filter: blur(16px);
    padding: 24px; gap: 4px; border-bottom: 1px solid var(--border);
    max-height: calc(100dvh - 74px); overflow-y: auto;
  }
  .nav-links.open a { padding: 13px 16px; border-radius: 12px; font-size: 16px; }
  .nav-links.open a:hover { background: var(--accent-soft); }
  .nav-burger { display: flex; }
  .steps { grid-template-columns: 1fr; }
  .step-arrow { transform: rotate(90deg); justify-self: center; }
}

@media (max-width: 640px) {
  .container, .container-narrow { width: min(100% - 32px, 1180px); }
  .section { padding: 76px 0; }
  .section-head { margin-bottom: 44px; }
  .hero { padding: 130px 0 80px; }
  .hero h1 { font-size: clamp(34px, 11vw, 44px); }
  .hero-sub { font-size: 16px; }
  .hero-badge { font-size: 12.5px; padding: 8px 13px; }
  .hero-actions { width: 100%; gap: 10px; margin-bottom: 38px; }
  .hero-actions .btn { width: 100%; white-space: normal; }
  .hero-stats {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 14px;
  }
  .bento, .sectors, .testi-grid { grid-template-columns: 1fr; }
  .b-wide { grid-column: auto; }
  .bento-card, .step, .sector, .testi { padding: 22px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .float-card { display: none; }
  .phone { width: min(272px, 100%); }
  .phone-screen { height: min(540px, 72vh); }
  .nav-cta .btn-primary.btn-sm { display: none; }
  .dash { grid-template-columns: minmax(0, 1fr); }
  .dash-side { display: none; }
  .dash-main { min-width: 0; padding: 14px; }
  .dash-cards { gap: 6px; }
  .dcard { min-width: 0; padding: 9px 7px; }
  .dcard strong { font-size: 16px; }
  .drow { gap: 8px; padding: 10px; }
  .offer-wrap { padding: 28px 20px; }
  .offer-card { padding: 22px; }
  .contact-form { padding: 28px 22px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .statsband-inner { gap: 24px; }
  .sb-item { min-width: 40%; }
  .hero-stats { gap: 22px; }
  .price-row { grid-template-columns: 1fr auto auto; }
  .price-row .price-old,
  .price-row.muted > span:nth-child(2):empty { display: none; }
  .footer-col a,
  .footer-brand a { overflow-wrap: anywhere; }
  .faq-item summary { padding: 18px; font-size: 15px; }
  .faq-item p { padding: 0 18px 18px; font-size: 14px; }
  .nav-cta { gap: 8px; }
  .lang-switch button { padding: 6px 9px; font-size: 12px; }
}

@media (max-width: 480px) {
  .nav-inner { gap: 8px; }
  .logo { gap: 7px; }
  .logo-mark { width: 32px; height: 32px; }
  .logo-text { font-size: 19px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .statsband-inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 14px;
  }
  .sb-item { min-width: 0; }
  .legal-content { padding: 24px 18px; }
  .legal-nav-links a { width: 100%; justify-content: center; }
}

/* ═══════════ YASAL SAYFALAR ═══════════ */
.legal-hero {
  padding: 140px 0 48px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(13, 155, 117, 0.06), transparent 70%);
}
.legal-hero .eyebrow { margin-bottom: 14px; }
.legal-hero h1 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 12px;
}
.legal-meta {
  font-size: 14px;
  color: var(--text-faint);
}
.legal-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 48px;
  padding: 56px 0 100px;
  align-items: start;
}
.legal-toc {
  position: sticky;
  top: 100px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 18px;
  box-shadow: var(--shadow-sm);
}
.legal-toc h2 {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.legal-toc a {
  display: block;
  font-size: 13.5px;
  color: var(--text-dim);
  padding: 8px 10px;
  border-radius: 10px;
  transition: background 0.2s, color 0.2s;
}
.legal-toc a:hover,
.legal-toc a:focus-visible {
  background: var(--accent-soft);
  color: var(--accent);
}
.legal-content {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 40px 44px;
  box-shadow: var(--shadow-sm);
  overflow-wrap: anywhere;
}
.legal-content h2 {
  font-size: 22px;
  margin: 36px 0 12px;
  scroll-margin-top: 110px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
  font-size: 17px;
  margin: 22px 0 8px;
}
.legal-content p,
.legal-content li {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.75;
}
.legal-content p { margin-bottom: 12px; }
.legal-content ul,
.legal-content ol {
  margin: 0 0 16px 1.2em;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legal-content a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.legal-content strong { color: var(--text); font-weight: 600; }
.legal-note {
  margin-top: 32px;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  border: 1px solid rgba(13, 155, 117, 0.22);
  font-size: 13.5px;
  color: var(--text-dim);
}
.legal-nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.legal-nav-links a {
  display: inline-flex;
  align-items: center;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-dim);
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface-2);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.legal-nav-links a:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.legal-nav-links a.current {
  background: var(--accent-soft);
  border-color: rgba(13, 155, 117, 0.35);
  color: var(--accent);
}

@media (max-width: 1024px) {
  .legal-layout { grid-template-columns: 1fr; gap: 28px; padding: 40px 0 72px; }
  .legal-toc {
    position: static;
    max-height: min(280px, 42vh);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .legal-content { padding: 28px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}
