/* inclusy 4 all — design tokens adapted from internal design-tokens.json
   Tuned slightly warmer / softer to match the public inclusy.ch voice. */
:root {
  /* Colors */
  --bg: #FFFFFF;
  --bg-paper: #FFFFFF;
  --surface-tint: #F4F7FA;
  --surface-warm: #FBF6F0; /* adapted: adds a subtle warm surface for inclusy.ch feel */

  --primary: #223063;
  --primary-hover: #1E2A57;
  --primary-active: #18234A;
  --primary-contrast: #FFFFFF;

  --secondary: #006363;
  --secondary-hover: #005757;
  --secondary-active: #004B4B;

  --accent: #00B7B4;
  --accent-soft: #CCF0EF;
  --accent-warm: #C97A2B;
  --accent-warm-soft: #FEEBC8;

  --text-heading: #2F4858;
  --text-body: #2F4858;
  --text-muted: #5B6B78;

  --border-light: #D9E1E8;
  --border-strong: #B9C6D0;
  --divider: #D9E1E8;

  --link: #006363;
  --link-hover: #005757;
  --link-visited: #223063;

  --error: #C53030;
  --warning: #C97A2B;
  --success: #276749;

  --neutral-50: #F7FAFC;
  --neutral-100: #EDF2F7;
  --neutral-200: #E2E8F0;
  --neutral-300: #CBD5E0;
  --neutral-600: #4A5568;
  --neutral-700: #2D3748;
  --neutral-900: #171923;

  /* Typography */
  --font-sans: "Helvetica Neue", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;

  /* Spacing */
  --s1: 4px;  --s2: 8px;  --s3: 12px; --s4: 16px; --s5: 20px;
  --s6: 24px; --s7: 32px; --s8: 40px; --s9: 48px; --s10: 64px;

  /* Radius */
  --r-sm: 8px;  --r-md: 12px; --r-lg: 16px; --r-pill: 50px; --r-full: 9999px;

  /* Shadows */
  --sh1: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --sh2: 0 4px 6px rgba(0,0,0,.05), 0 2px 4px rgba(0,0,0,.04);
  --sh3: 0 10px 15px rgba(0,0,0,.05), 0 4px 6px rgba(0,0,0,.03);
  --sh-lift: 0 24px 40px -18px rgba(34,48,99,.28), 0 10px 18px -10px rgba(34,48,99,.18);

  /* Motion */
  --dur-fast: 120ms;
  --dur: 180ms;
  --dur-slow: 240ms;
  --ease-std: cubic-bezier(0.2, 0, 0, 1);
  --ease-dec: cubic-bezier(0, 0, 0.2, 1);

  /* Control */
  --btn-h: 52px;
  --input-h: 52px;

  /* Layout */
  --max-w: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 20px;
  line-height: 1.5;
  color: var(--text-body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
@media (max-width: 1200px) { body { font-size: 19px; } }
@media (max-width: 900px)  { body { font-size: 18px; } }

h1, h2, h3, h4, h5, h6 {
  color: var(--text-heading);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 var(--s5);
  text-wrap: balance;
}
h1 { font-size: clamp(30px, 5vw, 52px); line-height: 1.1; letter-spacing: -0.02em; }
h2 { font-size: clamp(28px, 4vw, 44px); line-height: 1.15; }
h3 { font-size: clamp(26px, 3vw, 36px); line-height: 1.2; }
h4 { font-size: clamp(22px, 2.2vw, 30px); line-height: 1.25; }
h5 { font-size: 21px; line-height: 1.35; }
h6 { font-size: 18px; font-weight: 600; line-height: 1.35; }

p { margin: 0 0 var(--s5); text-wrap: pretty; max-width: 68ch; }
a { color: var(--link); text-decoration: none; transition: color var(--dur) var(--ease-std); }
a:hover { color: var(--link-hover); text-decoration: underline; text-underline-offset: 3px; }

img { max-width: 100%; height: auto; display: block; }

.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--s6); }
.wrap-wide { max-width: 1360px; margin: 0 auto; padding: 0 var(--s6); }

.overline { display: none !important; }
.overline--keep {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--secondary);
  display: inline-flex; align-items: center; gap: var(--s2);
}
.overline::before {
  content: ""; width: 24px; height: 1px; background: currentColor;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: var(--s2);
  height: var(--btn-h);
  padding: 0 var(--s7);
  border-radius: var(--r-pill);
  font-family: inherit;
  font-size: 17px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--dur) var(--ease-std),
              background var(--dur) var(--ease-std),
              border-color var(--dur) var(--ease-std),
              color var(--dur) var(--ease-std),
              box-shadow var(--dur) var(--ease-std);
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--primary);
  color: var(--primary-contrast);
}
.btn-primary:hover { background: var(--primary-hover); color: #fff; box-shadow: var(--sh2); }
.btn-primary:active { background: var(--primary-active); }

.btn-secondary {
  background: var(--secondary);
  color: #fff;
}
.btn-secondary:hover { background: var(--secondary-hover); color: #fff; box-shadow: var(--sh2); }

.btn-ghost {
  background: transparent;
  color: var(--primary);
  border-color: var(--border-strong);
}
.btn-ghost:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

.btn-arrow::after {
  content: "→";
  transition: transform var(--dur) var(--ease-std);
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* Sections */
section { padding: var(--s10) 0; }
@media (max-width: 900px) { section { padding: var(--s9) 0; } }

/* Utilities */
.muted { color: var(--text-muted); }
.grid { display: grid; gap: var(--s7); }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.g-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .g-2, .g-3, .g-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--bg-paper);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  padding: var(--s8);
  transition: transform var(--dur-slow) var(--ease-std),
              box-shadow var(--dur-slow) var(--ease-std),
              border-color var(--dur-slow) var(--ease-std);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lift);
  border-color: transparent;
}

.pill {
  display: inline-flex; align-items: center; gap: var(--s2);
  padding: 6px 14px;
  border-radius: var(--r-pill);
  background: var(--accent-soft);
  color: var(--secondary-active);
  font-size: 14px;
  font-weight: 600;
}

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow var(--dur) var(--ease-std);
}
.site-header.scrolled { box-shadow: var(--sh1); }
.nav {
  display: flex; align-items: center; gap: var(--s7);
  padding: var(--s4) var(--s6);
  max-width: 1360px; margin: 0 auto;
}
.nav-logo {
  font-weight: 800; font-size: 22px; color: var(--primary);
  letter-spacing: -0.02em;
  display: inline-flex; align-items: center; gap: 10px;
}
.nav-logo:hover { text-decoration: none; color: var(--primary); }
.nav-logo-dot {
  width: 28px; height: 28px; border-radius: 50%;
  background: conic-gradient(from 210deg, var(--accent), var(--primary), var(--accent-warm), var(--secondary), var(--accent));
  box-shadow: 0 0 0 3px #fff inset;
}
.nav-items { display: flex; gap: var(--s6); align-items: center; margin-left: auto; }
.nav-items a, .nav-items button.nav-trigger {
  color: var(--text-heading); font-weight: 500; font-size: 16px;
  background: none; border: none; cursor: pointer; padding: 8px 0;
  font-family: inherit;
  position: relative;
}
.nav-items a::after, .nav-items button.nav-trigger::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--secondary);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur) var(--ease-std);
}
.nav-items a:hover::after, .nav-items button.nav-trigger:hover::after { transform: scaleX(1); }
.nav-items a:hover { text-decoration: none; }
.nav-cta { margin-left: var(--s2); }

.nav-dropdown {
  position: relative;
}
.nav-dropdown-panel {
  position: absolute; top: calc(100% + 10px); left: -20px;
  min-width: 260px;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
  box-shadow: var(--sh3);
  padding: var(--s3);
  opacity: 0; pointer-events: none;
  transform: translateY(-6px);
  transition: opacity var(--dur) var(--ease-std), transform var(--dur) var(--ease-std);
}
.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown:focus-within .nav-dropdown-panel {
  opacity: 1; pointer-events: auto; transform: translateY(0);
}
.nav-dropdown-panel a {
  display: block; padding: 10px 14px; border-radius: var(--r-sm);
  font-size: 15px;
}
.nav-dropdown-panel a:hover { background: var(--surface-tint); text-decoration: none; }
.nav-dropdown-panel a::after { display: none; }
.nav-dropdown-group { padding: var(--s2) var(--s2) var(--s1); font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-muted); font-weight: 700; }

/* Chevron rotates on open */
.nav-trigger { display: inline-flex; align-items: center; gap: 6px; }
.nav-chev { transition: transform var(--dur) var(--ease-std); opacity: 0.7; }
.nav-dropdown:hover .nav-chev,
.nav-dropdown:focus-within .nav-chev { transform: rotate(180deg); opacity: 1; }

/* === Mega panel (Fachbereiche) === */
.nav-dropdown-mega { position: static; }
.mega-panel {
  position: absolute; left: 50%; transform: translate(-50%, -6px);
  top: calc(100% + 10px);
  width: min(1100px, calc(100vw - 48px));
  padding: 0;
  border-radius: 14px;
  border: 1px solid var(--border-light);
  box-shadow: 0 24px 60px -20px rgba(20, 29, 62, 0.22), 0 8px 24px -12px rgba(20,29,62,0.12);
  overflow: hidden;
}
.nav-dropdown-mega:hover .mega-panel,
.nav-dropdown-mega:focus-within .mega-panel { transform: translate(-50%, 0); }
.mega-head {
  padding: 14px 28px;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 700; color: var(--text-muted);
  border-bottom: 1px solid var(--border-light);
  background: #FAFBFD;
}
.mega-cols {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; padding: 28px;
}
.mega-col { padding: 0 18px; border-right: 1px solid var(--border-light); }
.mega-col:first-child { padding-left: 0; }
.mega-col:last-child { border-right: none; padding-right: 0; }
.mega-col-head {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 700; color: var(--primary);
  margin-bottom: 14px;
}
.mega-col-head svg { width: 18px; height: 18px; color: var(--accent-warm); flex-shrink: 0; }
.mega-col a {
  display: block; padding: 7px 0; font-size: 15px; color: var(--text-strong);
  border-radius: 0; border: none;
  transition: color var(--dur) var(--ease-std), padding-left var(--dur) var(--ease-std);
}
.mega-col a:hover { color: var(--accent-warm); background: transparent; padding-left: 4px; }
.mega-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 28px; background: #FAFBFD;
  border-top: 1px solid var(--border-light);
  font-weight: 600; color: var(--accent-warm) !important;
  font-size: 15px;
}
.mega-foot:hover { background: #F4F6FA; }
.mega-foot svg { transition: transform var(--dur) var(--ease-std); }
.mega-foot:hover svg { transform: translateX(4px); }

/* === About panel (Über inclusy) === */
.about-panel {
  width: 380px; left: auto; right: -10px; padding: 10px;
  border-radius: 14px;
  box-shadow: 0 24px 60px -20px rgba(20, 29, 62, 0.22), 0 8px 24px -12px rgba(20,29,62,0.12);
}
.about-item {
  display: flex !important; align-items: flex-start; gap: 14px;
  padding: 12px 14px !important; border-radius: 10px;
  transition: background var(--dur) var(--ease-std);
}
.about-item:hover { background: #F4F6FA; }
.about-icon {
  flex-shrink: 0; width: 36px; height: 36px; display: grid; place-items: center;
  color: var(--primary);
}
.about-icon svg { width: 22px; height: 22px; }
.about-body { display: flex; flex-direction: column; gap: 2px; }
.about-title { font-weight: 700; color: var(--text-strong); font-size: 15px; line-height: 1.3; }
.about-sub { font-size: 13px; color: var(--text-muted); line-height: 1.3; }

.nav-burger { display: none; background: none; border: 1px solid var(--border-light);
  width: 44px; height: 44px; border-radius: var(--r-sm); cursor: pointer; }
.nav-burger span { display: block; width: 18px; height: 2px; background: var(--primary); margin: 4px auto; }

@media (max-width: 960px) {
  .nav-items { display: none; }
  .nav-burger { display: block; margin-left: auto; }
  .nav-items.open {
    display: flex; flex-direction: column; align-items: stretch;
    position: fixed; inset: 64px 0 0 0; background: #fff; padding: var(--s6);
    gap: var(--s3); overflow-y: auto;
  }
  .nav-items.open a, .nav-items.open button.nav-trigger {
    padding: 14px 0; border-bottom: 1px solid var(--border-light); width: 100%; text-align: left;
  }
  .nav-dropdown-panel { position: static; opacity: 1; pointer-events: auto; transform: none;
    box-shadow: none; border: none; padding: 0 0 var(--s4) var(--s4); }
}

/* Footer — editorial, layered */
.site-footer { position: relative; background: #141D3E; color: #D7DCEA; overflow: hidden; }

/* Top band: brand + claim — ruhiger, breiter Anker */
.footer-top {
  padding: var(--s9) 0 var(--s6);
  display: grid; grid-template-columns: auto 1fr; gap: var(--s7);
  align-items: end;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 820px) { .footer-top { grid-template-columns: 1fr; gap: var(--s4); } }
.footer-top .footer-logo { margin: 0; }
.footer-top .footer-claim { max-width: 520px; margin: 0; color: rgba(255,255,255,0.68); font-size: 15px; line-height: 1.6; }

/* 4 Link columns — gleiche Breite, ruhig */
.footer-links {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s8);
  padding: var(--s9) 0 var(--s8);
}
@media (max-width: 900px) { .footer-links { grid-template-columns: repeat(2, 1fr); gap: var(--s7); } }
@media (max-width: 460px) { .footer-links { grid-template-columns: 1fr; } }

/* Info band — 4 horizontale Zellen (Sitz / Erreichbarkeit / Direkt / Social) */
.footer-info {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s7);
  padding: var(--s7) 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 900px) { .footer-info { grid-template-columns: repeat(2, 1fr); gap: var(--s6); } }
@media (max-width: 520px) { .footer-info { grid-template-columns: 1fr; } }
.footer-info-label {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 700; color: var(--accent-warm);
  margin-bottom: 10px;
}
.footer-info-body { font-size: 14.5px; line-height: 1.65; color: rgba(255,255,255,0.82); }
.footer-info-body a { color: #fff; text-decoration: none; transition: color var(--dur) var(--ease-std); }
.footer-info-body a:hover { color: var(--accent); }
.footer-info-social { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.footer-info-social > a {
  width: 38px; height: 38px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  display: grid; place-items: center; color: #fff;
  transition: background var(--dur) var(--ease-std), border-color var(--dur) var(--ease-std), color var(--dur) var(--ease-std), transform var(--dur) var(--ease-std);
}
.footer-info-social > a:hover { background: var(--accent-warm); border-color: var(--accent-warm); color: #1B264F; transform: translateY(-1px); }
.footer-info-social svg { width: 17px; height: 17px; }
.footer-badges-inline { display: flex; gap: 8px; flex-wrap: wrap; margin-left: 8px; }
.footer-badges-inline span {
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700;
  padding: 6px 10px; border: 1px solid rgba(255,255,255,0.16); border-radius: 999px;
  color: rgba(255,255,255,0.7);
}
@media (max-width: 1080px) { .footer-badges-inline { width: 100%; margin: 8px 0 0; } }

.footer-cta {
  background: linear-gradient(90deg, #1B264F 0%, #1F2A57 100%);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: var(--s9) 0;
}
.footer-cta-inner { display: grid; grid-template-columns: 1fr auto; gap: var(--s8); align-items: center; }
@media (max-width: 980px) { .footer-cta-inner { grid-template-columns: 1fr; gap: var(--s6); } }
.footer-cta-kicker { font-size: 12px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--accent); font-weight: 700; margin-bottom: var(--s3); }
.footer-cta h3 { color: #fff; margin: 0; font-size: clamp(24px, 2.6vw, 34px); letter-spacing: -0.02em; line-height: 1.2; font-weight: 700; }
.footer-cta h3 span { color: rgba(255,255,255,0.55); font-weight: 400; }
.footer-cta-actions { display: flex; align-items: center; gap: var(--s5); flex-wrap: wrap; }
.footer-cta-phone, .footer-cta-mail { display: flex; flex-direction: column; gap: 2px; text-decoration: none; color: #fff; padding-right: var(--s5); border-right: 1px solid rgba(255,255,255,0.12); transition: color var(--dur) var(--ease-std); }
.footer-cta-mail { border-right: 0; padding-right: 0; }
.footer-cta-phone:hover, .footer-cta-mail:hover { color: var(--accent); }
.footer-cta-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.5); font-weight: 600; }
.footer-cta-value { font-size: 17px; font-weight: 700; letter-spacing: -0.01em; }
.footer-cta-btn { background: var(--accent); color: #1B264F; border: 0; }
.footer-cta-btn:hover { background: #00CBC8; color: #1B264F; }

.footer-logo { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; font-size: 28px; color: #fff; letter-spacing: -0.02em; text-decoration: none; margin-bottom: var(--s5); }
.footer-logo-mark { width: 34px; height: 34px; border-radius: 50%; background: conic-gradient(from 210deg, var(--accent), #5b78c7, var(--accent-warm), #00B7B4); position: relative; }
.footer-logo-mark::after { content: ""; position: absolute; inset: 8px; border-radius: 50%; background: #141D3E; }
.footer-logo-word i { color: var(--accent-warm); font-style: normal; }
.footer-claim { color: rgba(255,255,255,0.65); font-size: 15px; line-height: 1.55; margin: 0 0 var(--s6); }
.footer-badges { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: var(--s7); }
.footer-badges span { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 10px; border-radius: 4px; background: rgba(255,255,255,0.04); color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.08); }
.footer-social-wrap { padding-top: var(--s5); border-top: 1px solid rgba(255,255,255,0.08); }
.footer-social-label { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: rgba(255,255,255,0.45); font-weight: 700; margin-bottom: var(--s3); }
.footer-social-row { display: flex; gap: 10px; }
.footer-social-row a { width: 40px; height: 40px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.12); display: inline-flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); transition: all var(--dur) var(--ease-std); text-decoration: none; }
.footer-social-row a:hover { background: var(--accent); border-color: var(--accent); color: #1B264F; transform: translateY(-2px); }
.footer-social-row svg { width: 18px; height: 18px; }

.footer-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s7); }
@media (max-width: 760px) { .footer-links { grid-template-columns: repeat(2, 1fr); gap: var(--s6); } }
@media (max-width: 460px) { .footer-links { grid-template-columns: 1fr; } }

.site-footer h5 { color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 700; margin: 0 0 var(--s5); padding-bottom: var(--s3); border-bottom: 1px solid rgba(255,255,255,0.12); position: relative; }
.site-footer h5::after { content: ""; position: absolute; bottom: -1px; left: 0; width: 24px; height: 2px; background: var(--accent); }

.footer-links ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-links ul li a { font-size: 14.5px; color: rgba(255,255,255,0.7); text-decoration: none; display: inline-flex; align-items: center; transition: color var(--dur) var(--ease-std); }
.footer-links ul li a::before { content: "→"; opacity: 0; width: 0; overflow: hidden; color: var(--accent); transition: opacity var(--dur) var(--ease-std), width var(--dur) var(--ease-std), margin-right var(--dur) var(--ease-std); margin-right: 0; }
.footer-links ul li a:hover { color: #fff; }
.footer-links ul li a:hover::before { opacity: 1; width: 14px; margin-right: 6px; }

.footer-bottom { background: #0E1530; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: var(--s4) var(--s7); padding: var(--s5) 0; }
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.45); }
.footer-legal { display: flex; flex-wrap: wrap; gap: var(--s5); }
.footer-legal a { font-size: 13px; color: rgba(255,255,255,0.55); text-decoration: none; transition: color var(--dur) var(--ease-std); }
.footer-legal a:hover { color: var(--accent); }

/* Image placeholder (kept as scaffold for later real images) */
.img-ph {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: var(--r-lg);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0) 60%),
    repeating-linear-gradient(45deg,
      var(--accent-soft) 0, var(--accent-soft) 10px,
      #E3F4F3 10px, #E3F4F3 20px);
  display: flex; align-items: center; justify-content: center;
  color: var(--secondary-active);
  font-family: "SFMono-Regular", Consolas, "Courier New", monospace;
  font-size: 13px;
  text-align: center; padding: var(--s7);
  overflow: hidden;
}
.img-ph-warm {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0) 60%),
    repeating-linear-gradient(45deg,
      #FBECD6 0, #FBECD6 10px,
      #F6E1C0 10px, #F6E1C0 20px);
  color: var(--accent-warm);
}
.img-ph-primary {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0) 60%),
    repeating-linear-gradient(45deg,
      #DDE3F2 0, #DDE3F2 10px,
      #C9D1E7 10px, #C9D1E7 20px);
  color: var(--primary);
}

/* Reveal-on-scroll */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 700ms var(--ease-dec), transform 700ms var(--ease-dec);
}
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 80ms; }
.reveal.d2 { transition-delay: 160ms; }
.reveal.d3 { transition-delay: 240ms; }
.reveal.d4 { transition-delay: 320ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; transition: none !important; }
}

/* Page hero (for sub-pages) */
.page-hero {
  padding: var(--s10) 0 var(--s9);
  background: linear-gradient(180deg, var(--surface-warm) 0%, #fff 100%);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: -30% -10% auto auto;
  width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(0,183,180,0.15), transparent 70%);
  pointer-events: none;
}
.breadcrumbs {
  font-size: 12px; color: var(--text-muted); margin-bottom: var(--s5);
  opacity: 0.6; font-weight: 500; letter-spacing: 0.01em;
}
.breadcrumbs a { color: var(--text-muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--secondary); opacity: 1; }
.breadcrumbs span { margin: 0 6px; opacity: 0.6; }
.page-hero .breadcrumbs { font-size: 12px; margin-bottom: var(--s4); }
.page-hero h1 { max-width: 20ch; }
.page-hero p.lede { font-size: clamp(18px, 2vw, 22px); max-width: 65ch; color: var(--text-muted); }

/* Feature list */
.feature-list { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--s3); }
.feature-list li {
  display: flex; gap: var(--s4); align-items: flex-start;
  padding: var(--s4) 0;
  border-bottom: 1px solid var(--border-light);
}
.feature-list li:last-child { border-bottom: 0; }
.feature-list .num {
  flex: 0 0 auto; width: 40px; height: 40px; border-radius: 50%;
  background: var(--accent-soft); color: var(--secondary-active);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px;
}

/* ============================================================
   FAQ — Editorial card stack (rebuild)
   Cards on warm surface, generous padding, serif counter,
   accent rail on hover/open, premium share + search.
   ============================================================ */

/* Search bar */
.faq-search-wrap {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: var(--s7); padding: 16px 22px;
  border: 1px solid var(--border-light);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 28px -18px rgba(27,38,79,.18);
  transition: border-color var(--dur) var(--ease-std), box-shadow var(--dur) var(--ease-std), transform var(--dur) var(--ease-std);
}
.faq-search-wrap:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 5px rgba(0,183,180,.12), 0 12px 32px -16px rgba(0,99,99,.25);
  transform: translateY(-1px);
}
.faq-search-icon { flex: 0 0 18px; width: 18px !important; height: 18px !important; color: var(--secondary); }
.faq-search {
  flex: 1; border: 0 !important; outline: none !important; background: transparent !important;
  font-size: 16px; font-family: inherit; color: var(--text-heading);
  padding: 0 !important; margin: 0 !important; box-shadow: none !important;
  -webkit-appearance: none; line-height: 1.4; min-height: auto; font-weight: 500;
}
.faq-search::placeholder { color: var(--text-muted); font-weight: 400; }
.faq-search-clear {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  border: 0; background: var(--surface-tint); color: var(--text-muted);
  font-size: 20px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--dur) var(--ease-std), color var(--dur) var(--ease-std);
}
.faq-search-clear:hover { background: var(--secondary); color: #fff; }
.faq-no-results {
  text-align: center; padding: 64px 20px; color: var(--text-muted);
  font-size: 16px; display: none;
  background: #fff; border: 1px dashed var(--border-light); border-radius: var(--r-lg);
  margin-top: var(--s5);
}
.faq-no-results.visible { display: block; }

/* Item — card-style, sits on warm surface ideally */
.faq-item {
  position: relative;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  margin-bottom: 12px;
  overflow: hidden;
  scroll-margin-top: 96px;
  transition: border-color var(--dur) var(--ease-std),
              box-shadow var(--dur-slow) var(--ease-std),
              transform var(--dur-slow) var(--ease-std);
  counter-increment: faq-counter;
}
.faq-item:hover {
  border-color: rgba(0,183,180,.4);
  transform: translateY(-2px);
  box-shadow: var(--sh-lift, 0 14px 34px -22px rgba(27,38,79,.18));
}
.faq-item.open {
  border-color: var(--accent);
  box-shadow: 0 18px 44px -22px rgba(0,99,99,.22);
  transform: none;
}
.faq-item.faq-hidden { display: none; }

/* Question row */
.faq-q-row { display: flex; align-items: stretch; }
.faq-q {
  flex: 1;
  width: 100%; text-align: left; background: none; border: 0;
  padding: var(--s6) var(--s5) var(--s6) var(--s5); cursor: pointer;
  font-family: inherit; font-size: 18px; font-weight: 600;
  letter-spacing: -0.005em; line-height: 1.35;
  color: var(--text-heading);
  display: flex; align-items: center; gap: var(--s4);
  transition: color var(--dur) var(--ease-std);
  position: relative;
}
.faq-q::before { content: none; }
.faq-q:hover { color: var(--secondary); }
.faq-item.open .faq-q { color: var(--secondary); }
.faq-q .chev {
  flex: 0 0 auto;
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; line-height: 1; font-weight: 300;
  color: var(--text-muted); background: transparent; border-radius: 0;
  transition: transform var(--dur-slow) var(--ease-std),
              color var(--dur) var(--ease-std);
  order: -1;
}
.faq-q:hover .chev { color: var(--secondary); }
.faq-item.open .faq-q .chev {
  transform: rotate(45deg);
  color: var(--accent);
}

/* Share — chain icon, sits in row next to question */
.faq-share {
  flex: 0 0 auto;
  width: 40px;
  align-self: stretch;
  border: 0; background: transparent; color: var(--text-muted);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  margin-right: var(--s3);
  transition: color var(--dur) var(--ease-std), transform var(--dur) var(--ease-std);
}
.faq-share:hover { color: var(--secondary); transform: scale(1.08); }
.faq-share svg { width: 16px; height: 16px; }
.faq-share.copied { color: #22C55E; }

/* Answer */
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height var(--dur-slow) var(--ease-std);
}
.faq-item.open .faq-a { max-height: 2000px; }
.faq-a-inner {
  padding: 0 var(--s7) var(--s6) calc(var(--s5) + 22px + var(--s4));
  color: var(--text-body);
  border-top: 1px solid var(--border-light);
  margin-top: -1px;
  padding-top: var(--s5);
  background: linear-gradient(180deg, #FAFBFD 0%, #fff 60%);
}
.faq-a-inner p, .faq-a-inner ul, .faq-a-inner ol { max-width: 72ch; font-size: 15.5px; line-height: 1.7; }
.faq-a-inner p { margin: 0 0 var(--s4); }
.faq-a-inner p:last-child { margin-bottom: 0; }
.faq-a-inner strong { color: var(--text-heading); font-weight: 600; }
.faq-a-inner ul, .faq-a-inner ol { padding-left: 22px; margin: var(--s3) 0 var(--s4); }
.faq-a-inner li { margin-bottom: 6px; }
.faq-a-inner a { color: var(--secondary); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.faq-a-inner a:hover { color: var(--accent); }

@media (max-width: 600px) {
  .faq-q { padding: var(--s5) var(--s5) var(--s5) var(--s4); font-size: 16px; gap: var(--s4); }
  .faq-a-inner { padding: var(--s4) var(--s5) var(--s5) var(--s5); }
}

/* The accordion list itself sets the counter scope */
.faq-list, [data-tab-panel], .wrap > .faq-item:first-of-type ~ * { /* no-op safety */ }
.faq-list { counter-reset: faq-counter; }
[data-tab-panel] { counter-reset: faq-counter; }

/* Tab chips */
.tabs { display: flex; flex-wrap: wrap; gap: var(--s2); margin-bottom: var(--s7); }
.tab {
  border: 1px solid var(--border-light); background: #fff;
  padding: 10px 18px; border-radius: var(--r-pill);
  font: inherit; font-size: 14px; font-weight: 600; cursor: pointer;
  color: var(--text-heading);
  transition: all var(--dur) var(--ease-std);
}
.tab:hover { border-color: var(--secondary); color: var(--secondary); }
.tab.active { background: var(--primary); border-color: var(--primary); color: #fff; }

/* CTA band */
.cta-band {
  background:
    radial-gradient(ellipse at 10% 20%, rgba(0,183,180,0.35), transparent 50%),
    radial-gradient(ellipse at 90% 80%, rgba(201,122,43,0.25), transparent 50%),
    var(--primary);
  color: #fff;
  border-radius: var(--r-lg);
  padding: var(--s10);
  display: grid; grid-template-columns: 1.6fr 1fr; gap: var(--s8); align-items: center;
}
.cta-band h2 { color: #fff; margin-bottom: var(--s3); }
.cta-band p { color: rgba(255,255,255,0.85); }
.cta-band .btn-primary { background: #fff; color: var(--primary); }
.cta-band .btn-primary:hover { background: #fff; color: var(--primary-active); }
.cta-band .btn-ghost { border-color: rgba(255,255,255,0.4); color: #fff; }
.cta-band .btn-ghost:hover { background: #fff; color: var(--primary); border-color: #fff; }
@media (max-width: 900px) { .cta-band { grid-template-columns: 1fr; padding: var(--s8); } }

/* Marquee (for partners / sectors) */
.marquee {
  overflow: hidden; position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex; gap: var(--s9); width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  font-size: 20px; font-weight: 600; color: var(--text-muted);
  display: inline-flex; align-items: center; gap: var(--s3);
  white-space: nowrap;
}
.marquee-item::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Stats */
.stats-band {
  background: linear-gradient(180deg, #1B264F 0%, #141D3E 100%);
  color: #fff;
  padding: var(--s9);
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: ""; position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,183,180,0.2), transparent 70%);
  pointer-events: none;
}
.stats-band h2 { color: #fff; }
.stats-band p { color: rgba(255,255,255,0.75); }
.stats-band > div { position: relative; z-index: 1; }
@media (max-width: 900px) {
  .stats-band { padding: var(--s7); }
  .stats-band > div { grid-template-columns: 1fr !important; gap: var(--s7) !important; }
}

.value-props { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s5); }
@media (max-width: 560px) { .value-props { grid-template-columns: 1fr; } }
.vprop {
  display: grid; grid-template-columns: 44px 1fr; gap: var(--s4);
  padding: var(--s5);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md);
  transition: background var(--dur) var(--ease-std), border-color var(--dur) var(--ease-std), transform var(--dur) var(--ease-std);
}
.vprop:hover {
  background: rgba(0,183,180,0.08);
  border-color: rgba(0,183,180,0.3);
  transform: translateY(-2px);
}
.vprop-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(0,183,180,0.15); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.vprop-icon svg { width: 22px; height: 22px; }
.vprop-kicker {
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 700; color: var(--accent); margin-bottom: 6px;
}
.vprop-title { color: #fff; margin: 0 0 6px; font-size: 17px; font-weight: 700; line-height: 1.25; }
.vprop-text { color: rgba(255,255,255,0.65); margin: 0; font-size: 14.5px; line-height: 1.5; }

/* Stats (legacy, kept for other pages) */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s7); }
@media (max-width: 900px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat .num {
  font-size: clamp(36px, 5vw, 60px); font-weight: 800; color: var(--primary);
  letter-spacing: -0.03em; line-height: 1; margin-bottom: var(--s3);
}
.stat .label { color: var(--text-muted); font-size: 15px; }

/* Editorial pull quote */
.pullquote-sec {
  background:
    radial-gradient(ellipse 600px 400px at 20% 0%, rgba(201,122,43,0.08), transparent 60%),
    linear-gradient(180deg, #FBF6EE 0%, #F5EEE1 100%);
  padding: var(--s10) 0;
}
.pullquote {
  max-width: 900px; margin: 0 auto; padding: 0 var(--s5);
  position: relative; text-align: left;
}
.pullquote-mark {
  position: absolute; top: -40px; left: -10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 280px; line-height: 1; color: var(--accent-warm);
  opacity: 0.18; pointer-events: none; font-weight: 700;
}
.pullquote blockquote {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.2; letter-spacing: -0.015em;
  color: var(--text-headings); font-weight: 400;
  margin: 0 0 var(--s7); padding: 0;
  font-style: italic;
  position: relative;
}
.pullquote blockquote .hl-warm {
  color: var(--accent-warm); font-style: normal; font-weight: 600;
  position: relative; white-space: nowrap;
}
.pullquote blockquote .hl-warm::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 2px; height: 8px;
  background: rgba(201,122,43,0.18); z-index: -1;
}
.pullquote figcaption {
  display: flex; align-items: center; gap: var(--s4);
  font-family: var(--font);
}
.pq-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-warm), #A5611E);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 20px; letter-spacing: -0.02em;
  box-shadow: 0 4px 12px rgba(201,122,43,0.3);
}
.pq-name { font-weight: 700; color: var(--text-headings); font-size: 16px; }
.pq-role { color: var(--text-muted); font-size: 14px; margin-top: 2px; }

/* Focus ring */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* === Section tint === */
.section-tint { background: #FAFBFD; border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); }

/* === Button: small === */
.btn-sm { padding: 8px 14px; font-size: 13px; }

/* === Download cards === */
.dl-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: var(--s4);
}
@media (max-width: 760px) { .dl-grid { grid-template-columns: 1fr; } }
.dl-card {
  display: grid; grid-template-columns: 56px 1fr auto; gap: var(--s4);
  align-items: center;
  padding: 22px 24px; background: #fff;
  border: 1px solid var(--border-light); border-radius: 14px;
  text-decoration: none; color: inherit;
  transition: transform var(--dur) var(--ease-std), box-shadow var(--dur) var(--ease-std), border-color var(--dur) var(--ease-std);
}
.dl-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent-warm);
  box-shadow: 0 14px 32px -16px rgba(20,29,62,0.18);
  text-decoration: none;
}
.dl-icon {
  width: 56px; height: 56px; border-radius: 12px;
  background: linear-gradient(135deg, #FFF4EE 0%, #FFE4D4 100%);
  color: var(--accent-warm);
  display: grid; place-items: center;
}
.dl-icon svg { width: 26px; height: 26px; }
.dl-kicker { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; color: var(--text-muted); margin-bottom: 4px; }
.dl-title { font-size: 17px; font-weight: 700; color: var(--text-strong); margin-bottom: 2px; }
.dl-sub { font-size: 14px; color: var(--text-muted); line-height: 1.4; }
.dl-arrow {
  width: 40px; height: 40px; border-radius: 999px;
  background: var(--surface-tint); color: var(--primary);
  display: grid; place-items: center;
  transition: background var(--dur) var(--ease-std), color var(--dur) var(--ease-std), transform var(--dur) var(--ease-std);
}
.dl-card:hover .dl-arrow { background: var(--accent-warm); color: #fff; transform: translateY(2px); }

/* === Document preview === */
.dl-preview {
  background: #fff; border: 1px solid var(--border-light); border-radius: 16px;
  overflow: hidden; box-shadow: 0 10px 30px -16px rgba(20,29,62,0.12);
}
.dl-preview-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px; border-bottom: 1px solid var(--border-light);
  background: #FAFBFD;
}
.dl-preview-stage {
  padding: var(--s7);
  background:
    linear-gradient(180deg, #F4F6FA 0%, #EDF0F6 100%);
  display: grid; place-items: center;
}
.dl-preview-doc {
  width: 100%; max-width: 560px; aspect-ratio: 1 / 1.414;
  background: #fff; padding: 36px 40px;
  border-radius: 4px;
  box-shadow:
    0 1px 0 rgba(0,0,0,0.04),
    0 20px 40px -16px rgba(20,29,62,0.18),
    0 60px 100px -40px rgba(20,29,62,0.22);
  display: flex; flex-direction: column;
  font-size: 11px; color: var(--text-strong);
  position: relative;
  transform: rotate(-0.3deg);
  transition: transform var(--dur) var(--ease-std);
}
.dl-preview:hover .dl-preview-doc { transform: rotate(0deg) translateY(-4px); }
.doc-head { display: flex; justify-content: space-between; align-items: flex-start; padding-bottom: 14px; border-bottom: 2px solid var(--primary); margin-bottom: 18px; }
.doc-logo { display: flex; align-items: center; gap: 8px; font-weight: 800; font-size: 16px; color: var(--primary); letter-spacing: -0.01em; }
.doc-dot { width: 16px; height: 16px; border-radius: 999px;
  background: conic-gradient(from 200deg, #00B7B4, #FF8A4C, #00B7B4); }
.doc-meta { font-size: 9px; color: var(--text-muted); text-align: right; line-height: 1.5; }
.doc-h { font-size: 15px; font-weight: 700; color: var(--text-strong); margin: 0 0 8px; line-height: 1.25; }
.doc-p { font-size: 10px; color: var(--text-muted); line-height: 1.55; margin: 0 0 18px; }
.doc-section { margin-bottom: 14px; }
.doc-section-h { font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; color: var(--accent-warm); margin-bottom: 8px; }
.doc-row { display: grid; grid-template-columns: 110px 1fr; gap: 10px; align-items: center; padding: 5px 0; }
.doc-row span:first-child { font-size: 9px; color: var(--text-muted); }
.doc-line { height: 1px; background: repeating-linear-gradient(90deg, var(--border-light) 0 6px, transparent 6px 10px); }
.doc-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; font-size: 10px; }
.doc-checks label { display: flex; align-items: center; gap: 8px; }
.doc-check { width: 12px; height: 12px; border: 1.4px solid var(--border-strong); border-radius: 2px; display: inline-block; flex-shrink: 0; }
.doc-check.checked { background: var(--primary); border-color: var(--primary); position: relative; }
.doc-check.checked::after { content:''; position:absolute; left:3px; top:0px; width:4px; height:8px; border-right:1.6px solid #fff; border-bottom:1.6px solid #fff; transform:rotate(45deg); }
.doc-foot { margin-top: auto; padding-top: 14px; border-top: 1px solid var(--border-light); font-size: 8px; color: var(--text-muted); text-align: center; letter-spacing: 0.04em; }
@media (max-width: 760px) {
  .dl-preview-stage { padding: var(--s4); }
  .dl-preview-doc { padding: 24px 22px; }
}
