/* ============================================================
   Akrep & Yelkovan Saat Atölyesi — styles.css
   Palet: bg #ECEFF3 / surface #FFF / ink #12202B
   accent çelik mavi #1E5FA8 / accent-2 turkuaz #54C0B8
   Heading: Archivo 800 / Body: Inter 400 / Sayılar tabular
   ============================================================ */

:root {
  --bg: #ECEFF3;
  --surface: #FFFFFF;
  --surface-2: #F4F6F9;
  --surface-3: #E4E9EF;
  --ink: #12202B;
  --ink-soft: #41525E;
  --ink-faint: #6C7B86;
  --accent: #1E5FA8;
  --accent-deep: #164a83;
  --accent-2: #54C0B8;
  --accent-2-deep: #36988f;
  --line: #D5DCE4;
  --line-strong: #B7C2CD;
  --radius: 14px;
  --radius-sm: 9px;
  --header-h: 76px;
  --container: 1320px;
  --shadow-sm: 0 6px 18px -14px rgba(18,32,43,.45);
  --shadow-md: 0 18px 40px -26px rgba(18,32,43,.45);
  --shadow-lg: 0 30px 70px -34px rgba(18,32,43,.5);
  --ease: cubic-bezier(.2,.7,.2,1);
  --ease-2: cubic-bezier(.4,0,.2,1);
  interpolate-size: allow-keywords;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; max-width: 100vw; overflow-x: hidden; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: clamp(15px, 1.05vw, 16.5px);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Archivo', system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.06;
  color: var(--ink);
  margin: 0 0 .5em;
}
p { margin: 0 0 1em; }
a { color: var(--accent); text-decoration: none; transition: color .24s 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; }

.tnum { font-variant-numeric: tabular-nums; font-feature-settings: "tnum" 1; }
.mono { font-family: 'JetBrains Mono', 'Consolas', monospace; }

::selection { background: var(--accent-2); color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 3px;
}

.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);
  font-weight: 600;
}
.skip-link:focus { top: 12px; color: #fff; }

/* ---------- layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 56px);
  padding-right: clamp(16px, 4vw, 56px);
}
main { padding-top: var(--header-h); }
section { padding: clamp(54px, 7vw, 104px) 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: 'Archivo', sans-serif; font-weight: 700;
  text-transform: uppercase; letter-spacing: .2em;
  font-size: .72rem; color: var(--accent);
  margin: 0 0 18px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--accent-2);
  display: inline-block;
}
.section-head { max-width: 720px; margin-bottom: clamp(34px, 4vw, 56px); }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 3.1rem); }
.section-head p { color: var(--ink-soft); font-size: 1.06rem; max-width: 60ch; }

.lead { font-size: 1.12rem; color: var(--ink-soft); }
.small-print { font-size: .82rem; color: var(--ink-faint); }
.tag-örnek {
  display: inline-block; font-size: .68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--accent-2-deep); background: rgba(84,192,184,.14);
  padding: 3px 9px; border-radius: 999px; margin-left: 8px;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: 'Archivo', sans-serif; font-weight: 700;
  font-size: .94rem; letter-spacing: .01em;
  padding: 13px 24px; 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-2), box-shadow .24s var(--ease-2), border-color .24s var(--ease-2);
  position: relative;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--ink); color: var(--surface); }
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent); color: var(--surface);
  transform: translateY(-2px); box-shadow: var(--shadow-md);
}
.btn-primary .arr { transition: transform .24s var(--ease-2); }
.btn-primary:hover .arr { transform: translateX(4px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface); color: var(--accent); border-color: var(--accent);
  transform: translateY(-2px);
}
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover, .btn-accent:focus-visible {
  background: var(--accent-deep); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md);
}
.btn:active::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: radial-gradient(circle at center, rgba(84,192,184,.55), transparent 60%);
  animation: bead .5s var(--ease-2);
}
@keyframes bead { from { opacity: .9; transform: scale(.2); } to { opacity: 0; transform: scale(1.4); } }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1080;
  height: var(--header-h);
  background: rgba(236, 239, 243, 0.92);
  backdrop-filter: saturate(1.4) 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,.98);
  box-shadow: 0 8px 24px -16px rgba(18,32,43,.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;
  font-family: 'Archivo', sans-serif; font-weight: 800;
  color: var(--ink); font-size: 1.12rem; letter-spacing: -0.02em;
  line-height: 1;
}
.brand:hover { color: var(--ink); }
.brand-mark { width: 38px; height: 38px; flex: 0 0 auto; color: var(--accent); }
.brand b { color: var(--accent); font-weight: 800; }
.brand small { display: block; font-family: 'Inter'; font-weight: 500; font-size: .62rem;
  letter-spacing: .22em; text-transform: uppercase; color: var(--ink-faint); margin-top: 3px; }

.nav-desktop { display: none; align-items: center; gap: clamp(14px, 2vw, 30px); }
.nav-desktop a {
  position: relative; font-weight: 500; color: var(--ink-soft);
  font-size: .95rem; padding: 6px 2px;
}
.nav-desktop a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px;
  background: var(--accent); transition: right .26s var(--ease);
}
.nav-desktop a:hover { color: var(--ink); }
.nav-desktop a:hover::after, .nav-desktop a.is-active::after { right: 0; }
.nav-desktop a.is-active { color: var(--accent); }
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta {
  background: var(--ink); color: #fff; padding: 10px 20px; border-radius: 999px;
  font-family: 'Archivo'; font-weight: 700; font-size: .9rem;
}
.nav-desktop .nav-cta:hover { background: var(--accent); color: #fff; }

@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
}

/* hamburger */
.nav-toggle {
  position: relative; z-index: 1100;
  width: 46px; height: 46px; display: inline-flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 5px;
  background: var(--surface); border: 1px solid var(--line-strong); border-radius: 11px;
  cursor: pointer; transition: background .2s var(--ease-2);
}
.nav-toggle span {
  width: 21px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform .28s 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-toggle { display: none; } }

/* drawer */
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 1050;
  width: min(360px, 92vw);
  background: var(--surface);
  border-left: 1px solid var(--line);
  transform: translateX(100%);
  transition: transform .32s var(--ease);
  display: flex; flex-direction: column;
  padding: calc(var(--header-h) + 18px) 26px 30px;
  box-shadow: var(--shadow-lg);
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 4px; font-family: 'Archivo'; font-weight: 600; font-size: 1.12rem;
  color: var(--ink); border-bottom: 1px solid var(--line);
}
.drawer a:hover, .drawer a.is-active { color: var(--accent); }
.drawer a .chev { color: var(--accent-2-deep); }
.drawer .btn { margin-top: 22px; }
.drawer-meta { margin-top: auto; padding-top: 24px; font-size: .86rem; color: var(--ink-soft); }
.drawer-meta a { display: inline; padding: 0; border: 0; font-family: 'Inter'; font-weight: 600; font-size: .86rem; }
.drawer-backdrop {
  position: fixed; inset: 0; z-index: 1040; background: rgba(10,18,24,.55);
  opacity: 0; visibility: hidden; transition: opacity .24s var(--ease-2), visibility .24s;
}
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }

/* ============================================================
   HERO — type-driven, no marquee
   ============================================================ */
.hero {
  position: relative; padding: clamp(40px, 7vw, 92px) 0 clamp(50px, 6vw, 80px);
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(620px 380px at 88% -8%, rgba(84,192,184,.20), transparent 70%),
    radial-gradient(560px 420px at 6% 12%, rgba(30,95,168,.14), transparent 72%);
  pointer-events: none;
}
.hero .dotgrid {
  position: absolute; inset: 0; z-index: 0; opacity: .5;
  background-image: radial-gradient(var(--line-strong) 1px, transparent 1.4px);
  background-size: 26px 26px;
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,.5), transparent 60%);
          mask-image: linear-gradient(180deg, rgba(0,0,0,.5), transparent 60%);
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr; gap: clamp(34px, 5vw, 60px);
  align-items: center;
}
@media (min-width: 980px) {
  .hero-grid { grid-template-columns: 1.15fr .85fr; }
}
.hero h1 {
  font-size: clamp(2.7rem, 7.6vw, 4.5rem);
  font-weight: 900; letter-spacing: -0.03em; line-height: .98;
  margin: 0 0 22px;
}
.hero h1 .word { display: inline-block; }
.hero h1 .hl { color: var(--accent); position: relative; }
.hero-sub { font-size: clamp(1.05rem, 1.7vw, 1.28rem); color: var(--ink-soft); max-width: 50ch; margin-bottom: 26px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }

.trust-strip { display: flex; flex-wrap: wrap; gap: 9px; }
.trust-strip span {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--surface); border: 1px solid var(--line);
  padding: 8px 13px; border-radius: 999px; font-size: .82rem; font-weight: 600;
  color: var(--ink-soft); box-shadow: var(--shadow-sm);
}
.trust-strip svg { width: 15px; height: 15px; color: var(--accent-2-deep); }

/* hero pill word-grid (replaces marquee) */
.hero-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.hero-pills .pill {
  font-family: 'Archivo'; font-weight: 600; font-size: .9rem;
  padding: 9px 15px; border-radius: 10px;
  background: var(--surface); border: 1px solid var(--line);
  color: var(--ink); display: inline-flex; align-items: center; gap: 8px;
  transition: transform .22s var(--ease), border-color .22s var(--ease-2), color .22s var(--ease-2);
}
.hero-pills .pill svg { width: 17px; height: 17px; color: var(--accent); }
.hero-pills .pill:hover { transform: translateY(-3px); border-color: var(--accent); color: var(--accent); }

/* hero stat card */
.hero-aside {
  position: relative; z-index: 1;
  background: var(--ink); color: #fff; border-radius: var(--radius);
  padding: clamp(24px, 3vw, 36px); box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hero-aside::after {
  content: ""; position: absolute; right: -50px; top: -50px; width: 200px; height: 200px;
  border: 2px solid rgba(84,192,184,.3); border-radius: 50%;
  animation: breathe 9s var(--ease-2) infinite;
}
@keyframes breathe { 0%,100% { transform: scale(1); opacity: .5; } 50% { transform: scale(1.12); opacity: .85; } }
.hero-aside h3 { color: #fff; font-size: 1.1rem; margin-bottom: 4px; }
.hero-aside .aside-sub { color: rgba(255,255,255,.62); font-size: .86rem; margin-bottom: 22px; }
.stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 14px; }
.stat { }
.stat .num {
  font-family: 'Archivo'; font-weight: 900; font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  color: var(--accent-2); letter-spacing: -0.02em; line-height: 1;
}
.stat .lbl { font-size: .78rem; color: rgba(255,255,255,.66); margin-top: 6px; }
.hero-aside .avail {
  margin-top: 22px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; gap: 10px; font-size: .85rem; color: rgba(255,255,255,.82);
}
.dot-live { width: 9px; height: 9px; border-radius: 50%; background: var(--accent-2);
  box-shadow: 0 0 0 0 rgba(84,192,184,.6); animation: ping 2s var(--ease-2) infinite; }
@keyframes ping { 0% { box-shadow: 0 0 0 0 rgba(84,192,184,.5); } 70%,100% { box-shadow: 0 0 0 10px rgba(84,192,184,0); } }

/* ============================================================
   VİTRİN — service card grid (flip cards)
   ============================================================ */
.cards-grid {
  display: grid; gap: clamp(16px, 2vw, 24px);
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1100px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .cards-grid { grid-template-columns: 1fr; } }

.flip {
  perspective: 1400px; min-height: 320px;
}
.flip-inner {
  position: relative; width: 100%; height: 100%; min-height: 320px;
  transition: transform .7s var(--ease);
  transform-style: preserve-3d;
}
.flip:hover .flip-inner, .flip:focus-within .flip-inner { transform: rotateY(180deg); }
.flip-face {
  position: absolute; inset: 0;
  -webkit-backface-visibility: hidden; backface-visibility: hidden;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.flip-front { }
.flip-back {
  transform: rotateY(180deg);
  background: var(--ink); color: #fff; border-color: var(--ink);
  justify-content: space-between;
}
.cat-label {
  align-self: flex-start; font-family: 'Archivo'; font-weight: 700;
  font-size: .66rem; text-transform: uppercase; letter-spacing: .14em;
  color: var(--accent); background: rgba(30,95,168,.1);
  padding: 4px 10px; border-radius: 999px; margin-bottom: 18px;
}
.svc-icon {
  width: 54px; height: 54px; border-radius: 13px;
  background: var(--surface-2); border: 1px solid var(--line);
  display: grid; place-items: center; margin-bottom: 16px; color: var(--accent);
  transition: background .22s var(--ease-2), color .22s var(--ease-2);
}
.svc-icon svg { width: 28px; height: 28px; }
.flip:hover .flip-front .svc-icon { background: var(--accent); color: #fff; border-color: var(--accent); }
.flip-front h3 { font-size: 1.18rem; margin-bottom: 8px; }
.flip-front p { font-size: .9rem; color: var(--ink-soft); margin-bottom: 14px; }
.flip-front .peek {
  margin-top: auto; display: inline-flex; align-items: center; gap: 7px;
  font-family: 'Archivo'; font-weight: 700; font-size: .82rem; color: var(--accent);
}
.flip-front .peek svg { width: 15px; height: 15px; }

.flip-back .cat-label { color: var(--accent-2); background: rgba(84,192,184,.16); }
.flip-back h3 { color: #fff; font-size: 1.1rem; }
.flip-back .ba {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 12px 0; flex: 1;
}
.flip-back .ba div {
  border-radius: 10px; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 12px; min-height: 76px; position: relative; overflow: hidden;
}
.flip-back .ba .before { background: linear-gradient(160deg, #3a4a55, #243640); }
.flip-back .ba .after  { background: linear-gradient(160deg, var(--accent), var(--accent-2-deep)); }
.flip-back .ba span { font-size: .66rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.85); }
.flip-back .ba svg { width: 22px; height: 22px; color: rgba(255,255,255,.55); position: absolute; top: 12px; left: 12px; }
.flip-price {
  display: flex; align-items: baseline; justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,.14); padding-top: 14px;
}
.flip-price .pr { font-family: 'Archivo'; font-weight: 900; font-size: 1.5rem; color: var(--accent-2); }
.flip-price .pr small { font-family: 'Inter'; font-weight: 500; font-size: .72rem; color: rgba(255,255,255,.6); display: block; }
.flip-price .go {
  width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.12);
  display: grid; place-items: center; color: #fff; flex: 0 0 auto;
  transition: background .2s var(--ease-2);
}
.flip-price .go:hover { background: var(--accent); color: #fff; }
.flip-price .go svg { width: 18px; height: 18px; }

/* ============================================================
   SÜRE — duration badge grid
   ============================================================ */
.süre-band { background: var(--ink); color: #fff; }
.süre-band .eyebrow { color: var(--accent-2); }
.süre-band .eyebrow::before { background: var(--accent); }
.süre-band .section-head h2 { color: #fff; }
.süre-band .section-head p { color: rgba(255,255,255,.66); }
.badge-grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 900px) { .badge-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .badge-grid { grid-template-columns: 1fr; } }
.dur-badge {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: 22px;
  transition: transform .24s var(--ease), border-color .24s var(--ease-2), background .24s var(--ease-2);
}
.dur-badge:hover { transform: translateY(-4px); border-color: var(--accent-2); background: rgba(84,192,184,.08); }
.dur-badge .ring {
  width: 46px; height: 46px; color: var(--accent-2); margin-bottom: 16px;
  transform-origin: 50% 50%;
  transition: transform .55s cubic-bezier(.34,1.56,.64,1), color .24s var(--ease-2);
}
/* watchmaker theme: the hand sweeps forward on hover, like a ticking dial */
.dur-badge:hover .ring { transform: rotate(36deg); color: #fff; }
@media (prefers-reduced-motion: reduce) { .dur-badge:hover .ring { transform: none; } }
.dur-badge .t {
  font-family: 'Archivo'; font-weight: 900; font-size: 2rem; color: #fff; letter-spacing: -0.02em;
  display: flex; align-items: baseline; gap: 5px;
}
.dur-badge .t small { font-family: 'Inter'; font-weight: 600; font-size: .9rem; color: var(--accent-2); }
.dur-badge .d { color: rgba(255,255,255,.66); font-size: .88rem; margin-top: 6px; }

/* ============================================================
   MARKALAR — brand strips
   ============================================================ */
.brand-rows { display: grid; gap: 14px; }
.brand-row {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px 24px; display: grid; grid-template-columns: 200px 1fr; gap: 18px 24px;
  align-items: center;
  transition: border-color .24s var(--ease-2), box-shadow .24s var(--ease-2);
}
.brand-row:hover { border-color: var(--accent); box-shadow: var(--shadow-sm); }
@media (max-width: 720px) { .brand-row { grid-template-columns: 1fr; gap: 12px; } }
.brand-row .cat {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Archivo'; font-weight: 700; font-size: 1.05rem; color: var(--ink);
}
.brand-row .cat .ic { width: 40px; height: 40px; flex: 0 0 auto; border-radius: 10px;
  background: var(--surface-2); display: grid; place-items: center; color: var(--accent); }
.brand-row .cat .ic svg { width: 22px; height: 22px; }
.brand-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.brand-chips span {
  font-size: .84rem; font-weight: 600; color: var(--ink-soft);
  background: var(--surface-2); border: 1px solid var(--line); padding: 6px 12px; border-radius: 8px;
  transition: color .2s var(--ease-2), border-color .2s var(--ease-2);
}
.brand-chips span:hover { color: var(--accent); border-color: var(--accent); }

/* ============================================================
   FİYAT GRID
   ============================================================ */
.price-grid { display: grid; gap: 18px; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .price-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .price-grid { grid-template-columns: 1fr; } }
.price-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; display: flex; flex-direction: column;
  transition: transform .24s var(--ease), box-shadow .24s var(--ease-2), border-color .24s var(--ease-2);
  position: relative; overflow: hidden;
}
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--accent); }
.price-card.featured { border-color: var(--accent); box-shadow: var(--shadow-md); }
.price-card.featured::before {
  content: "En çok seçilen"; position: absolute; top: 16px; right: -34px;
  background: var(--accent-2); color: var(--ink); font-family: 'Archivo'; font-weight: 700;
  font-size: .64rem; letter-spacing: .06em; text-transform: uppercase;
  padding: 5px 40px; transform: rotate(45deg);
}
.price-card .pc-cat {
  font-family: 'Archivo'; font-weight: 700; font-size: .68rem; text-transform: uppercase;
  letter-spacing: .14em; color: var(--accent); margin-bottom: 10px;
}
.price-card h3 { font-size: 1.22rem; margin-bottom: 6px; }
.price-card .pc-desc { font-size: .88rem; color: var(--ink-soft); margin-bottom: 18px; }
.price-card .pc-amount {
  font-family: 'Archivo'; font-weight: 900; font-size: 2.5rem; color: var(--ink);
  letter-spacing: -0.02em; line-height: 1;
}
.price-card .pc-amount small { font-family: 'Inter'; font-weight: 600; font-size: .9rem; color: var(--ink-faint); }
.price-card .pc-note { font-size: .76rem; color: var(--ink-faint); margin: 6px 0 18px; }
.price-card ul.incl { display: grid; gap: 9px; margin: 0 0 8px; flex: 1; }
.price-card ul.incl li { display: grid; grid-template-columns: 20px 1fr; gap: 9px; font-size: .88rem; color: var(--ink-soft); align-items: start; }
.price-card ul.incl li svg { width: 17px; height: 17px; margin-top: 3px; }
.price-card ul.incl li.yes svg { color: var(--accent-2-deep); }
.price-card ul.incl li.no { color: var(--ink-faint); }
.price-card ul.incl li.no svg { color: var(--line-strong); }
.price-card .btn { margin-top: 18px; }

/* ============================================================
   SÜREÇ / TIMELINE (editorial, vertical)
   ============================================================ */
.timeline { position: relative; max-width: 860px; margin: 0 auto; }
.timeline::before {
  content: ""; position: absolute; left: 26px; top: 12px; bottom: 12px; width: 2px;
  background: linear-gradient(var(--accent), var(--accent-2)); opacity: .35;
}
@media (max-width: 600px) { .timeline::before { left: 19px; } }
.tl-step { position: relative; padding: 0 0 32px 74px; }
@media (max-width: 600px) { .tl-step { padding-left: 58px; } }
.tl-step:last-child { padding-bottom: 0; }
.tl-num {
  position: absolute; left: 0; top: 0; width: 54px; height: 54px; border-radius: 50%;
  background: var(--surface); border: 2px solid var(--accent); color: var(--accent);
  display: grid; place-items: center; font-family: 'Archivo'; font-weight: 900; font-size: 1.2rem;
  z-index: 1;
}
@media (max-width: 600px) { .tl-num { width: 40px; height: 40px; font-size: 1rem; } }
.tl-step h3 { font-size: 1.16rem; margin-bottom: 4px; display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.tl-step .when {
  font-family: 'JetBrains Mono', monospace; font-weight: 700; font-size: .72rem;
  color: var(--accent-2-deep); background: rgba(84,192,184,.13); padding: 3px 9px; border-radius: 6px;
}
.tl-step p { color: var(--ink-soft); font-size: .94rem; margin: 0; }

/* ============================================================
   FAQ — pure CSS accordion
   ============================================================ */
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: border-color .24s var(--ease-2), box-shadow .24s var(--ease-2);
}
.faq-item[open] { border-color: var(--accent); box-shadow: var(--shadow-sm); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 20px clamp(18px,3vw,26px);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: 'Archivo'; font-weight: 700; font-size: 1.04rem; color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .q-ic {
  flex: 0 0 auto; width: 28px; height: 28px; border-radius: 8px;
  background: var(--surface-2); display: grid; place-items: center; color: var(--accent);
  transition: transform .3s var(--ease), background .24s var(--ease-2), color .24s var(--ease-2);
}
.faq-item[open] summary .q-ic { transform: rotate(135deg); background: var(--accent); color: #fff; }
.faq-item .answer {
  height: 0; padding: 0 clamp(18px,3vw,26px); overflow: hidden; 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; font-size: .94rem; }
@media (prefers-reduced-motion: reduce) { .faq-item .answer { transition: none; } }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: linear-gradient(135deg, var(--accent-deep), var(--accent));
  color: #fff; border-radius: var(--radius); padding: clamp(34px, 5vw, 64px);
  text-align: center; position: relative; overflow: hidden;
}
.cta-band::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(400px 300px at 85% 120%, rgba(84,192,184,.4), transparent 70%);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; font-size: clamp(1.7rem, 4vw, 2.8rem); }
.cta-band p { color: rgba(255,255,255,.85); max-width: 54ch; margin: 0 auto 26px; }
.cta-band .btn-primary { background: #fff; color: var(--ink); }
.cta-band .btn-primary:hover { background: var(--ink); color: #fff; }
.cta-band .btn-ghost { color: #fff; border-color: rgba(255,255,255,.5); }
.cta-band .btn-ghost:hover { background: rgba(255,255,255,.12); color: #fff; border-color: #fff; }
.cta-band .cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink); color: rgba(255,255,255,.74); padding: clamp(48px,6vw,76px) 0 30px; }
.footer-grid {
  display: grid; gap: 36px 28px;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid .brand { color: #fff; margin-bottom: 14px; }
.footer-grid .brand small { color: rgba(255,255,255,.5); }
.footer-about p { font-size: .9rem; color: rgba(255,255,255,.6); max-width: 38ch; }
.footer-col h4 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .14em; margin-bottom: 16px; font-family: 'Archivo'; font-weight: 700; }
.footer-col a, .footer-col li { color: rgba(255,255,255,.66); font-size: .92rem; line-height: 2; display: block; }
.footer-col a:hover { color: var(--accent-2); }
.footer-contact li { display: grid; grid-template-columns: 20px 1fr; gap: 10px; align-items: start; line-height: 1.5; margin-bottom: 12px; }
.footer-contact svg { width: 17px; height: 17px; color: var(--accent-2); margin-top: 3px; }
.footer-contact a { display: inline; word-break: break-word; }
.footer-bottom {
  margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12);
  display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; align-items: center;
  font-size: .82rem; color: rgba(255,255,255,.5);
}
.footer-bottom .legal { display: flex; flex-wrap: wrap; gap: 8px 18px; }
.footer-bottom a { color: rgba(255,255,255,.62); }
.footer-bottom a:hover { color: var(--accent-2); }
.footer-reg { font-family: 'JetBrains Mono', monospace; font-size: .72rem; letter-spacing: .03em; }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed; bottom: 16px; left: 16px; right: 16px; max-width: 520px; margin: 0 auto;
  background: var(--surface); border: 1px solid var(--line-strong); border-radius: var(--radius);
  padding: 20px 22px; box-shadow: var(--shadow-lg); z-index: 9999;
  transform: translateY(140%); opacity: 0;
  transition: transform .28s var(--ease), opacity .24s var(--ease-2);
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
@media (min-width: 720px) { .cookie-banner { left: 24px; right: auto; max-width: 420px; } }
.cookie-banner h4 { font-size: 1.02rem; margin-bottom: 8px; display: flex; align-items: center; gap: 9px; }
.cookie-banner h4 svg { width: 19px; height: 19px; color: var(--accent); }
.cookie-banner p { font-size: .85rem; color: var(--ink-soft); margin-bottom: 16px; }
.cookie-banner p a { font-weight: 600; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 9px; }
.cookie-actions button {
  flex: 1 1 auto; min-height: 44px; padding: 10px 16px; border-radius: 10px; cursor: pointer;
  font-family: 'Archivo'; font-weight: 700; font-size: .86rem; border: 1.5px solid var(--line-strong);
  transition: background .2s var(--ease-2), color .2s var(--ease-2), border-color .2s var(--ease-2);
}
.cookie-actions [data-consent="accept"] { background: var(--ink); color: #fff; border-color: var(--ink); }
.cookie-actions [data-consent="accept"]:hover { background: var(--accent); border-color: var(--accent); }
/* Reddet ("Yalnızca zorunlu") must read with equal weight to Kabul Et — no dark-pattern. */
.cookie-actions [data-consent="reject"] { background: var(--surface-3); color: var(--ink); border-color: var(--ink); }
.cookie-actions [data-consent="reject"]:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.cookie-actions [data-consent="settings"] { background: transparent; color: var(--ink-soft); border-color: transparent; flex-basis: 100%; }
.cookie-actions [data-consent="settings"]:hover { color: var(--accent); }

/* ============================================================
   FORMS
   ============================================================ */
.form-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(22px, 3vw, 38px); box-shadow: var(--shadow-sm);
}
.form-grid { display: grid; gap: 18px; grid-template-columns: 1fr 1fr; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label, .field > span.lbl { font-weight: 600; font-size: .88rem; color: var(--ink); }
.field label .opt { font-weight: 400; color: var(--ink-faint); font-size: .82rem; }
.field input, .field select, .field textarea {
  width: 100%; font-family: inherit; font-size: .95rem; color: var(--ink);
  background: var(--surface-2); border: 1.5px solid var(--line); border-radius: 10px;
  padding: 12px 14px; transition: border-color .2s var(--ease-2), background .2s var(--ease-2);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); background: #fff;
}
.field textarea { min-height: 130px; resize: vertical; }
.field.kvkk { flex-direction: row; align-items: flex-start; gap: 10px; }
.field.kvkk label { font-weight: 400; font-size: .85rem; 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);
}
.form-card button[type="submit"] { width: 100%; margin-top: 4px; }
@media (min-width: 641px) { .form-card .submit-wrap button { width: auto; } }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.page-hero {
  background: var(--ink); color: #fff; padding: clamp(54px, 8vw, 96px) 0 clamp(40px,5vw,64px);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(520px 360px at 90% -10%, rgba(84,192,184,.22), transparent 70%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow { color: var(--accent-2); }
.page-hero .eyebrow::before { background: var(--accent); }
.page-hero h1 { color: #fff; font-size: clamp(2.2rem, 5.5vw, 4rem); }
.page-hero p { color: rgba(255,255,255,.74); max-width: 56ch; font-size: 1.08rem; }
.breadcrumb { font-size: .82rem; color: rgba(255,255,255,.55); margin-bottom: 18px; }
.breadcrumb a { color: rgba(255,255,255,.75); }
.breadcrumb a:hover { color: var(--accent-2); }

.channel-grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.channel-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 24px;
  transition: transform .24s var(--ease), box-shadow .24s var(--ease-2), border-color .24s var(--ease-2);
}
.channel-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--accent); }
.channel-card .ch-ic {
  width: 48px; height: 48px; border-radius: 12px; background: var(--surface-2);
  display: grid; place-items: center; color: var(--accent); margin-bottom: 16px;
  transition: background .22s var(--ease-2), color .22s var(--ease-2);
}
.channel-card:hover .ch-ic { background: var(--accent); color: #fff; }
.channel-card .ch-ic svg { width: 24px; height: 24px; }
.channel-card h3 { font-size: 1.05rem; margin-bottom: 4px; }
.channel-card a.val, .channel-card .val { display: block; font-weight: 600; color: var(--accent); word-break: break-word; margin-bottom: 4px; }
.channel-card .sub { font-size: .82rem; color: var(--ink-faint); margin: 0; }

.hours-grid { display: grid; gap: 8px; grid-template-columns: repeat(2, 1fr); }
@media (max-width: 560px) { .hours-grid { grid-template-columns: 1fr; } }
.hours-row {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  background: var(--surface); border: 1px solid var(--line); border-radius: 10px;
  padding: 13px 16px; font-size: .92rem;
}
.hours-row.today { border-color: var(--accent); background: rgba(30,95,168,.05); }
.hours-row .day { font-weight: 600; color: var(--ink); }
.hours-row .hrs { font-variant-numeric: tabular-nums; color: var(--ink-soft); }
.hours-row.today .hrs { color: var(--accent); font-weight: 600; }

/* ============================================================
   TEAM
   ============================================================ */
.team-grid { display: grid; gap: 20px; grid-template-columns: repeat(3,1fr); }
@media (max-width: 900px) { .team-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .team-grid { grid-template-columns: 1fr; } }
.team-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px;
  transition: transform .24s var(--ease), box-shadow .24s var(--ease-2);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-card .avatar {
  width: 64px; height: 64px; border-radius: 50%; margin-bottom: 16px;
  background: linear-gradient(150deg, var(--accent), var(--accent-2));
  display: grid; place-items: center; color: #fff; font-family: 'Archivo'; font-weight: 900; font-size: 1.3rem;
}
.team-card h3 { font-size: 1.12rem; margin-bottom: 2px; }
.team-card .role { color: var(--accent); font-weight: 600; font-size: .84rem; margin-bottom: 12px; }
.team-card p { font-size: .89rem; color: var(--ink-soft); margin: 0; }

/* ============================================================
   TESTIMONIALS (editorial grid, no carousel)
   ============================================================ */
.testi-grid { display: grid; gap: 18px; grid-template-columns: repeat(3,1fr); }
@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .testi-grid { grid-template-columns: 1fr; } }
.testi {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px;
  display: flex; flex-direction: column; transition: transform .24s var(--ease), box-shadow .24s var(--ease-2);
}
.testi:nth-child(2) { transform: translateY(-14px); }
@media (max-width: 900px) { .testi:nth-child(2) { transform: none; } }
.testi:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testi .stars { color: var(--accent-2); letter-spacing: 2px; margin-bottom: 12px; font-size: .9rem; }
.testi p { font-size: .94rem; color: var(--ink-soft); flex: 1; }
.testi .who { display: flex; flex-direction: column; gap: 2px; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line); }
.testi .who b { font-family: 'Archivo'; font-weight: 700; color: var(--ink); }
.testi .who span { font-size: .8rem; color: var(--ink-faint); }

/* ============================================================
   NOTES / news
   ============================================================ */
.notes-list { display: grid; gap: 14px; grid-template-columns: repeat(3,1fr); }
@media (max-width: 800px) { .notes-list { grid-template-columns: 1fr; } }
.note {
  background: var(--surface); border: 1px solid var(--line); border-left: 3px solid var(--accent);
  border-radius: 10px; padding: 18px 20px;
}
.note time { font-family: 'JetBrains Mono', monospace; font-size: .72rem; color: var(--accent-2-deep); font-weight: 700; }
.note h4 { font-size: 1rem; margin: 7px 0 4px; }
.note p { font-size: .85rem; color: var(--ink-soft); margin: 0; }

/* ============================================================
   DOC / LEGAL PAGES
   ============================================================ */
.doc { padding: clamp(40px,5vw,72px) 0; }
.doc-wrap { max-width: 820px; margin: 0 auto; }
.doc-wrap h2 { font-size: clamp(1.4rem,3vw,2rem); margin-top: 40px; }
.doc-wrap h2:first-of-type { margin-top: 0; }
.doc-wrap h3 { font-size: 1.15rem; margin-top: 26px; }
.doc-wrap p, .doc-wrap li { color: var(--ink-soft); font-size: .96rem; }
.doc-wrap ul { list-style: disc; padding-left: 22px; margin: 0 0 1em; }
.doc-wrap ul li { margin-bottom: 7px; }
.doc-wrap .updated { font-size: .85rem; color: var(--ink-faint); margin-bottom: 28px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }

/* 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 16px; text-align: left; border-bottom: 1px solid var(--line); font-size: .9rem; }
.table-scroll th { background: var(--surface-2); font-family: 'Archivo'; font-weight: 700; color: var(--ink); }
.table-scroll td { color: var(--ink-soft); }
.table-scroll tr:last-child td { border-bottom: 0; }

/* sitemap page */
.sitemap-cols { display: grid; gap: 26px; grid-template-columns: repeat(3,1fr); }
@media (max-width: 720px) { .sitemap-cols { grid-template-columns: 1fr; } }
.sitemap-cols h3 { font-size: 1.05rem; margin-bottom: 12px; }
.sitemap-cols a { display: block; padding: 7px 0; color: var(--ink-soft); border-bottom: 1px solid var(--line); }
.sitemap-cols a:hover { color: var(--accent); }

/* 404 */
.err-wrap { min-height: 64vh; display: grid; place-items: center; text-align: center; padding: 60px 0; }
.err-wrap .big { font-family: 'Archivo'; font-weight: 900; font-size: clamp(5rem, 18vw, 11rem); color: var(--accent); line-height: .9; letter-spacing: -0.04em; }
.err-wrap h1 { font-size: clamp(1.5rem, 4vw, 2.4rem); margin: 8px 0 12px; }
.err-wrap p { color: var(--ink-soft); max-width: 44ch; margin: 0 auto 26px; }

/* thank you */
.ty-wrap { min-height: 62vh; display: grid; place-items: center; text-align: center; padding: 60px 0; }
.ty-wrap .check {
  width: 86px; height: 86px; border-radius: 50%; background: rgba(84,192,184,.15);
  display: grid; place-items: center; color: var(--accent-2-deep); margin: 0 auto 24px;
}
.ty-wrap .check svg { width: 44px; height: 44px; }
.ty-wrap h1 { font-size: clamp(1.8rem, 5vw, 2.8rem); }
.ty-wrap p { color: var(--ink-soft); max-width: 46ch; margin: 0 auto 26px; }

/* ============================================================
   REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px);
  transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[style*="--i"] { transition-delay: calc(var(--i) * 70ms); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; }
}
html.no-js .reveal { opacity: 1; transform: none; }

/* generic two-col split */
.split { display: grid; gap: clamp(28px,4vw,56px); grid-template-columns: 1fr 1fr; align-items: center; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } }
.split .media {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md);
  background: var(--surface-3);
}
.split .media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }

.surface-band { background: var(--surface); }
.mt-0 { margin-top: 0; }
.center { text-align: center; }

.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}
