:root {
  interpolate-size: allow-keywords;
  --bg: #FFFFFF;
  --surface: #F0F4F8;
  --surface-2: #E2E8F0;
  --ink: #111827;
  --ink-soft: #4B5563;
  --accent: #2563EB;
  --accent-2: #10B981;
  --line: #D1D5DB;
  --line-strong: #9CA3AF;
  --header-h: 72px;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-pill: 999px;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'IBM Plex Sans', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
  --max-w: 1240px;
  --pad: clamp(1rem, 3vw, 2rem);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
html, body { overflow-x: hidden; max-width: 100vw; margin: 0; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color 240ms cubic-bezier(.4,0,.2,1); }
a:hover { color: var(--ink); }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: inherit; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.18;
  color: var(--ink);
  letter-spacing: -0.012em;
}
h1 { font-size: clamp(2.4rem, 6vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 0.6em; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p { margin-bottom: 1em; }
.eyebrow {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.8rem;
}
.mono { font-family: var(--font-mono); font-weight: 500; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}
main { padding-top: var(--header-h); }
section { padding: clamp(3rem, 8vw, 6rem) 0; }
.section-surface { background: var(--surface); }
.section-ink { background: var(--ink); color: var(--bg); }
.section-ink h2, .section-ink h3, .section-ink h4 { color: var(--bg); }
.section-ink .eyebrow { color: var(--accent-2); }
.section-ink p { color: #CBD5E1; }

.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--accent); color: #fff; padding: 8px 16px;
  border-radius: var(--radius-sm); z-index: 10000;
  font-weight: 600; font-size: 0.9rem;
}
.skip-link:focus { top: 12px; }

/* ===== Header ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1080;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 240ms ease, box-shadow 240ms ease, padding 240ms ease;
  height: var(--header-h);
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,.18);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h);
}
.logo {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--ink);
  display: flex; align-items: center; gap: 2px;
  text-decoration: none;
}
.logo:hover { color: var(--ink); }
.logo span { color: var(--accent); }
.logo-icon {
  width: 32px; height: 32px; margin-right: 8px;
  color: var(--accent);
}

/* ===== Nav Desktop ===== */
.nav-desktop { display: flex; align-items: center; gap: 28px; }
.nav-desktop a {
  font-size: 0.9rem; font-weight: 500; color: var(--ink-soft);
  position: relative; transition: color 240ms cubic-bezier(.4,0,.2,1);
  text-decoration: none;
}
.nav-desktop a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--accent);
  transition: width 280ms cubic-bezier(.2,.7,.2,1);
}
.nav-desktop a:hover { color: var(--ink); }
.nav-desktop a:hover::after { width: 100%; }
.nav-desktop a.is-active { color: var(--accent); }
.nav-desktop a.is-active::after { width: 100%; }
.nav-desktop .nav-cta {
  background: var(--ink); color: var(--bg); padding: 8px 20px;
  border-radius: var(--radius-pill); font-weight: 600;
  transition: background 240ms, color 240ms, transform 180ms;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover { background: var(--accent); color: #fff; transform: translateY(-2px); }
.nav-desktop .nav-cta.is-active { background: var(--accent); color: #fff; }

@media (max-width: 1024px) { .nav-desktop { display: none; } }

/* ===== Nav Toggle ===== */
.nav-toggle {
  display: none; width: 44px; height: 44px;
  position: relative; z-index: 1100;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 200ms;
}
.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 (max-width: 1024px) { .nav-toggle { display: flex; } }

/* ===== Drawer ===== */
.drawer-backdrop {
  position: fixed; inset: 0; z-index: 1040;
  background: rgba(0,0,0,0.55);
  opacity: 0; pointer-events: none;
  transition: opacity 240ms ease;
}
.drawer-backdrop.is-open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw); z-index: 1050;
  background: var(--bg);
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  padding: calc(var(--header-h) + 32px) 32px 32px;
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer nav { display: flex; flex-direction: column; gap: 8px; }
.drawer nav a {
  display: block; padding: 14px 0; font-size: 1.1rem; font-weight: 500;
  color: var(--ink); border-bottom: 1px solid var(--line);
  transition: color 240ms, padding-left 240ms;
}
.drawer nav a:hover { color: var(--accent); padding-left: 8px; }
.drawer nav a.is-active { color: var(--accent); }
.drawer .drawer-cta {
  display: block; text-align: center; margin-top: 24px;
  background: var(--accent); color: #fff; padding: 14px 24px;
  border-radius: var(--radius-pill); font-weight: 600;
}
.drawer .drawer-cta:hover { background: var(--ink); color: #fff; }

/* ===== Hero ===== */
.hero {
  padding: clamp(3rem, 8vw, 5rem) 0 clamp(2rem, 5vw, 3rem);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: 0; right: -10%; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(37,99,235,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { text-align: center; max-width: 680px; margin: 0 auto 2.5rem; }
.hero-content h1 { margin-bottom: 0.6em; }
.hero-content h1 .char {
  display: inline-block;
  opacity: 0; transform: translateY(18px);
  animation: charReveal 400ms cubic-bezier(.2,.7,.2,1) forwards;
}
@keyframes charReveal {
  to { opacity: 1; transform: translateY(0); }
}
.hero-sub { color: var(--ink-soft); font-size: 1.1rem; max-width: 520px; margin: 0 auto 1.8rem; }
.hero-badges {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: var(--radius-pill);
  background: var(--surface); font-size: 0.82rem; font-weight: 500;
  color: var(--ink-soft);
}
.hero-badge svg { width: 16px; height: 16px; color: var(--accent-2); }

/* ===== Configurator ===== */
.configurator {
  max-width: 720px; margin: 0 auto;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 24px -4px rgba(0,0,0,0.08);
}
.config-progress {
  display: flex; border-bottom: 1px solid var(--line);
}
.config-step-tab {
  flex: 1; padding: 16px 12px; text-align: center;
  font-family: var(--font-mono); font-weight: 500; font-size: 0.82rem;
  color: var(--ink-soft); background: var(--surface);
  border-right: 1px solid var(--line);
  transition: background 240ms, color 240ms;
  cursor: default;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.config-step-tab:last-child { border-right: none; }
.config-step-tab .step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--line); color: var(--ink-soft);
  font-size: 0.72rem; font-weight: 600;
  transition: background 240ms, color 240ms;
}
.config-step-tab.active { background: var(--bg); color: var(--ink); }
.config-step-tab.active .step-num { background: var(--accent); color: #fff; }
.config-step-tab.done .step-num { background: var(--accent-2); color: #fff; }
.config-step-tab.done { color: var(--accent-2); }

.config-body { padding: clamp(20px, 4vw, 32px); position: relative; min-height: 280px; }
.config-step {
  display: none;
  animation: slideInStep 360ms cubic-bezier(.2,.7,.2,1);
}
.config-step.active { display: block; }
@keyframes slideInStep {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}
.config-step h3 { font-size: 1.1rem; margin-bottom: 1.2rem; text-align: center; }

.option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 12px;
}
.option-card {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 18px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg);
  cursor: pointer;
  transition: border-color 240ms, transform 180ms, box-shadow 240ms, background 240ms;
  text-align: center;
}
.option-card svg { width: 32px; height: 32px; color: var(--ink-soft); transition: color 240ms; }
.option-card span { font-size: 0.88rem; font-weight: 500; }
.option-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px -6px rgba(37,99,235,0.14);
}
.option-card:hover svg { color: var(--accent); }
.option-card.selected {
  border-color: var(--accent);
  background: rgba(37,99,235,0.05);
}
.option-card.selected svg { color: var(--accent); }
.option-card .option-price {
  font-family: var(--font-mono); font-size: 0.72rem;
  color: var(--ink-soft); margin-top: 2px;
}

.level-grid { grid-template-columns: repeat(3, 1fr); }
.type-row { margin-top: 24px; }
.type-row h4 { font-size: 0.95rem; margin-bottom: 12px; text-align: center; color: var(--ink-soft); }
.type-grid { grid-template-columns: repeat(3, 1fr); }

.date-step { text-align: center; }
.date-input-wrap {
  display: flex; flex-direction: column; gap: 12px; align-items: center;
  max-width: 320px; margin: 0 auto;
}
.date-input-wrap label {
  font-size: 0.88rem; color: var(--ink-soft); font-weight: 500; width: 100%;
  text-align: left;
}
.date-input-wrap input[type="date"] {
  width: 100%; padding: 12px 16px;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font-mono); font-size: 0.95rem;
  transition: border-color 240ms;
}
.date-input-wrap input[type="date"]:focus { border-color: var(--accent); }
.date-presets { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-top: 12px; }
.date-preset {
  padding: 8px 16px; border: 1px solid var(--line); border-radius: var(--radius-pill);
  font-size: 0.82rem; font-weight: 500; color: var(--ink-soft);
  cursor: pointer; transition: all 240ms;
}
.date-preset:hover, .date-preset.selected {
  border-color: var(--accent); background: rgba(37,99,235,0.05); color: var(--accent);
}

.config-nav {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 24px; padding-top: 20px;
  border-top: 1px solid var(--line);
}
.config-nav .btn-back {
  font-size: 0.88rem; color: var(--ink-soft); font-weight: 500;
  display: flex; align-items: center; gap: 6px;
  transition: color 240ms;
}
.config-nav .btn-back:hover { color: var(--ink); }
.config-nav .btn-back.hidden { visibility: hidden; }
.config-nav .btn-next, .config-nav .btn-submit {
  padding: 10px 24px; border-radius: var(--radius-pill);
  font-weight: 600; font-size: 0.9rem;
  transition: background 240ms, color 240ms, transform 180ms;
}
.config-nav .btn-next { background: var(--accent); color: #fff; }
.config-nav .btn-next:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }
.config-nav .btn-next:disabled { opacity: 0.4; pointer-events: none; }
.config-nav .btn-submit { background: var(--accent-2); color: #fff; }
.config-nav .btn-submit:hover { background: #059669; color: #fff; transform: translateY(-2px); }

/* ===== Slot Price Display ===== */
.price-result {
  text-align: center; padding: clamp(2rem, 5vw, 3rem) 0;
}
.price-result-label {
  font-family: var(--font-mono); font-size: 0.82rem;
  color: var(--ink-soft); text-transform: uppercase;
  letter-spacing: 0.14em; margin-bottom: 12px;
}
.price-slots-wrap {
  display: inline-flex; align-items: baseline; gap: 4px;
  font-family: var(--font-mono); font-weight: 500;
  font-size: clamp(2.4rem, 6vw, 4rem);
  color: var(--ink);
}
.slot-digit {
  display: inline-block;
  height: 1.3em; overflow: hidden;
  position: relative;
}
.slot-reel {
  display: flex; flex-direction: column;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}
.slot-reel span {
  display: block; height: 1.3em; line-height: 1.3em;
  text-align: center; min-width: 0.65em;
}
.slot-sep {
  font-size: 0.85em; color: var(--ink-soft);
}
.slot-suffix {
  font-size: 0.5em; color: var(--ink-soft);
  margin-left: 8px; letter-spacing: 0.04em;
}
.price-type-label {
  font-family: var(--font-mono); font-size: 0.82rem;
  color: var(--accent); margin-top: 8px;
}
.price-disclaimer {
  font-size: 0.75rem; color: var(--ink-soft); margin-top: 16px;
  font-style: italic;
}

/* ===== Stats Strip ===== */
.stats-strip {
  background: var(--ink);
  padding: clamp(2rem, 4vw, 3rem) 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px; text-align: center;
}
.stat-item .stat-num {
  font-family: var(--font-mono); font-weight: 500;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: #fff; display: block;
}
.stat-item .stat-label {
  font-size: 0.82rem; color: #94A3B8;
  margin-top: 4px;
}
@media (max-width: 640px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }

/* ===== Price Section ===== */
.price-section { background: var(--surface); }
.price-heading { text-align: center; margin-bottom: 2rem; }
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px; margin-top: 2rem;
}
.package-card {
  background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(24px, 3vw, 32px);
  transition: transform 240ms, box-shadow 240ms;
  position: relative;
}
.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px -12px rgba(37,99,235,0.14);
}
.package-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}
.package-card.featured::before {
  content: 'En Popüler';
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff;
  padding: 4px 16px; border-radius: var(--radius-pill);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase;
}
.package-name {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 1.15rem; margin-bottom: 8px;
}
.package-price {
  font-family: var(--font-mono); font-weight: 500;
  font-size: 1.6rem; color: var(--accent);
  margin-bottom: 4px;
}
.package-price small { font-size: 0.5em; color: var(--ink-soft); }
.package-includes, .package-excludes { margin-top: 16px; }
.package-includes h5, .package-excludes h5 {
  font-size: 0.78rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--ink-soft); margin-bottom: 8px;
}
.package-includes li, .package-excludes li {
  font-size: 0.88rem; padding: 4px 0 4px 20px;
  position: relative; color: var(--ink);
}
.package-includes li::before {
  content: ''; position: absolute; left: 0; top: 10px;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--accent-2);
}
.package-excludes li::before {
  content: ''; position: absolute; left: 0; top: 10px;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--line);
}
.package-cta {
  display: block; text-align: center; margin-top: 24px;
  padding: 12px 24px; border-radius: var(--radius-pill);
  font-weight: 600; font-size: 0.9rem;
  border: 1px solid var(--line); color: var(--ink);
  transition: all 240ms;
}
.package-cta:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.package-card.featured .package-cta {
  background: var(--accent); color: #fff; border-color: var(--accent);
}
.package-card.featured .package-cta:hover { background: var(--ink); border-color: var(--ink); color: #fff; }
.price-footer-note {
  text-align: center; font-size: 0.78rem; color: var(--ink-soft);
  margin-top: 2rem; font-style: italic;
}

/* ===== Popular Section ===== */
.popular-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.preset-card {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(20px, 3vw, 28px);
  cursor: pointer; background: var(--bg);
  transition: transform 240ms, box-shadow 240ms, border-color 240ms;
  position: relative;
  overflow: hidden;
}
.preset-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--accent);
  transform: scaleX(0);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  transform-origin: left;
}
.preset-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px -8px rgba(37,99,235,0.14);
  border-color: var(--accent);
}
.preset-card:hover::after { transform: scaleX(1); }
.preset-card .preset-icon { width: 40px; height: 40px; color: var(--accent); margin-bottom: 12px; }
.preset-card .preset-name { font-family: var(--font-heading); font-weight: 600; font-size: 1.05rem; margin-bottom: 6px; }
.preset-card .preset-desc { font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 12px; }
.preset-card .preset-meta {
  display: flex; gap: 12px; flex-wrap: wrap;
  font-family: var(--font-mono); font-size: 0.72rem; color: var(--ink-soft);
}
.preset-card .preset-meta span {
  padding: 3px 10px; border: 1px solid var(--line);
  border-radius: var(--radius-pill);
}
.preset-card .preset-price {
  font-family: var(--font-mono); font-weight: 500;
  font-size: 1.25rem; color: var(--accent);
  margin-top: 12px;
}
.preset-card .preset-price small { font-size: 0.6em; color: var(--ink-soft); }
.preset-card .preset-cta {
  display: inline-block; margin-top: 14px;
  font-size: 0.82rem; font-weight: 600;
  color: var(--accent); transition: color 240ms;
}
.preset-card .preset-cta:hover { color: var(--ink); }

/* ===== Process / Timeline ===== */
.process-section { background: var(--bg); }
.process-timeline {
  position: relative; max-width: 640px; margin: 0 auto;
  padding-left: 48px;
}
.process-timeline::before {
  content: ''; position: absolute;
  left: 19px; top: 8px; bottom: 8px;
  width: 2px; background: var(--line);
}
.process-step {
  position: relative; padding-bottom: 36px;
}
.process-step:last-child { padding-bottom: 0; }
.process-step .step-marker {
  position: absolute; left: -48px; top: 0;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg); border: 2px solid var(--accent);
  border-radius: 50;
  font-family: var(--font-mono); font-weight: 600;
  font-size: 0.78rem; color: var(--accent);
  border-radius: 50%;
  z-index: 1;
}
.process-step .step-time {
  font-family: var(--font-mono); font-size: 0.72rem;
  color: var(--accent-2); margin-bottom: 4px;
  letter-spacing: 0.08em;
}
.process-step h4 { margin-bottom: 6px; }
.process-step p { font-size: 0.9rem; color: var(--ink-soft); margin-bottom: 0; }

/* ===== Testimonials ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial-card {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(20px, 3vw, 28px);
  background: var(--bg);
  transition: transform 240ms, box-shadow 240ms;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px -8px rgba(0,0,0,0.08);
}
.testimonial-quote {
  font-size: 0.92rem; line-height: 1.7;
  color: var(--ink); margin-bottom: 16px;
  position: relative;
  padding-left: 20px;
}
.testimonial-quote::before {
  content: '\201C';
  position: absolute; left: 0; top: -4px;
  font-size: 1.6rem; color: var(--accent); font-weight: 700;
  line-height: 1;
}
.testimonial-author {
  font-weight: 600; font-size: 0.88rem;
}
.testimonial-meta {
  font-family: var(--font-mono); font-size: 0.72rem;
  color: var(--ink-soft); margin-top: 2px;
}

/* ===== FAQ ===== */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  padding: 20px 0; cursor: pointer;
  font-family: var(--font-heading); font-weight: 600;
  font-size: 1rem; color: var(--ink);
  list-style: none; display: flex;
  justify-content: space-between; align-items: center;
  transition: color 240ms;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-mono); font-size: 1.2rem;
  color: var(--accent); flex-shrink: 0;
  transition: transform 300ms cubic-bezier(.2,.7,.2,1);
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item summary:hover { color: var(--accent); }
.faq-item .faq-body {
  height: 0;
  padding: 0 0;
  overflow: hidden;
  transition: height 360ms cubic-bezier(.4,0,.2,1),
              padding-block-end 360ms cubic-bezier(.4,0,.2,1);
}
.faq-item[open] .faq-body {
  height: auto;
  padding-block-end: 20px;
}
.faq-item .faq-body p {
  font-size: 0.9rem; color: var(--ink-soft);
  line-height: 1.7; margin-bottom: 0;
}
@media (prefers-reduced-motion: reduce) {
  .faq-item .faq-body { transition: none; }
}

/* ===== CTA Section ===== */
.cta-section { background: var(--surface); }
.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 5vw, 48px);
  align-items: start;
}
.cta-summary {
  padding: clamp(24px, 3vw, 32px);
  background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--radius);
}
.cta-summary h3 { margin-bottom: 16px; }
.cta-summary-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
}
.cta-summary-row:last-of-type { border-bottom: none; }
.cta-summary-row .label { color: var(--ink-soft); }
.cta-summary-row .value {
  font-family: var(--font-mono); font-weight: 500; color: var(--ink);
}
.cta-summary-total {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 16px; margin-top: 8px;
  border-top: 2px solid var(--ink);
  font-weight: 600; font-size: 1.1rem;
}
.cta-summary-total .value {
  font-family: var(--font-mono); font-size: 1.3rem; color: var(--accent);
}

/* ===== Form ===== */
.form-card {
  padding: clamp(24px, 3vw, 32px);
  background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--radius);
}
.form-card h3 { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label {
  display: block; font-size: 0.82rem; font-weight: 500;
  color: var(--ink-soft); margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 16px;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--bg); color: var(--ink);
  transition: border-color 240ms, box-shadow 240ms;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}
.field textarea { min-height: 100px; resize: vertical; }
.field.kvkk-field {
  display: flex; align-items: flex-start; gap: 10px;
}
.field.kvkk-field label {
  margin-bottom: 0; font-size: 0.82rem; line-height: 1.5; cursor: pointer;
}
.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);
}
.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background 240ms, color 240ms, transform 180ms, box-shadow 240ms;
  text-align: center;
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--ink); color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -6px rgba(0,0,0,0.2);
}
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 240ms, color 240ms, border-color 240ms, transform 180ms;
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface); color: var(--ink); border-color: var(--ink-soft);
}

@media (max-width: 768px) {
  .cta-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ===== Footer ===== */
.site-footer {
  background: var(--ink); color: #94A3B8;
  padding: clamp(3rem, 6vw, 4rem) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: clamp(24px, 4vw, 40px);
  padding-bottom: clamp(2rem, 4vw, 3rem);
}
.footer-brand .logo { color: #fff; margin-bottom: 12px; }
.footer-brand .logo span { color: var(--accent); }
.footer-brand p { font-size: 0.85rem; line-height: 1.6; max-width: 280px; }
.footer-col h5 {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 0.88rem; color: #fff;
  margin-bottom: 16px; letter-spacing: 0.04em;
}
.footer-col a {
  display: block; font-size: 0.85rem; color: #94A3B8;
  padding: 4px 0; transition: color 240ms;
}
.footer-col a:hover { color: var(--accent); }
.footer-contact-row {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 6px 0; font-size: 0.85rem;
  word-break: break-all; overflow-wrap: anywhere;
}
.footer-contact-row svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--accent); margin-top: 2px; }
.footer-contact-row a { display: inline; padding: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-size: 0.78rem;
}
.footer-bottom .footer-legal { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-bottom a { color: #64748B; }
.footer-bottom a:hover { color: var(--accent); }
.footer-vkn {
  font-family: var(--font-mono); font-size: 0.72rem;
  color: #475569;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ===== Cookie Banner ===== */
.cookie-banner {
  position: fixed; bottom: 16px; left: 16px; right: 16px;
  max-width: 520px; margin: 0 auto;
  background: var(--ink); color: #CBD5E1;
  padding: 20px 24px;
  border-radius: var(--radius);
  box-shadow: 0 12px 40px -8px rgba(0,0,0,0.35);
  transform: translateY(140%); opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
  z-index: 9999;
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
.cookie-banner h4 { color: #fff; font-size: 0.95rem; margin-bottom: 8px; }
.cookie-banner p { font-size: 0.82rem; line-height: 1.6; margin-bottom: 16px; }
.cookie-banner p a { color: var(--accent); text-decoration: underline; }
.cookie-actions {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.cookie-actions button {
  padding: 10px 18px; border-radius: var(--radius-pill);
  font-weight: 600; font-size: 0.82rem;
  cursor: pointer; border: none;
  transition: background 240ms, color 240ms;
  min-height: 44px;
}
.cookie-actions .cookie-accept {
  background: var(--accent); color: #fff;
}
.cookie-actions .cookie-accept:hover { background: #1D4ED8; color: #fff; }
.cookie-actions .cookie-reject {
  background: rgba(255,255,255,0.12); color: #CBD5E1;
}
.cookie-actions .cookie-reject:hover { background: rgba(255,255,255,0.2); color: #fff; }
.cookie-actions .cookie-settings {
  background: rgba(255,255,255,0.08); color: #94A3B8;
}
.cookie-actions .cookie-settings:hover { background: rgba(255,255,255,0.15); color: #CBD5E1; }
@media (min-width: 640px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}

/* ===== Table Scroll ===== */
.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: 6px;
}
.table-scroll > table { margin: 0 !important; min-width: 480px; width: 100%; }
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }
table { width: 100%; border-collapse: collapse; }
th, td {
  padding: 12px 16px; text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 0.88rem;
}
th {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 0.78rem; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--ink-soft);
  background: var(--surface);
}
td { font-variant-numeric: tabular-nums; }
td .mono { font-family: var(--font-mono); }

/* ===== Reveal ===== */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 600ms cubic-bezier(.2,.7,.2,1), transform 600ms cubic-bezier(.2,.7,.2,1);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal[style*="--i"] {
  transition-delay: calc(var(--i, 0) * 80ms);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}
html.no-js .reveal { opacity: 1; transform: none; }

/* ===== Niche: Cooking Animations ===== */
@keyframes steamRise {
  0% { opacity: 0; transform: translateY(0) scaleX(1); }
  30% { opacity: 0.35; }
  70% { opacity: 0.15; transform: translateY(-50px) scaleX(1.3); }
  100% { opacity: 0; transform: translateY(-90px) scaleX(0.8); }
}
.steam-deco {
  position: absolute; pointer-events: none;
}
.steam-deco span {
  position: absolute; bottom: 0;
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(37,99,235,0.12);
  animation: steamRise 4s ease-in-out infinite;
}
.steam-deco span:nth-child(1) { left: 20%; animation-delay: 0s; animation-duration: 5s; }
.steam-deco span:nth-child(2) { left: 40%; animation-delay: 1.2s; animation-duration: 6s; width: 8px; height: 8px; }
.steam-deco span:nth-child(3) { left: 60%; animation-delay: 0.6s; animation-duration: 4.5s; }
.steam-deco span:nth-child(4) { left: 75%; animation-delay: 2s; animation-duration: 5.5s; width: 5px; height: 5px; }
.steam-deco span:nth-child(5) { left: 85%; animation-delay: 0.3s; animation-duration: 7s; }

@keyframes flamePulse {
  0%, 100% { opacity: 0.7; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.08); }
}
.flame-accent {
  display: inline-block;
  animation: flamePulse 2.5s ease-in-out infinite;
  transform-origin: bottom;
}

@keyframes sizzlePop {
  0% { transform: scale(1); }
  50% { transform: scale(1.03); }
  100% { transform: scale(1); }
}
.btn-primary:active { animation: sizzlePop 180ms ease; }

@keyframes spiceFloat {
  0% { transform: translate(0, 0) rotate(0deg); opacity: 0; }
  20% { opacity: 0.5; }
  80% { opacity: 0.2; }
  100% { transform: translate(20px, -120px) rotate(180deg); opacity: 0; }
}

@keyframes panShine {
  0%, 100% { background-position: -200% center; }
  50% { background-position: 200% center; }
}
.shine-on-hover:hover {
  background-image: linear-gradient(90deg, transparent 30%, rgba(255,255,255,0.12) 50%, transparent 70%);
  background-size: 200% 100%;
  animation: panShine 1.5s ease;
}

@media (prefers-reduced-motion: reduce) {
  .steam-deco span,
  .flame-accent,
  .shine-on-hover:hover { animation: none; }
}

/* ===== Counter Up ===== */
.counter-num { font-variant-numeric: tabular-nums; }

/* ===== Contact Page ===== */
.contact-hero {
  background: var(--surface);
  padding: clamp(3rem, 8vw, 5rem) 0 clamp(2rem, 5vw, 3rem);
  min-height: 240px;
  display: flex; align-items: center;
}
.channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.channel-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 24px;
  background: var(--bg);
  transition: transform 240ms, box-shadow 240ms;
}
.channel-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px -8px rgba(0,0,0,0.1);
}
.channel-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(37,99,235,0.08);
  color: var(--accent);
  margin-bottom: 12px;
}
.channel-icon svg { width: 22px; height: 22px; }
.channel-card h4 { font-size: 0.95rem; margin-bottom: 4px; }
.channel-card .channel-value {
  font-size: 0.9rem; font-weight: 500;
  word-break: break-all; overflow-wrap: anywhere;
}
.channel-card .channel-value a { color: var(--accent); }
.channel-card .channel-note { font-size: 0.78rem; color: var(--ink-soft); margin-top: 4px; }

.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 8px;
}
.hours-day {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-variant-numeric: tabular-nums;
  transition: background 240ms;
}
.hours-day.today {
  background: rgba(37,99,235,0.06);
  border-color: var(--accent);
}
.hours-day strong { display: block; font-size: 0.78rem; color: var(--ink-soft); margin-bottom: 2px; }

/* ===== About Page ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.team-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 28px);
  background: var(--bg);
  text-align: center;
  transition: transform 240ms, box-shadow 240ms;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px -8px rgba(0,0,0,0.08);
}
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-family: var(--font-heading);
  font-size: 1.6rem; font-weight: 600;
  color: var(--accent);
}
.team-card h4 { margin-bottom: 4px; }
.team-card .team-role {
  font-family: var(--font-mono); font-size: 0.78rem;
  color: var(--accent); margin-bottom: 12px;
}
.team-card .team-bio { font-size: 0.85rem; color: var(--ink-soft); line-height: 1.65; text-align: left; }

/* ===== Policy / Legal Pages ===== */
.legal-content { max-width: 780px; margin: 0 auto; }
.legal-content h2 { font-size: 1.6rem; margin-top: 2rem; }
.legal-content h3 { font-size: 1.15rem; margin-top: 1.5rem; margin-bottom: 0.5rem; }
.legal-content p { font-size: 0.92rem; color: var(--ink-soft); margin-bottom: 1em; }
.legal-content ul { margin: 0.5em 0 1em 1.5em; }
.legal-content li { font-size: 0.92rem; color: var(--ink-soft); padding: 3px 0; list-style: disc; }
.legal-content a { color: var(--accent); text-decoration: underline; }

/* ===== Thank You Page ===== */
.thankyou-section {
  text-align: center; min-height: 60vh;
  display: flex; align-items: center; justify-content: center;
  padding: 4rem 0;
}
.thankyou-icon {
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(16,185,129,0.1);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}
.thankyou-icon svg { width: 36px; height: 36px; color: var(--accent-2); }

/* ===== 404 ===== */
.error-section {
  text-align: center; min-height: 60vh;
  display: flex; align-items: center; justify-content: center;
  padding: 4rem 0;
}
.error-code {
  font-family: var(--font-mono); font-weight: 500;
  font-size: clamp(5rem, 14vw, 10rem);
  color: var(--surface-2); line-height: 1;
}

/* ===== Sitemap Page ===== */
.sitemap-list { max-width: 600px; margin: 0 auto; }
.sitemap-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  list-style: none;
}
.sitemap-list a {
  display: flex; justify-content: space-between;
  font-size: 0.92rem;
}
.sitemap-list .sitemap-url {
  font-family: var(--font-mono); font-size: 0.78rem;
  color: var(--ink-soft);
}

/* ===== Notes / Updates Block ===== */
.updates-block {
  background: var(--surface); border-radius: var(--radius);
  padding: 24px 28px; margin-top: 2rem;
}
.updates-block h4 { margin-bottom: 12px; }
.update-item {
  display: flex; gap: 12px; padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.85rem;
}
.update-item:last-child { border-bottom: none; }
.update-date {
  font-family: var(--font-mono); font-size: 0.78rem;
  color: var(--accent); white-space: nowrap; min-width: 100px;
}
.update-text { color: var(--ink-soft); }

/* ===== Availability indicator ===== */
.availability {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: var(--radius-pill);
  background: rgba(16,185,129,0.08);
  font-size: 0.82rem; font-weight: 500; color: var(--accent-2);
}
.availability-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent-2);
  animation: availPulse 2s ease-in-out infinite;
}
@keyframes availPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
@media (prefers-reduced-motion: reduce) {
  .availability-dot { animation: none; }
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  :root { --header-h: 64px; }
}
@media (max-width: 768px) {
  .option-grid { grid-template-columns: repeat(auto-fit, minmax(110px, 1fr)); }
  .level-grid { grid-template-columns: 1fr 1fr 1fr; }
  .type-grid { grid-template-columns: 1fr 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .packages-grid { grid-template-columns: 1fr; }
  .about-story-grid { grid-template-columns: 1fr !important; }
  .contact-form-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 640px) {
  section { padding: clamp(2rem, 6vw, 3rem) 0; }
  .option-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .type-grid { grid-template-columns: 1fr; gap: 10px; }
  .level-grid { grid-template-columns: 1fr; gap: 10px; }
  .option-card { padding: 14px 10px; }
  .option-card svg { width: 28px; height: 28px; }
  .preset-card { padding: 16px 20px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .popular-grid { grid-template-columns: 1fr; }
  .channels-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 430px) {
  h1 { font-size: 2rem; }
  .config-step-tab span:not(.step-num) { font-size: 0.68rem; }
  .price-slots-wrap { font-size: 2rem; }
}
@media (max-width: 360px) {
  h1 { font-size: 1.75rem; }
  .container { padding-left: 16px; padding-right: 16px; }
  .config-body { padding: 16px; }
  .option-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
}

/* ===== Print ===== */
@media print {
  .site-header, .drawer, .drawer-backdrop, .cookie-banner,
  .nav-toggle, .skip-link { display: none !important; }
  main { padding-top: 0; }
  .reveal { opacity: 1 !important; transform: none !important; }
  body { font-size: 12pt; color: #000; }
  a { color: #000; text-decoration: underline; }
  section { page-break-inside: avoid; }
}

.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}

/* targeted-contrast-fix pisirplani.com.tr */
.step-time{color:#0d8c64;font-weight:700}
