/* ============================================================
   Apertura — Gözlem Seti Kiralama Konfigüratörü
   Palet: grafit + turuncu + yeşil
   ============================================================ */

:root {
  --bg: #101418;
  --deep: #0B0E12;
  --surface: #1A2026;
  --surface-2: #222B33;
  --surface-3: #2A343D;
  --ink: #EAF0F2;
  --ink-soft: #A3B2BB;
  --ink-faint: #6E7C85;
  --accent: #FF7A1A;
  --accent-soft: #FF9A4D;
  --accent-2: #3DDC97;
  --accent-2-soft: #6FE9B5;
  --line: rgba(234, 240, 242, 0.10);
  --line-strong: rgba(234, 240, 242, 0.20);
  --header-h: 72px;
  --maxw: 1240px;
  --mono: "Consolas", "SF Mono", ui-monospace, "Roboto Mono", monospace;
  --body: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(.2, .7, .2, 1);
  --ease2: cubic-bezier(.4, 0, .2, 1);
  interpolate-size: allow-keywords;
}

* { 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;
  font-size: 16px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, .mono {
  font-family: var(--mono);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 0.5em;
}

p { margin: 0 0 1em; }
a { color: var(--accent); text-decoration: none; transition: color 200ms var(--ease2); }
a:hover { color: var(--accent-soft); }

img { max-width: 100%; height: auto; display: block; }

.long, p, li { overflow-wrap: anywhere; word-break: break-word; }

::selection { background: var(--accent); color: #100; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
}

.eyebrow {
  font-family: var(--mono);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-block;
  margin-bottom: 0.9rem;
}
.eyebrow.alt { color: var(--accent-2); }

.skip-link {
  position: absolute;
  left: 12px; top: -48px;
  background: var(--accent);
  color: #100;
  padding: 10px 16px;
  border-radius: 8px;
  z-index: 2000;
  font-family: var(--mono);
  transition: top 180ms var(--ease2);
}
.skip-link:focus { top: 12px; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1080;
  background: rgba(16, 20, 24, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
  transition: background 240ms var(--ease2), height 240ms var(--ease2), box-shadow 240ms var(--ease2);
}
.site-header.is-scrolled {
  background: rgba(11, 14, 18, 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(--mono);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.brand:hover { color: var(--ink); }
.brand .mark { width: 30px; height: 30px; flex: none; }
.brand b { color: var(--accent); font-weight: 600; }
.brand .sub {
  font-family: var(--body);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  display: block;
  line-height: 1;
  margin-top: 2px;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
}
.nav-desktop a {
  position: relative;
  font-family: var(--mono);
  font-size: 0.86rem;
  color: var(--ink-soft);
  padding: 6px 2px;
}
.nav-desktop a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms var(--ease);
}
.nav-desktop a:not(.nav-cta):hover { color: var(--ink); }
.nav-desktop a:not(.nav-cta):hover::after,
.nav-desktop a.is-active:not(.nav-cta)::after { transform: scaleX(1); }
.nav-desktop a.is-active:not(.nav-cta) { color: var(--ink); }

.nav-cta {
  background: var(--accent);
  color: #160a02 !important;
  padding: 9px 18px !important;
  border-radius: 999px;
  font-weight: 600;
  transition: background 200ms var(--ease2), transform 200ms var(--ease2), box-shadow 200ms var(--ease2);
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover {
  background: var(--accent-soft);
  color: #160a02 !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px -10px var(--accent);
}

.nav-toggle {
  display: none;
  position: relative;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  cursor: pointer;
  z-index: 1100;
  padding: 0;
}
.nav-toggle span {
  position: absolute;
  left: 11px; right: 11px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 280ms var(--ease), opacity 200ms var(--ease2), top 280ms var(--ease);
}
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 27px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* DRAWER (outside header) */
.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  background: var(--deep);
  border-left: 1px solid var(--line-strong);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 320ms var(--ease);
  padding: calc(var(--header-h) + 16px) 26px 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer a {
  font-family: var(--mono);
  font-size: 1.02rem;
  color: var(--ink);
  padding: 14px 4px;
  border-bottom: 1px solid var(--line);
}
.drawer a:hover, .drawer a.is-active { color: var(--accent); }
.drawer .nav-cta {
  margin-top: 16px;
  text-align: center;
  border-bottom: none;
  color: #160a02;
}
.drawer .nav-cta:hover { color: #160a02; }
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  z-index: 1040;
  transition: opacity 240ms var(--ease2), visibility 240ms;
}
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }

main { padding-top: var(--header-h); }
section[id], [id].step, .summary[id] { scroll-margin-top: calc(var(--header-h) + 18px); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--mono);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 13px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 200ms var(--ease2), color 200ms var(--ease2), transform 200ms var(--ease2), box-shadow 200ms var(--ease2), border-color 200ms var(--ease2);
}
.btn-primary {
  background: var(--accent);
  color: #160a02;
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent-soft);
  color: #160a02;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -14px var(--accent);
}
.btn-primary .arr { transition: transform 220ms var(--ease); }
.btn-primary:hover .arr { 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);
}
.btn-green {
  background: var(--accent-2);
  color: #062017;
}
.btn-green:hover, .btn-green:focus-visible {
  background: var(--accent-2-soft);
  color: #062017;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -14px var(--accent-2);
}

/* ============================================================
   STARFIELD / DECOR
   ============================================================ */
.starfield {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.star-layer {
  position: absolute;
  inset: -10%;
  background-repeat: repeat;
  will-change: transform;
}
.star-layer.l1 {
  background-image: radial-gradient(1.4px 1.4px at 20px 30px, rgba(234,240,242,.7), transparent),
    radial-gradient(1.6px 1.6px at 130px 80px, rgba(234,240,242,.55), transparent),
    radial-gradient(1.2px 1.2px at 220px 140px, rgba(255,122,26,.5), transparent),
    radial-gradient(1.4px 1.4px at 300px 50px, rgba(234,240,242,.6), transparent);
  background-size: 360px 220px;
}
.star-layer.l2 {
  background-image: radial-gradient(1px 1px at 60px 60px, rgba(234,240,242,.5), transparent),
    radial-gradient(1.2px 1.2px at 180px 20px, rgba(61,220,151,.5), transparent),
    radial-gradient(1px 1px at 280px 120px, rgba(234,240,242,.4), transparent);
  background-size: 320px 180px;
}
.star-layer.l3 {
  background-image: radial-gradient(.8px .8px at 40px 90px, rgba(234,240,242,.35), transparent),
    radial-gradient(.8px .8px at 200px 70px, rgba(234,240,242,.3), transparent);
  background-size: 260px 160px;
}

.twinkle {
  position: absolute;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--ink);
  opacity: 0.8;
  animation: twinkle 5s var(--ease2) infinite;
  animation-delay: calc(var(--i, 0) * 420ms);
}
@keyframes twinkle {
  0%, 100% { opacity: .85; transform: scale(1); }
  50% { opacity: .25; transform: scale(.7); }
}

.shooting-star {
  position: absolute;
  top: 14%; left: -10%;
  width: 120px; height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--accent-2), #fff);
  border-radius: 2px;
  opacity: 0;
  filter: drop-shadow(0 0 4px var(--accent-2));
  animation: shoot 11s var(--ease) infinite;
  pointer-events: none;
}
@keyframes shoot {
  0%, 88% { opacity: 0; transform: translate(0, 0) rotate(18deg); }
  90% { opacity: 1; }
  100% { opacity: 0; transform: translate(70vw, 30vh) rotate(18deg); }
}

/* ============================================================
   HERO — split asymmetric
   ============================================================ */
.hero {
  position: relative;
  background:
    linear-gradient(180deg, rgba(16,20,24,.55), rgba(16,20,24,.9)),
    url("../images/hero-gece-gokyuzu.jpg") center/cover no-repeat;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  padding: clamp(56px, 9vw, 104px) 0 clamp(48px, 7vw, 88px);
}
.hero-copy h1 {
  font-size: clamp(2.3rem, 5.6vw, 4.1rem);
  letter-spacing: -0.018em;
  margin-bottom: 0.5em;
}
.hero-copy h1 .accent { color: var(--accent); }
.hero-copy h1 .gleam { color: var(--accent-2); }
.hero-sub {
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 52ch;
  margin-bottom: 1.8rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 2rem; }
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}
.trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--ink-soft);
  font-family: var(--mono);
}
.trust-strip svg { width: 17px; height: 17px; color: var(--accent-2); flex: none; }

/* hero stat counters */
.hero-stats {
  display: flex;
  gap: clamp(18px, 3vw, 38px);
  margin-top: 2.2rem;
  flex-wrap: wrap;
}
.hero-stats .stat .num {
  font-family: var(--mono);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.hero-stats .stat .lbl {
  font-size: 0.74rem;
  color: var(--ink-faint);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* hero config preview card */
.hero-card {
  position: relative;
  background: linear-gradient(180deg, rgba(34,43,51,.92), rgba(26,32,38,.96));
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.7);
}
.hero-card .hc-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.hero-card .hc-top b { font-family: var(--mono); font-size: 0.82rem; color: var(--ink-soft); letter-spacing: .1em; text-transform: uppercase; }
.hero-card .hc-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent-2); box-shadow: 0 0 8px var(--accent-2); }
.hero-card .tube-preview { margin: 6px 0 18px; }
.hero-card .hc-price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-top: 1px dashed var(--line-strong);
  padding-top: 16px;
}
.hero-card .hc-price .lbl { font-size: 0.8rem; color: var(--ink-faint); font-family: var(--mono); }
.hero-card .hc-price .val { font-family: var(--mono); font-weight: 700; font-size: 1.5rem; color: var(--accent); font-variant-numeric: tabular-nums; }

/* ============================================================
   SECTIONS
   ============================================================ */
section { position: relative; }
.sec {
  padding: clamp(56px, 8vw, 100px) 0;
}
.sec-head { max-width: 64ch; margin-bottom: clamp(28px, 4vw, 48px); }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head h2 {
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
}
.sec-head p { color: var(--ink-soft); font-size: 1.05rem; }
.band { background: var(--deep); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* ============================================================
   CONFIGURATOR
   ============================================================ */
.config-wrap {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap: clamp(24px, 3vw, 44px);
  align-items: start;
}

/* step bar */
.step-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.step-bar .chip {
  flex: 1 1 0;
  min-width: 90px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.step-bar .chip .ln {
  height: 4px;
  border-radius: 4px;
  background: var(--surface-2);
  overflow: hidden;
  position: relative;
}
.step-bar .chip .ln::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 500ms var(--ease);
}
.step-bar .chip.done .ln::after { transform: scaleX(1); }
.step-bar .chip.active .ln::after { transform: scaleX(0.5); background: var(--accent-2); }
.step-bar .chip span {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: .04em;
  color: var(--ink-faint);
  text-transform: uppercase;
}
.step-bar .chip.active span, .step-bar .chip.done span { color: var(--ink); }

.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(18px, 2.4vw, 28px);
  margin-bottom: 16px;
  transition: border-color 240ms var(--ease2), transform 320ms var(--ease), opacity 320ms var(--ease);
}
.step.is-current { border-color: var(--accent); }
.step-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.step-head .idx {
  width: 30px; height: 30px;
  flex: none;
  border-radius: 8px;
  background: var(--surface-2);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-weight: 600;
  font-size: 0.9rem;
}
.step-head h3 { font-size: 1.1rem; margin: 0; }
.step-head .hint { margin-left: auto; font-size: 0.74rem; color: var(--ink-faint); font-family: var(--mono); }

.opt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}
.opt {
  position: relative;
  display: block;
  cursor: pointer;
}
.opt input { position: absolute; opacity: 0; width: 0; height: 0; }
.opt .opt-body {
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  padding: 16px 16px 14px;
  background: var(--surface-2);
  transition: border-color 200ms var(--ease2), background 200ms var(--ease2), transform 200ms var(--ease2);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.opt .opt-body .ico { width: 32px; height: 32px; color: var(--accent); margin-bottom: 4px; }
.opt .opt-body b { font-family: var(--mono); font-size: 0.94rem; color: var(--ink); }
.opt .opt-body small { font-size: 0.78rem; color: var(--ink-soft); line-height: 1.4; }
.opt .opt-body .tag {
  margin-top: auto;
  font-family: var(--mono);
  font-size: 0.76rem;
  color: var(--accent-2);
  font-variant-numeric: tabular-nums;
}
.opt:hover .opt-body { transform: translateY(-2px); border-color: var(--ink-faint); }
.opt input:checked + .opt-body {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(255,122,26,.10), var(--surface-2));
  box-shadow: inset 0 0 0 1px var(--accent);
}
.opt input:checked + .opt-body .ico { color: var(--accent); }
.opt input:focus-visible + .opt-body { outline: 2px solid var(--accent); outline-offset: 2px; }

/* checkbox accessory variant */
.opt.check .opt-body { flex-direction: row; align-items: center; }
.opt.check .opt-body .ico { margin: 0; flex: none; }
.opt.check .opt-body .txt { display: flex; flex-direction: column; }
.opt.check .opt-body .tag { margin: 0 0 0 auto; }
.opt.check input:checked + .opt-body::after {
  content: "✓";
  font-family: var(--mono);
  position: absolute;
  top: 8px; right: 10px;
  color: var(--accent);
  font-weight: 700;
}

/* ============================================================
   LIVE SUMMARY (sticky)
   ============================================================ */
.summary {
  position: sticky;
  top: calc(var(--header-h) + 16px);
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 30px 60px -34px rgba(0,0,0,.8);
}
.summary h3 { font-size: 1rem; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-soft); }
.scope-stage {
  position: relative;
  background: radial-gradient(120% 120% at 70% 20%, rgba(255,122,26,.10), transparent 60%), var(--deep);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px;
  margin: 8px 0 18px;
  aspect-ratio: 16 / 11;
  overflow: hidden;
}
.scope-stage svg { width: 100%; height: 100%; }
/* telescope parts toggle */
.scope-stage [data-part] {
  opacity: 0;
  transform: translateY(8px) scale(.94);
  transform-origin: center;
  transition: opacity 520ms var(--ease), transform 520ms var(--ease);
}
.scope-stage [data-part].on {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.scope-stage .empty-hint {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 0.82rem;
  color: var(--ink-faint);
  text-align: center;
  padding: 20px;
  transition: opacity 300ms var(--ease2);
}
.scope-stage.has-parts .empty-hint { opacity: 0; }

.sum-set {
  font-family: var(--mono);
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 4px;
}
.sum-tag { font-size: 0.8rem; color: var(--accent-2); font-family: var(--mono); margin-bottom: 14px; }

.sum-lines { list-style: none; margin: 0 0 16px; padding: 0; }
.sum-lines li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.86rem;
  padding: 7px 0;
  border-bottom: 1px dashed var(--line);
  color: var(--ink-soft);
}
.sum-lines li .v { color: var(--ink); font-variant-numeric: tabular-nums; font-family: var(--mono); }
.sum-lines li.muted { color: var(--ink-faint); }

.sum-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 14px 0 6px;
  border-top: 2px solid var(--line-strong);
}
.sum-total .lbl { font-family: var(--mono); font-size: 0.86rem; color: var(--ink-soft); }
.sum-total .amount {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 2rem;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
.sum-note { font-size: 0.72rem; color: var(--ink-faint); margin: 6px 0 16px; }
.summary .btn { width: 100%; justify-content: center; }

/* ============================================================
   AMAÇ EŞLEŞTİRME
   ============================================================ */
.match-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.match-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface);
  transition: transform 280ms var(--ease), box-shadow 280ms var(--ease), border-color 280ms var(--ease);
}
.match-card:hover { transform: translateY(-6px); border-color: var(--line-strong); box-shadow: 0 24px 50px -28px rgba(0,0,0,.7); }
.match-card .ph {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
}
.match-card .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--ease); }
.match-card:hover .ph img { transform: scale(1.05); }
.match-card .ph .badge {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(11,14,18,.82);
  border: 1px solid var(--line-strong);
  color: var(--accent-2);
  font-family: var(--mono);
  font-size: 0.72rem;
  padding: 5px 11px;
  border-radius: 999px;
}
.match-card .body { padding: 20px 22px 24px; }
.match-card .body h3 { font-size: 1.2rem; }
.match-card .body p { color: var(--ink-soft); font-size: 0.92rem; }
.match-card ul { list-style: none; padding: 0; margin: 12px 0 0; }
.match-card ul li {
  display: flex; gap: 9px; align-items: flex-start;
  font-size: 0.86rem; color: var(--ink-soft); padding: 4px 0;
}
.match-card ul li svg { width: 16px; height: 16px; color: var(--accent); flex: none; margin-top: 3px; }

/* ============================================================
   FEATURE / WHY cards
   ============================================================ */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}
.feat {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
  transition: transform 260ms var(--ease), border-color 260ms var(--ease), box-shadow 260ms var(--ease);
}
.feat:hover { transform: translateY(-5px); border-color: var(--line-strong); box-shadow: 0 20px 44px -26px rgba(0,0,0,.7); }
.feat .ic {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--surface-2);
  display: grid; place-items: center;
  margin-bottom: 14px;
}
.feat .ic svg { width: 24px; height: 24px; color: var(--accent); }
.feat:nth-child(2n) .ic svg { color: var(--accent-2); }
.feat h3 { font-size: 1.02rem; }
.feat p { color: var(--ink-soft); font-size: 0.9rem; margin: 0; }

/* ============================================================
   PROCESS timeline
   ============================================================ */
.timeline { max-width: 820px; }
.t-step {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding-bottom: 30px;
}
.t-step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 27px; top: 52px; bottom: 0;
  width: 2px;
  background: linear-gradient(var(--accent), transparent);
}
.t-step .dot {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  display: grid; place-items: center;
  font-family: var(--mono);
  font-weight: 700;
  color: var(--accent);
  font-size: 1.1rem;
}
.t-step .t-body h3 { font-size: 1.1rem; margin-bottom: 4px; }
.t-step .t-body .when { font-family: var(--mono); font-size: 0.74rem; color: var(--accent-2); letter-spacing: .05em; }
.t-step .t-body p { color: var(--ink-soft); font-size: 0.92rem; margin: 6px 0 0; }

/* ============================================================
   PRICING packages
   ============================================================ */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  align-items: stretch;
}
.price-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px;
  transition: transform 260ms var(--ease), border-color 260ms var(--ease), box-shadow 260ms var(--ease);
}
.price-card:hover { transform: translateY(-5px); box-shadow: 0 24px 50px -28px rgba(0,0,0,.7); }
.price-card.featured { border-color: var(--accent); box-shadow: inset 0 0 0 1px var(--accent); }
.price-card .ribbon {
  align-self: flex-start;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 999px;
  padding: 3px 10px;
  margin-bottom: 12px;
}
.price-card h3 { font-size: 1.2rem; }
.price-card .amt {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 2rem;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  margin: 6px 0 2px;
}
.price-card .amt small { font-size: 0.8rem; color: var(--ink-faint); font-weight: 400; }
.price-card .per { font-size: 0.78rem; color: var(--ink-faint); margin-bottom: 16px; }
.price-card ul { list-style: none; padding: 0; margin: 0 0 20px; }
.price-card ul li { display: flex; gap: 9px; align-items: flex-start; font-size: 0.88rem; padding: 6px 0; color: var(--ink-soft); }
.price-card ul li svg { width: 16px; height: 16px; flex: none; margin-top: 3px; }
.price-card ul li.yes svg { color: var(--accent-2); }
.price-card ul li.no { color: var(--ink-faint); }
.price-card ul li.no svg { color: var(--ink-faint); }
.price-card .btn { margin-top: auto; width: 100%; justify-content: center; }
.price-foot { text-align: center; margin-top: 18px; font-size: 0.78rem; color: var(--ink-faint); }

/* ============================================================
   DELIVERY / teslimat
   ============================================================ */
.deliver-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.deliver {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
}
.deliver h3 { font-size: 1.02rem; display: flex; gap: 10px; align-items: center; }
.deliver h3 svg { width: 22px; height: 22px; color: var(--accent-2); flex: none; }
.deliver p { color: var(--ink-soft); font-size: 0.9rem; margin: 8px 0 0; }
.deliver .meta { font-family: var(--mono); font-size: 0.78rem; color: var(--accent); margin-top: 10px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 20px;
}
.testi {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
}
.testi .quote { color: var(--ink); font-size: 0.95rem; line-height: 1.6; margin: 0 0 16px; }
.testi .who { display: flex; align-items: center; gap: 12px; }
.testi .who .av {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--surface-3);
  display: grid; place-items: center;
  font-family: var(--mono);
  font-weight: 600;
  color: var(--accent);
  flex: none;
}
.testi .who b { font-family: var(--mono); font-size: 0.9rem; display: block; }
.testi .who span { font-size: 0.76rem; color: var(--ink-faint); }
.testi .rate { color: var(--accent); font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 10px; }

/* ============================================================
   CONSTELLATION self-draw
   ============================================================ */
.constellation { width: 100%; max-width: 520px; height: auto; }
.constellation line, .constellation polyline {
  stroke: var(--accent);
  stroke-width: 1.4;
  fill: none;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  transition: stroke-dashoffset 1500ms var(--ease);
}
.constellation.draw line, .constellation.draw polyline { stroke-dashoffset: 0; }
.constellation circle {
  fill: var(--ink);
  opacity: 0;
  transition: opacity 500ms var(--ease);
  transition-delay: calc(var(--i, 0) * 140ms + 500ms);
}
.constellation.draw circle { opacity: 1; filter: drop-shadow(0 0 4px var(--accent-2)); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 840px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 12px;
  background: var(--surface);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px clamp(16px, 3vw, 24px);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  font-family: var(--mono);
  font-size: 0.98rem;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .pm {
  flex: none;
  width: 22px; height: 22px;
  position: relative;
  transition: transform 360ms var(--ease);
}
.faq-item summary .pm::before, .faq-item summary .pm::after {
  content: "";
  position: absolute;
  background: var(--accent);
  border-radius: 2px;
}
.faq-item summary .pm::before { top: 10px; left: 2px; right: 2px; height: 2px; }
.faq-item summary .pm::after { left: 10px; top: 2px; bottom: 2px; width: 2px; transition: opacity 360ms var(--ease); }
.faq-item[open] summary .pm { transform: rotate(180deg); }
.faq-item[open] summary .pm::after { opacity: 0; }
.faq-item > .answer {
  height: 0;
  padding: 0 clamp(16px, 3vw, 24px);
  overflow: hidden;
  color: var(--ink-soft);
  font-size: 0.92rem;
  transition: height 360ms var(--ease2), padding-block-end 360ms var(--ease2);
}
.faq-item[open] > .answer {
  height: auto;
  padding-block-end: 22px;
}
@media (prefers-reduced-motion: reduce) {
  .faq-item > .answer { transition: none; }
}

/* ============================================================
   NOTES / news
   ============================================================ */
.notes { display: grid; gap: 14px; }
.note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: baseline;
  padding: 16px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.note .date { font-family: var(--mono); font-size: 0.78rem; color: var(--accent-2); white-space: nowrap; }
.note b { font-family: var(--mono); font-size: 0.95rem; display: block; }
.note p { font-size: 0.86rem; color: var(--ink-soft); margin: 4px 0 0; }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band {
  position: relative;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(16,20,24,.72), rgba(16,20,24,.92)),
    url("../images/set-derin-uzay.jpg") center/cover no-repeat;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.cta-band .inner { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }
.cta-band h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); }
.cta-band p { color: var(--ink-soft); }
.cta-band .actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 22px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--deep);
  border-top: 1px solid var(--line);
  padding: clamp(44px, 6vw, 72px) 0 28px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(24px, 4vw, 48px);
}
.foot-grid h4 { font-size: 0.82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 14px; }
.foot-grid a { color: var(--ink-soft); display: block; padding: 5px 0; font-size: 0.9rem; }
.foot-grid a:hover { color: var(--accent); }
.foot-brand .brand { margin-bottom: 12px; }
.foot-brand p { color: var(--ink-soft); font-size: 0.88rem; max-width: 34ch; }
.foot-contact .row { display: flex; gap: 10px; align-items: flex-start; font-size: 0.88rem; color: var(--ink-soft); padding: 5px 0; }
.foot-contact .row svg { width: 17px; height: 17px; color: var(--accent); flex: none; margin-top: 3px; }
.foot-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
  color: var(--ink-faint);
}
.foot-bottom .reg { font-family: var(--mono); }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  max-width: 520px;
  margin: 0 auto;
  background: var(--surface-2);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  padding: 20px 22px;
  z-index: 9999;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms var(--ease), opacity 240ms var(--ease2);
  box-shadow: 0 24px 50px -20px rgba(0,0,0,.8);
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
.cookie-banner h4 { font-size: 0.96rem; margin-bottom: 6px; }
.cookie-banner p { font-size: 0.84rem; color: var(--ink-soft); margin: 0 0 14px; }
.cookie-banner p a { color: var(--accent); }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-actions button {
  flex: 1 1 auto;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 10px;
  font-family: var(--mono);
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--line-strong);
  transition: background 200ms var(--ease2), color 200ms var(--ease2), transform 160ms var(--ease2);
}
.cookie-actions [data-consent="accept"] { background: var(--accent); color: #160a02; border-color: var(--accent); }
.cookie-actions [data-consent="accept"]:hover { background: var(--accent-soft); transform: translateY(-1px); }
/* "Reddet" must read as an equal-weight choice to "Kabul et" (KVKK/GDPR — no dark pattern) */
.cookie-actions [data-consent="reject"] { background: var(--surface-3); color: var(--ink); border-color: var(--ink-soft); font-weight: 600; }
.cookie-actions [data-consent="reject"]:hover { background: var(--surface-2); color: var(--ink); border-color: var(--ink); transform: translateY(-1px); }
.cookie-actions [data-consent="settings"] { background: transparent; color: var(--ink-soft); }
.cookie-actions [data-consent="settings"]:hover { color: var(--ink); background: var(--surface-3); }
@media (min-width: 640px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}

/* ============================================================
   FORMS
   ============================================================ */
.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(22px, 3vw, 34px);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--mono); font-size: 0.82rem; color: var(--ink-soft); }
.field label .opt-mark { color: var(--ink-faint); font-weight: 400; }
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--deep);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--ink);
  font-family: var(--body);
  font-size: 0.95rem;
  transition: border-color 200ms var(--ease2), box-shadow 200ms var(--ease2);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255,122,26,.18);
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-faint); }
.field.kvkk { flex-direction: row; align-items: flex-start; gap: 10px; }
.field.kvkk label { font-size: 0.84rem; color: var(--ink-soft); }
.field input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: auto;
  width: 18px; height: 18px;
  min-width: 18px; min-height: 18px;
  padding: 0; border: 0; margin: 2px 0 0;
  accent-color: var(--accent);
}
.form-card .btn { margin-top: 6px; }

/* ============================================================
   CONTACT cards
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
}
.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease), border-color 240ms var(--ease);
}
.contact-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -24px rgba(0,0,0,.7); border-color: var(--line-strong); }
.contact-card .ic {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--surface-2);
  display: grid; place-items: center;
  margin-bottom: 14px;
}
.contact-card .ic svg { width: 24px; height: 24px; color: var(--accent); }
.contact-card h3 { font-size: 1rem; margin-bottom: 4px; }
.contact-card a, .contact-card .val { color: var(--ink); font-size: 0.95rem; font-family: var(--mono); display: block; word-break: break-word; }
.contact-card a:hover { color: var(--accent); }
.contact-card small { color: var(--ink-faint); font-size: 0.78rem; display: block; margin-top: 6px; }

/* hours table */
.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
}
.hours-grid .day {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 0.88rem;
}
.hours-grid .day .d { color: var(--ink-soft); font-family: var(--mono); }
.hours-grid .day .h { font-variant-numeric: tabular-nums; font-family: var(--mono); color: var(--ink); }
.hours-grid .day.today { border-color: var(--accent); }
.hours-grid .day.today .d { color: var(--accent); }

/* ============================================================
   ARTICLE / legal pages
   ============================================================ */
.page-hero {
  position: relative;
  padding: clamp(48px, 7vw, 92px) 0 clamp(36px, 5vw, 56px);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, var(--deep), var(--bg));
  overflow: hidden;
}
.page-hero .inner { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
.page-hero p { color: var(--ink-soft); max-width: 60ch; }
.prose { max-width: 800px; }
.prose h2 { font-size: clamp(1.3rem, 2.6vw, 1.7rem); margin-top: 2em; }
.prose h3 { font-size: 1.1rem; margin-top: 1.6em; }
.prose p, .prose li { color: var(--ink-soft); }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li { margin-bottom: 0.5em; }
.prose a { color: var(--accent); }
.prose strong { color: var(--ink); }

/* tables */
.table-scroll {
  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);
  border-radius: 10px;
}
.table-scroll > table { margin: 0 !important; min-width: 480px; width: 100%; border-collapse: collapse; }
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }
.table-scroll th, .table-scroll td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
}
.table-scroll th { font-family: var(--mono); color: var(--ink); background: var(--surface-2); }
.table-scroll td { color: var(--ink-soft); }
.table-scroll tr:last-child td { border-bottom: none; }

/* ============================================================
   THANK YOU / 404
   ============================================================ */
.center-screen {
  min-height: calc(100vh - var(--header-h));
  display: grid;
  place-items: center;
  text-align: center;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.center-screen .inner { position: relative; z-index: 2; max-width: 560px; }
.center-screen .big { font-family: var(--mono); font-weight: 700; font-size: clamp(4rem, 14vw, 8rem); color: var(--accent); line-height: 1; }
.center-screen h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
.center-screen p { color: var(--ink-soft); }
.center-screen .actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 22px; }

/* ============================================================
   REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 640ms var(--ease), transform 640ms var(--ease);
  transition-delay: calc(var(--i, 0) * 80ms);
}
.reveal.is-in { opacity: 1; transform: none; }
html.no-js .reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .star-layer, .twinkle, .shooting-star, .constellation line, .constellation polyline, .constellation circle,
  .orbit, [data-part] { animation: none !important; transition: none !important; }
  .constellation line, .constellation polyline { stroke-dashoffset: 0 !important; }
  .constellation circle { opacity: 1 !important; }
}

/* ============================================================
   ORBIT ambient
   ============================================================ */
.orbit-wrap { position: absolute; pointer-events: none; opacity: .42; z-index: 1; }
.orbit { animation: orbit 46s linear infinite; transform-origin: center; }
.orbit .body { animation: counter-orbit 46s linear infinite; transform-origin: center; }
@keyframes orbit { to { transform: rotate(360deg); } }
@keyframes counter-orbit { to { transform: rotate(-360deg); } }

/* aperture reveal */
.aperture-img { clip-path: circle(0% at 50% 50%); transition: clip-path 1100ms var(--ease); }
.aperture-img.open { clip-path: circle(140% at 50% 50%); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: block; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { max-width: 460px; }
  .config-wrap { grid-template-columns: 1fr; }
  .summary { position: static; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  body { font-size: 15px; }
  .hero-grid { padding: 40px 0 36px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .form-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .foot-bottom { flex-direction: column; }
  .feat .ic { width: 40px; height: 40px; }
  .step-head .hint { display: none; }
  .note { grid-template-columns: 1fr; gap: 6px; }
  .opt-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 390px) {
  .opt-grid { grid-template-columns: 1fr; }
  .step-bar .chip span { font-size: 0.6rem; }
}

.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}

/* header-cta-padding-guard v1 */
.nav-desktop a.nav-cta, header a.nav-cta, .site-header a.nav-cta {
  padding: 10px 18px;
}

/* drawer-cta-color-guard v1 */
.drawer a.nav-cta, .drawer .nav-cta, .mobile-menu a.nav-cta, nav[class*=mobile] a.nav-cta {
  color: #160a02 !important;
}
