/* ============================================================
   BEYAZ BERBER — Erkek Bakım Merkezi
   ============================================================ */

/* === CUSTOM PROPERTIES === */
:root {
  --bg: #F4F1EB;
  --surface: #FFFFFF;
  --surface-2: #EDE9E0;
  --ink: #2D3A2E;
  --ink-soft: #5A6B5C;
  --accent: #B8860B;
  --accent-2: #5C7A3E;
  --line: rgba(45,58,46,0.12);
  --line-strong: rgba(45,58,46,0.25);
  --header-h: 80px;
  --container-max: 1180px;
  --container-pad: clamp(16px,4vw,32px);
  --radius: 4px;
  --radius-lg: 8px;
  --font-heading: Impact, 'Arial Black', sans-serif;
  --font-body: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-mono: 'Consolas', 'Courier New', monospace;
  interpolate-size: allow-keywords;
}

/* === RESET & BASE === */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
html, body { overflow-x: hidden; max-width: 100vw; margin: 0; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  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(--ink); text-decoration: none; transition: color 240ms cubic-bezier(.4,0,.2,1); }
a:hover { color: var(--accent); }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }

/* === FOCUS RING === */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; box-shadow: 0 0 0 5px rgba(184,134,11,0.12); }
:focus:not(:focus-visible) { outline: none; }

/* === SKIP LINK === */
.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--ink); color: var(--surface);
  padding: 8px 18px; border-radius: var(--radius);
  font-size: 0.875rem; font-weight: 600; z-index: 10000;
  transition: top 200ms;
}
.skip-link:focus { top: 12px; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.08em;
  color: var(--ink);
}
h1 { font-size: clamp(36px, 5vw, 72px); letter-spacing: 0.04em; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); }
h4 { font-size: 1.125rem; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.eyebrow--light { color: var(--accent); }

/* === LAYOUT === */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}
main { padding-top: var(--header-h); }
section { padding: clamp(60px, 8vw, 120px) 0; }

/* === HEADER === */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1080;
  background: rgba(244,241,235,0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 240ms ease, box-shadow 240ms ease, padding 240ms ease;
}
/* Scroll progress bar */
.scroll-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  background: var(--accent);
  width: 0%;
  z-index: 1;
  pointer-events: none;
}

.site-header.is-scrolled {
  background: rgba(244,241,235,0.98);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,0.18);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 24px;
  transition: height 240ms ease;
}
.site-header.is-scrolled .header__inner { height: 64px; }

/* Logo */
.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  color: var(--ink);
  display: flex;
  gap: 0;
  white-space: nowrap;
  transition: color 240ms;
}
.logo span { color: var(--accent); }
.logo:hover { color: var(--accent); }
.logo:hover span { color: var(--ink); }

/* Desktop nav */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-desktop a {
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  position: relative;
  padding: 6px 0;
  color: var(--ink);
}
.nav-desktop a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 320ms cubic-bezier(.16,1,.3,1), left 320ms cubic-bezier(.16,1,.3,1);
}
.nav-desktop a:not(.nav-cta):hover::after,
.nav-desktop a:not(.nav-cta).is-active::after { width: 100%; left: 0; }
.nav-desktop a.is-active { color: var(--accent); }

/* Nav CTA */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--ink);
  color: var(--surface) !important;
  padding: 8px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  transition: background 240ms, color 240ms, transform 200ms;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-cta:hover {
  background: var(--accent);
  color: var(--surface) !important;
  transform: translateY(-2px);
}

/* Nav toggle (hamburger) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 48px; height: 48px;
  z-index: 1100;
  position: relative;
  padding: 10px;
  border-radius: var(--radius);
  transition: background 240ms;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle:hover { background: rgba(45,58,46,0.08); }
.nav-toggle span {
  display: block;
  width: 26px; height: 3px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 200ms, background 240ms, width 280ms cubic-bezier(.2,.7,.2,1);
  transform-origin: center;
}
.nav-toggle:hover span:nth-child(2) { width: 20px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; width: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* === DRAWER (outside header, top-level) === */
.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  background: var(--surface);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 360ms cubic-bezier(.16,1,.3,1);
  padding: 100px 32px 40px;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 32px -4px rgba(0,0,0,0.15);
}
.drawer.is-open { transform: translateX(0); }
.drawer nav { display: flex; flex-direction: column; gap: 4px; }
.drawer nav a {
  display: block;
  padding: 16px 0;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-bottom: 1px dashed var(--line);
  color: var(--ink);
  transition: color 280ms cubic-bezier(.16,1,.3,1), transform 280ms cubic-bezier(.16,1,.3,1), padding-left 280ms cubic-bezier(.16,1,.3,1);
}
.drawer nav a:hover,
.drawer nav a.is-active { color: var(--accent); transform: translateX(6px); padding-left: 4px; }
.drawer nav .nav-cta {
  margin-top: 20px;
  text-align: center;
  border-bottom: none;
  justify-content: center;
}

/* Drawer close button */

.drawer-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms;
}
.drawer-backdrop.is-visible { opacity: 1; pointer-events: auto; }

/* === BUTTONS === */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--surface);
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.04em;
  position: relative;
  overflow: hidden;
  transition: background 240ms, color 240ms, transform 200ms, box-shadow 280ms;
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent);
  color: var(--surface);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -8px rgba(184,134,11,0.35);
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
  pointer-events: none;
}
.btn-primary:hover::after {
  animation: blade-shine 700ms cubic-bezier(.16,1,.3,1) forwards;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--ink);
  padding: 14px 32px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.04em;
  transition: background 240ms, color 240ms, border-color 240ms, transform 200ms;
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* === HERO === */
.hero {
  position: relative;
  padding: clamp(80px,12vw,160px) 0 clamp(60px,10vw,120px);
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.45) 45%, rgba(0,0,0,0.18) 100%);
  z-index: 1;
}
.hero .container { position: relative; z-index: 2; }
.hero h1 {
  margin-bottom: 20px;
  max-width: 12ch;
  color: var(--surface);
  text-shadow: 0 2px 24px rgba(0,0,0,0.3);
}
.hero .eyebrow { color: var(--accent); }
.hero__sub {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.85);
  max-width: 48ch;
  margin-bottom: 36px;
  line-height: 1.6;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}
.hero__pole {
  position: absolute;
  top: 0; bottom: 0; right: 3%;
  width: 6px;
  background: repeating-linear-gradient(
    -45deg,
    var(--accent) 0 8px,
    transparent 8px 16px,
    rgba(255,255,255,0.6) 16px 24px,
    transparent 24px 32px
  );
  background-size: 32px 32px;
  animation: barber-pole 10s linear infinite;
  opacity: 0.18;
  border-radius: 3px;
  z-index: 2;
}
.hero__steam {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 65% 35%, rgba(184,134,11,0.4) 0%, transparent 50%);
  animation: steam-breathe 12s ease-in-out infinite;
  pointer-events: none;
  opacity: 0.15;
  z-index: 1;
}
.hero__razor-decor {
  position: absolute;
  bottom: 10%; right: 8%;
  width: clamp(120px, 18vw, 240px);
  height: auto;
  color: rgba(255,255,255,0.15);
  opacity: 0.25;
  pointer-events: none;
  z-index: 1;
}

/* Hero buttons on dark bg */
.hero .btn-primary {
  background: var(--accent);
  color: var(--ink);
}
.hero .btn-primary:hover, .hero .btn-primary:focus-visible {
  background: var(--surface);
  color: var(--ink);
  box-shadow: 0 8px 32px -8px rgba(184,134,11,0.5);
}
.hero .btn-ghost {
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.4);
}
.hero .btn-ghost:hover, .hero .btn-ghost:focus-visible {
  background: rgba(255,255,255,0.12);
  color: var(--surface);
  border-color: var(--accent);
}

/* Trust strip */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 32px;
}
.trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.02em;
}
.trust-strip svg {
  width: 18px; height: 18px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
}

/* === SECTION HEADINGS === */
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(40px, 5vw, 64px);
}
.section-head h2 { margin-bottom: 12px; }
.section-head p {
  color: var(--ink-soft);
  font-size: 1.0625rem;
  line-height: 1.6;
}

/* === SERVICES GRID === */
.services { background: var(--surface); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card-wrap {
  position: relative;
}
.service-card-wrap .service-card__razor {
  position: absolute;
  top: -5px; right: -5px;
  width: 22px; height: 22px;
  color: var(--accent);
  transform: rotate(0deg);
  transition: transform 360ms cubic-bezier(.2,.7,.2,1);
  z-index: 3;
  pointer-events: none;
  stroke-width: 1.5;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card-wrap:hover .service-card__razor { transform: rotate(15deg); }

.service-card {
  background: var(--surface);
  border: 1px dashed var(--line-strong);
  padding: 32px 28px;
  position: relative;
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 0 100%);
  transition: clip-path 400ms cubic-bezier(.16,1,.3,1),
              transform 320ms cubic-bezier(.16,1,.3,1),
              box-shadow 320ms cubic-bezier(.16,1,.3,1),
              border-color 280ms;
}
.service-card-wrap:hover .service-card {
  clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 0 100%);
  transform: translateY(-6px) scale(1.02);
  border-color: var(--accent);
}
.service-card__icon {
  width: 44px; height: 44px;
  margin-bottom: 18px;
  color: var(--accent);
}
.service-card__icon svg {
  width: 100%; height: 100%;
  stroke: currentColor; fill: none;
  stroke-width: 1.5;
  stroke-linecap: round; stroke-linejoin: round;
}
.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.service-card__desc {
  color: var(--ink-soft);
  font-size: 0.9375rem;
  margin-bottom: 18px;
  line-height: 1.55;
}
.service-card__meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-top: 1px dashed var(--line);
  padding-top: 14px;
}
.service-card__price {
  font-family: var(--font-mono);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.02em;
}
.service-card__duration {
  font-size: 0.8125rem;
  color: var(--ink-soft);
}

/* === STATS BAR === */
.stats-bar {
  background: var(--ink);
  padding: 48px 0;
}
.stats-bar__inner {
  display: flex;
  justify-content: center;
  gap: clamp(32px, 6vw, 80px);
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
  min-width: 120px;
}
.stat-item__number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--accent);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-item__label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}

/* === TEAM === */
.team { background: var(--bg); }
.team__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
}
.team-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 280ms cubic-bezier(.16,1,.3,1), box-shadow 280ms, border-color 320ms;
}
.team-card:hover {
  transform: translateY(-4px);
}
.team-card--founder {
  grid-row: 1 / 3;
}
.team-card__img {
  width: 100%; height: 220px;
  background: linear-gradient(135deg, var(--surface-2) 0%, rgba(184,134,11,0.05) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  font-size: 0.875rem;
  overflow: hidden;
}
.team-card__img img {
  width: 100%; height: 100%; object-fit: cover;
}
.team-card__img span {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  letter-spacing: 0.12em;
  color: var(--accent);
  opacity: 0.35;
}
.team-card--founder .team-card__img { height: 100%; min-height: 300px; }
.team-card__body { padding: 24px; }
.team-card__name {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}
.team-card__role {
  font-size: 0.8125rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.team-card__bio {
  font-size: 0.9375rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 14px;
}
.team-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.team-card__tags span {
  font-size: 0.75rem;
  padding: 4px 10px;
  background: var(--surface-2);
  border-radius: 40px;
  color: var(--ink-soft);
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* === PRODUCTS (4-column) === */
.products { background: var(--surface); }
.products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid var(--line);
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms, border-color 280ms;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px -8px rgba(45,58,46,0.1);
  border-color: var(--accent);
}
.product-card__icon {
  width: 48px; height: 48px;
  margin: 0 auto 16px;
  color: var(--accent-2);
}
.product-card__icon svg {
  width: 100%; height: 100%;
  stroke: currentColor; fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.product-card h4 {
  font-size: 1.125rem;
  margin-bottom: 6px;
}
.product-card p {
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.product-card__price {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  margin-top: 12px;
  display: block;
}

/* === PRICING TABLE === */
.pricing { background: var(--bg); }
.pricing-disclaimer {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--ink-soft);
  margin-top: 18px;
  font-style: italic;
}

.table-scroll {
  display: block; width: 100%; max-width: 100%; min-width: 0;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.table-scroll > table { margin: 0 !important; min-width: 480px; width: 100%; }
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}
.pricing-table thead {
  background: var(--ink);
  color: var(--surface);
}
.pricing-table th {
  padding: 16px 20px;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-align: left;
}
.pricing-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
}
.pricing-table tbody tr:nth-child(even) { background: var(--surface-2); }
.pricing-table tbody tr:nth-child(odd) { background: var(--surface); }
.pricing-table tbody tr { transition: background 200ms; }
.pricing-table tbody tr:hover { background: rgba(184,134,11,0.06); }
.pricing-table .price-cell {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}

/* === PROCESS (dark band, vertical timeline) === */
.process {
  background: var(--ink);
  color: var(--surface);
}
.process .eyebrow { color: var(--accent); }
.process h2 { color: var(--surface); margin-bottom: 48px; }
.timeline { position: relative; padding-left: 68px; max-width: 720px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 24px; top: 0; bottom: 0;
  width: 0; border-left: 2px dashed rgba(255,255,255,0.2);
}
.timeline__item {
  position: relative;
  padding-bottom: 48px;
}
.timeline__item:last-child { padding-bottom: 0; }
.timeline__marker {
  position: absolute;
  left: -68px; top: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  z-index: 2;
}
.timeline__time {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.timeline__item h3 {
  color: var(--surface);
  font-size: 1.375rem;
  margin-bottom: 8px;
}
.timeline__item p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* === TESTIMONIALS === */
.testimonials { background: var(--surface); }
.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.testimonial-card {
  background: var(--bg);
  padding: 32px;
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--accent);
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px -10px rgba(45,58,46,0.12);
}
.testimonial-card:nth-child(odd):last-child {
  grid-column: 1 / -1;
  max-width: 600px;
  justify-self: center;
}
.testimonial-card__quote {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 18px;
  font-style: italic;
}
.testimonial-card__quote::before { content: '\201C'; color: var(--accent); font-size: 1.5em; }
.testimonial-card__author {
  font-weight: 700;
  font-size: 0.9375rem;
}
.testimonial-card__meta {
  font-size: 0.8125rem;
  color: var(--ink-soft);
  margin-top: 2px;
}

/* === FAQ ACCORDION (pure CSS, no JS) === */
.faq { background: var(--bg); }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px dashed var(--line-strong);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  color: var(--ink);
  list-style: none;
  transition: color 240ms;
  gap: 16px;
}
.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;
  transition: transform 360ms cubic-bezier(.4,0,.2,1);
  color: var(--accent);
}
.faq-item[open] summary .faq-chevron { transform: rotate(180deg); }

.faq-item > .faq-body {
  height: 0;
  padding: 0 clamp(18px, 3vw, 28px);
  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 {
  font-size: 0.9375rem;
  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(48px, 7vw, 80px) 0;
  text-align: center;
}
.cta-band h2 { color: var(--ink); margin-bottom: 12px; }
.cta-band p {
  color: var(--ink);
  opacity: 0.8;
  margin-bottom: 28px;
  font-size: 1.0625rem;
}
.cta-band .btn-primary {
  background: var(--ink);
  color: var(--surface);
}
.cta-band .btn-primary:hover {
  background: var(--surface);
  color: var(--ink);
}

/* === FORM === */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-grid .field--full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.field input,
.field textarea,
.field select {
  padding: 12px 16px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface);
  font-size: 1rem;
  transition: border-color 240ms, box-shadow 240ms;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(184,134,11,0.15), 0 2px 8px -2px rgba(184,134,11,0.1);
  outline: none;
}
.field textarea { resize: vertical; min-height: 120px; }
.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-checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}
.field-checkbox label {
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--ink-soft);
  line-height: 1.5;
}
.honeypot {
  position: absolute; left: -9999px; opacity: 0;
}

/* === CONTACT PAGE LAYOUT === */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

/* === CONTACT CHANNELS === */
.contact-channels {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px 16px;
  align-items: start;
}
.contact-channel {
  display: contents;
  cursor: default;
}
.contact-channel__icon {
  width: 22px; height: 22px;
  color: var(--ink-soft);
  transition: color 240ms cubic-bezier(.4,0,.2,1), transform 240ms cubic-bezier(.4,0,.2,1);
  margin-top: 2px;
}
.contact-channel__icon svg {
  width: 100%; height: 100%;
  stroke: currentColor; fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.contact-channel__text {
  transition: transform 240ms cubic-bezier(.4,0,.2,1);
}
.contact-channel:hover .contact-channel__icon { color: var(--accent); transform: scale(1.08); }
.contact-channel:hover .contact-channel__text { transform: translateX(4px); }
.contact-channel__label {
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin-bottom: 2px;
}
.contact-channel__value {
  font-size: 0.9375rem;
  color: var(--ink-soft);
  word-break: break-word;
  overflow-wrap: anywhere;
}
.contact-channel__value a {
  color: var(--ink-soft);
  text-decoration: underline;
  text-decoration-color: var(--line);
  text-underline-offset: 3px;
}
.contact-channel__value a:hover { color: var(--accent); text-decoration-color: var(--accent); }

/* === FOOTER === */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  padding: clamp(48px, 7vw, 80px) 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 32px;
  margin-bottom: 48px;
}
.footer__brand .logo { color: var(--surface); font-size: 1.375rem; margin-bottom: 14px; }
.footer__brand .logo span { color: var(--accent); }
.footer__brand p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}
.footer__est {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}
.footer h4 {
  color: var(--surface);
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}
.footer__links a {
  display: block;
  padding: 5px 0;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color 280ms cubic-bezier(.16,1,.3,1), transform 280ms cubic-bezier(.16,1,.3,1), text-shadow 280ms;
}
.footer__links a:hover { color: var(--accent); transform: translateX(4px); text-shadow: 0 0 8px rgba(184,134,11,0.2); }
.footer__contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.875rem;
  align-items: flex-start;
}
.footer__contact-item svg {
  width: 16px; height: 16px;
  stroke: var(--accent);
  fill: none; stroke-width: 1.5;
  flex-shrink: 0;
  margin-top: 3px;
}
.footer__contact-item a { color: rgba(255,255,255,0.6); }
.footer__contact-item a:hover { color: var(--accent); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
}
.footer__legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer__legal a { color: rgba(255,255,255,0.45); font-size: 0.8125rem; }
.footer__legal a:hover { color: var(--accent); }

/* === 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.18);
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
  z-index: 9999;
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
.cookie-banner h3 {
  font-size: 1.125rem;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.cookie-banner p {
  font-size: 0.8125rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 18px;
}
.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-banner__actions button {
  flex: 1;
  min-width: 100px;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  transition: background 240ms, color 240ms;
  cursor: pointer;
}
.cookie-btn-accept {
  background: var(--ink);
  color: var(--surface);
  border: 1px solid var(--ink);
}
.cookie-btn-accept:hover { background: var(--accent); border-color: var(--accent); color: var(--surface); }
.cookie-btn-reject {
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--ink);
  font-weight: 600;
}
.cookie-btn-reject:hover { background: var(--surface-2); color: var(--ink); border-color: var(--accent); }
.cookie-btn-settings {
  background: transparent;
  color: var(--ink-soft);
  border: 1px solid var(--line);
}
.cookie-btn-settings:hover { background: var(--surface-2); color: var(--ink); }

@media (min-width: 640px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}

/* === REVEAL ANIMATIONS === */
.reveal {
  opacity: 0;
  translate: 0 28px;
  scale: 0.985;
  transition: opacity 800ms cubic-bezier(.16,1,.3,1), translate 800ms cubic-bezier(.16,1,.3,1), scale 800ms cubic-bezier(.16,1,.3,1);
  will-change: opacity, translate, scale;
}
.reveal.is-in { opacity: 1; translate: 0; scale: 1; }

.reveal[style*="--i:1"] { transition-delay: calc(1 * 100ms); }
.reveal[style*="--i:2"] { transition-delay: calc(2 * 100ms); }
.reveal[style*="--i:3"] { transition-delay: calc(3 * 100ms); }
.reveal[style*="--i:4"] { transition-delay: calc(4 * 100ms); }
.reveal[style*="--i:5"] { transition-delay: calc(5 * 100ms); }
.reveal[style*="--i:6"] { transition-delay: calc(6 * 100ms); }
.reveal[style*="--i:7"] { transition-delay: calc(7 * 100ms); }
.reveal[style*="--i:8"] { transition-delay: calc(8 * 100ms); }
.reveal[style*="--i:9"] { transition-delay: calc(9 * 100ms); }
.reveal[style*="--i:10"] { transition-delay: calc(10 * 100ms); }
.reveal[style*="--i:11"] { transition-delay: calc(11 * 100ms); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; translate: 0 !important; scale: 1 !important; transition: none !important; }
}
html.no-js .reveal { opacity: 1; translate: 0; scale: 1; }

/* === NICHE ANIMATIONS === */
@keyframes barber-pole {
  0% { background-position: 0 0; }
  100% { background-position: 0 60px; }
}
@keyframes steam-breathe {
  0%, 100% { opacity: 0.08; transform: scale(1) translateY(0); }
  30% { opacity: 0.14; transform: scale(1.03) translateY(-8px); }
  60% { opacity: 0.06; transform: scale(0.98) translateY(4px); }
}
@keyframes blade-shine {
  0% { left: -100%; }
  100% { left: 200%; }
}
@keyframes razor-float {
  0%, 100% { transform: translateY(0) rotate(-15deg); }
  25% { transform: translateY(-6px) rotate(-13deg); }
  50% { transform: translateY(-10px) rotate(-12deg); }
  75% { transform: translateY(-4px) rotate(-14deg); }
}
@keyframes warm-glow-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(184,134,11,0); }
  50% { box-shadow: 0 0 20px 2px rgba(184,134,11,0.08); }
}
@keyframes golden-shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes towel-steam {
  0%, 100% { opacity: 0; transform: translateY(0) scaleX(1); }
  30% { opacity: 0.15; transform: translateY(-12px) scaleX(1.1); }
  70% { opacity: 0.08; transform: translateY(-24px) scaleX(0.9); }
}
@keyframes subtle-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.hero__razor-decor { animation: razor-float 8s ease-in-out infinite; }
.hero__steam { animation: steam-breathe 14s cubic-bezier(.4,0,.6,1) infinite; }

/* Warm glow on interactive elements */
.service-card-wrap:hover .service-card {
  box-shadow: 0 16px 40px -12px rgba(184,134,11,0.22), 0 0 0 1px rgba(184,134,11,0.1), inset 0 1px 0 rgba(184,134,11,0.06);
}
.team-card:hover {
  box-shadow: 0 16px 40px -10px rgba(184,134,11,0.16), 0 0 0 1px rgba(184,134,11,0.08);
}
.product-card:hover {
  box-shadow: 0 16px 36px -10px rgba(184,134,11,0.18), 0 0 0 1px rgba(184,134,11,0.06);
}
.testimonial-card:hover {
  box-shadow: 0 16px 36px -10px rgba(184,134,11,0.14);
  border-left-color: var(--accent);
}
.package-card:hover {
  box-shadow: 0 16px 40px -10px rgba(184,134,11,0.18);
  border-color: var(--accent);
}

/* Razor icon spin on card hover */
.service-card__icon svg {
  transition: transform 400ms cubic-bezier(.16,1,.3,1), filter 400ms;
}
.service-card-wrap:hover .service-card__icon svg {
  transform: rotate(8deg) scale(1.1);
}

/* Golden accent border on team card hover */
.team-card {
  border-bottom: 3px solid transparent;
  transition: transform 280ms cubic-bezier(.16,1,.3,1), box-shadow 280ms, border-color 320ms cubic-bezier(.16,1,.3,1);
}
.team-card:hover { border-bottom-color: var(--accent); }

/* Team card image warm tint on hover */
.team-card__img {
  transition: background 400ms cubic-bezier(.16,1,.3,1);
}
.team-card:hover .team-card__img {
  background: linear-gradient(135deg, rgba(184,134,11,0.08) 0%, var(--surface-2) 100%);
}
.team-card:hover .team-card__img span {
  opacity: 0.55;
  transition: opacity 400ms;
}

/* Testimonial card quote glow */
.testimonial-card__quote::before {
  transition: color 300ms, text-shadow 300ms;
}
.testimonial-card:hover .testimonial-card__quote::before {
  text-shadow: 0 0 14px rgba(184,134,11,0.35);
}

/* FAQ item hover accent */
.faq-item summary {
  transition: color 240ms, padding-left 280ms cubic-bezier(.16,1,.3,1);
}
.faq-item summary:hover {
  padding-left: 8px;
}
.faq-item summary:hover .faq-chevron {
  color: var(--accent);
  filter: drop-shadow(0 0 4px rgba(184,134,11,0.3));
}

/* Timeline marker glow */
.timeline__marker {
  transition: box-shadow 400ms cubic-bezier(.2,.7,.2,1), transform 280ms cubic-bezier(.16,1,.3,1);
}
.timeline__item:hover .timeline__marker {
  box-shadow: 0 0 24px 6px rgba(184,134,11,0.3);
  transform: scale(1.1);
}

/* Timeline line warm pulse on hover */
.timeline__item:hover h3 {
  color: var(--accent);
  transition: color 280ms;
}
.timeline__item h3 {
  transition: color 280ms;
}

/* CTA band button warm glow */
.cta-band .btn-primary {
  transition: background 240ms, color 240ms, transform 200ms, box-shadow 400ms;
}
.cta-band .btn-primary:hover {
  box-shadow: 0 8px 32px -6px rgba(0,0,0,0.3), 0 0 28px 4px rgba(184,134,11,0.18);
  transform: translateY(-3px);
}

/* Stats number subtle glow */
.stat-item__number {
  transition: text-shadow 400ms, transform 280ms cubic-bezier(.16,1,.3,1);
}
.stat-item:hover .stat-item__number {
  text-shadow: 0 0 20px rgba(184,134,11,0.45);
  transform: scale(1.05);
}

/* Warm glow pulse on service card icons */
.service-card__icon {
  transition: filter 400ms cubic-bezier(.22,1,.36,1);
}
.service-card-wrap:hover .service-card__icon {
  filter: drop-shadow(0 0 10px rgba(184,134,11,0.4));
}

/* Golden border shimmer on package cards */
.package-card--featured {
  animation: warm-glow-pulse 4s ease-in-out infinite;
}

/* Btn-primary warm glow on hover */
.btn-primary:hover {
  text-shadow: 0 0 12px rgba(184,134,11,0.2);
}

/* Btn-ghost barber-pole border on hover */
.btn-ghost {
  position: relative;
}
.btn-ghost::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius);
  opacity: 0;
  background: linear-gradient(135deg, rgba(184,134,11,0.15), transparent 60%);
  transition: opacity 320ms cubic-bezier(.16,1,.3,1);
  pointer-events: none;
}
.btn-ghost:hover::before { opacity: 1; }

/* Contact channel smooth lift */
.contact-channel:hover .contact-channel__icon {
  filter: drop-shadow(0 0 6px rgba(184,134,11,0.25));
}

/* Footer links warm glow on hover */
.footer__links a:hover {
  text-shadow: 0 0 8px rgba(184,134,11,0.2);
}

/* Product card icon warm glow */
.product-card__icon {
  transition: filter 360ms cubic-bezier(.22,1,.36,1), transform 360ms cubic-bezier(.16,1,.3,1);
}
.product-card:hover .product-card__icon {
  filter: drop-shadow(0 0 8px rgba(92,122,62,0.35));
  transform: translateY(-3px);
}

/* Service card price warm pulse on hover */
.service-card__price {
  transition: color 280ms, text-shadow 280ms;
}
.service-card-wrap:hover .service-card__price {
  text-shadow: 0 0 8px rgba(184,134,11,0.25);
}

/* Pricing table row warm accent on hover */
.pricing-table tbody tr:hover .price-cell {
  text-shadow: 0 0 8px rgba(184,134,11,0.2);
}

@media (prefers-reduced-motion: reduce) {
  .hero__pole,
  .hero__steam,
  .hero__razor-decor { animation: none !important; }
  .btn-primary::after { animation: none !important; }
  .service-card,
  .service-card-wrap .service-card__razor { transition: none !important; }
  .team-card::after,
  .timeline__marker,
  .service-card__icon svg,
  .stat-item__number { transition: none !important; }
  .package-card--featured { animation: none !important; }
  .service-card__icon,
  .product-card__icon,
  .contact-channel__icon { filter: none !important; transition: none !important; }
  .btn-ghost::before { display: none !important; }
  .faq-item summary { transition: color 240ms !important; padding-left: 0 !important; }
}

/* === POLICY / LEGAL PAGES === */
.legal-page {
  padding: clamp(40px, 6vw, 80px) 0;
}
.legal-page .container { max-width: 800px; }
.legal-page h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 12px; }
.legal-page .legal-date {
  font-size: 0.8125rem;
  color: var(--ink-soft);
  margin-bottom: 36px;
}
.legal-page h2 {
  font-size: 1.5rem;
  margin-top: 40px;
  margin-bottom: 14px;
}
.legal-page h3 {
  font-size: 1.125rem;
  margin-top: 28px;
  margin-bottom: 10px;
}
.legal-page p {
  margin-bottom: 14px;
  color: var(--ink-soft);
  line-height: 1.7;
}
.legal-page ul {
  margin-bottom: 14px;
  padding-left: 24px;
}
.legal-page li {
  list-style: disc;
  margin-bottom: 6px;
  color: var(--ink-soft);
  line-height: 1.6;
  font-size: 0.9375rem;
}

/* === THANK YOU PAGE === */
.thankyou {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(60px, 10vw, 120px) 0;
}
.thankyou__icon {
  width: 64px; height: 64px;
  color: var(--accent-2);
  margin: 0 auto 24px;
}
.thankyou h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 14px; }
.thankyou p { color: var(--ink-soft); margin-bottom: 28px; font-size: 1.0625rem; }

/* === 404 PAGE === */
.page-404 {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(60px, 10vw, 120px) 0;
}
.page-404 .big-404 {
  font-family: var(--font-heading);
  font-size: clamp(6rem, 16vw, 12rem);
  color: var(--line);
  line-height: 1;
  margin-bottom: 12px;
}
.page-404 h1 { font-size: clamp(1.5rem, 3vw, 2.5rem); margin-bottom: 12px; }
.page-404 p { color: var(--ink-soft); margin-bottom: 28px; }

/* === SITE MAP PAGE === */
.sitemap-list { columns: 2; column-gap: 40px; }
.sitemap-list li {
  list-style: none;
  padding: 8px 0;
  border-bottom: 1px dashed var(--line);
  break-inside: avoid;
}
.sitemap-list a { font-weight: 600; }

/* === PACKAGES (hakkimizda pricing) === */
.packages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.package-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms, border-color 280ms;
}
.package-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px -10px rgba(45,58,46,0.12);
}
.package-card--featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}
.package-card__badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--surface);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 40px;
  white-space: nowrap;
}
.package-card h3 {
  font-size: 1.5rem;
  margin-bottom: 6px;
}
.package-card__price {
  font-family: var(--font-mono);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 20px;
}
.package-card__includes,
.package-card__excludes {
  text-align: left;
  margin-bottom: 14px;
}
.package-card__includes h5,
.package-card__excludes h5 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.package-card__includes li {
  list-style: none;
  padding: 4px 0 4px 20px;
  position: relative;
  font-size: 0.9375rem;
  color: var(--ink);
}
.package-card__includes li::before {
  content: '\2713';
  position: absolute; left: 0;
  color: var(--accent-2);
  font-weight: 700;
}
.package-card__excludes li {
  list-style: none;
  padding: 4px 0 4px 20px;
  position: relative;
  font-size: 0.875rem;
  color: var(--ink-soft);
  text-decoration: line-through;
  text-decoration-color: var(--line-strong);
}
.package-card__excludes li::before {
  content: '\2717';
  position: absolute; left: 0;
  color: var(--line-strong);
}

/* === CANCELLATION TIERS === */
.cancel-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 24px 0;
}
.cancel-tier {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
}
.cancel-tier__label {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.cancel-tier__detail {
  font-size: 0.875rem;
  color: var(--ink-soft);
}
.cancel-tier--green { border-color: var(--accent-2); }
.cancel-tier--yellow { border-color: var(--accent); }
.cancel-tier--red { border-color: #b44; }

/* === RESPONSIVE === */
@media (max-width: 1280px) {
  .footer__grid { grid-template-columns: 1.3fr 1fr 1fr 1.1fr; gap: 24px; }
}

@media (max-width: 1024px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: flex; }
  .site-header { background: var(--bg); backdrop-filter: none; -webkit-backdrop-filter: none; box-shadow: 0 1px 0 var(--line); }
  .hero { min-height: auto; padding: clamp(60px, 10vw, 120px) 0 clamp(48px, 8vw, 80px); }
  .hero h1 { font-size: clamp(32px, 8vw, 56px); }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .team__grid { grid-template-columns: 1fr 1fr; }
  .team-card--founder { grid-row: auto; grid-column: 1 / -1; }
  .team-card--founder .team-card__img { height: 240px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .packages__grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .cancel-tiers { grid-template-columns: 1fr; max-width: 360px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .products__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: 1fr; }
  .testimonial-card:nth-child(odd):last-child { max-width: none; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .form-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .sitemap-list { columns: 1; }
  .stats-bar__inner { gap: 24px; }
  .stat-item { min-width: 80px; }
}

@media (max-width: 640px) {
  .services__grid { grid-template-columns: 1fr; }
  .team__grid { grid-template-columns: 1fr; }
  .products__grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn-primary,
  .hero__actions .btn-ghost { width: 100%; justify-content: center; }
  .trust-strip { gap: 12px 20px; }
  .hero__pole { display: none; }
  section { padding: clamp(40px, 7vw, 72px) 0; }
  .service-card { padding: 24px 20px; }
  .product-card { padding: 20px 14px; }
  .product-card__icon { width: 36px; height: 36px; }
  .timeline { padding-left: 56px; }
  .timeline__marker { left: -56px; width: 40px; height: 40px; font-size: 1rem; }
  .pricing-table { font-size: 0.8125rem; }
  .pricing-table th,
  .pricing-table td { padding: 10px 12px; }
  .pricing-table th { font-size: 0.875rem; }
  .table-scroll > table { min-width: 440px; }
  .table-scroll {
    background:
      linear-gradient(to right, var(--surface), var(--surface)) left center / 20px 100% no-repeat,
      linear-gradient(to left, var(--surface), var(--surface)) right center / 20px 100% no-repeat,
      radial-gradient(farthest-side at 0% 50%, rgba(45,58,46,0.15), transparent) left center / 14px 100% no-repeat,
      radial-gradient(farthest-side at 100% 50%, rgba(45,58,46,0.15), transparent) right center / 14px 100% no-repeat;
    background-attachment: local, local, scroll, scroll;
  }
}

@media (max-width: 480px) {
  .products__grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .product-card { padding: 16px 12px; }
  .cookie-banner { left: 10px; right: 10px; padding: 18px; }
  .cookie-banner__actions { gap: 8px; flex-wrap: nowrap; }
  .cookie-banner__actions button { min-width: 0; flex: 1; min-height: 48px; padding: 12px 10px; font-size: 0.8125rem; }
  .trust-strip span { font-size: 0.75rem; }
  .table-scroll > table { min-width: 400px; }
}

@media (max-width: 360px) {
  h1 { font-size: clamp(28px, 8vw, 48px); }
  .container { padding-left: 16px; padding-right: 16px; }
  .service-card { padding: 20px 16px; }
}

/* === PRINT === */
@media print {
  .site-header, .drawer, .drawer-backdrop, .cookie-banner,
  .nav-toggle, .skip-link, .hero__pole, .hero__steam,
  .hero__razor-decor, .cta-band { display: none !important; }
  body { background: #fff; color: #000; }
  main { padding-top: 0 !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  a { color: #000; text-decoration: underline; }
  .btn-primary, .btn-ghost { border: 1px solid #000; background: transparent !important; color: #000 !important; }
  section { page-break-inside: avoid; }
}
