/* Health Loyalty — 2026 Corporate Mockup */

:root {
  --hl-blue: #1e78a3;
  --hl-blue-dark: #0d5a82;
  --hl-blue-deep: #075d87;
  --hl-navy: #0a2f45;
  --hl-teal: #2ec4b6;
  --hl-accent: #4cc9f0;
  --hl-maroon: #8b2942;
  --hl-green: #1a7a5c;
  --hl-indigo: #2d4a7c;

  --text-primary: #0f1c2e;
  --text-secondary: #4a5d73;
  --text-muted: #7a8fa3;
  --surface: #ffffff;
  --surface-elevated: #f4f8fb;
  --surface-dark: #0b1f2e;
  --surface-mist: #edf6fc;
  --surface-ivory: #f8f7f3;
  --surface-slate: #e2ecf4;
  --border: rgba(15, 28, 46, 0.08);
  --glass: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(255, 255, 255, 0.35);

  --font-display: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 4px 20px rgba(10, 47, 69, 0.06);
  --shadow-md: 0 12px 40px rgba(10, 47, 69, 0.1);
  --shadow-lg: 0 24px 64px rgba(10, 47, 69, 0.14);

  --nav-height: 80px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: 0.45s var(--ease-out);
  --logo-filter-dark: brightness(0) saturate(100%) invert(18%) sepia(42%) saturate(1200%) hue-rotate(170deg);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text-primary);
  background: #f6fafc;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--hl-blue-dark);
  text-decoration: none;
  transition: color 0.25s ease;
}

a:hover {
  color: var(--hl-blue);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
  color: var(--text-primary);
}

p {
  margin: 0 0 1rem;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: min(1240px, calc(100% - 3rem));
  margin-inline: auto;
}

.container-wide {
  width: min(1400px, calc(100% - 2rem));
  margin-inline: auto;
}

/* ── Skip link ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1.25rem;
  background: var(--hl-blue);
  color: #fff;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
}

/* ── Header / Nav ── */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--nav-height);
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

.site-header.is-scrolled {
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.site-header.is-scrolled .logo-img {
  filter: var(--logo-filter-dark);
}

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

.logo-img {
  height: 42px;
  width: auto;
  transition: filter var(--transition);
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.6rem 0.85rem;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  color: #fff;
  border-radius: var(--radius-sm);
  transition: background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}

.site-header.is-scrolled .nav-link {
  color: var(--text-primary);
}

.nav-link:hover,
.nav-item:hover > .nav-link {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.site-header.is-scrolled .nav-link:hover,
.site-header.is-scrolled .nav-item:hover > .nav-link {
  background: rgba(30, 120, 163, 0.08);
  color: var(--hl-blue-dark);
}

.nav-link.is-active {
  background: rgba(255, 255, 255, 0.12);
}

.site-header.is-scrolled .nav-link.is-active {
  background: rgba(30, 120, 163, 0.1);
  color: var(--hl-blue-dark);
}

.nav-link svg {
  width: 14px;
  height: 14px;
  opacity: 0.7;
  transition: transform 0.25s ease;
}

.nav-item:hover .nav-link svg {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  translate: -50% 8px;
  min-width: 220px;
  padding: 0.5rem;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid var(--border);
  border-top: 0.5rem solid transparent;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, translate 0.2s var(--ease-out), visibility 0.2s;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  translate: -50% 0;
}

.nav-dropdown a {
  display: block;
  padding: 0.65rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
}

.nav-dropdown a:hover {
  background: var(--surface-elevated);
  color: var(--hl-blue-dark);
}

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

.lang-switch {
  display: flex;
  gap: 0.25rem;
}

.lang-switch a {
  padding: 0.4rem 0.55rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  border-radius: 6px;
  letter-spacing: 0.04em;
}

.site-header.is-scrolled .lang-switch a {
  color: var(--text-muted);
}

.lang-switch a:hover,
.lang-switch a.is-active {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.site-header.is-scrolled .lang-switch a:hover,
.site-header.is-scrolled .lang-switch a.is-active {
  background: rgba(30, 120, 163, 0.1);
  color: var(--hl-blue-dark);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--hl-blue) 0%, var(--hl-blue-dark) 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(30, 120, 163, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 12px 32px rgba(30, 120, 163, 0.45);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.btn-ghost {
  background: var(--surface-elevated);
  color: var(--hl-blue-dark);
}

.btn-ghost:hover {
  background: #e8f2f8;
  color: var(--hl-blue-dark);
}

.nav-cta {
  padding: 0.65rem 1.25rem;
  font-size: 0.8125rem;
  white-space: nowrap;
}

html[lang="fr"] .nav-cta {
  padding-inline: 1.35rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin-inline: auto;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.site-header.is-scrolled .nav-toggle {
  background: var(--surface-elevated);
  border-color: var(--border);
}

.site-header.is-scrolled .nav-toggle span {
  background: var(--text-primary);
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(7, 40, 62, 0.92) 0%, rgba(13, 90, 130, 0.78) 45%, rgba(30, 120, 163, 0.55) 100%),
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(78, 201, 240, 0.18) 0%, transparent 60%);
}

/* Platform hero tints — match homepage platform card accents */
.page-hero--psp .hero-overlay {
  background:
    linear-gradient(135deg, rgba(42, 10, 20, 0.92) 0%, rgba(109, 32, 52, 0.82) 45%, rgba(139, 41, 66, 0.58) 100%),
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(200, 80, 110, 0.22) 0%, transparent 60%);
}

.page-hero--plp .hero-overlay {
  background:
    linear-gradient(135deg, rgba(8, 36, 28, 0.92) 0%, rgba(20, 96, 72, 0.82) 45%, rgba(26, 122, 92, 0.58) 100%),
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(78, 201, 150, 0.22) 0%, transparent 60%);
}

.page-hero--pss .hero-overlay {
  background:
    linear-gradient(135deg, rgba(15, 25, 45, 0.92) 0%, rgba(36, 58, 98, 0.82) 45%, rgba(45, 74, 124, 0.58) 100%),
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(100, 150, 220, 0.22) 0%, transparent 60%);
}

.page-hero--psp .hero-orb--1 { background: rgba(180, 60, 90, 0.28); }
.page-hero--psp .hero-orb--2 { background: rgba(139, 41, 66, 0.25); }

.page-hero--plp .hero-orb--1 { background: rgba(46, 180, 140, 0.28); }
.page-hero--plp .hero-orb--2 { background: rgba(26, 122, 92, 0.25); }

.page-hero--pss .hero-orb--1 { background: rgba(90, 130, 200, 0.28); }
.page-hero--pss .hero-orb--2 { background: rgba(45, 74, 124, 0.25); }

.page-hero--psp .stat::before {
  background: linear-gradient(90deg, var(--hl-maroon), #c44d6a);
}

.page-hero--plp .stat::before {
  background: linear-gradient(90deg, var(--hl-green), #3cb88a);
}

.page-hero--pss .stat::before {
  background: linear-gradient(90deg, var(--hl-indigo), #5a7ec4);
}

.page-hero--psp .stat:hover { border-color: rgba(196, 77, 106, 0.35); }
.page-hero--plp .stat:hover { border-color: rgba(60, 184, 138, 0.35); }
.page-hero--pss .stat:hover { border-color: rgba(90, 126, 196, 0.35); }

.page-hero--company .hero-overlay {
  background:
    linear-gradient(165deg, rgba(8, 28, 48, 0.92) 0%, rgba(12, 52, 78, 0.88) 45%, rgba(18, 72, 98, 0.85) 100%);
}

.page-hero--company .hero-orb--1 { background: rgba(60, 160, 210, 0.28); }
.page-hero--company .hero-orb--2 { background: rgba(30, 120, 163, 0.25); }

.page-hero--compact {
  min-height: auto;
  padding: clamp(6rem, 14vh, 8.5rem) 0 clamp(3rem, 8vh, 4.5rem);
}

.page-hero--compact .hero-content {
  padding-bottom: 0;
}

.hero-mesh {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 20%, transparent 75%);
  animation: meshDrift 30s linear infinite;
}

@keyframes meshDrift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(64px, 64px); }
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: orbFloat 12s ease-in-out infinite;
}

.hero-orb--1 {
  width: 420px;
  height: 420px;
  top: 10%;
  right: -5%;
  background: rgba(46, 196, 182, 0.25);
}

.hero-orb--2 {
  width: 320px;
  height: 320px;
  bottom: 15%;
  left: -5%;
  background: rgba(76, 201, 240, 0.2);
  animation-delay: -4s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, 20px) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: calc(var(--nav-height) + 4rem) 0 4.5rem;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.hero-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--hl-teal);
  box-shadow: 0 0 12px var(--hl-teal);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero h1 {
  max-width: 14ch;
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.25rem;
}

.hero-lead {
  max-width: 52ch;
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 2.5rem;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding-top: 2.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.stat {
  position: relative;
  padding: 1.35rem 1.25rem 1.25rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-md);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(20px);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.stat:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(78, 201, 240, 0.25);
}

.stat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
  width: 2.5rem;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, var(--hl-teal), var(--hl-accent));
  opacity: 0.85;
}

.stat.is-visible {
  animation: fadeUp 0.7s var(--ease-out) forwards;
}

.stat:nth-child(2) { animation-delay: 0.1s; }
.stat:nth-child(3) { animation-delay: 0.2s; }
.stat:nth-child(4) { animation-delay: 0.3s; }

.stat-value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.15);
}

.stat-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
  max-width: 18ch;
  margin-inline: auto;
}

.stat-value--text {
  letter-spacing: -0.02em;
}

.stat-value--crossfade {
  display: block;
  text-align: center;
}

.stat-crossfade-stage {
  position: relative;
  display: inline-block;
  min-width: 5.4em;
  height: 1.1em;
}

.stat-crossfade-stage .stat-count-num,
.stat-crossfade-stage .stat-count-word {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  margin: 0;
  white-space: nowrap;
  line-height: 1;
}

.stat-crossfade-stage .stat-count-word {
  opacity: 0;
  visibility: hidden;
}

/* ── Section utilities ── */
.section {
  position: relative;
  padding: clamp(4rem, 8vw, 7rem) 0;
  overflow: hidden;
}

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

/* Soft brand-tinted section backgrounds */
.section--mist {
  background:
    linear-gradient(165deg, #f4fafd 0%, #e6f2f9 42%, #f0f8fc 100%);
}

.section--mist::before {
  content: "";
  position: absolute;
  width: 55vw;
  height: 55vw;
  max-width: 640px;
  max-height: 640px;
  top: -20%;
  right: -12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(78, 201, 240, 0.14) 0%, transparent 68%);
  pointer-events: none;
}

.section--ivory {
  background:
    linear-gradient(180deg, #fcfbfa 0%, #f5f4ef 55%, #faf9f6 100%);
}

.section--ivory::after {
  content: "";
  position: absolute;
  width: 45vw;
  height: 45vw;
  max-width: 520px;
  max-height: 520px;
  bottom: -25%;
  left: -10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 120, 163, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.section--slate {
  background:
    linear-gradient(155deg, #d8e6f0 0%, #e8f1f8 48%, #dfeaf3 100%);
}

.section--slate::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 85% 20%, rgba(30, 120, 163, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse 40% 35% at 10% 80%, rgba(46, 196, 182, 0.08) 0%, transparent 55%);
  pointer-events: none;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.section-label {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hl-blue);
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin: 0;
}

/* ── Platform cards ── */
.platforms {
  position: relative;
}

.platforms::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(30, 120, 163, 0.12), transparent);
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.platform-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.platform-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.platform-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--card-accent, var(--hl-blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}

.platform-card:hover::before {
  transform: scaleX(1);
}

.platform-card--psp { --card-accent: var(--hl-maroon); }
.platform-card--plp { --card-accent: var(--hl-green); }
.platform-card--pss { --card-accent: var(--hl-indigo); }

.platform-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.platform-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.platform-card:hover .platform-media img {
  transform: scale(1.06);
}

.platform-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 31, 46, 0.5) 0%, transparent 50%);
}

.platform-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  z-index: 1;
  padding: 0.35rem 0.75rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  border-radius: 999px;
}

.platform-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.75rem;
}

.platform-body h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.platform-body p {
  flex: 1;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.platform-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.platform-links a {
  padding: 0.45rem 0.85rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--surface-elevated);
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.platform-links a:hover {
  background: var(--card-accent);
  color: #fff;
}

.platform-links a.platform-cta {
  background: var(--card-accent);
  color: #fff;
}

.platform-links a.platform-cta:hover {
  filter: brightness(1.1);
  color: #fff;
}

/* ── Features band ── */
.features {
  background:
    linear-gradient(155deg, #081f2e 0%, #0c3045 38%, #0f3f5a 72%, #0a2838 100%);
  color: #fff;
  overflow: hidden;
}

.features::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 15% 40%, rgba(30, 120, 163, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse 50% 45% at 90% 75%, rgba(46, 196, 182, 0.12) 0%, transparent 50%);
  pointer-events: none;
}

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

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.features-content h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: #fff;
  margin-bottom: 1rem;
}

.features-content > p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.0625rem;
  margin-bottom: 2rem;
}

.feature-list {
  display: grid;
  gap: 1.25rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(78, 201, 240, 0.3);
}

.feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--hl-blue), var(--hl-teal));
  border-radius: 12px;
  color: #fff;
}

.feature-icon svg {
  width: 22px;
  height: 22px;
}

.feature-item h4 {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.25rem;
}

.feature-item p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

.features-visual {
  position: relative;
}

.oasis-card {
  position: relative;
  padding: 2rem;
  background: linear-gradient(145deg, rgba(30, 120, 163, 0.2) 0%, rgba(10, 31, 46, 0.8) 100%);
  border: 1px solid rgba(78, 201, 240, 0.2);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(12px);
}

.oasis-card h3 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.oasis-card .oasis-tag {
  display: inline-block;
  margin-bottom: 1.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--hl-accent);
}

.oasis-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.oasis-metric {
  padding: 1rem;
  background: rgba(0, 0, 0, 0.25);
  border-radius: var(--radius-sm);
}

.oasis-metric strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--hl-accent);
  margin-bottom: 0.25rem;
}

.oasis-metric span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.oasis-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--hl-blue);
  filter: blur(100px);
  opacity: 0.3;
  top: -50px;
  right: -50px;
  pointer-events: none;
}

/* ── Company / Trust ── */
.company {
  position: relative;
}

.company-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.company-history {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.company-history__media {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.company-history__media img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.timeline-milestones {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.timeline-milestone {
  position: relative;
  display: grid;
  grid-template-columns: 1.25rem 1fr;
  gap: 0 1.25rem;
  padding-bottom: 2rem;
}

.timeline-milestone:last-child {
  padding-bottom: 0;
}

.timeline-milestone::before {
  content: "";
  position: absolute;
  left: 0.4rem;
  top: 1.25rem;
  bottom: -0.25rem;
  width: 2px;
  background: linear-gradient(180deg, var(--hl-blue) 0%, rgba(30, 120, 163, 0.15) 100%);
}

.timeline-milestone:last-child::before {
  display: none;
}

.timeline-milestone__marker {
  width: 0.875rem;
  height: 0.875rem;
  margin-top: 0.35rem;
  border-radius: 50%;
  background: var(--hl-blue);
  box-shadow: 0 0 0 4px rgba(30, 120, 163, 0.15);
  justify-self: center;
  z-index: 1;
}

.timeline-milestone__year {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--hl-blue);
  margin-bottom: 0.35rem;
}

.timeline-milestone__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--text-primary);
}

.timeline-milestone__body p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

.timeline-milestone--current .timeline-milestone__marker {
  background: var(--hl-accent);
  box-shadow: 0 0 0 4px rgba(232, 119, 34, 0.2);
  width: 1rem;
  height: 1rem;
}

.timeline-milestone--current .timeline-milestone__year {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hl-accent);
}

.timeline-milestone--current .timeline-milestone__body p {
  font-weight: 500;
  color: var(--text-primary);
}

.company-advantage__inner {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(0, 2fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  padding: clamp(2rem, 4vw, 3rem);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.company-advantage__header h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-top: 0.35rem;
}

.company-advantage__content p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.company-text h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 1.25rem;
}

.company-text p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.timeline {
  margin-top: 2rem;
  padding-left: 1.5rem;
  border-left: 2px solid var(--border);
}

.timeline-item {
  position: relative;
  padding-bottom: 1.75rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: calc(-1.5rem - 5px);
  top: 0.35rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--hl-blue);
  box-shadow: 0 0 0 4px rgba(30, 120, 163, 0.15);
}

.timeline-year {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--hl-blue);
  margin-bottom: 0.35rem;
}

.timeline-item p {
  font-size: 0.9375rem;
  margin: 0;
}

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

.compliance-card {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-md);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.compliance-card:hover {
  border-color: rgba(30, 120, 163, 0.25);
  box-shadow: var(--shadow-sm);
}

.compliance-card h4,
.compliance-card h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  margin-bottom: 0.75rem;
}

.compliance-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.compliance-grid--wide {
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.compliance-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.compliance-card ul li {
  margin-bottom: 0.35rem;
}

.compliance-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

/* ── Leadership team ── */
.leadership-layout {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.leadership-executives {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.leader-spotlight {
  display: grid;
  grid-template-columns: minmax(260px, 340px) 1fr;
  gap: 0;
  align-items: stretch;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.leader-spotlight--reverse {
  grid-template-columns: 1fr minmax(260px, 340px);
}

.leader-spotlight--reverse .leader-spotlight__media {
  order: 2;
}

.leader-spotlight--reverse .leader-spotlight__content {
  order: 1;
}

.leader-spotlight__media {
  position: relative;
  background: linear-gradient(160deg, #e8f2f8 0%, #d4e6f0 100%);
}

.leader-spotlight__media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.leader-spotlight__content {
  padding: clamp(1.75rem, 4vw, 2.75rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.leader-tier {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hl-blue);
  margin-bottom: 0.75rem;
}

.leader-spotlight .leader-name {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.35rem;
  line-height: 1.2;
}

.leader-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--hl-blue);
  margin-bottom: 1.25rem;
}

.leader-bio p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 0.85rem;
}

.leader-bio p:last-child {
  margin-bottom: 0;
}

.leader-credential {
  margin-top: 1.25rem !important;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.875rem !important;
  font-style: italic;
  color: var(--text-muted) !important;
}

.leadership-roster-header {
  text-align: center;
  max-width: 36rem;
  margin-inline: auto;
}

.leadership-roster-header h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.5rem;
}

.leadership-roster-header p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  margin: 0;
}

.leadership-roster {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.leadership-roster--3 {
  grid-template-columns: repeat(3, 1fr);
}

/* ── Join Us ── */
.join-us-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.join-us-intro__media {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.join-us-intro__media img {
  display: block;
  width: 100%;
  height: auto;
}

.join-us-intro__content p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0 0 1rem;
}

.join-us-intro__content p:last-child {
  margin-bottom: 0;
}

.join-us-culture__inner {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(0, 2fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  padding: clamp(2rem, 4vw, 3rem);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.join-us-culture__header h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-top: 0.35rem;
}

.join-us-culture__content p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.join-us-benefits__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 1.5rem;
}

.join-us-benefits__list li {
  position: relative;
  padding: 1rem 1rem 1rem 2.5rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--text-secondary);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.join-us-benefits__list li::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 1.35rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--hl-teal);
  box-shadow: 0 0 0 3px rgba(45, 156, 156, 0.15);
}

.join-us-cta__inner {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

.join-us-cta__inner p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0 0 1.5rem;
}

/* ── Program Journey (per-panel SVG animation) ── */
.journey-infographic {
  margin: 0 auto;
  max-width: 56rem;
  min-height: 20rem;
}

.journey-infographic__error {
  margin: 0;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--text-muted);
  text-align: center;
}

.journey-canvas {
  position: relative;
  width: 100%;
  aspect-ratio: 885 / 1155;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  background: #fff;
}

.journey-panel {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.journey-panel svg {
  display: block;
  width: 100%;
  height: 100%;
  font-family: Roboto, "DM Sans", sans-serif;
}

.journey-panel #panel-border {
  opacity: 0;
  visibility: hidden;
}

.journey-panel #panel-content-motion {
  visibility: hidden;
}

.journey-panel #panel-content {
  opacity: 0;
}

.journey-panel #panel-border.is-border.is-visible {
  visibility: visible;
  animation: journey-border-fade 0.85s ease both;
}

.journey-panel #panel-content-motion.is-content.is-visible {
  visibility: visible;
  transform-box: fill-box;
  transform-origin: 50% 0%;
  animation: journey-content-slide 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}

.journey-panel #panel-content-motion.is-content.is-visible #panel-content {
  animation: journey-content-fade 0.7s ease 0.3s both;
}

@keyframes journey-border-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes journey-content-slide {
  from { transform: translateY(-10px); }
  to { transform: translateY(0); }
}

@keyframes journey-content-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ── Journey step breakdown cards ── */
.journey-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.journey-step-card--full {
  grid-column: 1 / -1;
}

.journey-step-card {
  --step-color: var(--hl-blue);
  position: relative;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 0.85rem;
  background: #fff;
  border: 1px solid var(--border);
  border-top: 4px solid var(--step-color);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.journey-step-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.journey-step-card__num {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--step-color);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1;
}

.journey-step-card h3 {
  flex: 1 1 0;
  min-width: 0;
  font-size: 1.2rem;
  line-height: 1.25;
  margin: 0;
  color: var(--step-color);
}

.journey-step-card p {
  flex-basis: 100%;
}

.journey-step-card p {
  font-size: 0.975rem;
  color: var(--text-secondary);
  margin: 0;
}

.journey-step-tags {
  flex-basis: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.15rem 0 0.35rem;
  padding: 0;
  list-style: none;
}

.journey-step-tags li {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--step-color);
  background: color-mix(in srgb, var(--step-color) 10%, #fff);
  border: 1px solid color-mix(in srgb, var(--step-color) 22%, #fff);
  border-radius: 999px;
  padding: 0.28rem 0.7rem;
}

.leader-profile {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.leader-profile:hover {
  border-color: rgba(30, 120, 163, 0.25);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.leader-profile__photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: linear-gradient(160deg, #e8f2f8 0%, #d4e6f0 100%);
}

.leader-profile__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.leader-profile__body {
  padding: 1.5rem 1.5rem 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.leader-profile .leader-name {
  font-size: 1.125rem;
  margin-bottom: 0.2rem;
}

.leader-profile .leader-title {
  margin-bottom: 1rem;
  font-size: 0.8125rem;
}

.leader-profile .leader-bio {
  flex: 1;
}

.leader-profile .leader-bio p {
  font-size: 0.875rem;
  line-height: 1.6;
}

.leader-profile .leader-credential {
  margin-top: auto !important;
  padding-top: 1rem;
  font-size: 0.8125rem !important;
}

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

.compliance-card h4 svg {
  width: 18px;
  height: 18px;
  color: var(--hl-blue);
}

.compliance-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.compliance-card li {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  padding-left: 1rem;
  position: relative;
}

.compliance-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--hl-teal);
}

/* ── Offices ── */
.offices {
  position: relative;
}

.office-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.office-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-lg);
  transition: transform var(--transition), box-shadow var(--transition);
}

.office-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.office-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.office-card address {
  font-style: normal;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.office-card a {
  font-weight: 600;
  font-size: 0.9375rem;
}

/* ── CTA ── */
.cta {
  position: relative;
  overflow: hidden;
}

.cta-inner {
  position: relative;
  padding: clamp(3rem, 6vw, 5rem);
  text-align: center;
  background: linear-gradient(135deg, var(--hl-blue-dark) 0%, var(--hl-blue) 50%, var(--hl-teal) 100%);
  border-radius: var(--radius-xl);
  color: #fff;
  overflow: hidden;
}

.cta-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(255,255,255,0.12) 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 40%);
}

.cta-inner h2 {
  position: relative;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: #fff;
  margin-bottom: 1rem;
}

.cta-inner p {
  position: relative;
  max-width: 50ch;
  margin: 0 auto 2rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.0625rem;
}

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

.cta-actions .btn-outline {
  border-color: rgba(255, 255, 255, 0.5);
}

.cta-actions .btn-ghost {
  background: #fff;
  color: var(--hl-blue-dark);
}

/* ── Footer ── */
.site-footer {
  background: var(--surface-dark);
  color: rgba(255, 255, 255, 0.75);
  padding-top: 2.25rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.85fr;
  gap: 2rem 2.5rem;
  padding-bottom: 1.5rem;
  align-items: start;
}

.footer-brand img {
  height: 30px;
  margin-bottom: 0.65rem;
}

.footer-cities {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.65rem;
}

.footer-brand p {
  font-size: 0.8125rem;
  margin-bottom: 0.3rem;
  line-height: 1.5;
}

.footer-contact {
  color: rgba(255, 255, 255, 0.6);
}

.footer-brand a {
  color: rgba(255, 255, 255, 0.85);
}

.footer-brand a:hover {
  color: #fff;
}

.footer-social {
  margin-top: 0.65rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: #fff;
  transition: background 0.25s ease;
}

.footer-social a:hover {
  background: var(--hl-blue);
  color: #fff;
}

.footer-social svg {
  width: 15px;
  height: 15px;
}

.footer-col {
  text-align: left;
}

.footer-col h4 {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.65rem;
}

.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-menu > li > a {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  padding: 0.2rem 0;
  transition: color 0.2s ease;
}

.footer-menu > li > a:hover {
  color: #fff;
}

.footer-platform-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  padding: 0.2rem 0;
}

.footer-platform-row > a:first-child {
  flex: none;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s ease;
}

.footer-platform-row > a:first-child:hover {
  color: #fff;
}

.footer-row-bar {
  flex-shrink: 0;
  width: 1px;
  height: 0.85em;
  background: rgba(255, 255, 255, 0.2);
}

.footer-pricing {
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s ease;
}

.footer-pricing:hover {
  color: #fff;
}

.footer-menu--flat {
  gap: 0;
}

.footer-menu--flat a {
  font-size: 0.8125rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.62);
  padding: 0.12rem 0;
}

.footer-menu--flat a:hover {
  color: #fff;
}

.footer-bottom {
  padding: 0.85rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

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

.footer-legal a {
  color: rgba(255, 255, 255, 0.4);
}

.footer-legal a:hover {
  color: #fff;
}

/* ── Inner page hero (add .page-hero alongside .hero for full-screen) ── */
.page-hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  max-width: 20ch;
  margin-bottom: 1.25rem;
}

.page-hero .hero-lead {
  max-width: 62ch;
  font-size: clamp(1rem, 2vw, 1.125rem);
  margin-bottom: 2rem;
}

.page-subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.page-subnav a {
  padding: 0.45rem 0.9rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  transition: background 0.25s ease, color 0.25s ease;
}

.page-subnav a:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.page-subnav a.is-active {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.footer-legal a.is-active {
  color: #fff;
}

/* ── Legal / policy pages ── */
.legal-page {
  padding-top: clamp(3rem, 6vw, 5rem);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(200px, 240px) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: calc(var(--nav-height) + 1.25rem);
  padding: 1.35rem 1.25rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.legal-toc__label {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hl-blue);
}

.legal-toc ol {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: legal-toc;
}

.legal-toc li {
  counter-increment: legal-toc;
}

.legal-toc li + li {
  margin-top: 0.15rem;
}

.legal-toc a {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.4rem 0.35rem;
  border-radius: 8px;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--text-secondary);
}

.legal-toc a::before {
  content: counter(legal-toc, decimal-leading-zero);
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--hl-blue);
  margin-top: 0.1em;
}

.legal-toc a:hover {
  background: var(--surface-mist);
  color: var(--hl-blue-dark);
}

.legal-doc {
  padding: clamp(1.75rem, 4vw, 3rem);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.legal-updated {
  margin: 0 0 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.legal-doc > p,
.legal-doc p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

.legal-doc p strong {
  color: var(--text-primary);
  font-weight: 600;
}

.legal-doc ul {
  margin: 0 0 1.25rem;
  padding-left: 1.25rem;
  list-style: disc;
  color: var(--text-secondary);
}

.legal-doc li + li {
  margin-top: 0.4rem;
}

.legal-doc h3 {
  margin: 1.5rem 0 0.75rem;
  font-size: 1.0625rem;
  color: var(--hl-navy);
  scroll-margin-top: calc(var(--nav-height) + 1.5rem);
}

.legal-contact {
  margin: 1.5rem 0 0;
  padding: 1rem 1.25rem;
  background: var(--surface-mist);
  border: 1px solid rgba(30, 120, 163, 0.12);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
}

.legal-contact a {
  font-weight: 600;
}

.legal-doc h2 {
  margin: 2.25rem 0 1rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
  font-size: clamp(1.25rem, 2.4vw, 1.5rem);
  color: var(--hl-navy);
  scroll-margin-top: calc(var(--nav-height) + 1.5rem);
}

.legal-doc > h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-doc h2:first-of-type:not(:first-child) {
  margin-top: 2.25rem;
}

.legal-doc h2 + p {
  margin-top: 0;
}

.page-intro {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.page-intro p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin: 0;
}

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

.benefit-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-lg);
  transition: box-shadow var(--transition), transform var(--transition);
}

.benefit-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.benefit-card h3 {
  font-size: 1.125rem;
  color: var(--benefit-accent, var(--hl-maroon));
  margin-bottom: 0.75rem;
}

.benefits--plp .benefit-card { --benefit-accent: var(--hl-green); }
.benefits--pss .benefit-card { --benefit-accent: var(--hl-indigo); }

.benefit-card p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin: 0;
}

.benefit-card p + p {
  margin-top: 0.75rem;
}

.benefit-media {
  margin: -0.25rem -0.25rem 1rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.benefit-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.benefit-list {
  margin: 0.75rem 0 0;
  padding-left: 1.15rem;
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

.benefit-list li + li {
  margin-top: 0.45rem;
}

.page-intro-media {
  margin: 0 0 1.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.page-intro-media img {
  width: 100%;
  height: auto;
  display: block;
}

.security-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 0.75rem;
}

.security-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(6px);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.security-list li::before {
  content: "";
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  margin-top: 0.5em;
  border-radius: 50%;
  background: var(--hl-teal);
}

/* ── Cookie banner ── */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  translate: -50% 0;
  z-index: 2000;
  width: min(560px, calc(100% - 2rem));
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--surface-dark);
  color: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  transform: translateY(120%);
  transition: transform 0.5s var(--ease-out);
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-banner p {
  font-size: 0.875rem;
  margin: 0;
}

.cookie-banner button {
  flex-shrink: 0;
  padding: 0.6rem 1.25rem;
  font-size: 0.8125rem;
}

/* ── Mobile nav ── */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(10, 31, 46, 0.97);
  backdrop-filter: blur(20px);
  padding: calc(var(--nav-height) + 2rem) 1.5rem 2rem;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s;
}

.mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-group {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-group summary {
  padding: 1rem 0;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  list-style: none;
}

.mobile-nav-group summary::-webkit-details-marker {
  display: none;
}

.mobile-nav-group summary::after {
  content: "+";
  float: right;
  font-weight: 400;
  opacity: 0.5;
}

.mobile-nav-group[open] summary::after {
  content: "−";
}

.mobile-nav-group a {
  display: block;
  padding: 0.65rem 0 0.65rem 1rem;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
}

.mobile-nav-group a:hover {
  color: #fff;
}

/* ── Pricing page ── */
.pricing-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto auto auto auto;
  gap: 1.5rem;
  align-items: stretch;
}

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

.pricing-page--pss .tier-card--featured {
  border-color: var(--hl-indigo);
}

.pricing-page--pss .tier-badge {
  background: linear-gradient(135deg, var(--hl-indigo), #5a7ec4);
}

.pricing-page--pss .compare-table thead th.is-featured {
  background: var(--hl-indigo);
}

.pricing-page--pss .tier-card .btn-outline {
  color: var(--hl-indigo);
  border-color: var(--hl-indigo);
}

.pricing-page--pss .tier-card .btn-outline:hover {
  background: var(--hl-indigo);
  color: #fff;
}

.compare-table--4 {
  min-width: 900px;
}

.compare-table--4 thead th:not(:first-child),
.compare-table--4 tbody td:not(:first-child) {
  width: 14%;
}

.tier-card {
  position: relative;
  display: grid;
  grid-row: span 5;
  grid-template-rows: subgrid;
  row-gap: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.85rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.tier-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.tier-card--featured {
  border: 2px solid var(--hl-blue);
  box-shadow: var(--shadow-lg);
}

.tier-badge {
  position: absolute;
  top: -0.85rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--hl-blue);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  white-space: nowrap;
}

.tier-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
  color: var(--text-primary);
}

.tier-desc {
  font-size: 0.94rem;
  color: var(--text-secondary);
  margin: 0.65rem 0 1.4rem;
}

.tier-price {
  margin-bottom: 1.4rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--border);
}

.tier-price strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.1;
}

.tier-price span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.tier-specs {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: grid;
  gap: 0.7rem;
}

.tier-specs li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.tier-specs li strong {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.tier-card .btn {
  margin-top: auto;
  width: 100%;
}

.tier-card .btn-outline {
  background: transparent;
  color: var(--hl-blue-dark);
  border: 1.5px solid var(--hl-blue);
}

.tier-card .btn-outline:hover {
  background: var(--hl-blue);
  color: #fff;
}

/* Included-in-every-edition checklist */
.pricing-included {
  background: var(--surface-mist);
  border-radius: var(--radius-lg);
  padding: 2.75rem;
}

.pricing-included h3 {
  margin: 0 0 1.75rem;
  font-size: 1.4rem;
  text-align: center;
}

.pricing-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem 2.25rem;
}

.pricing-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.94rem;
  color: var(--text-secondary);
}

.pricing-checklist svg {
  flex: 0 0 auto;
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.18rem;
  color: var(--hl-green);
}

/* Comparison table */
.pricing-compare {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #fff;
}

.compare-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

.compare-table th,
.compare-table td {
  padding: 0.9rem 1.35rem;
  text-align: left;
  border-top: 1px solid var(--border);
}

.compare-table thead th {
  border-top: none;
  background: var(--surface-dark);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.95rem;
  vertical-align: bottom;
}

.compare-table thead th small {
  display: block;
  font-weight: 400;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.2rem;
}

.compare-table thead th.is-featured {
  background: var(--hl-blue);
}

.compare-table thead th:not(:first-child),
.compare-table tbody td:not(:first-child) {
  text-align: center;
  width: 18%;
}

.compare-cat td {
  background: var(--surface-ivory);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--hl-blue);
}

.compare-table tbody tr:not(.compare-cat):hover td {
  background: var(--surface-mist);
}

.compare-feature {
  font-weight: 600;
  color: var(--text-primary);
}

.compare-feature small {
  display: block;
  font-weight: 400;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.cell-num {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-primary);
}

.ci-yes {
  display: inline-block;
  width: 1.35rem;
  height: 1.35rem;
  color: var(--hl-green);
}

.ci-no {
  color: var(--text-muted);
  font-weight: 700;
}

.pill-addon,
.pill-por,
.pill-incl {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
}

.pill-addon {
  background: rgba(30, 120, 163, 0.12);
  color: var(--hl-blue-dark);
}

.pill-por {
  background: rgba(139, 41, 66, 0.12);
  color: var(--hl-maroon);
}

.pill-incl {
  background: rgba(26, 122, 92, 0.12);
  color: var(--hl-green);
}

.pricing-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.pricing-legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.pricing-legend svg {
  width: 1.1rem;
  height: 1.1rem;
  color: var(--hl-green);
}

.pricing-notes {
  margin-top: 1.5rem;
  padding: 0;
  list-style: none;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.pricing-notes li {
  margin-bottom: 0.35rem;
}

/* ── Book a Demo (Microsoft Bookings embed) ── */
.booking-embed {
  padding-block: 2.5rem 4rem;
}

.booking-embed__frame-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  min-height: 640px;
}

.booking-embed__frame {
  display: block;
  width: 100%;
  min-height: 640px;
  height: 900px;
  border: none;
  background: #fff;
}

.booking-embed__fallback {
  margin: 1rem 0 0;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.booking-embed__fallback a {
  color: var(--hl-blue-dark);
  font-weight: 600;
}

/* ── Contact Us page ── */
.contact-form-panel {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, #081824 0%, #0d3d5c 52%, #0a2a3f 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2.5rem 2.5rem;
  box-shadow:
    0 24px 48px rgba(8, 24, 36, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.contact-form-panel::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -15%;
  width: 50%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(78, 201, 240, 0.18) 0%, transparent 68%);
  pointer-events: none;
}

.contact-form-panel > * {
  position: relative;
  z-index: 1;
}

.section-label--light {
  color: rgba(140, 210, 240, 0.95);
}

.contact-form-panel .contact-header h2 {
  color: #fff;
}

.contact-form-panel .contact-intro {
  color: rgba(255, 255, 255, 0.82);
}

.contact-header h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.65rem, 2.5vw, 2rem);
}

.contact-intro {
  max-width: none;
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.65;
}

.contact-header {
  margin-bottom: 1.75rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.85fr);
  gap: 2rem;
  align-items: start;
}

.contact-alert {
  padding: 1rem 1.15rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.contact-alert--success {
  background: rgba(46, 125, 50, 0.16);
  color: #b8e6bb;
  border: 1px solid rgba(129, 199, 132, 0.45);
}

.contact-alert--error {
  background: rgba(128, 0, 15, 0.2);
  color: #ffc8d0;
  border: 1px solid rgba(229, 115, 115, 0.45);
}

.contact-alert--error a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.35rem 1.5rem;
  margin-bottom: 1.35rem;
}

.contact-form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 0.45rem;
}

.contact-form .required-mark {
  color: #ff9eb0;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  width: 100%;
  border: 1.5px solid #b8cdd9;
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--text-primary);
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"] {
  padding: 0.8rem 0.95rem;
  font-size: 0.95rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #6b7f8c;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--hl-blue);
  box-shadow: 0 0 0 3px rgba(78, 201, 240, 0.35);
}

.contact-form textarea {
  min-height: 11rem;
  padding: 0.95rem 1rem;
  font-size: 0.95rem;
  resize: vertical;
  line-height: 1.55;
}

.contact-form__message {
  margin-bottom: 0.25rem;
}

.contact-form__hint {
  margin: 0 0 0.6rem;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.5;
}

.contact-form__counter {
  text-align: right;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.62);
  margin: 0.45rem 0 1.5rem;
}

.contact-form__counter.is-near-limit {
  color: #ffb4c0;
  font-weight: 600;
}

.contact-form .btn[type="submit"] {
  min-width: 10rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.contact-form.is-submitting .btn[type="submit"] {
  opacity: 0.7;
  pointer-events: none;
}

/* Shared elevated card styling */
.contact-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  margin-bottom: 0.85rem;
  background: linear-gradient(135deg, var(--hl-blue) 0%, var(--hl-blue-dark) 100%);
  color: #fff;
  box-shadow: 0 6px 16px rgba(30, 120, 163, 0.28);
}

.contact-card__icon svg {
  width: 1.2rem;
  height: 1.2rem;
}

.contact-card__icon--blue {
  background: linear-gradient(135deg, #2a9fd4 0%, #0d5a82 100%);
}

.contact-card__icon--teal {
  background: linear-gradient(135deg, #2ec4b6 0%, #1a7a6f 100%);
}

.contact-card__icon--indigo {
  background: linear-gradient(135deg, #6b8fd4 0%, #3d5294 100%);
}

.contact-card__icon--warm {
  background: linear-gradient(135deg, #e8a04a 0%, #c45c2a 100%);
}

.contact-card__icon--maroon {
  background: linear-gradient(135deg, #b83a5e 0%, #7a1f3a 100%);
}

.contact-aside {
  display: grid;
  gap: 1.25rem;
  position: sticky;
  top: 6.5rem;
}

.contact-aside__media {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(30, 120, 163, 0.15);
  box-shadow:
    0 16px 36px rgba(11, 31, 46, 0.14),
    0 0 0 1px rgba(255, 255, 255, 0.6) inset;
  background: #fff;
}

.contact-aside__media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.contact-aside__media figcaption {
  padding: 0.95rem 1.15rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
  background: linear-gradient(180deg, #f8fcff 0%, #edf6fc 100%);
  border-top: 1px solid var(--border);
}

.contact-aside__card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #f8fcff 100%);
  border: 1px solid rgba(30, 120, 163, 0.14);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.55rem 1.4rem;
  box-shadow: 0 12px 28px rgba(11, 31, 46, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-aside__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--hl-blue) 0%, var(--hl-teal) 100%);
}

.contact-aside__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(11, 31, 46, 0.12);
}

.contact-aside__card--sales::before {
  background: linear-gradient(90deg, var(--hl-blue) 0%, #4ec9f0 100%);
}

.contact-aside__card--service::before {
  background: linear-gradient(90deg, var(--hl-green) 0%, #2ec4b6 100%);
}

.contact-aside__card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.08rem;
  color: var(--hl-blue-dark);
}

.contact-aside__card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.contact-aside__detail {
  margin-top: 0.9rem !important;
  font-weight: 600;
  line-height: 1.7 !important;
}

.contact-aside__detail a {
  color: var(--hl-blue-dark);
}

.contact-highlights-band {
  margin-top: 3rem;
  padding: 2.25rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(237, 246, 252, 0.95) 100%);
  border: 1px solid rgba(30, 120, 163, 0.14);
  box-shadow: 0 16px 40px rgba(11, 31, 46, 0.07);
}

.contact-highlights-band__header {
  text-align: center;
  margin-bottom: 1.75rem;
}

.contact-highlights-band__title {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  color: var(--hl-blue-dark);
}

.contact-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-highlight {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.35rem 1.25rem;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid rgba(30, 120, 163, 0.12);
  box-shadow: 0 8px 20px rgba(11, 31, 46, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-highlight:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(11, 31, 46, 0.1);
}

.contact-highlight .contact-card__icon {
  flex: 0 0 auto;
  margin-bottom: 0;
}

.contact-highlight strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.98rem;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}

.contact-highlight p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.5;
  font-weight: 400;
}

.contact-offices-header {
  margin: 3.5rem 0 1.5rem;
  text-align: center;
}

.contact-offices-header h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2.2vw, 1.85rem);
}

.contact-offices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.contact-office {
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, #fff 0%, #f6fbff 100%);
  border: 1px solid rgba(30, 120, 163, 0.14);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.65rem;
  box-shadow: 0 12px 28px rgba(11, 31, 46, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-office::after {
  content: "";
  position: absolute;
  right: -2rem;
  bottom: -2rem;
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(78, 201, 240, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.contact-office:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(11, 31, 46, 0.11);
}

.contact-office--miami {
  border-top: 4px solid #e8a04a;
}

.contact-office--toronto {
  border-top: 4px solid var(--hl-blue);
}

.contact-office--montreal {
  border-top: 4px solid var(--hl-maroon);
}

.contact-office h3 {
  margin: 0 0 0.85rem;
  font-size: 1.1rem;
  color: var(--hl-blue-dark);
}

.contact-office p {
  margin: 0;
  font-size: 0.94rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.contact-office a {
  color: var(--hl-blue-dark);
  font-weight: 600;
}

/* Legacy selectors kept for compatibility */
.contact-channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.contact-channel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}

.contact-channel h3 {
  margin: 0 0 0.85rem;
  font-size: 1.15rem;
}

.contact-channel p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-channel a {
  color: var(--hl-blue-dark);
  font-weight: 600;
}

.contact-channel--media {
  padding: 0;
  overflow: hidden;
}

.contact-channel--media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 12rem;
  object-fit: cover;
}

/* ══════════════════════════════════════════
   OASIS Analytics page
   ══════════════════════════════════════════ */

/* Hero tint */
.page-hero--oasis .hero-overlay {
  background:
    linear-gradient(135deg, rgba(3, 22, 34, 0.94) 0%, rgba(7, 58, 84, 0.82) 45%, rgba(20, 118, 150, 0.55) 100%),
    radial-gradient(ellipse 80% 60% at 72% 38%, rgba(78, 201, 240, 0.28) 0%, transparent 60%);
}

.page-hero--oasis .hero-orb--1 { background: rgba(46, 196, 182, 0.32); }
.page-hero--oasis .hero-orb--2 { background: rgba(76, 201, 240, 0.28); }

.oasis-hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  width: 100%;
}

/* Deep dark section wrapper for showcase */
.section--deep {
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 120% 90% at 50% -10%, #0e3450 0%, #071825 55%, #050f18 100%);
  color: #fff;
}

.section--deep .section-header h2 { color: #fff; }
.section--deep .section-header p { color: rgba(255, 255, 255, 0.72); }
.section--deep .section-label { color: var(--hl-accent); }

.section--deep::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(78, 201, 240, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(78, 201, 240, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 30%, #000 10%, transparent 70%);
  pointer-events: none;
}

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

/* Live badge */
.oa-live {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4ade80;
}

.oa-live::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #4ade80;
  animation: oaPulse 1.8s infinite;
}

@keyframes oaPulse {
  0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.55); }
  70% { box-shadow: 0 0 0 9px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

/* ── Dashboard (bento) ── */
.oa-dash {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1.25rem;
  background: linear-gradient(160deg, rgba(13, 40, 60, 0.92) 0%, rgba(6, 22, 34, 0.96) 100%);
  border: 1px solid rgba(78, 201, 240, 0.22);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg), 0 0 80px rgba(30, 120, 163, 0.15);
}

.oa-dash--hero {
  padding: 1rem;
  gap: 0.75rem;
  grid-template-columns: repeat(2, 1fr);
}

.oa-dash__bar {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.5rem;
}

.oa-dash__title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  font-size: 0.95rem;
}

.oa-dash__title span {
  color: var(--hl-accent);
}

.oa-dash__range {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 0.3rem 0.8rem;
}

/* Demo controls */
.oa-controls {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.oa-seg {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 2px;
}

.oa-seg button {
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

.oa-seg button:hover { color: #fff; }

.oa-seg button.is-active {
  background: linear-gradient(135deg, var(--hl-blue), var(--hl-teal));
  color: #fff;
}

.oa-select {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
}

.oa-select option { color: #0f1c2e; }

.oa-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(74, 222, 128, 0.12);
  border: 1px solid rgba(74, 222, 128, 0.32);
  color: #4ade80;
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.oa-toggle .oa-live-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #4ade80;
  animation: oaPulse 1.8s infinite;
}

.oa-toggle.is-paused {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.6);
}

.oa-toggle.is-paused .oa-live-dot {
  background: rgba(255, 255, 255, 0.5);
  animation: none;
}

.oa-sample-note {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin: -1.25rem 0 1.75rem;
}

.oa-sample-note b { color: var(--hl-accent); font-weight: 700; }

/* Smooth updates */
[data-arc],
[data-gauge] {
  transition: stroke-dasharray 0.8s var(--ease-out), stroke-dashoffset 0.8s var(--ease-out);
}

[data-metric] {
  transition: color 0.3s ease;
}

[data-metric].is-updating { color: var(--hl-accent); }

.oa-panel {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1.05rem 1.1rem;
  min-width: 0;
}

.oa-panel--span2 { grid-column: span 2; }
.oa-panel--span3 { grid-column: span 3; }
.oa-panel--span4 { grid-column: span 4; }

.oa-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.oa-panel__title {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.62);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* KPI tile */
.oa-kpi__label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.oa-kpi__value {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  margin: 0.35rem 0 0.5rem;
  letter-spacing: -0.02em;
}

.oa-kpi__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.oa-kpi__trend {
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-display);
}

.oa-kpi__trend--up { color: #4ade80; }
.oa-kpi__trend--down { color: #fb7185; }

.oa-spark { width: 62px; height: 24px; overflow: visible; }

/* Charts */
.oa-chart { width: 100%; height: auto; display: block; }

.oa-legend {
  list-style: none;
  margin: 0.9rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.oa-legend li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

.oa-legend b {
  margin-left: auto;
  color: #fff;
  font-family: var(--font-display);
}

.oa-dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 3px;
  flex: 0 0 auto;
}

.oa-donut-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.oa-donut {
  position: relative;
  flex: 0 0 auto;
  width: 128px;
  height: 128px;
}

.oa-donut__center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.oa-donut__center strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: #fff;
  line-height: 1;
}

.oa-donut__center span {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Gauge */
.oa-gauge {
  position: relative;
  text-align: center;
}

.oa-gauge__value {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  margin-top: -0.4rem;
}

.oa-gauge__value small {
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  display: block;
  letter-spacing: 0.04em;
}

/* Bars */
.oa-bars {
  display: flex;
  align-items: flex-end;
  gap: 0.6rem;
  height: 130px;
}

.oa-bars__col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  height: 100%;
  justify-content: flex-end;
}

.oa-bars__bar {
  width: 100%;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(180deg, var(--hl-accent) 0%, var(--hl-blue) 100%);
  min-height: 4px;
  transition: height 0.9s var(--ease-out);
}

.oa-bars__label {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Heat map */
.oa-heat {
  display: grid;
  grid-template-columns: repeat(var(--cols, 14), 1fr);
  gap: 4px;
}

.oa-heat i {
  aspect-ratio: 1 / 1;
  border-radius: 3px;
  background: var(--hl-accent);
  display: block;
}

.oa-heat__scale {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.8rem;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
}

.oa-heat__bar {
  flex: 1;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(78, 201, 240, 0.12), var(--hl-accent), var(--hl-teal));
}

/* ── Capability feature cards ── */
.oasis-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.oasis-feature {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.oasis-feature:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.oasis-feature__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, rgba(46, 196, 182, 0.16), rgba(30, 120, 163, 0.16));
  color: var(--hl-blue);
}

.oasis-feature__icon svg {
  width: 1.6rem;
  height: 1.6rem;
}

.oasis-feature h3 {
  font-size: 1.2rem;
  margin: 0 0 0.6rem;
}

.oasis-feature p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* ── Heat map spotlight ── */
.oa-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.oa-spotlight-panel {
  background: linear-gradient(160deg, rgba(13, 40, 60, 0.92), rgba(6, 22, 34, 0.96));
  border: 1px solid rgba(78, 201, 240, 0.22);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
}

.oa-feature-list {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.oa-feature-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.oa-feature-list svg {
  flex: 0 0 auto;
  width: 1.4rem;
  height: 1.4rem;
  color: var(--hl-teal);
  margin-top: 0.15rem;
}

.oa-feature-list strong {
  display: block;
  font-family: var(--font-display);
  color: var(--text-primary);
}

.oa-feature-list span {
  font-size: 0.92rem;
  color: var(--text-secondary);
}

/* ── Report suite ── */
.oa-report-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.oa-report {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.35rem;
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.oa-report:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(30, 120, 163, 0.25);
}

.oa-report__tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--hl-blue);
  background: rgba(30, 120, 163, 0.1);
  border-radius: 999px;
  padding: 0.25rem 0.7rem;
  margin-bottom: 0.9rem;
}

.oa-report h3 {
  font-size: 1.05rem;
  margin: 0 0 0.45rem;
}

.oa-report p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin: 0;
}

/* ── Lifecycle ── */
.oa-lifecycle {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-sm);
}

.oa-lifecycle__stages {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.oa-stage {
  text-align: center;
  padding: 1rem 0.75rem;
  border-top: 3px solid var(--hl-blue);
  background: var(--surface-mist);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.oa-stage strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.oa-stage span {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.oa-stage:nth-child(1) { border-color: var(--hl-teal); }
.oa-stage:nth-child(2) { border-color: var(--hl-accent); }
.oa-stage:nth-child(3) { border-color: var(--hl-blue); }
.oa-stage:nth-child(4) { border-color: var(--hl-indigo); }

/* ── Dark stats band ── */
.oa-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.oa-stat {
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.oa-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #fff 0%, var(--hl-accent) 120%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.oa-stat span {
  display: block;
  margin-top: 0.6rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ── Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .nav-desktop {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .platform-grid,
  .office-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-inline: auto;
  }

  .features-grid,
  .company-grid,
  .company-history,
  .company-advantage__inner,
  .join-us-intro,
  .join-us-culture__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .company-history__media,
  .join-us-intro__media {
    max-width: 520px;
    margin-inline: auto;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-toc {
    position: static;
  }

  .legal-toc ol {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
  }

  .legal-toc li + li {
    margin-top: 0;
  }

  .legal-toc a {
    padding: 0.4rem 0.7rem;
    background: var(--surface-mist);
    border: 1px solid var(--border);
    border-radius: 999px;
  }

  .legal-toc a::before {
    content: none;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .join-us-benefits__list {
    grid-template-columns: 1fr;
  }

  .leadership-roster,
  .leadership-roster--3 {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }

  .journey-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-tiers {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    max-width: 480px;
    margin-inline: auto;
  }

  .pricing-tiers--4 {
    grid-template-columns: repeat(2, 1fr);
    max-width: none;
  }

  .tier-card {
    display: flex;
    flex-direction: column;
    grid-row: auto;
    grid-template-rows: none;
  }

  .pricing-checklist {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-included {
    padding: 2rem;
  }

  .oasis-hero-grid,
  .oa-split {
    grid-template-columns: 1fr;
  }

  .oasis-feature-grid,
  .oa-report-grid,
  .oa-stats,
  .oa-lifecycle__stages {
    grid-template-columns: repeat(2, 1fr);
  }

  .oa-dash {
    grid-template-columns: repeat(2, 1fr);
  }

  .oa-panel--span3,
  .oa-panel--span4 {
    grid-column: span 2;
  }

  .compliance-grid--wide {
    grid-template-columns: 1fr;
  }

  .leader-spotlight,
  .leader-spotlight--reverse {
    grid-template-columns: 1fr;
  }

  .leader-spotlight--reverse .leader-spotlight__media,
  .leader-spotlight--reverse .leader-spotlight__content {
    order: unset;
  }

  .leader-spotlight__media img {
    min-height: 280px;
    max-height: 360px;
  }

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

  .contact-channels,
  .contact-offices,
  .contact-highlights {
    grid-template-columns: 1fr 1fr;
  }

  .contact-highlights-band {
    padding: 1.75rem;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-aside {
    position: static;
    grid-template-columns: 1fr 1fr;
  }

  .contact-aside__media {
    grid-column: span 2;
  }

  .contact-channel--media {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .container {
    width: calc(100% - 1.5rem);
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .compliance-grid,
  .oasis-metrics {
    grid-template-columns: 1fr;
  }

  .journey-steps {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }

  .pricing-checklist {
    grid-template-columns: 1fr;
  }

  .pricing-tiers--4 {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }

  .pricing-included {
    padding: 1.5rem;
  }

  .contact-form .form-row,
  .contact-channels,
  .contact-offices,
  .contact-highlights,
  .contact-aside {
    grid-template-columns: 1fr;
  }

  .contact-form-panel,
  .contact-highlights-band {
    padding: 1.35rem;
  }

  .contact-aside__media {
    grid-column: auto;
  }

  .oasis-feature-grid,
  .oa-report-grid,
  .oa-lifecycle__stages {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .cookie-banner {
    flex-direction: column;
    text-align: center;
  }
}

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

  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
