/* ============================================================
   Zemberek Saat Atölyesi — styles.css
   Palet: bg #F5F4FB | surface #FFF | ink #1A1730
   accent #5B3FD6 (mor) | accent-2 #FF7A59 (mercan)
   ============================================================ */

:root {
  --bg: #F5F4FB;
  --surface: #FFFFFF;
  --surface-2: #EFEDFA;
  --ink: #1A1730;
  --ink-soft: #514B6E;
  --ink-mute: #8782A0;
  --accent: #5B3FD6;
  --accent-deep: #4A30BE;
  --accent-2: #FF7A59;
  --accent-2-deep: #F25E3A;
  --line: #E4E1F2;
  --line-strong: #CFCAE8;
  --good: #1E9E6A;
  --header-h: 76px;
  --maxw: 1240px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 4px 16px -10px rgba(26,23,48,.28);
  --shadow-md: 0 18px 44px -26px rgba(26,23,48,.40);
  --shadow-lg: 0 40px 80px -40px rgba(91,63,214,.42);
  --ease: cubic-bezier(.2,.7,.2,1);
  --ease-2: cubic-bezier(.4,0,.2,1);
  --grad: linear-gradient(100deg, var(--accent) 0%, var(--accent-2) 100%);
  interpolate-size: allow-keywords;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; overflow-x: hidden; max-width: 100vw; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.62;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: 'Sora', system-ui, sans-serif; font-weight: 700; line-height: 1.08; margin: 0 0 .5em; color: var(--ink); letter-spacing: -0.012em; }
p { margin: 0 0 1em; }
a { color: var(--accent); text-decoration: none; transition: color .2s var(--ease-2); }
a:hover { color: var(--accent-deep); }
img { max-width: 100%; height: auto; display: block; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
.mono { font-family: 'DM Mono', ui-monospace, monospace; font-variant-numeric: tabular-nums; }
strong { font-weight: 600; }

::selection { background: var(--accent); color: #fff; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--ink); color: #fff;
  padding: 10px 18px; border-radius: 8px; z-index: 2000;
  transition: top .2s var(--ease-2);
}
.skip-link:focus { top: 12px; color: #fff; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: clamp(16px, 4vw, 32px);
}

.eyebrow {
  font-family: 'DM Mono', monospace;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .72rem;
  color: var(--accent);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px;
  background: var(--grad);
  display: inline-block; border-radius: 2px;
}

.section { padding: clamp(56px, 9vw, 110px) 0; }
.section-head { max-width: 660px; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head h2 { font-size: clamp(1.9rem, 4.4vw, 3rem); margin-top: .4em; }
.section-head p { color: var(--ink-soft); font-size: 1.06rem; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 26px; border-radius: 999px;
  font-weight: 600; font-size: .98rem; border: 1.5px solid transparent;
  transition: transform .22s var(--ease), background .22s var(--ease-2), color .22s var(--ease-2), box-shadow .22s var(--ease-2);
  text-align: center; line-height: 1.1;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover, .btn-primary:focus-visible { background: var(--accent); color: #fff; transform: translateY(-2px); box-shadow: 0 14px 30px -14px rgba(91,63,214,.6); }
.btn-accent { background: var(--grad); color: #fff; box-shadow: 0 14px 30px -16px rgba(91,63,214,.7); }
.btn-accent:hover, .btn-accent:focus-visible { color: #fff; transform: translateY(-2px); box-shadow: 0 20px 40px -16px rgba(255,122,89,.6); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover, .btn-ghost:focus-visible { background: var(--surface); color: var(--accent); border-color: var(--accent); transform: translateY(-2px); }
.btn .arrow { transition: transform .22s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1080;
  height: var(--header-h);
  background: rgba(245, 244, 251, 0.92);
  backdrop-filter: saturate(150%) blur(10px);
  -webkit-backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: background .24s var(--ease-2), box-shadow .24s var(--ease-2), height .24s var(--ease-2), border-color .24s var(--ease-2);
}
.site-header.is-scrolled {
  background: rgba(245,244,251,.98);
  box-shadow: 0 8px 24px -16px rgba(26,23,48,.28);
  border-bottom-color: var(--line);
  height: 64px;
}
.header-inner {
  height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--ink); font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1.08rem; letter-spacing: -.01em; }
.brand:hover { color: var(--ink); }
.brand-mark { width: 38px; height: 38px; flex: 0 0 38px; }
.brand-mark .gear-spin { transform-origin: 50% 50%; animation: gearTurn 14s linear infinite; }
.brand small { display: block; font-family: 'DM Mono', monospace; font-size: .58rem; letter-spacing: .2em; color: var(--ink-mute); text-transform: uppercase; font-weight: 400; margin-top: 1px; }

.nav-desktop { display: none; align-items: center; gap: 6px; }
.nav-desktop a {
  position: relative; padding: 9px 14px; color: var(--ink-soft); font-weight: 500; font-size: .94rem; border-radius: 8px;
}
.nav-desktop a::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px;
  background: var(--grad); border-radius: 2px; transform: scaleX(0); transform-origin: left; transition: transform .26s var(--ease);
}
.nav-desktop a:hover { color: var(--ink); }
.nav-desktop a:hover::after, .nav-desktop a.is-active::after { transform: scaleX(1); }
.nav-desktop a.is-active { color: var(--ink); }
.nav-desktop .nav-cta { color: #fff; background: var(--ink); padding: 10px 20px; margin-left: 8px; }
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover { background: var(--accent); color: #fff; }

.nav-toggle {
  position: relative; z-index: 1100;
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--surface); border: 1px solid var(--line);
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span { width: 21px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s var(--ease-2); }
.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(16,12,36,.55);
  z-index: 1040; opacity: 0; visibility: hidden; transition: opacity .24s var(--ease-2), visibility .24s;
}
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  background: var(--surface);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.2,.7,.2,1);
  padding: calc(var(--header-h) + 18px) 26px 30px;
  display: flex; flex-direction: column; gap: 6px;
  box-shadow: -20px 0 60px -30px rgba(26,23,48,.5);
}
.drawer.is-open { transform: translateX(0); }
.drawer a { padding: 14px 6px; color: var(--ink); font-family: 'Sora', sans-serif; font-weight: 600; font-size: 1.12rem; border-bottom: 1px solid var(--line); }
.drawer a:hover, .drawer a.is-active { color: var(--accent); }
.drawer .drawer-cta { margin-top: 18px; border-bottom: none; }
.drawer .drawer-meta { margin-top: auto; font-size: .82rem; color: var(--ink-mute); border: none; padding: 0; }
.drawer .drawer-meta a { font-size: .82rem; padding: 2px 0; border: none; display: inline; font-family: 'DM Sans', sans-serif; font-weight: 500; }

main { padding-top: var(--header-h); }
main [id], section[id], main section { scroll-margin-top: calc(var(--header-h) + 20px); }

/* ============================================================
   HERO  (split-asymmetric)
   ============================================================ */
.hero { position: relative; padding: clamp(34px, 6vw, 70px) 0 clamp(48px, 7vw, 90px); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; top: -180px; right: -160px; width: 540px; height: 540px;
  background: radial-gradient(circle, rgba(91,63,214,.16), transparent 62%);
  filter: blur(6px); z-index: 0; pointer-events: none;
}
.hero::after {
  content: ""; position: absolute; bottom: -120px; left: -120px; width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(255,122,89,.14), transparent 64%);
  z-index: 0; pointer-events: none;
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr; gap: clamp(30px, 4vw, 48px);
  align-items: start;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: 44px; }
}
.hero-copy { max-width: 600px; }
.hero h1 { font-size: clamp(2.4rem, 6vw, 4rem); margin: .42em 0 .34em; }
.hero h1 .hl { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { font-size: clamp(1.04rem, 2vw, 1.22rem); color: var(--ink-soft); max-width: 50ch; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0 30px; }
.trust-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface); border: 1px solid var(--line);
  padding: 8px 14px; border-radius: 999px; font-size: .84rem; font-weight: 500; color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
}
.trust-chip svg { width: 16px; height: 16px; color: var(--accent); flex: 0 0 16px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-stats { display: flex; gap: clamp(20px, 4vw, 40px); margin-top: 38px; flex-wrap: wrap; }
.hero-stats .stat strong { display: block; font-family: 'DM Mono', monospace; font-size: clamp(1.6rem, 3vw, 2.1rem); color: var(--ink); font-weight: 500; letter-spacing: -.02em; line-height: 1.05; }
/* the animated counter sits INSIDE <strong>; make it match the big number, not the small label span */
.hero-stats .stat strong span { font: inherit; color: inherit; letter-spacing: inherit; }
.hero-stats .stat span { font-size: .82rem; color: var(--ink-mute); }

/* live result card (hero right) */
.live-card {
  position: relative; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: clamp(22px, 3vw, 30px);
  overflow: hidden;
}
.live-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--grad);
}
.live-card .lc-top { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 18px; }
.live-card .lc-top .lc-tag { font-family: 'DM Mono', monospace; font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--accent); display: inline-flex; align-items: center; gap: 7px; }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent-2); box-shadow: 0 0 0 0 rgba(255,122,89,.5); animation: pulse 2.4s var(--ease-2) infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(255,122,89,.5);} 70%{ box-shadow: 0 0 0 9px rgba(255,122,89,0);} 100%{ box-shadow:0 0 0 0 rgba(255,122,89,0);} }

.gear-train { display: flex; align-items: center; justify-content: center; gap: 0; height: 96px; margin: 4px 0 20px; }
.gear-train svg { overflow: visible; }
.gear { transform-origin: 50% 50%; }
.gear-train.is-running .g1 { animation: gearTurn 4s linear infinite; }
.gear-train.is-running .g2 { animation: gearTurnR 3s linear infinite; }
.gear-train.is-running .g3 { animation: gearTurn 5s linear infinite; }
@keyframes gearTurn { to { transform: rotate(360deg); } }
@keyframes gearTurnR { to { transform: rotate(-360deg); } }

.price-block { text-align: center; padding: 12px 0 6px; }
.price-block .pb-label { font-size: .82rem; color: var(--ink-mute); }
.price-ticker {
  font-family: 'DM Mono', monospace; font-weight: 500;
  font-size: clamp(2.4rem, 6vw, 3.4rem); color: var(--ink); letter-spacing: -.03em; line-height: 1;
  margin: 6px 0; display: inline-flex; align-items: baseline; gap: 6px;
}
.price-ticker .cur { font-size: .5em; color: var(--accent); }
.price-block .pb-from { font-family:'DM Mono',monospace; font-size: .76rem; color: var(--accent-2); letter-spacing: .04em; }

.lc-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 18px 0; }
.lc-meta .m { background: var(--surface-2); border-radius: var(--radius-sm); padding: 13px 15px; }
.lc-meta .m .m-l { font-size: .72rem; color: var(--ink-mute); text-transform: uppercase; letter-spacing: .08em; }
.lc-meta .m .m-v { font-family: 'DM Mono', monospace; font-weight: 500; font-size: 1.18rem; color: var(--ink); margin-top: 2px; }
.lc-meta .m .m-v.accent { color: var(--accent); }
.lc-summary { font-size: .86rem; color: var(--ink-soft); border-top: 1px dashed var(--line-strong); padding-top: 14px; }
.lc-summary b { color: var(--ink); font-weight: 600; }
.lc-disclaimer { font-size: .72rem; color: var(--ink-mute); margin-top: 12px; font-style: italic; }

/* ============================================================
   CONFIGURATOR
   ============================================================ */
.config-wrap { position: relative; }
.config-grid { display: grid; grid-template-columns: 1fr; gap: clamp(22px, 3vw, 36px); align-items: start; }
@media (min-width: 1024px) {
  .config-grid { grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); }
  .config-result-col { position: sticky; top: calc(var(--header-h) + 20px); }
}
.config-panel { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-md); padding: clamp(22px, 3vw, 34px); }
.cfg-step { margin-bottom: 30px; }
.cfg-step:last-child { margin-bottom: 0; }
.cfg-step > .cfg-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.cfg-step .cfg-num { width: 30px; height: 30px; flex: 0 0 30px; border-radius: 50%; background: var(--surface-2); color: var(--accent); font-family: 'DM Mono', monospace; font-weight: 500; font-size: .92rem; display: inline-flex; align-items: center; justify-content: center; }
.cfg-step .cfg-title { font-family: 'Sora', sans-serif; font-weight: 600; font-size: 1.06rem; }
.cfg-step .cfg-hint { font-size: .82rem; color: var(--ink-mute); margin-left: auto; }

.opt-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 10px; }
.opt {
  position: relative; display: flex; flex-direction: column; gap: 4px;
  border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  padding: 14px 15px 13px; cursor: pointer; background: var(--surface);
  transition: border-color .2s var(--ease-2), background .2s var(--ease-2), transform .2s var(--ease), box-shadow .2s var(--ease-2);
}
.opt:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.opt input { position: absolute; opacity: 0; pointer-events: none; }
.opt .opt-ic { width: 30px; height: 30px; color: var(--accent); margin-bottom: 4px; }
.opt .opt-ic svg { width: 100%; height: 100%; }
.opt .opt-name { font-weight: 600; font-size: .95rem; color: var(--ink); }
.opt .opt-desc { font-size: .76rem; color: var(--ink-mute); line-height: 1.4; }
.opt .opt-tick { position: absolute; top: 11px; right: 11px; width: 20px; height: 20px; border-radius: 50%; border: 1.5px solid var(--line-strong); display: grid; place-items: center; transition: all .2s var(--ease-2); }
.opt .opt-tick svg { width: 12px; height: 12px; color: #fff; opacity: 0; transform: scale(.5); transition: all .2s var(--ease); }
.opt input:checked ~ .opt-tick { background: var(--accent); border-color: var(--accent); }
.opt input:checked ~ .opt-tick svg { opacity: 1; transform: scale(1); }
.opt:has(input:checked) { border-color: var(--accent); background: linear-gradient(180deg, rgba(91,63,214,.05), rgba(255,122,89,.04)); box-shadow: 0 10px 26px -18px rgba(91,63,214,.5); }
.opt:focus-within { outline: 2px solid var(--accent); outline-offset: 2px; }

/* urgency slider */
.urg-slider { padding: 6px 2px 0; }
.urg-track-wrap { position: relative; padding: 14px 0 6px; }
input[type="range"].urg {
  -webkit-appearance: none; appearance: none; width: 100%; height: 8px; border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2)); outline: none; cursor: pointer;
}
input[type="range"].urg::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none; width: 26px; height: 26px; border-radius: 50%;
  background: #fff; border: 3px solid var(--accent); box-shadow: 0 4px 14px -4px rgba(91,63,214,.6);
  transition: transform .18s var(--ease);
}
input[type="range"].urg:active::-webkit-slider-thumb { transform: scale(1.18); }
input[type="range"].urg::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: #fff; border: 3px solid var(--accent); box-shadow: 0 4px 14px -4px rgba(91,63,214,.6); }
.urg-labels { display: flex; justify-content: space-between; margin-top: 12px; }
.urg-labels span { font-size: .8rem; color: var(--ink-mute); font-weight: 500; flex: 1; text-align: center; transition: color .2s; }
.urg-labels span:first-child { text-align: left; }
.urg-labels span:last-child { text-align: right; }
.urg-labels span.on { color: var(--accent); font-weight: 600; }
.urg-note { margin-top: 12px; font-size: .82rem; color: var(--ink-soft); background: var(--surface-2); border-radius: var(--radius-sm); padding: 10px 14px; }
.urg-note b { color: var(--accent-2-deep); }

/* ============================================================
   NASIL (3 steps mini-strip)
   ============================================================ */
.steps-strip { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 700px) { .steps-strip { grid-template-columns: repeat(3, 1fr); } }
.step-card { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; transition: transform .26s var(--ease), box-shadow .26s var(--ease-2); }
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step-card .sc-num { font-family: 'DM Mono', monospace; font-size: 2.2rem; color: var(--line-strong); font-weight: 500; line-height: 1; }
.step-card .sc-ic { width: 40px; height: 40px; color: var(--accent); margin: 12px 0 14px; }
.step-card h3 { font-size: 1.18rem; }
.step-card p { color: var(--ink-soft); font-size: .94rem; margin: 0; }
.step-card::after { content: ""; position: absolute; left: 26px; right: 26px; bottom: 0; height: 3px; background: var(--grad); border-radius: 3px; transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.step-card:hover::after { transform: scaleX(1); }

/* ============================================================
   KAPSAM (operation list / details)
   ============================================================ */
.kapsam-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 860px) { .kapsam-grid { grid-template-columns: 1fr 1fr; } }
.kap-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; transition: border-color .2s var(--ease-2); }
.kap-item[open] { border-color: var(--line-strong); }
.kap-item summary {
  list-style: none; cursor: pointer; padding: 18px 20px;
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px;
}
.kap-item summary::-webkit-details-marker { display: none; }
.kap-item summary .ks-ic { width: 30px; height: 30px; color: var(--accent); }
.kap-item summary .ks-t { font-family: 'Sora', sans-serif; font-weight: 600; font-size: 1.02rem; min-width: 0; }
.kap-item summary .ks-t small { display: block; font-family: 'DM Mono', monospace; font-size: .76rem; color: var(--accent-2-deep); font-weight: 400; letter-spacing: .02em; margin-top: 2px; }
.kap-item summary .ks-x { width: 24px; height: 24px; border-radius: 50%; background: var(--surface-2); display: grid; place-items: center; color: var(--accent); transition: transform .3s var(--ease), background .2s; flex: 0 0 24px; }
.kap-item summary .ks-x svg { width: 14px; height: 14px; }
.kap-item[open] summary .ks-x { transform: rotate(45deg); background: var(--accent); color: #fff; }
.kap-item .kap-body {
  height: 0; overflow: hidden; padding: 0 20px;
  transition: height .36s var(--ease-2), padding-block-end .36s var(--ease-2);
}
.kap-item[open] .kap-body { height: auto; padding-block-end: 20px; }
.kap-item .kap-body p { font-size: .9rem; color: var(--ink-soft); margin: 0 0 10px; }
.kap-item .kap-body ul { display: flex; flex-direction: column; gap: 6px; }
.kap-item .kap-body li { font-size: .86rem; color: var(--ink-soft); padding-left: 22px; position: relative; }
.kap-item .kap-body li::before { content: ""; position: absolute; left: 4px; top: 8px; width: 7px; height: 7px; border-radius: 50%; background: var(--grad); }

/* ============================================================
   OZET-KARTI (dynamic summary + appointment band)
   ============================================================ */
.ozet-band { background: var(--ink); color: #fff; border-radius: clamp(18px, 3vw, 28px); overflow: hidden; position: relative; }
.ozet-band::before { content: ""; position: absolute; top: -140px; right: -100px; width: 380px; height: 380px; background: radial-gradient(circle, rgba(91,63,214,.5), transparent 64%); }
.ozet-band::after { content: ""; position: absolute; bottom: -150px; left: -120px; width: 360px; height: 360px; background: radial-gradient(circle, rgba(255,122,89,.34), transparent 66%); }
.ozet-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; gap: clamp(28px, 4vw, 48px); padding: clamp(28px, 5vw, 56px); }
@media (min-width: 940px) { .ozet-inner { grid-template-columns: 1fr 1fr; align-items: center; } }
.ozet-band h2 { color: #fff; font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
.ozet-band .ozet-lead { color: rgba(255,255,255,.78); }
.ozet-summary-card { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); padding: 24px; backdrop-filter: blur(6px); }
.ozet-summary-card .osc-row { display: flex; justify-content: space-between; align-items: center; gap: 14px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.ozet-summary-card .osc-row:last-of-type { border-bottom: none; }
.ozet-summary-card .osc-l { color: rgba(255,255,255,.7); font-size: .9rem; }
.ozet-summary-card .osc-v { font-family: 'DM Mono', monospace; font-weight: 500; color: #fff; font-size: 1rem; text-align: right; }
.ozet-summary-card .osc-total { margin-top: 8px; padding-top: 16px; border-top: 2px solid rgba(255,255,255,.2); }
.ozet-summary-card .osc-total .osc-l { color: #fff; font-weight: 600; font-size: 1rem; }
.ozet-summary-card .osc-total .osc-v { font-size: 1.7rem; color: var(--accent-2); }
.ozet-summary-card .osc-cta { margin-top: 20px; }
.ozet-summary-card .btn { width: 100%; }
.ozet-summary-card .osc-fine { font-size: .72rem; color: rgba(255,255,255,.55); margin-top: 12px; text-align: center; font-style: italic; }

/* ============================================================
   FORM
   ============================================================ */
.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-md); padding: clamp(24px, 4vw, 40px); }
.form-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) { .form-grid { grid-template-columns: 1fr 1fr; } .field.full { grid-column: 1 / -1; } }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label, .field > span.lbl { font-size: .86rem; font-weight: 600; color: var(--ink); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: .96rem; color: var(--ink);
  background: var(--surface); border: 1.5px solid var(--line-strong); border-radius: var(--radius-sm);
  padding: 13px 15px; transition: border-color .2s var(--ease-2), box-shadow .2s var(--ease-2);
  width: 100%;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(91,63,214,.14); }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-mute); }
.field.kvkk { flex-direction: row; align-items: flex-start; gap: 10px; }
.field.kvkk label { font-weight: 400; font-size: .86rem; color: var(--ink-soft); line-height: 1.5; }
.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); flex: 0 0 18px;
}
.form-actions { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.form-actions .btn { width: 100%; }
@media (min-width: 640px) { .form-actions .btn { width: auto; } }
.form-note { font-size: .8rem; color: var(--ink-mute); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 860px; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; transition: border-color .2s; }
.faq-item[open] { border-color: var(--line-strong); box-shadow: var(--shadow-sm); }
.faq-item summary { list-style: none; cursor: pointer; padding: 20px 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-family: 'Sora', sans-serif; font-weight: 600; font-size: 1.02rem; color: var(--ink); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .fq-x { flex: 0 0 22px; width: 22px; height: 22px; position: relative; }
.faq-item summary .fq-x::before, .faq-item summary .fq-x::after { content: ""; position: absolute; background: var(--accent); border-radius: 2px; transition: transform .3s var(--ease); }
.faq-item summary .fq-x::before { top: 10px; left: 2px; right: 2px; height: 2px; }
.faq-item summary .fq-x::after { left: 10px; top: 2px; bottom: 2px; width: 2px; }
.faq-item[open] summary .fq-x::after { transform: scaleY(0); }
.faq-item .faq-body { height: 0; overflow: hidden; padding: 0 22px; transition: height .36s var(--ease-2), padding-block-end .36s var(--ease-2); }
.faq-item[open] .faq-body { height: auto; padding-block-end: 22px; }
.faq-item .faq-body p { margin: 0; color: var(--ink-soft); font-size: .94rem; }
@media (prefers-reduced-motion: reduce) { .kap-item .kap-body, .faq-item .faq-body { transition: none; } }

/* ============================================================
   CONTACT page
   ============================================================ */
.contact-hero { padding: clamp(40px, 6vw, 70px) 0 clamp(20px, 3vw, 36px); }
.channel-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(258px, 1fr)); gap: 16px; }
.channel { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 22px; transition: transform .24s var(--ease), box-shadow .24s var(--ease-2), border-color .2s; display: block; }
.channel:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--line-strong); color: var(--ink); }
.channel .ch-ic { width: 48px; height: 48px; border-radius: 12px; background: linear-gradient(150deg, rgba(91,63,214,.14), rgba(255,122,89,.12)); color: var(--accent); display: grid; place-items: center; margin-bottom: 16px; transition: transform .24s var(--ease); }
.channel:hover .ch-ic { transform: scale(1.08); }
.channel .ch-ic svg { width: 24px; height: 24px; }
.channel .ch-name { font-family: 'Sora', sans-serif; font-weight: 600; font-size: .9rem; color: var(--ink-mute); text-transform: uppercase; letter-spacing: .06em; }
.channel .ch-val { font-family: 'DM Mono', monospace; font-size: 1.04rem; color: var(--ink); margin: 4px 0 4px; word-break: break-word; }
.channel .ch-sub { font-size: .82rem; color: var(--ink-soft); }

.hours-grid { display: grid; grid-template-columns: 1fr; gap: 8px; max-width: 460px; }
.hour-row { display: flex; justify-content: space-between; align-items: center; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 12px 16px; }
.hour-row.is-today { border-color: var(--accent); background: linear-gradient(180deg, rgba(91,63,214,.05), rgba(255,122,89,.03)); }
.hour-row .hr-day { font-weight: 600; font-size: .92rem; }
.hour-row.is-today .hr-day::after { content: " · bugün"; color: var(--accent); font-size: .78rem; font-weight: 500; }
.hour-row .hr-time { font-family: 'DM Mono', monospace; font-size: .92rem; color: var(--ink-soft); font-variant-numeric: tabular-nums; }

/* ============================================================
   TEAM (hakkimizda)
   ============================================================ */
.team-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 760px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
.team-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .26s var(--ease), box-shadow .26s var(--ease-2); }
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.team-card .tc-photo { aspect-ratio: 4/3; background: linear-gradient(150deg, var(--surface-2), #fff); display: grid; place-items: center; color: var(--accent); border-bottom: 1px solid var(--line); }
.team-card .tc-photo svg { width: 64px; height: 64px; opacity: .5; }
.team-card .tc-body { padding: 22px; }
.team-card .tc-name { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1.14rem; }
.team-card .tc-role { font-family: 'DM Mono', monospace; font-size: .78rem; color: var(--accent); letter-spacing: .04em; margin-bottom: 10px; }
.team-card .tc-bio { font-size: .9rem; color: var(--ink-soft); margin: 0; }

/* pricing packages */
.price-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 820px) { .price-grid { grid-template-columns: repeat(3, 1fr); } }
.price-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; display: flex; flex-direction: column; transition: transform .26s var(--ease), box-shadow .26s var(--ease-2); }
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.price-card.featured { border-color: var(--accent); box-shadow: var(--shadow-lg); position: relative; }
.price-card.featured::before { content: "En çok tercih edilen"; position: absolute; top: -12px; left: 24px; background: var(--grad); color: #fff; font-size: .72rem; font-weight: 600; padding: 5px 12px; border-radius: 999px; }
.price-card .pc-name { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1.24rem; }
.price-card .pc-price { font-family: 'DM Mono', monospace; font-size: 2rem; font-weight: 500; color: var(--ink); margin: 8px 0 2px; letter-spacing: -.02em; }
.price-card .pc-price small { font-size: .9rem; color: var(--ink-mute); font-weight: 400; }
.price-card .pc-term { font-size: .82rem; color: var(--accent-2-deep); font-family: 'DM Mono', monospace; }
.price-card .pc-list { margin: 18px 0; display: flex; flex-direction: column; gap: 9px; }
.price-card .pc-list li { font-size: .9rem; color: var(--ink-soft); padding-left: 26px; position: relative; }
.price-card .pc-list li.inc::before { content: ""; position: absolute; left: 2px; top: 6px; width: 14px; height: 9px; border-left: 2px solid var(--accent); border-bottom: 2px solid var(--accent); transform: rotate(-45deg); }
.price-card .pc-list li.exc { color: var(--ink-mute); }
.price-card .pc-list li.exc::before { content: "—"; position: absolute; left: 4px; top: 0; color: var(--ink-mute); }
.price-card .btn { margin-top: auto; }
.price-fine { font-size: .8rem; color: var(--ink-mute); margin-top: 18px; font-style: italic; }

/* generic content (legal pages) */
.doc { max-width: 760px; }
.doc h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); margin-top: 1.6em; }
.doc h3 { font-size: 1.16rem; margin-top: 1.4em; }
.doc p, .doc li { color: var(--ink-soft); line-height: 1.7; }
.doc p { margin-bottom: 1.1em; }
.doc .table-scroll { max-width: 100%; }
.doc ul.bullet { list-style: disc; padding-left: 22px; margin: 0 0 1em; }
.doc ul.bullet li { margin-bottom: .4em; }
.doc .doc-meta { font-family: 'DM Mono', monospace; font-size: .82rem; color: var(--ink-mute); }

/* 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: var(--radius-sm); }
.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 th, table td { text-align: left; padding: 12px 16px; border-bottom: 1px solid var(--line); font-size: .9rem; }
table th { background: var(--surface-2); font-family: 'Sora', sans-serif; font-weight: 600; color: var(--ink); }
table td { color: var(--ink-soft); }

/* notes block */
.notes-list { display: grid; grid-template-columns: 1fr; gap: 12px; max-width: 720px; }
.note-row { display: grid; grid-template-columns: auto 1fr; gap: 16px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 16px 18px; }
.note-row .nr-date { font-family: 'DM Mono', monospace; font-size: .76rem; color: var(--accent); white-space: nowrap; }
.note-row .nr-text { font-size: .92rem; color: var(--ink-soft); }
.note-row .nr-text b { color: var(--ink); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink); color: rgba(255,255,255,.74); padding: clamp(48px, 7vw, 80px) 0 30px; margin-top: 20px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 34px; }
@media (min-width: 700px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; } }
.site-footer .f-brand { display: inline-flex; align-items: center; gap: 11px; color: #fff; font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1.1rem; margin-bottom: 14px; }
.site-footer .f-brand .brand-mark { width: 36px; height: 36px; }
.site-footer p { font-size: .9rem; color: rgba(255,255,255,.62); max-width: 34ch; }
.site-footer h4 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 16px; font-family: 'DM Mono', monospace; font-weight: 500; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer a { color: rgba(255,255,255,.7); font-size: .9rem; }
.site-footer a:hover { color: #fff; }
.f-contact div { font-size: .88rem; margin-bottom: 10px; color: rgba(255,255,255,.7); }
.f-contact div b { display: block; color: #fff; font-size: .74rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 2px; font-weight: 500; }
.footer-bottom { margin-top: 44px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; }
.footer-bottom .fb-legal { font-size: .8rem; color: rgba(255,255,255,.5); }
.footer-bottom .fb-links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-bottom .fb-links a { font-size: .8rem; }
.f-meta { font-family: 'DM Mono', monospace; font-size: .74rem; color: rgba(255,255,255,.42); margin-top: 8px; }

/* ============================================================
   COOKIE
   ============================================================ */
.cookie-banner {
  position: fixed; bottom: 16px; left: 16px; right: 16px; max-width: 520px; margin: 0 auto;
  background: var(--surface); border: 1px solid var(--line-strong); border-radius: var(--radius);
  box-shadow: 0 30px 70px -30px rgba(26,23,48,.5);
  padding: 22px 24px; z-index: 9999;
  transform: translateY(140%); opacity: 0;
  transition: transform .28s cubic-bezier(.2,.7,.2,1), opacity .24s;
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
@media (min-width: 720px) { .cookie-banner { left: 24px; right: auto; max-width: 420px; } }
.cookie-banner h3 { font-size: 1.06rem; margin-bottom: 6px; }
.cookie-banner p { font-size: .86rem; color: var(--ink-soft); margin-bottom: 16px; }
.cookie-banner p a { font-weight: 600; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie-actions button { flex: 1 1 auto; min-height: 44px; padding: 11px 16px; border-radius: 999px; font-weight: 600; font-size: .88rem; border: 1.5px solid var(--line-strong); transition: all .2s var(--ease-2); }
.cookie-actions .ck-accept { background: var(--ink); color: #fff; border-color: var(--ink); }
.cookie-actions .ck-accept:hover, .cookie-actions .ck-accept:focus-visible { background: var(--accent); border-color: var(--accent); color: #fff; }
/* reject must read as equally prominent as accept (consent fairness) */
.cookie-actions .ck-reject { background: var(--surface); color: var(--ink); border-color: var(--ink); }
.cookie-actions .ck-reject:hover, .cookie-actions .ck-reject:focus-visible { background: var(--ink); color: #fff; border-color: var(--ink); }
.cookie-actions .ck-settings { background: transparent; color: var(--ink-soft); border-color: transparent; flex: 0 1 auto; }
.cookie-actions .ck-settings:hover { color: var(--accent); }

/* ============================================================
   REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s var(--ease), transform .6s var(--ease); transition-delay: calc(var(--i, 0) * 70ms); }
.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; }
  .brand-mark .gear-spin, .gear-train .gear, .live-dot { animation: none !important; }
}

/* decorative gear rail */
.gear-rule { display: flex; align-items: center; gap: 14px; margin: 8px 0 0; color: var(--line-strong); }
.gear-rule .line { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--line-strong), transparent); }
.gear-rule svg { width: 24px; height: 24px; color: var(--accent); animation: gearTurn 18s linear infinite; }

/* utility */
.lead { font-size: 1.1rem; color: var(--ink-soft); }
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.text-accent { color: var(--accent); }
.bg-soft { background: var(--surface-2); }

@media (max-width: 640px) {
  .lc-meta { grid-template-columns: 1fr; }
  .opt-grid { grid-template-columns: 1fr 1fr; }
  /* hero stats: 3 even columns that never wrap awkwardly, fonts/labels scale */
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(8px, 3vw, 20px);
    margin-top: 28px;
  }
  .hero-stats .stat { min-width: 0; }
  .hero-stats .stat strong { font-size: clamp(1.3rem, 6.4vw, 1.8rem); white-space: nowrap; }
  .hero-stats .stat strong span { display: inline; }
  .hero-stats .stat > span { display: block; font-size: clamp(.68rem, 2.7vw, .8rem); line-height: 1.3; }
  .step-card, .price-card, .channel { padding: 20px; }
}
@media (max-width: 400px) {
  .opt-grid { grid-template-columns: 1fr; }
}

/* CTA card (replaces inline form on index ozet band) */
.cta-card { display: flex; flex-direction: column; }
.cta-card .cta-points { display: flex; flex-direction: column; gap: 10px; margin: 18px 0 22px; }
.cta-card .cta-points li { position: relative; padding-left: 28px; font-size: .92rem; color: var(--ink-soft); line-height: 1.5; }
.cta-card .cta-points li::before {
  content: ""; position: absolute; left: 2px; top: 4px; width: 15px; height: 9px;
  border-left: 2px solid var(--accent); border-bottom: 2px solid var(--accent); transform: rotate(-45deg);
}
.cta-card .cta-alt { font-size: .84rem; color: var(--ink-mute); margin: 14px 0 0; text-align: center; }
.cta-card .cta-alt a { font-weight: 600; word-break: break-word; }

/* optional-field tag in forms */
.field .opt-tag { font-weight: 400; color: var(--ink-mute); font-size: .8em; }

/* long contact strings never overflow */
.f-contact a, .site-footer a { 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}
