/* Shield Panel — gece = :root varsayılan | gündüz = html[data-theme="light"] · L7 = fuşya (mavi yok) */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400&display=swap");

:root {
  --radius: 14px;
  --radius-sm: 10px;
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --max: 1120px;
  color-scheme: dark;
  --bg-deep: #070a0e;
  --bg-mid: #0c1018;
  --bg-card: #101620;
  --bg-elevated: #161d2a;
  --border: rgba(226, 232, 240, 0.07);
  --border-strong: rgba(226, 232, 240, 0.14);
  --text: #e8edf4;
  --text-muted: #8b95a8;
  --allow: #34d399;
  --allow-bright: #6ee7b7;
  --allow-dim: rgba(52, 211, 153, 0.14);
  --allow-glow: rgba(52, 211, 153, 0.35);
  --deny: #f87171;
  --deny-deep: #ef4444;
  --deny-dim: rgba(248, 113, 113, 0.12);
  --deny-glow: rgba(239, 68, 68, 0.28);
  --warn: #fbbf24;
  --warn-dim: rgba(251, 191, 36, 0.12);
  --warn-line: rgba(251, 191, 36, 0.25);
  --l7: #e879f9;
  --l7-bright: #f0abfc;
  --l7-dim: rgba(232, 121, 249, 0.16);
  --accent: var(--allow);
  --accent-dim: var(--allow-dim);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.55);
  --shadow-allow: 0 12px 40px var(--allow-glow);
  --header-bg: rgba(7, 10, 14, 0.88);
  --grid-line-allow: rgba(52, 211, 153, 0.022);
  --grid-line-deny: rgba(248, 113, 113, 0.02);
  --glass-bg: linear-gradient(150deg, rgba(16, 22, 32, 0.95), rgba(10, 14, 22, 0.98));
  --glass-inset-shade: rgba(0, 0, 0, 0.35);
  --glass-pre: #9fb0c9;
  --tag-line-deny: rgba(248, 113, 113, 0.35);
  --price-card-end: rgba(12, 16, 24, 0.92);
  --featured-ring: rgba(52, 211, 153, 0.45);
  --featured-soft: rgba(52, 211, 153, 0.08);
  --cta-1: rgba(239, 68, 68, 0.08);
  --cta-2: rgba(52, 211, 153, 0.1);
  --cta-inset: rgba(0, 0, 0, 0.25);
  --pill-on-allow: #03140c;
  --bg-deeper: #05070a;
}

/* ——— Gündüz modu (html’e data-theme="light") ——— */
html[data-theme="light"] {
  color-scheme: light;
  --bg-deep: #f8fafc;
  --bg-mid: #f1f5f9;
  --bg-card: #ffffff;
  --bg-elevated: #e8eef4;
  --border: rgba(15, 23, 42, 0.09);
  --border-strong: rgba(15, 23, 42, 0.16);
  --text: #0f172a;
  --text-muted: #64748b;
  --allow: #059669;
  --allow-bright: #10b981;
  --allow-dim: rgba(5, 150, 105, 0.12);
  --allow-glow: rgba(16, 185, 129, 0.22);
  --deny: #dc2626;
  --deny-deep: #b91c1c;
  --deny-dim: rgba(220, 38, 38, 0.1);
  --deny-glow: rgba(220, 38, 38, 0.18);
  --warn: #d97706;
  --warn-dim: rgba(217, 119, 6, 0.12);
  --warn-line: rgba(217, 119, 6, 0.28);
  --l7: #a21caf;
  --l7-bright: #c026d3;
  --l7-dim: rgba(162, 28, 175, 0.14);
  --accent: var(--allow);
  --accent-dim: var(--allow-dim);
  --shadow: 0 20px 48px rgba(15, 23, 42, 0.08);
  --shadow-allow: 0 8px 28px var(--allow-glow);
  --header-bg: rgba(248, 250, 252, 0.94);
  --grid-line-allow: rgba(5, 150, 105, 0.07);
  --grid-line-deny: rgba(220, 38, 38, 0.06);
  --glass-bg: linear-gradient(150deg, rgba(255, 255, 255, 0.98), rgba(241, 245, 249, 0.99));
  --glass-inset-shade: rgba(15, 23, 42, 0.06);
  --glass-pre: #475569;
  --tag-line-deny: rgba(220, 38, 38, 0.35);
  --price-card-end: #eef2f7;
  --featured-ring: rgba(5, 150, 105, 0.35);
  --featured-soft: rgba(16, 185, 129, 0.12);
  --cta-1: rgba(220, 38, 38, 0.06);
  --cta-2: rgba(5, 150, 105, 0.08);
  --cta-inset: rgba(15, 23, 42, 0.04);
  --pill-on-allow: #022c22;
  --bg-deeper: #eef2f7;
}

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

html {
  scroll-behavior: smooth;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 200;
  padding: 0.65rem 1rem;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  background: var(--allow);
  color: var(--pill-on-allow);
  text-decoration: none;
  box-shadow: var(--shadow-allow);
  transition: top 0.15s ease;
}

.skip-link:focus {
  top: 1rem;
  outline: none;
}

.skip-link:focus-visible {
  outline: 2px solid var(--l7-bright);
  outline-offset: 3px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body {
  position: relative;
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-deep);
  background-image: linear-gradient(165deg, var(--bg-mid) 0%, var(--bg-deep) 45%, var(--bg-deeper) 100%);
  min-height: 100vh;
}

/* Arka plan: yeşil (izin) + kırmızı (engel) SOC ışığı, ince kural ızgarası */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 100% 70% at 85% 5%, var(--deny-dim), transparent 42%),
    radial-gradient(ellipse 90% 60% at 10% 15%, var(--allow-dim), transparent 45%),
    radial-gradient(ellipse 80% 50% at 50% 100%, var(--l7-dim), transparent 55%),
    linear-gradient(180deg, transparent 0%, var(--bg-deep) 92%),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 72px,
      var(--grid-line-allow) 72px,
      var(--grid-line-allow) 73px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 72px,
      var(--grid-line-deny) 72px,
      var(--grid-line-deny) 73px
    );
  z-index: -1;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

:focus-visible {
  outline: 2px solid var(--allow-bright);
  outline-offset: 3px;
}

.theme-toggle:focus-visible,
.nav-toggle:focus-visible {
  outline-offset: 2px;
}

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

/* Üst bar */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--header-bg);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 var(--allow-dim);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.header-end {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  flex: 1;
  min-width: 0;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
}

.logo span {
  color: var(--allow-bright);
  text-shadow: 0 0 24px var(--allow-glow);
}

.logo:hover {
  text-decoration: none;
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-main a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
}

.nav-main a:hover,
.nav-main a.is-active {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(165deg, var(--allow-bright), var(--allow));
  color: var(--pill-on-allow);
  box-shadow: var(--shadow-allow);
}

.btn-primary:hover {
  box-shadow: 0 14px 48px var(--allow-glow);
  filter: brightness(1.05);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  background: var(--bg-elevated);
  border-color: var(--border-strong);
  box-shadow: 0 0 0 1px var(--deny-dim);
}

.btn-lg {
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 1.25rem;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-main {
    position: fixed;
    inset: 60px 1rem auto 1rem;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    gap: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  }

  .nav-main.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-main a {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
  }

  .nav-main a:last-of-type {
    border-bottom: none;
  }

  .nav-main .btn {
    margin-top: 0.75rem;
    width: 100%;
  }
}

/* Bölümler */
main {
  overflow-x: hidden;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.section-tight {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.hero {
  padding-top: 5rem;
  padding-bottom: 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

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

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warn);
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
  background: var(--warn-dim);
  border: 1px solid var(--warn-line);
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
}

.hero h1 em {
  font-style: italic;
  color: transparent;
  background: linear-gradient(120deg, var(--allow-bright), var(--l7-bright));
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 42ch;
  margin: 0 0 2rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.hero-stats strong {
  display: block;
  font-size: 1.5rem;
  color: var(--text);
}

.hero-stats > div:nth-child(1) strong {
  color: var(--allow-bright);
}

.hero-stats > div:nth-child(2) strong {
  color: var(--warn);
}

.hero-stats > div:nth-child(3) strong {
  color: var(--l7-bright);
}

.hero-stats span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Sağ: cam kart */
.hero-visual {
  position: relative;
}

.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--border);
  border-left: 4px solid var(--allow);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow:
    var(--shadow),
    inset 0 0 0 1px var(--deny-dim),
    inset 0 -30px 60px var(--glass-inset-shade);
}

.glass-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.glass-card__copy {
  padding: 0.4rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.glass-card__copy.is-done {
  border-color: var(--allow-bright);
  color: var(--allow-bright);
}

.glass-card pre,
.glass-card__pre {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.75;
  color: var(--glass-pre);
  overflow-x: auto;
  font-family: ui-monospace, "Cascadia Code", "Consolas", monospace;
}

.glass-card .tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.55rem;
  background: var(--deny-dim);
  color: var(--deny);
  border: 1px solid var(--tag-line-deny);
  border-radius: 4px;
  margin-bottom: 0;
}

/* Özellik grid */
.section-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 3rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  margin: 0 0 0.75rem;
}

.section-head p {
  margin: 0;
  color: var(--text-muted);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

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

.feature-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color 0.2s, transform 0.2s;
}

.feature-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.feature-grid .feature-card:nth-child(1) {
  border-top: 3px solid var(--deny-deep);
}

.feature-grid .feature-card:nth-child(1) .feature-icon {
  background: var(--deny-dim);
  color: var(--deny);
}

.feature-grid .feature-card:nth-child(2) {
  border-top: 3px solid var(--l7);
}

.feature-grid .feature-card:nth-child(2) .feature-icon {
  background: var(--l7-dim);
  color: var(--l7);
}

.feature-grid .feature-card:nth-child(3) {
  border-top: 3px solid var(--allow);
}

.feature-grid .feature-card:nth-child(3) .feature-icon {
  background: var(--allow-dim);
  color: var(--allow-bright);
}

.feature-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.feature-card p {
  margin: 0;
  flex: 1;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--allow-dim);
  color: var(--allow-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

/* Fiyatlandırma */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

@media (max-width: 960px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
}

.price-card {
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--price-card-end) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-grid .price-card:nth-child(1) {
  border-top: 3px solid var(--deny);
  box-shadow: inset 0 1px 0 var(--deny-dim);
}

.pricing-grid .price-card:nth-child(2).featured {
  border-color: var(--featured-ring);
  border-top: 3px solid var(--allow-bright);
  box-shadow:
    0 0 0 1px var(--allow-dim),
    0 20px 50px var(--featured-soft),
    var(--shadow);
}

.pricing-grid .price-card:nth-child(3) {
  border-top: 3px solid var(--l7);
  box-shadow: inset 0 1px 0 var(--l7-dim);
}

.price-card.featured::before {
  content: "Önerilen";
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: linear-gradient(165deg, var(--allow-bright), var(--allow));
  color: var(--pill-on-allow);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  box-shadow: 0 4px 20px var(--allow-glow);
}

.price-card h3 {
  margin: 0 0 0.25rem;
  font-size: 1.25rem;
}

.price-card .tier-desc {
  margin: 0 0 1.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin-bottom: 1.5rem;
}

.price-row .amount {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.price-row .currency {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-muted);
}

.price-row .period {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.price-features {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  flex: 1;
}

.price-features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.65rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.price-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--allow-bright);
  font-weight: 700;
  font-size: 0.85rem;
  text-shadow: 0 0 12px var(--allow-glow);
}

.price-card .btn {
  width: 100%;
}

/* CTA şerit */
.cta-strip {
  background: linear-gradient(
    125deg,
    var(--cta-1) 0%,
    var(--bg-elevated) 28%,
    var(--bg-card) 55%,
    var(--cta-2) 100%
  );
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  max-width: var(--max);
  margin: 0 auto 4rem;
  box-shadow: inset 0 0 80px var(--cta-inset);
}

.cta-strip h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 0 0 0.5rem;
  font-weight: 400;
}

.cta-strip p {
  margin: 0 0 1.5rem;
  color: var(--text-muted);
}

/* Footer — çok sütunlu, uluslararası SaaS tarzı */
.site-footer {
  margin-top: 3rem;
  padding: 0;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-deep) 45%, var(--bg-deeper) 100%);
  box-shadow: 0 -1px 0 var(--allow-dim);
}

html[data-theme="light"] .site-footer {
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-mid) 40%, var(--bg-deep) 100%);
}

.footer-shell {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem 2.25rem;
}

.footer-newsletter {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.75rem 2.5rem;
  padding: 2.5rem 0 2.25rem;
  border-bottom: 1px solid var(--border);
}

.footer-newsletter__text {
  flex: 1 1 280px;
  max-width: 520px;
}

.footer-eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--l7-bright);
}

.footer-newsletter__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
}

.footer-newsletter__desc {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.footer-newsletter__desc a {
  font-weight: 600;
}

.footer-newsletter__form {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0.65rem;
  flex: 1 1 300px;
  max-width: 440px;
}

.footer-newsletter__input {
  flex: 1 1 180px;
  min-width: 0;
  padding: 0.75rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.footer-newsletter__input::placeholder {
  color: var(--text-muted);
  opacity: 0.85;
}

.footer-newsletter__input:hover {
  border-color: var(--border-strong);
}

.footer-newsletter__input:focus {
  outline: none;
  border-color: var(--allow-bright);
  box-shadow: 0 0 0 3px var(--allow-dim);
}

.footer-newsletter__submit {
  flex-shrink: 0;
  white-space: nowrap;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 2.25rem 2rem;
  padding: 2.5rem 0 1.75rem;
}

.footer-brand {
  min-width: 0;
}

.footer-brand-logo {
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-brand-tag {
  margin: 0 0 1.25rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 34rem;
}

.footer-social {
  display: flex;
  gap: 0.5rem;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}

.footer-social-link:hover {
  color: var(--allow-bright);
  border-color: var(--allow-dim);
  background: var(--allow-dim);
  text-decoration: none;
  transform: translateY(-1px);
}

.footer-col-title {
  margin: 0 0 1.1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
}

.footer-col-note {
  display: inline;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--text-muted);
  margin-left: 0.35rem;
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-list li {
  margin-bottom: 0.65rem;
}

.footer-list a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-list a:hover {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
  padding: 1.25rem 0 1.75rem;
  border-top: 1px solid var(--border);
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 100px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.footer-copy {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.footer-bottom-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 1.75rem;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
}

.footer-bottom-links a:hover {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-lang {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.footer-lang-item.is-active {
  color: var(--allow-bright);
}

.footer-lang-sep {
  margin: 0 0.35rem;
  opacity: 0.45;
}

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

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

  .footer-newsletter__form {
    flex-direction: column;
    max-width: none;
  }

  .footer-newsletter__submit {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Yasal içerik sayfası */
.legal-page {
  padding-top: 2.5rem;
  padding-bottom: 3rem;
}

.legal-doc {
  max-width: 720px;
  margin: 0 auto;
}

.legal-doc > h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  margin: 0 0 0.35rem;
}

.legal-doc > .legal-lead {
  margin: 0 0 2.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.legal-doc section {
  margin-bottom: 2.5rem;
  scroll-margin-top: 5.5rem;
}

.legal-doc h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0 0 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.legal-doc p,
.legal-doc li {
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.legal-doc ul {
  margin: 0.5rem 0 0;
  padding-left: 1.25rem;
}

.legal-doc li {
  margin-bottom: 0.4rem;
}

.legal-doc .legal-note {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text-muted);
}
.page-hero {
  text-align: center;
  padding: 3rem 1.5rem 2rem;
  max-width: 640px;
  margin: 0 auto;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  margin: 0 0 0.75rem;
}

.page-hero p {
  margin: 0;
  color: var(--text-muted);
}

/* Karşılaştırma tablosu — basit */
.compare-wrap {
  overflow-x: auto;
  margin-top: 3rem;
}

.compare-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.compare-table th,
.compare-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.compare-table th {
  color: var(--text-muted);
  font-weight: 600;
}

.compare-table td:first-child {
  color: var(--text-muted);
}

.compare-table .check {
  color: var(--allow-bright);
  font-weight: 700;
}

.compare-table .dash {
  color: var(--deny);
  opacity: 0.35;
  font-weight: 600;
}

.compare-table thead th:nth-child(2) {
  color: var(--deny);
}

.compare-table thead th:nth-child(3) {
  color: var(--l7-bright);
}

.compare-table thead th:nth-child(4) {
  color: var(--allow-bright);
}

/* Tema anahtarı: gece ☽ gizli gündüzde · gündüz ☀ gizli gecede */
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
  flex-shrink: 0;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.theme-toggle:hover {
  border-color: var(--border-strong);
  box-shadow: 0 0 0 1px var(--allow-dim);
}

html:not([data-theme="light"]) .theme-toggle__moon {
  display: none;
}

html[data-theme="light"] .theme-toggle__sun {
  display: none;
}

.theme-toggle__sun,
.theme-toggle__moon {
  pointer-events: none;
}

html[data-theme="light"] .logo span {
  text-shadow: 0 0 20px var(--allow-glow);
}

/* ——— Ana sayfa (page-home) ——— */
.page-home .hero--home {
  position: relative;
  padding-top: clamp(4rem, 8vw, 6rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}

.hero-home-bg {
  position: absolute;
  inset: -35% -20% 40% -20%;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 55% at 70% 20%, rgba(232, 121, 249, 0.22), transparent 55%),
    radial-gradient(ellipse 70% 50% at 15% 30%, rgba(52, 211, 153, 0.2), transparent 50%),
    radial-gradient(ellipse 60% 45% at 90% 75%, rgba(248, 113, 113, 0.12), transparent 50%);
  filter: blur(0);
  opacity: 0.95;
  animation: sp-hero-mesh 22s ease-in-out infinite alternate;
}

@keyframes sp-hero-mesh {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.85;
  }
  100% {
    transform: translate(-2%, 3%) scale(1.04);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-home-bg {
    animation: none;
  }
}

.page-home .hero-grid--home {
  position: relative;
  z-index: 1;
  align-items: start;
}

.page-home .hero-copy {
  max-width: 36rem;
}

.hero-trust {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: grid;
  gap: 0.5rem 1rem;
}

@media (min-width: 520px) {
  .hero-trust {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-trust li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.hero-trust li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--allow-bright), var(--l7-bright));
  box-shadow: 0 0 10px var(--allow-glow);
}

.hero-visual--home {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-dashboard {
  background: linear-gradient(165deg, var(--bg-elevated), var(--bg-card));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow), 0 0 0 1px var(--allow-dim);
  overflow: hidden;
  margin-bottom: -2.5rem;
  z-index: 2;
}

.hero-dashboard__chrome {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.2);
}

html[data-theme="light"] .hero-dashboard__chrome {
  background: rgba(15, 23, 42, 0.04);
}

.hero-dashboard__dots {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--deny);
  opacity: 0.9;
  box-shadow:
    calc(0.5rem + 0.35rem) 0 0 var(--warn),
    calc(2 * (0.5rem + 0.35rem)) 0 0 var(--allow-bright);
  margin-right: calc(2 * (0.5rem + 0.35rem));
  flex-shrink: 0;
}

.hero-dashboard__title {
  flex: 1;
  min-width: 0;
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-dashboard__pill {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  border: 1px solid var(--border);
}

.hero-dashboard__pill--ok {
  color: var(--allow-bright);
  background: var(--allow-dim);
  border-color: rgba(52, 211, 153, 0.35);
}

.hero-dashboard__pill--l7 {
  color: var(--l7-bright);
  background: var(--l7-dim);
  border-color: rgba(232, 121, 249, 0.35);
}

.hero-dashboard__body {
  padding: 1rem 1rem 1.1rem;
}

.hero-dashboard__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.hero-dashboard__label {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.hero-dashboard__value {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
}

.hero-dashboard__value .unit {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-left: 0.15rem;
}

.hero-dashboard__value--deny {
  color: var(--deny);
}

.hero-dashboard__bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 3.25rem;
  margin-bottom: 1rem;
  padding: 0 0.15rem;
}

.hero-dashboard__bars span {
  flex: 1;
  min-height: 18%;
  height: var(--h);
  border-radius: 4px 4px 1px 1px;
  background: linear-gradient(180deg, var(--l7-bright), rgba(232, 121, 249, 0.25));
  opacity: 0.85;
  animation: sp-bar-pulse 2.4s ease-in-out infinite;
}

.hero-dashboard__bars span:nth-child(odd) {
  background: linear-gradient(180deg, var(--allow-bright), rgba(52, 211, 153, 0.2));
  animation-delay: 0.35s;
}

@keyframes sp-bar-pulse {
  0%,
  100% {
    opacity: 0.65;
    transform: scaleY(0.96);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-dashboard__bars span {
    animation: none;
  }
}

.hero-dashboard__log {
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 0.65rem;
  line-height: 1.65;
  color: var(--glass-pre);
  border-top: 1px solid var(--border);
  padding-top: 0.75rem;
}

.hero-dashboard__log .log-ts {
  color: var(--text-muted);
  margin-right: 0.35rem;
  font-variant-numeric: tabular-nums;
}

.log-allow {
  color: var(--allow-bright);
  font-weight: 700;
  margin-right: 0.35rem;
}

.log-deny {
  color: var(--deny);
  font-weight: 700;
  margin-right: 0.35rem;
}

.log-warn {
  color: var(--warn);
  font-weight: 700;
  margin-right: 0.35rem;
}

.glass-card--overlap {
  position: relative;
  z-index: 3;
  margin-left: 0;
  margin-top: 0;
  border-left-width: 4px;
}

@media (min-width: 901px) {
  .glass-card--overlap {
    margin-left: 1.5rem;
    margin-right: -0.5rem;
  }
}

.glass-card pre code {
  font: inherit;
  color: inherit;
}

.glass-card .code-k {
  color: var(--warn);
}

.glass-card .code-c {
  color: var(--l7-bright);
}

.glass-card .code-n {
  color: var(--allow-bright);
}

.section.home-strip {
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
}

.section--flush {
  max-width: none;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}

.home-strip {
  border-block: 1px solid var(--border);
  background: linear-gradient(90deg, var(--allow-dim), transparent 35%, var(--l7-dim));
}

.home-strip__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  justify-content: center;
}

.home-strip__item {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.4rem 0.85rem;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.section-head--left {
  text-align: left;
  margin-left: 0;
  margin-right: auto;
  max-width: 40rem;
}

.home-kicker {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--l7-bright);
}

.section-head__lead {
  margin: 0.75rem 0 0;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.55;
}

.home-flow__steps {
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  position: relative;
}

@media (max-width: 900px) {
  .home-flow__steps {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 901px) {
  .home-flow__steps::before {
    content: "";
    position: absolute;
    top: 2.25rem;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(90deg, var(--deny-dim), var(--l7-dim), var(--allow-dim));
    border-radius: 2px;
    z-index: 0;
  }
}

.home-flow__steps li {
  position: relative;
  z-index: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem 1.35rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.home-flow__steps li:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
}

html[data-theme="light"] .home-flow__steps li:hover {
  box-shadow: var(--shadow);
}

.home-flow__num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  background: linear-gradient(120deg, var(--allow-bright), var(--l7-bright));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.75rem;
}

.home-flow__steps h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.home-flow__steps p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.home-caps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 900px) {
  .home-caps__grid {
    grid-template-columns: 1fr;
  }
}

.home-cap {
  margin: 0;
  padding: 1.35rem 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: linear-gradient(160deg, var(--bg-elevated), var(--bg-card));
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.home-cap:hover {
  border-color: var(--allow-dim);
  box-shadow: 0 0 0 1px var(--allow-dim);
}

.home-cap h3 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
}

.home-cap p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.home-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

@media (max-width: 900px) {
  .home-split {
    grid-template-columns: 1fr;
  }
}

.home-split__quote {
  margin: 0;
  padding: 2rem 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background:
    linear-gradient(145deg, rgba(232, 121, 249, 0.08), transparent 45%),
    var(--bg-card);
  box-shadow: var(--shadow);
}

.home-split__quote p {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.45rem);
  font-weight: 400;
  line-height: 1.45;
  color: var(--text);
}

.home-split__quote footer {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
}

.home-split__aside {
  padding: 0.5rem 0;
}

.home-split__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 500;
  margin: 0 0 1.25rem;
  line-height: 1.15;
}

.home-split__title em {
  font-style: italic;
  color: var(--l7-bright);
}

.home-split__list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.home-split__list li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.home-split__list span {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--allow-bright);
  min-width: 2.25rem;
}

.cta-strip--home {
  text-align: left;
  padding: 0;
  overflow: hidden;
}

.cta-strip__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2.5rem 2.25rem;
}

@media (max-width: 768px) {
  .cta-strip__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-strip__actions {
    align-items: stretch;
  }
}

.cta-strip--home h2 {
  margin-bottom: 0.65rem;
}

.cta-strip--home > .cta-strip__grid > div:first-child p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 46ch;
}

@media (max-width: 768px) {
  .cta-strip--home > .cta-strip__grid > div:first-child p {
    max-width: none;
  }
}

.cta-strip__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
}

@media (max-width: 768px) {
  .cta-strip__actions {
    align-items: stretch;
  }

  .cta-strip__actions .btn {
    width: 100%;
  }
}

.cta-strip__note {
  margin: 0.5rem 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.cta-strip__note a {
  font-weight: 600;
}

/* ——— Sabit header ile iç bağlantı ——— */
#ozellikler,
#vitrin,
#akış,
#katman,
#operasyon,
#faq,
#sss,
#compare,
#satın-al {
  scroll-margin-top: 5.75rem;
}

/* ——— Özellik kartı iç linki ——— */
.feature-card__link {
  display: inline-flex;
  margin-top: 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--l7-bright);
  text-decoration: none;
  align-items: center;
  gap: 0.25rem;
}

.feature-card__link:hover {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ——— Ana sayfa: bento vitrin ——— */
.home-bento {
  padding-top: 3rem;
}

.home-bento__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: auto auto auto;
  gap: 1rem;
  align-items: stretch;
}

@media (max-width: 900px) {
  .home-bento__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
  }

  .home-bento__grid > :nth-child(1),
  .home-bento__grid > :nth-child(2),
  .home-bento__grid > :nth-child(3),
  .home-bento__grid > :nth-child(4),
  .home-bento__grid > :nth-child(5) {
    grid-column: auto;
    grid-row: auto;
  }

  .home-bento__grid > :nth-child(1) {
    grid-column: 1 / -1;
  }

  .home-bento__grid > :nth-child(3) {
    grid-column: 1 / -1;
  }
}

@media (max-width: 520px) {
  .home-bento__grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 901px) {
  .home-bento__grid > :nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  .home-bento__grid > :nth-child(2) {
    grid-column: 3;
    grid-row: 1;
  }

  .home-bento__grid > :nth-child(3) {
    grid-column: 1;
    grid-row: 2 / 4;
  }

  .home-bento__grid > :nth-child(4) {
    grid-column: 2;
    grid-row: 2;
  }

  .home-bento__grid > :nth-child(5) {
    grid-column: 2 / 4;
    grid-row: 3;
  }
}

.home-bento__cell {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1.25rem 1.2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(155deg, var(--bg-elevated), var(--bg-card));
  text-decoration: none;
  color: inherit;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  min-height: 5.5rem;
}

a.home-bento__cell:hover {
  border-color: var(--allow-dim);
  transform: translateY(-3px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.3);
  text-decoration: none;
}

.home-bento__cell strong {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text);
}

.home-bento__meta {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.home-bento__meta code {
  font-size: 0.78em;
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
  background: var(--bg-deep);
  border: 1px solid var(--border);
}

.home-bento__tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.28rem 0.55rem;
  border-radius: 6px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  background: var(--bg-deep);
}

.home-bento__tag--ok {
  color: var(--allow-bright);
  border-color: rgba(52, 211, 153, 0.35);
  background: var(--allow-dim);
}

.home-bento__tag--l7 {
  color: var(--l7-bright);
  border-color: rgba(232, 121, 249, 0.35);
  background: var(--l7-dim);
}

.home-bento__tag--warn {
  color: var(--warn);
  border-color: var(--warn-line);
  background: var(--warn-dim);
}

.home-bento__cell--accent {
  background: linear-gradient(140deg, var(--warn-dim), var(--bg-card));
  border-color: var(--warn-line);
}

/* ——— Katman diyagramı ——— */
.home-layers {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.home-layers__viz {
  max-width: 560px;
  margin: 2rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.home-layers__row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.05rem 1.2rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.home-layers__row--l7 {
  border-color: rgba(232, 121, 249, 0.45);
  background: linear-gradient(92deg, var(--l7-dim), var(--bg-card) 70%);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
  transform: translateX(-8px) rotate(-0.35deg);
}

.home-layers__row--l4 {
  border-color: rgba(248, 113, 113, 0.35);
  background: linear-gradient(92deg, var(--deny-dim), var(--bg-card) 72%);
}

.home-layers__row--host {
  border-color: rgba(52, 211, 153, 0.4);
  background: linear-gradient(92deg, var(--allow-dim), var(--bg-card) 70%);
  transform: translateX(6px) rotate(0.3deg);
}

@media (max-width: 600px) {
  .home-layers__row--l7,
  .home-layers__row--host {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-layers__row--l7,
  .home-layers__row--host {
    transform: none;
  }
}

.home-layers__badge {
  flex-shrink: 0;
  min-width: 3.25rem;
  text-align: center;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0.4rem 0.45rem;
  border-radius: 6px;
  border: 1px solid var(--border-strong);
  background: var(--bg-deep);
  color: var(--text-muted);
}

.home-layers__row--l7 .home-layers__badge {
  color: var(--l7-bright);
  border-color: rgba(232, 121, 249, 0.4);
}

.home-layers__row--l4 .home-layers__badge {
  color: var(--deny);
  border-color: rgba(248, 113, 113, 0.35);
}

.home-layers__row--host .home-layers__badge {
  color: var(--allow-bright);
  border-color: rgba(52, 211, 153, 0.4);
}

.home-layers__label {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.home-layers__foot {
  text-align: center;
  margin: 1.75rem 0 0;
  font-size: 0.95rem;
}

/* ——— SSS (details) ——— */
.home-faq {
  padding-bottom: 3.5rem;
}

.home-faq__list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.home-faq__item {
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-card);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.home-faq__item:hover {
  border-color: var(--border-strong);
}

.home-faq__item[open] {
  border-color: var(--allow-dim);
  box-shadow: 0 0 0 1px var(--allow-dim);
}

.home-faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 1.15rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.home-faq__item summary::-webkit-details-marker {
  display: none;
}

.home-faq__item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid var(--border);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--allow-bright);
  background: var(--bg-elevated);
  transition: transform 0.2s ease, background 0.2s ease;
}

.home-faq__item[open] summary::after {
  content: "−";
  transform: rotate(180deg);
  background: var(--allow-dim);
}

.home-faq__body {
  padding: 0 1.15rem 1.1rem;
  border-top: 1px solid var(--border);
}

.home-faq__body p {
  margin: 0.85rem 0 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.home-ops {
  padding-top: 2.5rem;
  padding-bottom: 1rem;
}

.home-ops__grid {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

@media (max-width: 960px) {
  .home-ops__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .home-ops__grid {
    grid-template-columns: 1fr;
  }
}

.home-ops__item {
  margin: 0;
  padding: 1.25rem 1.15rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: linear-gradient(165deg, var(--bg-card), var(--bg-elevated));
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-height: 8.5rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.home-ops__item:hover {
  border-color: var(--border-strong);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}

.home-ops__icon {
  font-size: 1.15rem;
  line-height: 1;
  opacity: 0.9;
}

.home-ops__item strong {
  font-size: 0.95rem;
  color: var(--text);
}

.home-ops__item span {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.home-ops__foot {
  margin: 2rem 0 0;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.home-ops__foot a {
  font-weight: 600;
}

.pricing-faq {
  padding-top: 2rem;
}

/* ——— Fiyat sayfası güven şeridi ——— */
.pricing-trust {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.pricing-trust__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .pricing-trust__inner {
    grid-template-columns: 1fr;
  }
}

.pricing-trust__item {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
}

.pricing-trust__item strong {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--allow-bright);
  margin-bottom: 0.4rem;
}

.pricing-trust__item span {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ——— Scroll reveal (ana sayfa) ——— */
@media (prefers-reduced-motion: no-preference) {
  .page-home.js-reveal .home-reveal {
    opacity: 0;
    transform: translateY(16px);
    transition:
      opacity 0.55s ease,
      transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .page-home.js-reveal .home-reveal.is-inview {
    opacity: 1;
    transform: none;
  }
}

/* ——— Yukarı çık ——— */
.back-to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 150;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong);
  background: var(--bg-card);
  color: var(--allow-bright);
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.25s ease,
    border-color 0.15s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  border-color: var(--allow-bright);
  background: var(--allow-dim);
}

.back-to-top:focus-visible {
  outline: 2px solid var(--allow-bright);
  outline-offset: 3px;
}

html[data-theme="light"] .back-to-top {
  background: #fff;
}

/* Breadcrumb — iç bağlantı + yapılandırılmış veri ile uyum */
.breadcrumb {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.25rem 1.5rem 0.75rem;
}

.legal-page > .breadcrumb {
  max-width: 720px;
}

.breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.breadcrumb li + li::before {
  content: "›";
  font-weight: 600;
  opacity: 0.45;
  margin-right: 0.2rem;
}

.breadcrumb a {
  color: var(--text-muted);
  font-weight: 600;
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--allow-bright);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.breadcrumb [aria-current="page"] {
  color: var(--text);
  font-weight: 600;
}
