/* ================================================
   Beyaz Saat Atölyesi — Master Stylesheet
   ================================================ */

:root {
  interpolate-size: allow-keywords;

  --bg: #F4F6F8;
  --surface: #FFFFFF;
  --surface-2: #EEF1F5;
  --ink: #1A2332;
  --ink-soft: #5A6A7E;
  --accent: #2563EB;
  --accent-2: #F59E0B;
  --line: #D1D8E0;
  --line-strong: #A0AEC0;

  --header-h: 72px;
  --max-w: 1320px;
  --pad-x: clamp(16px, 4vw, 32px);
  --radius: 8px;
  --radius-lg: 14px;
}

html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  overflow-x: hidden;
  max-width: 100vw;
  margin: 0;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color 240ms ease; }
a:hover { color: var(--accent-2); }
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.012em;
  color: var(--ink);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); }
h4 { font-size: 1.05rem; }

.mono { font-family: 'JetBrains Mono', 'Consolas', monospace; font-weight: 500; }

/* ─── Skip link ─── */
.skip-link {
  position: fixed; top: -100%; left: 16px;
  background: var(--ink); color: var(--surface);
  padding: 10px 18px; border-radius: var(--radius);
  z-index: 10000; font-size: 0.875rem;
}
.skip-link:focus { top: 12px; }

/* ─── Container ─── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

/* ─── Section base ─── */
section {
  padding: clamp(3rem, 8vw, 6rem) 0;
}
.section-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.section-title {
  margin-bottom: 1rem;
}
.section-sub {
  color: var(--ink-soft);
  max-width: 560px;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ================================================
   HEADER — sticky with morph
   ================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1080;
  height: var(--header-h);
  background: rgba(244,246,248,0.85);
  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(255,255,255,0.98);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,0.18);
  height: 62px;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
  text-decoration: none;
  z-index: 1100;
}
.logo:hover { color: var(--ink); }
.logo svg { flex-shrink: 0; }
.logo-accent { color: var(--accent); }

/* Desktop nav */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 6px;
}
@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
}
.nav-desktop a {
  position: relative;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  padding: 8px 14px;
  border-radius: 6px;
  transition: color 200ms, background 200ms;
  text-decoration: none;
}
.nav-desktop a:hover {
  color: var(--accent);
  background: rgba(37,99,235,0.06);
}
.nav-desktop a.is-active {
  color: var(--accent);
}
.nav-desktop .nav-cta {
  background: var(--ink);
  color: var(--surface);
  padding: 9px 22px;
  border-radius: 6px;
  margin-left: 8px;
  font-weight: 600;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover {
  background: var(--accent);
  color: var(--surface);
}
.nav-desktop .nav-cta.is-active::after { display: none; }

/* Nav toggle */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px; height: 44px;
  background: none; border: none;
  cursor: pointer;
  z-index: 1100;
  position: relative;
  gap: 5px;
  padding: 0;
}
@media (min-width: 1024px) {
  .nav-toggle { display: none; }
}
.nav-toggle:hover {
  background: rgba(37,99,235,0.04);
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 200ms;
  transform-origin: center;
}
.nav-toggle::before {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 6px;
  border: 1.5px solid var(--ink-soft);
  transition: border-color 200ms;
}
.nav-toggle:hover::before {
  border-color: var(--accent);
}
.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);
}

/* ─── Drawer (outside header) ─── */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
}
.drawer-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}
.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  background: var(--surface);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  padding: calc(var(--header-h) + 24px) 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
}
.drawer.is-open {
  transform: translateX(0);
}
.drawer a {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: color 200ms, padding-left 200ms;
}
.drawer a:hover,
.drawer a.is-active {
  color: var(--accent);
  padding-left: 8px;
}
.drawer .drawer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  background: var(--ink);
  color: var(--surface);
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  text-align: center;
  border-bottom: none;
}
.drawer .drawer-cta:hover {
  background: var(--accent);
  color: var(--surface);
  padding-left: 28px;
}

/* ─── Drawer close button ─── */

/* ─── Scroll progress ─── */
.scroll-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--accent);
  width: 0%;
  z-index: 1;
  pointer-events: none;
}

/* ─── Main offset ─── */
main {
  padding-top: var(--header-h);
}
main section[id] {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

/* ================================================
   HERO — type-only-massive
   ================================================ */
.hero {
  position: relative;
  padding: clamp(4rem, 10vw, 8rem) 0 clamp(3rem, 6vw, 5rem);
  overflow: hidden;
  background: var(--bg);
}
.hero__deco {
  position: absolute;
  top: 50%; right: -5%;
  transform: translateY(-50%);
  width: clamp(300px, 45vw, 560px);
  height: clamp(300px, 45vw, 560px);
  opacity: 0.04;
  pointer-events: none;
}
.hero__deco svg { width: 100%; height: 100%; }
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}
.hero__eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero__eyebrow::before {
  content: '';
  width: 28px; height: 2px;
  background: var(--accent);
  border-radius: 1px;
}
.hero__number {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(3rem, 8vw, 4.5rem);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--accent);
  margin-bottom: 8px;
}
.hero__rest {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.1;
}
.hero__sub {
  margin-top: 24px;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--ink-soft);
  max-width: 520px;
  line-height: 1.75;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.trust-badge svg {
  flex-shrink: 0;
  color: var(--accent);
}

/* Hero pendulum decoration */
@keyframes pendulum-swing {
  0%, 100% { transform: rotate(-8deg); }
  50% { transform: rotate(8deg); }
}
.hero__pendulum {
  position: absolute;
  top: 15%; left: 60%;
  width: 2px; height: 120px;
  transform-origin: top center;
  pointer-events: none;
  opacity: 0.08;
}
.hero__pendulum::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--accent);
}
.hero__pendulum.is-in {
  animation: pendulum-swing 4s ease-in-out infinite;
}
@media (max-width: 768px) {
  .hero__pendulum { display: none; }
}

/* ================================================
   BUTTONS
   ================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease,
              transform 180ms ease, box-shadow 220ms ease;
  position: relative;
}
.btn-primary {
  background: var(--ink);
  color: var(--surface);
  border-color: var(--ink);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent);
  color: var(--surface);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px -6px rgba(37,99,235,0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--ink);
  transform: translateY(-2px);
}

/* Crown-turn on CTA hover */
.btn .btn-crown {
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
}
.btn:hover .btn-crown {
  transform: rotate(90deg);
}

/* ================================================
   CATALOG — service cards 4-col grid + filter
   ================================================ */
.katalog { background: var(--bg); }

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}
.filter-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 8px 20px;
  border: 1.5px solid var(--line);
  border-radius: 100px;
  background: var(--surface);
  color: var(--ink-soft);
  cursor: pointer;
  transition: background 200ms, color 200ms, border-color 200ms, transform 180ms;
}
.filter-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.filter-btn.is-active {
  background: var(--accent);
  color: var(--surface);
  border-color: var(--accent);
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 1280px) { .svc-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .svc-grid { grid-template-columns: 1fr; } }

.svc-card {
  position: relative;
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 22px 20px;
  overflow: hidden;
  transition: transform 220ms cubic-bezier(.2,.7,.2,1),
              box-shadow 220ms cubic-bezier(.2,.7,.2,1),
              border-color 220ms;
  min-width: 0;
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px -8px rgba(37,99,235,0.18);
  border-color: var(--accent);
}
.svc-card[hidden] { display: none; }
.svc-card__head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.svc-card__icon {
  flex-shrink: 0;
  width: 20px; height: 20px;
  color: var(--accent);
}
.svc-card__title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
  overflow-wrap: break-word;
}
.svc-card__desc {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 12px;
}
.svc-card__price {
  font-family: 'JetBrains Mono', 'Consolas', monospace;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--accent);
}

/* Theme-signature: clock dial on hover */
.svc-card__clock {
  position: absolute;
  bottom: 10px; right: 10px;
  width: 64px; height: 64px;
  opacity: 0;
  transition: opacity 280ms ease;
  pointer-events: none;
}
.svc-card:hover .svc-card__clock {
  opacity: 1;
}
.svc-card__second {
  transform-origin: 30px 30px;
}
@keyframes tick-second {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.svc-card:hover .svc-card__second {
  animation: tick-second 1s linear forwards;
}

/* ================================================
   STATS BAND
   ================================================ */
.stats-band {
  background: var(--ink);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  position: relative;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
@media (max-width: 640px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
.stat {
  color: var(--surface);
}
.stat__num {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--accent-2);
  line-height: 1;
  margin-bottom: 8px;
}
.stat__label {
  font-size: 0.88rem;
  font-weight: 500;
  opacity: 0.7;
}

/* Gear animation on stats */
@keyframes gear-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.stats-band .gear-deco {
  position: absolute;
  opacity: 0.04;
  pointer-events: none;
  animation: gear-spin 20s linear infinite;
}
.gear-deco--left { top: -30px; left: -20px; width: 160px; height: 160px; }
.gear-deco--right { bottom: -40px; right: -30px; width: 200px; height: 200px; animation-direction: reverse; }

/* ================================================
   BRANDS
   ================================================ */
.markalar { background: var(--surface); }
.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 14px;
}
.brand-pill {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 12px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
  transition: border-color 220ms, color 220ms, transform 180ms, box-shadow 220ms;
  text-align: center;
}
.brand-pill:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 6px 18px -6px rgba(37,99,235,0.12);
}

/* ================================================
   PROCESS — 5 steps horizontal
   ================================================ */
.surec { background: var(--bg); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  counter-reset: step;
}
@media (max-width: 1024px) {
  .process-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .process-grid { grid-template-columns: 1fr; gap: 16px; }
}
.step-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  position: relative;
  counter-increment: step;
  border: 1px solid var(--line);
  transition: transform 220ms cubic-bezier(.2,.7,.2,1), box-shadow 220ms;
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px -8px rgba(0,0,0,0.1);
}
.step-card__num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--surface);
  background: var(--accent);
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.step-card__icon {
  color: var(--accent);
  margin-bottom: 14px;
  transition: transform 400ms cubic-bezier(.2,.7,.2,1);
}
.step-card:hover .step-card__icon {
  transform: rotate(45deg);
}
.step-card__title {
  font-size: 1rem;
  margin-bottom: 8px;
}
.step-card__time {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: var(--accent-2);
  margin-bottom: 10px;
  font-weight: 500;
}
.step-card__desc {
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ================================================
   PRICING
   ================================================ */
.fiyatlar { background: var(--surface); }
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
@media (max-width: 768px) {
  .price-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}
.price-card {
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  transition: transform 220ms cubic-bezier(.2,.7,.2,1), box-shadow 220ms, border-color 220ms;
  position: relative;
  overflow: hidden;
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px -12px rgba(37,99,235,0.15);
}
.price-card--featured {
  border-color: var(--accent);
  background: var(--surface);
}
.price-card--featured::before {
  content: 'En Popüler';
  position: absolute;
  top: 16px; right: -30px;
  background: var(--accent);
  color: var(--surface);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 36px;
  transform: rotate(45deg);
  letter-spacing: 0.04em;
}
.price-card__name {
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.price-card__amount {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}
.price-card__suffix {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.price-card__list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}
.price-card__list li {
  font-size: 0.88rem;
  padding: 7px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--ink);
}
.price-card__list li svg { flex-shrink: 0; margin-top: 3px; }
.price-card__list li.excluded {
  color: var(--ink-soft);
  text-decoration: line-through;
  opacity: 0.6;
}
.price-card__delivery {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.price-disclaimer {
  text-align: center;
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-top: 28px;
  font-style: italic;
}

/* Tick-mark reveal on pricing */
@keyframes tick-reveal {
  from { opacity: 0; transform: scale(0.5); }
  to { opacity: 1; transform: scale(1); }
}
.price-card.is-in .price-card__list li svg {
  animation: tick-reveal 300ms cubic-bezier(.2,.7,.2,1) both;
}
.price-card.is-in .price-card__list li:nth-child(1) svg { animation-delay: 80ms; }
.price-card.is-in .price-card__list li:nth-child(2) svg { animation-delay: 140ms; }
.price-card.is-in .price-card__list li:nth-child(3) svg { animation-delay: 200ms; }
.price-card.is-in .price-card__list li:nth-child(4) svg { animation-delay: 260ms; }
.price-card.is-in .price-card__list li:nth-child(5) svg { animation-delay: 320ms; }
.price-card.is-in .price-card__list li:nth-child(6) svg { animation-delay: 380ms; }

/* ================================================
   TESTIMONIALS
   ================================================ */
.yorumlar { background: var(--bg); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .testimonial-grid { grid-template-columns: 1fr; }
}
.testimonial {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  border: 1px solid var(--line);
  position: relative;
  transition: transform 220ms ease, box-shadow 220ms;
}
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px -8px rgba(0,0,0,0.08);
}
.testimonial::before {
  content: '\201C';
  position: absolute;
  top: 16px; left: 22px;
  font-family: 'DM Sans', serif;
  font-size: 3rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.2;
}
.testimonial__text {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.testimonial__author {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--ink);
}
.testimonial__meta {
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-top: 2px;
}

/* ================================================
   FAQ — pure CSS accordion
   ================================================ */
.sss { background: var(--surface); }
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  overflow: hidden;
  transition: border-color 240ms;
}
.faq-item[open] {
  border-color: var(--accent);
}
.faq-item summary {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 18px 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  list-style: none;
  user-select: none;
  color: var(--ink);
  transition: color 200ms;
}
.faq-item summary:hover {
  color: var(--accent);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '';
  flex-shrink: 0;
  width: 10px; height: 10px;
  border-right: 2px solid var(--ink-soft);
  border-bottom: 2px solid var(--ink-soft);
  transform: rotate(45deg);
  transition: transform 360ms cubic-bezier(.4,0,.2,1);
}
.faq-item[open] summary::after {
  transform: rotate(-135deg);
}
.faq-item[open] summary { color: var(--accent); }

.faq-item > .faq-body {
  height: 0;
  padding: 0 22px;
  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: 22px;
}
.faq-body p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.7;
}
@media (prefers-reduced-motion: reduce) {
  .faq-item > .faq-body { transition: none; }
}

/* ================================================
   CTA BAND
   ================================================ */
.cta-band {
  background: var(--accent);
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  text-align: center;
  color: var(--surface);
}
.cta-band h2 { color: var(--surface); margin-bottom: 10px; }
.cta-band p { color: rgba(255,255,255,0.8); margin-bottom: 28px; font-size: 1.05rem; }
.cta-band .btn-primary {
  background: var(--surface);
  color: var(--accent);
  border-color: var(--surface);
}
.cta-band .btn-primary:hover, .cta-band .btn-primary:focus-visible {
  background: var(--ink);
  color: var(--surface);
  border-color: var(--ink);
}

/* ================================================
   MANIFESTO / QUOTE
   ================================================ */
.manifesto {
  background: var(--ink);
  padding: clamp(3rem, 8vw, 5.5rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.manifesto__quote {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: clamp(1.3rem, 3vw, 2rem);
  color: var(--surface);
  line-height: 1.5;
  max-width: 700px;
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
}
.manifesto__author {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  position: relative;
  z-index: 1;
}
.manifesto__deco {
  position: absolute;
  opacity: 0.04;
  pointer-events: none;
}

/* ================================================
   FORMS
   ================================================ */
.form-section { background: var(--bg); }
.site-form {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
}
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  padding: 12px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  transition: border-color 200ms, box-shadow 200ms;
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}
.field textarea { resize: vertical; min-height: 120px; }
.field select { cursor: pointer; }
.field-kvkk {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}
.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);
  cursor: pointer;
}
.field-kvkk label {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--ink-soft);
  line-height: 1.5;
}
.honeypot {
  position: absolute; left: -9999px; opacity: 0;
}

/* ================================================
   CONTACT CHANNELS (iletisim)
   ================================================ */
.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px 18px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform 240ms cubic-bezier(.4,0,.2,1),
              background 240ms, border-color 240ms;
}
.contact-row:hover {
  transform: translateX(4px);
  border-color: var(--accent);
}
.contact-row__icon {
  width: 22px; height: 22px;
  color: var(--ink-soft);
  transition: color 240ms, transform 240ms cubic-bezier(.4,0,.2,1);
  margin-top: 2px;
}
.contact-row:hover .contact-row__icon {
  color: var(--accent);
  transform: scale(1.08);
}
.contact-row__label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.contact-row__value {
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.55;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.contact-row__value a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.contact-row__value a:hover { color: var(--accent); }

/* ================================================
   TEAM (hakkimizda)
   ================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .team-grid { grid-template-columns: 1fr; }
}
.team-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--line);
  transition: transform 220ms ease, box-shadow 220ms;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px -8px rgba(0,0,0,0.08);
}
.team-card__photo {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--accent);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
}
.team-card__name {
  font-size: 1.05rem;
  margin-bottom: 4px;
}
.team-card__role {
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}
.team-card__bio {
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* ================================================
   TABLE SCROLL
   ================================================ */
.table-scroll {
  display: block; width: 100%; max-width: 100%; min-width: 0;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: 6px;
}
.table-scroll > table { margin: 0 !important; min-width: 480px; width: 100%; }
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
th {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--bg);
  color: var(--ink-soft);
  padding: 12px 16px;
  text-align: left;
  border-bottom: 2px solid var(--line);
}
td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}
tr:last-child td { border-bottom: none; }
tr:hover td { background: rgba(37,99,235,0.02); }

/* ================================================
   FOOTER
   ================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.6);
  padding: clamp(3rem, 6vw, 4.5rem) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: clamp(2rem, 4vw, 3rem);
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-col h4 {
  color: var(--surface);
  font-size: 0.9rem;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}
.footer-col p, .footer-col a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  text-decoration: none;
  display: block;
}
.footer-col a:hover { color: var(--accent-2); }
.footer-brand {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--surface);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

/* ================================================
   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: 22px 24px;
  box-shadow: 0 16px 48px -12px rgba(0,0,0,0.18);
  z-index: 9999;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
}
.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}
@media (min-width: 768px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}
.cookie-banner__title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 8px;
}
.cookie-banner__text {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 16px;
}
.cookie-banner__text a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cookie-banner__actions button {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
  border: 1.5px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  min-height: 44px;
  transition: background 200ms, color 200ms, border-color 200ms;
}
.cookie-banner__actions button:hover {
  border-color: var(--ink);
  color: var(--ink);
}
.cookie-banner__actions button[data-consent="accept"] {
  background: var(--ink);
  color: var(--surface);
  border-color: var(--ink);
}
.cookie-banner__actions button[data-consent="accept"]:hover {
  background: var(--accent);
  color: var(--surface);
  border-color: var(--accent);
}
.cookie-banner__actions button[data-consent="reject"] {
  background: var(--surface);
  border: 2px solid var(--ink);
  color: var(--ink);
  font-weight: 700;
}
.cookie-banner__actions button[data-consent="reject"]:hover {
  background: var(--ink);
  color: var(--surface);
  border-color: var(--ink);
}


/* ================================================
   REVEAL
   ================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms cubic-bezier(.2,.7,.2,1),
              transform 600ms cubic-bezier(.2,.7,.2,1);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
.reveal[style*="--i"] {
  transition-delay: calc(var(--i, 0) * 80ms);
}
html.no-js .reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .svc-card:hover .svc-card__second { animation: none; }
  .svc-card:hover .svc-card__clock { opacity: 0; }
  .hero__pendulum { animation: none !important; }
  .stats-band .gear-deco { animation: none !important; }
  .price-card.is-in .price-card__list li svg { animation: none; }
  .price-card.is-in .price-card__list li { animation: none; }
  .hero__deco svg { animation: none; }
  .contact-row:hover .contact-row__icon { animation: none; }
  .step-card:hover .step-card__icon { animation: none; transform: none; }
  .step-card.is-in .step-card__icon { animation: none; }
  .atolye-visual .container img { transition: none; }
  .atolye-visual .container img:hover { transform: none; }
  .footer-col a::after { transition: none; }
  .nav-desktop a::after { transition: none; }
  .nav-toggle::before { transition: none; }
  .brand-pill::after { animation: none; opacity: 0 !important; }
  .testimonial::before { transition: none; }
  .testimonial:hover::before { transform: none; }
}

/* ================================================
   POLICY / CONTENT PAGES
   ================================================ */
.page-hero {
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(1.5rem, 3vw, 2rem);
  background: var(--bg);
}
.page-hero h1 { margin-bottom: 8px; }
.page-hero p { color: var(--ink-soft); font-size: 0.95rem; }

.content-section {
  background: var(--surface);
  padding: clamp(2rem, 5vw, 3.5rem) 0;
}
.content-body {
  max-width: 780px;
  margin: 0 auto;
}
.content-body h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.content-body h3 {
  margin-top: 1.8rem;
  margin-bottom: 0.8rem;
}
.content-body p {
  margin-bottom: 1rem;
  font-size: 0.93rem;
  color: var(--ink);
  line-height: 1.75;
}
.content-body ul, .content-body ol {
  margin: 0.5rem 0 1rem 1.2rem;
  font-size: 0.93rem;
  color: var(--ink);
  line-height: 1.75;
}
.content-body li { margin-bottom: 0.3rem; }
.content-body a { text-decoration: underline; text-underline-offset: 2px; }

/* Thank you page */
.thankyou-section {
  background: var(--surface);
  padding: clamp(4rem, 10vw, 8rem) 0;
  text-align: center;
}
.thankyou-section .check-circle {
  width: 72px; height: 72px;
  margin: 0 auto 24px;
  color: var(--accent);
}
.thankyou-section h1 { margin-bottom: 12px; }
.thankyou-section p { color: var(--ink-soft); margin-bottom: 28px; font-size: 1.05rem; }

/* 404 */
.notfound-section {
  background: var(--surface);
  padding: clamp(4rem, 10vw, 8rem) 0;
  text-align: center;
}
.notfound-section .big-404 {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 700;
  color: var(--line);
  line-height: 1;
  margin-bottom: 16px;
}
.notfound-section h1 { margin-bottom: 12px; }
.notfound-section p { color: var(--ink-soft); margin-bottom: 28px; }

/* Sitemap page */
.sitemap-list { list-style: none; padding: 0; }
.sitemap-list li { padding: 8px 0; border-bottom: 1px solid var(--line); }
.sitemap-list li a { font-size: 0.95rem; display: flex; align-items: center; gap: 8px; }

/* ================================================
   ATOLYE VISUAL — image gallery
   ================================================ */
.atolye-visual .container {
  padding-top: 32px;
  padding-bottom: 32px;
}
.atolye-visual .container img {
  border-radius: var(--radius);
  transition: transform 400ms cubic-bezier(.2,.7,.2,1), box-shadow 400ms;
}
.atolye-visual .container img:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 32px -8px rgba(0,0,0,0.12);
}

/* ─── Watchmaker micro-animations ─── */
@keyframes subtle-tick {
  0%, 100% { transform: rotate(0deg); }
  10% { transform: rotate(6deg); }
  20% { transform: rotate(0deg); }
}

@keyframes gear-pulse {
  0%, 100% { opacity: 0.04; }
  50% { opacity: 0.07; }
}

@keyframes float-gentle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Smoother reveal with stagger */
.reveal {
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Service card enhanced hover — warm glow */
.svc-card:hover {
  box-shadow: 0 12px 32px -8px rgba(37,99,235,0.18),
              0 0 0 1px rgba(37,99,235,0.08);
}

/* Brand pills — static lift is enough, no infinite animation */

/* Step card icon — watchmaker tick motion */
.step-card:hover .step-card__icon {
  animation: subtle-tick 0.6s ease-in-out;
  transform: scale(1.06);
}

/* Step card icon gentle float when visible */
.step-card.is-in .step-card__icon {
  animation: float-gentle 4s ease-in-out infinite;
}
.step-card.is-in:hover .step-card__icon {
  animation: subtle-tick 0.6s ease-in-out;
  transform: scale(1.06);
}

/* FAQ chevron smoother */
.faq-item summary::after {
  transition: transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* Price card featured subtle pulse border */
.price-card--featured {
  box-shadow: 0 0 0 0 rgba(37,99,235,0);
  animation: none;
}
.price-card--featured:hover {
  box-shadow: 0 16px 40px -12px rgba(37,99,235,0.2),
              0 0 0 2px rgba(37,99,235,0.15);
}

/* Testimonial quote mark subtle animation */
.testimonial:hover::before {
  opacity: 0.35;
  transition: opacity 300ms ease;
}

/* Hero gear decoration - continuous rotation with subtle pulse */
.hero__deco svg {
  animation: gear-spin 60s linear infinite, gear-pulse 6s ease-in-out infinite;
}

/* CTA band button glow on hover */
.cta-band .btn-primary:hover {
  box-shadow: 0 8px 24px -6px rgba(0,0,0,0.3);
}

/* Footer links smooth underline on hover */
.footer-col a {
  position: relative;
}
.footer-col a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-2);
  transition: width 280ms cubic-bezier(0.16, 1, 0.3, 1);
}
.footer-col a:hover::after {
  width: 100%;
}

/* Contact row icon subtle tick on hover */
.contact-row:hover .contact-row__icon {
  animation: subtle-tick 0.6s ease-in-out;
}

/* Nav link underline animation */
.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
  transition: width 280ms cubic-bezier(0.16, 1, 0.3, 1), left 280ms cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-desktop a:hover::after {
  width: calc(100% - 28px);
  left: 14px;
}
.nav-desktop a.is-active::after {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
}

/* Button press effect */
.btn:active {
  transform: translateY(0) scale(0.98);
}

/* Filter button active transition */
.filter-btn:active {
  transform: scale(0.95);
}

/* Brand pill — subtle metallic gleam on hover */
@keyframes gleam-sweep {
  0% { left: -60%; }
  100% { left: 120%; }
}
.brand-pill {
  overflow: hidden;
}
.brand-pill::after {
  content: '';
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
  pointer-events: none;
  opacity: 0;
  transition: opacity 200ms;
}
.brand-pill:hover::after {
  opacity: 1;
  animation: gleam-sweep 600ms ease-out forwards;
}

/* Pricing card tick-marks entrance — smoother stagger */
.price-card.is-in .price-card__list li {
  animation: tick-reveal 400ms cubic-bezier(0.16, 1, 0.3, 1) both;
}
.price-card.is-in .price-card__list li:nth-child(1) { animation-delay: 60ms; }
.price-card.is-in .price-card__list li:nth-child(2) { animation-delay: 120ms; }
.price-card.is-in .price-card__list li:nth-child(3) { animation-delay: 180ms; }
.price-card.is-in .price-card__list li:nth-child(4) { animation-delay: 240ms; }
.price-card.is-in .price-card__list li:nth-child(5) { animation-delay: 300ms; }
.price-card.is-in .price-card__list li:nth-child(6) { animation-delay: 360ms; }

/* Testimonial — smooth quote-mark float */
.testimonial::before {
  transition: opacity 300ms ease, transform 300ms ease;
}
.testimonial:hover::before {
  transform: translateY(-4px);
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
  :root { --header-h: 64px; }
}
@media (max-width: 640px) {
  section { padding: clamp(2rem, 6vw, 3.5rem) 0; }
  .hero { padding: clamp(3rem, 8vw, 5rem) 0 clamp(2rem, 4vw, 3rem); }
  .hero__number { font-size: clamp(2.5rem, 12vw, 4rem); }
  .hero__rest { font-size: clamp(1.4rem, 5vw, 2rem); }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__trust { flex-direction: column; gap: 12px; }
  .filter-bar { gap: 6px; }
  .filter-btn { padding: 6px 14px; font-size: 0.78rem; }
  .process-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; max-width: 100%; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 390px) {
  .svc-card { padding: 18px 16px; }
  .svc-card__clock { width: 48px; height: 48px; }
  .step-card { padding: 20px 18px; }
  .price-card { padding: 24px 20px; }
}

/* ─── Print ─── */
@media print {
  .site-header, .drawer, .drawer-backdrop, .nav-toggle,
  .cookie-banner, .cta-band, .hero__deco, .hero__pendulum { display: none !important; }
  main { padding-top: 0 !important; }
  body { background: #fff; color: #000; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
