:root {
  --bg: #F0F0F0;
  --surface: #FFFFFF;
  --surface-2: #F7F7F7;
  --ink: #111111;
  --ink-soft: #555555;
  --accent: #0055FF;
  --accent-2: #FF3C00;
  --line: rgba(0,0,0,0.12);
  --line-strong: rgba(0,0,0,0.25);
  --radius: 4px;
  --header-h: 72px;
  --font-heading: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-body: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-mono: ui-monospace, 'Cascadia Mono', 'Segoe UI Mono', 'Liberation Mono', Menlo, Monaco, Consolas, monospace;
  interpolate-size: allow-keywords;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  letter-spacing: -0.012em;
  overflow-x: hidden;
  max-width: 100vw;
  margin: 0;
}

html, body { overflow-x: hidden; max-width: 100vw; }

main { padding-top: var(--header-h); }
main section[id] { scroll-margin-top: calc(var(--header-h) + 16px); }

img { max-width: 100%; height: auto; display: block; }

a { color: var(--accent); text-decoration: none; transition: color 240ms cubic-bezier(.4,0,.2,1); }
a:hover { color: var(--accent-2); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.012em;
  line-height: 1.15;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--accent);
  color: #fff;
  padding: 8px 16px;
  z-index: 10000;
  border-radius: var(--radius);
  font-weight: 600;
}
.skip-link:focus { top: 8px; }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1080;
  background: rgba(240,240,240,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 240ms ease, box-shadow 240ms ease, height 240ms ease;
  height: var(--header-h);
  display: flex;
  align-items: center;
}
.site-header.scrolled {
  background: rgba(240,240,240,0.98);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,0.18);
  height: 56px;
}
@media (max-width: 1024px) {
  .site-header.scrolled { height: 52px; }
}
.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo:hover { color: var(--accent); }
.logo-mark {
  width: 32px; height: 32px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  transition: border-color 240ms ease;
}
.logo:hover .logo-mark { border-color: var(--accent); }

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-desktop a {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: color 240ms ease;
}
.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 280ms cubic-bezier(.2,.7,.2,1);
}
.nav-desktop a:hover { color: var(--accent); }
.nav-desktop a:hover::after,
.nav-desktop a.is-active::after { width: 100%; }
.nav-desktop a.is-active { color: var(--accent); }

.nav-desktop .nav-cta {
  background: var(--ink);
  color: var(--surface);
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.85rem;
  transition: background 240ms ease, color 240ms ease, transform 180ms ease;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover {
  background: var(--accent);
  color: var(--surface);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 48px; height: 48px;
  background: var(--surface);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  cursor: pointer;
  position: relative;
  z-index: 1100;
  padding: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: border-color 240ms ease, background 240ms ease, box-shadow 240ms ease;
}
.nav-toggle:hover,
.nav-toggle:focus-visible {
  border-color: var(--accent);
  background: var(--surface);
  box-shadow: 0 4px 12px rgba(0,85,255,0.15);
}
.nav-toggle span {
  display: block;
  width: 24px; height: 3px;
  background: var(--ink);
  position: absolute;
  left: 11px;
  border-radius: 2px;
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), opacity 200ms, background 240ms ease;
}
.nav-toggle:hover span { background: var(--accent); }
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 29px; }
.nav-toggle[aria-expanded="true"] { border-color: var(--accent); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

@media (max-width: 1024px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: block; }
}

/* ===== DRAWER ===== */
.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: 100px 32px 40px;
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer a {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: color 240ms ease, padding-left 240ms ease;
}
.drawer a:hover, .drawer a.is-active {
  color: var(--accent);
  padding-left: 8px;
}
.drawer .drawer-cta {
  display: inline-block;
  margin-top: 24px;
  background: var(--ink);
  color: var(--surface);
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  width: 100%;
}
.drawer .drawer-cta:hover { background: var(--accent); color: var(--surface); }

/* ===== HERO ===== */
.hero {
  min-height: min(calc(100vh - var(--header-h)), 820px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(24px, 4vw, 60px);
  padding: clamp(32px, 4vw, 56px) 0;
  position: relative;
  overflow: hidden;
}
.hero-text { position: relative; z-index: 2; }
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--accent);
}
.hero h1 {
  margin-bottom: 20px;
  line-height: 1.05;
}
.hero h1 span { color: var(--accent-2); }
.hero-sub {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 440px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-specs {
  list-style: none;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-specs li {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-soft);
  padding-left: 20px;
  position: relative;
}
.hero-specs li::before {
  content: '//';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 3/4;
  background: var(--surface);
  border-radius: 2px;
  overflow: hidden;
}
.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(0,85,255,0.08) 100%);
  pointer-events: none;
}
.hero-measurement {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 3;
}
.hero-protractor {
  position: absolute;
  top: 10%; right: -20%;
  width: 300px; height: 300px;
  opacity: 0.12;
  animation: protractorSweep 12s ease-in-out infinite;
}
@keyframes protractorSweep {
  0%, 100% { transform: rotate(0deg); opacity: 0.08; }
  50% { transform: rotate(15deg); opacity: 0.15; }
}
.hero-ruler-ticks {
  position: absolute;
  bottom: 20px; left: 0; right: 0;
  height: 40px;
  opacity: 0.2;
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(0,85,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0,85,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  opacity: 0;
  animation: gridFadeIn 1.2s 0.8s forwards;
}
@keyframes gridFadeIn {
  to { opacity: 1; }
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 32px 0 48px;
  }
  .hero-visual { order: -1; max-width: 320px; margin: 0 auto; }
  .hero-image-wrap { max-width: 100%; }
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--surface);
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 240ms ease, color 240ms ease, transform 180ms ease, box-shadow 240ms ease;
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent);
  color: var(--surface);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -8px rgba(0,85,255,0.3);
}
.btn-primary:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--ink);
  padding: 14px 28px;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 240ms ease, color 240ms ease, border-color 240ms ease, transform 180ms ease;
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--ink);
  transform: translateY(-2px);
}
.btn-ghost:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* ===== SECTION DIVIDER — Ruler Ticks ===== */
.section-divider {
  width: 100%;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0;
}
.section-divider svg { width: 100%; height: 100%; }

/* ===== SECTIONS ===== */
section {
  padding: clamp(48px, 8vw, 96px) 0;
}
#hero { padding: 0; }
.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-heading {
  margin-bottom: 48px;
}
.section-heading h2 { margin-bottom: 12px; }
.section-heading p {
  font-size: 1rem;
  color: var(--ink-soft);
  max-width: 560px;
}

/* ===== PROCESS (Teknik Süreç) ===== */
.process-timeline {
  position: relative;
  padding-left: 48px;
  max-width: 680px;
}
.process-timeline::before {
  content: '';
  position: absolute;
  left: 16px; top: 0; bottom: 0;
  width: 1px;
  border-left: 2px dashed var(--line-strong);
}
.process-step {
  position: relative;
  padding: 24px 0;
}
.process-step::before {
  content: '';
  position: absolute;
  left: -40px; top: 32px;
  width: 14px; height: 14px;
  border: 2px solid var(--accent);
  background: var(--bg);
  border-radius: 50%;
  z-index: 2;
}
.process-step.is-in::before {
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(0,85,255,0.15);
}
.process-number {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 4px;
  letter-spacing: 0.1em;
}
.process-step h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.process-step p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.6;
}
.process-time {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--accent-2);
  margin-top: 6px;
}

/* ===== EQUIPMENT (Ekipman) ===== */
.equipment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.equipment-item {
  background: var(--surface);
  padding: clamp(20px, 3vw, 32px);
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  transition: background 240ms ease;
}
.equipment-item:hover { background: var(--surface-2); }
.equipment-icon {
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: transform 240ms cubic-bezier(.2,.7,.2,1);
}
.equipment-item:hover .equipment-icon { transform: scale(1.08); }
.equipment-item h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.equipment-item p {
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
@media (max-width: 640px) {
  .equipment-grid { grid-template-columns: 1fr; }
  .equipment-item { grid-template-columns: 36px 1fr; gap: 12px; }
  .equipment-icon { width: 36px; height: 36px; }
}

/* ===== PRICING TABLE ===== */
.table-scroll {
  display: block; width: 100%; max-width: 100%; min-width: 0;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: 6px;
}
.table-scroll > table { margin: 0 !important; min-width: 480px; width: 100%; }
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
}
.pricing-table thead {
  background: var(--ink);
  color: var(--surface);
}
.pricing-table th {
  padding: 16px 20px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  text-align: left;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.pricing-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}
.pricing-table tbody tr:last-child td { border-bottom: none; }
.pricing-table tbody tr { transition: background 180ms ease; }
.pricing-table tbody tr:hover { background: var(--surface-2); }
.pricing-table .price-cell {
  font-family: var(--font-mono);
  font-weight: 500;
  color: var(--accent);
  white-space: nowrap;
}
.pricing-table .duration-cell {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--ink-soft);
}
.pricing-note {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--ink-soft);
  margin-top: 16px;
  padding: 12px 16px;
  background: var(--surface-2);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* ===== GALLERY (Sonuç Galerisi) ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.gallery-item {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  cursor: crosshair;
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms ease;
}
.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px -12px rgba(0,85,255,0.15);
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-label {
  position: absolute;
  bottom: 12px; left: 12px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  background: var(--ink);
  color: var(--surface);
  padding: 4px 10px;
  border-radius: 2px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 36px);
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px -8px rgba(0,85,255,0.12);
}
.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 18px;
  font-style: italic;
}
.testimonial-author {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink-soft);
}

/* ===== STATS / COUNTERS ===== */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin: 48px 0;
}
.stat-item {
  background: var(--surface);
  padding: clamp(20px, 3vw, 32px);
  text-align: center;
}
.stat-number {
  font-family: var(--font-mono);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--ink-soft);
  font-weight: 500;
}

/* ===== FAQ ===== */
.faq-list { max-width: 740px; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  list-style: none;
  transition: color 240ms ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-mono);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--accent);
  transition: transform 320ms cubic-bezier(.4,0,.2,1);
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--accent); }
.faq-item > .faq-body {
  display: block;
  height: 0;
  padding: 0 0;
  overflow: hidden;
  transition: height 360ms cubic-bezier(.4,0,.2,1),
              padding-block-end 360ms cubic-bezier(.4,0,.2,1);
}
.faq-item:not([open]) > .faq-body {
  content-visibility: hidden;
}
.faq-item[open] > .faq-body {
  height: auto;
  padding-block-end: 20px;
}
.faq-body p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.7;
}
@media (prefers-reduced-motion: reduce) {
  .faq-item > .faq-body { transition: none; }
}

/* ===== TRUST STRIP ===== */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.trust-badge {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  padding: 6px 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 6px;
}
.trust-badge svg { width: 14px; height: 14px; color: var(--accent); }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: clamp(48px, 6vw, 80px) 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: clamp(24px, 4vw, 48px);
  margin-bottom: 48px;
}
.footer-brand .logo { color: #fff; margin-bottom: 16px; }
.footer-brand .logo:hover { color: var(--accent); }
.footer-brand .logo-mark { border-color: #fff; }
.footer-brand p { font-size: 0.88rem; line-height: 1.6; max-width: 280px; }
.footer-col h4 {
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  padding: 5px 0;
  transition: color 240ms ease, padding-left 240ms ease;
}
.footer-col a:hover { color: #fff; padding-left: 4px; }
.footer-contact-item {
  display: flex;
  align-items: start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.88rem;
}
.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; color: var(--accent); }
.footer-contact-item a { display: inline; padding: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.4); font-size: 0.78rem; }
.footer-bottom a:hover { color: #fff; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 16px; }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ===== 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: 8px;
  padding: 20px 24px;
  box-shadow: 0 12px 40px -8px rgba(0,0,0,0.15);
  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; }
.cookie-banner h4 {
  font-size: 0.92rem;
  margin-bottom: 8px;
}
.cookie-banner p {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-bottom: 16px;
}
.cookie-banner p a { text-decoration: underline; }
.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cookie-actions button {
  flex: 1;
  min-width: 100px;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid var(--line-strong);
  background: transparent;
  color: var(--ink);
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
}
.cookie-actions button:hover { background: var(--surface-2); border-color: var(--ink); color: var(--ink); }
.cookie-actions button[data-consent="accept"] {
  background: var(--ink);
  color: var(--surface);
  border-color: var(--ink);
}
.cookie-actions button[data-consent="accept"]:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--surface);
}
.cookie-actions button[data-consent="reject"] {
  background: var(--surface);
  border: 2px solid var(--ink);
  color: var(--ink);
  font-weight: 700;
}
.cookie-actions button[data-consent="reject"]:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--surface);
}
@media (max-width: 639px) {
  .cookie-banner {
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 100%;
    border-radius: 12px 12px 0 0;
    margin: 0;
    padding: 20px 20px calc(env(safe-area-inset-bottom, 0px) + 16px);
  }
  .cookie-actions { flex-wrap: nowrap; }
  .cookie-actions button { min-height: 48px; font-size: 0.85rem; }
}
@media (min-width: 640px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms cubic-bezier(.16,1,.3,1), transform 700ms cubic-bezier(.16,1,.3,1);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal[style*="--i"] { transition-delay: calc(var(--i) * 110ms); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}
html.no-js .reveal { opacity: 1; transform: none; }
html.no-js .hero h1,
html.no-js .hero-eyebrow,
html.no-js .hero-sub,
html.no-js .hero-specs li,
html.no-js .contact-form .field {
  opacity: 1; transform: none; animation: none; transition: none;
}

/* ===== NICHE ANIMATIONS ===== */
@keyframes bladeSlice {
  0% { clip-path: inset(0 100% 0 0); }
  100% { clip-path: inset(0 0 0 0); }
}
@keyframes measureLineDraw {
  0% { stroke-dashoffset: 200; }
  100% { stroke-dashoffset: 0; }
}
@keyframes clipperVibrate {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-0.5px); }
  75% { transform: translateX(0.5px); }
}
@keyframes fadeGradient {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}
@keyframes rulerSlide {
  0% { transform: translateX(-10px); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

.blade-reveal { animation: bladeSlice 0.8s cubic-bezier(.2,.7,.2,1) forwards; }
.measure-line { stroke-dasharray: 200; stroke-dashoffset: 200; }
.measure-line.is-in { animation: measureLineDraw 1.2s cubic-bezier(.4,0,.2,1) forwards; }

@media (prefers-reduced-motion: reduce) {
  .blade-reveal, .measure-line.is-in { animation: none; }
  .measure-line { stroke-dashoffset: 0; }
}

/* ===== FORM ===== */
.form-section { background: var(--surface); }
.contact-form {
  max-width: 600px;
}
.field {
  margin-bottom: 20px;
}
.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.92rem;
  background: var(--bg);
  color: var(--ink);
  transition: border-color 240ms ease, box-shadow 240ms ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,85,255,0.08);
}
.field textarea { min-height: 120px; resize: vertical; }
.field select { cursor: pointer; }
.field input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: auto;
  width: 18px; height: 18px;
  min-width: 18px; min-height: 18px;
  padding: 0; border: 0; margin: 2px 0 0;
  accent-color: var(--accent);
}
.field-checkbox {
  display: flex;
  align-items: start;
  gap: 10px;
}
.field-checkbox label {
  font-size: 0.82rem;
  text-transform: none;
  letter-spacing: normal;
  line-height: 1.4;
  cursor: pointer;
}

/* ===== CONTACT PAGE ===== */
.contact-channels {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
}
.contact-row {
  display: contents;
  cursor: default;
}
.contact-row .contact-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);
}
.contact-row .contact-info {
  transition: transform 240ms cubic-bezier(.4,0,.2,1);
}
.contact-row:hover .contact-icon { color: var(--accent); transform: scale(1.08); }
.contact-row:hover .contact-info { transform: translateX(4px); }
.contact-info h4 {
  font-size: 0.85rem;
  font-family: var(--font-mono);
  font-weight: 500;
  margin-bottom: 2px;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.contact-info p, .contact-info a {
  font-size: 0.95rem;
  color: var(--ink);
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* ===== PAGE CONTENT (policies, etc) ===== */
.page-content {
  max-width: 740px;
  margin: 0 auto;
  padding: clamp(32px, 6vw, 64px) 0;
  min-width: 0;
  overflow-x: hidden;
}
.page-content h1 { margin-bottom: 32px; font-size: clamp(1.8rem, 4vw, 2.6rem); }
.page-content h2 { margin-top: 40px; margin-bottom: 16px; font-size: 1.4rem; }
.page-content h3 { margin-top: 28px; margin-bottom: 12px; font-size: 1.1rem; }
.page-content p { margin-bottom: 16px; color: var(--ink-soft); line-height: 1.7; font-size: 0.95rem; }
.page-content ul, .page-content ol {
  margin-bottom: 16px;
  padding-left: 24px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.7;
}
.page-content li { margin-bottom: 6px; }

/* ===== THANK YOU PAGE ===== */
.thankyou-wrap {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 64px 24px;
}
.thankyou-wrap h1 { margin-bottom: 16px; }
.thankyou-wrap p { color: var(--ink-soft); margin-bottom: 32px; max-width: 420px; }

/* ===== 404 ===== */
.error-wrap {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 64px 24px;
}
.error-code {
  font-family: var(--font-mono);
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 700;
  color: var(--line-strong);
  line-height: 1;
}

/* ===== FOCUS ===== */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  :root { --header-h: 64px; }
}
@media (max-width: 640px) {
  section { padding: clamp(36px, 6vw, 56px) 0; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
}
@media (max-width: 390px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: 1fr; }
}

/* ===== BARBER MICRO-EFFECTS ===== */
.gallery-item::before {
  content: '';
  position: absolute;
  top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  z-index: 2;
  transition: left 700ms cubic-bezier(.16,1,.3,1);
  pointer-events: none;
}
.gallery-item:hover::before { left: 125%; }

.process-step.is-in::before {
  animation: precisionPulse 2.4s ease-in-out infinite;
}
@keyframes precisionPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,85,255,0.25); }
  50% { box-shadow: 0 0 0 8px rgba(0,85,255,0); }
}

.equipment-item {
  position: relative;
}
.equipment-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 400ms cubic-bezier(.16,1,.3,1), left 400ms cubic-bezier(.16,1,.3,1);
}
.equipment-item:hover::after {
  width: 100%; left: 0;
}

.hero-image-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(0,85,255,0.06) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  animation: precisionGlow 4s 1.2s ease-in-out forwards;
}
@keyframes precisionGlow {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

.testimonial-card {
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-2) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 500ms cubic-bezier(.16,1,.3,1);
}
.testimonial-card:hover::before { transform: scaleX(1); }

.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 500ms ease, height 500ms ease;
}
.btn-primary:hover::after { width: 300px; height: 300px; }

.faq-item summary {
  position: relative;
}
.faq-item summary::before {
  content: '';
  position: absolute;
  left: -16px; top: 50%;
  width: 3px; height: 0;
  background: var(--accent);
  transform: translateY(-50%);
  transition: height 300ms cubic-bezier(.16,1,.3,1);
  border-radius: 2px;
}
.faq-item summary:hover::before { height: 60%; }

.stat-item {
  position: relative;
  overflow: hidden;
  transition: background 240ms ease;
}
.stat-item:hover { background: var(--surface-2); }
.stat-number {
  transition: transform 300ms cubic-bezier(.16,1,.3,1);
}
.stat-item:hover .stat-number {
  transform: scale(1.06);
}

.section-heading h2 {
  position: relative;
  display: inline-block;
}

.nav-desktop a {
  position: relative;
}

.footer-col a {
  position: relative;
}
.footer-col a::before {
  content: '';
  position: absolute;
  left: -8px; top: 50%;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 240ms cubic-bezier(.16,1,.3,1);
  transform: translateY(-50%);
}
.footer-col a:hover::before { width: 4px; }

/* ===== ENHANCED BARBER MICRO-EFFECTS ===== */

.section-heading h2::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  margin-top: 8px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width 800ms cubic-bezier(.16,1,.3,1);
}
.section-heading.is-in h2::after { width: 64px; }

html.js .hero:not(.is-loaded) h1 {
  opacity: 0;
  transform: translateY(20px);
}
.hero h1 {
  transition: opacity 0.7s 0.3s cubic-bezier(.16,1,.3,1), transform 0.7s 0.3s cubic-bezier(.16,1,.3,1);
}

html.js .hero:not(.is-loaded) .hero-eyebrow {
  opacity: 0;
  transform: translateX(-12px);
}
.hero-eyebrow {
  transition: opacity 0.6s 0.1s cubic-bezier(.16,1,.3,1), transform 0.6s 0.1s cubic-bezier(.16,1,.3,1);
}

html.js .hero:not(.is-loaded) .hero-sub {
  opacity: 0;
}
.hero-sub {
  transition: opacity 0.7s 0.5s cubic-bezier(.16,1,.3,1);
}

html.js .hero:not(.is-loaded) .hero-specs li {
  opacity: 0;
  transform: translateX(-8px);
}
.hero-specs li {
  transition: opacity 0.5s cubic-bezier(.16,1,.3,1), transform 0.5s cubic-bezier(.16,1,.3,1);
}
.hero-specs li:nth-child(1) { transition-delay: 0.6s; }
.hero-specs li:nth-child(2) { transition-delay: 0.72s; }
.hero-specs li:nth-child(3) { transition-delay: 0.84s; }

.trust-badge {
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms ease;
}
.trust-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px -4px rgba(0,85,255,0.15);
}

.gallery-item {
  cursor: crosshair;
}
.gallery-item::after {
  content: '+';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0);
  font-family: var(--font-mono);
  font-size: 2rem;
  color: #fff;
  opacity: 0;
  z-index: 3;
  pointer-events: none;
  transition: transform 400ms cubic-bezier(.16,1,.3,1), opacity 300ms;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.gallery-item:hover::after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 0.7;
}

.contact-form.is-in .field {
  animation: fieldReveal 0.5s cubic-bezier(.16,1,.3,1) both;
}
.contact-form.is-in .field:nth-of-type(1) { animation-delay: 0.05s; }
.contact-form.is-in .field:nth-of-type(2) { animation-delay: 0.1s; }
.contact-form.is-in .field:nth-of-type(3) { animation-delay: 0.15s; }
.contact-form.is-in .field:nth-of-type(4) { animation-delay: 0.2s; }
.contact-form.is-in .field:nth-of-type(5) { animation-delay: 0.25s; }
.contact-form.is-in .field:nth-of-type(6) { animation-delay: 0.3s; }
@keyframes fieldReveal {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

.contact-form input:hover,
.contact-form select:hover,
.contact-form textarea:hover {
  border-color: var(--ink-soft);
}

.pricing-table tbody tr {
  position: relative;
}
.pricing-table tbody tr::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 400ms cubic-bezier(.16,1,.3,1);
}
.pricing-table tbody tr:hover::after { width: 100%; }

.footer-brand .logo-mark {
  transition: transform 600ms cubic-bezier(.16,1,.3,1), border-color 240ms ease;
}
.footer-brand .logo:hover .logo-mark {
  transform: rotate(360deg);
}

@media (prefers-reduced-motion: reduce) {
  .gallery-item::before,
  .gallery-item::after,
  .testimonial-card::before,
  .btn-primary::after,
  .equipment-item::after,
  .hero-image-wrap::before,
  .faq-item summary::before,
  .footer-col a::before,
  .pricing-table tbody tr::after { display: none; }
  .process-step.is-in::before { animation: none; }
  .stat-item:hover .stat-number { transform: none; }
  .section-heading h2::after { width: 64px; transition: none; }
  .hero h1, .hero-eyebrow, .hero-sub, .hero-specs li, .hero .btn-primary, .hero .trust-strip { opacity: 1 !important; transform: none !important; transition: none !important; }
  .contact-form .field, .contact-form.is-in .field { opacity: 1 !important; transform: none !important; animation: none !important; }
  .footer-brand .logo:hover .logo-mark { transform: none; }
  .trust-badge:hover { transform: none; box-shadow: none; }
}

/* ===== TABLE MOBILE SCROLL HINT ===== */
.table-scroll {
  position: relative;
}
.table-scroll::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 24px;
  background: linear-gradient(90deg, transparent, rgba(240,240,240,0.9));
  pointer-events: none;
  opacity: 0;
  transition: opacity 200ms;
}
.table-scroll.has-scroll::after { opacity: 1; }
@media (max-width: 640px) {
  .table-scroll > table { min-width: 420px; }
}

/* ===== PAGE-CONTENT TABLE MOBILE ===== */
@media (max-width: 640px) {
  .page-content .table-scroll > table { min-width: 320px; }
  .page-content .pricing-table th,
  .page-content .pricing-table td { padding: 12px 10px; font-size: 0.82rem; }
}

/* ===== PAGE-CONTENT TEAM / H3 VISUAL HIERARCHY ===== */
.page-content h3 {
  padding-left: 16px;
  border-left: 3px solid var(--accent);
}

/* ===== CONTACT ROW MOBILE FIX ===== */
@media (max-width: 480px) {
  .contact-channels { gap: 10px 12px; }
}

/* ===== DRAWER CLOSE BUTTON ===== */

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--accent);
  width: 0;
  z-index: 1;
  pointer-events: none;
}

/* ===== ENHANCED BARBER PRECISION EFFECTS ===== */

.hero-image-wrap {
  transition: box-shadow 800ms 0.2s cubic-bezier(.16,1,.3,1);
}
.hero.is-loaded .hero-image-wrap {
  box-shadow: clamp(12px, 2vw, 24px) clamp(12px, 2vw, 24px) 0 -2px var(--line);
}

.stats-strip .stat-item:nth-child(2) { transition-delay: 0.08s; }
.stats-strip .stat-item:nth-child(3) { transition-delay: 0.16s; }
.stats-strip .stat-item:nth-child(4) { transition-delay: 0.24s; }

.equipment-item {
  transition: background 240ms ease, transform 280ms cubic-bezier(.16,1,.3,1), box-shadow 280ms ease;
}
.equipment-item:hover {
  background: var(--surface-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -8px rgba(0,85,255,0.08);
}

.contact-row .contact-icon {
  transition: color 280ms cubic-bezier(.16,1,.3,1), transform 280ms cubic-bezier(.16,1,.3,1);
}

.gallery-item {
  transition: transform 400ms cubic-bezier(.16,1,.3,1), box-shadow 400ms ease;
}

.testimonial-card {
  transition: transform 400ms cubic-bezier(.16,1,.3,1), box-shadow 400ms ease, border-color 400ms ease;
}
.testimonial-card:hover {
  border-color: var(--accent);
}

.faq-item summary {
  transition: color 240ms ease, padding-left 240ms cubic-bezier(.16,1,.3,1);
}
.faq-item summary:hover {
  padding-left: 4px;
}

.section-heading h2::after {
  transition: width 1s cubic-bezier(.16,1,.3,1);
}

.hero .btn-primary {
  opacity: 1;
  transition: opacity 0.5s 0.9s cubic-bezier(.16,1,.3,1), background 240ms ease, color 240ms ease, transform 180ms ease, box-shadow 240ms ease;
}
html.js .hero:not(.is-loaded) .btn-primary {
  opacity: 0;
}

html.js .hero:not(.is-loaded) .trust-strip {
  opacity: 0;
}
.hero .trust-strip {
  transition: opacity 0.5s 1s cubic-bezier(.16,1,.3,1);
}

/* ===== PRINT ===== */
@media print {
  .site-header, .drawer, .drawer-backdrop, .cookie-banner, .nav-toggle { display: none !important; }
  main { padding-top: 0 !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  body { background: #fff; }
}
