/* ==========================================================================
   RVA Business Consultancy — Stylesheet v2
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
  --navy:       #081520;
  --blue-900:   #0F2540;
  --blue-800:   #1A4B82;
  --blue-700:   #1D5595;
  --blue-500:   #2E6DB4;
  --blue-300:   #AACAEE;
  --blue-100:   #E6EAEF;
  --blue-50:    #F0F5FB;

  --gold:       #C4922A;
  --gold-light: #DBA93C;
  --gold-pale:  #F7EDD8;

  --white:      #FFFFFF;
  --gray-50:    #F8FAFC;
  --gray-100:   #EFF2F6;
  --gray-200:   #E2E8F0;
  --gray-300:   #CBD5E1;
  --gray-400:   #94A3B8;
  --gray-600:   #475569;
  --gray-800:   #1E293B;
  --gray-900:   #0F172A;

  --text-dark:  #0C1929;
  --text-body:  #334155;
  --text-muted: #64748B;

  --border:        #E2E8F0;
  --border-strong: #CBD5E1;

  --shadow-sm:   0 1px 4px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg:   0 12px 40px rgba(0,0,0,0.11), 0 4px 12px rgba(0,0,0,0.05);
  --shadow-xl:   0 24px 64px rgba(0,0,0,0.14), 0 8px 24px rgba(0,0,0,0.06);
  --shadow-blue: 0 8px 28px rgba(26,75,130,0.22);
  --shadow-gold: 0 4px 20px rgba(196,146,42,0.30);

  --r-sm:   4px;
  --r-md:   8px;
  --r-lg:   12px;
  --r-xl:   18px;
  --r-2xl:  28px;
  --r-full: 9999px;

  --t:      0.22s ease;
  --t-slow: 0.40s cubic-bezier(0.4, 0, 0.2, 1);

  --font-head: 'Inter', system-ui, sans-serif;
  --font-body: 'Source Sans Pro', system-ui, sans-serif;
}

/* --------------------------------------------------------------------------
   2. RESET & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--gold-pale); color: var(--text-dark); }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
}

img  { max-width: 100%; height: auto; display: block; }
a    { color: var(--blue-800); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--blue-700); }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select, textarea { font-family: inherit; }
.text-link-placeholder { color: var(--blue-800); text-decoration: underline; text-underline-offset: 2px; }

/* --------------------------------------------------------------------------
   3. TYPOGRAPHY
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.15;
  letter-spacing: -0.028em;
}

h1 { font-size: clamp(2.625rem, 5.5vw, 4.5rem); font-weight: 800; letter-spacing: -0.038em; }
h2 { font-size: clamp(1.875rem, 3.5vw, 2.875rem); letter-spacing: -0.03em; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 600; color: var(--text-dark); }

/* --------------------------------------------------------------------------
   4. LAYOUT
   -------------------------------------------------------------------------- */
.container       { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.75rem; }
.container--wide { max-width: 1400px; }
.container--narrow { max-width: 760px; }

.section { padding: 6.5rem 0; }
.section--dark      { background: var(--navy);    color: var(--white); }
.section--blue-deep { background: var(--blue-900); color: var(--white); }
.section--pale      { background: var(--gray-50); }
.section--blue-pale { background: var(--blue-50); }

/* Section header */
.section-header { text-align: center; margin-bottom: 4rem; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}

.section-title { margin-bottom: 1rem; }
.section-sub {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.78;
}

.section--dark .section-title,
.section--blue-deep .section-title { color: var(--white); }
.section--dark .section-sub,
.section--blue-deep .section-sub   { color: rgba(255,255,255,0.62); }
.section--dark .eyebrow,
.section--blue-deep .eyebrow       { color: var(--gold-light); }
.section--dark .eyebrow::before,
.section--blue-deep .eyebrow::before { background: var(--gold-light); }

.divider { width: 44px; height: 3px; background: var(--gold); margin: 1.375rem 0; border-radius: 2px; }
.divider--center { margin: 1.375rem auto; }

/* --------------------------------------------------------------------------
   5. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.875rem;
  font-family: var(--font-head);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  border-radius: var(--r-md);
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  transition: all var(--t);
  line-height: 1;
  position: relative;
  overflow: hidden;
}

.btn svg { width: 17px; height: 17px; flex-shrink: 0; transition: transform var(--t); position: relative; z-index: 1; }
.btn span, .btn > * { position: relative; z-index: 1; }
.btn:hover svg.arrow { transform: translateX(3px); }
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

/* Gold / Primary */
.btn--gold {
  background: linear-gradient(135deg, var(--gold) 0%, #D4A030 60%, var(--gold) 100%);
  background-size: 200% auto;
  color: var(--navy);
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}
.btn--gold::after {
  content: '';
  position: absolute;
  top: 0; left: -100%; bottom: 0;
  width: 60%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transition: left 0.55s ease;
}
.btn--gold:hover {
  background-position: right center;
  color: var(--navy);
  box-shadow: 0 8px 32px rgba(196,146,42,0.45);
  transform: translateY(-2px);
}
.btn--gold:hover::after { left: 160%; }

/* Ghost white */
.btn--ghost {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.28);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover {
  border-color: rgba(255,255,255,0.75);
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

/* Blue solid */
.btn--blue {
  background: var(--blue-800);
  color: var(--white);
  border-color: var(--blue-800);
  box-shadow: var(--shadow-blue);
}
.btn--blue::after {
  content: '';
  position: absolute;
  top: 0; left: -100%; bottom: 0;
  width: 60%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left 0.55s ease;
}
.btn--blue:hover {
  background: var(--blue-900);
  border-color: var(--blue-900);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(26,75,130,0.35);
}
.btn--blue:hover::after { left: 160%; }

/* Outline */
.btn--outline {
  background: transparent;
  color: var(--blue-800);
  border-color: var(--blue-800);
}
.btn--outline:hover { background: var(--blue-800); color: var(--white); }

/* Sizes */
.btn--lg { padding: 1.125rem 2.375rem; font-size: 1rem; }
.btn--sm { padding: 0.625rem 1.25rem;  font-size: 0.875rem; }
.btn--full { width: 100%; }

/* --------------------------------------------------------------------------
   6. NAVIGATION
   -------------------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.375rem 0;
  transition: padding 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
}
.nav.scrolled {
  background: rgba(8, 21, 32, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  padding: 0.875rem 0;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06), 0 4px 24px rgba(0,0,0,0.25);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  flex-direction: row;
  line-height: 1;
  text-decoration: none;
  flex-shrink: 0;
  gap: 0.625rem;
}
.nav__logo-img {
  width: 2.75rem;
  height: 2.75rem;
  object-fit: contain;
  flex-shrink: 0;
}
.nav__logo-text { display: flex; flex-direction: column; gap: 3px; }
.nav__logo-mark {
  font-family: var(--font-head);
  font-size: 1.5625rem;
  font-weight: 800;
  letter-spacing: -0.045em;
  color: var(--white);
}
.nav__logo-mark .gold { color: var(--gold); }
.nav__logo-sub {
  font-family: var(--font-head);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
}

.nav__links { display: flex; align-items: center; gap: 0.125rem; list-style: none; }
.nav__links a {
  font-family: var(--font-head);
  font-size: 0.875rem; font-weight: 500;
  color: rgba(255,255,255,0.72);
  padding: 0.5rem 0.875rem;
  border-radius: var(--r-sm);
  transition: all var(--t);
  letter-spacing: 0.01em;
}
.nav__links a:hover { color: var(--white); background: rgba(255,255,255,0.07); }

.nav__cta { flex-shrink: 0; }

.nav__toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  margin-right: -0.5rem;
  border-radius: var(--r-md);
}
.nav__toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__drawer {
  display: block;
  position: fixed;
  top: 0; right: -100%;
  width: min(300px, 85vw);
  height: 100vh;
  min-height: 100dvh;
  background: var(--navy);
  z-index: 99;
  padding: 2rem 1.75rem;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 1px solid rgba(255,255,255,0.07);
  overflow-y: auto;
}
.nav__drawer.open { right: 0; }
.nav__drawer-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 2rem;
  text-decoration: none;
}
.nav__drawer-links { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.nav__drawer-links a {
  display: block;
  font-family: var(--font-head);
  font-size: 1rem; font-weight: 500;
  color: rgba(255,255,255,0.8);
  padding: 0.75rem 1rem;
  border-radius: var(--r-md);
  transition: all var(--t);
}
.nav__drawer-links a:hover { color: var(--white); background: rgba(255,255,255,0.07); }
.nav__drawer-cta { margin-top: 1.5rem; }

.nav__overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 98;
  opacity: 0;
  transition: opacity 0.28s ease;
}
.nav__overlay.active { opacity: 1; }

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

/* --------------------------------------------------------------------------
   7. HERO
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(155deg, var(--navy) 0%, #0D2035 55%, #0A2A4A 100%);
  overflow: hidden;
  padding: 7rem 0 5rem;
}

/* Subtle grid */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}
/* Gold horizon line */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196,146,42,0.4) 50%, transparent);
}

.hero__glow {
  position: absolute;
  top: -200px; right: -100px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(30,85,149,0.3) 0%, transparent 65%);
  pointer-events: none;
}
.hero__glow2 {
  position: absolute;
  bottom: -60px; left: -60px;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(196,146,42,0.07) 0%, transparent 70%);
  pointer-events: none;
}

/* Split layout */
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-family: var(--font-head);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold);
  margin-bottom: 1.5rem;
  max-width: 760px;
  opacity: 1;
  transform: none;
}
.hero__eyebrow-rule { display: block; width: 32px; height: 1.5px; background: var(--gold); border-radius: 2px; }
.hero__eyebrow-sectors { display: inline; }

.hero__headline {
  font-size: clamp(2.75rem, 5.5vw, 4.625rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.04;
  letter-spacing: -0.042em;
  margin-bottom: 1.75rem;
  opacity: 1;
  transform: none;
}
.hero__headline em { font-style: normal; color: var(--gold); }

.hero__sub {
  font-size: clamp(1rem, 1.8vw, 1.175rem);
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 2.75rem;
  opacity: 1;
  transform: none;
}

.hero-service-feature {
  max-width: 520px;
  margin: -1rem 0 2.5rem;
  padding: 1.25rem 1.375rem;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-xl);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
  opacity: 1;
  transform: none;
}
.hero-service-feature__eyebrow {
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.hero-service-feature__slides { position: relative; }
.hero-service-feature__slide { display: none; }
.hero-service-feature__slide.active { display: block; }
.hero-service-feature__slide h2 {
  color: var(--white);
  font-size: 1.0625rem;
  letter-spacing: -0.015em;
  margin-bottom: 0.375rem;
}
.hero-service-feature__slide p {
  color: rgba(255,255,255,0.62);
  font-size: 0.9375rem;
  line-height: 1.65;
}
.hero-service-feature__controls {
  display: flex;
  gap: 0.25rem;
  margin-top: 0.5rem;
}
.hero-service-feature__controls button {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  display: grid;
  place-items: center;
  transition: background var(--t);
}
.hero-service-feature__controls button::before {
  content: '';
  width: 1.5rem;
  height: 0.35rem;
  border-radius: var(--r-full);
  background: rgba(255,255,255,0.22);
  transition: background var(--t), width var(--t);
}
.hero-service-feature__controls button.active::before {
  width: 2rem;
  background: var(--gold);
}
.hero-service-feature__controls button:hover { background: rgba(255,255,255,0.07); }
.hero-service-feature__controls button:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: -2px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.25rem;
  opacity: 1;
  transform: none;
}

.hero__stats {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  opacity: 1;
  transform: none;
}
.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 1.75rem;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.hero__stat:first-child { padding-left: 0; }
.hero__stat:last-child  { border-right: none; }
.hero__stat-val {
  font-family: var(--font-head);
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.04em;
}
.hero__stat-lbl {
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.42);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-head);
  font-weight: 500;
}

/* ---- Hero visual panel ---- */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.5rem;
  opacity: 1;
  transform: none;
}

/* Glassmorphism report card */
.hv-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 22px;
  padding: 1.875rem;
  width: 100%;
  max-width: 330px;
  box-shadow:
    0 24px 64px rgba(0,0,0,0.38),
    0 4px 16px rgba(0,0,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.1);
  position: relative;
  z-index: 2;
}

.hv-card__header {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hv-card__dot {
  width: 8px; height: 8px;
  background: #4ADE80;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(74,222,128,0.2);
  flex-shrink: 0;
}
.hv-card__title {
  font-family: var(--font-head);
  font-size: 0.8125rem; font-weight: 700;
  color: var(--white);
  flex: 1;
}
.hv-card__sector {
  font-family: var(--font-head);
  font-size: 0.625rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  background: rgba(196,146,42,0.18);
  color: var(--gold);
  padding: 0.25rem 0.625rem;
  border-radius: var(--r-full);
  border: 1px solid rgba(196,146,42,0.25);
}

.hv-score {
  display: flex;
  align-items: center;
  gap: 1.125rem;
  padding: 0.875rem 0 1.25rem;
}
.hv-score__ring-wrap {
  position: relative;
  width: 72px; height: 72px;
  flex-shrink: 0;
}
.hv-score__ring {
  transform: rotate(-90deg);
  width: 72px; height: 72px;
}
.hv-score__ring-bg  { fill: none; stroke: rgba(255,255,255,0.08); stroke-width: 6; }
.hv-score__ring-fill {
  fill: none;
  stroke: url(#hvGrad);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 207;
  stroke-dashoffset: 207;
  transition: stroke-dashoffset 1.8s cubic-bezier(0.4, 0, 0.2, 1) 0.8s;
}
.hv-score__ring-fill.animated { stroke-dashoffset: 50; }/* 76/100 */

.hv-score__num {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 1.375rem; font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.hv-score__info { flex: 1; }
.hv-zone {
  font-family: var(--font-head);
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 0.3rem 0.75rem;
  border-radius: var(--r-full);
  display: inline-block;
  margin-bottom: 0.375rem;
  background: rgba(217,119,6,0.2);
  color: #FCD34D;
  border: 1px solid rgba(217,119,6,0.3);
}
.hv-score__label {
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase; letter-spacing: 0.08em;
  font-family: var(--font-head);
}

.hv-metrics {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hv-metric {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5625rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.055);
}
.hv-metric:last-child { border-bottom: none; }
.hv-metric__lbl { font-size: 0.75rem; color: rgba(255,255,255,0.5); font-family: var(--font-head); font-weight: 500; }
.hv-metric__val { font-family: var(--font-head); font-size: 0.8125rem; font-weight: 700; }
.hv-metric__val--pos  { color: #4ADE80; }
.hv-metric__val--warn { color: #FCD34D; }

.hv-footer {
  margin-top: 1.125rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.38);
  text-align: center;
  font-family: var(--font-head);
  font-weight: 500;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
}
.hv-footer::before {
  content: '';
  width: 6px; height: 6px;
  background: #4ADE80;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Floating badges */
.hv-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-full);
  padding: 0.5rem 1rem;
  font-family: var(--font-head);
  font-size: 0.75rem; font-weight: 600;
  color: rgba(255,255,255,0.82);
  white-space: nowrap;
  z-index: 3;
  box-shadow: 0 4px 16px rgba(0,0,0,0.22);
}
.hv-float svg { width: 13px; height: 13px; flex-shrink: 0; color: var(--gold); }

.hv-float--1 { top: 0;      right: -0.5rem; animation: hvFloat1 6.5s ease-in-out infinite; }
.hv-float--2 { bottom: 3.5rem; left: -0.75rem; animation: hvFloat2 7.5s ease-in-out infinite 1.2s; }
.hv-float--3 { bottom: 0.5rem;  right: 0.75rem; animation: hvFloat1 5.8s ease-in-out infinite 2.4s; }

@keyframes hvFloat1 {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-9px); }
}
@keyframes hvFloat2 {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(7px); }
}

/* --------------------------------------------------------------------------
   8. SECTOR STRIP
   -------------------------------------------------------------------------- */
.sector-strip {
  background: var(--blue-900);
  padding: 1.125rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.sector-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.sector-strip__item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-head);
  font-size: 0.6875rem; font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.48);
  transition: color var(--t);
}
.sector-strip__item:hover { color: rgba(255,255,255,0.78); }
.sector-strip__item svg { width: 13px; height: 13px; color: var(--gold); flex-shrink: 0; }

/* --------------------------------------------------------------------------
   9. WHO WE HELP
   -------------------------------------------------------------------------- */
.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.who-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2.25rem;
  position: relative;
  overflow: hidden;
  transition: all var(--t-slow);
}
.who-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-800), var(--blue-300), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s ease;
}
.who-card:hover {
  box-shadow: 0 20px 60px rgba(26,75,130,0.13), 0 4px 16px rgba(0,0,0,0.06);
  border-color: transparent;
  transform: translateY(-5px);
}
.who-card:hover::before { transform: scaleX(1); }

.who-card__icon {
  width: 52px; height: 52px;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.375rem;
  transition: all var(--t-slow);
}
.who-card__icon svg { width: 24px; height: 24px; color: var(--blue-800); transition: color var(--t); }
.who-card:hover .who-card__icon { background: var(--blue-800); border-color: var(--blue-800); }
.who-card:hover .who-card__icon svg { color: var(--white); }

.who-card__tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.6875rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 0.625rem;
}
.who-card__title { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.75rem; }
.who-card__desc  { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.72; margin-bottom: 1.375rem; }
.who-card__list  { list-style: none; display: flex; flex-direction: column; gap: 0.4375rem; }
.who-card__list li {
  font-size: 0.875rem; color: var(--text-body);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.5;
}
.who-card__list li::before {
  content: '→';
  position: absolute; left: 0;
  color: var(--blue-700); font-weight: 700; font-size: 0.8rem;
}

/* --------------------------------------------------------------------------
   10. SERVICES
   -------------------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.svc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.875rem 1.625rem;
  transition: all var(--t-slow);
  position: relative;
  overflow: hidden;
}
.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-800), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.38s ease;
}
.svc-card:hover {
  box-shadow: 0 16px 48px rgba(26,75,130,0.12), 0 4px 16px rgba(0,0,0,0.05);
  border-color: transparent;
  transform: translateY(-4px);
}
.svc-card:hover::after { transform: scaleX(1); }

.svc-card__num {
  display: block;
  font-family: var(--font-head);
  font-size: 0.6875rem; font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--blue-300);
  margin-bottom: 1rem;
  transition: color var(--t-slow);
}
.svc-card:hover .svc-card__num { color: var(--gold); }

.svc-card__icon {
  width: 44px; height: 44px;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.125rem;
  transition: all var(--t-slow);
}
.svc-card__icon svg { width: 21px; height: 21px; color: var(--blue-800); transition: color var(--t); }
.svc-card__currency {
  font-family: var(--font-head);
  font-size: 1.35rem;
  line-height: 1;
  font-weight: 800;
  color: var(--blue-800);
  transition: color var(--t);
}
.svc-card:hover .svc-card__icon { background: var(--blue-800); border-color: var(--blue-800); }
.svc-card:hover .svc-card__icon svg { color: var(--white); }
.svc-card:hover .svc-card__currency { color: var(--white); }

.svc-card__title { font-size: 0.9375rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.625rem; line-height: 1.3; }
.svc-card__desc  { font-size: 0.875rem; color: var(--text-muted); line-height: 1.68; }

/* --------------------------------------------------------------------------
   11. THE RVA DIFFERENCE
   -------------------------------------------------------------------------- */
.diff-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.diff-layout__text p { color: rgba(255,255,255,0.62); font-size: 1.0625rem; line-height: 1.8; margin-bottom: 1.25rem; }

.diff-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem 2.5rem; }

.diff-item { display: flex; gap: 1.25rem; align-items: flex-start; }
.diff-item__icon {
  flex-shrink: 0;
  width: 54px; height: 54px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--t-slow);
}
.diff-item__icon svg { width: 24px; height: 24px; color: var(--gold); }
.diff-item:hover .diff-item__icon { background: rgba(196,146,42,0.12); border-color: rgba(196,146,42,0.2); }
.diff-item__title { font-size: 1.0625rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.diff-item__desc  { font-size: 0.9rem; color: rgba(255,255,255,0.58); line-height: 1.72; }

/* --------------------------------------------------------------------------
   12. HEALTH CHECK BANNER
   -------------------------------------------------------------------------- */
.hc-banner {
  background: var(--blue-50);
  border-radius: var(--r-2xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 2px 0 var(--blue-100), var(--shadow-lg);
  border: 1px solid var(--blue-100);
}
.hc-banner__content { padding: 3.75rem 3.75rem; display: flex; flex-direction: column; justify-content: center; }

.hc-banner__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.6875rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  padding: 0.4rem 1rem;
  border-radius: var(--r-full);
  width: fit-content;
  margin-bottom: 1.375rem;
}
.hc-banner__title { font-size: clamp(1.625rem, 2.5vw, 2.25rem); font-weight: 800; color: var(--blue-900); line-height: 1.18; margin-bottom: 1rem; }
.hc-banner__desc  { font-size: 1rem; color: var(--blue-800); opacity: 0.8; line-height: 1.78; margin-bottom: 1.875rem; }

.hc-banner__features { list-style: none; display: flex; flex-direction: column; gap: 0.5625rem; margin-bottom: 2rem; }
.hc-banner__features li {
  display: flex; align-items: center; gap: 0.625rem;
  font-size: 0.9rem; font-weight: 500; color: var(--blue-900);
}
.hc-banner__features li svg { width: 15px; height: 15px; color: var(--blue-700); flex-shrink: 0; }

.hc-banner__visual {
  background: linear-gradient(145deg, var(--blue-800) 0%, var(--blue-900) 100%);
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hc-banner__visual::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 36px 36px;
}

.dash-preview {
  position: relative; z-index: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: var(--r-xl);
  padding: 1.5rem;
  width: 100%; max-width: 300px;
  backdrop-filter: blur(4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.28);
}
.dash-preview__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.125rem; padding-bottom: 0.875rem; border-bottom: 1px solid rgba(255,255,255,0.07); }
.dash-preview__title  { font-family: var(--font-head); font-size: 0.8125rem; font-weight: 700; color: var(--white); }
.dash-preview__sector {
  font-family: var(--font-head);
  font-size: 0.6rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 0.25rem 0.625rem;
  border-radius: var(--r-full);
  background: rgba(196,146,42,0.18);
  color: var(--gold);
  border: 1px solid rgba(196,146,42,0.22);
}
.dash-score { text-align: center; padding: 0.875rem 0 1.125rem; }
.dash-score__num  { font-family: var(--font-head); font-size: 3.25rem; font-weight: 800; color: var(--white); line-height: 1; }
.dash-score__sub  { font-size: 0.6875rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; }
.dash-score__bar  { height: 5px; background: rgba(255,255,255,0.1); border-radius: var(--r-full); margin-top: 1rem; overflow: hidden; }
.dash-score__fill { height: 100%; width: 0%; background: linear-gradient(90deg, var(--blue-500), var(--gold)); border-radius: var(--r-full); transition: width 1.4s ease 0.3s; }

.dash-metrics { display: grid; grid-template-columns: repeat(2,1fr); gap: 0.625rem; }
.dash-metric { background: rgba(255,255,255,0.05); border-radius: var(--r-md); padding: 0.75rem; }
.dash-metric__lbl { font-size: 0.6rem; color: rgba(255,255,255,0.42); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 3px; }
.dash-metric__val { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--white); }
.dash-metric__delta { font-size: 0.7rem; margin-left: 2px; }
.dash-metric__delta.up   { color: #4ADE80; }
.dash-metric__delta.down { color: #F87171; }
.dash-footer { margin-top: 0.875rem; padding-top: 0.875rem; border-top: 1px solid rgba(255,255,255,0.07); font-size: 0.6875rem; color: rgba(255,255,255,0.38); text-align: center; font-family: var(--font-head); }

/* --------------------------------------------------------------------------
   13. TESTIMONIALS
   -------------------------------------------------------------------------- */
/* Featured pullquote */
.testi-featured {
  background: var(--navy);
  border-radius: var(--r-2xl);
  padding: 3.5rem 4rem;
  margin-bottom: 2.5rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}
.testi-featured::before {
  content: '\201C';
  position: absolute;
  top: -1.5rem; left: 2.5rem;
  font-size: 14rem;
  line-height: 1;
  color: rgba(196,146,42,0.1);
  font-family: Georgia, 'Times New Roman', serif;
  pointer-events: none;
  user-select: none;
}
.testi-featured::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(26,75,130,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.testi-featured__quote {
  font-family: var(--font-body);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 2.25rem;
  position: relative; z-index: 1;
  max-width: 880px;
}

.testi-featured__footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative; z-index: 1;
}
.testi-featured__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-800), var(--blue-700));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 1rem; font-weight: 700;
  color: var(--white); flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.1);
}
.testi-featured__name { font-family: var(--font-head); font-size: 0.9375rem; font-weight: 700; color: var(--white); }
.testi-featured__role { font-size: 0.8125rem; color: rgba(255,255,255,0.45); margin-top: 1px; }
.testi-featured__stars {
  margin-left: auto;
  display: flex; gap: 3px;
}
.testi-featured__stars svg { width: 16px; height: 16px; fill: var(--gold); color: var(--gold); }

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

.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2.125rem;
  transition: all var(--t-slow);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.testi-card::before {
  content: '\201C';
  position: absolute;
  top: 0.875rem; right: 1.375rem;
  font-size: 5rem;
  line-height: 1;
  color: var(--blue-100);
  font-family: Georgia, serif;
  transition: color var(--t-slow);
  pointer-events: none;
  user-select: none;
}
.testi-card:hover { box-shadow: 0 16px 56px rgba(26,75,130,0.11), 0 4px 16px rgba(0,0,0,0.05); border-color: var(--blue-100); }
.testi-card:hover::before { color: var(--blue-300); }

.testi-card__stars { display: flex; gap: 2px; margin-bottom: 1.125rem; }
.testi-card__stars svg { width: 14px; height: 14px; fill: var(--gold); color: var(--gold); }
.testi-card__quote {
  font-size: 0.9375rem; color: var(--text-body); line-height: 1.8; font-style: italic;
  flex: 1; margin-bottom: 1.625rem; position: relative; z-index: 1;
}
.testi-card__author { display: flex; align-items: center; gap: 0.875rem; padding-top: 1.125rem; border-top: 1px solid var(--border); }
.testi-card__avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-100), var(--blue-50));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 0.875rem; font-weight: 700;
  color: var(--blue-800); flex-shrink: 0;
  border: 1px solid var(--blue-100);
}
.testi-card__name { font-family: var(--font-head); font-size: 0.875rem; font-weight: 700; color: var(--text-dark); }
.testi-card__role { font-size: 0.8rem; color: var(--text-muted); margin-top: 1px; }

/* Grid card — expandable full testimonial */
.testi-card__full-wrap {
  display: block;
  margin: 0.75rem 0 0.25rem;
  border-top: 1px solid var(--border);
  padding-top: 0.875rem;
}
.testi-card__full-wrap.open { display: block; }
.testi-card__full-text {
  font-size: 0.875rem;
  color: var(--text-body);
  line-height: 1.78;
  font-style: italic;
  margin-bottom: 0.625rem;
}
.testi-card__full-text:last-child { margin-bottom: 0; }
.testi-card__expand-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: none;
  border: none;
  padding: 0;
  margin: 0.625rem 0 1rem;
  font-family: var(--font-head);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue-800);
  cursor: pointer;
  transition: opacity 0.2s;
}
.testi-card__expand-btn:hover { opacity: 0.68; }
.testi-card__expand-btn .testi-expand-icon {
  width: 12px; height: 12px;
  transition: transform 0.25s ease;
}
.testi-card__expand-btn[aria-expanded="true"] .testi-expand-icon {
  transform: rotate(180deg);
}

/* Featured testimonial — expandable full text */
.testi-featured__full {
  font-size: 0.9625rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.82;
  margin-bottom: 1.25rem;
  display: block;
  position: relative;
  z-index: 1;
}
.testi-featured__full.open { display: block; }
.testi-featured__full p { margin-bottom: 1rem; }
.testi-featured__full p:last-child { margin-bottom: 0; }

.testi-featured__expand {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: none;
  border: none;
  padding: 0;
  margin-bottom: 1.75rem;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  cursor: pointer;
  transition: opacity 0.2s;
  position: relative; z-index: 1;
}
.testi-featured__expand:hover { opacity: 0.72; }
.testi-expand-icon {
  width: 14px; height: 14px;
  transition: transform 0.28s ease;
}
.testi-featured__expand[aria-expanded="true"] .testi-expand-icon {
  transform: rotate(180deg);
}

/* --------------------------------------------------------------------------
   WHY SEEK ADVICE NOW — TRIGGERS BAND
   -------------------------------------------------------------------------- */
.triggers-band {
  background: var(--blue-900);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 2rem 0;
}
.triggers-band__intro {
  font-family: var(--font-head);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.36);
  margin-bottom: 1.125rem;
  text-align: center;
}
.triggers-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.25rem;
}
.triggers-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.62);
  font-weight: 400;
}
.triggers-item strong { color: var(--white); font-weight: 600; }
.triggers-item svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--gold); }

/* --------------------------------------------------------------------------
   START-UP ADVISORY CALLOUT
   -------------------------------------------------------------------------- */
.startup-callout {
  margin-top: 3rem;
  border-top: none;
  padding-top: 0;
}
.startup-callout__inner {
  display: flex;
  align-items: flex-start;
  gap: 1.125rem;
  background: linear-gradient(135deg, var(--blue-900), var(--navy));
  border: 1px solid rgba(196,146,42,0.32);
  border-radius: var(--r-xl);
  padding: 1.75rem 2rem;
  max-width: 780px;
  box-shadow: 0 18px 48px rgba(15,37,64,0.18);
}
.startup-callout__inner svg {
  width: 22px; height: 22px; flex-shrink: 0;
  color: var(--gold-light); margin-top: 2px;
}
.startup-callout__inner div {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
}
.startup-callout__inner strong { color: var(--white); font-weight: 700; }
.startup-callout__inner a {
  color: var(--gold-light);
  font-weight: 600;
  margin-left: 0.375rem;
  text-decoration: none;
}
.startup-callout__inner a:hover { text-decoration: underline; }

/* --------------------------------------------------------------------------
   FRAMEWORKS / HOW RICHARD HELPS
   -------------------------------------------------------------------------- */
.frameworks-section {
  background:
    radial-gradient(circle at 10% 20%, rgba(46,109,180,0.08), transparent 32%),
    linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
}

.frameworks-overview {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 1.5rem;
  align-items: stretch;
  margin-bottom: 1.5rem;
}

.frameworks-overview__core {
  background: linear-gradient(145deg, var(--blue-900), var(--navy));
  border-radius: var(--r-2xl);
  padding: 2rem;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}
.frameworks-overview__core::before {
  content: '';
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(196,146,42,0.22);
  border-radius: calc(var(--r-2xl) - 0.75rem);
}
.frameworks-overview__logo {
  width: 5.5rem;
  height: 5.5rem;
  object-fit: contain;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 14px 24px rgba(0,0,0,0.22));
}
.frameworks-overview__core span {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.06em;
  position: relative;
  z-index: 1;
}
.frameworks-overview__core strong {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.7);
  margin-top: 0.75rem;
  max-width: 150px;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

.frameworks-overview__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.875rem;
}
.framework-node {
  min-height: 104px;
  display: flex;
  align-items: flex-end;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 1.125rem;
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--blue-900);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.framework-node::before {
  content: '';
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px var(--gold-pale);
}
.framework-node:hover {
  color: var(--blue-800);
  border-color: var(--blue-100);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.framework-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.framework-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  position: relative;
}
.framework-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-800), var(--gold));
}
.framework-card__head { margin-bottom: 1.25rem; }
.framework-card__kicker {
  display: block;
  font-family: var(--font-head);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.framework-card h3 { font-size: 1.125rem; line-height: 1.25; }
.framework-card__note { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-top: 1rem; }

.fw-path {
  list-style: none;
  display: grid;
  gap: 0.875rem;
}
.fw-path li {
  padding-left: 2.25rem;
  position: relative;
}
.fw-path li::before {
  content: counter(list-item);
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--blue-800);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
}
.fw-path span, .fw-quadrants strong, .fw-stack strong { display: block; font-family: var(--font-head); font-weight: 700; color: var(--text-dark); }
.fw-path small, .fw-quadrants span, .fw-stack span { display: block; font-size: 0.875rem; color: var(--text-muted); line-height: 1.55; margin-top: 0.2rem; }

.fw-quadrants, .fw-kpis {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
.fw-quadrants div, .fw-kpis div {
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: var(--r-md);
  padding: 1rem;
}

.fw-chevrons, .fw-stagegate {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.fw-chevrons span, .fw-stagegate div {
  flex: 1 1 88px;
  background: linear-gradient(145deg, var(--blue-800), var(--blue-900));
  color: var(--white);
  border-radius: var(--r-md);
  padding: 0.75rem 0.875rem;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
}
.fw-stagegate div {
  background: var(--white);
  color: var(--blue-900);
  border: 1px solid var(--blue-100);
  box-shadow: inset 0 -3px 0 var(--gold-pale);
}

.fw-stack { display: grid; gap: 0.75rem; }
.fw-stack div {
  background: linear-gradient(90deg, var(--blue-50), var(--white));
  border: 1px solid var(--blue-100);
  border-radius: var(--r-md);
  padding: 0.95rem 1rem;
}

.fw-kpis div { background: var(--gray-50); }
.fw-kpis span {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.fw-kpis strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.95rem;
  color: var(--blue-900);
}

.fw-profit-panel {
  background: linear-gradient(180deg, #eff6fc 0%, var(--white) 100%);
  border: 1px solid var(--blue-100);
  border-radius: var(--r-lg);
  padding: 1rem;
}
.fw-profit-panel__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.fw-profit-block h4 {
  background: #78a7d6;
  color: var(--blue-900);
  border-radius: 2px;
  font-size: 0.875rem;
  letter-spacing: -0.01em;
  padding: 0.45rem 0.6rem;
  margin-bottom: 0.45rem;
}
.fw-profit-block ul {
  list-style: none;
  background: #c4d9ee;
  border-radius: 2px;
  padding: 0.6rem;
}
.fw-profit-block li {
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--blue-900);
}
.fw-profit-panel__footer {
  margin-top: 0.75rem;
  background: #9fbee0;
  border-radius: 2px;
  color: var(--blue-900);
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.4;
  padding: 0.55rem 0.65rem;
  text-align: center;
}

.fw-hub {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  align-items: center;
}
.fw-hub strong {
  grid-column: 1 / -1;
  background: linear-gradient(145deg, var(--gold), var(--gold-light));
  color: var(--white);
  border-radius: var(--r-full);
  padding: 0.85rem 1rem;
  text-align: center;
  font-family: var(--font-head);
}
.fw-hub span {
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  padding: 0.65rem 0.8rem;
  text-align: center;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--blue-900);
  background: var(--white);
}

/* --------------------------------------------------------------------------
    14. ABOUT
    -------------------------------------------------------------------------- */
.about-layout { display: grid; grid-template-columns: 1fr 1.7fr; gap: 5rem; align-items: center; }
.about-visual  { position: relative; }

.about-photo {
  background: linear-gradient(145deg, var(--blue-800) 0%, var(--blue-900) 100%);
  border-radius: var(--r-2xl);
  aspect-ratio: 3/4;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  box-shadow: 0 24px 72px rgba(26,75,130,0.28), 0 4px 16px rgba(0,0,0,0.12);
  border: 1px solid rgba(255,255,255,0.06);
}
.about-photo::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    -45deg, transparent, transparent 36px,
    rgba(255,255,255,0.018) 36px, rgba(255,255,255,0.018) 72px
  );
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 38%; }
.about-photo__placeholder { text-align: center; color: rgba(255,255,255,0.28); padding: 2rem; position: relative; z-index: 1; }
.about-photo__placeholder svg { width: 72px; height: 72px; margin: 0 auto 1rem; }
.about-photo__placeholder p { font-size: 0.875rem; margin: 0; line-height: 1.5; }

.about-badge {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  border-radius: var(--r-xl);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-gold), 0 8px 24px rgba(196,146,42,0.3);
  text-align: center;
}
.about-badge__val { font-family: var(--font-head); font-size: 2.5rem; font-weight: 800; line-height: 1; display: block; letter-spacing: -0.04em; }
.about-badge__lbl { font-size: 0.6875rem; font-weight: 700; opacity: 0.88; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 2px; display: block; }

.about-content .eyebrow { margin-bottom: 0.75rem; }
.about-content h2 { margin-bottom: 1.375rem; }
.about-content p   { color: var(--text-body); font-size: 1rem; }
.about-creds { list-style: none; display: flex; flex-direction: column; gap: 0.625rem; margin: 1.875rem 0 2.25rem; }
.about-creds li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.9375rem; color: var(--text-body); }
.about-creds li::before {
  content: '';
  display: block;
  width: 8px; height: 8px;
  background: var(--blue-800);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.48em;
}

/* --------------------------------------------------------------------------
   15. ENGAGEMENT / PRICING
   -------------------------------------------------------------------------- */
.engage-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-bottom: 2.5rem; }

.engage-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-xl);
  padding: 1.875rem 1.625rem;
  text-align: center;
  transition: all var(--t-slow);
  position: relative;
  overflow: hidden;
}
.engage-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity var(--t);
}
.engage-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.16); transform: translateY(-3px); }
.engage-card:hover::before { opacity: 1; }

.engage-card--highlight {
  background: linear-gradient(145deg, var(--gold), #B8801E);
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}
.engage-card--highlight .engage-card__type,
.engage-card--highlight .engage-card__price,
.engage-card--highlight .engage-card__freq,
.engage-card--highlight .engage-card__desc { color: rgba(255,255,255,0.95) !important; opacity: 1 !important; }
.engage-card--highlight:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(196,146,42,0.45); }

.engage-card__type  { font-family: var(--font-head); font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.4); margin-bottom: 1rem; }
.engage-card__price { font-family: var(--font-head); font-size: 2.125rem; font-weight: 800; color: var(--white); line-height: 1; letter-spacing: -0.04em; }
.engage-card__price span { font-size: 1rem; font-weight: 500; opacity: 0.6; }
.engage-card__freq  { font-size: 0.8rem; color: rgba(255,255,255,0.38); margin: 0.25rem 0 1.125rem; }
.engage-card__desc  { font-size: 0.875rem; color: rgba(255,255,255,0.55); line-height: 1.65; }

.engage-note {
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.38);
  padding: 1.375rem 1.5rem;
  background: rgba(255,255,255,0.04);
  border-radius: var(--r-md);
  border: 1px solid rgba(255,255,255,0.07);
  max-width: 700px;
  margin: 0 auto;
}

/* --------------------------------------------------------------------------
   16. CONTACT
   -------------------------------------------------------------------------- */
.contact-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 5rem; align-items: start; }
.contact-info h2 { margin-bottom: 1rem; }
.contact-info .lead { font-size: 1.0625rem; color: var(--text-muted); margin-bottom: 2.25rem; line-height: 1.78; }

.contact-details { list-style: none; display: flex; flex-direction: column; gap: 1.125rem; }
.contact-details li { display: flex; align-items: flex-start; gap: 0.875rem; font-size: 0.9375rem; color: var(--text-body); }
.contact-details li svg { width: 20px; height: 20px; color: var(--blue-800); flex-shrink: 0; margin-top: 2px; }

.contact-nda {
  margin-top: 2rem;
  padding: 1.25rem 1.375rem;
  background: var(--blue-50);
  border-left: 3px solid var(--blue-800);
  border-radius: 0 var(--r-md) var(--r-md) 0;
}
.contact-nda p { font-size: 0.875rem; color: var(--blue-900); line-height: 1.65; margin: 0; }

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2.75rem;
  box-shadow: var(--shadow-lg);
}
.form-group { margin-bottom: 1.25rem; }
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.25rem; }

.form-label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.8rem; font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.4375rem;
  letter-spacing: 0.01em;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9375rem; color: var(--text-dark);
  background: var(--gray-50);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  outline: none;
  transition: all var(--t);
  -webkit-appearance: none;
  line-height: 1.5;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--blue-800);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(26,75,130,0.09);
}
.form-textarea { resize: vertical; min-height: 120px; line-height: 1.65; }

/* --------------------------------------------------------------------------
   17. FOOTER
   -------------------------------------------------------------------------- */
.footer {
  background: var(--gray-900);
  color: rgba(255,255,255,0.5);
  padding: 4.5rem 0 2.25rem;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196,146,42,0.25) 50%, transparent);
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3.5rem;
  padding-bottom: 3rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.footer-logo-img { width: 3rem; height: 3rem; object-fit: contain; flex-shrink: 0; }
.footer-logo-text { display: flex; flex-direction: column; gap: 3px; }
.footer-logo-mark { font-family: var(--font-head); font-size: 1.5625rem; font-weight: 800; color: var(--white); letter-spacing: -0.045em; }
.footer-logo-mark .gold { color: var(--gold); }
.footer-logo-sub { font-size: 0.58rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.32); }
.footer-brand p { font-size: 0.875rem; line-height: 1.75; max-width: 310px; }

.footer-col h4 { font-family: var(--font-head); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--white); margin-bottom: 1.125rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { font-size: 0.875rem; color: rgba(255,255,255,0.4); transition: color var(--t); }
.footer-links a:hover { color: rgba(255,255,255,0.8); }

.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.footer-copy   { font-size: 0.8rem; }
.footer-legal  { display: flex; gap: 1.5rem; }
.footer-legal a,
.footer-legal span { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* --------------------------------------------------------------------------
   18. HEALTH CHECK PAGE
   -------------------------------------------------------------------------- */
.hc-hero {
  background: linear-gradient(155deg, var(--navy) 0%, #0D2035 60%, #0A2A4A 100%);
  padding: 8rem 0 5.5rem;
  position: relative;
  overflow: hidden;
}
.hc-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 72px 72px;
}
.hc-hero__inner { position: relative; z-index: 1; text-align: center; max-width: 680px; margin: 0 auto; }
.hc-hero__badge {
  display: inline-flex; align-items: center; gap: 0.625rem;
  background: rgba(196,146,42,0.12); color: var(--gold);
  border: 1px solid rgba(196,146,42,0.28);
  font-family: var(--font-head); font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  padding: 0.4375rem 1rem; border-radius: var(--r-full);
  margin-bottom: 1.5rem;
}
.hc-hero h1 { font-size: clamp(2.125rem, 4.5vw, 3.5rem); color: var(--white); margin-bottom: 1.25rem; }
.hc-hero__sub { font-size: 1.0625rem; color: rgba(255,255,255,0.62); max-width: 560px; margin: 0 auto 2.5rem; line-height: 1.8; }
.hc-hero__trust { display: flex; align-items: center; justify-content: center; gap: 2.5rem; flex-wrap: wrap; }
.hc-hero__trust-item { display: flex; align-items: center; gap: 0.5rem; font-family: var(--font-head); font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.5); }
.hc-hero__trust-item svg { width: 15px; height: 15px; color: var(--gold); }

/* Progress stepper */
.hc-progress { display: flex; align-items: center; justify-content: center; margin: 0 auto 3rem; max-width: 520px; }
.hc-progress__step { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; flex: 1; position: relative; }
.hc-progress__step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 18px;
  left: calc(50% + 18px);
  right: calc(-50% + 18px);
  height: 2px;
  background: var(--border);
  transition: background 0.4s;
}
.hc-progress__step.completed:not(:last-child)::after { background: var(--blue-800); }
.hc-progress__circle {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid var(--border); background: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 0.8125rem; font-weight: 700;
  color: var(--text-muted); transition: all 0.3s; z-index: 1;
}
.hc-progress__step.active    .hc-progress__circle { border-color: var(--blue-800); background: var(--blue-800); color: var(--white); }
.hc-progress__step.completed .hc-progress__circle { border-color: var(--blue-800); background: var(--blue-800); color: var(--white); }
.hc-progress__label { font-family: var(--font-head); font-size: 0.6875rem; font-weight: 600; color: var(--text-muted); text-align: center; white-space: nowrap; }
.hc-progress__step.active    .hc-progress__label,
.hc-progress__step.completed .hc-progress__label { color: var(--blue-800); }

.hc-wizard { max-width: 760px; margin: 0 auto; }
.hc-step { display: none; }
.hc-step.active { display: block; animation: stepIn 0.38s cubic-bezier(0.4,0,0.2,1); }
@keyframes stepIn { from { opacity:0; transform: translateX(24px); } to { opacity:1; transform: translateX(0); } }

.hc-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 2.75rem; box-shadow: var(--shadow-md); margin-bottom: 1.25rem; }
.hc-card__title { font-size: 1.375rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.5rem; }
.hc-card__sub   { font-size: 0.9375rem; color: var(--text-muted); margin-bottom: 2rem; }

.q-block { margin-bottom: 2rem; }
.q-block:last-child { margin-bottom: 0; }
.q-block__label { font-family: var(--font-head); font-size: 0.9375rem; font-weight: 700; color: var(--text-dark); margin-bottom: 1rem; line-height: 1.45; }
.q-block__label span { display: inline-block; background: var(--blue-100); color: var(--blue-800); font-size: 0.6875rem; font-weight: 700; padding: 0.2rem 0.5rem; border-radius: var(--r-sm); margin-right: 0.5rem; vertical-align: middle; }

.radio-options { display: flex; flex-direction: column; gap: 0.5rem; }
.radio-opt {
  display: flex; align-items: flex-start; gap: 0.875rem;
  padding: 0.875rem 1.125rem;
  border: 1.5px solid var(--border); border-radius: var(--r-lg);
  cursor: pointer; transition: all var(--t); background: var(--white);
}
.radio-opt:hover { border-color: var(--blue-300); background: var(--blue-50); }
.radio-opt input[type="radio"] { display: none; }
.radio-opt.selected { border-color: var(--blue-800); background: var(--blue-50); }
.radio-opt.selected .radio-mark { border-color: var(--blue-800); background: var(--blue-800); }
.radio-opt.selected .radio-mark::after { display: block; }
.radio-mark {
  width: 20px; height: 20px; border-radius: 50%;
  border: 2px solid var(--border-strong); flex-shrink: 0;
  margin-top: 1px; position: relative; transition: all var(--t);
}
.radio-mark::after { content: ''; display: none; width: 8px; height: 8px; background: var(--white); border-radius: 50%; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.radio-text { font-size: 0.9rem; color: var(--text-body); line-height: 1.5; }

.fin-section-head { font-family: var(--font-head); font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--blue-800); padding: 0.75rem 0; border-bottom: 1px solid var(--blue-100); margin-bottom: 1.375rem; margin-top: 2rem; }
.fin-section-head:first-child { margin-top: 0; }
.fin-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 0.5rem; }
.fin-group { display: flex; flex-direction: column; gap: 0.4rem; }
.fin-group label { font-family: var(--font-head); font-size: 0.8rem; font-weight: 600; color: var(--text-dark); display: flex; align-items: center; gap: 0.375rem; }
.fin-group label .help-icon { width: 14px; height: 14px; background: var(--gray-200); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 0.6rem; color: var(--text-muted); cursor: help; flex-shrink: 0; }
.fin-input-wrap { position: relative; }
.fin-input-wrap .prefix { position: absolute; left: 0.875rem; top: 50%; transform: translateY(-50%); font-family: var(--font-head); font-size: 0.9rem; font-weight: 600; color: var(--text-muted); pointer-events: none; }
.fin-input-wrap input { width: 100%; padding: 0.75rem 1rem 0.75rem 1.75rem; font-family: var(--font-body); font-size: 0.9375rem; color: var(--text-dark); background: var(--gray-50); border: 1.5px solid var(--border); border-radius: var(--r-md); outline: none; transition: all var(--t); -webkit-appearance: none; }
.fin-input-wrap input:focus { border-color: var(--blue-800); background: var(--white); box-shadow: 0 0 0 4px rgba(26,75,130,0.09); }

.hc-actions { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-top: 1.5rem; border-top: 1px solid var(--border); margin-top: 2rem; }
.hc-actions--end { justify-content: flex-end; }

/* Results */
.results-hero { text-align: center; padding: 2.5rem 0 2rem; }
.score-ring-wrap { position: relative; width: 160px; height: 160px; margin: 0 auto 1.5rem; }
.score-ring { transform: rotate(-90deg); width: 160px; height: 160px; }
.score-ring__bg   { fill: none; stroke: var(--gray-100); stroke-width: 10; }
.score-ring__fill { fill: none; stroke: var(--blue-800); stroke-width: 10; stroke-linecap: round; stroke-dasharray: 440; stroke-dashoffset: 440; transition: stroke-dashoffset 1.5s cubic-bezier(0.4,0,0.2,1); }
.score-ring-num { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; }
.score-ring-num .num { font-family: var(--font-head); font-size: 2.5rem; font-weight: 800; color: var(--text-dark); line-height: 1; }
.score-ring-num .lbl { font-size: 0.625rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }
.results-zone { display: inline-block; font-family: var(--font-head); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; padding: 0.4rem 1.125rem; border-radius: var(--r-full); margin-bottom: 0.75rem; }
.zone--risk    { background: #FEF2F2; color: #DC2626; }
.zone--plateau { background: #FEF9C3; color: #D97706; }
.zone--ready   { background: #F0FDF4; color: #16A34A; }
.results-title { font-size: 1.25rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.375rem; }
.results-sub   { font-size: 0.9375rem; color: var(--text-muted); max-width: 480px; margin: 0 auto; }

.results-metrics { margin: 2rem 0; }
.metrics-table { width: 100%; border-collapse: collapse; }
.metrics-table th { font-family: var(--font-head); font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); padding: 0.5rem 1rem; text-align: left; background: var(--gray-50); border-bottom: 1px solid var(--border); }
.metrics-table td { padding: 0.75rem 1rem; font-size: 0.9rem; color: var(--text-body); border-bottom: 1px solid var(--border); }
.metrics-table tr:last-child td { border-bottom: none; }
.metrics-table .metric-name  { font-weight: 600; color: var(--text-dark); }
.metrics-table .metric-val   { font-family: var(--font-head); font-weight: 700; }
.metrics-table .metric-bench { color: var(--text-muted); font-size: 0.8125rem; }
.metric-status { display: inline-flex; align-items: center; gap: 0.375rem; font-family: var(--font-head); font-size: 0.75rem; font-weight: 700; padding: 0.25rem 0.625rem; border-radius: var(--r-full); }
.status--good  { background: #F0FDF4; color: #16A34A; }
.status--ok    { background: #FEF9C3; color: #D97706; }
.status--below { background: #FEF2F2; color: #DC2626; }

.results-cta-box { background: linear-gradient(145deg, var(--blue-900), var(--navy)); border-radius: var(--r-xl); padding: 2.75rem; text-align: center; color: var(--white); margin-top: 2rem; border: 1px solid rgba(255,255,255,0.06); }
.results-cta-box h3 { color: var(--white); margin-bottom: 0.75rem; font-size: 1.375rem; }
.results-cta-box p  { color: rgba(255,255,255,0.62); margin-bottom: 1.875rem; font-size: 0.9375rem; }
.results-cta-box .cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.capture-status {
  display: none;
  margin: 0 auto 1.5rem;
  padding: 0.875rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--gray-50);
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.5;
  text-align: center;
}
.capture-status.is-ok { display: block; border-color: #BBF7D0; background: #F0FDF4; color: #166534; }
.capture-status.is-warn { display: block; border-color: #FDE68A; background: #FFFBEB; color: #92400E; }
.capture-status.is-error { display: block; border-color: #FECACA; background: #FEF2F2; color: #991B1B; }

.consent-block { display: flex; align-items: flex-start; gap: 0.75rem; padding: 1.125rem; background: var(--blue-50); border: 1px solid var(--blue-100); border-radius: var(--r-md); cursor: pointer; }
.consent-block input[type="checkbox"] { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; accent-color: var(--blue-800); }
.consent-block__text { font-size: 0.875rem; color: var(--text-body); line-height: 1.65; }
.consent-block__text a { color: var(--blue-800); text-decoration: underline; text-underline-offset: 2px; }

.nda-notice { background: var(--gray-50); border: 1px solid var(--border); border-radius: var(--r-md); padding: 1.125rem 1.375rem; display: flex; align-items: flex-start; gap: 0.75rem; margin-top: 1.5rem; }
.nda-notice svg { width: 18px; height: 18px; color: var(--blue-800); flex-shrink: 0; margin-top: 1px; }
.nda-notice p   { font-size: 0.85rem; color: var(--text-muted); margin: 0; line-height: 1.6; }

/* --------------------------------------------------------------------------
   19. UTILITIES
   -------------------------------------------------------------------------- */
.hidden { display: none !important; }
.text-center { text-align: center; }

/* Reveal: elements start visible with CSS; GSAP takes over if loaded */
.reveal { }

/* --------------------------------------------------------------------------
   20. RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .frameworks-overview { grid-template-columns: 1fr; }
  .frameworks-overview__core { min-height: 180px; }
  .engage-grid   { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .hero__inner    { grid-template-columns: 1fr; }
  .hero__content  { min-width: 0; max-width: 100%; }
  .hero__headline { font-size: clamp(2.35rem, 6.5vw, 3.4rem); max-width: 100%; }
  .hero__headline br { display: none; }
  .hero__visual   { display: none; }
  .who-grid       { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .diff-layout    { grid-template-columns: 1fr; gap: 2.5rem; }
  .diff-grid      { grid-template-columns: 1fr; gap: 1.75rem; }
  .hc-banner      { grid-template-columns: 1fr; }
  .hc-banner__visual { min-height: 280px; }
  .frameworks-overview__grid { grid-template-columns: repeat(2, 1fr); }
  .framework-cards { grid-template-columns: 1fr; }
  .testi-grid     { grid-template-columns: repeat(2, 1fr); }
  .about-layout   { grid-template-columns: 1fr; }
  .about-visual   { max-width: 320px; margin: 0 auto; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-main    { grid-template-columns: 1fr 1fr; }
  .footer-brand   { grid-column: 1 / -1; }
  .fin-grid       { grid-template-columns: 1fr; }
  .testi-featured { padding: 2.5rem; }
  .testi-featured__quote { font-size: 1.125rem; }
}

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav__overlay { display: block; }
  .health-check-page .nav__toggle { display: none; }

  .section { padding: 4.5rem 0; }
  .hero { min-height: unset; padding: 6.25rem 0 3.75rem; }
  .hero__content { display: flex; flex-direction: column; }
  .hero__eyebrow { order: 1; margin-bottom: 1rem; }
  .hero__headline { order: 2; font-size: clamp(2.35rem, 11vw, 3.25rem); margin-bottom: 1.125rem; }
  .hero__sub { order: 3; margin-bottom: 1.5rem; line-height: 1.65; }
  .hero__actions { order: 4; margin-bottom: 1.5rem; }
  .hero-service-feature { order: 5; margin: 0 0 1.75rem; padding: 1rem 1.125rem; }
  .hero-service-feature__slide p { font-size: 0.9rem; line-height: 1.55; }
  .hero__stats {
    order: 6;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    align-items: stretch;
  }
  .hero__stat {
    padding: 0.875rem;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--r-md);
    background: rgba(255,255,255,0.035);
  }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .frameworks-overview__core { min-height: 150px; }
  .testi-grid    { grid-template-columns: 1fr; }
  .engage-grid   { grid-template-columns: 1fr 1fr; }
  .form-row      { grid-template-columns: 1fr; }
  .contact-form  { padding: 2rem; }
  .hc-card       { padding: 2rem; }
  .hc-banner__content { padding: 2.5rem; }
  .testi-featured { padding: 2rem; }
  .testi-featured::before { font-size: 8rem; }

  .footer-main   { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand  { grid-column: unset; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 540px) {
  html, body { overflow-x: hidden; }
  .container { padding: 0 1.125rem; }
  .nav__inner { gap: 1rem; position: relative; }
  .nav__logo { max-width: calc(100% - 3.75rem); min-width: 0; }
  .nav__toggle { display: flex !important; flex-shrink: 0; position: absolute; right: 0; top: 50%; z-index: 101; transform: translateY(-50%); }
  .health-check-page .nav__logo { max-width: 52%; }
  .health-check-page .nav__toggle { display: none !important; }
  .health-check-page .nav__logo-sub { display: none; }
  .hc-nav-actions { gap: 0.5rem; flex-shrink: 0; }
  .hc-nav-consult { display: none; }
  .hc-nav-back { padding: 0.55rem 0.8rem; font-size: 0.8rem; }
  .hero { padding: 5.75rem 0 3.25rem; overflow: hidden; }
  .hero__content { min-width: 0; max-width: 100%; }
  .hero__eyebrow {
    gap: 0.5rem;
    max-width: 100%;
    font-size: 0.65rem;
    line-height: 1.65;
    letter-spacing: 0.13em;
    white-space: normal;
    overflow-wrap: anywhere;
  }
  .hero__eyebrow-sectors { display: none; }
  .hero__headline {
    font-size: clamp(2.2rem, 12vw, 2.75rem);
    line-height: 1.02;
    letter-spacing: -0.03em;
    max-width: calc(100vw - 2.5rem);
    overflow-wrap: break-word;
  }
  .hero__sub { font-size: 0.98rem; }
  .hero-service-feature__eyebrow { margin-bottom: 0.35rem; }
  .hero-service-feature__slide h2 { font-size: 1rem; margin-bottom: 0.25rem; }
  .hero-service-feature__slide p { display: none; }
  .hero__stat-val { font-size: 1.35rem; }

  .sector-strip__inner { justify-content: flex-start; gap: 1rem; }
  .sector-strip__item { width: 100%; min-width: 0; font-size: 0.625rem; line-height: 1.45; overflow-wrap: anywhere; }
  .hero__stat-lbl { font-size: 0.6rem; letter-spacing: 0.06em; }

  /* CTAs: stack to full-width on phones — intentional for tap targets */
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
  .services-grid  { grid-template-columns: 1fr; }
  .frameworks-overview__grid, .fw-quadrants, .fw-kpis, .fw-hub, .fw-profit-panel__grid { grid-template-columns: 1fr; }
  .framework-card { padding: 1.35rem; }
  .engage-grid    { grid-template-columns: 1fr; }
  .hc-progress__label { font-size: 0.6rem; }
  .hc-hero__trust { gap: 1.25rem; }
  .about-visual { max-width: 280px; padding-bottom: 0; }
  .about-badge {
    right: 0.75rem;
    bottom: 0.75rem;
    padding: 0.875rem 1rem;
    border-radius: var(--r-lg);
  }
  .about-badge__val { font-size: 1.75rem; }
  .about-badge__lbl { font-size: 0.6rem; }
  .contact-form,
  .hc-card,
  .results-cta-box { padding: 1.375rem; }
  .hc-actions { flex-direction: column; align-items: stretch; }
  .hc-actions .btn { width: 100%; }
  .results-cta-box .cta-actions { flex-direction: column; align-items: center; }
  .startup-callout__inner { flex-direction: column; gap: 0.625rem; }
  .testi-featured__footer { flex-wrap: wrap; gap: 0.75rem; }
  .testi-featured__stars { margin-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  .hero__eyebrow,
  .hero__headline,
  .hero__sub,
  .hero-service-feature,
  .hero__actions,
  .hero__stats,
  .hero__visual {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 768px) {
  /* Triggers band: stack on mobile */
  .triggers-list { flex-direction: column; align-items: flex-start; gap: 0.625rem; }
  .triggers-band { padding: 1.5rem 0; }
}

/* Soft-launch safety override: critical hero content must never depend on animation JS/CDNs. */
.hero__eyebrow,
.hero__headline,
.hero__sub,
.hero__actions,
.hero__stats,
.hero__visual,
.nav,
.reveal,
.section-header > * {
  opacity: 1 !important;
  transform: none !important;
}

/* Soft-launch mobile readability fix: preserve intentional hero line breaks. */
@media (max-width: 960px) {
  .hero__headline br { display: block !important; }
}
@media (min-width: 769px) {
  .hero { padding-top: 5.5rem !important; }
  .hero__actions { margin-bottom: 2rem !important; }
}

/* Mobile CTA hotfix: inactive drawer overlay must not intercept taps. */
.nav__overlay {
  pointer-events: none;
  visibility: hidden;
}
.nav__overlay.active {
  pointer-events: auto;
  visibility: visible;
}
