/* Noverdan Systems — Enhanced B2B design system
   Professional / technical / trustworthy. No neon gimmicks. */

:root {
  --navy-950: #070f1a;
  --navy-900: #0b1c30;
  --navy-850: #0f2a44;
  --navy-800: #163a5c;
  --navy-700: #1e4d73;
  --blue-600: #2b74c4;
  --blue-500: #3d8bdb;
  --blue-400: #5aa0e6;
  --blue-300: #8bbef0;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;
  --ink: #0f172a;
  --success: #0f766e;
  --success-soft: rgba(15, 118, 110, 0.1);
  --radius: 14px;
  --radius-sm: 10px;
  --radius-xs: 8px;
  --shadow: 0 1px 2px rgba(7, 15, 26, 0.05), 0 8px 28px rgba(7, 15, 26, 0.06);
  --shadow-md: 0 4px 12px rgba(7, 15, 26, 0.07), 0 16px 40px rgba(7, 15, 26, 0.06);
  --shadow-lg: 0 12px 40px rgba(7, 15, 26, 0.12);
  --shadow-glow: 0 0 0 1px rgba(61, 139, 219, 0.15), 0 12px 40px rgba(15, 42, 68, 0.25);
  --max: 1160px;
  --header-h: 74px;
  --font: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, "Cascadia Code", "Segoe UI Mono", Consolas, monospace;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--slate-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: block; }

a {
  color: var(--blue-600);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
}
a:hover { color: var(--navy-800); }

:focus-visible {
  outline: 3px solid var(--blue-400);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy-900);
  color: var(--white);
  padding: 0.75rem 1rem;
  z-index: 1000;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* ========== Header ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(7, 15, 26, 0.88);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--white);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.brand img, .brand svg { width: 36px; height: 36px; flex-shrink: 0; }
.brand-text { font-size: 1.05rem; }
.brand-text span { font-weight: 500; color: var(--slate-400); }

.nav {
  display: flex;
  align-items: center;
  gap: 0.15rem 1.15rem;
}
.nav a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.nav a:hover {
  color: var(--white);
  border-bottom-color: rgba(90, 160, 230, 0.7);
}
.nav-cta { display: inline-flex; align-items: center; margin-left: 0.35rem; }

.menu-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.75rem;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.35rem;
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: 0.96rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease,
    box-shadow 0.18s ease, transform 0.18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(180deg, var(--blue-500), var(--blue-600));
  color: var(--white);
  box-shadow: 0 4px 14px rgba(43, 116, 196, 0.35);
}
.btn-primary:hover {
  background: linear-gradient(180deg, var(--blue-400), var(--blue-500));
  color: var(--white);
  box-shadow: 0 6px 18px rgba(43, 116, 196, 0.45);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.22);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-on-light {
  background: var(--navy-900);
  color: var(--white);
}
.btn-on-light:hover {
  background: var(--navy-800);
  color: var(--white);
}

.btn-outline {
  background: var(--white);
  color: var(--navy-900);
  border-color: var(--slate-200);
}
.btn-outline:hover {
  border-color: var(--slate-400);
  background: var(--slate-50);
  color: var(--navy-900);
}

.btn-light {
  background: var(--white);
  color: var(--navy-900);
  box-shadow: var(--shadow);
}
.btn-light:hover {
  background: var(--slate-50);
  color: var(--navy-900);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

/* ========== Hero (dark, premium) ========== */
.hero {
  position: relative;
  padding: 5rem 0 4.5rem;
  background:
    radial-gradient(900px 420px at 85% 15%, rgba(61, 139, 219, 0.22), transparent 55%),
    radial-gradient(700px 360px at 10% 80%, rgba(30, 77, 115, 0.35), transparent 50%),
    linear-gradient(165deg, var(--navy-950) 0%, var(--navy-900) 45%, #0d2440 100%);
  color: rgba(255, 255, 255, 0.88);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black, transparent);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -40%;
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(61, 139, 219, 0.18), transparent 65%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.75rem;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-300);
  margin: 0 0 1rem;
}

.hero h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(2.15rem, 4.6vw, 3.25rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--white);
  font-weight: 750;
}

.hero h1 .accent {
  background: linear-gradient(105deg, var(--blue-300), var(--blue-500) 55%, #7eb6f5);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  margin: 0 0 2rem;
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 38rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-note {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.hero-note svg { flex-shrink: 0; opacity: 0.85; }

/* Hero pipeline card */
.hero-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow-glow);
  padding: 1.4rem 1.35rem 1.5rem;
  backdrop-filter: blur(10px);
}

.hero-card-head {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.15rem;
}

.hero-card-head .icon-badge {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 10px;
  background: rgba(61, 139, 219, 0.2);
  border: 1px solid rgba(90, 160, 230, 0.35);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.hero-card h2 {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
  color: var(--white);
}

.hero-card > .hero-card-head p,
.hero-card-lead {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.5;
}

/* Visual pipeline */
.pipeline {
  display: grid;
  gap: 0;
}

.pipeline-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.45rem;
}

.pipeline-node {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 0.85rem;
  background: rgba(7, 15, 26, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.9);
}

.pipeline-node strong {
  font-weight: 650;
  color: var(--white);
}

.pipeline-node span.muted {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.1rem;
}

.pipeline-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  background: rgba(61, 139, 219, 0.15);
  border: 1px solid rgba(90, 160, 230, 0.25);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--blue-300);
}

.pipeline-arrow {
  display: flex;
  justify-content: center;
  padding: 0.15rem 0;
  color: rgba(90, 160, 230, 0.65);
  font-size: 0.85rem;
  line-height: 1;
}

.pipeline-node.is-core {
  background: linear-gradient(135deg, rgba(61, 139, 219, 0.22), rgba(15, 42, 68, 0.5));
  border-color: rgba(90, 160, 230, 0.4);
}

.pipeline-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.85rem;
}

.pipeline-tags span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}

/* Trust bar under hero */
.trust-bar {
  position: relative;
  z-index: 2;
  margin-top: -1.5rem;
  margin-bottom: 0;
  padding: 0 0 0.5rem;
}

.trust-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 1.15rem 1rem;
}

.trust-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.35rem 0.5rem;
}

.trust-item .ti-icon {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 12px;
  background: rgba(61, 139, 219, 0.1);
  color: var(--blue-600);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.trust-item h3 {
  margin: 0 0 0.2rem;
  font-size: 0.95rem;
  color: var(--navy-900);
}

.trust-item p {
  margin: 0;
  font-size: 0.84rem;
  color: var(--slate-600);
  line-height: 1.45;
}

/* ========== Sections ========== */
section { padding: 4.75rem 0; }

.section-alt {
  background:
    linear-gradient(180deg, var(--slate-50), #eef3f8 40%, var(--slate-50));
  border-block: 1px solid var(--slate-100);
}

.section-dark {
  position: relative;
  background:
    radial-gradient(800px 300px at 50% 0%, rgba(61, 139, 219, 0.16), transparent 55%),
    linear-gradient(165deg, var(--navy-950), var(--navy-850) 50%, #0d2844);
  color: rgba(255, 255, 255, 0.88);
  overflow: hidden;
}

.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.7;
  pointer-events: none;
}

.section-dark > .container { position: relative; z-index: 1; }

.section-dark h2,
.section-dark h3 { color: var(--white); }

.section-header {
  max-width: 42rem;
  margin-bottom: 2.5rem;
}
.section-header.center {
  margin-inline: auto;
  text-align: center;
}

.section-header h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.75rem, 3vw, 2.2rem);
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--navy-950);
  font-weight: 700;
}

.section-header p {
  margin: 0;
  color: var(--slate-600);
  font-size: 1.08rem;
}

.section-dark .section-header p {
  color: rgba(255, 255, 255, 0.72);
}

/* Problem layout: text + cards */
.problem-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.35fr;
  gap: 2.25rem;
  align-items: start;
}

.problem-intro h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.7rem, 3vw, 2.15rem);
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--navy-950);
}

.problem-intro p {
  margin: 0 0 1.25rem;
  color: var(--slate-600);
  font-size: 1.05rem;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.problem-grid.cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

.problem-item {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 1.15rem 1.2rem;
  box-shadow: var(--shadow);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}
.problem-item:hover {
  border-color: rgba(61, 139, 219, 0.35);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.problem-item .pi-icon {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 10px;
  background: rgba(61, 139, 219, 0.1);
  color: var(--blue-600);
  display: grid;
  place-items: center;
  margin-bottom: 0.75rem;
}

.problem-item h3 {
  margin: 0 0 0.4rem;
  font-size: 1.02rem;
  color: var(--navy-900);
}
.problem-item p {
  margin: 0;
  color: var(--slate-600);
  font-size: 0.94rem;
}

.pull-quote {
  margin: 1.5rem 0 0;
  padding: 1.15rem 1.35rem;
  border-left: 4px solid var(--blue-500);
  background: var(--white);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--navy-900);
  font-size: 1.05rem;
  font-weight: 550;
  box-shadow: var(--shadow);
}

/* Service cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: var(--shadow);
  height: 100%;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}
.card:hover {
  border-color: rgba(61, 139, 219, 0.35);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.card-icon {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(61, 139, 219, 0.14), rgba(15, 42, 68, 0.06));
  border: 1px solid rgba(61, 139, 219, 0.18);
  color: var(--blue-600);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: var(--navy-900);
}
.card p {
  margin: 0;
  font-size: 0.94rem;
  color: var(--slate-600);
}

/* DocumentFlow software panel */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2.25rem;
  align-items: start;
}

.feature-panel {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: var(--shadow-md);
}

.feature-panel h3 {
  margin: 0 0 0.75rem;
  color: var(--navy-900);
  font-size: 1.05rem;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.chip-list li {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  color: var(--slate-700);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font-size: 0.86rem;
  font-weight: 550;
}

.note-box {
  margin-top: 1.25rem;
  padding: 1rem 1.1rem;
  background: var(--success-soft);
  border: 1px solid rgba(15, 118, 110, 0.2);
  border-radius: var(--radius-sm);
  color: var(--slate-700);
  font-size: 0.95rem;
}
.note-box strong { color: var(--success); }

/* Software mock visual */
.df-visual {
  background: linear-gradient(165deg, var(--navy-950), var(--navy-850));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: var(--shadow-lg);
  color: rgba(255, 255, 255, 0.88);
}

.df-visual-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.df-dots { display: flex; gap: 0.35rem; }
.df-dots span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}
.df-dots span:nth-child(1) { background: #f87171; }
.df-dots span:nth-child(2) { background: #fbbf24; }
.df-dots span:nth-child(3) { background: #34d399; }

.df-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-300);
}

.df-flow {
  display: grid;
  gap: 0.45rem;
}

.df-stage {
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  padding: 0.75rem 0.9rem;
}

.df-stage.is-engine {
  background: linear-gradient(135deg, rgba(61, 139, 219, 0.25), rgba(15, 42, 68, 0.4));
  border-color: rgba(90, 160, 230, 0.4);
}

.df-stage-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-300);
  margin-bottom: 0.3rem;
}

.df-stage-body {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 550;
}

.df-stage-sub {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.2rem;
}

.df-connector {
  text-align: center;
  color: rgba(90, 160, 230, 0.7);
  font-size: 0.85rem;
  line-height: 1;
}

/* Process timeline */
.process-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

.process-track::before {
  content: "";
  position: absolute;
  top: 1.55rem;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(90, 160, 230, 0.55), transparent);
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 0.6rem;
}

.process-bubble {
  width: 3.1rem;
  height: 3.1rem;
  margin: 0 auto 1rem;
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(61, 139, 219, 0.35), rgba(15, 42, 68, 0.9));
  border: 2px solid rgba(90, 160, 230, 0.55);
  box-shadow: 0 0 0 6px rgba(61, 139, 219, 0.08);
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.process-step h3 {
  margin: 0 0 0.45rem;
  font-size: 0.98rem;
}

.process-step p {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

/* Examples */
.example-list { display: grid; gap: 0.75rem; }

.example {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  box-shadow: var(--shadow);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.example:hover {
  border-color: rgba(61, 139, 219, 0.3);
  box-shadow: var(--shadow-md);
}

.example-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-600);
  background: rgba(61, 139, 219, 0.1);
  border-radius: 999px;
  padding: 0.35rem 0.65rem;
  white-space: nowrap;
}

.example p {
  margin: 0;
  color: var(--slate-700);
  font-size: 1.02rem;
}

.example-note {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: var(--slate-500);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
  align-items: start;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
}

.contact-card h3 {
  margin: 0 0 0.5rem;
  color: var(--navy-900);
}

.contact-card p {
  margin: 0 0 1rem;
  color: var(--slate-600);
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}
.contact-list li { font-size: 0.98rem; color: var(--slate-700); }
.contact-list a { font-weight: 600; text-decoration: none; }
.contact-list a:hover { text-decoration: underline; }

.form { display: grid; gap: 1rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy-900);
}
.req { color: var(--blue-600); font-weight: 500; }

input, select, textarea {
  font: inherit;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xs);
  padding: 0.75rem 0.85rem;
  width: 100%;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
input:hover, select:hover, textarea:hover { border-color: var(--slate-400); }
input:focus, select:focus, textarea:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(61, 139, 219, 0.18);
  outline: none;
}
textarea { min-height: 110px; resize: vertical; }

.form-hint {
  margin: 0;
  font-size: 0.88rem;
  color: var(--slate-500);
  font-weight: 400;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.form-status {
  margin: 0;
  font-size: 0.92rem;
  color: var(--success);
  min-height: 1.4em;
}
.form-status[data-error="true"] { color: #b91c1c; }

/* Final CTA band */
.cta-band {
  text-align: center;
  padding: 4.25rem 0;
}
.cta-band h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  letter-spacing: -0.02em;
  color: var(--white);
}
.cta-band p {
  margin: 0 auto 1.75rem;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.75);
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* Footer */
.site-footer {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.72);
  padding: 3rem 0 2rem;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 0.75rem;
}
.footer-brand img { width: 32px; height: 32px; }

.site-footer h3 {
  margin: 0 0 0.85rem;
  color: var(--white);
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}
.site-footer a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Legal */
.legal { padding: 3.5rem 0 5rem; }
.legal h1 {
  margin: 0 0 0.5rem;
  color: var(--navy-950);
  letter-spacing: -0.02em;
}
.legal .meta { color: var(--slate-500); margin-bottom: 2rem; }
.legal h2 {
  margin: 2rem 0 0.75rem;
  color: var(--navy-900);
  font-size: 1.25rem;
}
.legal p, .legal li { color: var(--slate-600); }

/* Light-header override for legal pages (white header) */
body.page-legal .site-header {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: var(--slate-200);
}
body.page-legal .brand { color: var(--navy-900); }
body.page-legal .brand-text span { color: var(--slate-500); }
body.page-legal .nav a { color: var(--slate-600); }
body.page-legal .nav a:hover { color: var(--navy-900); border-bottom-color: var(--blue-400); }
body.page-legal .menu-toggle {
  border-color: var(--slate-200);
  background: var(--white);
  color: var(--navy-900);
}
body.page-legal .nav-cta .btn-primary {
  background: var(--navy-900);
  box-shadow: none;
}
body.page-legal .nav-cta .btn-primary:hover { background: var(--navy-800); }

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* ========== Responsive ========== */
@media (max-width: 1024px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .problem-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .process-track { grid-template-columns: repeat(3, 1fr); gap: 1.5rem 0.5rem; }
  .process-track::before { display: none; }
  .trust-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .hero-grid,
  .feature-split,
  .contact-grid,
  .problem-layout {
    grid-template-columns: 1fr;
  }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-track { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .menu-toggle { display: inline-flex; }

  .nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--navy-950);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1rem 1rem;
    gap: 0.15rem;
    box-shadow: var(--shadow-lg);
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 0.75rem 0.5rem; border-bottom: none; }
  .nav-cta { margin: 0.5rem 0 0; }
  .nav-cta .btn { width: 100%; }

  body.page-legal .nav {
    background: var(--white);
    border-bottom-color: var(--slate-200);
  }

  .problem-grid,
  .problem-grid.cols-4,
  .card-grid,
  .process-track,
  .form-row,
  .footer-grid,
  .trust-inner {
    grid-template-columns: 1fr;
  }

  .hero { padding: 3.25rem 0 3.5rem; }
  section { padding: 3.25rem 0; }
  .trust-bar { margin-top: -1rem; }
  .example { grid-template-columns: 1fr; }
}

@media (max-width: 380px) {
  .hero h1 { font-size: 1.85rem; }
  .btn { width: 100%; }
  .hero-actions { flex-direction: column; }
}
