/* ─────────────────────────────────────────
   BZH Digital — Design System
   ───────────────────────────────────────── */

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

:root {
  --blue:        oklch(54% 0.225 262);
  --blue-hover:  oklch(49% 0.24 262);
  --blue-subtle: oklch(97% 0.018 262);
  --dark:        oklch(10.5% 0.028 265);
  --bg:          oklch(99.5% 0.003 262);
  --bg-alt:      oklch(97.5% 0.006 262);
  --text:        oklch(13% 0.025 265);
  --text-soft:   oklch(50% 0.012 265);
  --text-light:  oklch(70% 0.01 265);
  --text-on-dark: oklch(96% 0.006 262);
  --border:      oklch(91% 0.008 262);
  --border-med:  oklch(82% 0.012 262);

  --font: 'Sora', sans-serif;
  --nav-h: 72px;
  --section-pad: clamp(4rem, 8vw, 8rem);
  --max-w: 1280px;
  --pad-x: clamp(1.5rem, 5vw, 3rem);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button { font-family: var(--font); }

/* ─── Scroll progress ─── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--blue);
  z-index: 200;
  transition: width 0.08s linear;
}

/* ─── Navigation ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.nav.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 2px 20px oklch(0% 0 0 / 0.04);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo { flex-shrink: 0; }
.nav-logo img { height: 34px; width: auto; }

.nav-links {
  display: flex;
  gap: 0.25rem;
  list-style: none;
  margin: 0 auto;
}

.nav-links a {
  display: block;
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-soft);
  text-decoration: none;
  position: relative;
  transition: color 0.2s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.75rem;
  right: 100%;
  height: 1px;
  background: var(--blue);
  transition: right 0.25s cubic-bezier(0.16,1,0.3,1);
}

.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { right: 0.75rem; }
.nav-links a[aria-current="page"] { color: var(--text); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5625rem 1.125rem;
  background: var(--dark);
  color: var(--text-on-dark);
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--dark);
  border-radius: 0;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
}

.nav-cta:hover {
  background: var(--blue);
  border-color: var(--blue);
}

.nav-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.nav-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Buttons ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: var(--dark);
  color: var(--text-on-dark);
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--dark);
  border-radius: 0;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--blue);
  border-color: var(--blue);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: transparent;
  color: var(--text);
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--dark);
  border-radius: 0;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.btn-secondary:hover {
  background: var(--dark);
  color: var(--text-on-dark);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: var(--bg);
  color: var(--dark);
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background 0.2s;
  white-space: nowrap;
}

.btn-white:hover {
  background: oklch(96% 0.005 262);
}

/* ─── Hero ─── */
.hero {
  min-height: 100svh;
  padding-top: var(--nav-h);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: clamp(3rem, 6vw, 5rem);
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.4;
  pointer-events: none;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--blue);
}

.hero-headline {
  font-size: clamp(3.2rem, 2rem + 5.5vw, 7.5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.025em;
  max-width: 16ch;
  margin-bottom: 2rem;
}

.hero-headline .accent { color: var(--blue); }

.hero-rule {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin-bottom: 1.75rem;
}

.hero-sub {
  font-size: clamp(1rem, 0.875rem + 0.5vw, 1.125rem);
  color: var(--text-soft);
  max-width: 60ch;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  right: var(--pad-x);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
  writing-mode: vertical-rl;
}

/* Hero entrance — only fires after JS adds .hero-ready to body */
.hero-ready .hero-eyebrow  { animation: heroIn 0.6s cubic-bezier(0.16,1,0.3,1) 0.05s both; }
.hero-ready .hero-headline { animation: heroIn 0.7s cubic-bezier(0.16,1,0.3,1) 0.15s both; }
.hero-ready .hero-rule     { animation: heroIn 0.6s cubic-bezier(0.16,1,0.3,1) 0.28s both; }
.hero-ready .hero-sub      { animation: heroIn 0.6s cubic-bezier(0.16,1,0.3,1) 0.35s both; }
.hero-ready .hero-actions  { animation: heroIn 0.6s cubic-bezier(0.16,1,0.3,1) 0.44s both; }
.hero-ready .hero-scroll   { animation: heroIn 0.6s cubic-bezier(0.16,1,0.3,1) 0.55s both; }

@keyframes heroIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── Ticker / Marquee ─── */
.ticker {
  background: var(--dark);
  overflow: hidden;
  white-space: nowrap;
  padding: 0.875rem 0;
  border-bottom: 1px solid oklch(20% 0.025 265);
}

.ticker-inner {
  display: inline-flex;
  animation: ticker 35s linear infinite;
}

.ticker-track {
  display: flex;
  align-items: center;
}

.ticker-track span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: oklch(65% 0.01 265);
  padding: 0 2rem;
}

.ticker-track .sep {
  color: var(--blue);
  font-size: 0.5rem;
  padding: 0;
  flex-shrink: 0;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── Section headers ─── */
.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
}

.section-title {
  font-size: clamp(2rem, 1.2rem + 3.5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.015em;
}

.section-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-soft);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  transition: color 0.2s;
  flex-shrink: 0;
}

.section-link:hover { color: var(--blue); }

/* ─── Services section ─── */
.services {
  padding: var(--section-pad) var(--pad-x);
  max-width: var(--max-w);
  margin: 0 auto;
}

.service-list { list-style: none; }

.service-item {
  display: grid;
  grid-template-columns: 3.5rem 1fr auto;
  align-items: start;
  gap: 0 2rem;
  padding: 2rem 1rem;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: background 0.2s, padding-left 0.2s;
  margin: 0 -1rem;
}

.service-item:hover {
  background: var(--blue-subtle);
}

.service-num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.05em;
  padding-top: 0.4rem;
  font-variant-numeric: tabular-nums;
}

.service-body { min-width: 0; }

.service-title {
  font-size: clamp(1.2rem, 0.9rem + 1.2vw, 1.625rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.service-desc {
  font-size: 0.9375rem;
  color: var(--text-soft);
  max-width: 55ch;
  line-height: 1.65;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-top: 0.75rem;
}

.tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
  border: 1px solid var(--border);
  padding: 0.2rem 0.5rem;
}

.service-arrow {
  font-size: 1.125rem;
  color: var(--text-light);
  transition: color 0.2s, transform 0.2s;
  padding-top: 0.35rem;
  flex-shrink: 0;
}

.service-item:hover .service-arrow {
  color: var(--blue);
  transform: translateX(4px);
}

/* ─── Stats bar ─── */
.stats-bar {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem var(--pad-x);
}

.stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-right: 2rem;
  border-right: 1px solid var(--border);
}

.stat-item:last-child {
  border-right: none;
  padding-right: 0;
}

.stat-value {
  font-size: clamp(2.25rem, 1.5rem + 3vw, 3.5rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.stat-value .stat-unit {
  font-size: 0.55em;
  font-weight: 600;
  color: var(--blue);
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--text-soft);
  line-height: 1.4;
}

/* ─── Why section ─── */
.why {
  background: var(--dark);
  color: var(--text-on-dark);
  padding: var(--section-pad) var(--pad-x);
}

.why-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.why .section-title { color: var(--text-on-dark); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: oklch(22% 0.025 265);
  border: 1px solid oklch(22% 0.025 265);
  margin-top: 3rem;
}

.why-item {
  background: var(--dark);
  padding: 2.25rem 2rem;
  transition: background 0.2s;
}

.why-item:hover {
  background: oklch(13% 0.028 265);
}

.why-num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.875rem;
}

.why-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: oklch(95% 0.006 262);
  margin-bottom: 0.625rem;
  line-height: 1.3;
}

.why-text {
  font-size: 0.9rem;
  color: oklch(60% 0.01 265);
  line-height: 1.7;
  max-width: 38ch;
}

/* ─── Zones section ─── */
.zones {
  padding: var(--section-pad) var(--pad-x);
  background: var(--bg-alt);
}

.zones-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.zones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 2.5rem;
}

.zone-item {
  background: var(--bg-alt);
  padding: 2rem 1.75rem;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
  display: block;
}

.zone-item:hover { background: var(--bg); }

.zone-flag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.625rem;
}

.zone-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.375rem;
}

.zone-meta {
  font-size: 0.8125rem;
  color: var(--text-soft);
  line-height: 1.5;
}

/* ─── Testimonials ─── */
.testimonials {
  padding: var(--section-pad) var(--pad-x);
}

.testimonials-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.testimonial-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.testimonial-item {
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.testimonial-item:first-child { border-top: 1px solid var(--border); }

.testimonial-quote {
  font-size: clamp(1.1rem, 0.9rem + 0.8vw, 1.3rem);
  font-weight: 500;
  line-height: 1.65;
  color: var(--text);
}

.testimonial-quote::before {
  content: '\201C';
  font-size: 3em;
  line-height: 0;
  vertical-align: -0.5em;
  color: var(--blue);
  margin-right: 0.1em;
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  gap: 1.5rem;
}

.testimonial-stars {
  color: var(--blue);
  letter-spacing: 3px;
  font-size: 0.875rem;
}

.testimonial-author-name {
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.testimonial-author-role {
  font-size: 0.8125rem;
  color: var(--text-soft);
  line-height: 1.5;
}

.testimonial-service {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  border: 1px solid var(--border);
  padding: 0.25rem 0.6rem;
  display: inline-block;
  margin-top: 0.5rem;
}

/* ─── FAQ ─── */
.faq {
  padding: var(--section-pad) var(--pad-x);
  background: var(--bg-alt);
}

.faq-inner {
  max-width: 860px;
  margin: 0 auto;
}

.faq-list {
  list-style: none;
  border-top: 1px solid var(--border);
  margin-top: 3rem;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.375rem 0;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font);
  transition: color 0.2s;
}

.faq-question:hover { color: var(--blue); }

.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 1px solid var(--border-med);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1;
  color: var(--text-soft);
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), border-color 0.2s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  border-color: var(--blue);
  color: var(--blue);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.16,1,0.3,1);
}

.faq-item.open .faq-answer { grid-template-rows: 1fr; }

.faq-answer-inner {
  overflow: hidden;
  padding-bottom: 0;
  transition: padding-bottom 0.35s cubic-bezier(0.16,1,0.3,1);
}

.faq-item.open .faq-answer-inner { padding-bottom: 1.5rem; }

.faq-answer-inner p {
  color: var(--text-soft);
  font-size: 0.9375rem;
  line-height: 1.75;
  max-width: 65ch;
}

/* ─── CTA section ─── */
.cta-section {
  background: var(--blue);
  padding: clamp(4rem, 8vw, 7rem) var(--pad-x);
  text-align: center;
}

.cta-inner { max-width: 640px; margin: 0 auto; }

.cta-headline {
  font-size: clamp(2rem, 1.2rem + 3.5vw, 3.25rem);
  font-weight: 800;
  color: oklch(99% 0.003 262);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.cta-sub {
  font-size: 1rem;
  color: oklch(88% 0.02 262);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ─── Process section ─── */
.process {
  padding: var(--section-pad) var(--pad-x);
}

.process-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 3rem;
}

.process-step {
  background: var(--bg);
  padding: 2.5rem 2rem;
}

.process-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
}

.process-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
}

.process-text {
  font-size: 0.875rem;
  color: var(--text-soft);
  line-height: 1.7;
}

/* ─── Intro section ─── */
.intro {
  padding: var(--section-pad) var(--pad-x);
}

.intro-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.intro-lead {
  font-size: clamp(1.25rem, 0.9rem + 1.5vw, 1.625rem);
  font-weight: 600;
  line-height: 1.45;
  color: var(--text);
}

.intro-lead .accent { color: var(--blue); }

.intro-body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.intro-body p {
  font-size: 0.9375rem;
  color: var(--text-soft);
  line-height: 1.75;
  max-width: none;
}

/* ─── Page hero (non-homepage) ─── */
.page-hero {
  min-height: 60vh;
  padding-top: var(--nav-h);
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(3rem, 6vw, 5rem);
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.35;
  pointer-events: none;
}

.page-hero-inner {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
}

.page-hero-breadcrumb {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-soft);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.page-hero-breadcrumb a {
  text-decoration: none;
  transition: color 0.2s;
}

.page-hero-breadcrumb a:hover { color: var(--blue); }

.page-hero-headline {
  font-size: clamp(2.5rem, 1.5rem + 4.5vw, 5.5rem);
  font-weight: 800;
  line-height: 0.97;
  letter-spacing: -0.025em;
  max-width: 18ch;
  margin-bottom: 1.5rem;
}

.page-hero-headline .accent { color: var(--blue); }

.page-hero-sub {
  font-size: 1.0625rem;
  color: var(--text-soft);
  max-width: 55ch;
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* ─── Content sections ─── */
.content-section {
  padding: var(--section-pad) var(--pad-x);
}

.content-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.content-body {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 5rem;
  align-items: start;
}

.content-text h3 {
  font-size: clamp(1.25rem, 0.9rem + 1.5vw, 1.625rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  margin-top: 2.5rem;
}

.content-text h3:first-child { margin-top: 0; }

.content-text p {
  font-size: 0.9375rem;
  color: var(--text-soft);
  line-height: 1.75;
  margin-bottom: 1rem;
  max-width: none;
}

.content-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}

.sidebar-card {
  border: 1px solid var(--border);
  padding: 2rem;
  background: var(--bg-alt);
  margin-bottom: 1.5rem;
}

.sidebar-card-title {
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.sidebar-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sidebar-list li {
  font-size: 0.875rem;
  color: var(--text-soft);
  padding-left: 1.25rem;
  position: relative;
}

.sidebar-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-size: 0.75rem;
  top: 0.1rem;
}

/* ─── Footer ─── */
.footer {
  background: var(--dark);
  color: var(--text-on-dark);
  padding: clamp(3rem, 6vw, 5rem) var(--pad-x);
  padding-bottom: 2rem;
}

.footer-inner { max-width: var(--max-w); margin: 0 auto; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid oklch(20% 0.025 265);
}

.footer-logo { margin-bottom: 1.25rem; }
.footer-logo img { height: 30px; filter: brightness(0) invert(1); opacity: 0.9; }

.footer-brand-desc {
  font-size: 0.875rem;
  color: oklch(55% 0.012 265);
  line-height: 1.7;
  max-width: 34ch;
  margin-bottom: 1.5rem;
}

.footer-contact-item {
  font-size: 0.8125rem;
  color: oklch(65% 0.01 265);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.375rem;
}

.footer-heading {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: oklch(50% 0.012 265);
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: oklch(70% 0.01 265);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: oklch(97% 0.003 262); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
}

.footer-copy {
  font-size: 0.8rem;
  color: oklch(40% 0.01 265);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.8rem;
  color: oklch(40% 0.01 265);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal a:hover { color: oklch(70% 0.01 265); }

/* ─── Floating CTA ─── */
.float-cta {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.75rem 1.25rem;
  background: var(--blue);
  color: oklch(99% 0.003 262);
  font-family: var(--font);
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 28px oklch(54% 0.225 262 / 0.4);
  transform: translateY(80px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), opacity 0.4s, background 0.2s;
}

.float-cta.visible {
  transform: translateY(0);
  opacity: 1;
}

.float-cta:hover { background: var(--blue-hover); }

/* ─── Scroll reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-delay-1.visible { transition-delay: 0.1s; }
.reveal-delay-2.visible { transition-delay: 0.2s; }
.reveal-delay-3.visible { transition-delay: 0.3s; }
.reveal-delay-4.visible { transition-delay: 0.4s; }
.reveal-delay-5.visible { transition-delay: 0.5s; }

/* ─── Utility ─── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
}

.text-blue { color: var(--blue); }
.text-muted { color: var(--text-soft); }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .intro-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .content-body { grid-template-columns: 1fr; gap: 3rem; }
  .content-sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 0.5rem 0;
    gap: 0;
    box-shadow: 0 8px 24px oklch(0% 0 0 / 0.08);
  }

  .nav-links.open { display: flex; }

  .nav-links li a {
    padding: 0.75rem var(--pad-x);
    border-radius: 0;
  }

  .nav-links a::after { display: none; }

  .nav-menu-btn { display: flex; }

  .nav-cta { display: none; }

  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; padding-right: 0; border-bottom: 1px solid var(--border); padding-bottom: 1.5rem; }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }

  .why-grid { grid-template-columns: 1fr; }

  .testimonial-item { grid-template-columns: 1fr; gap: 1.5rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

  .process-grid { grid-template-columns: 1fr; }

  .hero-headline { font-size: clamp(2.8rem, 2rem + 4vw, 4.5rem); }

  .float-cta { display: none; }
}

@media (max-width: 480px) {
  .stats-inner { grid-template-columns: 1fr; }
  .stat-item { border-bottom: 1px solid var(--border); border-right: none; padding-right: 0; }
  .stat-item:last-child { border-bottom: none; }
}

/* ─── Legal pages ─── */
.legal-hero {
  background: var(--dark);
  color: var(--text-on-dark);
  padding: calc(var(--nav-h) + 4rem) var(--pad-x) 4rem;
}

.legal-hero-inner {
  max-width: 72ch;
  margin: 0 auto;
}

.legal-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  color: oklch(55% 0.015 265);
  margin-bottom: 1.5rem;
}

.legal-hero .breadcrumb a {
  color: oklch(55% 0.015 265);
  text-decoration: none;
  transition: color 0.2s;
}

.legal-hero .breadcrumb a:hover { color: oklch(80% 0.015 265); }

.legal-hero h1 {
  font-size: clamp(2rem, 1.5rem + 2.5vw, 3.25rem);
  font-weight: 800;
  color: oklch(97% 0.003 262);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.legal-hero p {
  font-size: 1.0625rem;
  color: oklch(65% 0.012 265);
  line-height: 1.65;
  max-width: 60ch;
}

.legal-content {
  padding: 4rem var(--pad-x) 6rem;
  background: var(--bg);
}

.legal-inner {
  max-width: 72ch;
  margin: 0 auto;
}

.legal-article h2 {
  font-size: 1.3125rem;
  font-weight: 700;
  color: var(--dark);
  margin-top: 3rem;
  margin-bottom: 0.875rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--blue);
}

.legal-article h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--dark);
  margin-top: 2rem;
  margin-bottom: 0.625rem;
}

.legal-article p {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: oklch(28% 0.018 265);
  margin-bottom: 1rem;
}

.legal-article ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.legal-article li {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: oklch(28% 0.018 265);
  margin-bottom: 0.375rem;
}

.legal-article a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-article a:hover {
  text-decoration: none;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0 1.75rem;
  font-size: 0.875rem;
}

.legal-table th {
  background: oklch(97% 0.003 262);
  color: var(--dark);
  font-weight: 600;
  text-align: left;
  padding: 0.625rem 0.875rem;
  border: 1px solid oklch(88% 0.008 265);
}

.legal-table td {
  padding: 0.5625rem 0.875rem;
  border: 1px solid oklch(88% 0.008 265);
  color: oklch(30% 0.018 265);
  vertical-align: top;
}

.legal-table tr:nth-child(even) td {
  background: oklch(98.5% 0.002 262);
}

.legal-table code {
  font-family: ui-monospace, monospace;
  font-size: 0.8125rem;
  background: oklch(94% 0.005 265);
  padding: 0.1em 0.4em;
  border-radius: 3px;
}

.legal-updated {
  margin-top: 3rem;
  font-size: 0.8125rem;
  color: oklch(55% 0.012 265);
}

@media (max-width: 768px) {
  .legal-hero { padding: calc(var(--nav-h) + 2.5rem) var(--pad-x) 2.5rem; }
  .legal-table { display: block; overflow-x: auto; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .reveal.visible { transition: none; }
  .hero-eyebrow, .hero-headline, .hero-rule, .hero-sub, .hero-actions, .hero-scroll { animation: none; }
  .ticker-inner { animation: none; }
}

/* ─── Focus styles ─── */
:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}
