/* --- Self-hosted fontlar (latin + latin-ext, Türkçe karakter desteği) --- */
@font-face { font-family: "Outfit"; font-style: normal; font-weight: 300; font-display: swap; src: url("../fonts/outfit-v15-latin_latin-ext-300.woff2") format("woff2"); }
@font-face { font-family: "Outfit"; font-style: normal; font-weight: 400; font-display: swap; src: url("../fonts/outfit-v15-latin_latin-ext-regular.woff2") format("woff2"); }
@font-face { font-family: "Outfit"; font-style: normal; font-weight: 500; font-display: swap; src: url("../fonts/outfit-v15-latin_latin-ext-500.woff2") format("woff2"); }
@font-face { font-family: "Outfit"; font-style: normal; font-weight: 600; font-display: swap; src: url("../fonts/outfit-v15-latin_latin-ext-600.woff2") format("woff2"); }
@font-face { font-family: "DM Sans"; font-style: normal; font-weight: 300; font-display: swap; src: url("../fonts/dm-sans-v17-latin_latin-ext-300.woff2") format("woff2"); }
@font-face { font-family: "DM Sans"; font-style: italic; font-weight: 300; font-display: swap; src: url("../fonts/dm-sans-v17-latin_latin-ext-300italic.woff2") format("woff2"); }
@font-face { font-family: "DM Sans"; font-style: normal; font-weight: 400; font-display: swap; src: url("../fonts/dm-sans-v17-latin_latin-ext-regular.woff2") format("woff2"); }
@font-face { font-family: "DM Sans"; font-style: italic; font-weight: 400; font-display: swap; src: url("../fonts/dm-sans-v17-latin_latin-ext-italic.woff2") format("woff2"); }
@font-face { font-family: "DM Sans"; font-style: normal; font-weight: 500; font-display: swap; src: url("../fonts/dm-sans-v17-latin_latin-ext-500.woff2") format("woff2"); }
@font-face { font-family: "DM Sans"; font-style: italic; font-weight: 500; font-display: swap; src: url("../fonts/dm-sans-v17-latin_latin-ext-500italic.woff2") format("woff2"); }
@font-face { font-family: "JetBrains Mono"; font-style: normal; font-weight: 300; font-display: swap; src: url("../fonts/jetbrains-mono-v24-latin_latin-ext-300.woff2") format("woff2"); }
@font-face { font-family: "JetBrains Mono"; font-style: italic; font-weight: 300; font-display: swap; src: url("../fonts/jetbrains-mono-v24-latin_latin-ext-300italic.woff2") format("woff2"); }
@font-face { font-family: "JetBrains Mono"; font-style: normal; font-weight: 400; font-display: swap; src: url("../fonts/jetbrains-mono-v24-latin_latin-ext-regular.woff2") format("woff2"); }
@font-face { font-family: "JetBrains Mono"; font-style: italic; font-weight: 400; font-display: swap; src: url("../fonts/jetbrains-mono-v24-latin_latin-ext-italic.woff2") format("woff2"); }
@font-face { font-family: "JetBrains Mono"; font-style: normal; font-weight: 500; font-display: swap; src: url("../fonts/jetbrains-mono-v24-latin_latin-ext-500.woff2") format("woff2"); }
@font-face { font-family: "JetBrains Mono"; font-style: italic; font-weight: 500; font-display: swap; src: url("../fonts/jetbrains-mono-v24-latin_latin-ext-500italic.woff2") format("woff2"); }

:root {
  --bg: #fafaf7;
  --bg-2: #f3f3ee;
  --bg-3: #ebebe4;
  --fg: #14161a;
  --fg-2: #3a3d44;
  --fg-3: #6e7178;
  --fg-4: #6e7178;
  --line: #d8d8d0;
  --line-2: #e5e5dd;
  --brand-navy: #0a2540;
  --accent: #25c08c;
  --accent-2: #1ba978;
  --accent-text: #0a7f5c;
  --soft-accent: #dff5ec;
  --sans: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --serif: "Outfit", Georgia, "Times New Roman", serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  --max: 1240px;
  --pad: clamp(20px, 4vw, 56px);
}

:root[data-theme="dark"] {
  --bg: #0a2540;
  --bg-2: #0e2d4d;
  --bg-3: #133759;
  --fg: #f3f6f9;
  --fg-2: #c1ccd6;
  --fg-3: #8fa0af;
  --fg-4: #7f91a1;
  --line: rgba(243, 246, 249, 0.16);
  --line-2: rgba(243, 246, 249, 0.1);
  --brand-navy: #061a2d;
  --accent-text: #25c08c;
  --soft-accent: rgba(37, 192, 140, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  background: var(--bg);
  color: var(--fg);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
}

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
::selection { background: var(--accent); color: #fff; }

.container {
  width: min(100% - 2 * var(--pad), var(--max));
  margin: 0 auto;
}

.mono {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section {
  padding: clamp(72px, 9vw, 124px) 0;
  border-bottom: 1px solid var(--line);
}

.section.alt { background: var(--bg-2); }
.section-head {
  display: grid;
  grid-template-columns: minmax(180px, 0.55fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: start;
  margin-bottom: 42px;
}

.eyebrow {
  color: var(--accent-text);
  margin: 0;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.6vw, 46px);
  font-weight: 400;
  line-height: 1.12;
  margin: 0;
  text-wrap: balance;
}

.section-copy {
  color: var(--fg-2);
  max-width: 72ch;
  margin: 18px 0 0;
  line-height: 1.7;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: color-mix(in oklab, var(--bg) 88%, transparent);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 650;
  min-width: max-content;
}

.brand-mark {
  width: 46px;
  height: 28px;
  object-fit: contain;
  display: block;
}
.brand-word { font-size: 18px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--fg-2);
  font-size: 14px;
}

.nav-links a:hover { color: var(--fg); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-sticky-cta {
  display: none;
}

.lang-toggle {
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--bg-2);
  color: var(--fg-2);
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0;
  cursor: pointer;
}

.lang-toggle span {
  min-width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.lang-toggle span.is-active {
  background: var(--fg);
  color: var(--bg);
}

.theme-toggle, .menu-toggle {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--bg-2);
  color: var(--fg);
  display: inline-grid;
  place-items: center;
  cursor: pointer;
}

.theme-toggle svg, .menu-toggle svg { width: 18px; height: 18px; }
.menu-toggle { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 6px;
  border: 1px solid var(--line);
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.15s, border-color 0.15s, background 0.15s;
}

.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--accent);
  color: #061a2d;
  border-color: var(--accent);
}
.btn-secondary {
  background: transparent;
  color: var(--fg);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: center;
  background: var(--bg);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--bg-2);
  opacity: 0.14;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(44px, 7vw, 104px);
  align-items: center;
  padding: clamp(56px, 7vw, 96px) 0 40px;
}

.hero-kicker {
  color: var(--accent-text);
  margin: 0 0 22px;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(38px, 4.8vw, 72px);
  line-height: 1.06;
  font-weight: 400;
  margin: 0;
  text-wrap: balance;
}

.hero-lede {
  color: var(--fg-2);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.65;
  max-width: 68ch;
  margin: 28px 0 0;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-scene {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.scene-core {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 1;
}

.ring {
  position: absolute;
  inset: var(--inset);
  border: 1px solid color-mix(in oklab, var(--fg) 38%, transparent);
  border-radius: 50%;
}

.ring:nth-child(1) { --inset: 0; opacity: 0.4; }
.ring:nth-child(2) { --inset: 15%; opacity: 0.55; }
.ring:nth-child(3) { --inset: 30%; opacity: 0.8; }

.node {
  position: absolute;
  min-width: 112px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  background: color-mix(in oklab, var(--bg-2) 86%, transparent);
  color: var(--fg-2);
  border-radius: 6px;
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  text-align: center;
}

.node.a { left: 50%; top: 2%; transform: translateX(-50%); }
.node.b { right: 0; top: 34%; }
.node.c { right: 11%; bottom: 13%; }
.node.d { left: 9%; bottom: 13%; }
.node.e { left: 0; top: 34%; }

.center-mark {
  position: absolute;
  inset: 38%;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--fg);
  padding: 18px;
}

.center-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.trust-strip {
  position: relative;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  padding: 22px 0;
}

.trust-strip span {
  color: var(--fg-3);
  padding: 4px 16px;
  border-right: 1px solid var(--line);
}
.trust-strip span:last-child { border-right: 0; }

.split-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.split-cell {
  padding: clamp(26px, 4vw, 42px);
  border-right: 1px solid var(--line);
}
.split-cell:last-child { border-right: 0; }

.num {
  color: var(--fg-4);
  margin-bottom: 24px;
}

.cell-title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.12;
  margin: 0 0 14px;
}

.cell-copy {
  color: var(--fg-2);
  line-height: 1.65;
  margin: 0;
}

.pull {
  max-width: 760px;
  margin: 46px auto 0;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--fg-2);
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.3;
  text-align: center;
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.path-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  margin: 0 0 20px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg-2);
}

.path-flow span,
.path-flow strong {
  min-height: 52px;
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px solid var(--line-2);
  border-radius: 6px;
  padding: 12px;
  color: var(--fg);
}

.path-flow strong {
  border-color: color-mix(in srgb, var(--accent) 48%, var(--line));
  background: color-mix(in srgb, var(--accent) 12%, transparent);
}

.path-flow .path-op {
  min-height: auto;
  border: 0;
  color: var(--accent-text);
  font-size: 22px;
  font-weight: 800;
  padding: 0;
}

.package-card, .feature-card, .use-card, .detail-card {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--bg);
  padding: 28px;
}

.package-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 100%;
}

.package-card.highlight {
  background: color-mix(in oklab, var(--soft-accent) 45%, var(--bg));
  border-color: color-mix(in oklab, var(--accent) 48%, var(--line));
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.card-index {
  font-family: var(--serif);
  font-size: 42px;
  color: var(--accent-text);
  line-height: 1;
}

.card-tag { color: var(--fg-4); }
.card-title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  margin: 0;
}

.card-sub {
  font-family: var(--serif);
  font-style: italic;
  color: var(--fg);
  margin: 0;
  font-size: 17px;
}

.card-copy {
  color: var(--fg-2);
  margin: 0;
  line-height: 1.65;
}

.clean-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--fg-2);
}

.clean-list li {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 10px;
}

.clean-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: 9px;
  background: var(--accent);
  border-radius: 50%;
}

.package-card .btn {
  margin-top: auto;
}

.compare {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.compare th, .compare td {
  padding: 16px 14px;
  border-bottom: 1px solid var(--line-2);
  text-align: center;
}

.compare th:first-child, .compare td:first-child {
  text-align: left;
  width: 46%;
}

.compare th {
  color: var(--fg);
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.check { color: var(--accent-text); font-weight: 800; }
.muted { color: var(--fg-4); }

.access-flow {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg);
}

.access-node {
  width: min(100%, 760px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg-2);
  color: var(--fg);
  padding: 18px 20px;
  text-align: center;
  font-weight: 650;
}

.access-node-mid {
  width: min(100%, 320px);
  color: var(--brand-navy);
  background: var(--accent);
  border-color: var(--accent);
}

.access-arrow {
  color: var(--accent-text);
  font-family: var(--mono);
  font-size: 18px;
  line-height: 1;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
}

.step {
  border-left: 1px solid var(--line);
  padding-left: 18px;
}

.step-dot {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}

.step-dot::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

.step h3, .feature-card h3, .use-card h3, .detail-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  margin: 0 0 10px;
}

.step p, .feature-card p, .use-card p, .detail-card p {
  color: var(--fg-2);
  margin: 0;
  line-height: 1.65;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.feature-card {
  border-left: 0;
  border-top: 0;
  border-radius: 0;
  background: transparent;
}

.use-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.badge-row-spaced {
  margin-top: 26px;
}

.badge {
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--fg-2);
  background: var(--bg);
  padding: 8px 12px;
  font-size: 13px;
}

.cta-band {
  background: var(--fg);
  color: var(--bg);
  padding: clamp(58px, 8vw, 96px) 0;
}

.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
}

.cta-grid.with-form {
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 0.72fr);
  align-items: start;
}

.cta-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.12;
  font-weight: 400;
  margin: 0 0 16px;
}

.cta-copy {
  color: color-mix(in oklab, var(--bg) 76%, transparent);
  max-width: 64ch;
  margin: 0;
}

.contact-form {
  background: var(--bg);
  color: var(--fg);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 28px;
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: var(--fg-3);
  font-size: 13px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--bg-2);
  color: var(--fg);
  padding: 12px 13px;
  outline: none;
  transition: border-color 0.15s, background 0.15s;
}

.field textarea {
  min-height: 106px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  background: var(--bg);
}

.form-msg {
  display: none;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 13px;
  color: var(--fg-2);
  background: var(--bg-2);
  font-size: 14px;
}

.form-msg-success {
  display: block;
  border-color: color-mix(in oklab, var(--accent) 60%, var(--line));
  background: color-mix(in oklab, var(--soft-accent) 68%, var(--bg));
}

.form-msg-error {
  display: block;
  border-color: #b15a48;
  background: color-mix(in oklab, #b15a48 18%, var(--bg));
}

.form-fineprint {
  color: var(--fg-3);
  font-size: 12px;
  line-height: 1.6;
  margin: -2px 0 0;
}

.form-fineprint a {
  color: var(--fg);
  border-bottom: 1px solid var(--line);
}

.honey-field {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.page-hero {
  padding: clamp(74px, 10vw, 140px) 0 clamp(56px, 7vw, 88px);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.65fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: end;
}

.page-title {
  font-family: var(--serif);
  font-size: clamp(34px, 4.4vw, 62px);
  line-height: 1.08;
  font-weight: 400;
  margin: 18px 0 0;
  text-wrap: balance;
}

.page-lede {
  color: var(--fg-2);
  font-size: 19px;
  line-height: 1.65;
  margin: 24px 0 0;
  max-width: 74ch;
}

.page-aside {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  display: grid;
  gap: 14px;
}

.aside-row {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 18px;
  color: var(--fg-2);
  font-size: 14px;
}

.aside-row .mono { color: var(--fg-4); }

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.quote-block {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 34px 0;
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 36px);
  line-height: 1.3;
  color: var(--fg);
  max-width: 980px;
}

.footer {
  padding: 56px 0 34px;
  background: var(--bg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 48px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line);
}

.footer-tagline {
  font-family: var(--serif);
  font-style: italic;
  color: var(--fg-2);
  max-width: 36ch;
  margin: 16px 0 0;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col h3 {
  color: var(--fg-4);
  font: inherit;
  margin: 0 0 14px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 9px;
  color: var(--fg-2);
  font-size: 14px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--fg-4);
  font-size: 12px;
  padding-top: 22px;
}

.policy-content {
  max-width: 900px;
  display: grid;
  gap: 28px;
  margin-top: 42px;
  color: var(--fg-2);
}

.policy-content article {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.policy-content h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.1;
  font-weight: 400;
  color: var(--fg);
  margin: 0 0 12px;
}

.policy-content p,
.policy-content li {
  line-height: 1.72;
}

.policy-content p {
  margin: 0;
}

.policy-content ul {
  display: grid;
  gap: 12px;
  padding-left: 20px;
  margin: 0;
}

.policy-content strong {
  color: var(--fg);
}

.policy-action {
  margin-top: 30px;
}

.cookie-banner {
  position: fixed;
  left: var(--pad);
  right: var(--pad);
  bottom: 18px;
  z-index: 80;
  color: var(--fg);
  background: color-mix(in oklab, var(--bg) 92%, transparent);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
  animation: cookieSlideUp 0.28s ease-out;
}

.cookie-banner-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
}

.cookie-copy {
  display: grid;
  gap: 6px;
}

.cookie-copy strong {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.2;
  font-weight: 400;
}

.cookie-copy p {
  color: var(--fg-2);
  line-height: 1.6;
  margin: 0;
}

.cookie-copy a {
  width: fit-content;
  color: var(--accent);
  font-size: 14px;
  font-weight: 650;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.cookie-btn {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--bg-2);
  color: var(--fg);
  padding: 0 14px;
  cursor: pointer;
  font-weight: 650;
  font-size: 14px;
}

.cookie-btn:hover {
  border-color: color-mix(in oklab, var(--accent) 50%, var(--line));
}

.cookie-btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #061a2d;
}

.cookie-btn-quiet {
  background: transparent;
}

.cookie-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: var(--pad);
  background: rgba(0, 0, 0, 0.56);
  backdrop-filter: blur(10px);
  animation: cookieFadeIn 0.2s ease-out;
}

.cookie-panel {
  width: min(100%, 620px);
  background: var(--bg);
  color: var(--fg);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  padding: 26px;
  animation: cookiePanelIn 0.2s ease-out;
}

.cookie-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
}

.cookie-panel h2 {
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1.1;
  font-weight: 400;
  margin: 0;
}

.cookie-close {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--bg-2);
  color: var(--fg);
  cursor: pointer;
}

.cookie-panel-copy {
  color: var(--fg-2);
  margin: 0 0 20px;
  line-height: 1.65;
}

.cookie-choice {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 16px;
  margin-bottom: 12px;
  background: var(--bg-2);
}

.cookie-choice h3 {
  margin: 0 0 6px;
  font-size: 17px;
}

.cookie-choice p {
  color: var(--fg-2);
  margin: 0;
  line-height: 1.55;
}

.cookie-switch {
  position: relative;
  display: inline-flex;
  width: 48px;
  height: 28px;
}

.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: var(--fg-4);
  cursor: pointer;
  transition: background 0.18s;
}

.cookie-slider::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  left: 3px;
  top: 3px;
  border-radius: 50%;
  background: var(--bg);
  transition: transform 0.18s;
}

.cookie-switch input:checked + .cookie-slider {
  background: var(--accent);
}

.cookie-switch input:checked + .cookie-slider::before {
  transform: translateX(20px);
}

.cookie-switch input:disabled + .cookie-slider {
  opacity: 0.72;
  cursor: not-allowed;
}

.cookie-panel-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}

@keyframes cookieSlideUp {
  from {
    transform: translateY(22px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes cookieFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes cookiePanelIn {
  from {
    transform: translateY(16px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 980px) {
  .nav-links {
    position: fixed;
    left: var(--pad);
    right: var(--pad);
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 16px;
  }
  .nav-links.is-open { display: flex; }
  .menu-toggle { display: inline-grid; }
  .hero-grid, .page-hero-grid, .section-head, .cta-grid, .cta-grid.with-form, .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-scene { min-height: 420px; }
  .cards-3, .feature-grid, .timeline { grid-template-columns: 1fr; }
  .feature-card { border-right: 1px solid var(--line); }
}

@media (max-width: 760px) {
  .nav-actions .btn { display: none; }
  .mobile-sticky-cta {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 70;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 48px;
    border-radius: 6px;
    background: var(--accent);
    color: #ffffff;
    font-weight: 750;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  }
  .split-grid, .use-grid, .detail-grid { grid-template-columns: 1fr; }
  .split-cell {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .split-cell:last-child { border-bottom: 0; }
  .path-flow {
    grid-template-columns: 1fr;
  }
  .path-flow .path-op {
    min-height: 24px;
  }
  .compare-wrap {
    overflow: visible;
  }
  .compare,
  .compare tbody,
  .compare tr,
  .compare td {
    display: block;
    width: 100%;
  }
  .compare {
    border: 0;
  }
  .compare thead {
    display: none;
  }
  .compare tr {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--bg);
    padding: 14px;
    margin-bottom: 12px;
  }
  .compare th,
  .compare td {
    border: 0;
    padding: 7px 0;
    text-align: left;
  }
  .compare td:first-child {
    width: 100%;
    padding-bottom: 10px;
    margin-bottom: 8px;
    border-bottom: 1px solid var(--line-2);
    font-weight: 750;
    color: var(--fg);
  }
  .compare td:not(:first-child) {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 10px;
    align-items: center;
  }
  .compare td:nth-child(2)::before,
  .compare td:nth-child(3)::before,
  .compare td:nth-child(4)::before {
    color: var(--fg-4);
    font-size: 11px;
    font-weight: 750;
  }
  .compare td:nth-child(2)::before { content: "P1"; }
  .compare td:nth-child(3)::before { content: "P2"; }
  .compare td:nth-child(4)::before { content: "P3"; }
  .footer-cols { grid-template-columns: 1fr; }
  .trust-strip span { border-right: 0; }
  .node { min-width: 88px; font-size: 9px; padding: 8px; }
  .form-row { grid-template-columns: 1fr; }
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
  .cookie-banner-inner {
    grid-template-columns: 1fr;
  }
  .cookie-actions,
  .cookie-panel-actions {
    justify-content: stretch;
  }
  .cookie-btn {
    flex: 1 1 100%;
  }
  .cookie-panel {
    padding: 20px;
  }
}

/* Alternatif karşılaştırma (Sorun bölümü) */
.alt-compare {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 42px;
}
.alt-cell {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 22px;
  background: var(--bg-2);
}
.alt-cell h3 {
  margin: 0 0 10px;
  font-weight: 500;
  color: var(--fg-4);
}
.alt-cell p {
  margin: 0;
  color: var(--fg-2);
  line-height: 1.6;
}
.alt-cell strong {
  color: var(--fg);
}
.alt-cell.highlight {
  border-color: color-mix(in srgb, var(--accent) 45%, var(--line));
}
.alt-compare-note {
  margin: 18px 0 0;
  text-align: center;
  color: var(--fg-3);
  font-size: 14px;
}

/* Örnek akış bölümü */
.flow-demo {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.flow-step {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--bg);
  padding: 24px;
  display: grid;
  gap: 14px;
  align-content: start;
}
.flow-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}
.flow-tag {
  color: var(--accent-text);
}
.flow-role,
.flow-status {
  color: var(--fg-4);
}
.flow-status.ok {
  color: var(--accent-text);
}
.flow-status.gap {
  color: #c98a3d;
}
.flow-question {
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.35;
  margin: 0;
  color: var(--fg);
}
.flow-answer {
  margin: 0;
  color: var(--fg);
  font-weight: 650;
  line-height: 1.5;
}
.flow-note {
  margin: 0;
  color: var(--fg-2);
  font-size: 14px;
  line-height: 1.6;
}
.evidence-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  font-size: 14px;
  color: var(--fg-2);
}
.evidence-list li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  align-items: baseline;
}
.evidence-list .mono {
  color: var(--fg-4);
}
.flow-fineprint {
  margin: 18px 0 0;
  color: var(--fg-4);
}
.flow-step-wide {
  grid-column: 1 / -1;
}

/* Tek kalan son detay kartı tam genişlik kaplar (ör. Karar Katmanı, 5 kart) */
.detail-grid .detail-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

/* Ekip bölümü */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.team-card {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 26px;
  background: var(--bg);
}
.team-card h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  margin: 0 0 6px;
}
.team-role {
  color: var(--accent-text);
  margin: 0 0 12px;
}
.team-card p:last-child {
  margin: 0;
  color: var(--fg-2);
  line-height: 1.65;
}

@media (max-width: 1160px) {
  .alt-compare {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Nav scroll spy ve aktif sayfa vurgusu */
.nav-links a {
  padding: 5px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.nav-links a.is-active {
  color: var(--fg);
  border-bottom-color: var(--accent);
}
@media (max-width: 980px) {
  .nav-links a {
    border-bottom: 0;
    border-left: 2px solid transparent;
    padding: 6px 0 6px 12px;
  }
  .nav-links a.is-active {
    border-left-color: var(--accent);
    color: var(--fg);
  }
}


@media (max-width: 860px) {
  .alt-compare {
    grid-template-columns: 1fr;
  }
  .flow-demo {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
}

/* KVKK aydınlatma onayı (iletişim formu) */
.field-consent { margin: 2px 0 12px; }
.consent-label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  cursor: pointer;
  font-size: 13px;
  line-height: 1.5;
  color: var(--fg-3);
}
/* .field input { width:100%; border; padding; background } checkbox'a uygulanmasın */
.consent-label input[type="checkbox"] {
  width: auto;
  min-width: 0;
  flex: 0 0 auto;
  margin: 2px 0 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  accent-color: #10b981;
}
.consent-label span { flex: 1 1 auto; min-width: 0; }
