/* Onvisia.ai — Concept Art Clone Theme
   Visual fidelity to the six theme concepts (Aug 2026).
   Light corporate theme: white + navy + electric blue + wave dividers. */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Montserrat:wght@600;700&display=swap');

:root {
  --ov-white: #ffffff;
  --ov-navy: #001833;
  --ov-navy-deep: #000f24;
  --ov-blue: #0066ff;
  --ov-blue-bright: #007bff;
  --ov-blue-mid: #155ca8;
  --ov-blue-light: #1a9be8;
  --ov-blue-pale: #e8f4fc;
  --ov-blue-soft: #cfe8ff;
  --ov-text: #1a2b3c;
  --ov-text-muted: #5a6b7d;
  --ov-border: #d8e3ef;
  --ov-shadow: 0 8px 32px rgba(0, 24, 51, 0.08);
  --ov-radius: 12px;
  --ov-radius-lg: 20px;
  --ov-radius-pill: 999px;
  --ov-max: 1200px;
  --ov-nav-h: 136px;
  --ov-header-wave-h: 136px;
  --ov-font: 'Inter', system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--ov-font);
  color: var(--ov-text);
  background: var(--ov-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--ov-blue); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Header / Nav ── */
.ov-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--ov-white);
  background-image: url('../assets/upper-wave.png');
  background-repeat: no-repeat;
  background-position: top center;
  /* Stretch wave to cover full header band so logo + nav sit ON the wave */
  background-size: 100% var(--ov-header-wave-h);
  min-height: var(--ov-header-wave-h);
  border-bottom: none;
  box-shadow: none;
}

.ov-header__inner {
  max-width: var(--ov-max);
  margin: 0 auto;
  padding: 1.65rem 1.5rem 0.85rem;
  min-height: var(--ov-header-wave-h);
  display: flex;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

/* Nav + CTA align with logo wordmark (mockup: links sit mid-band over blue wave) */
.ov-nav,
.ov-btn-contact {
  align-self: center;
  margin-top: 0.35rem;
}

.ov-logo {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  text-decoration: none;
  color: inherit;
  align-items: flex-start;
  gap: 0;
}
.ov-logo:hover { text-decoration: none; }

/* Corporate lockup — Onvisia.ai wordmark + star + orbital swoosh (PNG) */
.ov-logo__img {
  display: block;
  height: 109px;
  width: auto;
  max-width: min(468px, 55vw);
  object-fit: contain;
  object-position: left center;
}

.ov-logo--footer .ov-logo__img {
  height: 78px;
  max-width: 351px;
}

.ov-logo__tagline {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--ov-text-muted);
  margin: -0.45rem 0 0;
  padding-left: 0.35rem;
  letter-spacing: 0.02em;
  line-height: 1.15;
  white-space: nowrap;
}

.ov-logo--footer .ov-logo__tagline {
  font-size: 0.75rem;
  margin-top: -0.35rem;
}

@media (max-width: 640px) {
  .ov-logo__img { height: 86px; }
  .ov-logo__tagline { font-size: 0.6875rem; white-space: normal; max-width: 220px; margin-top: -0.35rem; }
}

.ov-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex: 1;
  justify-content: center;
  flex-wrap: wrap;
}

.ov-nav a {
  color: var(--ov-navy);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.65rem;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
}

.ov-nav a:hover { background: var(--ov-blue-pale); text-decoration: none; }

.ov-nav a.is-active {
  color: var(--ov-blue);
  box-shadow: inset 0 -2px 0 var(--ov-blue);
  border-radius: 0;
}

.ov-nav__caret::after {
  content: '▾';
  font-size: 0.65em;
  margin-left: 0.15rem;
  opacity: 0.6;
}

.ov-btn-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ov-blue);
  color: var(--ov-white) !important;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.6rem 1.25rem;
  border-radius: var(--ov-radius-pill);
  border: none;
  cursor: pointer;
  text-decoration: none !important;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.15s;
}
.ov-btn-contact:hover {
  background: #0052cc;
  text-decoration: none !important;
  transform: translateY(-1px);
}

.ov-header__menu {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 1rem;
  min-width: 0;
}

.ov-nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 0;
  border: 1px solid var(--ov-border);
  border-radius: 8px;
  background: var(--ov-white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ov-nav-toggle:hover { background: var(--ov-blue-pale); }
.ov-nav-toggle__bars {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ov-navy);
  position: relative;
}
.ov-nav-toggle__bars::before,
.ov-nav-toggle__bars::after {
  content: '';
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--ov-navy);
}
.ov-nav-toggle__bars::before { top: -6px; }
.ov-nav-toggle__bars::after { top: 6px; }
.ov-header.is-nav-open .ov-nav-toggle__bars { background: transparent; }
.ov-header.is-nav-open .ov-nav-toggle__bars::before {
  top: 0;
  transform: rotate(45deg);
}
.ov-header.is-nav-open .ov-nav-toggle__bars::after {
  top: 0;
  transform: rotate(-45deg);
}

@media (max-width: 900px) {
  .ov-nav-toggle {
    display: inline-flex;
    margin-top: 0.2rem;
  }
  .ov-header__inner {
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
  }
  .ov-header__menu {
    display: none;
    flex-direction: column;
    align-items: stretch;
    flex-basis: 100%;
    width: 100%;
    gap: 0;
    padding: 0.25rem 0 0.85rem;
    border-top: 1px solid var(--ov-border);
  }
  .ov-header.is-nav-open .ov-header__menu {
    display: flex;
  }
  .ov-nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    margin-top: 0;
  }
  .ov-nav a {
    padding: 0.8rem 0.15rem;
    border-radius: 0;
    border-bottom: 1px solid var(--ov-border);
  }
  .ov-nav a.is-active {
    box-shadow: none;
    font-weight: 700;
  }
  .ov-btn-contact {
    margin-top: 0.85rem;
    width: 100%;
  }
}

/* ── Buttons ── */
.ov-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--ov-radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none !important;
  transition: all 0.2s;
}
.ov-btn--primary {
  background: var(--ov-blue);
  color: var(--ov-white);
  border-color: var(--ov-blue);
}
.ov-btn--primary:hover { background: #0052cc; }
.ov-btn--outline {
  background: transparent;
  color: var(--ov-blue);
  border-color: var(--ov-blue);
}
.ov-btn--outline:hover { background: var(--ov-blue-pale); }
.ov-btn--outline-white {
  background: transparent;
  color: var(--ov-white);
  border-color: rgba(255,255,255,0.8);
}
.ov-btn--outline-white:hover { background: rgba(255,255,255,0.12); }
.ov-btn--white {
  background: var(--ov-white);
  color: var(--ov-blue);
  border-color: var(--ov-white);
}
.ov-btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }

/* ── Wave dividers ── */
.ov-wave-top {
  position: relative;
  margin-top: -1px;
}
.ov-wave-top::before {
  content: '';
  display: block;
  height: 48px;
  background: linear-gradient(180deg, var(--ov-blue-pale) 0%, transparent 100%);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.ov-wave-section {
  position: relative;
  overflow: hidden;
}
.ov-wave-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--ov-white);
  clip-path: ellipse(70% 100% at 50% 100%);
  pointer-events: none;
}

.ov-wave-navy {
  background: linear-gradient(135deg, var(--ov-navy-deep) 0%, var(--ov-navy) 50%, #003366 100%);
  color: var(--ov-white);
  position: relative;
  overflow: hidden;
}
.ov-wave-navy::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(0, 102, 255, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(26, 155, 232, 0.15) 0%, transparent 40%);
  pointer-events: none;
}
.ov-wave-navy__curve {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--ov-white);
  clip-path: ellipse(75% 100% at 50% 100%);
}

.ov-wave-navy-to-white {
  position: relative;
  padding-bottom: 4rem;
}
.ov-wave-navy-to-white::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 72px;
  background: var(--ov-white);
  clip-path: path('M0,72 C360,0 840,0 1200,72 L1200,72 L0,72 Z');
}

/* Dot matrix pattern (concept art right-side texture) */
.ov-dots {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 35%;
  opacity: 0.35;
  background-image: radial-gradient(circle, rgba(255,255,255,0.4) 1px, transparent 1px);
  background-size: 12px 12px;
  mask-image: linear-gradient(90deg, transparent, black 40%);
  pointer-events: none;
}

/* ── Layout ── */
.ov-container {
  max-width: var(--ov-max);
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.ov-section { padding: 4rem 0; }
.ov-section--sm { padding: 2.5rem 0; }

.ov-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ov-blue-light);
  margin-bottom: 0.75rem;
}
.ov-eyebrow--white { color: rgba(255,255,255,0.85); }

.ov-h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}
.ov-h1 .accent { color: var(--ov-blue); }
.ov-h1--white { color: var(--ov-white); }
.ov-h1--white .accent { color: var(--ov-blue-light); }

.ov-lead {
  font-size: 1.05rem;
  color: var(--ov-text-muted);
  max-width: 36rem;
  margin: 0 0 1rem;
}
.ov-lead--white { color: rgba(255,255,255,0.88); }

.ov-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 900px) {
  .ov-grid-2 { grid-template-columns: 1fr; }
}

/* ── Homepage hero ── */
.ov-hero-home {
  background: #0A2E73;
  color: #fff;
}
.ov-hero-home__visual {
  position: relative;
  overflow: hidden;
  line-height: 0;
}
.ov-hero-home__art {
  display: block;
  width: 100%;
  height: auto;
}
.ov-hero-home__copy {
  position: absolute;
  top: 10%;
  left: 0;
  z-index: 2;
  width: min(46%, 38rem);
  max-height: 62%;
  padding: 0 1.5rem 0 2.25rem;
  box-sizing: border-box;
  line-height: 1.35;
}
.ov-hero-home__title {
  margin: 0 0 0.7rem;
  font-family: 'Montserrat', var(--ov-font);
  font-weight: 600;
  font-size: clamp(1.15rem, 2.6vw, 2.15rem);
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: #fff;
}
.ov-hero-home__body {
  margin: 0;
  font-size: clamp(0.8rem, 1.05vw, 0.95rem);
  font-weight: 400;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.94);
  max-width: 34rem;
}
.ov-hero-home__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  padding: 1.1rem 2.25rem 1.35rem;
  background: #0A2E73;
}
.ov-hero-home__actions .ov-btn {
  padding: 0.65rem 1.2rem;
  font-size: 0.85rem;
  white-space: nowrap;
}
.ov-hero-home__actions .ov-btn--outline-white {
  border-color: #00C7FF;
  color: #fff;
}

@media (max-width: 900px) {
  .ov-hero-home__copy {
    position: relative;
    top: auto;
    width: 100%;
    max-width: none;
    padding: 1.5rem 1.5rem 0.25rem;
    background: #0A2E73;
    line-height: 1.2;
  }
  .ov-hero-home__actions {
    padding: 1rem 1.5rem 1.5rem;
  }
}

.ov-ring-graphic {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  display: block;
}

/* ── Feature columns ── */
.ov-features-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
@media (max-width: 900px) { .ov-features-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .ov-features-4 { grid-template-columns: 1fr; } }

.ov-feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border: 2px solid var(--ov-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ov-blue);
}
.ov-feature-icon svg { width: 28px; height: 28px; }

.ov-feature h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--ov-navy);
}
.ov-feature p {
  font-size: 0.82rem;
  color: var(--ov-text-muted);
  margin: 0;
  line-height: 1.5;
}

/* ── Split promo (navy left / cards right) ── */
.ov-split-promo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 320px;
}
@media (max-width: 768px) { .ov-split-promo { grid-template-columns: 1fr; } }

.ov-split-promo__navy {
  background: linear-gradient(135deg, var(--ov-navy) 0%, #003d7a 100%);
  color: var(--ov-white);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.ov-split-promo__navy h2 {
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 1rem;
}
.ov-split-promo__navy p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin: 0 0 1.5rem;
}

.ov-split-promo__cards {
  background: var(--ov-white);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

.ov-card {
  background: var(--ov-white);
  border: 1px solid var(--ov-border);
  border-radius: var(--ov-radius);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--ov-shadow);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.ov-card__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  color: var(--ov-blue);
}
.ov-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 0.35rem;
  color: var(--ov-navy);
}
.ov-card p {
  font-size: 0.82rem;
  color: var(--ov-text-muted);
  margin: 0 0 0.5rem;
}
.ov-card__link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ov-blue);
}

/* ── Photo hero (Mission / Products) ── */
.ov-hero-photo {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: var(--ov-white);
  overflow: hidden;
}
.ov-hero-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 15, 36, 0.85) 0%, rgba(0, 15, 36, 0.45) 55%, rgba(0, 15, 36, 0.25) 100%);
}
.ov-hero-photo .ov-container {
  padding-top: 3rem;
  padding-bottom: 5rem;
}
.ov-hero-photo__wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: var(--ov-white);
  clip-path: ellipse(70% 100% at 50% 100%);
}

.ov-star-badge {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 1.5rem;
  max-width: 28rem;
}
.ov-star-badge__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: rgba(0, 102, 255, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.3);
}

/* ── Three pillars ── */
.ov-pillars-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  text-align: center;
  border-top: 1px solid var(--ov-border);
}
@media (max-width: 768px) { .ov-pillars-3 { grid-template-columns: 1fr; } }

.ov-pillar {
  padding: 2.5rem 1.5rem;
  border-right: 1px solid var(--ov-border);
}
.ov-pillar:last-child { border-right: none; }
.ov-pillar__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  color: var(--ov-blue);
}
.ov-pillar h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ov-blue);
  margin: 0 0 0.75rem;
}
.ov-pillar p {
  font-size: 0.82rem;
  color: var(--ov-text-muted);
  margin: 0;
  text-align: left;
}

/* ── Quote banner ── */
.ov-quote-bar {
  background: var(--ov-blue-pale);
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
}
.ov-quote-bar__marks {
  font-size: 3rem;
  line-height: 0;
  color: var(--ov-blue);
  font-weight: 800;
  vertical-align: middle;
}
.ov-quote-bar blockquote {
  margin: 0;
  font-size: clamp(0.85rem, 2vw, 1.05rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ov-navy);
  max-width: 52rem;
  margin-inline: auto;
}

/* ── CTA bar ── */
.ov-cta-bar {
  background: linear-gradient(135deg, var(--ov-navy) 0%, #002d5c 100%);
  color: var(--ov-white);
  padding: 2.5rem 0;
  position: relative;
  overflow: hidden;
}
.ov-cta-bar__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.ov-cta-bar__star {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  background: radial-gradient(circle, rgba(26, 155, 232, 0.5) 0%, transparent 70%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ov-cta-bar__text { flex: 1; min-width: 200px; }
.ov-cta-bar__text h2 {
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0 0 0.35rem;
}
.ov-cta-bar__text p {
  margin: 0;
  font-size: 0.88rem;
  opacity: 0.88;
}
.ov-cta-bar__contact {
  text-align: right;
  font-size: 0.85rem;
}
.ov-cta-bar__contact a { color: var(--ov-white); }

/* ── Footer ── */
.ov-footer {
  background: var(--ov-white);
  border-top: 1px solid var(--ov-border);
  padding: 2rem 0;
}
.ov-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.ov-footer__links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.ov-footer__links a {
  font-size: 0.82rem;
  color: var(--ov-text-muted);
  text-decoration: none;
}
.ov-footer__links a:hover { color: var(--ov-blue); }
.ov-footer__copy {
  font-size: 0.78rem;
  color: var(--ov-text-muted);
}
.ov-social {
  display: flex;
  gap: 0.75rem;
}
.ov-social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--ov-blue-pale);
  color: var(--ov-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  text-decoration: none;
}
.ov-social a:hover { background: var(--ov-blue); color: white; }

/* ── How It Works specifics ── */
.ov-process-5 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}
.ov-process-step {
  flex: 1;
  min-width: 120px;
  text-align: center;
}
.ov-process-step__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 0.75rem;
  background: linear-gradient(145deg, rgba(0,102,255,0.15), rgba(26,155,232,0.25));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 102, 255, 0.2);
  color: var(--ov-blue-light);
}
.ov-process-step__label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ov-white);
  line-height: 1.3;
}
.ov-process-arrow {
  color: rgba(255,255,255,0.5);
  font-size: 1.25rem;
  align-self: center;
  padding-top: 1.5rem;
}

.ov-capabilities-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 900px) { .ov-capabilities-3 { grid-template-columns: 1fr; } }

.ov-cap-card {
  border: 1px solid var(--ov-border);
  border-radius: var(--ov-radius);
  padding: 1.5rem;
  background: var(--ov-white);
}
.ov-cap-card__num {
  width: 40px;
  height: 40px;
  background: var(--ov-blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.ov-cap-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--ov-navy);
}
.ov-cap-card ul {
  margin: 0.75rem 0 0;
  padding-left: 1.1rem;
  font-size: 0.82rem;
  color: var(--ov-text-muted);
}

.ov-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
@media (max-width: 900px) { .ov-info-grid { grid-template-columns: 1fr; } }

.ov-info-block h4 {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ov-blue);
  margin: 0 0 1rem;
}
.ov-actors {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.ov-actor {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ov-navy);
}
.ov-actor__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.35rem;
  border: 2px solid var(--ov-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ov-blue);
}

.ov-flow-mini {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ov-navy);
}
.ov-flow-mini__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 90px;
}
.ov-flow-mini__num {
  width: 28px;
  height: 28px;
  background: var(--ov-blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

/* ── About / Who We Are ── */
.ov-orbit-diagram {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
}

.ov-beliefs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) { .ov-beliefs-grid { grid-template-columns: 1fr; } }

.ov-belief {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.ov-belief__num {
  width: 36px;
  height: 36px;
  background: var(--ov-blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.ov-belief h4 {
  font-size: 0.88rem;
  font-weight: 700;
  margin: 0 0 0.35rem;
  color: var(--ov-navy);
}
.ov-belief p {
  font-size: 0.8rem;
  color: var(--ov-text-muted);
  margin: 0;
}

.ov-governance-flow {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: wrap;
  justify-content: center;
  margin: 2rem 0;
}
.ov-gov-step {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--ov-navy);
  max-width: 80px;
}
.ov-gov-step__icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 0.35rem;
  border: 2px solid var(--ov-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ov-blue);
  font-size: 1rem;
}
.ov-gov-arrow { color: var(--ov-blue); font-size: 1.1rem; }

.ov-quote-box {
  background: rgba(0, 24, 51, 0.06);
  border-left: 4px solid var(--ov-blue);
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ov-navy);
}

.ov-north-star-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.ov-ns-card {
  border: 1px solid var(--ov-border);
  border-radius: var(--ov-radius);
  padding: 1.25rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.ov-ns-card__icon {
  width: 40px;
  height: 40px;
  color: var(--ov-blue);
  flex-shrink: 0;
}

/* ── Products page extras ── */
.ov-why-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  text-align: center;
}
.ov-why-item {
  flex: 1;
  min-width: 140px;
}
.ov-why-item__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 0.5rem;
  border: 2px solid var(--ov-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ov-blue);
}
.ov-why-item span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ov-navy);
  display: block;
}

.ov-harvest-flow {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.ov-harvest-step {
  flex: 1;
  min-width: 100px;
  text-align: center;
}
.ov-harvest-step__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 0.5rem;
  background: var(--ov-blue-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ov-blue);
}
.ov-harvest-step strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--ov-blue);
  margin-bottom: 0.25rem;
}
.ov-harvest-step span {
  font-size: 0.72rem;
  color: var(--ov-text-muted);
}

/* ── Discernment page ── */
.ov-discernment-hero {
  padding: 3rem 0 5rem;
  position: relative;
}
.ov-discernment-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 1000px) {
  .ov-discernment-layout { grid-template-columns: 1fr; }
}

.ov-wheel {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

.ov-side-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.ov-side-card {
  border: 1px solid var(--ov-border);
  border-radius: var(--ov-radius);
  overflow: hidden;
  background: white;
}
.ov-side-card__head {
  padding: 0.5rem 1rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: white;
}
.ov-side-card__head--blue { background: var(--ov-blue); }
.ov-side-card__head--orange { background: #e67e22; }
.ov-side-card__body {
  padding: 1rem;
  font-size: 0.78rem;
}
.ov-side-card__body ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.ov-side-card__body li {
  padding: 0.25rem 0;
  padding-left: 1.25rem;
  position: relative;
}
.ov-side-card__body li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--ov-blue);
  font-weight: 700;
}

.ov-epistemic-box {
  border: 2px solid var(--ov-blue);
  border-radius: var(--ov-radius);
  padding: 1.25rem;
  margin: 2rem 0;
}
.ov-epistemic-box h4 {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--ov-blue);
  margin: 0 0 0.75rem;
}

.ov-governance-bar {
  background: var(--ov-blue-pale);
  border-radius: var(--ov-radius);
  padding: 1.25rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}
@media (max-width: 768px) { .ov-governance-bar { grid-template-columns: 1fr; } }

.ov-workflow-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin: 1.5rem 0;
}
.ov-workflow-step {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--ov-navy);
  max-width: 100px;
}

/* ── Hub page ── */
.ov-hub {
  padding: 3rem 1.5rem;
  max-width: 720px;
  margin: 0 auto;
}
.ov-hub h1 { margin-bottom: 0.5rem; }
.ov-hub ul { line-height: 2; }

/* ── Photo-hero pages (Mission / Products) ── */
.ov-page-mission .ov-header,
.ov-page-products .ov-header,
.ov-page-hiw .ov-header,
.ov-page-platform .ov-header,
.ov-page-home .ov-header,
.ov-page-about .ov-header,
.ov-page-investors .ov-header,
.ov-page-why-now .ov-header,
.ov-page-org-intel .ov-header,
.ov-page-assess .ov-header {
  position: relative;
  background-color: var(--ov-white);
  background-image: none;
  min-height: auto;
  border-bottom: 1px solid var(--ov-border);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}
.ov-page-mission .ov-header__inner,
.ov-page-products .ov-header__inner,
.ov-page-hiw .ov-header__inner,
.ov-page-platform .ov-header__inner,
.ov-page-home .ov-header__inner,
.ov-page-about .ov-header__inner,
.ov-page-investors .ov-header__inner,
.ov-page-why-now .ov-header__inner,
.ov-page-org-intel .ov-header__inner,
.ov-page-assess .ov-header__inner {
  min-height: auto;
  padding-top: 0.65rem;
  padding-bottom: 0.55rem;
}

.ov-hero-mission,
.ov-hero-about {
  background: #0A2E73;
  color: #fff;
}
.ov-hero-mission__visual,
.ov-hero-about__visual {
  position: relative;
  overflow: hidden;
  line-height: 0;
}
.ov-hero-mission__art,
.ov-hero-about__art {
  display: block;
  width: 100%;
  height: auto;
}
.ov-hero-mission__copy,
.ov-hero-about__copy {
  position: absolute;
  top: 8%;
  left: 0;
  z-index: 2;
  width: min(48%, 40rem);
  max-height: 70%;
  padding: 0 1.5rem 0 2.25rem;
  box-sizing: border-box;
  line-height: 1.35;
}
.ov-hero-mission__kicker,
.ov-hero-about__kicker {
  margin: 0 0 0.45rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #00C7FF;
}
.ov-hero-mission__title,
.ov-hero-about__title {
  margin: 0 0 0.65rem;
  font-family: 'Montserrat', var(--ov-font);
  font-weight: 600;
  font-size: clamp(1.1rem, 2.5vw, 2.05rem);
  line-height: 1.15;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
}
.ov-hero-mission__body,
.ov-hero-about__body {
  margin: 0 0 0.65rem;
  font-size: clamp(0.78rem, 1vw, 0.92rem);
  font-weight: 400;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.94);
  max-width: 34rem;
}
.ov-hero-mission__body:last-child,
.ov-hero-about__body:last-child {
  margin-bottom: 0;
}
.ov-hero-mission__actions,
.ov-hero-about__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  padding: 1.1rem 2.25rem 1.35rem;
  background: #0A2E73;
}
.ov-hero-mission__actions .ov-btn,
.ov-hero-about__actions .ov-btn {
  padding: 0.65rem 1.2rem;
  font-size: 0.85rem;
  white-space: nowrap;
}
.ov-hero-mission__actions .ov-btn--outline-white,
.ov-hero-about__actions .ov-btn--outline-white {
  border-color: #00C7FF;
  color: #fff;
}

@media (max-width: 900px) {
  .ov-hero-mission__copy,
  .ov-hero-about__copy {
    position: relative;
    top: auto;
    width: 100%;
    max-width: none;
    max-height: none;
    padding: 1.5rem 1.5rem 0.25rem;
    background: #0A2E73;
  }
  .ov-hero-mission__actions,
  .ov-hero-about__actions {
    padding: 1rem 1.5rem 1.5rem;
  }
}

.ov-investors-note {
  margin: 0;
  padding: 1rem 1.5rem 1.5rem;
  text-align: center;
  font-size: 0.75rem;
  color: var(--ov-text-muted);
  background: var(--ov-white);
}

.ov-hero-products {
  position: relative;
  background: #fff;
  color: var(--ov-white);
  overflow: visible;
}
.ov-hero-products__art {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: top;
}
.ov-hero-products__copy {
  position: absolute;
  top: 5%;
  bottom: 22%;
  left: 0;
  z-index: 2;
  width: 52%;
  max-width: 44rem;
  padding-left: 2.25rem;
  padding-right: 1.25rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: visible;
  box-sizing: border-box;
}
.ov-hero-products__kicker {
  margin: 0 0 0.6rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #5eb4ff;
}
.ov-hero-products__title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.45rem, 3.2vw, 2.45rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
}
.ov-hero-products__title span {
  color: #5eb4ff;
}
.ov-hero-products__body {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
}
.ov-hero-products__rule {
  display: block;
  width: 100%;
  height: 0;
  border: none;
  border-top: 1px solid rgba(255,255,255,0.85);
  margin: 0.9rem 0;
}
.ov-hero-products__sub {
  margin: 0 0 1.15rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
}
.ov-hero-products__actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.75rem;
}
.ov-hero-products__actions .ov-btn {
  padding: 0.65rem 1.2rem;
  font-size: 0.85rem;
  white-space: nowrap;
}
@media (max-width: 900px) {
  .ov-hero-products__copy {
    position: relative;
    width: 100%;
    max-width: none;
    top: auto;
    bottom: auto;
    padding: 1.5rem;
    background: #001833;
  }
  .ov-hero-products__actions {
    flex-wrap: wrap;
  }
}

.ov-section-label {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ov-navy);
  margin: 0 0 1.5rem;
  display: inline-block;
  border-bottom: 3px solid var(--ov-blue);
  padding-bottom: 0.35rem;
}

.ov-pillar-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 768px) { .ov-pillar-cards { grid-template-columns: 1fr; } }
.ov-pillar-card {
  background: #f3f8fd;
  border: 1px solid #d4e6f7;
  border-radius: var(--ov-radius);
  padding: 1.5rem 1.35rem;
}
.ov-pillar-card .ov-pillar__icon {
  margin: 0 0 0.85rem;
  width: 48px;
  height: 48px;
}
.ov-pillar-card h3 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ov-blue);
  margin: 0 0 0.6rem;
  text-align: left;
}
.ov-pillar-card p {
  font-size: 0.84rem;
  color: var(--ov-text-muted);
  margin: 0;
  text-align: left;
}

.ov-harvest-step__num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--ov-blue);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.3rem;
}

.ov-quote-bar--pill {
  max-width: var(--ov-max);
  margin: 0 auto 2.5rem;
  border-radius: var(--ov-radius-pill);
  padding: 1.75rem 2.5rem;
}

.ov-cta-bar--card {
  max-width: var(--ov-max);
  margin: 0 auto 2.5rem;
  border-radius: var(--ov-radius-lg);
  padding: 2rem 2.5rem;
}

.ov-hero-hiw {
  background: #0A2E73;
  color: #fff;
}
.ov-hero-hiw__visual {
  position: relative;
  overflow: hidden;
  line-height: 0;
}
.ov-hero-hiw__art {
  display: block;
  width: 100%;
  height: auto;
}
.ov-hero-hiw__copy {
  position: absolute;
  top: 8%;
  left: 0;
  z-index: 2;
  width: min(48%, 40rem);
  max-height: 70%;
  padding: 0 1.5rem 0 2.25rem;
  box-sizing: border-box;
  line-height: 1.35;
}
.ov-hero-hiw__kicker {
  margin: 0 0 0.45rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #00C7FF;
}
.ov-hero-hiw__title {
  margin: 0 0 0.65rem;
  font-family: 'Montserrat', var(--ov-font);
  font-weight: 600;
  font-size: clamp(1.1rem, 2.5vw, 2.05rem);
  line-height: 1.15;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
}
.ov-hero-hiw__body {
  margin: 0 0 0.65rem;
  font-size: clamp(0.78rem, 1vw, 0.92rem);
  font-weight: 400;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.94);
  max-width: 34rem;
}
.ov-hero-hiw__quote {
  margin: 0;
  font-size: clamp(0.78rem, 1vw, 0.9rem);
  font-style: italic;
  color: #00C7FF;
  line-height: 1.4;
  max-width: 34rem;
}
.ov-hero-hiw__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  padding: 1.1rem 2.25rem 1.35rem;
  background: #0A2E73;
}
.ov-hero-hiw__actions .ov-btn {
  padding: 0.65rem 1.2rem;
  font-size: 0.85rem;
  white-space: nowrap;
}
.ov-hero-hiw__actions .ov-btn--outline-white {
  border-color: #00C7FF;
  color: #fff;
}
@media (max-width: 900px) {
  .ov-hero-hiw__copy {
    position: relative;
    top: auto;
    width: 100%;
    max-width: none;
    max-height: none;
    padding: 1.5rem 1.5rem 0.25rem;
    background: #0A2E73;
  }
  .ov-hero-hiw__actions {
    padding: 1rem 1.5rem 1.5rem;
  }
}

/* ── Platform / Discernment page ── */
.ov-page-platform {
  --ov-navy: #0A2E73;
  --ov-blue: #1F5FBF;
  --ov-blue-light: #00C7FF;
}
.ov-page-platform .ov-hero-platform__title,
.ov-page-platform .ov-hero-platform__kicker,
.ov-page-platform .ov-cta-bar__text h2 {
  font-family: 'Montserrat', var(--ov-font);
  font-weight: 600;
}
.ov-page-platform .ov-btn-contact,
.ov-page-platform .ov-btn--primary {
  background: #1F5FBF;
  border-color: #1F5FBF;
}
.ov-page-platform .ov-btn-contact:hover,
.ov-page-platform .ov-btn--primary:hover {
  background: #0A2E73;
  border-color: #0A2E73;
}

.ov-hero-platform {
  background: #0A2E73;
  color: #fff;
}
.ov-hero-platform__visual {
  position: relative;
  overflow: hidden;
  line-height: 0;
}
.ov-hero-platform__art {
  display: block;
  width: 100%;
  height: auto;
}
.ov-hero-platform__copy {
  position: absolute;
  top: 6%;
  left: 0;
  z-index: 2;
  width: min(40%, 34rem);
  max-height: 58%;
  padding: 0 1.25rem 0 2.25rem;
  text-align: left;
  box-sizing: border-box;
  line-height: 1.4;
  pointer-events: none;
}
.ov-hero-platform__copy > * {
  pointer-events: auto;
}
.ov-hero-platform__kicker {
  margin: 0 0 0.35rem;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #00C7FF;
}
.ov-hero-platform__title {
  margin: 0 0 0.45rem;
  font-size: clamp(0.92rem, 1.7vw, 1.35rem);
  line-height: 1.18;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
}
.ov-hero-platform__body {
  margin: 0;
  font-size: clamp(0.72rem, 0.9vw, 0.82rem);
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.94);
  max-width: 32rem;
}
.ov-hero-platform__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  padding: 1.1rem 2.25rem 1.35rem;
  background: #0A2E73;
  position: relative;
  z-index: 2;
}
.ov-hero-platform__actions .ov-btn {
  padding: 0.65rem 1.2rem;
  font-size: 0.85rem;
  white-space: nowrap;
}
.ov-hero-platform__actions .ov-btn--outline-white {
  border-color: #00C7FF;
  color: #fff;
}

.ov-platform-architecture {
  background: #fff;
  padding: 2.25rem 0 3.5rem;
}
.ov-platform-architecture__inner {
  display: grid;
  grid-template-columns: 0.82fr 0.9fr 1.55fr 0.9fr 0.9fr;
  gap: 0.85rem;
  align-items: center;
  max-width: min(1680px, 98vw);
  margin: 0 auto;
  padding: 0 0.75rem;
}
.ov-platform-item {
  margin: 0;
  min-width: 0;
}
.ov-platform-item img {
  display: block;
  width: 100%;
  height: auto;
}
.ov-platform-item--sources,
.ov-platform-item--card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 36px rgba(10, 46, 115, 0.08);
  border: 1px solid #e6eef6;
  overflow: hidden;
}
.ov-platform-item--wheel {
  background: transparent;
  box-shadow: none;
  border: none;
}

@media (max-width: 1100px) {
  .ov-platform-architecture__inner {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
  .ov-platform-item--wheel {
    order: -1;
  }
}
@media (max-width: 900px) {
  .ov-hero-platform__copy {
    position: relative;
    top: auto;
    width: 100%;
    max-width: none;
    padding: 1.5rem;
    background: #0A2E73;
    pointer-events: auto;
  }
  .ov-hero-platform__actions {
    padding: 0 1.5rem 1.5rem;
  }
}

.ov-downloads__intro {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 1.75rem;
}
.ov-downloads__intro h2 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ov-navy);
}
.ov-downloads__intro p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ov-text-muted);
}
.ov-download-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.ov-download-grid--one {
  max-width: 22rem;
  margin: 0 auto;
  grid-template-columns: 1fr;
}
.ov-download-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--ov-border);
  border-radius: var(--ov-radius);
  background: var(--ov-white);
  text-decoration: none;
  color: inherit;
}
.ov-download-card:hover {
  border-color: var(--ov-blue);
  text-decoration: none;
}
.ov-download-card strong {
  color: var(--ov-navy);
  font-size: 0.95rem;
}
.ov-download-card span {
  font-size: 0.85rem;
  color: var(--ov-text-muted);
}
.ov-download-card__cta {
  margin-top: 0.45rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ov-blue);
}
@media (max-width: 768px) {
  .ov-download-grid { grid-template-columns: 1fr; }
}

/* ── Epistemic Ingestion Pipeline page ── */
.ov-pipe-heading {
  margin: 0 0 1.75rem;
  text-align: center;
  font-family: 'Montserrat', var(--ov-font);
  font-size: clamp(0.82rem, 1.4vw, 0.95rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ov-navy);
}
.ov-pipe-heading--left { text-align: left; margin-bottom: 0.85rem; }

.ov-pipe-stages-wrap { padding-top: 3rem; padding-bottom: 2.25rem; }

.ov-pipe-stages {
  display: flex;
  align-items: stretch;
  gap: 0;
}
.ov-pipe-stage {
  flex: 1 1 0;
  min-width: 0;
  background: #fff;
  border: 1px solid var(--ov-border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--ov-shadow);
  display: flex;
  flex-direction: column;
}
.ov-pipe-stage__top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.35rem 0.75rem 1.1rem;
  min-height: 7.25rem;
}
.ov-pipe-stage--1 .ov-pipe-stage__top { background: #0A2E73; }
.ov-pipe-stage--2 .ov-pipe-stage__top { background: #0D8A8A; }
.ov-pipe-stage--3 .ov-pipe-stage__top { background: #1AA6E0; }
.ov-pipe-stage--4 .ov-pipe-stage__top { background: #6B4BA8; }
.ov-pipe-stage--5 .ov-pipe-stage__top { background: #E06A1A; }

.ov-pipe-stage__num {
  position: absolute;
  top: 0.55rem;
  left: 0.55rem;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ov-pipe-stage__icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
}
.ov-pipe-stage__icon img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.ov-pipe-stage h3 {
  margin: 0;
  padding: 0.9rem 0.85rem 0.35rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.25;
  color: var(--ov-navy);
}
.ov-pipe-stage p {
  margin: 0;
  padding: 0 0.85rem 1.1rem;
  font-size: 0.8rem;
  color: var(--ov-text-muted);
  line-height: 1.4;
}

.ov-pipe-arrow {
  flex: 0 0 22px;
  align-self: center;
  width: 10px;
  height: 10px;
  margin: 0 0.2rem;
  border-top: 3px solid #1F5FBF;
  border-right: 3px solid #1F5FBF;
  transform: rotate(45deg);
}

.ov-pipe-traits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem 0.15rem;
  margin: 1.5rem 0 0;
  padding: 0.65rem 0 0;
  border-top: 1px dashed var(--ov-border);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ov-navy);
}
.ov-pipe-traits span:not(:last-child)::after {
  content: '•';
  margin: 0 0.7rem;
  color: #1F5FBF;
  font-weight: 800;
}

.ov-pipe-matter {
  padding-top: 1.5rem;
  background: #f6f9fc;
}
.ov-pipe-matter__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr 1fr;
  gap: 1.75rem;
  align-items: start;
}
.ov-pipe-lead {
  margin: 0 0 1.15rem;
  font-size: 0.92rem;
  color: var(--ov-text);
  line-height: 1.5;
}
.ov-pipe-checks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.ov-pipe-checks li {
  position: relative;
  padding-left: 1.55rem;
  font-size: 0.82rem;
  color: var(--ov-text-muted);
  line-height: 1.4;
}
.ov-pipe-checks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: #1F5FBF;
  box-shadow: inset 0 0 0 2px #1F5FBF, inset 3px -1px 0 1px #fff;
}
.ov-pipe-checks strong {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--ov-navy);
  font-size: 0.88rem;
}

.ov-pipe-stack {
  margin: 0;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0.7rem;
}
.ov-pipe-stack img {
  max-width: 240px;
  margin: 0;
}
.ov-pipe-stack__scale {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.1rem 0 2.4rem;
  max-width: 7.5rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ov-text-muted);
  line-height: 1.3;
  text-align: left;
  position: relative;
}
.ov-pipe-stack__scale::before {
  content: '';
  position: absolute;
  left: -0.45rem;
  top: 1.4rem;
  bottom: 2.7rem;
  border-left: 2px solid #1F5FBF;
}
.ov-pipe-stack__scale::after {
  content: '';
  position: absolute;
  left: -0.7rem;
  top: 1.25rem;
  width: 8px;
  height: 8px;
  border-top: 2px solid #1F5FBF;
  border-right: 2px solid #1F5FBF;
  transform: rotate(-45deg);
}

.ov-pipe-advantage {
  background: #0A2E73;
  color: #fff;
  border: 2px solid #00C7FF;
  border-radius: 16px;
  padding: 1.5rem 1.4rem 1.6rem;
}
.ov-pipe-advantage h2 {
  margin: 0 0 1.1rem;
  font-family: 'Montserrat', var(--ov-font);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.ov-pipe-checks--on-dark li { color: rgba(255,255,255,0.85); }
.ov-pipe-checks--on-dark strong { color: #fff; }
.ov-pipe-checks--on-dark li::before {
  background: #00C7FF;
  box-shadow: inset 0 0 0 2px #00C7FF, inset 3px -1px 0 1px #0A2E73;
}

.ov-pipe-dive {
  background: #eef2f6;
  padding: 1.5rem 0;
}
.ov-pipe-dive__inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.ov-pipe-dive__mark {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: #fff;
  color: #0A2E73;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--ov-shadow);
}
.ov-pipe-dive__text {
  flex: 1;
  min-width: 0;
  font-size: 0.88rem;
  color: var(--ov-text);
  line-height: 1.5;
}
.ov-pipe-dive__text p { margin: 0; }
.ov-pipe-dive__text strong {
  display: block;
  margin-bottom: 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  color: var(--ov-navy);
}

.ov-page-pipeline .ov-cta-bar__inner {
  flex-wrap: wrap;
}
.ov-page-pipeline .ov-cta-bar__text { flex: 1 1 16rem; }

a.ov-platform-item--card {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
a.ov-platform-item--card:hover {
  text-decoration: none;
  border-color: #1F5FBF;
}
.ov-platform-item__more {
  display: block;
  padding: 0.55rem 0.7rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #1F5FBF;
  text-align: center;
}
a.ov-platform-item--card:hover .ov-platform-item__more {
  text-decoration: underline;
}
.ov-page-pipeline .ov-hero-hiw__kicker a {
  color: inherit;
  text-decoration: none;
}
.ov-page-pipeline .ov-hero-hiw__kicker a:hover {
  text-decoration: underline;
}

a.ov-platform-item--wheel {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
a.ov-platform-item--wheel:hover {
  text-decoration: none;
}
a.ov-platform-item--wheel:hover .ov-platform-item__more {
  text-decoration: underline;
}

/* ── Enterprise Ontology page ── */
.ov-onto-caps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.ov-onto-cap {
  background: #fff;
  border: 1px solid var(--ov-border);
  border-radius: 14px;
  box-shadow: var(--ov-shadow);
  padding: 1.35rem 1.25rem 1.4rem;
}
.ov-onto-cap__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}
.ov-onto-cap__num {
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  background: #0A2E73;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ov-onto-cap__icon {
  width: 56px;
  height: 56px;
}
.ov-onto-cap__icon img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.ov-onto-cap h3 {
  margin: 0 0 0.7rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ov-navy);
  line-height: 1.3;
}
.ov-onto-cap ul {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.82rem;
  color: var(--ov-text-muted);
  line-height: 1.45;
}
.ov-onto-cap li + li { margin-top: 0.35rem; }
.ov-onto-diagram {
  display: block;
  text-align: center;
}
.ov-onto-diagram img {
  max-width: 100%;
  margin: 0 auto;
}
.ov-page-ontology .ov-hero-hiw__body { max-width: 36rem; }

.ov-onto-caps--4 { grid-template-columns: repeat(4, 1fr); }

.ov-hero-hiw__sub {
  margin: 0 0 0.55rem;
  font-size: clamp(0.82rem, 1.2vw, 1rem);
  font-weight: 600;
  color: #00C7FF;
  letter-spacing: 0.02em;
}

.ov-pipe-traits--hero {
  flex: 1 1 100%;
  margin: 0 0 0.35rem;
  padding: 0;
  border: 0;
  justify-content: flex-start;
  color: #fff;
  font-size: 0.7rem;
}
.ov-pipe-traits--hero span:not(:last-child)::after { color: #00C7FF; }

.ov-policy-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.ov-policy-steps li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ov-navy);
}
.ov-policy-steps span {
  flex-shrink: 0;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  background: #1F5FBF;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ov-platform-layers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 1.75rem;
  text-align: center;
  margin: 1rem 0 0;
  font-size: 0.85rem;
  font-weight: 700;
}

.ov-page-policy .ov-hero-hiw__copy,
.ov-page-oicc .ov-hero-hiw__copy,
.ov-page-ark .ov-hero-hiw__copy,
.ov-page-align .ov-hero-hiw__copy,
.ov-page-sec .ov-hero-hiw__copy { width: min(42%, 36rem); }
.ov-page-oicc .ov-hero-hiw__title,
.ov-page-ark .ov-hero-hiw__title,
.ov-page-align .ov-hero-hiw__title,
.ov-page-sec .ov-hero-hiw__title {
  font-size: clamp(0.95rem, 2.1vw, 1.7rem);
}
.ov-hero-hiw__kicker a + a::before {
  content: ' · ';
  color: #00C7FF;
}
.ov-policy-steps--row {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.85rem 1.25rem;
  margin-bottom: 0.5rem;
}
.ov-onto-cap__icon--well {
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ov-onto-cap__note {
  margin: 0 0 0.55rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ov-text-muted);
  line-height: 1.35;
}
.ov-onto-cap__more {
  margin: 0.9rem 0 0;
  font-size: 0.82rem;
  font-weight: 700;
}
.ov-pipe-advantage .ov-onto-cap__more { margin-top: 0.4rem; }
.ov-pipe-advantage .ov-onto-cap__more:first-of-type { margin-top: 0.9rem; }
.ov-pipe-advantage .ov-onto-cap__more a { color: #00C7FF; }
.ov-pipe-matter__grid--2 {
  grid-template-columns: 1fr 1fr;
}
.ov-pipe-matter__follow {
  margin-top: 2rem;
}

@media (max-width: 1100px) {
  .ov-onto-caps--4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .ov-onto-caps { grid-template-columns: 1fr; max-width: 26rem; margin: 0 auto; }
  .ov-onto-caps--4 { grid-template-columns: 1fr; }
  .ov-page-policy .ov-hero-hiw__copy,
  .ov-page-oicc .ov-hero-hiw__copy,
  .ov-page-ark .ov-hero-hiw__copy,
  .ov-page-align .ov-hero-hiw__copy,
  .ov-page-sec .ov-hero-hiw__copy { width: 100%; }
  .ov-policy-steps--row { flex-direction: column; }
}

@media (max-width: 1100px) {
  .ov-pipe-matter__grid {
    grid-template-columns: 1fr 1fr;
  }
  .ov-pipe-advantage { grid-column: 1 / -1; }
  .ov-pipe-matter__grid--2 .ov-pipe-advantage { grid-column: auto; }
}
@media (max-width: 900px) {
  .ov-pipe-stages {
    flex-direction: column;
    max-width: 22rem;
    margin: 0 auto;
  }
  .ov-pipe-stage {
    flex: 0 0 auto;
    width: 100%;
  }
  .ov-pipe-arrow {
    transform: rotate(135deg);
    margin: 0.45rem auto;
  }
  .ov-pipe-matter__grid { grid-template-columns: 1fr; }
  .ov-pipe-advantage { grid-column: auto; }
  .ov-pipe-dive__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ── Discernment Assessment (professional services) ── */
.ov-hero-assess {
  position: relative;
  background: #001545;
  color: #fff;
  overflow: visible;
}
.ov-hero-assess__art {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: top;
}
.ov-hero-assess__inner {
  position: absolute;
  top: 6%;
  bottom: 20%;
  left: 0;
  z-index: 2;
  width: 44%;
  max-width: 40rem;
  padding-left: 2.25rem;
  padding-right: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-sizing: border-box;
  overflow: hidden;
}
.ov-hero-assess__kicker {
  margin: 0 0 0.35rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #5eb4ff;
}
.ov-hero-assess__title {
  margin: 0 0 0.4rem;
  font-family: 'Montserrat', var(--ov-font);
  font-size: clamp(1.15rem, 2.4vw, 1.85rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
}
.ov-hero-assess__title span { color: #5eb4ff; }
.ov-hero-assess__sub {
  margin: 0 0 0.4rem;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
}
.ov-hero-assess__body {
  margin: 0 0 0.55rem;
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.4;
  color: #fff;
  max-width: 38rem;
}
.ov-hero-assess__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.9rem;
  list-style: none;
  margin: 0 0 0.55rem;
  padding: 0;
  font-size: 0.75rem;
  font-weight: 600;
}
.ov-hero-assess__chips li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.ov-hero-assess__chip-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ov-hero-assess__chip-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.ov-hero-assess__chip-icon--check {
  border: 2px solid #5eb4ff;
  border-radius: 50%;
}
.ov-hero-assess__chip-icon--check::after {
  content: "";
  width: 5px;
  height: 9px;
  border-right: 2px solid #5eb4ff;
  border-bottom: 2px solid #5eb4ff;
  transform: rotate(45deg) translate(-1px, -1px);
}
.ov-hero-assess__chip-icon--scope {
  border: 2px solid #5eb4ff;
  border-radius: 50%;
}
.ov-hero-assess__chip-icon--scope::before,
.ov-hero-assess__chip-icon--scope::after {
  content: "";
  position: absolute;
  background: #5eb4ff;
}
.ov-hero-assess__chip-icon--scope {
  position: relative;
}
.ov-hero-assess__chip-icon--scope::before {
  width: 10px;
  height: 2px;
  top: 8px;
}
.ov-hero-assess__chip-icon--scope::after {
  width: 2px;
  height: 10px;
}
.ov-hero-assess__cred {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  margin: 0;
  max-width: 34rem;
  padding: 0.4rem 0.65rem;
  border: 1px solid rgba(94, 180, 255, 0.45);
  border-radius: 8px;
  font-size: 0.72rem;
  line-height: 1.35;
  color: #d7ecff;
}
.ov-hero-assess__cred-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.ov-hero-assess__cred-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.ov-assess-trust {
  margin: -1.35rem auto 0;
  padding: 0 1.5rem;
  max-width: var(--ov-max);
  position: relative;
  z-index: 2;
}
.ov-assess-trust__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.55rem 0.9rem;
  background: var(--ov-navy);
  color: #fff;
  border-radius: var(--ov-radius-pill);
  padding: 0.7rem 1.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.ov-assess-trust__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.ov-assess-trust__icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.ov-assess-trust__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #5eb4ff;
  flex-shrink: 0;
}

.ov-assess-value {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
  align-items: stretch;
  max-width: 52rem;
  margin: 0 auto;
}
@media (min-width: 1280px) {
  .ov-assess-value {
    grid-template-columns: 1fr 1fr 1fr;
    max-width: none;
  }
}
@media (min-width: 1440px) {
  .ov-page-assess .ov-container,
  .ov-page-assess .ov-header__inner,
  .ov-assess-trust {
    max-width: 1360px;
  }
}
@media (min-width: 1680px) {
  .ov-page-assess .ov-container,
  .ov-page-assess .ov-header__inner,
  .ov-assess-trust {
    max-width: 1560px;
  }
}
@media (min-width: 1840px) {
  .ov-page-assess .ov-container,
  .ov-page-assess .ov-header__inner,
  .ov-assess-trust {
    max-width: 1760px;
  }
}
.ov-assess-card {
  background: #f3f8fd;
  border: 1px solid #d4e6f7;
  border-radius: var(--ov-radius);
  padding: 1.35rem 1.2rem 1.25rem;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.ov-assess-card__head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 0.7rem;
}
.ov-assess-card h2 {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ov-navy);
}
.ov-assess-card p {
  margin: 0 0 0.75rem;
  font-size: 0.84rem;
  color: var(--ov-text-muted);
}
.ov-assess-card__label {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ov-navy);
}
.ov-assess-price {
  margin: 0 0 0.75rem !important;
  font-size: 1.15rem !important;
  font-weight: 800;
  color: #e67a2e !important;
}
.ov-assess-steward {
  margin-top: auto !important;
  margin-bottom: 0 !important;
  padding: 0.55rem 0.7rem;
  border: 1px solid #f0c9a8;
  background: #fff6ee;
  border-radius: 8px;
  font-size: 0.78rem !important;
  font-weight: 700;
  color: #c45e16 !important;
  text-align: center;
  line-height: 1.35;
}
.ov-assess-note {
  margin-top: auto !important;
  margin-bottom: 0 !important;
  font-size: 0.72rem !important;
  line-height: 1.4;
}

.ov-assess-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #e8f4fc;
}
.ov-assess-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.ov-assess-icon--badge {
  background: transparent;
}
.ov-assess-icon--badge img {
  width: 44px;
  height: 44px;
}
.ov-assess-icon--teal { background: #0f9b8a; }
.ov-assess-icon--blue { background: var(--ov-blue); }
.ov-assess-icon--orange { background: #e67a2e; }
.ov-assess-icon--purple { background: #6b4cbf; }
.ov-assess-icon--navy { background: #e8f4fc; }
.ov-assess-icon[data-icon]:empty::after {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 3px;
  background: rgba(255,255,255,0.55);
}
.ov-assess-icon--navy[data-icon]:empty::after { background: rgba(10, 46, 115, 0.25); }

.ov-assess-checks {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ov-assess-checks li {
  position: relative;
  padding: 0.18rem 0 0.18rem 1.35rem;
  font-size: 0.82rem;
  color: var(--ov-text);
  line-height: 1.4;
}
.ov-assess-checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--ov-blue);
}
.ov-assess-checks li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 0.5rem;
  width: 4px;
  height: 7px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}
.ov-assess-checks--teal li::before { background: #0f9b8a; }
.ov-assess-checks--orange li::before { background: #e67a2e; }
.ov-assess-checks--purple li::before { background: #6b4cbf; }

.ov-assess-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem 0.7rem;
  margin: 0.5rem 0 0.75rem;
}
.ov-assess-stats div { margin: 0; }
.ov-assess-stats dt {
  font-size: 0.95rem;
  font-weight: 800;
  color: #6b4cbf;
  margin: 0;
}
.ov-assess-stats dd {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ov-text-muted);
}

.ov-assess-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr) 1.35fr;
  gap: 0.85rem;
  align-items: stretch;
}
.ov-assess-step {
  background: #f3f8fd;
  border: 1px solid #d4e6f7;
  border-radius: var(--ov-radius);
  padding: 1.1rem 1rem;
  min-height: 0;
}
.ov-assess-step--capture { background: #f3fbf6; border-color: #cfe8d8; }
.ov-assess-step--analyze { background: #fff6f0; border-color: #f0d4c0; }
.ov-assess-step h3 {
  margin: 0.65rem 0 0.4rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ov-navy);
}
.ov-assess-step p {
  margin: 0;
  font-size: 0.78rem;
  color: var(--ov-text-muted);
  line-height: 1.45;
}

.ov-assess-deliv {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.ov-assess-deliv-card {
  background: #fff;
  border: 1px solid #d4e6f7;
  border-radius: var(--ov-radius);
  padding: 1.15rem 1.1rem;
}
.ov-assess-deliv-card h3 {
  margin: 0.65rem 0 0.4rem;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--ov-blue);
}
.ov-assess-deliv-card p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--ov-text-muted);
}

.ov-page-assess .ov-cta-bar--card {
  padding: 0.85rem 1.25rem;
}
.ov-page-assess .ov-cta-bar__inner {
  align-items: center;
  gap: 0.85rem;
}
.ov-page-assess .ov-cta-bar__star {
  width: 44px;
  height: 44px;
  background: none;
}
.ov-page-assess .ov-cta-bar__star img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.ov-page-assess .ov-cta-bar__text h2 {
  font-size: 1.05rem;
  margin: 0 0 0.2rem;
}
.ov-page-assess .ov-cta-bar__text p {
  font-size: 0.8rem;
}
.ov-assess-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  flex: 0 0 auto;
  justify-content: flex-end;
  align-items: center;
  align-content: flex-start;
}
.ov-page-assess .ov-assess-cta-actions .ov-btn {
  flex: 0 0 auto;
  width: auto;
  height: auto;
  padding: 0.4rem 0.95rem;
  font-size: 0.8rem;
  white-space: nowrap;
  align-self: center;
}
.ov-page-assess .ov-cta-bar__text { flex: 1 1 12rem; min-width: 0; }

@media (max-width: 1100px) {
  .ov-assess-flow { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .ov-hero-assess__inner {
    position: relative;
    width: 100%;
    max-width: none;
    top: auto;
    bottom: auto;
    padding: 1.5rem 1.25rem;
    overflow: visible;
    background: #001545;
  }
  .ov-hero-assess__title { font-size: 1.45rem; }
  .ov-hero-assess__sub { font-size: 1rem; }
  .ov-hero-assess__body { font-size: 0.9rem; }
  .ov-assess-trust__inner {
    border-radius: var(--ov-radius);
    justify-content: flex-start;
    text-align: left;
  }
  .ov-assess-trust__dot { display: none; }
  .ov-assess-value,
  .ov-assess-flow,
  .ov-assess-deliv {
    grid-template-columns: 1fr;
  }
  .ov-assess-card,
  .ov-assess-step,
  .ov-assess-deliv-card {
    width: 100%;
  }
  .ov-assess-cta-actions {
    justify-content: flex-start;
    flex-basis: 100%;
  }
  .ov-page-assess .ov-cta-bar--card {
    padding: 0.75rem 1rem;
  }
  .ov-page-assess .ov-cta-bar__inner {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.55rem 0.75rem;
  }
  .ov-page-assess .ov-cta-bar__star {
    width: 36px;
    height: 36px;
  }
  .ov-page-assess .ov-cta-bar__star img {
    width: 36px;
    height: 36px;
  }
}
