/* ============================================================
   KALİBRE ATÖLYE — mekanizma servisi / koyu lab
   ============================================================ */
:root {
  --bg: #0B0C0E;
  --surface: #15181C;
  --surface-2: #1C2025;
  --surface-3: #23282E;
  --ink: #E6E8EA;
  --ink-soft: #AEB4BB;
  --accent: #CDFF3A;
  --accent-dim: #9FC72C;
  --accent-2: #7A8694;
  --line: rgba(230, 232, 234, 0.10);
  --line-strong: rgba(230, 232, 234, 0.20);
  --danger: #ff6b5e;
  --header-h: 72px;
  --maxw: 1400px;
  --pad: clamp(16px, 4vw, 64px);
  --mono: 'JetBrains Mono', ui-monospace, 'Cascadia Code', Consolas, monospace;
  --head: 'Space Grotesk', system-ui, sans-serif;
  --body: 'IBM Plex Sans', system-ui, sans-serif;
  interpolate-size: allow-keywords;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

html, body {
  overflow-x: hidden;
  max-width: 100vw;
  margin: 0;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-weight: 400;
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* subtle lab grid backdrop */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(230,232,234,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(230,232,234,0.018) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}

h1, h2, h3, h4 {
  font-family: var(--head);
  font-weight: 600;
  line-height: 1.08;
  margin: 0 0 .5em;
  letter-spacing: -0.012em;
}
p { margin: 0 0 1em; }
a { color: var(--accent); text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
  position: relative;
  z-index: 1;
}

.eyebrow {
  font-family: var(--mono);
  font-size: .74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-block;
  margin-bottom: 1rem;
}
.mono { font-family: var(--mono); }
.muted { color: var(--ink-soft); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: #0B0C0E;
  padding: 10px 16px;
  z-index: 2000;
  font-family: var(--mono);
  font-size: .85rem;
}
.skip-link:focus { left: 8px; top: 8px; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1080;
  height: var(--header-h);
  background: rgba(11, 12, 14, 0.92);
  border-bottom: 1px solid var(--line);
  transition: background 240ms ease, box-shadow 240ms ease, height 240ms ease;
}
.site-header.is-scrolled {
  background: rgba(11, 12, 14, 0.98);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,0.6);
  height: 62px;
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--head);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.brand:hover { color: var(--ink); }
.brand .brand-mark {
  width: 30px; height: 30px;
  flex: none;
  color: var(--accent);
}
.brand small {
  display: block;
  font-family: var(--mono);
  font-size: .58rem;
  letter-spacing: .18em;
  color: var(--accent-2);
  font-weight: 400;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 28px;
}
.nav-desktop a {
  position: relative;
  font-size: .92rem;
  color: var(--ink-soft);
  font-family: var(--body);
  transition: color 200ms ease;
}
.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 220ms cubic-bezier(.2,.7,.2,1);
}
.nav-desktop a:hover { color: var(--ink); }
.nav-desktop a:hover::after,
.nav-desktop a.is-active::after { width: 100%; }
.nav-desktop a.is-active { color: var(--ink); }

.nav-cta {
  font-family: var(--mono) !important;
  font-size: .82rem !important;
  letter-spacing: .03em;
  padding: 9px 18px;
  border: 1px solid var(--accent);
  border-radius: 2px;
  background: var(--accent);
  color: #0B0C0E !important;
  transition: background 200ms ease, color 200ms ease, transform 200ms ease;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover {
  background: transparent;
  color: var(--accent) !important;
  transform: translateY(-2px);
}

.nav-toggle {
  position: relative;
  z-index: 1100;
  width: 44px; height: 44px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 3px;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 2px;
  background: var(--ink);
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 200ms ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  .nav-toggle { display: none; }
}

/* ============================================================
   DRAWER
   ============================================================ */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 240ms ease, visibility 240ms ease;
  z-index: 1040;
}
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }

.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  background: var(--surface);
  border-left: 1px solid var(--line-strong);
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  z-index: 1050;
  padding: calc(var(--header-h) + 16px) 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer a {
  display: block;
  padding: 14px 0;
  color: var(--ink);
  font-family: var(--head);
  font-size: 1.15rem;
  border-bottom: 1px solid var(--line);
  transition: color 200ms ease, padding-left 200ms ease;
}
.drawer a:hover, .drawer a.is-active { color: var(--accent); padding-left: 8px; }
.drawer .drawer-meta {
  margin-top: auto;
  font-family: var(--mono);
  font-size: .76rem;
  color: var(--accent-2);
  line-height: 1.9;
}
.drawer .drawer-meta a { font-size: .76rem; padding: 2px 0; border: 0; }
@media (min-width: 1024px) {
  .drawer, .drawer-backdrop { display: none; }
}

/* ============================================================
   MAIN / SECTIONS
   ============================================================ */
main { padding-top: var(--header-h); }

.section {
  padding-block: clamp(56px, 9vw, 120px);
  position: relative;
}
.section-head { max-width: 720px; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head h2 {
  font-size: clamp(1.8rem, 4vw, 2.9rem);
}
.section-head p { color: var(--ink-soft); font-size: 1.04rem; }

.divider-rule {
  height: 1px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--line) 18%, var(--line) 100%);
  border: 0;
  margin: 0;
}

/* ============================================================
   HERO (spec-hero)
   ============================================================ */
.hero {
  padding-top: clamp(48px, 7vw, 80px);
  padding-bottom: clamp(48px, 7vw, 90px);
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  top: -20%; right: -10%;
  width: 60vw; height: 60vw;
  max-width: 720px; max-height: 720px;
  background: radial-gradient(circle, rgba(205,255,58,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(36px, 5vw, 56px);
}
.hero h1 {
  font-size: clamp(2.6rem, 8vw, 4.5rem);
  font-weight: 600;
  line-height: 0.98;
  margin-bottom: .35em;
}
.hero h1 .accent-glyph { color: var(--accent); }
.hero-sub {
  font-size: clamp(1.02rem, 2vw, 1.28rem);
  color: var(--ink-soft);
  max-width: 56ch;
  margin-bottom: 1.6em;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 2rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}
.trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--mono);
  font-size: .78rem;
  color: var(--accent-2);
}
.trust-strip span svg { width: 15px; height: 15px; color: var(--accent); flex: none; }

/* live spec table */
.spec-panel {
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  overflow: hidden;
}
.spec-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: .74rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-2);
}
.spec-panel-head .led {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--accent);
}
.spec-panel-head .led::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse-led 2.4s ease-in-out infinite;
}
@keyframes pulse-led { 0%,100%{opacity:1} 50%{opacity:.35} }

.spec-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}
.spec-row:last-child { border-bottom: 0; }
.spec-row .spec-label {
  font-family: var(--mono);
  font-size: .82rem;
  color: var(--ink-soft);
  letter-spacing: .02em;
}
.spec-row .spec-val {
  font-family: var(--mono);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  text-align: right;
}
.spec-row .spec-val .unit { color: var(--accent); font-size: .9rem; margin-left: 2px; }
.spec-bar {
  grid-column: 1 / -1;
  height: 4px;
  background: var(--surface-3);
  border-radius: 2px;
  overflow: hidden;
}
.spec-bar i {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent-dim), var(--accent));
  border-radius: 2px;
  transition: width 1.1s cubic-bezier(.2,.7,.2,1);
}
.spec-bar.is-in i { width: var(--fill, 80%); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--mono);
  font-size: .9rem;
  letter-spacing: .02em;
  padding: 14px 26px;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease, border-color 220ms ease;
  text-align: center;
}
.btn svg { width: 16px; height: 16px; }
.btn-primary {
  background: var(--accent);
  color: #0B0C0E;
  border-color: var(--accent);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: transparent;
  color: var(--accent);
  transform: translateY(-2px);
}
.btn-primary .arrow { transition: transform 220ms ease; }
.btn-primary:hover .arrow { transform: translateX(4px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface-2);
  color: var(--ink);
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* ============================================================
   ŞEMA (exploded mechanism)
   ============================================================ */
.sema-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
}
.mech-stage {
  position: relative;
  background:
    radial-gradient(circle at 50% 45%, rgba(205,255,58,0.05), transparent 60%),
    var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: clamp(16px, 3vw, 32px);
  aspect-ratio: 1 / 1;
  max-width: 560px;
  width: 100%;
  margin-inline: auto;
}
.mech-stage svg { width: 100%; height: 100%; display: block; }
.mech-part { transition: transform 520ms cubic-bezier(.2,.7,.2,1); transform-box: fill-box; transform-origin: center; }
.mech-stage.is-exploded .mech-part[data-shift="up"]    { transform: translate(0, -16px); }
.mech-stage.is-exploded .mech-part[data-shift="down"]  { transform: translate(0, 16px); }
.mech-stage.is-exploded .mech-part[data-shift="left"]  { transform: translate(-18px, 0); }
.mech-stage.is-exploded .mech-part[data-shift="right"] { transform: translate(18px, 0); }

.hotspot {
  cursor: pointer;
}
.hotspot circle.hit {
  fill: var(--accent);
  stroke: #0B0C0E;
  stroke-width: 1.5;
  opacity: .85;
  transition: r 200ms ease, opacity 200ms ease;
}
.hotspot:hover circle.hit, .hotspot.is-active circle.hit { opacity: 1; }
.hotspot circle.ring {
  fill: none;
  stroke: var(--accent);
  stroke-width: 1;
  opacity: .55;
  animation: hot-pulse 2.6s ease-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}
@keyframes hot-pulse {
  0% { transform: scale(.6); opacity: .7; }
  70%,100% { transform: scale(1.8); opacity: 0; }
}
.hotspot.is-active circle.ring { animation-play-state: paused; opacity: 0; }

.mech-readout {
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  padding: clamp(20px, 3vw, 30px);
}
.mech-readout .ro-index {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .18em;
  color: var(--accent);
  text-transform: uppercase;
}
.mech-readout h3 { font-size: 1.5rem; margin: .4em 0 .3em; }
.mech-readout .ro-spec {
  font-family: var(--mono);
  font-size: .8rem;
  color: var(--accent-2);
  display: block;
  margin-bottom: 1em;
}
.mech-readout p { color: var(--ink-soft); margin-bottom: 0; }
.part-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}
.part-chips button {
  font-family: var(--mono);
  font-size: .76rem;
  color: var(--ink-soft);
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 7px 12px;
  cursor: pointer;
  transition: all 200ms ease;
}
.part-chips button:hover { border-color: var(--line-strong); color: var(--ink); }
.part-chips button.is-active {
  background: var(--accent);
  color: #0B0C0E;
  border-color: var(--accent);
}

/* ============================================================
   TABLES
   ============================================================ */
.table-scroll {
  --table-bg: var(--bg);
  display: block; width: 100%; max-width: 100%; min-width: 0;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  margin: 18px 0;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  /* horizontal scroll affordance — edge shadows that auto-hide at scroll ends */
  background:
    linear-gradient(to right, var(--table-bg), rgba(0,0,0,0)) 0 0 / 32px 100% no-repeat local,
    linear-gradient(to left, var(--table-bg), rgba(0,0,0,0)) 100% 0 / 32px 100% no-repeat local,
    radial-gradient(farthest-side at 0 50%, rgba(0,0,0,.5), rgba(0,0,0,0)) 0 0 / 16px 100% no-repeat scroll,
    radial-gradient(farthest-side at 100% 50%, rgba(0,0,0,.5), rgba(0,0,0,0)) 100% 0 / 16px 100% no-repeat scroll;
  background-clip: padding-box;
}
.band .table-scroll { --table-bg: var(--surface-2); }
.table-scroll > table { margin: 0 !important; min-width: 540px; width: 100%; position: relative; }
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }

table {
  border-collapse: collapse;
  width: 100%;
  font-size: .92rem;
}
thead th {
  background: var(--surface-2);
  text-align: left;
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent-2);
  padding: 13px 16px;
  border-bottom: 1px solid var(--line-strong);
  white-space: nowrap;
}
tbody td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  vertical-align: top;
}
tbody tr:last-child td { border-bottom: 0; }
tbody tr:hover td { background: rgba(205,255,58,0.03); }
td.num, th.num { font-family: var(--mono); font-variant-numeric: tabular-nums; text-align: right; white-space: nowrap; }
td .yes { color: var(--accent); font-family: var(--mono); }
td .no  { color: var(--accent-2); font-family: var(--mono); }
caption { caption-side: bottom; text-align: left; font-size: .78rem; color: var(--accent-2); padding: 10px 4px; font-family: var(--mono); }

/* ============================================================
   ÖLÇÜM bars
   ============================================================ */
.metric-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-bottom: 36px;
}
.metric-card {
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  padding: 22px;
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), border-color 240ms ease, box-shadow 240ms ease;
}
.metric-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 18px 40px -28px rgba(205,255,58,0.4);
}
.metric-card .m-label {
  font-family: var(--mono);
  font-size: .74rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent-2);
}
.metric-card .m-val {
  font-family: var(--mono);
  font-weight: 600;
  font-size: 2.2rem;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  margin: 6px 0 4px;
}
.metric-card .m-val .unit { color: var(--accent); font-size: 1rem; }
.metric-card .m-foot { font-size: .82rem; color: var(--ink-soft); }
.metric-card .gauge {
  height: 6px; margin-top: 14px;
  background: var(--surface-3); border-radius: 3px; overflow: hidden;
  position: relative;
}
.metric-card .gauge i {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 0;
  background: linear-gradient(90deg, var(--accent-dim), var(--accent));
  border-radius: 3px;
  transition: width 1.2s cubic-bezier(.2,.7,.2,1);
}
.metric-card.is-in .gauge i { width: var(--fill, 70%); }
.metric-card .gauge .target {
  position: absolute; top: -3px; bottom: -3px;
  width: 2px; background: var(--ink);
  left: var(--target, 80%);
}

/* ============================================================
   SERVİS MATRİSİ / cards
   ============================================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 26px 24px;
  transition: transform 260ms cubic-bezier(.2,.7,.2,1), border-color 260ms ease, box-shadow 260ms ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: 0 18px 40px -28px rgba(205,255,58,0.4);
}
.feature-card .ic {
  width: 46px; height: 46px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  color: var(--accent);
  margin-bottom: 16px;
  background: var(--surface-2);
}
.feature-card .ic svg { width: 24px; height: 24px; }
.feature-card h3 { font-size: 1.18rem; }
.feature-card p { color: var(--ink-soft); font-size: .94rem; margin-bottom: 0; }
.feature-card .tag {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--mono);
  font-size: .72rem;
  color: var(--accent);
  letter-spacing: .04em;
}

/* ============================================================
   FİYAT (pricing tiers)
   ============================================================ */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  align-items: stretch;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  transition: transform 260ms cubic-bezier(.2,.7,.2,1), box-shadow 260ms ease;
}
.price-card:hover { transform: translateY(-6px); box-shadow: 0 22px 48px -30px rgba(0,0,0,0.8); }
.price-card.featured { border-color: var(--accent); }
.price-card .pc-flag {
  font-family: var(--mono); font-size: .68rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 10px; display:block;
}
.price-card h3 { font-size: 1.4rem; margin-bottom: 6px; }
.price-card .pc-desc { font-size: .9rem; color: var(--ink-soft); min-height: 42px; }
.price-card .pc-price {
  font-family: var(--mono); font-weight: 600;
  font-size: 2rem; color: var(--ink); margin: 14px 0 2px;
  font-variant-numeric: tabular-nums;
}
.price-card .pc-price small { font-size: .9rem; color: var(--accent-2); font-weight: 400; }
.price-card .pc-note { font-family: var(--mono); font-size: .72rem; color: var(--accent-2); margin-bottom: 18px; }
.price-card ul { list-style: none; padding: 0; margin: 0 0 20px; }
.price-card ul li {
  display: grid; grid-template-columns: 18px 1fr; gap: 10px;
  font-size: .9rem; padding: 7px 0; border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}
.price-card ul li:last-child { border-bottom: 0; }
.price-card ul li svg { width: 16px; height: 16px; margin-top: 3px; }
.price-card ul li.inc svg { color: var(--accent); }
.price-card ul li.exc svg { color: var(--accent-2); }
.price-card ul li.exc { opacity: .75; }
.price-card .pc-cta { margin-top: auto; }
.price-card .pc-cta .btn { width: 100%; justify-content: center; }

.price-disclaimer {
  font-family: var(--mono); font-size: .78rem; color: var(--accent-2);
  margin-top: 22px; display: flex; align-items: center; gap: 8px;
}
.price-disclaimer svg { width: 16px; height: 16px; color: var(--accent); flex:none; }

/* ============================================================
   TIMELINE (process)
   ============================================================ */
.timeline { position: relative; margin-top: 12px; }
.timeline::before {
  content: ""; position: absolute; left: 19px; top: 8px; bottom: 8px;
  width: 1px; background: linear-gradient(var(--accent), var(--line));
}
.tl-step {
  position: relative;
  padding: 0 0 32px 64px;
}
.tl-step:last-child { padding-bottom: 0; }
.tl-step .tl-dot {
  position: absolute; left: 8px; top: 0;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: .72rem; color: var(--accent); font-weight: 600;
}
.tl-step h3 { font-size: 1.15rem; margin-bottom: 4px; }
.tl-step .tl-time {
  font-family: var(--mono); font-size: .72rem; color: var(--accent); letter-spacing: .06em;
  display: block; margin-bottom: 6px;
}
.tl-step p { color: var(--ink-soft); font-size: .94rem; margin-bottom: 0; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.quote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
}
.quote-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 26px;
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), border-color 240ms ease, box-shadow 240ms ease;
}
.quote-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: 0 18px 40px -28px rgba(205,255,58,0.4);
}
.quote-card .stars { color: var(--accent); font-family: var(--mono); font-size: .8rem; letter-spacing: .12em; margin-bottom: 12px; }
.quote-card blockquote { margin: 0 0 16px; font-size: .98rem; line-height: 1.65; color: var(--ink); }
.quote-card .q-author { font-family: var(--head); font-weight: 600; font-size: .96rem; }
.quote-card .q-meta { font-family: var(--mono); font-size: .74rem; color: var(--accent-2); }

/* feature: manifesto block */
.manifesto {
  background: var(--surface);
  border-top: 1px solid var(--accent);
  border-bottom: 1px solid var(--line);
}
.manifesto blockquote {
  margin: 0; max-width: 22ch;
  font-family: var(--head); font-weight: 500;
  font-size: clamp(1.8rem, 5vw, 3.4rem);
  line-height: 1.1; letter-spacing: -0.02em;
}
.manifesto blockquote .accent-glyph { color: var(--accent); }
.manifesto .m-source { font-family: var(--mono); font-size: .8rem; color: var(--accent-2); margin-top: 24px; }

/* hero-band */
.band {
  background:
    radial-gradient(circle at 80% 20%, rgba(205,255,58,0.08), transparent 50%),
    var(--surface-2);
  border-block: 1px solid var(--line-strong);
}

/* stats row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 18px;
}
.stat {
  text-align: left;
  border-left: 2px solid var(--accent);
  padding-left: 16px;
}
.stat .s-num {
  font-family: var(--mono); font-weight: 600;
  font-size: clamp(2rem, 5vw, 3rem); color: var(--ink);
  font-variant-numeric: tabular-nums; line-height: 1;
}
.stat .s-num .unit { color: var(--accent); font-size: .5em; }
.stat .s-label { font-size: .86rem; color: var(--ink-soft); margin-top: 6px; }

/* notes / news block */
.notes-list { display: grid; gap: 0; }
.note-item {
  display: grid; grid-template-columns: auto 1fr; gap: 18px;
  padding: 18px 0; border-bottom: 1px solid var(--line);
}
.note-item:last-child { border-bottom: 0; }
.note-item time { font-family: var(--mono); font-size: .78rem; color: var(--accent); white-space: nowrap; }
.note-item p { margin: 0; color: var(--ink-soft); font-size: .94rem; }
.note-item strong { color: var(--ink); font-family: var(--head); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 860px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: 6px;
  margin-bottom: 12px;
  background: var(--surface);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px clamp(18px, 3vw, 24px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--head);
  font-weight: 500;
  font-size: 1.04rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .q-ico {
  flex: none;
  width: 22px; height: 22px;
  position: relative;
  transition: transform 360ms cubic-bezier(.4,0,.2,1);
}
.faq-item summary .q-ico::before,
.faq-item summary .q-ico::after {
  content: ""; position: absolute; background: var(--accent);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.faq-item summary .q-ico::before { width: 14px; height: 2px; }
.faq-item summary .q-ico::after { width: 2px; height: 14px; transition: transform 360ms cubic-bezier(.4,0,.2,1); }
.faq-item[open] summary .q-ico::after { transform: translate(-50%,-50%) scaleY(0); }
.faq-item > .answer {
  height: 0;
  padding: 0 clamp(18px, 3vw, 24px);
  overflow: hidden;
  transition: height 360ms cubic-bezier(.4,0,.2,1),
              padding-block-end 360ms cubic-bezier(.4,0,.2,1);
}
.faq-item[open] > .answer {
  height: auto;
  padding-block-end: 22px;
}
.faq-item > .answer p { margin: 0; color: var(--ink-soft); font-size: .96rem; }
@media (prefers-reduced-motion: reduce) {
  .faq-item > .answer { transition: none; }
}

/* ============================================================
   FORM
   ============================================================ */
.form-wrap {
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 40px);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 7px; }
.field.col-2 { grid-column: 1 / -1; }
.field label, .field > span {
  font-family: var(--mono);
  font-size: .78rem;
  letter-spacing: .06em;
  color: var(--ink-soft);
  text-transform: uppercase;
}
.field input,
.field select,
.field textarea {
  font-family: var(--body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-bottom: 2px solid var(--line-strong);
  border-radius: 3px;
  padding: 13px 14px;
  width: 100%;
  transition: border-color 200ms ease, background 200ms ease;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--surface-2);
}
.field select { appearance: none; -webkit-appearance: none; 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='%237A8694' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }

.field.kvkk, label.kvkk {
  flex-direction: row;
  align-items: flex-start;
  gap: 11px;
  grid-column: 1 / -1;
  text-transform: none;
  font-family: var(--body);
  font-size: .9rem;
  color: var(--ink-soft);
  letter-spacing: 0;
}
.field input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: auto;
  width: 18px; height: 18px;
  min-width: 18px; min-height: 18px;
  padding: 0; border: 0; margin: 3px 0 0;
  accent-color: var(--accent);
}
.field.kvkk a { text-decoration: underline; }
.form-submit { grid-column: 1 / -1; }
.form-submit .btn { width: 100%; justify-content: center; }
@media (min-width: 560px) {
  .form-submit .btn { width: auto; }
}

/* ============================================================
   CONTACT cards
   ============================================================ */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), border-color 240ms ease, box-shadow 240ms ease;
}
.contact-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: 0 18px 40px -28px rgba(205,255,58,0.4);
}
.contact-card .cc-ic {
  width: 48px; height: 48px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(205,255,58,0.1);
  color: var(--accent);
  margin-bottom: 16px;
}
.contact-card .cc-ic svg { width: 22px; height: 22px; }
.contact-card h3 { font-size: 1.05rem; margin-bottom: 4px; }
.contact-card a, .contact-card .cc-val {
  display: block;
  font-family: var(--mono);
  font-size: .92rem;
  color: var(--ink);
  word-break: break-word;
  overflow-wrap: anywhere;
}
.contact-card a:hover { color: var(--accent); }
.contact-card .cc-sub { font-size: .82rem; color: var(--ink-soft); margin-top: 6px; }

/* hours table */
.hours-grid { display: grid; gap: 8px; max-width: 460px; }
.hours-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 11px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-family: var(--mono); font-size: .88rem;
  font-variant-numeric: tabular-nums;
}
.hours-row.is-today { border-color: var(--accent); }
.hours-row.is-today .h-day { color: var(--accent); }
.hours-row .h-day { color: var(--ink-soft); }
.hours-row .h-time { color: var(--ink); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--line-strong);
  padding-block: clamp(48px, 6vw, 72px) 28px;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 36px;
}
.footer-col h4 {
  font-family: var(--mono); font-size: .74rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--accent-2); margin-bottom: 16px;
}
.footer-col p, .footer-col a, .footer-col li {
  font-size: .9rem; color: var(--ink-soft); line-height: 1.9;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col a:hover { color: var(--accent); }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand .brand-mark { width: 32px; height: 32px; color: var(--accent); }
.footer-brand span { font-family: var(--head); font-weight: 700; font-size: 1.1rem; color: var(--ink); }
.footer-bottom {
  margin-top: 40px; padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 12px 24px;
  justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: .76rem; color: var(--accent-2);
}
.footer-bottom .reg { display: flex; flex-wrap: wrap; gap: 4px 18px; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding-block: clamp(40px, 7vw, 80px) clamp(28px, 4vw, 44px);
  border-bottom: 1px solid var(--line);
  min-height: 240px;
  display: flex;
  align-items: center;
}
.page-hero h1 { font-size: clamp(2.1rem, 6vw, 4rem); }
.page-hero p { color: var(--ink-soft); max-width: 60ch; font-size: 1.05rem; }

/* prose for legal pages */
.prose { max-width: 800px; }
.prose h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); margin-top: 2em; }
.prose h3 { font-size: 1.2rem; margin-top: 1.6em; }
.prose p, .prose li { color: var(--ink-soft); }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li { margin-bottom: .5em; }
.prose a { text-decoration: underline; }

/* sitemap */
.sitemap-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 28px; }
.sitemap-grid h2 { font-size: 1.1rem; }
.sitemap-grid ul { list-style: none; padding: 0; }
.sitemap-grid li { margin-bottom: 10px; }
.sitemap-grid a { color: var(--ink-soft); }
.sitemap-grid a:hover { color: var(--accent); }

/* 404 */
.notfound { min-height: 62vh; display: flex; align-items: center; }
.notfound .big {
  font-family: var(--mono); font-weight: 600;
  font-size: clamp(4rem, 18vw, 11rem); color: var(--accent); line-height: 1;
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  max-width: 520px; margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--accent);
  border-radius: 8px;
  padding: 20px 22px;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
  z-index: 9999;
  box-shadow: 0 24px 60px -30px rgba(0,0,0,0.9);
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
.cookie-banner h4 { font-size: 1rem; margin-bottom: 6px; display:flex; align-items:center; gap:8px; }
.cookie-banner h4 svg { width: 18px; height: 18px; color: var(--accent); }
.cookie-banner p { font-size: .86rem; color: var(--ink-soft); margin-bottom: 14px; }
.cookie-banner p a { text-decoration: underline; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie-actions button {
  flex: 1 1 auto;
  min-height: 44px;
  font-family: var(--mono); font-size: .82rem;
  border-radius: 3px; cursor: pointer;
  padding: 10px 16px;
  transition: all 200ms ease;
}
/* Accept ve Reddet eşit görsel ağırlıkta (KVKK — eşit tercih) */
.cookie-actions [data-consent="accept"] { background: var(--accent); color: #0B0C0E; border: 1px solid var(--accent); font-weight: 600; }
.cookie-actions [data-consent="accept"]:hover { background: var(--accent-dim); border-color: var(--accent-dim); color: #0B0C0E; }
.cookie-actions [data-consent="reject"] { background: var(--surface-3); color: var(--ink); border: 1px solid var(--line-strong); font-weight: 600; }
.cookie-actions [data-consent="reject"]:hover { background: var(--surface-2); border-color: var(--ink); color: var(--ink); }
.cookie-actions [data-consent="settings"] { flex: 1 1 100%; background: transparent; color: var(--ink-soft); border: 1px solid var(--line); }
.cookie-actions [data-consent="settings"]:hover { color: var(--ink); border-color: var(--line-strong); }
@media (min-width: 768px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}

/* ============================================================
   REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms cubic-bezier(.2,.7,.2,1), transform 600ms cubic-bezier(.2,.7,.2,1);
  transition-delay: calc(var(--i, 0) * 80ms);
}
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}
html.no-js .reveal { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 920px) {
  .hero-grid { grid-template-columns: 1.15fr .85fr; align-items: start; }
  .sema-layout { grid-template-columns: 1fr .85fr; }
  .split-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,4vw,56px); align-items: center; }
}

@media (max-width: 640px) {
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .feature-card { padding: 22px 20px; }
  .feature-card .ic { width: 40px; height: 40px; }
  .stat .s-num { font-size: 2.2rem; }
  .note-item { grid-template-columns: 1fr; gap: 4px; }
}
@media (max-width: 430px) {
  .footer-grid { grid-template-columns: 1fr; }
  .cookie-actions button { flex: 1 1 100%; }
}

[class*="break"], .break-word { word-break: break-word; overflow-wrap: anywhere; }

.scroll-progress{position:fixed;top:0;left:0;height:3px;width:0;background:var(--accent);z-index:9998;transition:width 80ms linear;pointer-events:none}
