/* =========================================================
   Derinmavi Freediving — styles.css
   Palette: bg #FFFFFF / surface #F5F7FB / ink #171A21
            accent #3B2FD0 / accent-2 #19C3D6
   Type: Manrope (heading/body), Roboto Mono (sayaç/fiyat)
   ========================================================= */

:root {
  --bg: #FFFFFF;
  --surface: #F5F7FB;
  --surface-2: #ECF0F8;
  --ink: #171A21;
  --ink-soft: #475065;
  --ink-faint: #6B7488;
  --accent: #3B2FD0;
  --accent-2: #19C3D6;
  --accent-deep: #1A1564;
  --line: rgba(23, 26, 33, 0.12);
  --line-strong: rgba(23, 26, 33, 0.22);
  --header-h: 74px;
  --maxw: 1240px;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-sm: 0 6px 18px -12px rgba(23, 26, 33, 0.30);
  --shadow-md: 0 18px 44px -26px rgba(26, 21, 100, 0.42);
  --ease: cubic-bezier(.2, .7, .2, 1);
  --ease-2: 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 {
  font-family: 'Manrope', system-ui, -apple-system, Segoe UI, sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.62;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 .5em;
  letter-spacing: -0.012em;
  color: var(--ink);
}

p { margin: 0 0 1em; }

a { color: var(--accent); text-decoration: none; transition: color .2s var(--ease-2); }
a:hover { color: var(--accent-2); }

img { max-width: 100%; height: auto; display: block; }

.mono { font-family: 'Roboto Mono', ui-monospace, Menlo, Consolas, monospace; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-left: clamp(16px, 4vw, 56px);
  padding-right: clamp(16px, 4vw, 56px);
}

section { scroll-margin-top: calc(var(--header-h) + 18px); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 2px;
}

.section-head { max-width: 640px; margin-bottom: 34px; }
.section-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); margin-top: .35em; }
.section-head p { color: var(--ink-soft); font-size: 1.04rem; }

.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--ink); color: #fff;
  padding: 10px 16px; border-radius: 8px; z-index: 2000;
  transition: top .2s var(--ease-2);
}
.skip-link:focus { top: 12px; color: #fff; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  font-family: inherit; font-weight: 700; font-size: .98rem;
  padding: 14px 26px; border-radius: 999px;
  border: 1.5px solid transparent; cursor: pointer;
  transition: background .24s var(--ease-2), color .24s var(--ease-2),
              transform .24s var(--ease), box-shadow .24s var(--ease-2);
  text-align: center; line-height: 1;
}
.btn-primary {
  background: var(--accent); color: #fff;
  box-shadow: 0 14px 30px -16px rgba(59, 47, 208, .8);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent-deep); color: #fff;
  transform: translateY(-2px);
}
.btn-primary .arrow { transition: transform .24s var(--ease); }
.btn-primary:hover .arrow { transform: translateX(4px); }
.btn-ghost {
  background: transparent; color: var(--ink); border-color: var(--line-strong);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface); color: var(--ink); transform: translateY(-2px);
}
.btn-light {
  background: rgba(255,255,255,.14); color: #fff;
  border-color: rgba(255,255,255,.34);
}
.btn-light:hover, .btn-light:focus-visible { background: #fff; color: var(--accent-deep); }

/* ---------------- Header ---------------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1080;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(160%) 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(255, 255, 255, 0.98);
  box-shadow: 0 8px 24px -16px rgba(0, 0, 0, .18);
  border-bottom-color: var(--line);
  height: 64px;
}
.header-inner {
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex; align-items: center; gap: 11px;
  font-weight: 700; font-size: 1.12rem; letter-spacing: -0.02em;
  color: var(--ink);
}
.brand:hover { color: var(--ink); }
.brand .mark {
  width: 34px; height: 34px; flex: none;
  display: grid; place-items: center;
  border-radius: 10px;
  background: linear-gradient(150deg, var(--accent), var(--accent-2));
  color: #fff;
}
.brand .mark svg { width: 20px; height: 20px; }
.brand small {
  display: block; font-size: .62rem; font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; color: var(--ink-faint);
}

.nav-desktop { display: none; align-items: center; gap: 28px; }
.nav-desktop a {
  position: relative;
  font-weight: 600; font-size: .94rem; color: var(--ink-soft);
  padding: 6px 0;
}
.nav-desktop a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width .26s 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 { width: 100%; }
.nav-desktop a.is-active:not(.nav-cta) { color: var(--ink); }

.nav-cta {
  padding: 10px 20px; border-radius: 999px;
  background: var(--ink); color: #fff !important;
  font-size: .9rem;
  transition: background .22s var(--ease-2), transform .22s var(--ease);
}
.nav-desktop .nav-cta::after { display: none; }
.nav-cta:hover { background: var(--accent); color: #fff !important; transform: translateY(-1px); }

.nav-toggle {
  position: relative; z-index: 1100;
  width: 46px; height: 46px; flex: none;
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 5px; padding: 0;
  background: transparent; border: 1px solid var(--line); border-radius: 12px;
  cursor: pointer;
}
.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; z-index: 1040;
  background: rgba(0, 0, 0, .55);
  opacity: 0; visibility: hidden;
  transition: opacity .24s var(--ease-2), visibility .24s var(--ease-2);
}
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }

.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 1050;
  width: min(360px, 92vw);
  background: var(--bg);
  border-left: 1px solid var(--line);
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.2, .7, .2, 1);
  display: flex; flex-direction: column;
  padding: calc(var(--header-h) + 14px) 26px 28px;
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer a {
  display: block; padding: 15px 4px;
  font-size: 1.12rem; font-weight: 600; color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.drawer a.is-active { color: var(--accent); }
.drawer .drawer-cta {
  margin-top: 22px; border-bottom: none;
}
.drawer .btn { width: 100%; }
.drawer-meta {
  margin-top: auto; padding-top: 22px;
  font-size: .86rem; color: var(--ink-faint); line-height: 1.7;
}
.drawer-meta a { display: inline; padding: 0; border: 0; color: var(--accent); }

@media (min-width: 1024px) {
  .drawer, .drawer-backdrop { display: none; }
}

main { padding-top: var(--header-h); }

/* =========================================================
   Hero — centered tool panel + depth theme
   ========================================================= */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 520px at 50% -10%, rgba(25, 195, 214, .14), transparent 60%),
    linear-gradient(180deg, #fff 0%, var(--surface) 100%);
  padding: clamp(34px, 6vw, 64px) 0 clamp(40px, 6vw, 70px);
  overflow: hidden;
}
/* caustic light + god-rays decor */
.hero::before {
  content: ""; position: absolute; inset: -20% -10% auto -10%; height: 80%;
  background:
    repeating-linear-gradient(64deg, rgba(25,195,214,.10) 0 2px, transparent 2px 26px),
    repeating-linear-gradient(-58deg, rgba(59,47,208,.07) 0 2px, transparent 2px 34px);
  mix-blend-mode: soft-light;
  pointer-events: none;
  animation: causticDrift 16s ease-in-out infinite;
}
@keyframes causticDrift {
  0%, 100% { transform: translate3d(0,0,0) scale(1); opacity: .8; }
  50% { transform: translate3d(2%, 1.4%, 0) scale(1.06); opacity: 1; }
}

.hero-head { text-align: center; max-width: 720px; margin: 0 auto 30px; }
.hero-head .eyebrow { margin-bottom: 16px; }
.hero-head h1 {
  font-size: clamp(2.1rem, 6vw, 3.7rem);
  letter-spacing: -0.018em;
}
.hero-head .hero-sub {
  font-size: clamp(1.02rem, 2vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 560px; margin: 14px auto 0;
}
.trust-strip {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  margin-top: 22px;
}
.trust-strip span {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .82rem; font-weight: 600; color: var(--ink-soft);
  background: rgba(255,255,255,.7);
  border: 1px solid var(--line); border-radius: 999px;
  padding: 7px 14px;
}
.trust-strip svg { width: 15px; height: 15px; color: var(--accent-2); }

/* bubbles */
.bubbles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0; }
.bubbles span {
  position: absolute; bottom: -40px;
  width: var(--s, 10px); height: var(--s, 10px);
  border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, rgba(255,255,255,.9), rgba(25,195,214,.32));
  border: 1px solid rgba(25,195,214,.28);
  opacity: 0;
  animation: rise var(--d, 10s) linear var(--delay, 0s) infinite;
}
@keyframes rise {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  8% { opacity: .7; }
  60% { opacity: .55; }
  100% { transform: translateY(-104vh) translateX(var(--wob, 16px)); opacity: 0; }
}

/* =========================================================
   Planner widget — 2 column (form + summary)
   ========================================================= */
.planner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-md);
  padding: clamp(18px, 3vw, 30px);
}
@media (min-width: 940px) {
  .planner { grid-template-columns: minmax(0, 1.55fr) minmax(300px, 1fr); gap: 30px; }
}

.planner-form { min-width: 0; }

.steps-bar {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px;
}
.step-chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8rem; font-weight: 700; color: var(--ink-faint);
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 999px; padding: 7px 13px;
  transition: background .24s var(--ease-2), color .24s var(--ease-2), border-color .24s var(--ease-2);
}
.step-chip b {
  width: 20px; height: 20px; border-radius: 50%;
  display: grid; place-items: center; font-size: .74rem;
  background: var(--line); color: var(--ink); font-weight: 800;
  transition: background .24s var(--ease-2), color .24s var(--ease-2);
}
.step-chip.is-done { color: var(--ink); border-color: rgba(59,47,208,.4); background: rgba(59,47,208,.06); }
.step-chip.is-done b { background: var(--accent); color: #fff; }

.fieldset { border: 0; padding: 0; margin: 0 0 26px; }
.fieldset > legend {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 1.04rem; margin-bottom: 13px; padding: 0;
}
.fieldset > legend .num {
  width: 24px; height: 24px; flex: none;
  display: grid; place-items: center; border-radius: 7px;
  background: var(--ink); color: #fff; font-size: .78rem; font-weight: 800;
}
.fieldset > legend small { font-weight: 500; color: var(--ink-faint); font-size: .82rem; }

.opt-grid {
  display: grid; gap: 10px;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 540px) { .opt-grid { grid-template-columns: repeat(2, 1fr); } }
.opt-grid.cols-3 { grid-template-columns: 1fr; }
@media (min-width: 460px) { .opt-grid.cols-3 { grid-template-columns: repeat(3, 1fr); } }

.opt {
  position: relative;
  display: flex; flex-direction: column; gap: 3px;
  padding: 14px 14px;
  background: var(--surface); border: 1.5px solid var(--line);
  border-radius: var(--radius-sm); cursor: pointer;
  transition: border-color .2s var(--ease-2), background .2s var(--ease-2), transform .2s var(--ease);
  min-width: 0;
}
.opt input { position: absolute; opacity: 0; pointer-events: none; }
.opt .opt-title { font-weight: 700; font-size: .96rem; }
.opt .opt-meta { font-size: .8rem; color: var(--ink-faint); }
.opt .opt-price { font-size: .82rem; font-weight: 700; color: var(--accent); }
.opt:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.opt:has(input:checked) {
  border-color: var(--accent);
  background: rgba(59, 47, 208, .07);
  box-shadow: inset 0 0 0 1px var(--accent);
  animation: chipPulse .5s var(--ease);
}
@keyframes chipPulse {
  0% { box-shadow: inset 0 0 0 1px var(--accent), 0 0 0 0 rgba(59,47,208,.42); }
  100% { box-shadow: inset 0 0 0 1px var(--accent), 0 0 0 12px rgba(59,47,208,0); }
}
.opt:has(input:focus-visible) { outline: 2px solid var(--accent); outline-offset: 2px; }

.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 4px; }
.field > span { font-weight: 600; font-size: .9rem; color: var(--ink-soft); }
.field input[type="date"],
.field input[type="number"],
.field select {
  font-family: inherit; font-size: 1rem; color: var(--ink);
  padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: var(--bg); width: 100%;
  transition: border-color .2s var(--ease-2);
}
.field input:focus, .field select:focus { border-color: var(--accent); outline: none; }

.range-row { display: flex; align-items: center; gap: 14px; }
.range-row input[type="range"] { flex: 1; accent-color: var(--accent); height: 6px; }
.range-val {
  font-family: 'Roboto Mono', monospace; font-weight: 700; font-size: 1.05rem;
  min-width: 78px; text-align: right; color: var(--accent-deep);
}

/* ---- Summary card (sticky) ---- */
.summary {
  align-self: start;
}
@media (min-width: 940px) {
  .summary { position: sticky; top: calc(var(--header-h) + 16px); }
}
.summary-card {
  position: relative; overflow: hidden;
  background: linear-gradient(165deg, var(--accent-deep), #120e4a 70%);
  color: #fff; border-radius: 18px;
  padding: 24px 22px;
  display: grid; grid-template-columns: 1fr auto; gap: 18px;
}
.summary-card .god-rays {
  position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background: repeating-linear-gradient(74deg, rgba(255,255,255,.06) 0 3px, transparent 3px 40px);
  animation: rayShift 14s linear infinite;
}
@keyframes rayShift { to { background-position: 200px 0; } }
.summary-main { position: relative; z-index: 1; min-width: 0; }
.summary-card .lbl {
  font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent-2);
}
.summary-card .price {
  font-family: 'Roboto Mono', monospace;
  font-size: clamp(2.1rem, 7vw, 2.8rem); font-weight: 700; line-height: 1.05;
  margin: 6px 0 2px; letter-spacing: -0.02em;
}
.summary-card .price small { font-size: 1.1rem; opacity: .85; }
.summary-card .price-note { font-size: .78rem; color: rgba(255,255,255,.66); }
.summary-list {
  position: relative; z-index: 1;
  margin: 18px 0 0; padding: 16px 0 0; list-style: none;
  border-top: 1px solid rgba(255,255,255,.16);
  grid-column: 1 / -1;
  display: grid; gap: 9px;
}
.summary-list li {
  display: flex; justify-content: space-between; gap: 12px;
  font-size: .9rem;
}
.summary-list li span:first-child { color: rgba(255,255,255,.72); }
.summary-list li b { font-weight: 700; text-align: right; }
.summary-cta { grid-column: 1 / -1; position: relative; z-index: 1; margin-top: 6px; }
.summary-cta .btn { width: 100%; }
.summary-cta .btn-light { background: #fff; color: var(--accent-deep); border-color: #fff; }
.summary-cta .btn-light:hover { background: var(--accent-2); color: #06222b; }

/* depth meter (vertical) */
.depth-meter {
  position: relative; z-index: 1;
  width: 56px; flex: none;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.18);
  overflow: hidden;
  min-height: 168px;
}
.depth-meter .fill {
  position: absolute; left: 0; right: 0; bottom: 0;
  height: var(--fill, 18%);
  background: linear-gradient(180deg, var(--accent-2), var(--accent) 55%, var(--accent-deep));
  transition: height .7s var(--ease), filter .7s var(--ease-2);
  border-radius: 0 0 11px 11px;
}
.depth-meter .fill::before {
  content: ""; position: absolute; top: -6px; left: 0; right: 0; height: 10px;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,.5) 0 4px, transparent 4px 9px);
  opacity: .7;
}
.depth-meter .ticks {
  position: absolute; inset: 0; pointer-events: none;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 6px 0;
}
.depth-meter .ticks i {
  height: 1px; background: rgba(255,255,255,.22); margin: 0 6px;
}
.depth-meter .dval {
  position: absolute; left: 0; right: 0; top: 8px; z-index: 2;
  text-align: center;
  font-family: 'Roboto Mono', monospace; font-weight: 700; font-size: .82rem;
  color: #fff; text-shadow: 0 1px 3px rgba(0,0,0,.4);
}

/* =========================================================
   Generic section
   ========================================================= */
.sec { padding: clamp(48px, 8vw, 92px) 0; }
.sec.surface { background: var(--surface); }
.sec.band {
  background: linear-gradient(150deg, var(--accent-deep), #110d44);
  color: #fff;
}
.sec.band h2, .sec.band h3 { color: #fff; }
.sec.band .eyebrow { color: var(--accent-2); }
.sec.band .section-head p { color: rgba(255,255,255,.74); }

/* feature/why row */
.feature-grid {
  display: grid; gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 620px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .feature-grid { grid-template-columns: repeat(3, 1fr); } }
.feature {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 22px;
  transition: transform .26s var(--ease), box-shadow .26s var(--ease-2), border-color .26s var(--ease-2);
  min-width: 0;
}
.feature:hover { transform: translateY(-6px); box-shadow: 0 22px 44px -28px rgba(59,47,208,.5); border-color: rgba(59,47,208,.3); }
.feature .ic {
  width: 50px; height: 50px; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 16px;
  background: linear-gradient(150deg, rgba(59,47,208,.12), rgba(25,195,214,.16));
  color: var(--accent);
}
.feature .ic svg { width: 26px; height: 26px; }
.feature h3 { font-size: 1.16rem; margin-bottom: .35em; }
.feature p { color: var(--ink-soft); font-size: .96rem; margin: 0; }

/* =========================================================
   Lokasyon mini cards
   ========================================================= */
.loc-grid {
  display: grid; gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .loc-grid { grid-template-columns: repeat(3, 1fr); } }
.loc-card {
  position: relative; overflow: hidden;
  border-radius: 18px; border: 1px solid var(--line);
  background: var(--bg);
  display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease-2);
  min-width: 0;
}
.loc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.loc-card .ph {
  position: relative; aspect-ratio: 4 / 3; overflow: hidden;
  background: linear-gradient(160deg, #0c2f4d, #134e64);
}
.loc-card .ph img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
}
.loc-card:hover .ph img { transform: scale(1.06); }
.loc-card .ph .tag {
  position: absolute; left: 12px; top: 12px;
  font-size: .72rem; font-weight: 700; letter-spacing: .05em;
  background: rgba(255,255,255,.92); color: var(--accent-deep);
  border-radius: 999px; padding: 5px 11px;
}
.loc-card .body { padding: 20px 20px 22px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.loc-card .body h3 { font-size: 1.24rem; margin: 0; }
.loc-card .body .depth { font-family:'Roboto Mono', monospace; font-size:.84rem; color: var(--accent); font-weight: 700; }
.loc-card .body p { color: var(--ink-soft); font-size: .94rem; margin: 4px 0 0; }
.loc-card .body ul { margin: 12px 0 0; padding: 0; list-style: none; display: grid; gap: 6px; }
.loc-card .body li { display: flex; gap: 8px; align-items: flex-start; font-size: .88rem; color: var(--ink-soft); }
.loc-card .body li svg { width: 16px; height: 16px; color: var(--accent-2); flex: none; margin-top: 3px; }

/* =========================================================
   Nasıl — 3 step vertical timeline
   ========================================================= */
.steps {
  display: grid; gap: 0;
  max-width: 760px;
}
.step {
  position: relative;
  display: grid; grid-template-columns: 56px 1fr; gap: 20px;
  padding-bottom: 34px;
}
.step:last-child { padding-bottom: 0; }
.step::before {
  content: ""; position: absolute; left: 27px; top: 56px; bottom: 0; width: 2px;
  background: linear-gradient(180deg, var(--accent), rgba(25,195,214,.4));
}
.step:last-child::before { display: none; }
.step .dot {
  width: 56px; height: 56px; border-radius: 16px; flex: none;
  display: grid; place-items: center;
  background: linear-gradient(150deg, var(--accent), var(--accent-2));
  color: #fff; font-family:'Roboto Mono', monospace; font-weight: 700; font-size: 1.3rem;
  box-shadow: 0 12px 26px -14px rgba(59,47,208,.7);
}
.step .stxt { padding-top: 4px; min-width: 0; }
.step .stxt .when { font-size: .76rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); }
.step .stxt h3 { font-size: 1.22rem; margin: 6px 0 .4em; }
.step .stxt p { color: var(--ink-soft); margin: 0; font-size: .96rem; }

/* =========================================================
   Pricing packages
   ========================================================= */
.pkg-grid {
  display: grid; gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) { .pkg-grid { grid-template-columns: repeat(3, 1fr); } }
.pkg {
  position: relative; display: flex; flex-direction: column;
  background: var(--bg); border: 1.5px solid var(--line); border-radius: 18px;
  padding: 26px 24px;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease-2), border-color .28s var(--ease-2);
  min-width: 0;
}
.pkg:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.pkg.featured { border-color: var(--accent); box-shadow: 0 26px 54px -30px rgba(59,47,208,.6); }
.pkg.featured::before {
  content: "En çok tercih edilen"; position: absolute; top: -12px; left: 24px;
  font-size: .72rem; font-weight: 700; color: #fff;
  background: var(--accent); border-radius: 999px; padding: 5px 13px;
}
.pkg h3 { font-size: 1.3rem; margin-bottom: 4px; }
.pkg .lead { color: var(--ink-faint); font-size: .9rem; margin-bottom: 16px; }
.pkg .amount { font-family:'Roboto Mono', monospace; font-size: 2rem; font-weight: 700; color: var(--accent-deep); }
.pkg .amount small { font-size: .9rem; color: var(--ink-faint); font-weight: 600; }
.pkg .ex { font-size: .76rem; color: var(--ink-faint); margin: 4px 0 18px; }
.pkg ul { margin: 0 0 10px; padding: 16px 0 0; list-style: none; border-top: 1px solid var(--line); display: grid; gap: 9px; }
.pkg ul li { display: flex; gap: 9px; font-size: .9rem; color: var(--ink-soft); align-items: flex-start; }
.pkg ul li svg { width: 17px; height: 17px; flex: none; margin-top: 3px; }
.pkg ul li.inc svg { color: var(--accent-2); }
.pkg ul li.exc { color: var(--ink-faint); }
.pkg ul li.exc svg { color: var(--line-strong); }
.pkg .delivery { font-size: .82rem; color: var(--ink-soft); margin: 6px 0 18px; }
.pkg .btn { margin-top: auto; width: 100%; }

/* =========================================================
   Testimonials editorial grid
   ========================================================= */
.tst-grid {
  display: grid; gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .tst-grid { grid-template-columns: repeat(2, 1fr); } }
.tst {
  background: var(--bg); border: 1px solid var(--line); border-radius: 16px;
  padding: 24px 22px; min-width: 0;
  transition: transform .26s var(--ease), box-shadow .26s var(--ease-2), border-color .26s var(--ease-2);
}
.tst:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(59,47,208,.28); }
.tst:nth-child(3) { grid-column: 1 / -1; }
@media (min-width: 720px) { .tst:nth-child(3) { grid-column: auto; } }
.tst .quote { font-size: 1rem; color: var(--ink); margin: 0 0 14px; }
.tst .who { display: flex; align-items: center; gap: 12px; }
.tst .who .av {
  width: 42px; height: 42px; border-radius: 50%; flex: none;
  display: grid; place-items: center; font-weight: 800; color: #fff;
  background: linear-gradient(150deg, var(--accent), var(--accent-2));
}
.tst .who .meta b { display: block; font-size: .94rem; }
.tst .who .meta span { font-size: .8rem; color: var(--ink-faint); }
.tst .stars { color: var(--accent-2); font-size: .9rem; letter-spacing: 2px; margin-bottom: 8px; }

/* =========================================================
   FAQ (pure CSS accordion)
   ========================================================= */
.faq { max-width: 820px; }
.faq-item {
  border: 1px solid var(--line); border-radius: 12px;
  margin-bottom: 12px; background: var(--bg); overflow: hidden;
}
.faq-item > summary {
  cursor: pointer; list-style: none;
  padding: 18px clamp(16px, 3vw, 24px);
  font-weight: 700; font-size: 1.02rem;
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary { transition: color .2s var(--ease-2), background .2s var(--ease-2); }
.faq-item > summary:hover { color: var(--accent); background: rgba(59,47,208,.035); }
.faq-item[open] > summary { color: var(--accent-deep); }
.faq-item > summary .chev {
  width: 22px; height: 22px; flex: none; color: var(--accent);
  transition: transform .34s var(--ease);
}
.faq-item[open] > summary .chev { transform: rotate(180deg); }
.faq-item > .answer {
  height: 0; overflow: hidden;
  padding: 0 clamp(16px, 3vw, 24px);
  color: var(--ink-soft);
  transition: height .36s var(--ease-2), padding-block-end .36s var(--ease-2);
}
.faq-item[open] > .answer { height: auto; padding-block-end: 22px; }
.faq-item > .answer p { margin: 0 0 .8em; }
.faq-item > .answer p:last-child { margin-bottom: 0; }
@media (prefers-reduced-motion: reduce) {
  .faq-item > .answer { transition: none; }
}

/* =========================================================
   Contact page
   ========================================================= */
.contact-hero {
  background:
    radial-gradient(900px 400px at 80% -20%, rgba(25,195,214,.16), transparent 60%),
    linear-gradient(180deg, #fff, var(--surface));
  padding: clamp(40px, 6vw, 70px) 0;
  min-height: 240px;
}
.contact-hero h1 { font-size: clamp(2rem, 5vw, 3.1rem); }
.contact-hero p { color: var(--ink-soft); max-width: 560px; font-size: 1.06rem; }

.chan-grid {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.chan {
  display: flex; flex-direction: column; gap: 6px;
  background: var(--bg); border: 1px solid var(--line); border-radius: 14px;
  padding: 22px 20px;
  transition: transform .26s var(--ease), box-shadow .26s var(--ease-2), border-color .26s var(--ease-2);
  min-width: 0;
}
.chan:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(59,47,208,.3); }
.chan .ic {
  width: 48px; height: 48px; border-radius: 13px; margin-bottom: 8px;
  display: grid; place-items: center;
  background: linear-gradient(150deg, rgba(59,47,208,.12), rgba(25,195,214,.18));
  color: var(--accent);
}
.chan .ic svg { width: 24px; height: 24px; }
.chan .ctitle { font-weight: 700; font-size: 1.02rem; }
.chan a, .chan .val { color: var(--ink); font-weight: 600; word-break: break-word; }
.chan a:hover { color: var(--accent); }
.chan .sub { font-size: .84rem; color: var(--ink-faint); }

.hours-grid {
  display: grid; gap: 10px;
  grid-template-columns: 1fr;
  max-width: 520px;
}
.hours-grid .row {
  display: flex; justify-content: space-between; gap: 14px;
  padding: 11px 16px; border: 1px solid var(--line); border-radius: 10px;
  background: var(--bg); font-variant-numeric: tabular-nums;
}
.hours-grid .row.today { border-color: var(--accent); background: rgba(59,47,208,.05); }
.hours-grid .row b { font-weight: 700; }
.hours-grid .row span { color: var(--ink-soft); font-family:'Roboto Mono', monospace; font-size: .9rem; }

/* form */
.form-card {
  background: var(--bg); border: 1px solid var(--line); border-radius: 18px;
  padding: clamp(20px, 3vw, 32px);
}
.form-grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .form-grid .col-2 { grid-template-columns: 1fr 1fr; display: grid; gap: 18px; } }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field label { font-weight: 600; font-size: .9rem; color: var(--ink-soft); }
.form-field label .opt-hint { font-weight: 500; color: var(--ink-faint); font-size: .82rem; }
#form { scroll-margin-top: calc(var(--header-h) + 18px); }
.form-field input,
.form-field select,
.form-field textarea {
  font-family: inherit; font-size: 1rem; color: var(--ink);
  padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 10px;
  background: var(--bg); width: 100%;
  transition: border-color .2s var(--ease-2);
}
.form-field textarea { min-height: 130px; resize: vertical; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--accent); outline: none; }

.field input[type="checkbox"],
.kvkk 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);
}
.kvkk {
  display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: start;
  font-size: .88rem; color: var(--ink-soft);
}
.kvkk a { color: var(--accent); }

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: var(--ink); color: rgba(255,255,255,.7);
  padding: clamp(44px, 6vw, 70px) 0 30px;
}
.footer-top {
  display: grid; gap: 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .footer-top { grid-template-columns: 1.6fr 1fr 1fr; } }
.footer-brand .brand { color: #fff; }
.footer-brand .brand:hover { color: #fff; }
.footer-brand .brand small { color: rgba(255,255,255,.55); }
.footer-brand p { margin-top: 16px; font-size: .92rem; max-width: 340px; }
.footer-col h4 { color: #fff; font-size: .94rem; letter-spacing: .04em; margin-bottom: 14px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-col a { color: rgba(255,255,255,.7); font-size: .92rem; }
.footer-col a:hover { color: var(--accent-2); }
.footer-col .addr { font-size: .9rem; line-height: 1.7; color: rgba(255,255,255,.7); }
.footer-social { display: flex; gap: 10px; margin-top: 14px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 10px;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.2); color: #fff;
  transition: background .2s var(--ease-2), border-color .2s var(--ease-2);
}
.footer-social a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom {
  margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.14);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  font-size: .82rem; color: rgba(255,255,255,.5);
}
.footer-bottom a { color: rgba(255,255,255,.6); }
.footer-bottom .legal-meta { font-size: .78rem; }

/* =========================================================
   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: 8px;
}
.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 { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--line); font-size: .92rem; }
.table-scroll th { background: var(--surface); font-weight: 700; }
.table-scroll tr:last-child td { border-bottom: 0; }

/* =========================================================
   Legal / doc pages
   ========================================================= */
.doc { padding: clamp(40px, 6vw, 80px) 0; }
.doc-wrap { max-width: 820px; }
.doc h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: .3em; }
.doc .updated { color: var(--ink-faint); font-size: .9rem; margin-bottom: 32px; }
.doc h2 { font-size: 1.4rem; margin: 36px 0 .5em; }
.doc h3 { font-size: 1.1rem; margin: 24px 0 .4em; }
.doc p, .doc li { color: var(--ink-soft); }
.doc ul { padding-left: 20px; }
.doc li { margin-bottom: 8px; }

/* thank you */
.thanks { min-height: 60vh; display: grid; place-items: center; text-align: center; padding: 80px 0; }
.thanks .ic {
  width: 76px; height: 76px; border-radius: 22px; margin: 0 auto 24px;
  display: grid; place-items: center; color: #fff;
  background: linear-gradient(150deg, var(--accent), var(--accent-2));
  animation: breathe 4s var(--ease-2) infinite;
}
@keyframes breathe { 0%,100% { transform: scale(1); } 50% { transform: scale(1.08); } }
.thanks h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.thanks p { color: var(--ink-soft); max-width: 460px; margin: 0 auto 26px; }

/* 404 */
.nf { min-height: 64vh; display: grid; place-items: center; text-align: center; padding: 80px 0; }
.nf .big { font-family:'Roboto Mono', monospace; font-size: clamp(4rem, 16vw, 9rem); font-weight: 700; color: var(--accent); line-height: 1; }

/* sitemap */
.smap { display: grid; gap: 14px; grid-template-columns: 1fr; max-width: 620px; }
@media (min-width: 600px) { .smap { grid-template-columns: 1fr 1fr; } }
.smap a {
  display: flex; align-items: center; gap: 10px;
  padding: 16px 18px; border: 1px solid var(--line); border-radius: 12px;
  background: var(--bg); color: var(--ink); font-weight: 600;
  transition: transform .2s var(--ease), border-color .2s var(--ease-2);
}
.smap a:hover { transform: translateX(4px); border-color: var(--accent); color: var(--accent); }

/* notes block */
.notes { display: grid; gap: 12px; max-width: 640px; }
.note {
  display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start;
  padding: 16px 18px; border: 1px solid var(--line); border-radius: 12px; background: var(--bg);
}
.note time { font-family:'Roboto Mono', monospace; font-size: .8rem; color: var(--accent); font-weight: 700; white-space: nowrap; }
.note p { margin: 0; font-size: .94rem; color: var(--ink-soft); }

/* availability bar */
.avail {
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(25,195,214,.1); border: 1px solid rgba(25,195,214,.4);
  border-radius: 12px; padding: 12px 18px; font-size: .9rem; color: var(--ink);
  margin-top: 20px;
}
.avail .bar { width: 120px; height: 7px; border-radius: 999px; background: var(--surface-2); overflow: hidden; }
.avail .bar i { display: block; height: 100%; width: 80%; background: linear-gradient(90deg, var(--accent), var(--accent-2)); border-radius: 999px; }
.avail b { font-weight: 700; }

/* =========================================================
   Reveal
   ========================================================= */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 700ms var(--ease), transform 700ms 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; }
  .hero::before, .bubbles, .god-rays, .summary-card .god-rays { animation: none !important; }
  .thanks .ic { animation: none !important; }
}

/* =========================================================
   Cookie banner
   ========================================================= */
.cookie-banner {
  position: fixed; bottom: 16px; left: 16px; right: 16px;
  max-width: 520px; margin: 0 auto;
  background: var(--bg); border: 1px solid var(--line-strong);
  border-radius: 16px; box-shadow: 0 24px 60px -28px rgba(0,0,0,.5);
  padding: 20px 22px; z-index: 9999;
  transform: translateY(140%); opacity: 0;
  transition: transform 280ms var(--ease), opacity 240ms var(--ease-2);
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
.cookie-banner h3 { font-size: 1.04rem; margin-bottom: 6px; }
.cookie-banner p { font-size: .88rem; color: var(--ink-soft); margin-bottom: 14px; }
.cookie-banner p a { color: var(--accent); }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie-actions button {
  font-family: inherit; font-weight: 700; font-size: .88rem;
  padding: 11px 18px; border-radius: 999px; cursor: pointer; min-height: 44px;
  border: 1.5px solid var(--line-strong); background: var(--bg); color: var(--ink);
  transition: background .2s var(--ease-2), color .2s var(--ease-2);
}
/* accept & reject carry equal visual weight (fair-consent, no dark pattern);
   settings stays the lighter tertiary action */
.cookie-actions button[data-consent="accept"],
.cookie-actions button[data-consent="reject"] { flex: 1 1 auto; }
.cookie-actions button[data-consent="accept"] { background: var(--accent); color: #fff; border-color: var(--accent); }
.cookie-actions button[data-consent="accept"]:hover,
.cookie-actions button[data-consent="accept"]:focus-visible { background: var(--accent-deep); color: #fff; }
.cookie-actions button[data-consent="reject"] { background: var(--ink); color: #fff; border-color: var(--ink); }
.cookie-actions button[data-consent="reject"]:hover,
.cookie-actions button[data-consent="reject"]:focus-visible { background: #000; color: #fff; border-color: #000; }
.cookie-actions button[data-consent="settings"] { flex: 0 0 auto; color: var(--ink-soft); }
.cookie-actions button[data-consent="settings"]:hover,
.cookie-actions button[data-consent="settings"]:focus-visible { background: var(--surface); color: var(--ink); }
@media (min-width: 720px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}

/* utility */
.text-center { text-align: center; }
.mt-cta { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; }
.mt-cta.center { justify-content: center; }
.lead-band {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 20px;
}
.lead-band .btn-light { background: #fff; color: var(--accent-deep); border-color: #fff; }
.lead-band .btn-light:hover { background: var(--accent-2); color: #06222b; }

@media (max-width: 640px) {
  body { font-size: 16px; }
  .feature, .pkg, .chan { padding: 18px 16px; }
  .summary-card { grid-template-columns: 1fr; }
  .depth-meter { width: 100%; min-height: 64px; height: 64px; display: flex; }
  .depth-meter .fill { left: 0; top: 0; bottom: 0; right: auto; width: var(--fill, 18%); height: 100% !important; border-radius: 0 11px 11px 0; }
  .depth-meter .ticks { flex-direction: row; }
  .depth-meter .dval { top: 50%; transform: translateY(-50%); }
}

.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: #fff !important;
}
