/* ============================================================
   WHITE PILATES — Kadıköy Klinik Pilates
   Design-DNA: clinical / technical / monospace labels
   ============================================================ */

:root {
  interpolate-size: allow-keywords;
  --bg: #F0F2F5;
  --surface: #FFFFFF;
  --surface-2: #E8EBF0;
  --ink: #1A1D23;
  --ink-soft: #5A5E66;
  --accent: #2563EB;
  --accent-2: #60A5FA;
  --line: rgba(26,29,35,0.12);
  --line-strong: rgba(26,29,35,0.24);
  --header-h: 72px;
  --max-w: 1240px;
  --radius: 8px;
  --radius-lg: 14px;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

html.no-js .reveal { opacity: 1; transform: none; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html, body { margin: 0; }

img { max-width: 100%; height: auto; display: block; }

a { color: var(--accent); text-decoration: none; transition: color 240ms cubic-bezier(.4,0,.2,1); }
a:hover { color: var(--ink); }

h1,h2,h3,h4,h5,h6 {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.012em;
  color: var(--ink);
}

.mono {
  font-family: 'IBM Plex Mono', 'Consolas', 'Courier New', monospace;
  font-weight: 500;
  letter-spacing: -0.012em;
}

/* ---- Skip Link ---- */
.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--accent); color: #fff;
  padding: 8px 18px; border-radius: 0 0 6px 6px;
  font-size: 0.875rem; z-index: 9999;
  transition: top 200ms;
}
.skip-link:focus { top: 0; }

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
}

/* ---- Main offset for fixed header ---- */
main { padding-top: var(--header-h); }

/* ============================================================
   HEADER (fixed, morphing on scroll)
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1080;
  height: var(--header-h);
  background: rgba(240,242,245,0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 240ms ease, box-shadow 240ms ease, height 240ms ease;
  display: flex; align-items: center;
}
.site-header.scrolled {
  background: rgba(240,242,245,0.98);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,0.18);
  height: 62px;
}

.scroll-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--accent);
  width: 0%;
  pointer-events: none;
  transition: width 60ms linear;
}

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px);
}

.logo {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--ink);
  letter-spacing: -0.02em;
  text-decoration: none;
  display: flex; align-items: center; gap: 8px;
  white-space: nowrap;
}
.logo:hover { color: var(--accent); }
.logo-mark {
  width: 32px; height: 32px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

/* ---- Desktop Nav ---- */
.nav-desktop { display: flex; align-items: center; gap: 28px; }
.nav-desktop a {
  font-size: 0.875rem; font-weight: 500;
  color: var(--ink); text-decoration: none;
  position: relative; padding: 4px 0;
  transition: color 240ms cubic-bezier(.4,0,.2,1);
}
.nav-desktop a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px; background: var(--accent);
  transition: width 280ms cubic-bezier(.2,.7,.2,1);
}
.nav-desktop a:hover { color: var(--accent); }
.nav-desktop a:hover::after, .nav-desktop a.is-active::after { width: 100%; }
.nav-desktop a.is-active { color: var(--accent); }

.nav-desktop .nav-cta {
  background: var(--ink); color: var(--surface);
  padding: 10px 22px; border-radius: 6px;
  font-weight: 600; font-size: 0.875rem;
  transition: background 240ms cubic-bezier(.4,0,.2,1), color 240ms, transform 180ms;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover { background: var(--accent); color: var(--surface); transform: translateY(-2px); }
.nav-desktop .nav-cta.is-active { color: var(--surface); }

@media (max-width: 1024px) { .nav-desktop { display: none; } }

/* ---- Hamburger ---- */
.nav-toggle {
  display: none;
  position: relative; z-index: 1100;
  width: 48px; height: 48px;
  background: var(--surface);
  border: 2px solid var(--line-strong);
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background 200ms, border-color 200ms, box-shadow 200ms;
}
.nav-toggle:hover, .nav-toggle:focus-visible {
  background: var(--surface-2);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.12), 0 2px 8px rgba(0,0,0,0.08);
}
.nav-toggle span {
  display: block; width: 22px; height: 2.5px;
  background: var(--ink); border-radius: 2px;
  position: absolute; left: 13px;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), opacity 240ms, background 200ms;
}
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 23px; }
.nav-toggle span:nth-child(3) { top: 31px; }
.nav-toggle:hover span, .nav-toggle:focus-visible span { background: var(--accent); }
.nav-toggle[aria-expanded="true"] { background: var(--surface); border-color: var(--accent); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { top: 23px; transform: rotate(45deg); background: var(--accent); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { top: 23px; transform: rotate(-45deg); background: var(--accent); }

@media (max-width: 1024px) { .nav-toggle { display: flex; align-items: center; justify-content: center; } }

/* ---- Mobile Drawer ---- */
.drawer-backdrop {
  position: fixed; inset: 0; z-index: 1040;
  background: rgba(0,0,0,0.55);
  opacity: 0; visibility: hidden;
  transition: opacity 240ms ease, visibility 240ms;
}
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }

.mobile-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  z-index: 1050;
  background: var(--surface);
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  display: flex; flex-direction: column;
  padding: 96px 32px 40px;
  overflow-y: auto;
}
.mobile-drawer.is-open { transform: translateX(0); }

.mobile-drawer a {
  display: block; padding: 14px 0;
  font-size: 1.125rem; font-weight: 600;
  color: var(--ink); text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: color 200ms, padding-left 280ms cubic-bezier(.2,.7,.2,1);
}
.mobile-drawer a:hover { color: var(--accent); padding-left: 8px; }
.mobile-drawer a.is-active { color: var(--accent); }

.mobile-drawer .drawer-cta {
  display: inline-block; margin-top: 28px;
  background: var(--accent); color: #fff;
  padding: 14px 28px; border-radius: 6px;
  text-align: center; font-weight: 600;
  border-bottom: 0;
}
.mobile-drawer .drawer-cta:hover { background: var(--ink); color: var(--surface); padding-left: 28px; }

.drawer-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 2px solid var(--line-strong);
  border-radius: 10px;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--ink);
  cursor: pointer;
  z-index: 1;
  padding: 0;
  transition: background 200ms cubic-bezier(.4,0,.2,1), border-color 200ms, color 200ms;
}
.drawer-close:hover, .drawer-close:focus-visible {
  background: var(--surface-2);
  border-color: var(--accent);
  color: var(--accent);
}

/* ============================================================
   HERO — split-asymmetric
   ============================================================ */
.hero {
  position: relative;
  padding: clamp(80px, 10vw, 120px) 0 clamp(60px, 8vw, 100px);
  overflow: hidden;
  background: var(--bg);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, var(--line) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.5;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.66fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 500;
  font-size: 0.8125rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  display: inline-block;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero h1 .accent-word { color: var(--accent); }

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-cta-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink); color: var(--surface);
  padding: 14px 32px; border-radius: 6px;
  font-weight: 600; font-size: 1rem;
  border: 0; cursor: pointer;
  transition: background 240ms cubic-bezier(.4,0,.2,1), color 240ms, transform 180ms;
  text-decoration: none;
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent); color: var(--surface); transform: translateY(-2px);
}
.btn-primary:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.btn-primary svg { width: 18px; height: 18px; stroke: currentColor; fill: none; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--ink);
  padding: 14px 28px; border-radius: 6px;
  font-weight: 600; font-size: 1rem;
  border: 1px solid var(--line-strong); cursor: pointer;
  transition: background 240ms cubic-bezier(.4,0,.2,1), color 240ms, border-color 240ms, transform 180ms;
  text-decoration: none;
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface); color: var(--ink); border-color: var(--ink);
}
.btn-ghost:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* Trust strip */
.trust-strip {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: 36px;
}
.trust-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 6px 14px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--ink-soft);
  white-space: nowrap;
}
.trust-badge svg { width: 14px; height: 14px; stroke: var(--accent); fill: none; }

/* Hero stats */
.hero-stats {
  display: flex; gap: 32px;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.stat-item { text-align: left; }
.stat-number {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--ink);
  line-height: 1.1;
}
.stat-label {
  font-size: 0.8125rem;
  color: var(--ink-soft);
  margin-top: 4px;
}

/* Hero SVG area */
.hero-visual {
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.hero-visual svg { max-width: 100%; height: auto; }

/* Spine SVG Animation */
.spine-svg { width: 100%; max-width: 320px; }
.spine-vertebra {
  stroke: var(--accent);
  stroke-width: 2;
  fill: none;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: drawVertebra 800ms cubic-bezier(.2,.7,.2,1) forwards;
}
.spine-vertebra:nth-child(1)  { animation-delay: 200ms; }
.spine-vertebra:nth-child(2)  { animation-delay: 320ms; }
.spine-vertebra:nth-child(3)  { animation-delay: 440ms; }
.spine-vertebra:nth-child(4)  { animation-delay: 560ms; }
.spine-vertebra:nth-child(5)  { animation-delay: 680ms; }
.spine-vertebra:nth-child(6)  { animation-delay: 800ms; }
.spine-vertebra:nth-child(7)  { animation-delay: 920ms; }
.spine-vertebra:nth-child(8)  { animation-delay: 1040ms; }
.spine-vertebra:nth-child(9)  { animation-delay: 1160ms; }
.spine-vertebra:nth-child(10) { animation-delay: 1280ms; }
.spine-vertebra:nth-child(11) { animation-delay: 1400ms; }
.spine-vertebra:nth-child(12) { animation-delay: 1520ms; }

@keyframes drawVertebra {
  to { stroke-dashoffset: 0; }
}

.spine-disc {
  stroke: var(--accent-2);
  stroke-width: 1.5;
  fill: none;
  opacity: 0;
  animation: fadeDisc 500ms ease forwards;
}
.spine-disc:nth-child(13) { animation-delay: 1600ms; }
.spine-disc:nth-child(14) { animation-delay: 1700ms; }
.spine-disc:nth-child(15) { animation-delay: 1800ms; }
.spine-disc:nth-child(16) { animation-delay: 1900ms; }
.spine-disc:nth-child(17) { animation-delay: 2000ms; }

@keyframes fadeDisc { to { opacity: 1; } }

/* Pulse on anatomical reference points */
.spine-ref-dot {
  fill: var(--accent);
  opacity: 0;
  animation: pulseDot 2s ease-in-out infinite;
}
.spine-ref-dot:nth-child(18) { animation-delay: 2100ms; }
.spine-ref-dot:nth-child(19) { animation-delay: 2300ms; }
.spine-ref-dot:nth-child(20) { animation-delay: 2500ms; }

@keyframes pulseDot {
  0%, 100% { opacity: 0.3; r: 3; }
  50% { opacity: 0.8; r: 5; }
}

/* Breathing rhythm on hero visual container */
.hero-visual::after {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.06) 0%, transparent 70%);
  animation: breathe 10s ease-in-out infinite;
  pointer-events: none;
}
@keyframes breathe {
  0%, 100% { transform: scale(0.9); opacity: 0.4; }
  50% { transform: scale(1.15); opacity: 0.7; }
}

@media (prefers-reduced-motion: reduce) {
  .spine-vertebra, .spine-disc, .spine-ref-dot { animation: none; stroke-dashoffset: 0; opacity: 1; }
  .hero-visual::after { animation: none; }
}

@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-cta-row { justify-content: center; }
  .trust-strip { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { margin-top: 40px; }
  .hero-visual::after { width: 140px; height: 140px; }
  .hero-visual .spine-svg { display: none; }
}
@media (max-width: 480px) {
  .hero-stats { gap: 20px; flex-wrap: wrap; }
}

/* ============================================================
   SECTIONS — shared patterns
   ============================================================ */
.section {
  padding: clamp(60px, 8vw, 100px) 0;
}
.section-alt { background: var(--surface); }
.section-dark { background: var(--ink); color: var(--surface); }
.section-dark h2, .section-dark h3, .section-dark .stat-number { color: var(--surface); }
.section-dark .section-eyebrow { color: var(--accent-2); }
.section-dark .ink-soft { color: rgba(255,255,255,0.65); }

.section-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.0625rem;
  color: var(--ink-soft);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 48px;
}
.section-center { text-align: center; }
.section-center .section-desc { margin-left: auto; margin-right: auto; }

/* ============================================================
   #tani — Değerlendirme Süreci (vertical timeline)
   ============================================================ */
.process-timeline {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
}
.process-timeline::before {
  content: '';
  position: absolute;
  left: 28px; top: 0; bottom: 0;
  width: 2px;
  background: var(--line);
}

.process-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  align-items: start;
  padding-bottom: 40px;
  position: relative;
}
.process-step:last-child { padding-bottom: 0; }

.step-marker {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 2;
  transition: background 320ms cubic-bezier(.22,.68,.31,1.04), border-color 320ms, box-shadow 320ms;
}
.step-marker svg {
  width: 24px; height: 24px;
  stroke: var(--accent); fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.process-step:hover .step-marker { background: var(--accent); }
.process-step:hover .step-marker svg { stroke: #fff; }

.step-content h3 {
  font-size: 1.125rem;
  margin-bottom: 6px;
}
.step-time {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 8px;
}
.step-content p {
  color: var(--ink-soft);
  font-size: 0.9375rem;
  line-height: 1.65;
}

@media (max-width: 640px) {
  .process-timeline::before { left: 20px; }
  .process-step { grid-template-columns: 40px 1fr; gap: 16px; }
  .step-marker { width: 40px; height: 40px; }
  .step-marker svg { width: 18px; height: 18px; }
}

/* ============================================================
   #ekipman — Equipment table
   ============================================================ */
.table-scroll {
  display: block; width: 100%; max-width: 100%; min-width: 0;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: 6px;
}
.table-scroll > table { margin: 0 !important; min-width: 480px; width: 100%; }
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }
@media (max-width: 640px) {
  .table-scroll {
    position: relative;
  }
  .table-scroll::after {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 32px;
    background: linear-gradient(to right, transparent, rgba(240,242,245,0.85));
    pointer-events: none;
    border-radius: 0 6px 6px 0;
    transition: opacity 300ms;
  }
  .table-scroll:hover::after,
  .table-scroll:focus-within::after { opacity: 0; }
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}
thead { background: var(--ink); color: var(--surface); }
thead th {
  padding: 14px 20px;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: left;
}
tbody td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
tbody tr:last-child td { border-bottom: 0; }
tbody tr { transition: background 200ms; }
tbody tr:hover { background: rgba(37,99,235,0.04); }
tbody tr td:first-child {
  font-weight: 600;
  white-space: nowrap;
}
.equip-icon {
  width: 20px; height: 20px;
  stroke: var(--accent); fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
  vertical-align: middle; margin-right: 8px;
}

/* ============================================================
   #protokol — Treatment Protocol Cards
   ============================================================ */
.protocol-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.protocol-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
  position: relative;
  overflow: hidden;
  transition: transform 360ms cubic-bezier(.22,.68,.31,1.04), box-shadow 360ms, border-color 360ms;
}
.protocol-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 360ms cubic-bezier(.2,.7,.2,1);
}
.protocol-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px -12px rgba(37,99,235,0.15); border-color: var(--accent-2); }
.protocol-card:hover::before { transform: scaleX(1); }

.protocol-code {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 500;
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.protocol-card h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
}
.protocol-card p {
  color: var(--ink-soft);
  font-size: 0.9375rem;
  line-height: 1.65;
  margin-bottom: 18px;
}
.protocol-duration {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.8125rem;
  color: var(--ink-soft);
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.protocol-icon {
  width: 44px; height: 44px;
  stroke: var(--accent); fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
  margin-bottom: 18px;
}

@media (max-width: 768px) {
  .protocol-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   #fiyat — Pricing
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 32px);
  text-align: center;
  position: relative;
  transition: transform 360ms cubic-bezier(.22,.68,.31,1.04), box-shadow 360ms, border-color 300ms;
}
.price-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px -12px rgba(37,99,235,0.12); border-color: var(--accent-2); }
.price-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}
.price-card.featured::after {
  content: 'Popüler';
  position: absolute; top: -1px; right: 24px;
  background: var(--accent); color: #fff;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 0 0 6px 6px;
}

.price-name {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.price-amount {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--ink);
  line-height: 1.1;
}
.price-amount small {
  font-size: 0.5em;
  font-weight: 500;
  color: var(--ink-soft);
}
.price-unit {
  font-size: 0.8125rem;
  color: var(--ink-soft);
  margin-top: 4px;
  margin-bottom: 20px;
}
.price-features {
  list-style: none;
  text-align: left;
  margin-bottom: 20px;
}
.price-features li {
  padding: 8px 0;
  font-size: 0.875rem;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  display: flex; align-items: flex-start; gap: 8px;
}
.price-features li:last-child { border-bottom: 0; }
.price-features li svg {
  width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; fill: none;
}
.price-features .included svg { stroke: var(--accent); }
.price-features .excluded { opacity: 0.5; }
.price-features .excluded svg { stroke: var(--ink-soft); }

.price-disclaimer {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--ink-soft);
  font-style: italic;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

@media (max-width: 1024px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; } }

/* ============================================================
   Testimonials
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.testimonials-grid .testimonial-card:first-child {
  grid-row: span 2;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 32px);
  position: relative;
  border-left: 3px solid transparent;
  transition: transform 360ms cubic-bezier(.22,.68,.31,1.04), box-shadow 360ms, border-left-color 300ms;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px -8px rgba(0,0,0,0.1); border-left-color: var(--accent); }
.testimonial-card::before {
  content: '\201C';
  font-size: 3rem;
  line-height: 1;
  color: var(--accent-2);
  font-family: Georgia, serif;
  opacity: 0.4;
}
.testimonial-text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author { font-weight: 700; font-size: 0.875rem; }
.testimonial-meta {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  color: var(--ink-soft);
  margin-top: 4px;
}

@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-grid .testimonial-card:first-child { grid-row: auto; }
}

/* ============================================================
   FAQ — pure CSS accordion
   ============================================================ */
.faq-list { max-width: 780px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  color: var(--ink);
  transition: color 200ms;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; content: ''; }
.faq-item summary:hover { color: var(--accent); }

.faq-item summary .faq-chevron {
  width: 20px; height: 20px; flex-shrink: 0;
  stroke: var(--ink-soft); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  transition: transform 360ms cubic-bezier(.4,0,.2,1);
}
.faq-item[open] summary .faq-chevron { transform: rotate(180deg); }

.faq-item > .faq-body {
  height: 0;
  padding: 0 0;
  overflow: hidden;
  transition: height 360ms cubic-bezier(.4,0,.2,1),
              padding-block-end 360ms cubic-bezier(.4,0,.2,1);
}
.faq-item[open] > .faq-body {
  height: auto;
  padding-block-end: 24px;
}
.faq-body p {
  color: var(--ink-soft);
  font-size: 0.9375rem;
  line-height: 1.7;
}
@media (prefers-reduced-motion: reduce) {
  .faq-item > .faq-body { transition: none; }
}

/* ============================================================
   #basvuru — Form
   ============================================================ */
.form-section {
  background:
    radial-gradient(circle at 20% 80%, rgba(37,99,235,0.04) 0%, transparent 50%),
    var(--surface);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.form-info h2 { margin-bottom: 20px; }
.form-info p { color: var(--ink-soft); line-height: 1.7; margin-bottom: 24px; }
.form-contact-item {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
  padding: 10px 0;
  transition: transform 240ms cubic-bezier(.4,0,.2,1);
}
.form-contact-item:hover { transform: translateX(4px); }
.form-contact-item svg {
  width: 20px; height: 20px;
  stroke: var(--accent); fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
  margin-top: 2px;
  transition: transform 240ms cubic-bezier(.4,0,.2,1);
}
.form-contact-item:hover svg { transform: scale(1.08); }
.form-contact-item span { font-size: 0.9375rem; color: var(--ink-soft); }
.form-contact-item a { color: var(--ink); font-weight: 500; word-break: break-all; }

.site-form { display: flex; flex-direction: column; gap: 18px; }

.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink);
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--ink);
  background: var(--bg);
  transition: border-color 200ms, box-shadow 200ms;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.12);
}
.field textarea { min-height: 120px; resize: vertical; }
.field select { cursor: pointer; }

.field input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: auto;
  width: 18px; height: 18px;
  min-width: 18px; min-height: 18px;
  padding: 0; border: 0; margin: 2px 0 0;
  accent-color: var(--accent);
}

.field-check {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}
.field-check label {
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--ink-soft);
  line-height: 1.5;
}

.honeypot {
  position: absolute; left: -9999px; opacity: 0;
}

.form-submit {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: #fff;
  padding: 14px 36px; border-radius: 6px;
  font-weight: 600; font-size: 1rem;
  border: 0; cursor: pointer;
  font-family: inherit;
  transition: background 240ms cubic-bezier(.4,0,.2,1), color 240ms, transform 180ms;
  align-self: flex-start;
}
.form-submit:hover, .form-submit:focus-visible {
  background: var(--ink); color: var(--surface); transform: translateY(-2px);
}
.form-submit:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

@media (max-width: 768px) {
  .form-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Counter Animation
   ============================================================ */
.counter-up {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 700;
}

/* ============================================================
   Reveal on scroll
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 640ms cubic-bezier(.16,.73,.3,1),
              transform 640ms cubic-bezier(.16,.73,.3,1);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
.reveal[style*="--i"] {
  transition-delay: calc(var(--i) * 90ms);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}
html.no-js .reveal { opacity: 1; transform: none; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: clamp(48px, 6vw, 80px) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo { color: #fff; margin-bottom: 16px; }
.footer-brand .logo:hover { color: var(--accent-2); }
.footer-brand p { font-size: 0.875rem; line-height: 1.65; max-width: 280px; }
.footer-brand .footer-est {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  color: var(--accent-2);
  margin-top: 14px;
}

.footer-col h4 {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 0.8125rem;
  padding: 5px 0;
  transition: color 200ms, padding-left 280ms;
  text-decoration: none;
}
.footer-col a:hover { color: #fff; padding-left: 4px; }

.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 10px;
}
.footer-contact-item svg {
  width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px;
  stroke: var(--accent-2); fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.footer-contact-item span, .footer-contact-item a {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.6);
}
.footer-contact-item a:hover { color: #fff; padding-left: 0; }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  padding: 24px 0;
  font-size: 0.75rem;
}
.footer-bottom a { color: rgba(255,255,255,0.5); padding: 0; }
.footer-bottom a:hover { color: #fff; }
.footer-legal { display: flex; gap: 16px; flex-wrap: wrap; }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   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);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 16px 48px -12px rgba(0,0,0,0.2);
  transform: translateY(140%);
  opacity: 0;
  transition: transform 360ms cubic-bezier(.22,.68,.31,1.04), opacity 280ms;
  z-index: 9999;
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }

@media (min-width: 640px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}
@media (max-width: 639px) {
  .cookie-banner {
    bottom: 0; left: 0; right: 0;
    max-width: 100%;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    padding: 20px 16px;
    padding-bottom: calc(20px + env(safe-area-inset-bottom, 0px));
    border-bottom: none;
  }
  .cookie-banner .cookie-actions { gap: 6px; }
  .cookie-banner .cookie-btn { min-width: 80px; padding: 12px 10px; }
}

.cookie-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.cookie-text {
  font-size: 0.8125rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 18px;
}
.cookie-text a { color: var(--accent); text-decoration: underline; }
.cookie-actions {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.cookie-btn {
  flex: 1; min-width: 100px;
  padding: 12px 16px;
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid var(--ink);
  background: transparent;
  color: var(--ink);
  transition: background 200ms, color 200ms, border-color 200ms, transform 180ms;
  min-height: 48px;
}
.cookie-btn:hover { background: var(--surface-2); color: var(--ink); transform: translateY(-1px); }
.cookie-btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.cookie-btn-reject {
  background: var(--ink); color: var(--surface); border-color: var(--ink);
}
.cookie-btn-reject:hover { background: transparent; color: var(--ink); border-color: var(--ink); }
.cookie-btn-accept {
  background: var(--accent); color: #fff; border-color: var(--accent);
}
.cookie-btn-accept:hover { background: var(--ink); color: var(--surface); border-color: var(--ink); }

/* ============================================================
   INNER PAGES — content
   ============================================================ */
.page-hero {
  padding: clamp(48px, 6vw, 72px) 0 clamp(32px, 4vw, 48px);
  background: var(--bg);
  position: relative;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, var(--line) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.35;
  pointer-events: none;
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  position: relative; z-index: 1;
}
.page-hero p {
  color: var(--ink-soft);
  max-width: 600px;
  margin-top: 12px;
  position: relative; z-index: 1;
}

.page-content {
  padding: clamp(40px, 6vw, 72px) 0;
}
.page-content h2 {
  font-size: 1.5rem;
  margin: 40px 0 16px;
}
.page-content h2:first-child { margin-top: 0; }
.page-content h3 {
  font-size: 1.125rem;
  margin: 28px 0 12px;
}
.page-content .container { max-width: 740px; }
.page-content p {
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 16px;
}
.page-content a { word-break: break-word; overflow-wrap: anywhere; }
.page-content ul, .page-content ol {
  margin: 12px 0 20px 24px;
  color: var(--ink-soft);
  line-height: 1.75;
}
.page-content li { margin-bottom: 6px; }

/* ============================================================
   CONTACT PAGE — channels grid
   ============================================================ */
.contact-channels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 48px;
}
.channel-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 240ms cubic-bezier(.4,0,.2,1), background 240ms;
}
.channel-item:hover { transform: translateX(4px); background: var(--surface-2); }
.channel-item svg {
  width: 22px; height: 22px;
  stroke: var(--accent); fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
  margin-top: 2px;
  transition: color 240ms, transform 240ms cubic-bezier(.4,0,.2,1);
}
.channel-item:hover svg { transform: scale(1.08); }
.channel-label { font-weight: 600; font-size: 0.8125rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.04em; }
.channel-value { font-size: 0.9375rem; color: var(--ink); margin-top: 4px; word-break: break-all; overflow-wrap: anywhere; }
.channel-value a { color: var(--ink); font-weight: 500; }
.channel-value a:hover { color: var(--accent); }

@media (max-width: 640px) {
  .contact-channels { grid-template-columns: 1fr; }
}

/* ============================================================
   TEAM SECTION
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.team-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 32px);
  transition: transform 360ms cubic-bezier(.22,.68,.31,1.04), box-shadow 360ms, border-color 300ms;
}
.team-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px -12px rgba(37,99,235,0.1); border-color: var(--accent-2); }
.team-card-photo {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--surface-2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.team-card-photo svg {
  width: 32px; height: 32px;
  stroke: var(--accent); fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.team-card h3 { font-size: 1.125rem; margin-bottom: 4px; }
.team-card .team-role {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 14px;
}
.team-card p {
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

@media (max-width: 768px) { .team-grid { grid-template-columns: 1fr; } }

/* About section grid (hakkimizda) */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ============================================================
   THANK YOU PAGE
   ============================================================ */
.thankyou-section {
  min-height: 60vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 80px 0;
}
.thankyou-icon {
  width: 64px; height: 64px;
  stroke: var(--accent); fill: none;
  stroke-width: 1.5;
  margin: 0 auto 24px;
}
.thankyou-section h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 16px; }
.thankyou-section p { color: var(--ink-soft); font-size: 1.0625rem; margin-bottom: 32px; max-width: 480px; margin-left: auto; margin-right: auto; }

/* ============================================================
   404 PAGE
   ============================================================ */
.error-section {
  min-height: 60vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 80px 0;
}
.error-code {
  font-family: 'IBM Plex Mono', monospace;
  font-size: clamp(5rem, 12vw, 10rem);
  font-weight: 700;
  color: var(--line);
  line-height: 1;
  margin-bottom: 16px;
}
.error-section h1 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 12px; }
.error-section p { color: var(--ink-soft); margin-bottom: 28px; }

/* ============================================================
   SITEMAP PAGE
   ============================================================ */
.sitemap-list {
  columns: 2;
  column-gap: 40px;
  list-style: none;
}
.sitemap-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  break-inside: avoid;
}
.sitemap-list a { font-weight: 500; }
@media (max-width: 640px) { .sitemap-list { columns: 1; } }

/* ============================================================
   CANCELLATION POLICY TABLE
   ============================================================ */
.cancel-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 24px 0;
}
.cancel-tier {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}
.cancel-tier-label {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--accent);
  margin-bottom: 8px;
}
.cancel-tier-result {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 6px;
}
.cancel-tier p {
  font-size: 0.8125rem;
  color: var(--ink-soft);
}
@media (max-width: 640px) { .cancel-tiers { grid-template-columns: 1fr; } }

/* ============================================================
   A11y
   ============================================================ */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ============================================================
   ENHANCED ANIMATIONS — clinical micro-effects
   ============================================================ */

/* Stagger-reveal for grid children — scoped to pre-reveal state */
.protocol-grid .reveal:not(.is-in):nth-child(1) { transition-delay: 0ms; }
.protocol-grid .reveal:not(.is-in):nth-child(2) { transition-delay: 140ms; }
.protocol-grid .reveal:not(.is-in):nth-child(3) { transition-delay: 280ms; }

.pricing-grid .reveal:not(.is-in):nth-child(1) { transition-delay: 0ms; }
.pricing-grid .reveal:not(.is-in):nth-child(2) { transition-delay: 120ms; }
.pricing-grid .reveal:not(.is-in):nth-child(3) { transition-delay: 240ms; }
.pricing-grid .reveal:not(.is-in):nth-child(4) { transition-delay: 360ms; }

.testimonials-grid .reveal:not(.is-in):nth-child(1) { transition-delay: 0ms; }
.testimonials-grid .reveal:not(.is-in):nth-child(2) { transition-delay: 160ms; }
.testimonials-grid .reveal:not(.is-in):nth-child(3) { transition-delay: 320ms; }

.team-grid .reveal:not(.is-in):nth-child(1) { transition-delay: 0ms; }
.team-grid .reveal:not(.is-in):nth-child(2) { transition-delay: 160ms; }
.team-grid .reveal:not(.is-in):nth-child(3) { transition-delay: 320ms; }

/* Clinical pulse — subtle glow on featured card */
.price-card.featured {
  animation: clinicalPulse 5s cubic-bezier(.4,0,.6,1) infinite;
}
@keyframes clinicalPulse {
  0%, 100% { box-shadow: 0 0 0 1px var(--accent), 0 4px 20px -8px rgba(37,99,235,0.12); }
  50% { box-shadow: 0 0 0 1px var(--accent), 0 12px 40px -8px rgba(37,99,235,0.22); }
}

/* Protocol card — top-accent bar sweep + subtle inner glow on hover */
.protocol-card::before {
  transition: transform 520ms cubic-bezier(.22,.68,.31,1.04);
}
.protocol-card:hover {
  box-shadow: 0 20px 56px -16px rgba(37,99,235,0.14), 0 0 0 1px rgba(37,99,235,0.08);
}

/* Testimonial card — subtle quote glow on hover */
.testimonial-card:hover::before {
  color: var(--accent);
  opacity: 0.7;
  transition: color 300ms, opacity 300ms;
}

/* Process step — marker pulse on hover */
.process-step:hover .step-marker {
  box-shadow: 0 0 0 8px rgba(37,99,235,0.10), 0 0 16px rgba(37,99,235,0.06);
  transition: background 300ms cubic-bezier(.22,.68,.31,1.04), border-color 300ms, box-shadow 400ms cubic-bezier(.22,.68,.31,1.04);
}

/* Channel items — slide-in accent border */
.channel-item {
  border-left: 3px solid transparent;
  transition: transform 280ms cubic-bezier(.22,.68,.31,1.04), background 240ms, border-left-color 300ms, box-shadow 300ms;
}
.channel-item:hover {
  border-left-color: var(--accent);
  box-shadow: 0 4px 16px -4px rgba(37,99,235,0.08);
}

/* Team card — subtle lift with glow */
.team-card:hover .team-card-photo {
  background: rgba(37,99,235,0.08);
  transition: background 360ms cubic-bezier(.22,.68,.31,1.04);
}
.team-card:hover .team-card-photo svg { stroke: var(--accent); }

/* FAQ — smoother open/close with accent */
.faq-item summary .faq-chevron {
  transition: transform 440ms cubic-bezier(.22,.68,.31,1.04), stroke 200ms;
}
.faq-item summary:hover .faq-chevron { stroke: var(--accent); }
.faq-item[open] summary { color: var(--accent); }
.faq-item[open] summary .faq-chevron { stroke: var(--accent); }

/* Buttons — subtle press effect */
.btn-primary:active, .btn-ghost:active, .form-submit:active {
  transform: translateY(0) scale(0.97);
  transition-duration: 80ms;
}

/* Hero CTA subtle breathe glow */
.hero-cta-row .btn-primary {
  position: relative;
}
.hero-cta-row .btn-primary::after {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 10px;
  background: transparent;
  box-shadow: 0 0 0 0 rgba(37,99,235,0);
  transition: box-shadow 360ms cubic-bezier(.22,.68,.31,1.04);
  pointer-events: none;
}
.hero-cta-row .btn-primary:hover::after {
  box-shadow: 0 0 24px 4px rgba(37,99,235,0.16);
}

/* Spine SVG — add subtle floating motion */
.spine-svg {
  animation: spineFloat 8s ease-in-out infinite;
}
@keyframes spineFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Nav link hover — smooth underline slide from left */
.nav-desktop a::after {
  transition: width 360ms cubic-bezier(.22,.68,.31,1.04);
}

/* Mobile drawer links — stagger entrance */
.mobile-drawer.is-open a:nth-of-type(1) { transition-delay: 60ms; }
.mobile-drawer.is-open a:nth-of-type(2) { transition-delay: 120ms; }
.mobile-drawer.is-open a:nth-of-type(3) { transition-delay: 180ms; }
.mobile-drawer.is-open a:nth-of-type(4) { transition-delay: 240ms; }
.mobile-drawer.is-open a:nth-of-type(5) { transition-delay: 300ms; }

/* Footer links — subtle hover lift */
.footer-col a { transition: color 200ms, padding-left 280ms cubic-bezier(.22,.68,.31,1.04); }

/* Cancel tier cards — hover effect */
.cancel-tier {
  transition: transform 320ms cubic-bezier(.22,.68,.31,1.04), box-shadow 320ms, border-color 300ms;
}
.cancel-tier:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px -8px rgba(37,99,235,0.10);
  border-color: var(--accent-2);
}

/* Price card hover — clinical glow */
.price-card:hover {
  box-shadow: 0 20px 56px -16px rgba(37,99,235,0.14);
}

/* Smooth section transitions */
.section-eyebrow {
  transition: color 300ms;
}

/* Form inputs — clinical focus glow */
.field input:focus, .field select:focus, .field textarea:focus {
  box-shadow: 0 0 0 3px rgba(37,99,235,0.12), 0 2px 8px -2px rgba(37,99,235,0.08);
}

/* Form submit — clinical accent */
.form-submit:hover {
  box-shadow: 0 8px 24px -8px rgba(37,99,235,0.20);
}

/* EKG-like line decoration on section-alt borders */
.section-alt {
  position: relative;
}
.section-alt::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: min(200px, 30vw);
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.3;
  border-radius: 1px;
}

/* Hero image subtle zoom on load */
.hero-visual img {
  transition: transform 12s cubic-bezier(.16,.73,.3,1);
}
.hero-visual img:hover {
  transform: scale(1.02);
}

/* Clinical glow on stat numbers */
.stat-number {
  transition: color 300ms;
}
.stat-item:hover .stat-number {
  color: var(--accent);
}

/* Trust badge hover */
.trust-badge {
  transition: background 240ms, border-color 240ms, transform 240ms cubic-bezier(.22,.68,.31,1.04);
}
.trust-badge:hover {
  background: rgba(37,99,235,0.06);
  border-color: var(--accent-2);
  transform: translateY(-2px);
}

/* Step content subtle slide on hover */
.process-step:hover .step-content h3 {
  color: var(--accent);
  transition: color 300ms;
}

/* Footer link hover — accent underline */
.footer-contact-item a {
  transition: color 200ms;
}
.footer-contact-item a:hover {
  color: var(--accent-2) !important;
}

/* Page-hero accent line */
.page-hero {
  border-bottom: 3px solid var(--accent);
}

/* Cookie banner entrance — stagger buttons */
.cookie-banner.is-visible .cookie-btn:nth-child(1) { transition-delay: 80ms; }
.cookie-banner.is-visible .cookie-btn:nth-child(2) { transition-delay: 160ms; }
.cookie-banner.is-visible .cookie-btn:nth-child(3) { transition-delay: 240ms; }

@media (prefers-reduced-motion: reduce) {
  .price-card.featured { animation: none; }
  .spine-svg { animation: none; }
  .process-step:hover .step-marker { box-shadow: none; }
  .hero-cta-row .btn-primary:hover::after { box-shadow: none; }
  .btn-primary:active, .btn-ghost:active, .form-submit:active { transform: none; }
  .cancel-tier:hover { transform: none; }
  .protocol-card:hover { transform: none; }
  .price-card:hover { transform: none; }
  .team-card:hover { transform: none; }
  .testimonial-card:hover { transform: none; }
  .channel-item:hover { transform: none; }
  .trust-badge:hover { transform: none; }
  .hero-visual img { transition: none; }
  .section-alt::before { display: none; }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .site-header, .cookie-banner, .mobile-drawer, .drawer-backdrop, .nav-toggle { display: none !important; }
  main { padding-top: 0 !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  body { background: #fff; color: #000; }
}
