/* =========================================================
   SmartPark 360 — Design System
   A clean, trustworthy UK parking SaaS identity.
   Typography: Fraunces (display) + Inter (body)
   Palette: deep trust-blue, signal-cyan, cream, slate
   ========================================================= */

:root {
  /* Brand */
  --brand-navy: #0B3D91;
  --brand-navy-deep: #072568;
  --brand-blue: #2B9CFF;
  --brand-blue-soft: #E6F2FF;
  --brand-cyan: #00C6D7;
  --accent-amber: #F5A623;

  /* Neutrals */
  --cream: #FAF8F3;
  --cream-warm: #F4EFE5;
  --ink: #0E1B3A;
  --ink-soft: #2A3656;
  --slate: #5B6682;
  --slate-soft: #8C96AE;
  --line: #E5E8F0;
  --white: #ffffff;

  /* Semantic */
  --ok: #10B981;
  --warn: #F59E0B;
  --err: #EF4444;

  /* Radii */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(14, 27, 58, 0.04), 0 1px 3px rgba(14, 27, 58, 0.06);
  --shadow-md: 0 6px 18px rgba(14, 27, 58, 0.08), 0 2px 4px rgba(14, 27, 58, 0.04);
  --shadow-lg: 0 20px 50px rgba(11, 61, 145, 0.12), 0 4px 12px rgba(14, 27, 58, 0.06);
  --shadow-glow: 0 20px 60px rgba(43, 156, 255, 0.18);

  /* Type */
  --font-display: "Fraunces", "Georgia", "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Motion */
  --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-snap: cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --container: 1200px;
  --container-wide: 1320px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--brand-navy); text-decoration: none; transition: color 0.2s var(--ease-soft); }
a:hover { color: var(--brand-blue); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
h1 { font-size: clamp(2.5rem, 5.5vw, 4.5rem); font-weight: 400; letter-spacing: -0.03em; }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.9rem); }
h4 { font-size: 1.25rem; font-weight: 600; }
p { margin-bottom: 1rem; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-navy);
  padding: 6px 14px;
  background: var(--brand-blue-soft);
  border-radius: 999px;
  margin-bottom: 1.25rem;
}
.eyebrow--invert {
  color: var(--brand-blue);
  background: rgba(43, 156, 255, 0.14);
}

/* Italic flourish used on hero headlines */
.display-italic {
  font-family: var(--font-display);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--brand-navy);
}

/* ---------- Layout ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container-wide {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: clamp(64px, 10vw, 128px) 0;
  position: relative;
}
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section--navy {
  background: linear-gradient(160deg, var(--brand-navy-deep) 0%, var(--brand-navy) 60%, #0a4bb2 100%);
  color: rgba(255,255,255,0.85);
}
.section--navy h1, .section--navy h2, .section--navy h3, .section--navy h4 { color: #fff; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 243, 0.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease-soft), background 0.3s var(--ease-soft);
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  background: rgba(250, 248, 243, 0.94);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 24px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.nav__brand svg { width: 34px; height: 34px; }
.nav__brand strong { font-weight: 600; }
.nav__brand span { color: var(--brand-blue); font-style: italic; font-weight: 500; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav__links a {
  display: inline-block;
  padding: 10px 16px;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--ink-soft);
  border-radius: 10px;
  transition: all 0.2s var(--ease-soft);
}
.nav__links a:hover { background: rgba(11,61,145,0.06); color: var(--brand-navy); }
.nav__links a.is-active { color: var(--brand-navy); background: rgba(11,61,145,0.08); }

.nav__cta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: transparent;
  color: var(--ink);
}
.nav__toggle svg { width: 24px; height: 24px; margin: 0 auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  font-family: var(--font-body);
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: all 0.25s var(--ease-soft);
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary {
  background: var(--brand-navy);
  color: #fff;
  box-shadow: 0 2px 6px rgba(11,61,145,0.25), inset 0 1px 0 rgba(255,255,255,0.12);
}
.btn--primary:hover {
  background: var(--brand-navy-deep);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(11,61,145,0.35), inset 0 1px 0 rgba(255,255,255,0.18);
}
.btn--blue {
  background: var(--brand-blue);
  color: #fff;
  box-shadow: 0 2px 6px rgba(43,156,255,0.3), inset 0 1px 0 rgba(255,255,255,0.2);
}
.btn--blue:hover {
  background: #1b87e8;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(43,156,255,0.4);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover {
  background: var(--white);
  color: var(--brand-navy);
  border-color: var(--brand-navy);
}
.btn--outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.35);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn--sm { padding: 10px 18px; font-size: 0.88rem; }
.btn--lg { padding: 17px 30px; font-size: 1.02rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(56px, 9vw, 120px) 0 clamp(72px, 11vw, 140px);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 420px at 85% 10%, rgba(43,156,255,0.16), transparent 60%),
    radial-gradient(520px 320px at 10% 80%, rgba(0,198,215,0.12), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero__content { max-width: 620px; }
.hero__title { margin-bottom: 1.5rem; }
.hero__lede {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--slate);
  margin-bottom: 2rem;
  max-width: 540px;
  line-height: 1.55;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 2.5rem; }
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  color: var(--slate);
  font-weight: 500;
}
.hero__trust-item strong { color: var(--ink); font-weight: 600; }
.hero__trust-icon {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  background: var(--brand-blue-soft);
  color: var(--brand-navy);
  border-radius: 8px;
}
.hero__trust-icon svg { width: 18px; height: 18px; }

/* ---------- Hero visual (dashboard mock) ---------- */
.hero__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 560px;
  justify-self: end;
  width: 100%;
}
.hero-card {
  position: absolute;
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}
.hero-card--main {
  inset: 0 0 20% 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-card--anpr {
  bottom: 0;
  right: -5%;
  width: 62%;
  padding: 20px;
  transform: rotate(2deg);
}
.hero-card--anpr:hover { transform: rotate(0) translateY(-4px); }
.hero-card, .hero-card--anpr { transition: transform 0.4s var(--ease-soft); }
.hero-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.hero-card__title { font-family: var(--font-body); font-weight: 600; color: var(--ink); font-size: 0.95rem; }
.hero-card__live {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.72rem; font-weight: 600; color: var(--ok);
}
.hero-card__live::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--ok);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.6); }
  50% { box-shadow: 0 0 0 8px rgba(16,185,129,0); }
}
.hero-card__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.hero-card__stat { padding: 12px; background: var(--cream); border-radius: var(--r-sm); }
.hero-card__stat-label { font-size: 0.7rem; color: var(--slate); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.hero-card__stat-value { font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; color: var(--ink); margin-top: 4px; }
.hero-card__stat-value span { color: var(--brand-blue); font-size: 0.85rem; font-style: italic; font-weight: 400; }

.hero-card__chart { flex: 1; display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.hero-chart-row { display: flex; align-items: center; gap: 10px; }
.hero-chart-row__label { font-size: 0.78rem; color: var(--slate); width: 70px; }
.hero-chart-row__bar { flex: 1; height: 8px; background: var(--cream); border-radius: 4px; overflow: hidden; }
.hero-chart-row__fill { height: 100%; background: linear-gradient(90deg, var(--brand-navy), var(--brand-blue)); border-radius: 4px; }
.hero-chart-row__value { font-size: 0.82rem; font-weight: 600; color: var(--ink); width: 50px; text-align: right; }

.anpr-plate {
  background: linear-gradient(180deg, #FFD500, #F5C800);
  border: 2px solid #1a1a1a;
  border-radius: 6px;
  padding: 10px 16px;
  font-family: "Fraunces", serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #0E1B3A;
  text-align: center;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.1);
  margin-bottom: 10px;
}
.anpr-meta { font-size: 0.78rem; color: var(--slate); display: flex; justify-content: space-between; }
.anpr-meta strong { color: var(--ink); font-weight: 600; }

/* ---------- Trust bar ---------- */
.trust-bar {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-bar__label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--slate);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.trust-bar__items { display: flex; flex-wrap: wrap; align-items: center; gap: 32px; opacity: 0.8; }
.trust-bar__item {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 8px;
}
.trust-bar__item svg { width: 22px; height: 22px; color: var(--brand-navy); }

/* ---------- Section heads ---------- */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.section-head--left { text-align: left; margin: 0 0 64px; }
.section-head p { color: var(--slate); font-size: 1.1rem; line-height: 1.55; margin-top: 1rem; }

/* ---------- Feature grid ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.feature-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: transform 0.35s var(--ease-soft), box-shadow 0.35s var(--ease-soft), border-color 0.35s var(--ease-soft);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-navy), var(--brand-blue));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease-soft);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card__icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  background: var(--brand-blue-soft);
  color: var(--brand-navy);
  border-radius: 14px;
  margin-bottom: 20px;
  transition: background 0.3s var(--ease-soft);
}
.feature-card:hover .feature-card__icon { background: var(--brand-navy); color: #fff; }
.feature-card__icon svg { width: 26px; height: 26px; }
.feature-card h3 { font-size: 1.25rem; margin-bottom: 10px; font-family: var(--font-display); font-weight: 500; }
.feature-card p { color: var(--slate); font-size: 0.94rem; margin: 0; }

/* ---------- How it works ---------- */
.how {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  position: relative;
}
.how-step {
  position: relative;
  padding: 32px 28px;
  background: #fff;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
}
.how-step__num {
  position: absolute;
  top: -18px; left: 28px;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--brand-navy);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  font-style: italic;
  border-radius: 50%;
  box-shadow: 0 6px 14px rgba(11,61,145,0.25);
}
.how-step h3 { font-size: 1.2rem; margin: 12px 0 8px; }
.how-step p { color: var(--slate); font-size: 0.94rem; margin: 0; }

/* ---------- Split sections ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }

.split__visual {
  position: relative;
  aspect-ratio: 1 / 1;
  background: linear-gradient(160deg, var(--brand-navy-deep) 0%, var(--brand-navy) 60%, #0a4bb2 100%);
  border-radius: var(--r-xl);
  padding: 40px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.split__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.split__visual::after {
  content: "";
  position: absolute;
  top: -40%; right: -20%;
  width: 80%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(43,156,255,0.4), transparent 60%);
  filter: blur(20px);
}

.bullet-list { list-style: none; padding: 0; margin: 1.5rem 0 2rem; }
.bullet-list li {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.bullet-list li::before {
  content: "";
  flex-shrink: 0;
  width: 22px; height: 22px;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232B9CFF' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.bullet-list li strong { color: var(--ink); font-weight: 600; margin-right: 4px; }

/* ---------- Sector cards ---------- */
.sectors {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.sector-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: all 0.3s var(--ease-soft);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sector-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-blue);
}
.sector-card__icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--cream-warm);
  color: var(--brand-navy);
  margin-bottom: 8px;
}
.sector-card__icon svg { width: 26px; height: 26px; }
.sector-card h4 { font-family: var(--font-display); font-weight: 500; font-size: 1.25rem; color: var(--ink); }
.sector-card p { color: var(--slate); font-size: 0.92rem; margin: 0; }

/* Sector detail (sectors page) */
.sector-detail {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
  padding: 64px 0;
  border-bottom: 1px solid var(--line);
}
.sector-detail:last-child { border-bottom: none; }
.sector-detail__visual {
  position: sticky; top: 100px;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-lg);
  background: var(--cream-warm);
  display: grid;
  place-items: center;
  color: var(--brand-navy);
  overflow: hidden;
}
.sector-detail__visual svg { width: 50%; height: auto; opacity: 0.8; }
.sector-detail h2 { margin-bottom: 1rem; }
.sector-detail__group { margin-bottom: 2rem; }
.sector-detail__group h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--brand-navy);
  margin-bottom: 1rem;
}

/* ---------- Pricing / revenue cards ---------- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.price-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 40px 36px;
  transition: transform 0.3s var(--ease-soft), box-shadow 0.3s var(--ease-soft);
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-card--featured {
  background: linear-gradient(160deg, var(--brand-navy-deep), var(--brand-navy));
  color: rgba(255,255,255,0.85);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}
.price-card--featured h3, .price-card--featured .price-card__headline { color: #fff; }
.price-card--featured .bullet-list li { color: rgba(255,255,255,0.85); }
.price-card--featured .bullet-list li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300C6D7' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}
.price-card__tag {
  display: inline-block;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--accent-amber);
  color: #3a2400;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.price-card__headline {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.1;
  color: var(--ink);
  margin: 0.5rem 0 0.75rem;
  letter-spacing: -0.02em;
}
.price-card__headline em { font-style: italic; color: var(--brand-blue); }
.price-card p { font-size: 0.96rem; }

/* ---------- Team ---------- */
.team {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}
.team-card {
  text-align: center;
  background: #fff;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.3s var(--ease-soft), box-shadow 0.3s var(--ease-soft);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-card__avatar {
  aspect-ratio: 1 / 1;
  background: linear-gradient(160deg, var(--brand-blue-soft), var(--cream-warm));
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 500;
  color: var(--brand-navy);
  font-style: italic;
}
.team-card__body { padding: 22px 20px; }
.team-card__body h4 { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 4px; }
.team-card__body p { font-size: 0.84rem; color: var(--slate); margin: 0; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  padding: clamp(60px, 8vw, 96px) 0;
  background: linear-gradient(135deg, var(--brand-navy-deep), var(--brand-navy) 50%, #0a4bb2);
  overflow: hidden;
  color: rgba(255,255,255,0.88);
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, black, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black, transparent 70%);
}
.cta-band__inner {
  position: relative;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}
.cta-band h2 { color: #fff; margin-bottom: 1rem; }
.cta-band p { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 2rem; }
.cta-band__buttons { display: inline-flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ---------- Forms ---------- */
.form { display: grid; gap: 18px; max-width: 640px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}
.form-field label .req { color: var(--err); }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: #fff;
  color: var(--ink);
  font-size: 0.98rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 4px rgba(43,156,255,0.14);
}
.form-field textarea { min-height: 140px; resize: vertical; }
.form-help { font-size: 0.82rem; color: var(--slate); margin-top: 6px; }
.form-consent { display: flex; gap: 10px; align-items: flex-start; font-size: 0.86rem; color: var(--slate); }
.form-consent input { margin-top: 3px; }

/* ---------- Contact / info blocks ---------- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  text-align: left;
}
.info-card__icon {
  width: 48px; height: 48px;
  background: var(--brand-blue-soft);
  color: var(--brand-navy);
  border-radius: 12px;
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.info-card__icon svg { width: 24px; height: 24px; }
.info-card h4 { font-family: var(--font-display); font-weight: 500; margin-bottom: 6px; }
.info-card p, .info-card a { font-size: 0.95rem; color: var(--ink-soft); }
.info-card a { font-weight: 500; }

/* ---------- Legal pages ---------- */
.legal-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 64px;
  align-items: start;
}
.legal-toc {
  position: sticky; top: 100px;
  font-size: 0.88rem;
}
.legal-toc h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 14px;
}
.legal-toc ul { list-style: none; padding: 0; }
.legal-toc li { margin-bottom: 10px; }
.legal-toc a { color: var(--ink-soft); }
.legal-toc a:hover { color: var(--brand-navy); }

.legal-body { font-size: 1rem; line-height: 1.7; }
.legal-body h2 {
  font-size: 1.75rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.legal-body h2:first-of-type { border: none; padding-top: 0; margin-top: 0; }
.legal-body h3 { font-size: 1.25rem; margin-top: 2rem; margin-bottom: 0.75rem; }
.legal-body p, .legal-body li { color: var(--ink-soft); }
.legal-body ul, .legal-body ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.legal-body li { margin-bottom: 0.5rem; }

/* ---------- Page hero (smaller than home hero) ---------- */
.page-hero {
  padding: clamp(60px, 9vw, 110px) 0 clamp(40px, 6vw, 72px);
  background: linear-gradient(180deg, var(--white), var(--cream));
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: 0; right: -10%;
  width: 50%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(43,156,255,0.1), transparent 60%);
  pointer-events: none;
}
.page-hero__inner {
  position: relative;
  max-width: 780px;
}
.page-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  margin-bottom: 1.25rem;
}
.page-hero p { font-size: 1.15rem; color: var(--slate); max-width: 580px; }

/* ---------- Breadcrumb ---------- */
.crumbs {
  display: flex;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--slate);
  margin-bottom: 1.5rem;
}
.crumbs a { color: var(--slate); }
.crumbs span { color: var(--slate-soft); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 32px;
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.site-footer h5 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.site-footer ul { list-style: none; padding: 0; }
.site-footer li { margin-bottom: 10px; }
.site-footer a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.site-footer a:hover { color: #fff; }
.footer-about { max-width: 340px; }
.footer-about .nav__brand { color: #fff; margin-bottom: 1rem; }
.footer-about p { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.55; }
.footer-contact p { margin-bottom: 6px; }
.footer-contact strong { color: #fff; font-weight: 600; display: block; margin-bottom: 4px; }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom__badges { display: flex; gap: 16px; align-items: center; }
.footer-bottom__badges span {
  padding: 4px 10px;
  background: rgba(255,255,255,0.08);
  border-radius: 6px;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

/* ---------- Utilities & motion ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-soft), transform 0.7s var(--ease-soft);
}
.reveal.in-view {
  opacity: 1;
  transform: none;
}
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-md { margin-top: 24px; }
.mt-lg { margin-top: 48px; }
.mb-md { margin-bottom: 24px; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { max-width: 460px; justify-self: center; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split__visual { aspect-ratio: 16 / 10; }
  .sector-detail { grid-template-columns: 1fr; gap: 32px; }
  .sector-detail__visual { position: relative; top: 0; aspect-ratio: 16 / 9; }
  .legal-layout { grid-template-columns: 1fr; gap: 32px; }
  .legal-toc { position: relative; top: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 720px) {
  .nav__links {
    position: fixed;
    top: 76px; left: 0; right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 16px 24px;
    transform: translateY(-110%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s var(--ease-soft), opacity 0.3s var(--ease-soft), visibility 0.3s;
    max-height: calc(100vh - 76px);
    overflow-y: auto;
  }
  .nav__links.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .nav__links a { padding: 14px 16px; border-radius: 12px; }
  .nav__toggle { display: grid; place-items: center; }
  .nav__cta .btn--ghost { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero__trust { gap: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
