/* ==========================================================================
   AIFFECTIVE — DESIGN SYSTEM "PAPER & INK"
   Warm off-white paper · ink-navy (#020A38) · one ember of orange (#FF6B00)
   Editorial, premium, Silicon Valley minimal.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --paper: #FAFAF7;
  --paper-2: #F4F3EE;
  --white: #FFFFFF;
  --navy: #020A38;
  --navy-2: #0A1448;
  --navy-soft: #1B2456;
  --ink: #11173F;
  --body: #494F70;
  --muted: #8A8FA6;
  --hairline: #E8E7E0;
  --hairline-2: #DEDDD5;
  --orange: #FF6B00;
  --orange-deep: #E85F00;
  --orange-tint: #FFF1E6;
  --green: #0E9F6E;
  --red: #D93025;

  --font-display: 'Inter Tight', 'Inter', sans-serif;
  --font-serif: 'Instrument Serif', Georgia, serif;
  --font-body: 'Inter', sans-serif;

  --ease: cubic-bezier(0.25, 1, 0.35, 1);
  --ease-spring: cubic-bezier(0.32, 1.35, 0.42, 1);

  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;

  --shadow-sm: 0 1px 2px rgba(2, 10, 56, 0.05), 0 1px 1px rgba(2, 10, 56, 0.03);
  --shadow-md: 0 1px 2px rgba(2, 10, 56, 0.05), 0 10px 30px -8px rgba(2, 10, 56, 0.09);
  --shadow-lg: 0 2px 4px rgba(2, 10, 56, 0.05), 0 28px 60px -16px rgba(2, 10, 56, 0.16);

  --header-h: 72px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--paper);
  color: var(--body);
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
ul, ol { list-style: none; }
::selection { background: var(--navy); color: #fff; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--paper); }
::-webkit-scrollbar-thumb { background: #CFCEC6; border-radius: 6px; border: 2px solid var(--paper); }
::-webkit-scrollbar-thumb:hover { background: #B9B8AF; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: 1168px; margin: 0 auto; padding: 0 28px; }
.container-wide { width: 100%; max-width: 1360px; margin: 0 auto; padding: 0 28px; }
.section { position: relative; padding: clamp(88px, 11vw, 148px) 0; }
.section-sm { position: relative; padding: clamp(56px, 7vw, 88px) 0; }
.hairline-top { border-top: 1px solid var(--hairline); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; color: var(--navy); line-height: 1.04; letter-spacing: -0.035em; }
.display-xl { font-size: clamp(2.9rem, 6.6vw, 5.5rem); letter-spacing: -0.045em; }
.display-lg { font-size: clamp(2.3rem, 4.6vw, 3.9rem); letter-spacing: -0.04em; }
.display-md { font-size: clamp(1.8rem, 3.2vw, 2.7rem); }
.display-sm { font-size: clamp(1.35rem, 2vw, 1.7rem); letter-spacing: -0.025em; }
.serif { font-family: var(--font-serif); font-style: italic; font-weight: 400; letter-spacing: -0.015em; }
.serif.orange { color: var(--orange); }
.lead { font-size: clamp(1.08rem, 1.5vw, 1.28rem); line-height: 1.65; color: var(--body); }
.muted { color: var(--muted); }

.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 22px;
}
.kicker::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--orange); }

.section-head { max-width: 800px; margin-bottom: clamp(40px, 6vw, 72px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-bottom: 20px; }
.section-head .lead { max-width: 620px; }
.section-head.center .lead { margin-inline: auto; }
.section-head .split { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; flex-wrap: wrap; }

/* ---------- Buttons ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 550; font-size: 0.96rem; letter-spacing: -0.01em;
  border-radius: 999px; padding: 15px 28px; white-space: nowrap;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, background 0.25s, border-color 0.25s, color 0.25s;
  will-change: transform;
}
.btn svg { width: 15px; height: 15px; flex-shrink: 0; transition: transform 0.3s var(--ease); }
.btn:hover svg.arrow { transform: translateX(4px); }
.btn-primary { background: var(--navy); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--navy-2); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-ghost { background: var(--white); color: var(--navy); border: 1px solid var(--hairline-2); }
.btn-ghost:hover { border-color: var(--navy); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-orange { background: var(--orange); color: #fff; }
.btn-orange:hover { background: var(--orange-deep); transform: translateY(-2px); box-shadow: 0 14px 30px -10px rgba(255, 107, 0, 0.45); }
.btn-on-dark { background: #fff; color: var(--navy); }
.btn-on-dark:hover { transform: translateY(-2px); box-shadow: 0 16px 36px -12px rgba(0, 0, 0, 0.5); }
.btn-ghost-dark { background: transparent; color: #fff; border: 1px solid rgba(255, 255, 255, 0.28); }
.btn-ghost-dark:hover { border-color: #fff; transform: translateY(-2px); }
.btn-lg { padding: 18px 34px; font-size: 1.02rem; }
.btn-sm { padding: 11px 21px; font-size: 0.88rem; }

.link-arrow { display: inline-flex; align-items: center; gap: 7px; color: var(--navy); font-weight: 600; font-size: 0.94rem; }
.link-arrow svg { width: 15px; height: 15px; transition: transform 0.3s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }
.link-arrow.orange { color: var(--orange); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 90;
  background: var(--white);
  border-bottom: 1px solid var(--hairline);
  transition: transform 0.5s var(--ease), box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: 0 4px 18px -8px rgba(2, 10, 56, 0.08); }
.brand-logo { display: block; height: 50px; width: auto; }
.footer-brand-link .brand-logo { height: 34px; }
.site-header.hidden-up { transform: translateY(-100%); }
.header-inner { max-width: 1360px; margin: 0 auto; padding: 0 28px; height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.brand { display: flex; align-items: center; gap: 7px; font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; letter-spacing: -0.04em; color: var(--navy); line-height: 1; }
.brand .brand-ai { color: var(--orange); }
.brand-mark { height: 34px; width: 34px; object-fit: contain; display: block; }
.brand-text { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; letter-spacing: -0.04em; color: var(--navy); line-height: 1; margin-left: -3px; }
.footer-brand-link .brand-mark { height: 40px; width: 40px; }
.footer-brand-link .brand-text { font-size: 1.7rem; }

.main-nav { display: flex; align-items: center; gap: 2px; }
.nav-link {
  position: relative; display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 15px; font-size: 0.93rem; font-weight: 500; color: var(--body);
  border-radius: 999px; transition: color 0.2s, background 0.2s;
}
.nav-link:hover { color: var(--navy); background: rgba(2, 10, 56, 0.045); }
.nav-link.active { color: var(--navy); font-weight: 600; }
.nav-link .chev { width: 11px; height: 11px; opacity: 0.55; transition: transform 0.3s; }
.nav-item { position: relative; }
.nav-item:hover .chev, .nav-item:focus-within .chev { transform: rotate(180deg); }

/* Mega menu */
.mega {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%) translateY(6px);
  width: 660px; padding: 10px; border-radius: 24px;
  background: var(--white); border: 1px solid var(--hairline); box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
}
.nav-item:hover .mega, .nav-item:focus-within .mega { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.mega::before { content: ''; position: absolute; top: -14px; left: 0; right: 0; height: 14px; }
.mega-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.mega-item { display: flex; gap: 14px; padding: 15px 16px; border-radius: 16px; transition: background 0.2s; align-items: flex-start; }
.mega-item:hover { background: var(--paper-2); }
.mega-icon { flex-shrink: 0; width: 38px; height: 38px; border-radius: 11px; display: flex; align-items: center; justify-content: center; background: var(--orange-tint); }
.mega-icon svg { width: 17px; height: 17px; stroke: var(--orange); }
.mega-item h4 { font-family: var(--font-body); font-size: 0.92rem; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 2px; color: var(--navy); }
.mega-item p { font-size: 0.78rem; color: var(--muted); line-height: 1.45; }
.mega-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; padding: 14px 18px; border-top: 1px solid var(--hairline); }
.mega-foot span { font-size: 0.78rem; color: var(--muted); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.scan-pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.84rem; font-weight: 600; color: var(--navy);
  padding: 9px 16px; border-radius: 999px;
  border: 1px solid var(--hairline-2); background: var(--white);
  transition: all 0.25s;
}
.scan-pill:hover { border-color: var(--orange); background: var(--orange-tint); }
.scan-pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: pulseDot 2.2s ease-in-out infinite; }
@keyframes pulseDot { 0%, 100% { box-shadow: 0 0 0 0 rgba(14, 159, 110, 0.35); } 50% { box-shadow: 0 0 0 5px rgba(14, 159, 110, 0); } }

.nav-burger { display: none; position: relative; width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--hairline-2); background: var(--white); }
.nav-burger span { position: absolute; left: 12px; right: 12px; height: 1.8px; border-radius: 2px; background: var(--navy); transition: transform 0.35s var(--ease), top 0.35s; }
.nav-burger span:nth-child(1) { top: 16px; }
.nav-burger span:nth-child(2) { top: 24px; }
body.menu-open .nav-burger span:nth-child(1) { top: 20px; transform: rotate(45deg); }
body.menu-open .nav-burger span:nth-child(2) { top: 20px; transform: rotate(-45deg); }

.scroll-progress { position: absolute; bottom: -1px; left: 0; height: 2px; width: 0; background: var(--orange); z-index: 5; }
.scroll-progress.progress-fixed { position: fixed; top: 0; bottom: auto; height: 3px; z-index: 130; }

/* Oranje cursor-ring (alleen desktop) */
@media (pointer: fine) {
  .cursor-ring {
    position: fixed; z-index: 999; pointer-events: none;
    width: 34px; height: 34px; border-radius: 50%;
    border: 1.5px solid rgba(255, 107, 0, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.25s var(--ease), height 0.25s var(--ease), border-color 0.25s, background 0.25s, opacity 0.3s;
  }
  body.cursor-hover .cursor-ring { width: 54px; height: 54px; border-color: var(--orange); background: rgba(255, 107, 0, 0.06); }
}

/* Hero: decoratie achter het Darwin-citaat + cursor-glow */
.hero-deco {
  position: absolute; top: -6%; left: 50%; transform: translate(-50%, 0);
  font-family: var(--font-serif); font-style: italic; line-height: 0.9;
  font-size: clamp(18rem, 42vw, 34rem); color: var(--navy); opacity: 0.05;
  pointer-events: none; user-select: none; transition: opacity 0.5s; will-change: transform;
}
.hero-center:hover .hero-deco { opacity: 0.085; }
.hero-mouse-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(620px circle at var(--hx, 50%) var(--hy, 38%), rgba(255, 107, 0, 0.10), transparent 65%);
}
.hero-center:hover .hero-quote .q2 { text-shadow: 0 2px 26px rgba(255, 107, 0, 0.22); }
.hero-center .container { position: relative; z-index: 2; }

/* ---------- Mobile menu ---------- */
.mobile-menu {
  position: fixed; inset: 0; z-index: 80; padding: calc(var(--header-h) + 26px) 28px 44px;
  background: var(--paper);
  opacity: 0; visibility: hidden; transition: opacity 0.3s var(--ease), visibility 0.3s;
  overflow-y: auto;
}
body.menu-open .mobile-menu { opacity: 1; visibility: visible; }
body.menu-open { overflow: hidden; }
.mm-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin: 30px 0 8px; }
.mm-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 2px; font-family: var(--font-display); font-size: 1.65rem; font-weight: 600; letter-spacing: -0.03em;
  border-bottom: 1px solid var(--hairline); color: var(--navy);
  opacity: 0; transform: translateY(14px);
}
.mm-link svg { width: 18px; height: 18px; opacity: 0.35; }
.mm-sub { display: flex; align-items: center; gap: 12px; padding: 13px 2px; font-size: 1.02rem; font-weight: 500; color: var(--body); opacity: 0; transform: translateY(14px); }
.mm-sub svg { width: 16px; height: 16px; stroke: var(--orange); flex-shrink: 0; }
body.menu-open .mm-link, body.menu-open .mm-sub { animation: mmIn 0.45s var(--ease) forwards; }
@keyframes mmIn { to { opacity: 1; transform: translateY(0); } }
.mm-cta { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; opacity: 0; transform: translateY(14px); }
body.menu-open .mm-cta { animation: mmIn 0.45s var(--ease) 0.3s forwards; }

/* ---------- Reveals ---------- */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); transition-delay: var(--rd, 0s); }
[data-reveal="fade"] { transform: none; }
[data-reveal="left"] { transform: translateX(-26px); }
[data-reveal="right"] { transform: translateX(26px); }
[data-reveal].revealed { opacity: 1; transform: none; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: calc(var(--header-h) + clamp(64px, 9vw, 120px)) 0 0; overflow: hidden; }
.hero-glow { position: absolute; top: -340px; left: 50%; transform: translateX(-50%); width: 1200px; height: 700px; border-radius: 50%; background: radial-gradient(ellipse, rgba(255, 107, 0, 0.07), rgba(255, 107, 0, 0) 65%); pointer-events: none; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 9px; margin-bottom: 30px;
  font-size: 0.82rem; font-weight: 550; color: var(--body);
  padding: 8px 16px 8px 10px; border-radius: 999px; border: 1px solid var(--hairline-2); background: var(--white);
  box-shadow: var(--shadow-sm);
}
.hero-eyebrow .tag { background: var(--orange-tint); color: var(--orange-deep); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.05em; padding: 3px 9px; border-radius: 999px; text-transform: uppercase; }
.hero h1 { max-width: 21ch; margin-bottom: 28px; text-wrap: balance; }
.hero.hero-center { min-height: 100svh; display: flex; align-items: center; justify-content: center; text-align: center; padding: var(--header-h) 0 60px; }
.hero.hero-center .container { display: flex; flex-direction: column; align-items: center; }
.hero h1.hero-quote { font-size: clamp(2.2rem, 4.6vw, 4.1rem); line-height: 1.14; max-width: 24ch; margin-bottom: 26px; margin-inline: auto; text-wrap: balance; }
.hero-quote .q2 { display: inline-block; font-size: 1.14em; margin-top: 0.35em; }
.hero-attrib { font-size: 0.85rem; font-weight: 650; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.hero .lead { max-width: 580px; margin-bottom: 36px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* USP-balk onder het intro-blok */
.usp-bar { display: grid; grid-template-columns: repeat(3, 1fr); background: var(--white); border: 1px solid var(--hairline); border-radius: var(--r-lg); box-shadow: var(--shadow-sm); margin-top: clamp(36px, 5vw, 60px); overflow: hidden; }
.usp-cell { display: flex; gap: 15px; align-items: flex-start; padding: clamp(22px, 2.6vw, 32px) clamp(20px, 2.4vw, 32px); border-left: 1px solid var(--hairline); }
.usp-cell:first-child { border-left: none; }
.usp-icon { flex-shrink: 0; width: 40px; height: 40px; border-radius: 12px; background: var(--orange-tint); display: flex; align-items: center; justify-content: center; }
.usp-icon svg { width: 17px; height: 17px; stroke: var(--orange-deep); }
.usp-cell strong { display: block; font-size: 0.98rem; font-weight: 650; color: var(--navy); letter-spacing: -0.01em; margin-bottom: 2px; }
.usp-cell span { font-size: 0.82rem; color: var(--muted); line-height: 1.5; }

.hero-media { position: relative; }
.hero-media .frame { border-radius: var(--r-xl) var(--r-xl) 0 0; overflow: hidden; border: 1px solid var(--hairline); border-bottom: none; box-shadow: var(--shadow-lg); }

/* ---------- Media frames & placeholders ---------- */
.frame { border-radius: var(--r-lg); overflow: hidden; background: var(--paper-2); }
.frame img { width: 100%; height: 100%; object-fit: cover; }
.ph {
  position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  width: 100%; height: 100%; min-height: 200px;
  background:
    repeating-linear-gradient(-45deg, transparent 0 22px, rgba(2, 10, 56, 0.022) 22px 44px),
    linear-gradient(140deg, #EFEEE7 0%, #E4E3DA 55%, #ECEBE3 100%);
  color: #8E94AC;
}
.ph::after { content: ''; position: absolute; inset: 12px; border: 1.5px dashed #C2C1B6; border-radius: 16px; pointer-events: none; }
.ph svg { width: 34px; height: 34px; stroke: #9CA1B6; }
.ph span { font-size: 0.76rem; font-weight: 650; letter-spacing: 0.12em; text-transform: uppercase; }
.parallax-wrap { overflow: hidden; }
.parallax-img { will-change: transform; transform: translateY(0); height: 112%; width: 100%; object-fit: cover; }

/* ---------- Stats band ---------- */
.stats-band { border-block: 1px solid var(--hairline); background: var(--white); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-cell { padding: clamp(36px, 5vw, 56px) 28px; border-left: 1px solid var(--hairline); }
.stat-cell:first-child { border-left: none; }
.stat-num { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.04em; color: var(--navy); font-size: clamp(2.4rem, 4.4vw, 3.7rem); line-height: 1; margin-bottom: 12px; display: flex; align-items: baseline; gap: 2px; }
.stat-num .unit { font-size: 0.45em; color: var(--orange); font-weight: 650; }
.stat-num.stat-text { font-size: clamp(1.7rem, 2.6vw, 2.4rem); line-height: 1.18; letter-spacing: -0.03em; }
.stat-label { font-size: 0.86rem; color: var(--muted); line-height: 1.5; max-width: 24ch; }
.stats-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }

/* ---------- Logo strip ---------- */
.logo-strip { padding: 48px 0 56px; background: var(--white); border-block: 1px solid var(--hairline); }
.logo-strip-label { text-align: center; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.13em; text-transform: uppercase; color: var(--muted); margin-bottom: 34px; }
.marquee { overflow: hidden; position: relative; }
.marquee::before, .marquee::after { content: ''; position: absolute; top: 0; bottom: 0; width: 140px; z-index: 2; pointer-events: none; }
.marquee::before { left: 0; background: linear-gradient(90deg, var(--marquee-fade, var(--paper)), transparent); }
.marquee::after { right: 0; background: linear-gradient(-90deg, var(--marquee-fade, var(--paper)), transparent); }
.logo-strip .marquee { --marquee-fade: var(--white); }
.marquee-track { display: flex; align-items: center; gap: clamp(48px, 7vw, 96px); width: max-content; animation: marqueeMove var(--marquee-speed, 30s) linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marqueeMove { to { transform: translateX(-50%); } }
.client-logo { display: flex; align-items: center; justify-content: center; height: 64px; filter: saturate(0.85) opacity(0.9); transition: filter 0.3s; }
.client-logo:hover { filter: saturate(1) opacity(1); }
.client-logo img { max-height: 58px; max-width: 190px; width: auto; object-fit: contain; }
.marquee-track.logos-track { gap: clamp(100px, 13vw, 200px); }
.client-logo.text { font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; letter-spacing: -0.02em; color: var(--navy); filter: none; opacity: 0.45; transition: opacity 0.3s; }
.client-logo.text:hover { opacity: 1; }

/* ---------- Manifesto (scroll word reveal) ---------- */
.manifesto { max-width: 1000px; margin: 0 auto; }
.manifesto p {
  font-family: var(--font-display); font-weight: 600; letter-spacing: -0.035em;
  font-size: clamp(1.9rem, 4.4vw, 3.5rem); line-height: 1.18; color: var(--navy);
}
.manifesto .w { opacity: 0.13; transition: opacity 0.35s linear; }
.manifesto .w.lit { opacity: 1; }
.manifesto .serif { color: var(--orange); }

/* ---------- Pillars (Dit is AIffective) ---------- */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--hairline); border-radius: var(--r-xl); overflow: hidden; background: var(--white); }
.pillar { padding: clamp(32px, 4vw, 52px); border-left: 1px solid var(--hairline); display: flex; flex-direction: column; gap: 16px; transition: background 0.3s; }
.pillar:first-child { border-left: none; }
.pillar:hover { background: var(--paper); }
.pillar .num { font-family: var(--font-serif); font-style: italic; font-size: 1.5rem; color: var(--orange); }
.pillar h3 { font-size: 1.35rem; }
.pillar p { font-size: 0.94rem; color: var(--body); }

/* ---------- Compare (probleem → aanpak) ---------- */
.compare-list { display: flex; flex-direction: column; }
.compare-row { display: grid; grid-template-columns: 1fr 56px 1fr; align-items: center; gap: clamp(16px, 3vw, 40px); padding: clamp(28px, 4vw, 44px) 0; border-top: 1px solid var(--hairline); }
.compare-row:last-child { border-bottom: 1px solid var(--hairline); }
.compare-row .from { color: var(--muted); }
.compare-row .from h4 { font-family: var(--font-body); color: var(--muted); font-weight: 600; font-size: 1.05rem; letter-spacing: -0.01em; margin-bottom: 6px; text-decoration: line-through; text-decoration-color: rgba(217, 48, 37, 0.4); text-decoration-thickness: 1.5px; }
.compare-row .from p, .compare-row .to p { font-size: 0.92rem; line-height: 1.6; }
.compare-row .to h4 { font-family: var(--font-body); font-weight: 650; font-size: 1.05rem; letter-spacing: -0.01em; margin-bottom: 6px; color: var(--navy); }
.compare-arrow { width: 44px; height: 44px; border-radius: 50%; background: var(--orange-tint); display: flex; align-items: center; justify-content: center; justify-self: center; }
.compare-arrow svg { width: 17px; height: 17px; stroke: var(--orange); }

/* ---------- Services ---------- */
.services { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.service-card {
  position: relative; grid-column: span 2; display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--hairline); border-radius: var(--r-lg);
  padding: clamp(28px, 3vw, 40px);
  transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.3s;
}
.service-card.wide { grid-column: span 3; }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--hairline-2); }
.service-card .num { font-size: 0.74rem; font-weight: 600; letter-spacing: 0.1em; color: var(--muted); margin-bottom: clamp(28px, 4vw, 56px); display: flex; justify-content: space-between; align-items: center; }
.service-card .num .tag { background: var(--orange-tint); color: var(--orange-deep); padding: 4px 11px; border-radius: 999px; font-size: 0.66rem; letter-spacing: 0.06em; }
.service-card h3 { font-size: clamp(1.3rem, 1.8vw, 1.6rem); margin-bottom: 12px; }
.service-card p { font-size: 0.93rem; color: var(--body); margin-bottom: 24px; max-width: 44ch; }
.service-card .link-arrow { margin-top: auto; }
.service-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--paper-2); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; transition: background 0.3s, transform 0.3s var(--ease-spring); }
.service-icon svg { width: 19px; height: 19px; stroke: var(--navy); transition: stroke 0.3s; }
.service-card:hover .service-icon { background: var(--navy); transform: scale(1.06); }
.service-card:hover .service-icon svg { stroke: #fff; }

/* ---------- Route: dark stacked cards ---------- */
.dark-section { background: var(--navy); color: rgba(255, 255, 255, 0.78); position: relative; overflow: hidden; }
.dark-section h2, .dark-section h3 { color: #fff; }
.dark-section .kicker { color: rgba(255, 255, 255, 0.55); }
.dark-section .lead { color: rgba(255, 255, 255, 0.72); }
.dark-glow { position: absolute; width: 760px; height: 760px; border-radius: 50%; background: radial-gradient(circle, rgba(255, 107, 0, 0.13), transparent 65%); filter: blur(10px); pointer-events: none; }

/* Route: nette lijst van vijf compacte blokken */
.route-list { display: flex; flex-direction: column; gap: 12px; max-width: 880px; margin: 0 auto; }
.route-card {
  display: grid; grid-template-columns: 52px 290px 1fr; gap: clamp(14px, 2.2vw, 30px); align-items: center;
  background: #fff; border-radius: var(--r-md);
  padding: 18px clamp(20px, 2.4vw, 30px);
}
.route-card .sc-num { font-family: var(--font-serif); font-style: italic; font-size: 2rem; color: var(--orange); line-height: 1; }
.route-card .sc-phase { display: block; font-family: var(--font-serif); font-style: italic; font-size: 1.55rem; color: var(--orange); line-height: 1.1; }
.route-card p { font-size: 0.87rem; line-height: 1.5; color: var(--body); }
@media (max-width: 860px) {
  .route-card { grid-template-columns: 44px 1fr; }
  .route-card p { grid-column: 2; }
}

/* Klanten-slider op telefoon iets sneller */
@media (max-width: 600px) {
  .marquee-track.logos-track { animation-duration: 24s; }
}

.stack { display: flex; flex-direction: column; gap: 16px; }
.stack-card {
  position: sticky; top: calc(var(--header-h) + 22px);
  display: grid; grid-template-columns: 78px 1fr 290px; gap: clamp(18px, 3vw, 44px); align-items: center;
  background: #fff; border-radius: var(--r-lg);
  padding: clamp(20px, 2.6vw, 32px) clamp(24px, 3vw, 40px);
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.18);
  will-change: transform;
}
.stack-card .sc-num { font-family: var(--font-serif); font-style: italic; font-size: clamp(2rem, 3.4vw, 3rem); color: var(--orange); line-height: 1; }
.stack-card h3 { font-size: clamp(1.22rem, 1.9vw, 1.6rem); margin-bottom: 8px; }
.stack-card .sc-phase { display: inline-block; font-family: var(--font-serif); font-style: italic; font-size: 1.15rem; color: var(--orange); margin-bottom: 7px; line-height: 1; }
.stack-card p { font-size: 0.92rem; line-height: 1.55; color: var(--body); max-width: 54ch; }
.stack-card ul { display: flex; flex-direction: column; gap: 7px; }
.stack-card li { display: flex; gap: 10px; font-size: 0.85rem; color: var(--body); align-items: flex-start; }
.stack-card li svg { width: 15px; height: 15px; stroke: var(--orange); flex-shrink: 0; margin-top: 3px; }

/* ---------- Cases: horizontal scroll ---------- */
.hscroll-outer { position: relative; }
.hscroll {
  display: flex; gap: 22px; overflow-x: auto; padding: 6px 28px 26px;
  scroll-snap-type: x mandatory; scrollbar-width: none;
  max-width: 1360px; margin: 0 auto;
}
.hscroll::-webkit-scrollbar { display: none; }
.hcase {
  flex-shrink: 0; width: min(480px, 86vw); scroll-snap-align: start;
  background: var(--white); border: 1px solid var(--hairline); border-radius: var(--r-lg); overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
  display: flex; flex-direction: column;
}
.hcase:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.hcase .media { height: 250px; overflow: hidden; position: relative; }
.hcase .media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.hcase:hover .media img { transform: scale(1.05); }
.hcase .body { padding: 28px 30px 32px; display: flex; flex-direction: column; flex: 1; }
.hcase .sector { font-size: 0.7rem; font-weight: 650; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange-deep); margin-bottom: 12px; }
.hcase h3 { font-size: 1.4rem; margin-bottom: 10px; }
.hcase .desc { font-size: 0.92rem; color: var(--body); margin-bottom: 20px; flex: 1; }
.hcase .result { display: flex; gap: 10px; align-items: flex-start; padding-top: 18px; border-top: 1px solid var(--hairline); font-size: 0.88rem; font-weight: 600; color: var(--navy); }
.hcase .result svg { width: 16px; height: 16px; stroke: var(--green); flex-shrink: 0; margin-top: 3px; }
.hscroll-nav { display: flex; gap: 10px; }
.hs-btn { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--hairline-2); background: var(--white); display: flex; align-items: center; justify-content: center; transition: all 0.25s; }
.hs-btn:hover { border-color: var(--navy); background: var(--navy); }
.hs-btn:hover svg { stroke: #fff; }
.hs-btn svg { width: 17px; height: 17px; stroke: var(--navy); transition: stroke 0.25s; }

/* ---------- Team / founder ---------- */
.founder { display: grid; grid-template-columns: 0.85fr 1fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.founder .frame { aspect-ratio: 4/4.6; box-shadow: var(--shadow-lg); border-radius: var(--r-xl); }
.founder-quote { font-family: var(--font-serif); font-style: italic; font-size: clamp(1.4rem, 2.4vw, 1.9rem); line-height: 1.4; color: var(--navy); margin-bottom: 26px; }
.founder-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.founder-meta img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.founder-meta strong { display: block; color: var(--navy); font-size: 0.96rem; }
.founder-meta span { font-size: 0.82rem; color: var(--muted); }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.testi-card { background: var(--white); border: 1px solid var(--hairline); border-radius: var(--r-lg); padding: 34px 32px; display: flex; flex-direction: column; transition: transform 0.35s var(--ease), box-shadow 0.35s; }
.testi-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.testi-stars { display: flex; gap: 3px; margin-bottom: 20px; }
.testi-stars svg { width: 15px; height: 15px; fill: var(--orange); }
.testi-card blockquote { font-size: 1.02rem; line-height: 1.65; color: var(--ink); margin-bottom: 26px; flex: 1; }
.testi-who { display: flex; align-items: center; gap: 12px; padding-top: 20px; border-top: 1px solid var(--hairline); }
.testi-who .avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 600; font-size: 0.9rem; }
.testi-who strong { display: block; font-size: 0.88rem; color: var(--navy); }
.testi-who span { font-size: 0.78rem; color: var(--muted); }

/* ---------- News ---------- */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.news-card { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--hairline); border-radius: var(--r-lg); overflow: hidden; transition: transform 0.35s var(--ease), box-shadow 0.35s; }
.news-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.news-media { height: 200px; overflow: hidden; }
.news-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.news-card:hover .news-media img { transform: scale(1.05); }
.news-body { padding: 24px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.news-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 13px; }
.news-tag { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--orange-deep); background: var(--orange-tint); padding: 4px 10px; border-radius: 999px; }
.news-date { font-size: 0.76rem; color: var(--muted); }
.news-card h3 { font-family: var(--font-body); font-size: 1.05rem; font-weight: 650; letter-spacing: -0.015em; line-height: 1.45; margin-bottom: 10px; color: var(--navy); }
.news-excerpt { font-size: 0.86rem; color: var(--body); line-height: 1.6; margin-bottom: 18px; flex: 1; }
.news-featured { grid-column: 1 / -1; display: grid; grid-template-columns: 1.05fr 1fr; }
.news-featured .news-media { height: 100%; min-height: 300px; }
.news-featured .news-body { padding: clamp(28px, 4vw, 52px); justify-content: center; }
.news-featured h3 { font-family: var(--font-display); font-size: clamp(1.5rem, 2.6vw, 2.1rem); font-weight: 600; letter-spacing: -0.03em; }

.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px; }
.filter-chip { font-size: 0.86rem; font-weight: 550; color: var(--body); padding: 9px 18px; border-radius: 999px; border: 1px solid var(--hairline-2); background: var(--white); transition: all 0.25s; }
.filter-chip:hover { border-color: var(--navy); color: var(--navy); }
.filter-chip.on { background: var(--navy); border-color: var(--navy); color: #fff; }

/* ---------- Feature / value cards ---------- */
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.value-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.value-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.value-card { background: var(--white); border: 1px solid var(--hairline); border-radius: var(--r-lg); padding: 30px; transition: transform 0.35s var(--ease), box-shadow 0.35s; }
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-icon { width: 42px; height: 42px; border-radius: 12px; background: var(--orange-tint); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.value-icon svg { width: 18px; height: 18px; stroke: var(--orange-deep); }
.value-card h3 { font-family: var(--font-body); font-size: 1.05rem; font-weight: 650; letter-spacing: -0.015em; margin-bottom: 8px; }
.value-card p { font-size: 0.88rem; color: var(--body); line-height: 1.65; }

/* ---------- Steps (service pages) ---------- */
.steps { display: flex; flex-direction: column; }
.step-row { display: grid; grid-template-columns: 96px 1fr; gap: clamp(18px, 3vw, 40px); padding: clamp(26px, 3.5vw, 40px) 0; border-top: 1px solid var(--hairline); }
.step-row:last-child { border-bottom: 1px solid var(--hairline); }
.step-num { font-family: var(--font-serif); font-style: italic; font-size: 2.2rem; color: var(--orange); line-height: 1; padding-top: 4px; }
.step-row h3 { font-size: 1.3rem; margin-bottom: 8px; display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.step-row h3 .dur { font-size: 0.68rem; font-weight: 650; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); border: 1px solid var(--hairline-2); padding: 4px 11px; border-radius: 999px; }
.step-row p { font-size: 0.95rem; color: var(--body); max-width: 70ch; }

/* ---------- Deliverables & checklists ---------- */
.deliver-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.deliver-card { background: var(--white); border: 1px solid var(--hairline); border-radius: var(--r-lg); padding: 30px; display: flex; gap: 18px; transition: transform 0.3s var(--ease), box-shadow 0.3s; }
.deliver-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.deliver-icon { flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px; background: var(--paper-2); display: flex; align-items: center; justify-content: center; }
.deliver-icon svg { width: 19px; height: 19px; stroke: var(--navy); }
.deliver-card h3 { font-family: var(--font-body); font-size: 1.02rem; font-weight: 650; letter-spacing: -0.015em; margin-bottom: 6px; }
.deliver-card p { font-size: 0.88rem; color: var(--body); line-height: 1.65; }

.checklist { display: flex; flex-direction: column; gap: 13px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.96rem; color: var(--ink); }
.checklist li svg { width: 17px; height: 17px; stroke: var(--orange); flex-shrink: 0; margin-top: 4px; }

/* ---------- FAQ ---------- */
.faq { max-width: 780px; margin: 0 auto; }
.acc { border-top: 1px solid var(--hairline); }
.acc:last-child { border-bottom: 1px solid var(--hairline); }
.acc-head { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 26px 2px; text-align: left; }
.acc-head h3 { font-family: var(--font-body); font-size: 1.06rem; font-weight: 600; letter-spacing: -0.015em; color: var(--navy); transition: color 0.2s; }
.acc-head:hover h3 { color: var(--orange-deep); }
.acc-icon { flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--hairline-2); background: var(--white); display: flex; align-items: center; justify-content: center; transition: transform 0.35s var(--ease), background 0.3s, border-color 0.3s; }
.acc-icon svg { width: 13px; height: 13px; stroke: var(--navy); transition: stroke 0.3s; }
.acc.open .acc-icon { transform: rotate(45deg); background: var(--navy); border-color: var(--navy); }
.acc.open .acc-icon svg { stroke: #fff; }
.acc-body { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease); }
.acc-body p { padding: 0 2px 28px; color: var(--body); font-size: 0.95rem; line-height: 1.75; max-width: 66ch; }

/* ---------- Countdown & quickscan banner ---------- */
.countdown { display: flex; gap: 12px; }
.cd-cell { min-width: 76px; text-align: center; padding: 18px 10px 14px; border-radius: var(--r-md); background: rgba(255, 255, 255, 0.07); border: 1px solid rgba(255, 255, 255, 0.13); }
.cd-num { font-family: var(--font-display); font-weight: 600; font-size: 2rem; line-height: 1; color: #fff; font-variant-numeric: tabular-nums; }
.cd-label { font-size: 0.62rem; font-weight: 650; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255, 255, 255, 0.5); margin-top: 8px; }

.scan-banner {
  position: relative; overflow: hidden; border-radius: var(--r-xl);
  background: var(--navy); color: rgba(255, 255, 255, 0.75);
  padding: clamp(40px, 6vw, 72px);
  display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: center;
}
.scan-banner h2 { color: #fff; }
.urgent-chip { display: inline-flex; align-items: center; gap: 9px; font-size: 0.72rem; font-weight: 650; letter-spacing: 0.1em; text-transform: uppercase; color: #FFB38A; background: rgba(255, 107, 0, 0.14); border: 1px solid rgba(255, 107, 0, 0.3); padding: 8px 15px; border-radius: 999px; margin-bottom: 22px; }
.urgent-chip .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); animation: pulseDotO 1.8s ease-in-out infinite; }
@keyframes pulseDotO { 0%, 100% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.4); } 50% { box-shadow: 0 0 0 6px rgba(255, 107, 0, 0); } }

/* ---------- CTA ---------- */
.cta-final { background: var(--navy); color: rgba(255, 255, 255, 0.75); position: relative; overflow: hidden; }
.cta-final .container { position: relative; z-index: 2; }
.cta-final h2 { color: #fff; max-width: 17ch; margin-inline: auto; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.cta-fineprint { margin-top: 24px; font-size: 0.8rem; color: rgba(255, 255, 255, 0.45); text-align: center; }

/* ---------- Forms ---------- */
.form-card { background: var(--white); border: 1px solid var(--hairline); border-radius: var(--r-xl); padding: clamp(28px, 4vw, 48px); box-shadow: var(--shadow-md); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 0.84rem; font-weight: 600; color: var(--navy); }
.form-field label em { color: var(--orange); font-style: normal; }
.form-control {
  width: 100%; padding: 14px 17px; border-radius: 13px;
  background: var(--paper); border: 1px solid var(--hairline-2);
  color: var(--ink); font-size: 0.95rem;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}
.form-control::placeholder { color: #ABAFC2; }
.form-control:focus { outline: none; border-color: var(--navy); background: #fff; box-shadow: 0 0 0 4px rgba(2, 10, 56, 0.07); }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23494F70' stroke-width='2.5'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
textarea.form-control { resize: vertical; min-height: 130px; }

.contact-channel { display: flex; gap: 18px; align-items: center; padding: 22px 24px; border-radius: var(--r-lg); border: 1px solid var(--hairline); background: var(--white); transition: transform 0.3s var(--ease), box-shadow 0.3s; }
.contact-channel:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.contact-channel .ch-icon { flex-shrink: 0; width: 46px; height: 46px; border-radius: 14px; background: var(--orange-tint); display: flex; align-items: center; justify-content: center; }
.contact-channel .ch-icon svg { width: 19px; height: 19px; stroke: var(--orange-deep); }
.contact-channel strong { display: block; font-size: 0.96rem; color: var(--navy); }
.contact-channel span { font-size: 0.8rem; color: var(--muted); }

/* ---------- Tables ---------- */
.compare-table { width: 100%; background: var(--white); border: 1px solid var(--hairline); border-radius: var(--r-lg); overflow: hidden; border-collapse: separate; border-spacing: 0; }
.compare-table th, .compare-table td { padding: 19px 26px; text-align: left; font-size: 0.92rem; border-bottom: 1px solid var(--hairline); }
.compare-table th { font-size: 0.72rem; font-weight: 650; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); background: var(--paper); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table td { color: var(--body); }
.compare-table td:first-child { color: var(--muted); font-size: 0.84rem; }
.compare-table .hl { background: #FFF8F2; color: var(--navy); font-weight: 550; border-inline: 1px solid #FFE3CC; }
.compare-table th.hl { color: var(--orange-deep); }

/* ---------- Page hero (subpages) ---------- */
.page-hero { position: relative; padding: calc(var(--header-h) + clamp(56px, 8vw, 104px)) 0 clamp(48px, 7vw, 88px); overflow: hidden; }
.page-hero h1 { max-width: 18ch; margin-bottom: 26px; text-wrap: balance; }
.page-hero .lead { max-width: 640px; }
.crumbs { display: flex; align-items: center; gap: 9px; font-size: 0.78rem; font-weight: 550; color: var(--muted); margin-bottom: 28px; }
.crumbs a:hover { color: var(--orange-deep); }
.crumbs svg { width: 11px; height: 11px; opacity: 0.5; }
.fact-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.fact-chip { display: inline-flex; align-items: center; gap: 8px; background: var(--white); border: 1px solid var(--hairline-2); border-radius: 999px; padding: 9px 17px; font-size: 0.84rem; font-weight: 550; color: var(--navy); }
.fact-chip svg { width: 14px; height: 14px; stroke: var(--orange); }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--hairline); background: var(--white); overflow: hidden; }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.25fr; gap: 44px; padding: clamp(52px, 7vw, 84px) 0 56px; }
.footer-brand .brand { font-size: 1.6rem; margin-bottom: 16px; display: inline-flex; }
.footer-brand p { font-size: 0.9rem; color: var(--body); max-width: 30ch; line-height: 1.7; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--hairline-2); display: flex; align-items: center; justify-content: center; transition: all 0.25s; background: var(--white); }
.footer-social a:hover { background: var(--navy); border-color: var(--navy); transform: translateY(-3px); }
.footer-social svg { width: 16px; height: 16px; fill: var(--navy); transition: fill 0.25s; }
.footer-social a:hover svg { fill: #fff; }
.footer-col h4 { font-size: 0.7rem; font-weight: 650; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; font-family: var(--font-body); }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 0.92rem; color: var(--body); transition: color 0.2s; }
.footer-col a:hover { color: var(--orange-deep); }
.footer-contact li { display: flex; gap: 11px; align-items: flex-start; font-size: 0.92rem; color: var(--body); }
.footer-contact svg { width: 16px; height: 16px; stroke: var(--orange-deep); flex-shrink: 0; margin-top: 4px; }
.footer-legal { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 14px; padding: 26px 0; border-top: 1px solid var(--hairline); font-size: 0.8rem; color: var(--muted); }
.footer-legal .legal-links { display: flex; gap: 24px; }
.footer-legal a:hover { color: var(--navy); }
.footer-watermark {
  font-family: var(--font-display); font-weight: 700; text-align: center;
  font-size: clamp(4rem, 13.8vw, 13rem); line-height: 0.74; letter-spacing: -0.04em;
  margin-bottom: -0.05em; user-select: none; pointer-events: none; white-space: nowrap;
  color: var(--paper-2);
  -webkit-text-stroke: 1px var(--hairline-2);
}

/* ---------- 404 ---------- */
.err-wrap { min-height: 86svh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 140px 28px 80px; }
.err-code { font-family: var(--font-display); font-weight: 700; font-size: clamp(6rem, 20vw, 13rem); line-height: 0.95; letter-spacing: -0.05em; color: var(--paper-2); -webkit-text-stroke: 1.5px var(--hairline-2); }

/* ---------- Utilities ---------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.center { text-align: center; }
.mt-2 { margin-top: 16px; } .mt-3 { margin-top: 26px; } .mt-4 { margin-top: 40px; } .mt-5 { margin-top: 60px; }
.mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 26px; } .mb-4 { margin-bottom: 40px; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .main-nav { display: none; }
  .nav-burger { display: block; }
  .scan-pill { display: none; }
  .header-actions .btn { display: none; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-cell { border-left: none; border-top: 1px solid var(--hairline); }
  .stat-cell:nth-child(-n+2) { border-top: none; }
  .stat-cell:nth-child(even) { border-left: 1px solid var(--hairline); }
  .services { grid-template-columns: 1fr 1fr; }
  .service-card, .service-card.wide { grid-column: span 1; }
  .pillars { grid-template-columns: 1fr; }
  .pillar { border-left: none; border-top: 1px solid var(--hairline); }
  .pillar:first-child { border-top: none; }
  .testi-grid, .news-grid { grid-template-columns: 1fr 1fr; }
  .value-grid { grid-template-columns: 1fr 1fr; }
  .value-grid.cols-3 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stack-card { grid-template-columns: 64px 1fr; }
  .stack-card ul { grid-column: 2; margin-top: 18px; }
}
@media (max-width: 820px) {
  .grid-2 { grid-template-columns: 1fr; }
  .usp-bar { grid-template-columns: 1fr; }
  .usp-cell { border-left: none; border-top: 1px solid var(--hairline); }
  .usp-cell:first-child { border-top: none; }
  .stats-grid.cols-3 { grid-template-columns: 1fr; }
  .stats-grid.cols-3 .stat-cell { border-left: none; border-top: 1px solid var(--hairline); }
  .stats-grid.cols-3 .stat-cell:first-child { border-top: none; }
  .founder { grid-template-columns: 1fr; }
  .scan-banner { grid-template-columns: 1fr; }
  .news-featured { grid-template-columns: 1fr; }
  .compare-row { grid-template-columns: 1fr; gap: 14px; }
  .compare-arrow { transform: rotate(90deg); justify-self: start; }
  .deliver-grid { grid-template-columns: 1fr; }
  .step-row { grid-template-columns: 1fr; gap: 10px; }
  .step-num { padding-top: 0; }
  .compare-table-wrap { overflow-x: auto; margin-inline: -28px; padding-inline: 28px; }
  .compare-table { min-width: 640px; }
}
@media (max-width: 600px) {
  .services { grid-template-columns: 1fr; }
  .testi-grid, .news-grid { grid-template-columns: 1fr; }
  .value-grid, .value-grid.cols-3 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .countdown { flex-wrap: wrap; }
  .cd-cell { flex: 1; min-width: calc(50% - 8px); }
  .btn { width: 100%; }
  .hero-cta .btn, .cta-actions .btn { width: auto; flex: 1 1 auto; }
  .hscroll { padding-inline: 20px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; }
  .manifesto .w { opacity: 1; }
}
