:root {
  interpolate-size: allow-keywords;
  --bg: #F7F8FA;
  --surface: #FFFFFF;
  --surface-2: #EBEDF2;
  --ink: #1A1A2E;
  --ink-soft: #555568;
  --accent: #0055D4;
  --accent-2: #00B894;
  --line: rgba(26,26,46,0.12);
  --line-strong: rgba(26,26,46,0.24);
  --font-heading: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-body: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-mono: ui-monospace, 'Cascadia Code', 'Consolas', 'Monaco', monospace;
  --header-h: 72px;
  --max-w: 1240px;
  --pad: clamp(16px, 4vw, 32px);
  --radius: 6px;
  --radius-lg: 12px;
}

*, *::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: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color 240ms; }
a:hover { color: var(--accent-2); }
ul, ol { list-style: none; }

.skip-link {
  position: absolute; top: -100%; left: 16px; z-index: 10000;
  padding: 8px 16px; background: var(--ink); color: var(--surface);
  border-radius: var(--radius); font-weight: 600; transition: top 200ms;
}
.skip-link:focus { top: 8px; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading); font-weight: 700;
  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); margin-bottom: 1rem; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p { max-width: 68ch; }

.eyebrow {
  font-family: var(--font-mono); font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 12px; display: block;
}
.mono { font-family: var(--font-mono); font-weight: 500; }

.container {
  width: 100%; max-width: var(--max-w); margin: 0 auto;
  padding-left: var(--pad); padding-right: var(--pad);
}

:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* ── Header ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1080;
  background: rgba(247,248,250,0.92);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  height: var(--header-h); display: flex; align-items: center;
  transition: background 240ms ease, box-shadow 240ms ease, height 240ms ease;
}
.site-header.scrolled {
  background: rgba(247,248,250,0.98);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,0.18);
  height: 60px;
}
.header-inner {
  width: 100%; max-width: var(--max-w); margin: 0 auto;
  padding: 0 var(--pad); display: flex; align-items: center; justify-content: space-between;
}
.logo {
  font-family: var(--font-heading); font-weight: 700; font-size: 1.25rem;
  color: var(--ink); text-decoration: none;
  display: flex; align-items: center; gap: 10px;
}
.logo:hover { color: var(--ink); }
.logo-icon { width: 36px; height: 36px; }

/* ── Nav Desktop ── */
.nav-desktop { display: flex; align-items: center; gap: 28px; }
.nav-desktop a {
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 500;
  color: var(--ink); text-decoration: none; position: relative;
  padding: 4px 0; transition: color 240ms;
}
.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::after, .nav-desktop a.is-active::after { width: 100%; }
.nav-desktop a:hover, .nav-desktop a.is-active { color: var(--accent); }

.nav-desktop .nav-cta {
  background: var(--ink); color: var(--surface);
  padding: 8px 20px; border-radius: var(--radius); font-weight: 600;
  transition: background 240ms, color 240ms, transform 240ms;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover {
  background: var(--accent); color: var(--surface); transform: translateY(-2px);
}

@media (max-width: 1024px) { .nav-desktop { display: none; } }

/* ── Nav Toggle ── */
.nav-toggle {
  display: none; width: 44px; height: 44px; background: none; border: none;
  cursor: pointer; position: relative; z-index: 1100;
  flex-direction: column; justify-content: center; align-items: center; gap: 6px; padding: 0;
}
.nav-toggle span {
  display: block; width: 26px; height: 3px; background: var(--ink);
  border-radius: 2px; transition: transform 320ms cubic-bezier(.2,.7,.2,1), opacity 200ms;
  transform-origin: center;
}
.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; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
@media (max-width: 1024px) {
  .nav-toggle {
    display: flex;
    border: 2px solid var(--ink);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: border-color 240ms, background 240ms, box-shadow 240ms;
  }
  .nav-toggle:hover, .nav-toggle:focus-visible {
    border-color: var(--accent);
    box-shadow: 0 2px 12px rgba(0,85,212,0.15);
  }
}

/* ── Drawer ── */
.drawer-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,0.55);
  z-index: 1040; opacity: 0; visibility: hidden;
  transition: opacity 240ms, visibility 240ms;
}
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }

.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) var(--pad) var(--pad);
  display: flex; flex-direction: column; gap: 8px; overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }

.drawer a {
  font-family: var(--font-heading); font-size: 1.15rem; font-weight: 600;
  color: var(--ink); padding: 12px 0; border-bottom: 1px solid var(--line);
  display: block; transition: color 240ms, padding-left 240ms;
}
.drawer a:hover { color: var(--accent); padding-left: 8px; }
.drawer a.is-active { color: var(--accent); }

.drawer .drawer-cta {
  margin-top: 16px; background: var(--ink); color: var(--surface);
  text-align: center; padding: 14px 20px; border-radius: var(--radius);
  border: none; font-weight: 600; transition: background 240ms, color 240ms;
}
.drawer .drawer-cta:hover { background: var(--accent); color: var(--surface); }

/* ── Main ── */
main { padding-top: var(--header-h); }
section { padding: clamp(48px, 8vw, 96px) 0; }

/* ── Hero ── */
.hero { position: relative; overflow: hidden; padding: clamp(48px, 8vw, 80px) 0 clamp(48px, 8vw, 96px); background: var(--bg); }
.hero-grid {
  display: grid; grid-template-columns: 55% 45%;
  align-items: center; gap: clamp(24px, 4vw, 48px);
  min-height: min(60vh, 560px);
}
.hero-svg-wrap { position: relative; }
.hero-svg {
  width: 100%; max-width: 480px; margin: 0 auto;
  clip-path: inset(0 100% 0 0);
  animation: svgReveal 1.2s cubic-bezier(.2,.7,.2,1) 0.4s forwards;
}
@keyframes svgReveal { to { clip-path: inset(0 0 0 0); } }

.hero-svg .measurements {
  opacity: 0.15; transition: opacity 600ms cubic-bezier(.2,.7,.2,1);
}
.hero-svg:hover .measurements { opacity: 1; }

.hero-ruler {
  position: absolute; left: -8px; top: 8%; bottom: 8%; width: 16px; pointer-events: none;
}

.hero-text { display: flex; flex-direction: column; gap: 20px; }
.hero-text h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); line-height: 1.1; letter-spacing: -0.015em; }
.hero-text h1 span { display: block; color: var(--accent); }
.hero-text .hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem); color: var(--ink-soft);
  max-width: 42ch; line-height: 1.7;
}

.trust-strip { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.trust-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; background: var(--surface); border: 1px solid var(--line);
  border-radius: 20px; font-size: 0.78rem; font-weight: 500;
  color: var(--ink-soft); white-space: nowrap;
}
.trust-badge svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ── 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-family: var(--font-heading); font-size: 0.95rem; font-weight: 600;
  border: none; cursor: pointer;
  transition: background 240ms, color 240ms, transform 240ms, box-shadow 240ms;
  text-decoration: none;
}
.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,212,0.35);
}
.btn-primary::after { content: '\2192'; transition: transform 240ms; }
.btn-primary:hover::after { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--ink);
  padding: 12px 28px; border: 1.5px solid var(--line-strong);
  border-radius: var(--radius); font-family: var(--font-heading);
  font-size: 0.9rem; font-weight: 600; cursor: pointer;
  transition: background 240ms, color 240ms, border-color 240ms, transform 240ms;
  text-decoration: none;
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface); color: var(--ink);
  border-color: var(--accent); transform: translateY(-2px);
}

/* ── Stats Bar ── */
.stats-bar { background: var(--ink); color: var(--surface); padding: 40px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-item .stat-number {
  font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; color: var(--accent-2); line-height: 1; margin-bottom: 6px;
}
.stat-item .stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.7); font-weight: 500; }

/* ── Section Headers ── */
.section-header { text-align: center; margin-bottom: clamp(32px, 5vw, 56px); }
.section-header h2 { position: relative; display: inline-block; }
.section-header h2::after {
  content: ''; position: absolute; bottom: -8px; left: 50%; transform: translateX(-50%);
  width: 60px; height: 2px;
  background: repeating-linear-gradient(90deg, var(--accent) 0, var(--accent) 6px, transparent 6px, transparent 10px);
}
.section-header p { color: var(--ink-soft); margin: 16px auto 0; max-width: 56ch; }

/* ── Sectors Grid ── */
.sectors-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.sector-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(20px, 3vw, 32px);
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), box-shadow 300ms cubic-bezier(.2,.7,.2,1), border-color 300ms;
}
.sector-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px -12px rgba(0,85,212,0.15); border-color: var(--accent);
}
.sector-card .sector-icon {
  width: 48px; height: 48px; margin-bottom: 16px; color: var(--accent);
  transition: transform 300ms cubic-bezier(.2,.7,.2,1);
}
.sector-card:hover .sector-icon { transform: scale(1.08); color: var(--accent-2); }
.sector-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.sector-card p { font-size: 0.88rem; color: var(--ink-soft); line-height: 1.6; }

/* ── Technical Specs ── */
.teknik-section { background: var(--surface); }
.teknik-content {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px); align-items: start;
}
.teknik-info h3 { margin-bottom: 12px; }
.teknik-info p { color: var(--ink-soft); margin-bottom: 20px; }
.teknik-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.teknik-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; background: var(--bg); border-radius: 20px;
  font-family: var(--font-mono); font-size: 0.75rem; font-weight: 500;
  color: var(--ink-soft);
}

/* ── Tables ── */
.table-scroll {
  display: block; width: 100%; max-width: 100%; min-width: 0;
  overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 18px 0;
  border: 1px solid var(--line); border-radius: var(--radius);
}
.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-family: var(--font-mono); font-size: 0.85rem; font-weight: 500; }
thead { background: var(--ink); color: var(--surface); }
th {
  padding: 12px 16px; text-align: left; font-weight: 600;
  font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; white-space: nowrap;
}
td { padding: 12px 16px; border-bottom: 1px solid var(--line); }
tbody tr:nth-child(even) { background: var(--bg); }
tbody tr:hover { background: rgba(0,85,212,0.04); }

/* ── Process Timeline ── */
.process-timeline { max-width: 680px; margin: 0 auto; position: relative; }
.process-timeline::before {
  content: ''; position: absolute; left: 24px; top: 0; bottom: 0; width: 2px;
  background: repeating-linear-gradient(180deg, var(--accent) 0, var(--accent) 8px, transparent 8px, transparent 14px);
}
.process-step { position: relative; padding-left: 68px; padding-bottom: 40px; }
.process-step:last-child { padding-bottom: 0; }
.process-step .step-number {
  position: absolute; left: 0; top: 0; width: 48px; height: 48px;
  border-radius: 50%; background: var(--accent); color: var(--surface);
  font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center; z-index: 1;
  transition: background 300ms, transform 300ms;
}
.process-step:hover .step-number { background: var(--accent-2); transform: scale(1.08); }
.process-step .step-time {
  font-family: var(--font-mono); font-size: 0.75rem; color: var(--accent);
  font-weight: 500; margin-bottom: 4px; letter-spacing: 0.06em; text-transform: uppercase;
}
.process-step h3 { margin-bottom: 6px; font-size: 1.1rem; }
.process-step p { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.65; }

/* ── Pricing ── */
.pricing-section { background: var(--surface); }
.pricing-note {
  text-align: center; font-family: var(--font-mono);
  font-size: 0.8rem; color: var(--ink-soft); margin-top: 20px;
}
.min-adet {
  display: inline-block; padding: 4px 12px; background: rgba(0,85,212,0.08);
  border-radius: 20px; font-family: var(--font-mono); font-size: 0.75rem;
  font-weight: 500; color: var(--accent);
}

/* ── Testimonials ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(20px, 3vw, 28px);
  position: relative; transition: transform 300ms cubic-bezier(.2,.7,.2,1), box-shadow 300ms;
}
.testimonial-card:hover {
  transform: translateY(-4px); box-shadow: 0 12px 32px -8px rgba(0,85,212,0.12);
}
.testimonial-card::before {
  content: '\201C'; position: absolute; top: 16px; left: 20px;
  font-family: var(--font-heading); font-size: 3.5rem; color: var(--accent);
  opacity: 0.15; line-height: 1;
}
.testimonial-card blockquote {
  font-size: 0.9rem; color: var(--ink); line-height: 1.7;
  margin-bottom: 16px; font-style: italic;
}
.testimonial-author { font-family: var(--font-heading); font-size: 0.85rem; font-weight: 600; color: var(--ink); }
.testimonial-meta { font-size: 0.78rem; color: var(--ink-soft); margin-top: 2px; }

/* ── FAQ Accordion ── */
.faq-list {
  max-width: 780px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 8px;
}
.faq-item {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; transition: border-color 300ms;
}
.faq-item[open] { border-color: var(--accent); }
.faq-item summary {
  padding: clamp(14px, 2.5vw, 20px) clamp(18px, 3vw, 28px);
  font-family: var(--font-heading); font-size: 1rem; font-weight: 600;
  cursor: pointer; display: flex; align-items: center;
  justify-content: space-between; gap: 12px;
  list-style: none; user-select: none; transition: color 240ms;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; content: ''; }
.faq-item summary::after {
  content: ''; width: 10px; height: 10px;
  border-right: 2px solid var(--ink); border-bottom: 2px solid var(--ink);
  transform: rotate(45deg); flex-shrink: 0;
  transition: transform 360ms cubic-bezier(.4,0,.2,1);
}
.faq-item[open] summary::after { transform: rotate(-135deg); }
.faq-item summary:hover { color: var(--accent); }

.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: 26px; }
@media (prefers-reduced-motion: reduce) { .faq-item > .faq-body { transition: none; } }
.faq-body p { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.7; }

/* ── Contact Form ── */
.form-section { background: var(--surface); }
.form-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px); align-items: start;
}
.form-info h3 { margin-bottom: 12px; }
.form-info p { color: var(--ink-soft); margin-bottom: 20px; }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 0.85rem; font-weight: 600; color: var(--ink); }
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="number"],
.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.9rem; color: var(--ink); background: var(--bg);
  transition: border-color 240ms, box-shadow 240ms;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--accent); box-shadow: 0 0 0 3px rgba(0,85,212,0.12); outline: none;
}
.field textarea { min-height: 120px; resize: vertical; }
.field select { cursor: pointer; }

.field input[type="checkbox"],
.kvkk-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);
}
.kvkk-field {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.82rem; color: var(--ink-soft); line-height: 1.5;
}
.kvkk-field a { color: var(--accent); text-decoration: underline; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }

/* ── Footer ── */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.8); padding: clamp(40px, 6vw, 64px) 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(24px, 3vw, 40px); margin-bottom: 40px;
}
.footer-brand { max-width: 280px; }
.footer-brand .logo { color: var(--surface); margin-bottom: 12px; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.65; }

.footer-col h4 {
  color: var(--surface); font-size: 0.9rem; font-weight: 700;
  margin-bottom: 16px; letter-spacing: 0.04em; text-transform: uppercase;
}
.footer-col a {
  display: block; color: rgba(255,255,255,0.65); font-size: 0.85rem;
  padding: 4px 0; transition: color 240ms, padding-left 240ms;
}
.footer-col a:hover { color: var(--accent-2); padding-left: 4px; }

.footer-contact-item {
  display: grid; grid-template-columns: auto 1fr; gap: 10px;
  align-items: start; margin-bottom: 12px; font-size: 0.85rem;
}
.footer-contact-item svg { width: 18px; height: 18px; color: var(--accent-2); margin-top: 2px; flex-shrink: 0; }
.footer-contact-item a { display: inline; padding: 0; }
.footer-contact-item span { word-break: break-word; overflow-wrap: anywhere; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px; font-size: 0.78rem; color: rgba(255,255,255,0.45);
}
.footer-legal { display: flex; flex-wrap: wrap; gap: 16px; }
.footer-legal a { color: rgba(255,255,255,0.45); font-size: 0.78rem; padding: 0; }
.footer-legal a:hover { color: var(--accent-2); padding-left: 0; }

/* ── 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: 20px 24px;
  box-shadow: 0 16px 48px -8px 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; }
@media (min-width: 641px) { .cookie-banner { left: 24px; right: auto; max-width: 420px; } }

.cookie-banner h4 { font-size: 0.95rem; margin-bottom: 8px; }
.cookie-banner p { font-size: 0.82rem; color: var(--ink-soft); line-height: 1.6; margin-bottom: 16px; }
.cookie-banner p a { color: var(--accent); 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-heading); font-size: 0.82rem; font-weight: 600;
  cursor: pointer; transition: background 240ms, color 240ms;
  border: 1.5px solid var(--line-strong); background: var(--surface); color: var(--ink);
}
.cookie-actions button:hover { border-color: var(--accent); color: var(--accent); }
.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); color: var(--surface); border-color: var(--accent);
}
.cookie-actions button[data-consent="reject"] {
  border-color: var(--ink); color: var(--ink); font-weight: 700;
}
.cookie-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) * 80ms); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}
html.no-js .reveal { opacity: 1; transform: none; }

/* ── Niche: Tailoring Animations ── */
@keyframes stitchDash { to { stroke-dashoffset: -24; } }
.stitch-line { stroke-dasharray: 8 4; animation: stitchDash 2s linear infinite; }

@keyframes threadDraw { from { stroke-dashoffset: 200; } to { stroke-dashoffset: 0; } }
.thread-path { stroke-dasharray: 200; stroke-dashoffset: 200; }
.thread-path.is-in { animation: threadDraw 1.5s cubic-bezier(.2,.7,.2,1) forwards; }

@keyframes needlePulse { 0%,100%{transform:scale(1)}50%{transform:scale(1.06)} }

@keyframes stitchUnderline {
  from { background-position: 0 100%; }
  to { background-position: 14px 100%; }
}

.stitch-heading {
  background-image: repeating-linear-gradient(90deg, var(--accent) 0, var(--accent) 6px, transparent 6px, transparent 10px);
  background-size: 200% 2px; background-repeat: repeat-x; background-position: 0 100%;
  padding-bottom: 6px; animation: stitchUnderline 1.5s linear infinite;
}

@keyframes tapeMeasure {
  0% { width: 0; } 100% { width: 100%; }
}

.tape-reveal { overflow: hidden; }
.tape-reveal.is-in::after {
  content: ''; display: block; height: 2px; width: 100%;
  background: repeating-linear-gradient(90deg, var(--accent) 0, var(--accent) 10px, var(--accent-2) 10px, var(--accent-2) 11px, transparent 11px, transparent 20px);
  animation: tapeMeasure 1.2s cubic-bezier(.2,.7,.2,1) forwards;
}

@keyframes scissorSnip {
  0%,100% { transform: rotate(0); }
  25% { transform: rotate(-8deg); }
  75% { transform: rotate(8deg); }
}

.fabric-pattern {
  background-image:
    repeating-linear-gradient(45deg, transparent 0, transparent 10px, rgba(0,85,212,0.03) 10px, rgba(0,85,212,0.03) 11px),
    repeating-linear-gradient(-45deg, transparent 0, transparent 10px, rgba(0,85,212,0.03) 10px, rgba(0,85,212,0.03) 11px);
}

@keyframes threadFloat {
  0%,100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-8px) rotate(1deg); }
  75% { transform: translateY(4px) rotate(-1deg); }
}

@media (prefers-reduced-motion: reduce) {
  .stitch-line, .thread-path, .stitch-heading, .tape-reveal::after,
  .process-step:hover .step-number::after { animation: none !important; }
  .sector-card:hover, .testimonial-card:hover, .team-card:hover,
  .sector-card::after, .testimonial-card::after, .team-card::before {
    transition: none !important;
  }
}

/* ── Page: Inner Pages ── */
.page-hero {
  padding: clamp(48px, 8vw, 80px) 0 clamp(32px, 5vw, 48px);
  background: var(--surface); text-align: center;
}
.page-hero .eyebrow { margin-bottom: 8px; }
.page-content { padding: clamp(32px, 5vw, 64px) 0; }
.page-content h2 { margin-top: 32px; margin-bottom: 12px; }
.page-content h3 { margin-top: 24px; margin-bottom: 8px; }
.page-content p { color: var(--ink-soft); margin-bottom: 16px; line-height: 1.7; }
.page-content ul { margin-bottom: 16px; padding-left: 20px; }
.page-content ul li { list-style: disc; color: var(--ink-soft); margin-bottom: 6px; line-height: 1.6; }

/* ── Contact Page ── */
.contact-channels { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.contact-row {
  display: grid; grid-template-columns: auto 1fr; gap: 14px;
  align-items: start; padding: 12px 16px; border-radius: var(--radius);
  border: 1px solid transparent;
  transition: background 240ms cubic-bezier(.4,0,.2,1), transform 240ms cubic-bezier(.4,0,.2,1), border-color 240ms;
}
.contact-row:hover { background: var(--surface-2); transform: translateX(4px); border-color: var(--line); }
.contact-row svg {
  width: 20px; height: 20px; color: var(--ink-soft); margin-top: 2px;
  flex-shrink: 0; transition: color 240ms;
}
.contact-row:hover svg { color: var(--accent); }
.contact-row strong { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 2px; }
.contact-row span, .contact-row a {
  font-size: 0.88rem; color: var(--ink-soft);
  word-break: break-word; overflow-wrap: anywhere;
}

/* ── Team ── */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(20px, 3vw, 28px);
  text-align: center; transition: transform 300ms cubic-bezier(.2,.7,.2,1), box-shadow 300ms;
}
.team-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px -8px rgba(0,85,212,0.12); }
.team-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--bg); border: 2px solid var(--line);
  margin: 0 auto 16px; display: flex; align-items: center;
  justify-content: center; color: var(--accent);
}
.team-card h3 { font-size: 1.05rem; margin-bottom: 4px; }
.team-card .team-role {
  font-family: var(--font-mono); font-size: 0.75rem;
  color: var(--accent); margin-bottom: 12px; font-weight: 500;
}
.team-card p { font-size: 0.85rem; color: var(--ink-soft); line-height: 1.65; }

/* ── Thank You ── */
.thankyou-wrap {
  min-height: calc(100vh - var(--header-h) - 200px);
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 48px var(--pad);
}
.thankyou-content h1 { margin-bottom: 16px; color: var(--accent-2); }
.thankyou-content p { color: var(--ink-soft); margin: 0 auto 32px; }

/* ── 404 ── */
.error-wrap {
  min-height: calc(100vh - var(--header-h) - 200px);
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 48px var(--pad);
}
.error-code {
  font-family: var(--font-mono); font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 700; color: var(--line); line-height: 1; margin-bottom: 16px;
}

/* ── Sitemap ── */
.sitemap-list { columns: 2; gap: 32px; }
.sitemap-list li { list-style: none; margin-bottom: 8px; }
.sitemap-list a { font-size: 0.95rem; display: inline-flex; align-items: center; gap: 6px; }
.sitemap-list a::before { content: '\2192'; color: var(--accent); }

/* ── Dark Band ── */
.dark-band { background: var(--ink); color: var(--surface); }
.dark-band h2, .dark-band h3, .dark-band h4 { color: var(--surface); }
.dark-band p { color: rgba(255,255,255,0.75); }
.dark-band .section-header h2::after {
  background: repeating-linear-gradient(90deg, var(--accent-2) 0, var(--accent-2) 6px, transparent 6px, transparent 10px);
}
.dark-band .sector-card::after {
  background: repeating-linear-gradient(90deg, var(--accent-2) 0, var(--accent-2) 6px, transparent 6px, transparent 10px);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; min-height: auto; }
  .hero-svg-wrap { order: -1; }
  .hero-svg { max-width: 340px; }
  .hero-text { align-items: center; }
  .hero-text h1 { text-align: center; }
  .hero-text .hero-sub { text-align: center; }
  .trust-strip { justify-content: center; }
  .teknik-content { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .team-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .sitemap-list { columns: 1; }
  :root { --header-h: 60px; }
}
@media (max-width: 640px) {
  .hero-svg-wrap { display: none; }
  .sectors-grid { grid-template-columns: 1fr; }
  .hero-text h1 { font-size: clamp(1.7rem, 7vw, 2.4rem); }
  .trust-strip { gap: 6px; }
  .trust-badge { font-size: 0.72rem; padding: 5px 10px; }
  .sector-card { padding: 16px 20px; }
  .sector-card .sector-icon { width: 36px; height: 36px; }
  .process-timeline::before { left: 18px; }
  .process-step { padding-left: 52px; }
  .process-step .step-number { width: 36px; height: 36px; font-size: 0.9rem; }
  .cookie-banner { bottom: 8px; left: 8px; right: 8px; padding: 16px; }
  .cookie-actions { flex-direction: column; }
  .cookie-actions button { flex: none; width: 100%; }
}
@media (max-width: 430px) {
  body { font-size: 15px; }
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.4rem; }
  section { padding: 40px 0; }
}
@media (max-width: 360px) {
  :root { --pad: 14px; }
  .hero-text h1 { font-size: 1.5rem; }
  .stat-item .stat-number { font-size: 1.8rem; }
}

/* ── Section Images ── */
.section-header img,
.hero-text > img {
  border-radius: var(--radius-lg);
  margin-top: 24px;
  box-shadow: 0 8px 32px -8px rgba(0,0,0,0.12);
  transition: transform 500ms cubic-bezier(.2,.7,.2,1), box-shadow 500ms cubic-bezier(.2,.7,.2,1);
}
.section-header img:hover,
.hero-text > img:hover {
  transform: scale(1.015);
  box-shadow: 0 16px 48px -8px rgba(0,0,0,0.18);
}

/* ── Enhanced Tailoring Micro-effects ── */
.sector-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: repeating-linear-gradient(90deg, var(--accent) 0, var(--accent) 6px, transparent 6px, transparent 10px);
  opacity: 0; transition: opacity 400ms cubic-bezier(.2,.7,.2,1);
}
.sector-card { position: relative; overflow: hidden; }
.sector-card:hover::after { opacity: 1; }

.process-step .step-number::after {
  content: ''; position: absolute; inset: -4px; border-radius: 50%;
  border: 2px dashed transparent;
  transition: border-color 400ms cubic-bezier(.2,.7,.2,1);
}
.process-step:hover .step-number::after { border-color: var(--accent); animation: stitchDash 2s linear infinite; }

.testimonial-card::after {
  content: ''; position: absolute; bottom: 0; left: 24px; right: 24px; height: 2px;
  background: repeating-linear-gradient(90deg, var(--accent) 0, var(--accent) 4px, transparent 4px, transparent 8px);
  opacity: 0; transition: opacity 400ms;
}
.testimonial-card:hover::after { opacity: 0.5; }

.team-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0); transform-origin: left;
  transition: transform 400ms cubic-bezier(.2,.7,.2,1);
}
.team-card { position: relative; overflow: hidden; }
.team-card:hover::before { transform: scaleX(1); }

.faq-item { transition: border-color 300ms, box-shadow 300ms; }
.faq-item:hover { box-shadow: 0 4px 16px -4px rgba(0,85,212,0.08); }
.faq-item[open] { box-shadow: 0 8px 24px -8px rgba(0,85,212,0.12); }

/* ── Stagger reveal smoother ── */
.reveal[style*="--i"] {
  transition-delay: calc(var(--i) * 100ms);
  transition-timing-function: cubic-bezier(.16,1,.3,1);
}

/* ── Legal pages enhanced structure ── */
.page-content h2 {
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.page-content h2:first-child,
.page-content > .container > h2:first-of-type { border-top: none; padding-top: 0; }

.page-content ul {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 16px 20px 16px 36px;
  border-left: 3px solid var(--accent);
}
.page-content ul li {
  line-height: 1.7;
  margin-bottom: 8px;
}
.page-content ul li:last-child { margin-bottom: 0; }

/* ── Cookie banner mobile — no padding hacks ── */

/* ── Table row hover on mobile ── */
tbody tr {
  transition: background 200ms;
}

/* ── Table scroll hint (mobile) ── */
@media (max-width: 768px) {
  .table-scroll {
    box-shadow: inset -24px 0 16px -16px rgba(0,0,0,0.08);
  }
}

/* ── Enhanced card reveal with stagger ── */
.sector-card.reveal { transition-duration: 500ms; }
.sector-card.reveal.is-in { transition-timing-function: cubic-bezier(.16,1,.3,1); }

.testimonial-card.reveal { transition-duration: 500ms; }
.testimonial-card.reveal.is-in { transition-timing-function: cubic-bezier(.16,1,.3,1); }

/* ── Tailoring-specific button thread effect ── */
.btn-primary { position: relative; overflow: hidden; }
.btn-primary::before {
  content: ''; position: absolute; top: 50%; left: -100%; width: 200%;
  height: 1px; background: repeating-linear-gradient(90deg, transparent 0, transparent 4px, rgba(255,255,255,0.4) 4px, rgba(255,255,255,0.4) 8px);
  transition: left 600ms cubic-bezier(.16,1,.3,1); pointer-events: none;
}
.btn-primary:hover::before { left: 0; }

/* ── Fabric-weave bg enhancement on hero ── */
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0.03;
  background-image:
    repeating-linear-gradient(0deg, var(--ink) 0, var(--ink) 1px, transparent 1px, transparent 16px),
    repeating-linear-gradient(90deg, var(--ink) 0, var(--ink) 1px, transparent 1px, transparent 16px);
}

/* ── Section divider stitch line ── */
.stats-bar { position: relative; }
.stats-bar::before {
  content: ''; position: absolute; top: 0; left: 50%;
  transform: translateX(-50%); width: min(90%, var(--max-w));
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--accent-2) 0, var(--accent-2) 6px, transparent 6px, transparent 12px);
  opacity: 0.5;
}

/* ── Enhanced FAQ on dark-band ── */
.dark-band .faq-item {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
}
.dark-band .faq-item summary { color: var(--surface); }
.dark-band .faq-item summary::after {
  border-color: rgba(255,255,255,0.6);
}
.dark-band .faq-item[open] {
  background: rgba(255,255,255,0.1);
  border-color: var(--accent-2);
}
.dark-band .faq-item[open] summary::after { border-color: var(--accent-2); }
.dark-band .faq-item summary:hover { color: var(--accent-2); }
.dark-band .faq-item:hover {
  box-shadow: 0 4px 16px -4px rgba(0,184,148,0.12);
}
.dark-band .faq-item[open] {
  box-shadow: 0 8px 24px -8px rgba(0,184,148,0.18);
}
.dark-band .faq-body p { color: rgba(255,255,255,0.7); }

/* ── Smoother reveal with fabric-unfold feel ── */
.reveal {
  transition-timing-function: cubic-bezier(.16,1,.3,1);
}

/* ── Contact row icon thread-draw ── */
.contact-row svg {
  transition: color 240ms, transform 300ms cubic-bezier(.16,1,.3,1);
}
.contact-row:hover svg { transform: scale(1.1) rotate(-5deg); }

/* ── Pricing table row hover highlight ── */
tbody tr:hover {
  background: rgba(0,85,212,0.06);
}

/* ── Stat number count glow ── */
.stat-number {
  transition: text-shadow 400ms;
}
.stat-item:hover .stat-number {
  text-shadow: 0 0 24px rgba(0,184,148,0.3);
}

/* ── Process step thread-connect on hover ── */
.process-step h3 {
  transition: color 240ms;
}
.process-step:hover h3 { color: var(--accent); }

/* ── Drawer Close ── */

/* ── Drawer CTA ── */
.drawer .drawer-cta {
  margin-top: auto;
}

/* ── Scroll Progress ── */
.scroll-progress {
  position: absolute; bottom: 0; left: 0; height: 2px; width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  z-index: 1; pointer-events: none;
  transition: none;
}

/* ── Reduced motion for new effects ── */
@media (prefers-reduced-motion: reduce) {
  .btn-primary::before { transition: none; display: none; }
  .contact-row svg { transition: none; }
  .contact-row:hover svg { transform: none; }
  .stat-number { transition: none; }
  .stat-item:hover .stat-number { text-shadow: none; }
  .process-step h3 { transition: none; }
}

/* ── Print ── */
@media print {
  .site-header, .drawer, .drawer-backdrop, .cookie-banner, .nav-toggle, .skip-link { display: none !important; }
  main { padding-top: 0; }
  body { color: #000; background: #fff; }
  a { color: #000; text-decoration: underline; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
