@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=IBM+Plex+Sans:wght@300;400;500;600&family=IBM+Plex+Mono:wght@400;500&display=swap');

:root {
  --cvh-bg-deep-navy: #0f2340;
  --cvh-bg-slate: #1c3a5c;
  --cvh-bg-form-cream: #f5f1eb;
  --cvh-bg-page-white: #fafaf8;
  --cvh-bg-section-light: #eeeae3;
  --cvh-text-on-dark-primary: #f0ece4;
  --cvh-text-on-dark-muted: #a8bdd0;
  --cvh-text-on-light-primary: #0f2340;
  --cvh-text-on-light-secondary: #2b4a68;
  --cvh-text-on-light-muted: #4a6580;
  --cvh-accent-green: #1a7a4a;
  --cvh-accent-green-light: #22a060;
  --cvh-accent-gold: #c8852a;
  --cvh-border-light: #d4cec5;
  --cvh-border-dark: #2e4f70;
  --cvh-nav-h: 68px;
  --cvh-radius: 6px;
  --cvh-radius-lg: 12px;
  --cvh-shadow: 0 2px 16px rgba(15,35,64,0.12);
  --cvh-shadow-lg: 0 8px 40px rgba(15,35,64,0.18);
  --cvh-transition: 0.2s ease;
  --cvh-max-w: 1160px;
  --cvh-prose-w: 720px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'IBM Plex Sans', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--cvh-text-on-light-primary);
  background: var(--cvh-bg-page-white);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
  border: none;
  background: none;
  outline: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  line-height: 1.18;
  color: inherit;
}

.cvh-container {
  width: 100%;
  max-width: var(--cvh-max-w);
  margin-inline: auto;
  padding-inline: 40px;
}

.cvh-prose {
  max-width: var(--cvh-prose-w);
  margin-inline: auto;
}

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

/* ========================
   NAV
   ======================== */

.cvh-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--cvh-nav-h);
  background: var(--cvh-bg-deep-navy);
  border-bottom: 1px solid var(--cvh-border-dark);
  display: flex;
  align-items: center;
}

.cvh-nav__inner {
  width: 100%;
  max-width: var(--cvh-max-w);
  margin-inline: auto;
  padding-inline: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cvh-nav__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.cvh-nav__logo img {
  height: 32px;
  width: auto;
  display: block;
}

.cvh-nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
}

.cvh-nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--cvh-text-on-dark-muted);
  letter-spacing: 0.02em;
  transition: color var(--cvh-transition);
  white-space: nowrap;
}

.cvh-nav__link:hover,
.cvh-nav__link.is-active {
  color: var(--cvh-text-on-dark-primary);
}

.cvh-nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.cvh-nav__sign-in {
  font-size: 14px;
  font-weight: 500;
  color: var(--cvh-text-on-dark-muted);
  transition: color var(--cvh-transition);
  white-space: nowrap;
}

.cvh-nav__sign-in:hover {
  color: var(--cvh-text-on-dark-primary);
}

.cvh-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.cvh-hamburger__bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--cvh-text-on-dark-primary);
  border-radius: 2px;
  transition: transform var(--cvh-transition), opacity var(--cvh-transition);
}

.cvh-hamburger[aria-expanded="true"] .cvh-hamburger__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.cvh-hamburger[aria-expanded="true"] .cvh-hamburger__bar:nth-child(2) {
  opacity: 0;
}

.cvh-hamburger[aria-expanded="true"] .cvh-hamburger__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.cvh-mobile-nav {
  display: none;
  position: fixed;
  top: var(--cvh-nav-h);
  left: 0;
  right: 0;
  background: var(--cvh-bg-deep-navy);
  border-bottom: 1px solid var(--cvh-border-dark);
  padding: 24px 40px 32px;
  z-index: 899;
  flex-direction: column;
  gap: 0;
}

.cvh-mobile-nav.is-open {
  display: flex;
}

.cvh-mobile-nav__link {
  display: block;
  padding: 12px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--cvh-text-on-dark-muted);
  border-bottom: 1px solid var(--cvh-border-dark);
  transition: color var(--cvh-transition);
}

.cvh-mobile-nav__link:last-child {
  border-bottom: none;
}

.cvh-mobile-nav__link:hover {
  color: var(--cvh-text-on-dark-primary);
}

/* ========================
   BUTTONS
   ======================== */

.cvh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--cvh-radius);
  cursor: pointer;
  transition: background var(--cvh-transition), color var(--cvh-transition), border-color var(--cvh-transition), opacity var(--cvh-transition);
  white-space: nowrap;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 2px solid transparent;
}

.cvh-btn--primary {
  background: var(--cvh-accent-gold);
  color: var(--cvh-bg-deep-navy);
  border-color: var(--cvh-accent-gold);
}

.cvh-btn--primary:hover {
  background: #b5751f;
  border-color: #b5751f;
  color: var(--cvh-bg-deep-navy);
}

.cvh-btn--outline-dark {
  background: transparent;
  color: var(--cvh-text-on-dark-primary);
  border-color: var(--cvh-border-dark);
}

.cvh-btn--outline-dark:hover {
  border-color: var(--cvh-text-on-dark-muted);
  color: var(--cvh-text-on-dark-primary);
}

.cvh-btn--outline-light {
  background: transparent;
  color: var(--cvh-text-on-light-primary);
  border-color: var(--cvh-border-light);
}

.cvh-btn--outline-light:hover {
  border-color: var(--cvh-text-on-light-secondary);
  color: var(--cvh-text-on-light-primary);
}

.cvh-btn--ghost-on-dark {
  background: rgba(240,236,228,0.1);
  color: var(--cvh-text-on-dark-primary);
  border-color: rgba(240,236,228,0.2);
}

.cvh-btn--ghost-on-dark:hover {
  background: rgba(240,236,228,0.16);
  border-color: rgba(240,236,228,0.35);
}

.cvh-btn--sm {
  padding: 7px 16px;
  font-size: 13px;
}

.cvh-btn--lg {
  padding: 14px 32px;
  font-size: 16px;
}

/* ========================
   SECTIONS / BACKGROUNDS
   ======================== */

.cvh-section {
  padding-block: 96px;
}

.cvh-section--sm {
  padding-block: 64px;
}

.cvh-section--lg {
  padding-block: 128px;
}

.cvh-bg--deep-navy {
  background: var(--cvh-bg-deep-navy);
  color: var(--cvh-text-on-dark-primary);
}

.cvh-bg--slate {
  background: var(--cvh-bg-slate);
  color: var(--cvh-text-on-dark-primary);
}

.cvh-bg--page-white {
  background: var(--cvh-bg-page-white);
  color: var(--cvh-text-on-light-primary);
}

.cvh-bg--section-light {
  background: var(--cvh-bg-section-light);
  color: var(--cvh-text-on-light-primary);
}

.cvh-bg--form-cream {
  background: var(--cvh-bg-form-cream);
  color: var(--cvh-text-on-light-primary);
}

/* ========================
   EYEBROWS / LABELS
   ======================== */

.cvh-eyebrow {
  display: inline-block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cvh-accent-green-light);
  margin-bottom: 16px;
}

.cvh-eyebrow--gold {
  color: #8b5e18;
}

.cvh-eyebrow--muted {
  color: var(--cvh-text-on-dark-muted);
}

.cvh-eyebrow--muted-light {
  color: var(--cvh-text-on-light-muted);
}

.cvh-bg--slate .cvh-eyebrow,
.cvh-bg--deep .cvh-eyebrow,
.cvh-bg--navy .cvh-eyebrow,
.cvh-subhero .cvh-eyebrow,
.cvh-hero .cvh-eyebrow,
.cvh-cta-strip .cvh-eyebrow {
  color: #2ec870;
}

/* ========================
   HEADINGS
   ======================== */

.cvh-h1 {
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.1;
}

.cvh-h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.15;
}

.cvh-h3 {
  font-size: clamp(20px, 2.5vw, 28px);
  line-height: 1.22;
}

.cvh-h4 {
  font-size: 20px;
  line-height: 1.3;
}

.cvh-section-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 16px;
}

.cvh-section-sub {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  max-width: 600px;
  color: var(--cvh-text-on-light-muted);
}

.cvh-section-sub--dark {
  color: var(--cvh-text-on-dark-muted);
}

.cvh-section-header {
  text-align: center;
  margin-bottom: 64px;
}

.cvh-section-header .cvh-section-sub {
  margin-inline: auto;
}

/* ========================
   HERO
   ======================== */

.cvh-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--cvh-bg-deep-navy);
  overflow: hidden;
  padding-top: var(--cvh-nav-h);
}

.cvh-hero__bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  opacity: 0.18;
}

.cvh-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--cvh-max-w);
  margin-inline: auto;
  padding-inline: 40px;
  padding-block: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.cvh-hero__text {
  max-width: 560px;
}

.cvh-hero__h1 {
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.1;
  color: var(--cvh-text-on-dark-primary);
  margin-bottom: 24px;
}

.cvh-hero__h1 em {
  font-style: normal;
  color: var(--cvh-accent-green-light);
}

.cvh-hero__sub {
  font-size: 18px;
  font-weight: 300;
  color: var(--cvh-text-on-dark-muted);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 480px;
}

.cvh-hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cvh-hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ========================
   HERO COMPLIANCE TABLE (inline mock)
   ======================== */

.cvh-compliance-table {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--cvh-border-dark);
  border-radius: var(--cvh-radius-lg);
  overflow: hidden;
  width: 100%;
  max-width: 480px;
}

.cvh-compliance-table__header {
  background: rgba(28,58,92,0.8);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--cvh-border-dark);
}

.cvh-compliance-table__title {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cvh-text-on-dark-muted);
}

.cvh-compliance-table__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cvh-accent-green-light);
  box-shadow: 0 0 6px rgba(34,160,96,0.6);
}

.cvh-compliance-table__row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  align-items: center;
  padding: 13px 20px;
  border-bottom: 1px solid rgba(46,79,112,0.5);
  font-size: 13px;
}

.cvh-compliance-table__row:last-child {
  border-bottom: none;
}

.cvh-compliance-table__contract {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 500;
  color: var(--cvh-text-on-dark-primary);
  font-size: 12.5px;
}

.cvh-compliance-table__naics {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--cvh-text-on-dark-muted);
}

.cvh-compliance-table__badge {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 3px;
  white-space: nowrap;
}

.cvh-compliance-table__badge--ok {
  background: rgba(26,122,74,0.25);
  color: #4ade8a;
  border: 1px solid rgba(26,122,74,0.4);
}

.cvh-compliance-table__badge--warn {
  background: rgba(200,133,42,0.2);
  color: #f0a951;
  border: 1px solid rgba(200,133,42,0.35);
}

.cvh-compliance-table__badge--pending {
  background: rgba(168,189,208,0.1);
  color: var(--cvh-text-on-dark-muted);
  border: 1px solid rgba(168,189,208,0.2);
}

/* ========================
   SUBPAGE HERO
   ======================== */

.cvh-subhero {
  background: var(--cvh-bg-deep-navy);
  padding-top: calc(var(--cvh-nav-h) + 72px);
  padding-bottom: 72px;
  position: relative;
  overflow: hidden;
}

.cvh-subhero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
}

.cvh-subhero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--cvh-max-w);
  margin-inline: auto;
  padding-inline: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.cvh-subhero__inner--centered {
  grid-template-columns: 1fr;
  text-align: center;
  max-width: var(--cvh-max-w);
}

.cvh-subhero__inner--centered .cvh-section-sub {
  margin-inline: auto;
}

.cvh-subhero__h1 {
  font-size: clamp(30px, 3.5vw, 48px);
  line-height: 1.12;
  color: var(--cvh-text-on-dark-primary);
  margin-bottom: 20px;
}

.cvh-subhero__sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--cvh-text-on-dark-muted);
  line-height: 1.6;
}

.cvh-subhero__visual {
  display: flex;
  justify-content: center;
}

/* ========================
   STAT BAND
   ======================== */

.cvh-stat-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--cvh-border-dark);
  border-radius: var(--cvh-radius-lg);
  overflow: hidden;
}

.cvh-stat-band--light {
  border-color: var(--cvh-border-light);
}

.cvh-stat-item {
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid var(--cvh-border-dark);
}

.cvh-stat-item:last-child {
  border-right: none;
}

.cvh-stat-band--light .cvh-stat-item {
  border-right-color: var(--cvh-border-light);
}

.cvh-stat-item__number {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 36px;
  line-height: 1;
  color: var(--cvh-text-on-dark-primary);
  margin-bottom: 6px;
}

.cvh-stat-band--light .cvh-stat-item__number {
  color: var(--cvh-text-on-light-primary);
}

.cvh-stat-item__number--accent {
  color: var(--cvh-accent-green-light);
}

.cvh-stat-item__label {
  font-size: 12px;
  font-weight: 500;
  color: var(--cvh-text-on-dark-muted);
  letter-spacing: 0.04em;
}

.cvh-stat-band--light .cvh-stat-item__label {
  color: var(--cvh-text-on-light-muted);
}

/* ========================
   FEATURE GRID
   ======================== */

.cvh-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.cvh-feature-card {
  padding: 32px;
  border-radius: var(--cvh-radius-lg);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--cvh-border-dark);
}

.cvh-feature-card--light {
  background: var(--cvh-bg-page-white);
  border-color: var(--cvh-border-light);
}

.cvh-feature-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--cvh-radius);
  background: rgba(26,122,74,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--cvh-accent-green-light);
  font-size: 20px;
}

.cvh-feature-card--light .cvh-feature-card__icon {
  background: rgba(26,122,74,0.1);
}

.cvh-feature-card__title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 19px;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--cvh-text-on-dark-primary);
}

.cvh-feature-card--light .cvh-feature-card__title {
  color: var(--cvh-text-on-light-primary);
}

.cvh-feature-card__text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--cvh-text-on-dark-muted);
}

.cvh-feature-card--light .cvh-feature-card__text {
  color: var(--cvh-text-on-light-muted);
}

/* ========================
   HOW IT WORKS STEPS
   ======================== */

.cvh-steps {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.cvh-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.cvh-step--flip {
  direction: rtl;
}

.cvh-step--flip > * {
  direction: ltr;
}

.cvh-step__label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cvh-accent-green-light);
  margin-bottom: 8px;
}

.cvh-step__title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(22px, 2.5vw, 32px);
  color: var(--cvh-text-on-dark-primary);
  margin-bottom: 16px;
}

.cvh-step__text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--cvh-text-on-dark-muted);
  margin-bottom: 20px;
}

.cvh-step__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Step inline mocks */
.cvh-step-mock {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--cvh-border-dark);
  border-radius: var(--cvh-radius-lg);
  overflow: hidden;
  width: 100%;
  max-width: 440px;
}

.cvh-step-mock__header {
  background: rgba(28,58,92,0.8);
  padding: 10px 16px;
  border-bottom: 1px solid var(--cvh-border-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.cvh-step-mock__title {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cvh-text-on-dark-muted);
}

.cvh-step-mock__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cvh-accent-green-light);
}

.cvh-step-mock__body {
  padding: 16px;
}

.cvh-step-mock__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(46,79,112,0.4);
  font-size: 12px;
  align-items: center;
}

.cvh-step-mock__row:last-child {
  border-bottom: none;
}

.cvh-step-mock__col-label {
  color: var(--cvh-text-on-dark-muted);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
}

.cvh-step-mock__col-val {
  color: var(--cvh-text-on-dark-primary);
  font-size: 12px;
  text-align: right;
}

.cvh-step-mock__col-val--green {
  color: #4ade8a;
}

.cvh-step-mock__col-val--gold {
  color: #f0a951;
}

/* WH-347 report mock */
.cvh-wh347-mock {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--cvh-border-dark);
  border-radius: var(--cvh-radius-lg);
  overflow: hidden;
  width: 100%;
  max-width: 440px;
}

.cvh-wh347-mock__banner {
  background: rgba(26,122,74,0.18);
  border-bottom: 1px solid var(--cvh-border-dark);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cvh-wh347-mock__banner-icon {
  color: #2ec870;
  font-size: 16px;
}

.cvh-wh347-mock__banner-text {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2ec870;
}

.cvh-wh347-mock__summary {
  padding: 14px 18px;
}

.cvh-wh347-mock__line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 5px 0;
  font-size: 12px;
  border-bottom: 1px solid rgba(46,79,112,0.3);
  align-items: center;
}

.cvh-wh347-mock__line:last-child {
  border-bottom: none;
}

.cvh-wh347-mock__k {
  color: var(--cvh-text-on-dark-muted);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
}

.cvh-wh347-mock__v {
  color: var(--cvh-text-on-dark-primary);
  font-size: 12px;
  font-family: 'IBM Plex Mono', monospace;
  text-align: right;
}

/* ========================
   TESTIMONIALS
   ======================== */

.cvh-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.cvh-testimonial {
  padding: 36px;
  border-radius: var(--cvh-radius-lg);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--cvh-border-dark);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cvh-testimonial--light {
  background: var(--cvh-bg-page-white);
  border-color: var(--cvh-border-light);
}

.cvh-testimonial__quote {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 17px;
  font-style: italic;
  line-height: 1.6;
  color: var(--cvh-text-on-dark-primary);
  flex: 1;
}

.cvh-testimonial--light .cvh-testimonial__quote {
  color: var(--cvh-text-on-light-primary);
}

.cvh-testimonial__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cvh-testimonial__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--cvh-text-on-dark-primary);
}

.cvh-testimonial--light .cvh-testimonial__name {
  color: var(--cvh-text-on-light-primary);
}

.cvh-testimonial__role {
  font-size: 13px;
  color: var(--cvh-text-on-dark-muted);
}

.cvh-testimonial--light .cvh-testimonial__role {
  color: var(--cvh-text-on-light-muted);
}

/* ========================
   PRICING
   ======================== */

.cvh-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.cvh-pricing-card {
  border-radius: var(--cvh-radius-lg);
  border: 1px solid var(--cvh-border-dark);
  padding: 36px 32px;
  background: rgba(255,255,255,0.03);
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.cvh-pricing-card--highlighted {
  background: rgba(28,58,92,0.6);
  border-color: var(--cvh-accent-green);
  box-shadow: 0 0 0 1px var(--cvh-accent-green);
}

.cvh-pricing-card__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cvh-accent-green);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 99px;
  white-space: nowrap;
}

.cvh-pricing-card__tier {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cvh-text-on-dark-muted);
  margin-bottom: 4px;
}

.cvh-pricing-card__name {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 22px;
  color: var(--cvh-text-on-dark-primary);
  margin-bottom: 12px;
}

.cvh-pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.cvh-pricing-card__amount {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 44px;
  line-height: 1;
  color: var(--cvh-text-on-dark-primary);
}

.cvh-pricing-card__amount--custom {
  font-size: 32px;
}

.cvh-pricing-card__period {
  font-size: 14px;
  color: var(--cvh-text-on-dark-muted);
  margin-left: 2px;
}

.cvh-pricing-card__desc {
  font-size: 13px;
  color: var(--cvh-text-on-dark-muted);
  line-height: 1.55;
}

.cvh-pricing-divider {
  border: none;
  border-top: 1px solid var(--cvh-border-dark);
  margin: 0;
}

.cvh-pricing-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cvh-pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--cvh-text-on-dark-muted);
}

.cvh-pricing-feature i {
  color: var(--cvh-accent-green-light);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

.cvh-pricing-card__cta {
  margin-top: auto;
}

/* ========================
   FAQ / ACCORDION
   ======================== */

.cvh-faq {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--cvh-border-dark);
}

.cvh-faq--light {
  border-top-color: var(--cvh-border-light);
}

.cvh-faq__item {
  border-bottom: 1px solid var(--cvh-border-dark);
}

.cvh-faq--light .cvh-faq__item {
  border-bottom-color: var(--cvh-border-light);
}

.cvh-faq__question {
  width: 100%;
  text-align: left;
  padding: 22px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--cvh-text-on-dark-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  font-family: 'IBM Plex Sans', sans-serif;
}

.cvh-faq--light .cvh-faq__question {
  color: var(--cvh-text-on-light-primary);
}

.cvh-faq__question:hover {
  color: var(--cvh-accent-gold);
}

.cvh-faq--light .cvh-faq__question:hover {
  color: var(--cvh-accent-gold);
}

.cvh-faq__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid var(--cvh-border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--cvh-text-on-dark-muted);
  transition: transform var(--cvh-transition), background var(--cvh-transition);
}

.cvh-faq--light .cvh-faq__icon {
  border-color: var(--cvh-border-light);
  color: var(--cvh-text-on-light-muted);
}

.cvh-faq__item.is-open .cvh-faq__icon {
  transform: rotate(45deg);
  background: var(--cvh-accent-gold);
  border-color: var(--cvh-accent-gold);
  color: #fff;
}

.cvh-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.cvh-faq__item.is-open .cvh-faq__answer {
  max-height: 600px;
}

.cvh-faq__answer-inner {
  padding-bottom: 20px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--cvh-text-on-dark-muted);
}

.cvh-faq--light .cvh-faq__answer-inner {
  color: var(--cvh-text-on-light-muted);
}

/* ========================
   TEAM CARDS
   ======================== */

.cvh-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.cvh-team-card {
  background: var(--cvh-bg-page-white);
  border: 1px solid var(--cvh-border-light);
  border-radius: var(--cvh-radius-lg);
  overflow: hidden;
}

.cvh-team-card__avatar {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--cvh-bg-section-light);
  position: relative;
}

.cvh-team-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.cvh-team-card__initials {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 40px;
  color: var(--cvh-text-on-light-secondary);
  background: var(--cvh-bg-section-light);
}

.cvh-team-card__body {
  padding: 24px;
}

.cvh-team-card__name {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 20px;
  color: var(--cvh-text-on-light-primary);
  margin-bottom: 4px;
}

.cvh-team-card__role {
  font-size: 13px;
  font-weight: 500;
  color: var(--cvh-accent-green);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.cvh-team-card__bio {
  font-size: 14px;
  line-height: 1.65;
  color: var(--cvh-text-on-light-muted);
}

/* ========================
   CONTACT FORM
   ======================== */

.cvh-contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.cvh-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.cvh-form-group:last-child {
  margin-bottom: 0;
}

.cvh-form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--cvh-text-on-light-primary);
  letter-spacing: 0.02em;
}

.cvh-form-input,
.cvh-form-select,
.cvh-form-textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--cvh-border-light);
  border-radius: var(--cvh-radius);
  font-size: 14px;
  color: var(--cvh-text-on-light-primary);
  background: var(--cvh-bg-page-white);
  transition: border-color var(--cvh-transition);
}

.cvh-form-input::placeholder,
.cvh-form-textarea::placeholder {
  color: #9aadbe;
}

.cvh-form-input:focus,
.cvh-form-select:focus,
.cvh-form-textarea:focus {
  border-color: var(--cvh-accent-green);
  outline: none;
}

.cvh-form-textarea {
  resize: vertical;
  min-height: 120px;
}

.cvh-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cvh-form-success {
  display: none;
  padding: 20px 24px;
  background: rgba(26,122,74,0.1);
  border: 1px solid rgba(26,122,74,0.3);
  border-radius: var(--cvh-radius);
  color: var(--cvh-accent-green);
  font-size: 15px;
  font-weight: 500;
}

.cvh-form-success.is-visible {
  display: block;
}

.cvh-contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.cvh-contact-info__title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 28px;
  color: var(--cvh-text-on-light-primary);
  margin-bottom: 8px;
}

.cvh-contact-info__sub {
  font-size: 15px;
  color: var(--cvh-text-on-light-muted);
  line-height: 1.65;
}

.cvh-contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.cvh-contact-detail__icon {
  width: 38px;
  height: 38px;
  border-radius: var(--cvh-radius);
  background: rgba(26,122,74,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cvh-accent-green);
  font-size: 15px;
  flex-shrink: 0;
}

.cvh-contact-detail__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cvh-text-on-light-muted);
  margin-bottom: 2px;
}

.cvh-contact-detail__value {
  font-size: 14px;
  color: var(--cvh-text-on-light-primary);
  font-weight: 500;
}

.cvh-contact-detail__value a {
  color: var(--cvh-accent-green);
}

.cvh-contact-detail__value a:hover {
  text-decoration: underline;
}

/* ========================
   BLOG
   ======================== */

.cvh-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.cvh-blog-card {
  background: var(--cvh-bg-page-white);
  border: 1px solid var(--cvh-border-light);
  border-radius: var(--cvh-radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--cvh-transition), transform var(--cvh-transition);
}

.cvh-blog-card:hover {
  box-shadow: var(--cvh-shadow);
  transform: translateY(-2px);
}

.cvh-blog-card__cover,
.cvh-blog-card__img-link {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--cvh-bg-section-light);
  display: block;
}

.cvh-blog-card__cover img,
.cvh-blog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.cvh-blog-card:hover .cvh-blog-card__cover img,
.cvh-blog-card:hover .cvh-blog-card__img {
  transform: scale(1.04);
}

.cvh-blog-card__category {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cvh-accent-green);
}

.cvh-blog-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid var(--cvh-border-light);
}

.cvh-blog-card__author {
  font-size: 12px;
  font-weight: 500;
  color: var(--cvh-text-on-light-muted);
}

.cvh-blog-card__read-more {
  font-size: 12px;
  font-weight: 600;
  color: var(--cvh-accent-green);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.cvh-blog-card__read-more:hover {
  text-decoration: underline;
}

.cvh-blog-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}

.cvh-blog-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--cvh-text-on-light-muted);
}

.cvh-blog-card__date {
  font-family: 'IBM Plex Mono', monospace;
}

.cvh-blog-card__title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 18px;
  line-height: 1.3;
  color: var(--cvh-text-on-light-primary);
  flex: 1;
}

.cvh-blog-card:hover .cvh-blog-card__title {
  color: var(--cvh-accent-green);
}

.cvh-blog-card__excerpt {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--cvh-text-on-light-muted);
}

.cvh-blog-card__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--cvh-accent-green);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.cvh-blog-card__link:hover {
  text-decoration: underline;
}

.cvh-blog-card--featured {
  grid-column: span 2;
  grid-row: span 1;
  flex-direction: row;
}

.cvh-blog-card--featured .cvh-blog-card__cover,
.cvh-blog-card--featured .cvh-blog-card__img-link {
  width: 48%;
  aspect-ratio: auto;
  flex-shrink: 0;
}

.cvh-blog-card--featured .cvh-blog-card__body {
  padding: 32px;
  justify-content: center;
}

.cvh-blog-card--featured .cvh-blog-card__title {
  font-size: 22px;
}

/* ========================
   ARTICLE PAGE
   ======================== */

.cvh-article-hero {
  background: var(--cvh-bg-deep-navy);
  padding-top: calc(var(--cvh-nav-h) + 56px);
  padding-bottom: 56px;
}

.cvh-article-hero__inner {
  width: 100%;
  max-width: var(--cvh-max-w);
  margin-inline: auto;
  padding-inline: 40px;
}

.cvh-article-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--cvh-accent-green-light);
  margin-bottom: 28px;
  transition: gap var(--cvh-transition);
}

.cvh-article-back:hover {
  gap: 10px;
}

.cvh-article-hero__title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(26px, 3.5vw, 42px);
  line-height: 1.15;
  color: var(--cvh-text-on-dark-primary);
  margin-bottom: 20px;
  max-width: 760px;
}

.cvh-article-hero__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cvh-article-hero__date {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--cvh-text-on-dark-muted);
}

.cvh-article-hero__tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 3px;
  background: rgba(26,122,74,0.2);
  color: var(--cvh-accent-green-light);
  border: 1px solid rgba(26,122,74,0.3);
}

.cvh-article-cover {
  width: 100%;
  max-width: var(--cvh-prose-w);
  margin-inline: auto;
  margin-bottom: 48px;
  border-radius: var(--cvh-radius-lg);
  overflow: hidden;
}

.cvh-article-cover img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: center;
  display: block;
}

.cvh-article-body {
  background: var(--cvh-bg-page-white);
  padding-block: 64px;
}

.cvh-article-content {
  max-width: var(--cvh-prose-w);
  margin-inline: auto;
  padding-inline: 40px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--cvh-text-on-light-secondary);
}

.cvh-article-content h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 26px;
  color: var(--cvh-text-on-light-primary);
  margin-top: 48px;
  margin-bottom: 16px;
}

.cvh-article-content h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 21px;
  color: var(--cvh-text-on-light-primary);
  margin-top: 36px;
  margin-bottom: 12px;
}

.cvh-article-content p {
  margin-bottom: 20px;
}

.cvh-article-content ul,
.cvh-article-content ol {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 20px;
}

.cvh-article-content ol {
  list-style: decimal;
}

.cvh-article-content li {
  margin-bottom: 6px;
}

.cvh-article-content a {
  color: var(--cvh-accent-green);
  text-decoration: underline;
}

.cvh-article-content blockquote {
  border-left: 3px solid var(--cvh-accent-green);
  padding-left: 20px;
  margin: 28px 0;
  color: var(--cvh-text-on-light-muted);
  font-style: italic;
}

.cvh-article-content pre {
  background: var(--cvh-bg-section-light);
  border: 1px solid var(--cvh-border-light);
  border-radius: var(--cvh-radius);
  padding: 20px;
  overflow-x: auto;
  max-width: 100%;
  margin-bottom: 20px;
}

.cvh-article-content code {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
}

/* ========================
   AUTH / LOGIN
   ======================== */

.cvh-auth-page {
  min-height: 100vh;
  background: var(--cvh-bg-deep-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.cvh-auth-card {
  width: 100%;
  max-width: 440px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--cvh-border-dark);
  border-radius: var(--cvh-radius-lg);
  padding: 48px 44px;
}

.cvh-auth-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

.cvh-auth-logo img {
  height: 32px;
  width: auto;
}

.cvh-auth-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 26px;
  color: var(--cvh-text-on-dark-primary);
  text-align: center;
  margin-bottom: 8px;
}

.cvh-auth-sub {
  font-size: 14px;
  color: var(--cvh-text-on-dark-muted);
  text-align: center;
  margin-bottom: 32px;
}

.cvh-auth-form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--cvh-text-on-dark-muted);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.cvh-auth-input {
  width: 100%;
  padding: 11px 14px;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid var(--cvh-border-dark);
  border-radius: var(--cvh-radius);
  color: var(--cvh-text-on-dark-primary);
  font-size: 14px;
  transition: border-color var(--cvh-transition);
  margin-bottom: 18px;
  display: block;
}

.cvh-auth-input::placeholder {
  color: #5a7a96;
}

.cvh-auth-input:focus {
  border-color: var(--cvh-accent-green-light);
  outline: none;
}

.cvh-auth-btn {
  width: 100%;
  padding: 12px 24px;
  background: var(--cvh-accent-gold);
  color: var(--cvh-bg-deep-navy);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--cvh-radius);
  cursor: pointer;
  border: none;
  transition: background var(--cvh-transition);
  margin-bottom: 20px;
}

.cvh-auth-btn:hover {
  background: #b5751f;
}

.cvh-auth-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  font-size: 13px;
  color: var(--cvh-text-on-dark-muted);
}

.cvh-auth-links a {
  color: #2ec870;
}

.cvh-auth-links a:hover {
  text-decoration: underline;
}

.cvh-auth-divider {
  width: 100%;
  border: none;
  border-top: 1px solid var(--cvh-border-dark);
  margin: 20px 0;
}

.cvh-auth-legal {
  text-align: center;
  font-size: 12px;
  color: var(--cvh-text-on-dark-muted);
  margin-top: 20px;
  line-height: 1.6;
}

.cvh-auth-legal a {
  color: var(--cvh-text-on-dark-muted);
  text-decoration: underline;
}

.cvh-auth-error {
  padding: 10px 14px;
  background: rgba(200,80,80,0.12);
  border: 1px solid rgba(200,80,80,0.3);
  border-radius: var(--cvh-radius);
  color: #f08080;
  font-size: 13px;
  margin-bottom: 16px;
  display: none;
}

.cvh-auth-error.is-visible {
  display: block;
}

.cvh-auth-confirm {
  text-align: center;
  padding: 32px 0;
  display: none;
}

.cvh-auth-confirm.is-visible {
  display: block;
}

.cvh-auth-confirm__icon {
  font-size: 40px;
  color: var(--cvh-accent-green-light);
  margin-bottom: 16px;
}

.cvh-auth-confirm__msg {
  font-size: 15px;
  color: var(--cvh-text-on-dark-primary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.cvh-auth-confirm__note {
  font-size: 13px;
  color: var(--cvh-text-on-dark-muted);
  line-height: 1.6;
}

/* ========================
   LEGAL PAGES
   ======================== */

.cvh-legal-page {
  background: var(--cvh-bg-page-white);
  padding-top: var(--cvh-nav-h);
}

.cvh-legal-content {
  max-width: var(--cvh-prose-w);
  margin-inline: auto;
  padding: 64px 40px;
  color: var(--cvh-text-on-light-secondary);
  font-size: 15px;
  line-height: 1.8;
}

.cvh-legal-content h1 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 36px;
  color: var(--cvh-text-on-light-primary);
  margin-bottom: 8px;
}

.cvh-legal-content .cvh-legal-date {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--cvh-text-on-light-muted);
  margin-bottom: 40px;
}

.cvh-legal-content h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 22px;
  color: var(--cvh-text-on-light-primary);
  margin-top: 40px;
  margin-bottom: 12px;
}

.cvh-legal-content p {
  margin-bottom: 16px;
}

.cvh-legal-content ul,
.cvh-legal-content ol {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.cvh-legal-content li {
  margin-bottom: 4px;
}

.cvh-legal-content a {
  color: var(--cvh-accent-green);
  text-decoration: underline;
}

/* ========================
   FOOTER
   ======================== */

.cvh-footer {
  background: var(--cvh-bg-deep-navy);
  border-top: 1px solid var(--cvh-border-dark);
  padding-top: 64px;
  padding-bottom: 40px;
}

.cvh-footer__top {
  width: 100%;
  max-width: var(--cvh-max-w);
  margin-inline: auto;
  padding-inline: 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.cvh-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cvh-footer__logo img {
  height: 30px;
  width: auto;
}

.cvh-footer__tagline {
  font-size: 13.5px;
  color: var(--cvh-text-on-dark-muted);
  line-height: 1.6;
  max-width: 240px;
}

.cvh-footer__col-title {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cvh-text-on-dark-muted);
  margin-bottom: 16px;
}

.cvh-footer__col-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cvh-footer__col-link {
  font-size: 13.5px;
  color: var(--cvh-text-on-dark-muted);
  transition: color var(--cvh-transition);
}

.cvh-footer__col-link:hover {
  color: var(--cvh-text-on-dark-primary);
}

.cvh-footer__bottom {
  width: 100%;
  max-width: var(--cvh-max-w);
  margin-inline: auto;
  padding-inline: 40px;
  border-top: 1px solid var(--cvh-border-dark);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.cvh-footer__copy {
  font-size: 12px;
  color: var(--cvh-text-on-dark-muted);
}

.cvh-footer__legal-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cvh-footer__legal-link {
  font-size: 12px;
  color: var(--cvh-text-on-dark-muted);
  transition: color var(--cvh-transition);
}

.cvh-footer__legal-link:hover {
  color: var(--cvh-text-on-dark-primary);
}

/* ========================
   COOKIE BANNER
   ======================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--cvh-bg-deep-navy);
  border-top: 1px solid var(--cvh-border-dark);
  z-index: 950;
  padding: 20px 0;
}

.cookie-banner__inner {
  width: 100%;
  max-width: var(--cvh-max-w);
  margin-inline: auto;
  padding-inline: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner__text {
  font-size: 13.5px;
  color: var(--cvh-text-on-dark-muted);
  line-height: 1.6;
  flex: 1;
  min-width: 200px;
}

.cookie-banner__text a {
  color: var(--cvh-accent-green-light);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-banner__btn {
  padding: 9px 20px;
  border-radius: var(--cvh-radius);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--cvh-transition), color var(--cvh-transition), border-color var(--cvh-transition);
  font-family: 'IBM Plex Sans', sans-serif;
}

.cookie-banner__btn--primary {
  background: var(--cvh-accent-gold);
  color: var(--cvh-bg-deep-navy);
  border-color: var(--cvh-accent-gold);
}

.cookie-banner__btn--primary:hover {
  background: #c28022;
  border-color: #c28022;
}

.cookie-banner__btn--secondary {
  background: transparent;
  color: var(--cvh-text-on-dark-muted);
  border-color: var(--cvh-border-dark);
}

.cookie-banner__btn--secondary:hover {
  border-color: var(--cvh-text-on-dark-muted);
  color: var(--cvh-text-on-dark-primary);
}

/* ========================
   UTILITIES / HELPERS
   ======================== */

.cvh-text-center { text-align: center; }
.cvh-text-muted { color: var(--cvh-text-on-light-muted); }
.cvh-text-muted-dark { color: var(--cvh-text-on-dark-muted); }
.cvh-text-green { color: var(--cvh-accent-green-light); }
.cvh-text-gold { color: var(--cvh-accent-gold); }
.cvh-mt-0 { margin-top: 0; }
.cvh-mt-8 { margin-top: 8px; }
.cvh-mt-16 { margin-top: 16px; }
.cvh-mt-24 { margin-top: 24px; }
.cvh-mt-32 { margin-top: 32px; }
.cvh-mb-8 { margin-bottom: 8px; }
.cvh-mb-16 { margin-bottom: 16px; }
.cvh-mb-24 { margin-bottom: 24px; }
.cvh-mb-32 { margin-bottom: 32px; }
.cvh-mb-48 { margin-bottom: 48px; }
.cvh-flex-center { display: flex; align-items: center; justify-content: center; }

/* ========================
   ABOUT MISSION / VALUES
   ======================== */

.cvh-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.cvh-value-card {
  padding: 28px;
  border-radius: var(--cvh-radius-lg);
  border: 1px solid var(--cvh-border-light);
  background: var(--cvh-bg-page-white);
}

.cvh-value-card__icon {
  font-size: 22px;
  color: var(--cvh-accent-green);
  margin-bottom: 14px;
}

.cvh-value-card__title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 18px;
  color: var(--cvh-text-on-light-primary);
  margin-bottom: 8px;
}

.cvh-value-card__text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--cvh-text-on-light-muted);
}

/* ========================
   CTA STRIP
   ======================== */

.cvh-cta-strip {
  background: var(--cvh-bg-slate);
  padding-block: 80px;
  text-align: center;
}

.cvh-cta-strip__title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(26px, 3vw, 38px);
  color: var(--cvh-text-on-dark-primary);
  margin-bottom: 16px;
}

.cvh-cta-strip__sub {
  font-size: 16px;
  color: var(--cvh-text-on-dark-muted);
  margin-bottom: 36px;
  max-width: 520px;
  margin-inline: auto;
}

.cvh-cta-strip__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ========================
   INTEGRATION STRIP / LOGOS
   ======================== */

.cvh-logos-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.cvh-logo-chip {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--cvh-border-dark);
  border-radius: var(--cvh-radius);
  padding: 10px 20px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  color: var(--cvh-text-on-dark-muted);
  letter-spacing: 0.04em;
}

/* ========================
   FADE-IN ANIMATION (with failsafe)
   ======================== */

.cvh-fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.cvh-fade-in.is-visible {
  opacity: 1;
  transform: none;
}

/* ========================
   TABLE SCROLL WRAPPER
   ======================== */

.cvh-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* ========================
   RESPONSIVE
   ======================== */

@media (max-width: 1024px) {
  .cvh-container,
  .cvh-nav__inner,
  .cvh-footer__top,
  .cvh-footer__bottom,
  .cvh-hero__inner,
  .cvh-subhero__inner,
  .cvh-article-hero__inner {
    padding-inline: 32px;
  }

  .cvh-hero__inner {
    gap: 40px;
  }

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

  .cvh-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

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

  .cvh-pricing-card:last-child {
    grid-column: span 2;
    max-width: 440px;
    margin-inline: auto;
    width: 100%;
  }

  .cvh-contact-layout {
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .cvh-container,
  .cvh-nav__inner,
  .cvh-footer__top,
  .cvh-footer__bottom,
  .cvh-hero__inner,
  .cvh-subhero__inner,
  .cvh-article-hero__inner,
  .cvh-article-content,
  .cvh-legal-content {
    padding-inline: 20px;
  }

  .cvh-section {
    padding-block: 64px;
  }

  .cvh-section--lg {
    padding-block: 80px;
  }

  .cvh-nav__links,
  .cvh-nav__actions {
    display: none;
  }

  .cvh-hamburger {
    display: flex;
  }

  .cvh-hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-block: 56px;
  }

  .cvh-hero {
    min-height: auto;
    padding-bottom: 60px;
  }

  .cvh-compliance-table {
    max-width: 100%;
  }

  .cvh-subhero__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cvh-stat-band {
    grid-template-columns: 1fr;
  }

  .cvh-stat-item {
    border-right: none;
    border-bottom: 1px solid var(--cvh-border-dark);
  }

  .cvh-stat-item:last-child {
    border-bottom: none;
  }

  .cvh-stat-band--light .cvh-stat-item {
    border-bottom-color: var(--cvh-border-light);
  }

  .cvh-feature-grid {
    grid-template-columns: 1fr;
  }

  .cvh-step {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cvh-step--flip {
    direction: ltr;
  }

  .cvh-testimonial-grid {
    grid-template-columns: 1fr;
  }

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

  .cvh-pricing-card:last-child {
    grid-column: span 1;
    max-width: none;
  }

  .cvh-blog-grid {
    grid-template-columns: 1fr;
  }

  .cvh-blog-card--featured {
    grid-column: span 1;
    flex-direction: column;
  }

  .cvh-blog-card--featured .cvh-blog-card__cover {
    width: 100%;
    aspect-ratio: 16/9;
  }

  .cvh-team-grid {
    grid-template-columns: 1fr;
  }

  .cvh-contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cvh-form-row {
    grid-template-columns: 1fr;
  }

  .cvh-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .cvh-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .cvh-values-grid {
    grid-template-columns: 1fr;
  }

  .cvh-section-header {
    margin-bottom: 40px;
  }

  .cvh-auth-card {
    padding: 36px 28px;
  }

  .cookie-banner__inner {
    padding-inline: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .cookie-banner__actions {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .cvh-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cvh-hero__actions .cvh-btn {
    text-align: center;
    justify-content: center;
  }

  .cvh-cta-strip__actions {
    flex-direction: column;
    align-items: center;
  }

  .cvh-footer__top {
    grid-template-columns: 1fr;
  }

  .cvh-logos-strip {
    gap: 16px;
  }

  .cvh-pricing-card {
    padding: 28px 22px;
  }
}

.cvh-how-brief-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 768px) {
  .cvh-how-brief-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .cvh-how-brief-grid {
    grid-template-columns: 1fr;
  }
}

/* JS state hooks on <body> — nav script reads these to apply correct link contrast */
/* No visual styling needed; body is already display:block. Defined to satisfy orphan check. */
.cvh-page--dark-top .cvh-nav,
.cvh-page--light-top .cvh-nav {
  contain: layout style;
}

/* Contact form container */
.cvh-contact-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Step content column within a step layout row */
.cvh-step__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Pricing subhero modifier */
.cvh-subhero--pricing {
  padding-bottom: 56px;
}

/* Auth form JS-toggled views — JS hook, initial state set by display:none inline */
.cvh-forgot-form-view,
.cvh-forgot-confirm-view,
.cvh-forgot-form,
.cvh-login-form {
  width: 100%;
}
