:root {
  --bg: #0a0a0a;
  --bg-deep: #050505;
  --bg-soft: #101010;
  --text: #f5f1e8;
  --text-muted: rgba(245, 241, 232, 0.72);
  --text-dim: rgba(245, 241, 232, 0.55);
  --gold-deep: #8c6a2f;
  --gold: #c9a24a;
  --gold-light: #f2d27a;
  --gold-gradient: linear-gradient(
    90deg,
    #8c6a2f 0%,
    #c9a24a 24%,
    #f2d27a 50%,
    #c9a24a 76%,
    #8c6a2f 100%
  );
  --soft-gold-gradient: linear-gradient(
    90deg,
    #c9a96e 0%,
    #e8c88a 52%,
    #b8860b 100%
  );
  --line: rgba(201, 162, 74, 0.18);
  --line-strong: rgba(201, 162, 74, 0.42);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.38);
  --radius-lg: 28px;
  --radius-md: 18px;
  --header-height: 104px;
  --max-width: 1280px;
  --font-title: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-subtitle: Georgia, "Times New Roman", serif;
  --font-body: Aptos, "Segoe UI", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 3%, rgba(201, 162, 74, 0.075), transparent 32rem),
    radial-gradient(circle at 85% 12%, rgba(242, 210, 122, 0.05), transparent 34rem),
    linear-gradient(180deg, #070707 0%, #0a0a0a 46%, #050505 100%);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: var(--header-height);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(rgba(201, 162, 74, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 162, 74, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 72% 18%, rgba(201, 162, 74, 0.12), transparent 18rem);
  background-size: 96px 96px, 96px 96px, auto;
  opacity: 0.34;
  mask-image: radial-gradient(circle at 72% 18%, #000 0, #000 22rem, transparent 48rem);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 0%, transparent 0, rgba(0, 0, 0, 0.34) 46%, rgba(0, 0, 0, 0.68) 100%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.95), transparent 25%, transparent 72%, rgba(5, 5, 5, 0.9));
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

::selection {
  background: rgba(201, 162, 74, 0.38);
  color: #fff;
}

/* HEADER — copied to match the existing homepage / LA Readiness header system */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 9999;
}

.nav-container {
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem clamp(1.25rem, 4vw, 4.5rem);
  background: rgba(10, 10, 10, 0.9);
  border-bottom: 1px solid rgba(201, 162, 74, 0.14);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition:
    height 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.nav-container.is-scrolled {
  height: 84px;
  background: rgba(10, 10, 10, 0.96);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.38);
}

.logo-link {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  position: relative;
  z-index: 10002;
}

.site-logo {
  width: auto;
  height: 72px;
  object-fit: contain;
  transition: height 0.3s ease;
}

.nav-container.is-scrolled .site-logo {
  height: 58px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(1rem, 2vw, 2rem);
}

.nav-links a {
  color: rgba(245, 241, 232, 0.84);
  font-size: 0.94rem;
  letter-spacing: 0.05em;
  transition: color 0.25s ease, transform 0.25s ease;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--gold-light);
  transform: translateY(-1px);
}

.nav-button {
  padding: 0.78rem 1.12rem;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #0f0f12 !important;
  background: var(--soft-gold-gradient);
  box-shadow: 0 12px 30px rgba(201, 169, 110, 0.24);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0.075em;
  -webkit-text-stroke: 0.22px currentColor;
  text-shadow: 0.22px 0 currentColor;
}

.nav-button:hover {
  color: #0f0f12 !important;
  background: var(--soft-gold-gradient);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(201, 169, 110, 0.28);
}

.nav-toggle {
  display: none;
}

.hamburger {
  display: none;
  width: 34px;
  height: 24px;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 10002;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--gold);
  border-radius: 999px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* SHARED */
.section-inner {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.eyebrow,
.module-label {
  display: inline-block;
  color: transparent;
  background: var(--soft-gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-family: var(--font-body);
  font-size: 0.72rem;
  line-height: 1;
  font-weight: 800;
}

h1,
h2,
h3 {
  font-family: var(--font-title);
  color: var(--text);
  font-weight: 700;
  text-wrap: balance;
}

h1 {
  max-width: 780px;
  margin-top: 1.1rem;
  font-size: clamp(4rem, 6.85vw, 7.6rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-shadow: 0 18px 52px rgba(0, 0, 0, 0.62);
}

h1 em {
  display: block;
  color: var(--gold-light);
  font-style: italic;
  font-weight: 400;
}

h2 {
  font-size: clamp(2.7rem, 4.95vw, 6.1rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 1rem 1.55rem;
  border-radius: 999px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  font-weight: 500;
  letter-spacing: 0.075em;
  -webkit-text-stroke: 0.2px currentColor;
  text-shadow: 0.2px 0 currentColor;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
  text-align: center;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  color: #0f0f12 !important;
  background: var(--soft-gold-gradient);
  border: 1px solid transparent;
  box-shadow: 0 12px 30px rgba(201, 169, 110, 0.24);
}

.button-primary:hover {
  color: #0f0f12 !important;
  box-shadow: 0 12px 30px rgba(201, 169, 110, 0.32);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* HERO */
.services-hero {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  padding: clamp(4.5rem, 7vw, 7rem) clamp(1.25rem, 6vw, 6rem) clamp(5rem, 8vw, 7.5rem);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(201, 162, 74, 0.16);
}

.services-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 66% 30%, rgba(201, 162, 74, 0.18), transparent 22rem),
    radial-gradient(circle at 25% 55%, rgba(242, 210, 122, 0.07), transparent 24rem),
    linear-gradient(90deg, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0.60) 45%, rgba(5, 5, 5, 0.84));
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.82fr);
  gap: clamp(2.5rem, 6vw, 6.25rem);
  align-items: center;
}

.hero-lede {
  max-width: 630px;
  margin-top: 1.55rem;
  color: rgba(245, 241, 232, 0.82);
  font-size: clamp(1.02rem, 1.35vw, 1.2rem);
  line-height: 1.72;
}

.hero-note {
  margin-top: 1.25rem;
  color: rgba(245, 241, 232, 0.92);
  font-family: var(--font-subtitle);
  font-size: clamp(1.08rem, 1.45vw, 1.28rem);
  line-height: 1.52;
}

.hero-actions {
  margin-top: 1.85rem;
}

.microcopy {
  max-width: 520px;
  margin-top: 1.05rem;
  color: rgba(245, 241, 232, 0.56);
  font-size: 0.92rem;
  line-height: 1.58;
}

/* Dossier object */
.diagnostic-dossier {
  position: relative;
  min-height: clamp(500px, 48vw, 660px);
  display: grid;
  place-items: center;
  perspective: 1200px;
}

.dossier-tabs {
  position: absolute;
  top: 10%;
  right: 6%;
  display: grid;
  gap: 0.8rem;
  z-index: 1;
}

.dossier-tabs span {
  width: 5rem;
  height: 4.8rem;
  border: 1px solid rgba(201, 162, 74, 0.24);
  border-radius: 0 16px 16px 0;
  background: rgba(26, 23, 17, 0.88);
  box-shadow: var(--shadow);
}

.dossier-cover {
  position: relative;
  width: min(100%, 440px);
  min-height: 560px;
  padding: clamp(1.8rem, 3vw, 2.45rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid rgba(201, 162, 74, 0.35);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), transparent 26%),
    radial-gradient(circle at 50% 0%, rgba(201, 162, 74, 0.12), transparent 16rem),
    #141312;
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.55),
    inset 0 0 0 1px rgba(255, 255, 255, 0.035);
  transform: rotate(4deg) translateY(-0.5rem);
}

.dossier-cover::before,
.dossier-cover::after {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(201, 162, 74, 0.16);
  pointer-events: none;
}

.dossier-cover::after {
  inset: auto 1.55rem 1.35rem 1.55rem;
  height: 1px;
  border: 0;
  background: linear-gradient(90deg, transparent, rgba(201, 162, 74, 0.46), transparent);
}

.dossier-kicker,
.dossier-subtitle,
.dossier-footer {
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.dossier-cover h2 {
  margin-top: 1.8rem;
  font-size: clamp(2.1rem, 3.2vw, 3.4rem);
  line-height: 1.03;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.dossier-subtitle {
  margin-top: 0.9rem;
  color: rgba(232, 200, 138, 0.8);
  font-size: 0.62rem;
}

.dossier-grid {
  width: 100%;
  margin-top: 2.1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.dossier-grid div {
  min-height: 112px;
  display: grid;
  place-items: center;
  gap: 0.4rem;
  padding: 1rem 0.6rem;
  border: 1px solid rgba(201, 162, 74, 0.22);
  border-radius: 10px;
  background: rgba(5, 5, 5, 0.28);
}

.dossier-grid strong {
  color: rgba(245, 241, 232, 0.82);
  font-size: 0.66rem;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dossier-footer {
  margin-top: auto;
  padding-top: 2rem;
  color: rgba(201, 162, 74, 0.72);
  font-size: 0.58rem;
}

.icon-pin,
.icon-people,
.icon-doc,
.score-ring {
  width: 2.35rem;
  height: 2.35rem;
  display: inline-grid;
  place-items: center;
  color: var(--gold);
  border: 1px solid rgba(201, 162, 74, 0.28);
  border-radius: 999px;
  position: relative;
}

.icon-pin::before {
  content: "";
  width: 0.85rem;
  height: 0.85rem;
  border: 2px solid currentColor;
  border-radius: 999px 999px 999px 0;
  transform: rotate(-45deg);
}

.icon-people::before,
.icon-people::after {
  content: "";
  position: absolute;
  border: 2px solid currentColor;
}

.icon-people::before {
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 999px;
  top: 0.58rem;
}

.icon-people::after {
  width: 1.5rem;
  height: 0.7rem;
  border-radius: 999px 999px 0 0;
  bottom: 0.48rem;
  border-bottom: 0;
}

.icon-doc::before {
  content: "";
  width: 1.1rem;
  height: 1.45rem;
  border: 2px solid currentColor;
  border-radius: 2px;
}

.score-ring {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold-light);
}

.dossier-pen {
  position: absolute;
  right: -1%;
  bottom: 8%;
  width: 0.72rem;
  height: 260px;
  border-radius: 999px;
  background: linear-gradient(90deg, #050505, #1b1a17 38%, #d5a943 48%, #0d0d0d 60%, #050505);
  transform: rotate(18deg);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.48);
}

/* SYSTEM */
.system-section {
  padding: clamp(4.8rem, 8vw, 7.3rem) clamp(1.25rem, 6vw, 6rem);
  border-bottom: 1px solid rgba(201, 162, 74, 0.13);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0));
}

.system-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.system-intro h2 {
  margin-top: 0.7rem;
  font-size: clamp(2.75rem, 4.3vw, 4.9rem);
}

.system-intro p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(245, 241, 232, 0.72);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.76;
}

.system-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.85rem, 1.4vw, 1.1rem);
  align-items: stretch;
}

.system-card {
  min-height: 300px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  padding: clamp(1.2rem, 2vw, 1.65rem);
  text-align: center;
  border: 1px solid rgba(201, 162, 74, 0.16);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.016));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.system-card::after {
  content: "→";
  position: absolute;
  right: -1.05rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-family: var(--font-title);
  font-size: 2.1rem;
  z-index: 2;
}

.system-card:last-child::after {
  content: none;
}

.system-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 162, 74, 0.44);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.32);
}

.system-card.is-featured {
  border-color: rgba(242, 210, 122, 0.72);
  background:
    radial-gradient(circle at 50% 0%, rgba(201, 162, 74, 0.14), transparent 17rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.02));
}

.step-number,
.step-star {
  position: absolute;
  top: 1rem;
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.step-number {
  left: 1rem;
}

.step-star {
  right: 1rem;
  font-size: 1.25rem;
}

.system-card h3 {
  max-width: 12ch;
  font-size: clamp(1.55rem, 2.1vw, 2rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.system-card p {
  color: rgba(245, 241, 232, 0.66);
  font-size: 0.96rem;
}

.system-card small {
  margin-top: 0.5rem;
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.step-icon {
  width: 3.4rem;
  height: 3.4rem;
  border: 1px solid rgba(201, 162, 74, 0.24);
  border-radius: 999px;
  position: relative;
  color: var(--gold);
}

.target-icon::before,
.target-icon::after,
.audit-icon::before,
.audit-icon::after,
.map-icon::before,
.map-icon::after,
.shield-icon::before,
.shield-icon::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  border-color: currentColor;
}

.target-icon::before {
  width: 1.5rem;
  height: 1.5rem;
  border: 2px solid currentColor;
  border-radius: 999px;
}

.target-icon::after {
  width: 0.3rem;
  height: 0.3rem;
  background: currentColor;
  border-radius: 999px;
  box-shadow: 0 0 0 0.75rem rgba(201, 162, 74, 0.05);
}

.audit-icon::before {
  width: 1.6rem;
  height: 1rem;
  border: 2px solid currentColor;
  border-radius: 999px 999px 0 0;
  border-bottom: 0;
}

.audit-icon::after {
  width: 0.9rem;
  height: 0.9rem;
  border: 2px solid currentColor;
  border-radius: 999px;
  top: 42%;
}

.map-icon::before {
  width: 1.75rem;
  height: 1.4rem;
  border: 2px solid currentColor;
  transform: translate(-50%, -50%) skewY(-8deg);
}

.map-icon::after {
  width: 2px;
  height: 1.4rem;
  background: currentColor;
  box-shadow: 0.55rem 0 0 currentColor, -0.55rem 0 0 currentColor;
}

.shield-icon::before {
  width: 1.55rem;
  height: 1.8rem;
  border: 2px solid currentColor;
  clip-path: polygon(50% 0%, 100% 18%, 88% 78%, 50% 100%, 12% 78%, 0% 18%);
}

.shield-icon::after {
  width: 0.72rem;
  height: 0.34rem;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translate(-50%, -54%) rotate(-45deg);
}

/* DIAGNOSTIC */
.diagnostic-section {
  padding: clamp(4.8rem, 8vw, 7.6rem) clamp(1.25rem, 6vw, 6rem);
  position: relative;
  border-bottom: 1px solid rgba(201, 162, 74, 0.13);
}

.diagnostic-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 20%, rgba(201, 162, 74, 0.07), transparent 28rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.012), transparent 52%);
}

.diagnostic-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(2.75rem, 5vw, 5.8rem);
  align-items: start;
}

.diagnostic-copy {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}

.diagnostic-copy h2 {
  margin-top: 0.85rem;
}

.diagnostic-copy > p:not(.eyebrow):not(.diagnostic-lead) {
  max-width: 600px;
  margin-top: 1rem;
  color: rgba(245, 241, 232, 0.76);
  font-size: clamp(1rem, 1.18vw, 1.08rem);
  line-height: 1.72;
}

.diagnostic-lead {
  max-width: 540px;
  margin-top: 0.7rem;
  color: var(--gold-light);
  font-family: var(--font-subtitle);
  font-size: clamp(1.15rem, 1.65vw, 1.5rem);
  line-height: 1.38;
  font-style: italic;
}

blockquote {
  max-width: 540px;
  margin: 2rem 0 1.65rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  color: rgba(245, 241, 232, 0.86);
  font-family: var(--font-subtitle);
  font-size: clamp(1.08rem, 1.6vw, 1.35rem);
  font-style: italic;
  line-height: 1.42;
}

blockquote span {
  color: var(--gold-light);
  font-family: var(--font-title);
  font-size: 4.2rem;
  line-height: 0.8;
}

blockquote p {
  max-width: 32ch;
}

.diagnostic-architecture {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  gap: clamp(1.6rem, 3vw, 2.5rem);
  padding-left: clamp(1.2rem, 2.4vw, 2.5rem);
  border-left: 1px solid rgba(201, 162, 74, 0.28);
}

.architecture-column {
  min-width: 0;
}

.architecture-column .module-label {
  margin-bottom: 1.2rem;
}

.architecture-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(201, 162, 74, 0.24);
}

.architecture-list article {
  display: grid;
  grid-template-columns: 4.2rem minmax(0, 1fr);
  gap: 1.1rem;
  padding: clamp(1.15rem, 1.8vw, 1.5rem) 0;
  border-bottom: 1px solid rgba(201, 162, 74, 0.14);
}

.architecture-list h3 {
  color: rgba(245, 241, 232, 0.92);
  font-size: clamp(1.28rem, 1.65vw, 1.62rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
}

.architecture-list p {
  margin-top: 0.55rem;
  color: rgba(245, 241, 232, 0.66);
  font-size: clamp(0.93rem, 1vw, 1rem);
  line-height: 1.62;
}

.line-icon {
  width: 3.25rem;
  height: 3.25rem;
  border: 1px solid rgba(201, 162, 74, 0.22);
  border-radius: 999px;
  position: relative;
  color: var(--gold);
  background: rgba(201, 162, 74, 0.035);
}

.line-icon::before,
.line-icon::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
}

.people-line::before {
  width: 1.2rem;
  height: 1.2rem;
  border: 2px solid currentColor;
  border-radius: 999px;
  top: 41%;
}

.people-line::after {
  width: 2rem;
  height: 1rem;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
  top: 66%;
}

.field-line::before {
  width: 1.7rem;
  height: 1rem;
  border: 2px solid currentColor;
  border-radius: 999px 999px 0 0;
  top: 52%;
}

.field-line::after {
  width: 0.55rem;
  height: 0.55rem;
  border: 2px solid currentColor;
  border-radius: 999px;
  box-shadow: -0.8rem 0.45rem 0 -1px currentColor, 0.8rem 0.45rem 0 -1px currentColor;
}

.history-line::before {
  width: 1.6rem;
  height: 1.6rem;
  border: 2px solid currentColor;
  border-radius: 999px;
}

.history-line::after {
  width: 0.7rem;
  height: 0.7rem;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translate(-35%, -60%);
}

.skyline-line::before {
  width: 2rem;
  height: 1.5rem;
  background:
    linear-gradient(currentColor, currentColor) 0 100% / 0.28rem 60% no-repeat,
    linear-gradient(currentColor, currentColor) 0.52rem 100% / 0.28rem 90% no-repeat,
    linear-gradient(currentColor, currentColor) 1.04rem 100% / 0.28rem 45% no-repeat,
    linear-gradient(currentColor, currentColor) 1.56rem 100% / 0.28rem 72% no-repeat;
}

.chart-line::before {
  width: 2rem;
  height: 1.6rem;
  background:
    linear-gradient(currentColor, currentColor) 0.1rem 100% / 0.28rem 45% no-repeat,
    linear-gradient(currentColor, currentColor) 0.7rem 100% / 0.28rem 70% no-repeat,
    linear-gradient(currentColor, currentColor) 1.3rem 100% / 0.28rem 95% no-repeat;
}

.pin-line::before {
  width: 1.2rem;
  height: 1.2rem;
  border: 2px solid currentColor;
  border-radius: 999px 999px 999px 0;
  transform: translate(-50%, -56%) rotate(-45deg);
}

.pin-line::after {
  width: 0.35rem;
  height: 0.35rem;
  background: currentColor;
  border-radius: 999px;
}

.readout-line::before {
  width: 1.75rem;
  height: 1.2rem;
  border: 2px solid currentColor;
  border-radius: 0.25rem;
}

.readout-line::after {
  width: 0.8rem;
  height: 0.38rem;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translate(-50%, 0.8rem) rotate(-45deg);
}

.report-line::before {
  width: 1.25rem;
  height: 1.65rem;
  border: 2px solid currentColor;
  border-radius: 0.2rem;
}

.report-line::after {
  width: 0.7rem;
  height: 2px;
  background: currentColor;
  box-shadow: 0 0.42rem 0 currentColor, 0 0.84rem 0 currentColor;
  transform: translate(-50%, -36%);
}

/* FINAL CTA */
.final-cta {
  padding: clamp(4.8rem, 8vw, 7.5rem) clamp(1.25rem, 6vw, 6rem);
  position: relative;
}

.final-card {
  max-width: 1280px;
  min-height: 330px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: clamp(2rem, 5vw, 4.2rem);
  border: 1px solid rgba(201, 162, 74, 0.24);
  border-radius: 18px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.48), rgba(5, 5, 5, 0.76)),
    radial-gradient(circle at 50% 0%, rgba(201, 162, 74, 0.1), transparent 28rem);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

.final-card::before {
  display: none;
}

.final-card > * {
  position: relative;
  z-index: 1;
}

.final-card h2 {
  max-width: 890px;
  margin: 0.8rem auto 0;
  font-size: clamp(2.15rem, 3.8vw, 4.5rem);
  line-height: 1.04;
}

.final-card p {
  max-width: 780px;
  margin: 1.05rem auto 1.6rem;
  color: rgba(245, 241, 232, 0.72);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.68;
}

.final-card small {
  display: block;
  margin-top: 1rem;
  color: rgba(245, 241, 232, 0.58);
  font-size: 0.92rem;
  line-height: 1.5;
}

/* FOOTER */
.site-footer {
  padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 6vw, 6rem) 2rem;
  background:
    radial-gradient(circle at 70% 0%, rgba(201, 162, 74, 0.08), transparent 28rem),
    #050505;
  border-top: 1px solid rgba(201, 162, 74, 0.14);
}

.footer-inner {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 0.8fr;
  gap: 2rem;
}

.footer-brand h2 {
  font-family: var(--font-title);
  color: var(--gold-light);
  font-size: 2.25rem;
  line-height: 1;
  margin-bottom: 0.7rem;
}

.footer-brand p,
.footer-contact,
.footer-legal {
  color: var(--text-dim);
}

.footer-links,
.footer-socials {
  display: grid;
  gap: 0.7rem;
  align-content: start;
}

.footer-contact address {
  margin-top: 0.8rem;
  font-style: normal;
  line-height: 1.6;
}

.footer-links a,
.footer-socials a,
.footer-contact a {
  color: rgba(245, 241, 232, 0.78);
  transition: color 0.25s ease;
}

.footer-links a:hover,
.footer-socials a:hover,
.footer-contact a:hover {
  color: var(--gold-light);
}

.footer-legal {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.5rem;
  padding-top: 2rem;
  margin-top: 1rem;
  border-top: 1px solid rgba(201, 162, 74, 0.1);
  font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 1180px) {
  .hero-layout,
  .diagnostic-layout,
  .system-intro {
    grid-template-columns: 1fr;
  }

  .diagnostic-dossier {
    min-height: 520px;
  }

  .diagnostic-copy {
    position: relative;
    top: auto;
  }

  .diagnostic-architecture {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(201, 162, 74, 0.22);
    padding-top: 2rem;
  }

  .system-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .system-card:nth-child(2)::after {
    content: none;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 92px;
  }

  body {
    padding-top: var(--header-height);
  }

  .nav-container {
    height: var(--header-height);
    padding: 0.9rem 1.25rem;
  }

  .site-logo {
    height: 58px;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(82vw, 380px);
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1.35rem;
    padding: 7rem 2rem 2.5rem;
    background: rgba(7, 7, 7, 0.98);
    border-left: 1px solid rgba(201, 162, 74, 0.16);
    box-shadow: -24px 0 60px rgba(0, 0, 0, 0.44);
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 10001;
  }

  .nav-links a {
    width: 100%;
    white-space: normal;
    font-size: 1rem;
  }

  .nav-button {
    text-align: center;
    margin-top: 0.5rem;
  }

  #nav-toggle:checked ~ .nav-links {
    transform: translateX(0);
  }

  #nav-toggle:checked + .hamburger span:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
  }

  #nav-toggle:checked + .hamburger span:nth-child(2) {
    opacity: 0;
  }

  #nav-toggle:checked + .hamburger span:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 86px;
  }

  .nav-container {
    height: var(--header-height);
  }

  .site-logo {
    height: 52px;
  }

  .services-hero,
  .system-section,
  .diagnostic-section,
  .final-cta,
  .site-footer {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  h1 {
    font-size: clamp(3.25rem, 14vw, 5.1rem);
    line-height: 1.06;
  }

  h2 {
    font-size: clamp(2.6rem, 11vw, 4.4rem);
  }

  .diagnostic-dossier,
  .dossier-tabs,
  .dossier-pen {
    display: none;
  }

  .system-track,
  .diagnostic-architecture {
    grid-template-columns: 1fr;
  }

  .system-card::after {
    content: none;
  }

  .architecture-list article {
    grid-template-columns: 1fr;
  }

  .line-icon {
    width: 3rem;
    height: 3rem;
  }

  .button {
    width: 100%;
  }

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

  .footer-legal {
    display: grid;
  }
}

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

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

/* =========================================================
   HERO DIAGNOSTIC LENS MAP — FINAL REPLACEMENT
   Uses assets/golden_city_grid_at_night.png as the hero visual.
   ========================================================= */

.services-hero {
  min-height: calc(100vh - var(--header-height));
  background:
    radial-gradient(circle at 78% 34%, rgba(201, 162, 74, 0.12), transparent 31rem),
    radial-gradient(circle at 28% 52%, rgba(242, 210, 122, 0.06), transparent 24rem),
    linear-gradient(180deg, #070707 0%, #0a0908 52%, #060606 100%) !important;
}

.services-hero::before {
  z-index: 0;
  background:
    linear-gradient(
      90deg,
      rgba(5, 5, 5, 0.96) 0%,
      rgba(5, 5, 5, 0.88) 30%,
      rgba(5, 5, 5, 0.42) 55%,
      rgba(5, 5, 5, 0.28) 72%,
      rgba(5, 5, 5, 0.62) 100%
    ),
    radial-gradient(circle at 74% 43%, rgba(201, 162, 74, 0.13), transparent 34rem),
    linear-gradient(180deg, rgba(5, 5, 5, 0.08), rgba(5, 5, 5, 0.78)) !important;
}

.services-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 162, 74, 0.46), transparent);
  pointer-events: none;
  z-index: 3;
}

.hero-layout {
  grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1.08fr) !important;
  gap: clamp(2.25rem, 5vw, 5.75rem) !important;
  isolation: isolate;
}

.hero-copy {
  position: relative;
  z-index: 4;
}

.hero-copy::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -2.4rem -3rem -2.2rem -2.6rem;
  background: radial-gradient(
    ellipse at 36% 48%,
    rgba(5, 5, 5, 0.88) 0%,
    rgba(5, 5, 5, 0.62) 42%,
    rgba(5, 5, 5, 0.18) 74%,
    transparent 100%
  );
  filter: blur(7px);
}

.hero-intelligence-map {
  --lens-x: 55%;
  --lens-y: 43%;
  --map-tilt-x: 0deg;
  --map-tilt-y: 0deg;
  position: relative;
  z-index: 2;
  min-height: clamp(470px, 45vw, 680px);
  display: grid;
  place-items: center;
  perspective: 1200px;
  transform-style: preserve-3d;
}

.map-viewport {
  position: relative;
  width: min(100%, 820px);
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(201, 162, 74, 0.18);
  background: #050505;
  box-shadow:
    0 35px 95px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(242, 210, 122, 0.05),
    inset 0 0 0 1px rgba(255, 255, 255, 0.016);
  transform:
    rotateX(var(--map-tilt-x))
    rotateY(var(--map-tilt-y))
    translate3d(0, 0, 0);
  transition: transform 0.45s ease;
  isolation: isolate;
}

.map-viewport::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(
      circle at var(--lens-x) var(--lens-y),
      rgba(242, 210, 122, 0.18) 0%,
      rgba(201, 162, 74, 0.09) 14%,
      rgba(0, 0, 0, 0.00) 31%
    ),
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.05) 42%, rgba(0, 0, 0, 0.42) 100%),
    radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.24) 60%, rgba(0, 0, 0, 0.82) 100%);
}

.map-viewport::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 8;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(242, 210, 122, 0.16), transparent 20%, transparent 80%, rgba(242, 210, 122, 0.10)),
    linear-gradient(180deg, rgba(242, 210, 122, 0.18), transparent 18%, transparent 82%, rgba(242, 210, 122, 0.10));
  opacity: 0.38;
  mix-blend-mode: screen;
}

.hero-map-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.92;
  filter: brightness(0.82) contrast(1.1) saturate(1.05);
  transform: scale(1.04);
}

.map-depth-layer {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0.52;
}

.map-depth-layer-one {
  background:
    linear-gradient(rgba(242, 210, 122, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 210, 122, 0.07) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: radial-gradient(circle at var(--lens-x) var(--lens-y), #000 0, #000 30%, transparent 58%);
}

.map-depth-layer-two {
  background:
    radial-gradient(circle at 52% 47%, rgba(242, 210, 122, 0.64) 0 2px, transparent 3px),
    radial-gradient(circle at 72% 36%, rgba(242, 210, 122, 0.50) 0 1.5px, transparent 3px),
    radial-gradient(circle at 38% 58%, rgba(242, 210, 122, 0.42) 0 1.5px, transparent 3px);
  filter: blur(0.1px);
}

.diagnostic-lens {
  position: absolute;
  left: var(--lens-x);
  top: var(--lens-y);
  width: clamp(290px, 37vw, 510px);
  aspect-ratio: 1.38 / 1;
  z-index: 5;
  transform: translate(-50%, -50%) rotate(-4deg);
  pointer-events: none;
  border-radius: 999px;
  border: 1px solid rgba(242, 210, 122, 0.78);
  box-shadow:
    0 0 35px rgba(242, 210, 122, 0.16),
    inset 0 0 34px rgba(242, 210, 122, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  background:
    radial-gradient(ellipse at center, rgba(242, 210, 122, 0.08), rgba(242, 210, 122, 0.018) 48%, transparent 70%);
  animation: diagnosticLensDrift 9s ease-in-out infinite alternate;
}

.lens-ring {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(242, 210, 122, 0.28);
}

.lens-ring-one {
  inset: 1.2rem;
  opacity: 0.62;
}

.lens-ring-two {
  inset: 2.35rem;
  opacity: 0.28;
}

.lens-crosshair {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(242, 210, 122, 0.36), transparent);
  opacity: 0.32;
}

.lens-crosshair-x {
  left: 14%;
  right: 14%;
  top: 50%;
  height: 1px;
}

.lens-crosshair-y {
  top: 14%;
  bottom: 14%;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(242, 210, 122, 0.34), transparent);
}

.signal-node {
  position: absolute;
  z-index: 7;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 999px;
  background: #fff4c6;
  box-shadow:
    0 0 0 0.45rem rgba(242, 210, 122, 0.10),
    0 0 28px rgba(242, 210, 122, 0.65);
}

.node-primary { left: 55%; top: 45%; }
.node-west { left: 42%; top: 57%; width: 0.5rem; height: 0.5rem; opacity: 0.82; }
.node-east { left: 70%; top: 38%; width: 0.5rem; height: 0.5rem; opacity: 0.82; }
.node-south { left: 58%; top: 65%; width: 0.45rem; height: 0.45rem; opacity: 0.72; }

.signal-label {
  position: absolute;
  z-index: 9;
  min-height: 2.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.64rem;
  padding: 0.72rem 0.95rem;
  border: 1px solid rgba(201, 162, 74, 0.30);
  border-radius: 12px;
  background: rgba(7, 7, 7, 0.76);
  color: rgba(245, 241, 232, 0.88);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transform: translate3d(0, 0, 0);
}

.signal-label strong {
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.98rem;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.label-trust { left: 32%; top: 26%; }
.label-credibility { right: 8%; top: 28%; }
.label-risk { left: 27%; bottom: 30%; }
.label-readiness { right: 12%; bottom: 23%; }

.signal-icon {
  width: 1.15rem;
  height: 1.15rem;
  position: relative;
  display: inline-block;
  color: var(--gold-light);
}

.signal-warning::before {
  content: "";
  position: absolute;
  inset: 0.1rem 0.14rem;
  clip-path: polygon(50% 0, 100% 94%, 0 94%);
  border: 1.6px solid currentColor;
  background: transparent;
}

.signal-person::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0.08rem;
  width: 0.42rem;
  height: 0.42rem;
  border: 1.5px solid currentColor;
  border-radius: 999px;
  transform: translateX(-50%);
}

.signal-person::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.1rem;
  width: 0.9rem;
  height: 0.5rem;
  border: 1.5px solid currentColor;
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
  transform: translateX(-50%);
}

.signal-shield::before {
  content: "";
  position: absolute;
  inset: 0.05rem 0.18rem 0.08rem;
  border: 1.5px solid currentColor;
  border-radius: 0.18rem 0.18rem 0.5rem 0.5rem;
  clip-path: polygon(50% 0, 100% 22%, 88% 78%, 50% 100%, 12% 78%, 0 22%);
}

.signal-wave::before,
.signal-wave::after {
  content: "";
  position: absolute;
  inset: 0.2rem;
  border: 1.5px solid currentColor;
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-radius: 999px;
}

.signal-wave::after {
  inset: 0.02rem;
  opacity: 0.55;
}

@keyframes diagnosticLensDrift {
  from { transform: translate(-51%, -49%) rotate(-5deg) scale(0.995); }
  to { transform: translate(-49%, -51%) rotate(-3deg) scale(1.01); }
}

@media (hover: hover) and (pointer: fine) {
  .map-viewport:hover .signal-label {
    border-color: rgba(242, 210, 122, 0.48);
  }
}

@media (max-width: 1180px) {
  .hero-layout {
    grid-template-columns: 1fr !important;
  }

  .hero-intelligence-map {
    min-height: 460px;
  }

  .map-viewport {
    width: min(100%, 920px);
  }
}

@media (max-width: 760px) {
  .hero-intelligence-map {
    min-height: 330px;
    margin-top: 1.5rem;
  }

  .map-viewport {
    border-radius: 24px;
    aspect-ratio: 4 / 3;
  }

  .diagnostic-lens {
    width: clamp(220px, 82vw, 340px);
  }

  .signal-label {
    min-height: 2.2rem;
    padding: 0.55rem 0.68rem;
    border-radius: 10px;
  }

  .signal-label strong {
    font-size: 0.78rem;
  }

  .label-trust { left: 8%; top: 18%; }
  .label-credibility { right: 6%; top: 24%; }
  .label-risk { left: 8%; bottom: 22%; }
  .label-readiness { right: 6%; bottom: 16%; }
}

@media (max-width: 520px) {
  .hero-intelligence-map {
    min-height: 280px;
  }

  .signal-node,
  .signal-icon {
    display: none;
  }

  .signal-label {
    opacity: 0.86;
  }

  .label-trust { left: 6%; top: 14%; }
  .label-credibility { right: 6%; top: 16%; }
  .label-risk { left: 6%; bottom: 18%; }
  .label-readiness { right: 6%; bottom: 12%; }
}

@media (prefers-reduced-motion: reduce) {
  .diagnostic-lens {
    animation: none !important;
  }

  .map-viewport {
    transform: none !important;
  }
}

/* =========================================================
   HERO MAP PLACEMENT TUNE — WIDER, FURTHER RIGHT
   Gives the title more breathing room and makes the diagnostic map
   feel like a true hero feature instead of a small card.
   ========================================================= */

@media (min-width: 1181px) {
  .services-hero {
    padding-left: clamp(1.25rem, 4vw, 5.25rem) !important;
    padding-right: clamp(0.75rem, 2.2vw, 2.25rem) !important;
  }

  .services-hero > .section-inner.hero-layout {
    width: min(100%, 1540px) !important;
    max-width: 1540px !important;
    grid-template-columns: minmax(580px, 0.86fr) minmax(720px, 1.34fr) !important;
    gap: clamp(1.5rem, 2.5vw, 3.1rem) !important;
    align-items: center !important;
  }

  .services-hero .hero-copy {
    max-width: 760px !important;
    min-width: 0 !important;
  }

  .services-hero h1 {
    max-width: 790px !important;
    font-size: clamp(4.5rem, 6.35vw, 7.7rem) !important;
  }

  .services-hero .hero-intelligence-map {
    justify-self: end !important;
    width: min(62vw, 1040px) !important;
    min-height: clamp(560px, 48vw, 760px) !important;
    transform: translateX(clamp(1.25rem, 4.2vw, 4.8rem)) !important;
  }

  .services-hero .map-viewport {
    width: min(100%, 1040px) !important;
    aspect-ratio: 16 / 9 !important;
    border-radius: 38px !important;
    border-color: rgba(201, 162, 74, 0.14) !important;
    box-shadow:
      0 42px 110px rgba(0, 0, 0, 0.52),
      0 0 90px rgba(201, 162, 74, 0.07),
      inset 0 1px 0 rgba(242, 210, 122, 0.055),
      inset 0 0 0 1px rgba(255, 255, 255, 0.014) !important;
  }

  .services-hero .hero-map-image {
    transform: scale(1.08) !important;
    filter: brightness(0.86) contrast(1.12) saturate(1.08) !important;
  }

  .services-hero .diagnostic-lens {
    width: clamp(420px, 42vw, 690px) !important;
  }

  .services-hero .signal-label {
    transform: scale(1.04) translate3d(0, 0, 0) !important;
  }
}

@media (min-width: 1500px) {
  .services-hero > .section-inner.hero-layout {
    max-width: 1600px !important;
    grid-template-columns: minmax(610px, 0.82fr) minmax(800px, 1.42fr) !important;
  }

  .services-hero .hero-intelligence-map {
    width: min(65vw, 1120px) !important;
    transform: translateX(clamp(2rem, 5vw, 6.25rem)) !important;
  }

  .services-hero .map-viewport {
    width: min(100%, 1120px) !important;
  }
}

@media (max-width: 1180px) {
  .services-hero .hero-intelligence-map {
    transform: none !important;
  }
}


/* =========================================================
   HERO MAP UPDATE — FULL HEIGHT + CIRCULAR LENS
   Makes the hero map visually fill the section vertically
   and changes the diagnostic lens from an oval to a circle.
   ========================================================= */

@media (min-width: 1181px) {
  .services-hero {
    min-height: calc(100vh - var(--header-height));
  }

  .services-hero > .section-inner.hero-layout {
    min-height: calc(100vh - var(--header-height) - 2px) !important;
    align-items: stretch !important;
  }

  .services-hero .hero-copy {
    align-self: center !important;
    position: relative;
    z-index: 3;
    padding-right: clamp(1rem, 2vw, 2rem);
  }

  .services-hero .hero-intelligence-map {
    align-self: stretch !important;
    justify-self: end !important;
    display: flex !important;
    align-items: stretch !important;
    width: min(64vw, 1080px) !important;
    min-height: 100% !important;
    height: auto !important;
    margin-top: -1.25rem !important;
    margin-bottom: -1.25rem !important;
    transform: translateX(clamp(2rem, 5vw, 6rem)) !important;
  }

  .services-hero .map-viewport {
    flex: 1 1 auto !important;
    width: 100% !important;
    height: auto !important;
    min-height: calc(100vh - var(--header-height) - 1rem) !important;
    aspect-ratio: auto !important;
    border-radius: 42px !important;
  }

  .services-hero .hero-map-image {
    transform: scale(1.06) !important;
    object-position: center center !important;
  }

  .services-hero .diagnostic-lens {
    width: clamp(420px, 34vw, 620px) !important;
    aspect-ratio: 1 / 1 !important;
    border-radius: 50% !important;
    transform: translate(-50%, -50%) !important;
    background:
      radial-gradient(circle at center, rgba(242, 210, 122, 0.11), rgba(242, 210, 122, 0.025) 50%, transparent 72%) !important;
  }

  .services-hero .lens-ring-one {
    inset: 1.35rem !important;
  }

  .services-hero .lens-ring-two {
    inset: 2.7rem !important;
  }
}

@media (min-width: 1500px) {
  .services-hero .hero-intelligence-map {
    width: min(67vw, 1160px) !important;
    transform: translateX(clamp(2.5rem, 5.6vw, 6.75rem)) !important;
  }

  .services-hero .map-viewport {
    min-height: calc(100vh - var(--header-height) + 0.5rem) !important;
  }

  .services-hero .diagnostic-lens {
    width: clamp(470px, 33vw, 660px) !important;
  }
}

@media (max-width: 1180px) {
  .services-hero .diagnostic-lens {
    aspect-ratio: 1 / 1 !important;
    border-radius: 50% !important;
    transform: translate(-50%, -50%) !important;
  }
}


/* =========================================================
   HERO MAP EDGE FEATHER — SOFTEN MAP INTO BACKGROUND
   Removes the hard card-like edges and blends the map panel
   into the hero background with layered dark gradients.
   ========================================================= */

@media (min-width: 1181px) {
  .services-hero {
    background:
      radial-gradient(circle at 76% 36%, rgba(201, 162, 74, 0.10), transparent 34rem),
      radial-gradient(circle at 22% 54%, rgba(242, 210, 122, 0.055), transparent 24rem),
      linear-gradient(180deg, #070707 0%, #090807 52%, #060606 100%) !important;
  }

  .services-hero::before {
    background:
      linear-gradient(
        90deg,
        rgba(5, 5, 5, 0.98) 0%,
        rgba(5, 5, 5, 0.95) 26%,
        rgba(5, 5, 5, 0.72) 40%,
        rgba(5, 5, 5, 0.30) 55%,
        rgba(5, 5, 5, 0.18) 72%,
        rgba(5, 5, 5, 0.56) 100%
      ),
      radial-gradient(circle at 73% 44%, rgba(201, 162, 74, 0.12), transparent 34rem),
      linear-gradient(180deg, rgba(5, 5, 5, 0.20), rgba(5, 5, 5, 0.82)) !important;
  }

  .services-hero .hero-intelligence-map {
    overflow: visible !important;
  }

  .services-hero .map-viewport {
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    overflow: hidden !important;
  }

  /* Feather the actual image/layers so no rectangular map edge appears. */
  .services-hero .hero-map-image,
  .services-hero .map-depth-layer {
    -webkit-mask-image:
      linear-gradient(90deg, transparent 0%, #000 13%, #000 88%, transparent 100%),
      linear-gradient(180deg, transparent 0%, #000 9%, #000 90%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-image:
      linear-gradient(90deg, transparent 0%, #000 13%, #000 88%, transparent 100%),
      linear-gradient(180deg, transparent 0%, #000 9%, #000 90%, transparent 100%);
    mask-composite: intersect;
  }

  /* This sits above the image but below labels, adding a smooth dark edge fade. */
  .services-hero .map-viewport::after {
    z-index: 8 !important;
    opacity: 1 !important;
    mix-blend-mode: normal !important;
    background:
      linear-gradient(
        90deg,
        #070707 0%,
        rgba(7, 7, 7, 0.98) 4%,
        rgba(7, 7, 7, 0.78) 10%,
        rgba(7, 7, 7, 0.34) 19%,
        rgba(7, 7, 7, 0.00) 32%,
        rgba(7, 7, 7, 0.00) 78%,
        rgba(7, 7, 7, 0.24) 88%,
        rgba(7, 7, 7, 0.70) 96%,
        #070707 100%
      ),
      linear-gradient(
        180deg,
        #070707 0%,
        rgba(7, 7, 7, 0.88) 5%,
        rgba(7, 7, 7, 0.34) 14%,
        rgba(7, 7, 7, 0.00) 25%,
        rgba(7, 7, 7, 0.00) 76%,
        rgba(7, 7, 7, 0.42) 88%,
        rgba(7, 7, 7, 0.92) 97%,
        #060606 100%
      ),
      radial-gradient(circle at var(--lens-x) var(--lens-y), rgba(242, 210, 122, 0.09) 0%, rgba(242, 210, 122, 0.035) 15%, transparent 38%) !important;
  }

  /* Extra left-side blend where the map meets the headline area. */
  .services-hero .hero-intelligence-map::before {
    content: "";
    position: absolute;
    inset: -6rem auto -6rem -8rem;
    width: clamp(15rem, 24vw, 30rem);
    z-index: 10;
    pointer-events: none;
    background: linear-gradient(
      90deg,
      #070707 0%,
      rgba(7, 7, 7, 0.94) 20%,
      rgba(7, 7, 7, 0.58) 54%,
      rgba(7, 7, 7, 0.00) 100%
    );
    filter: blur(8px);
  }

  /* Preserve the circular lens while letting its outer glow fade naturally. */
  .services-hero .diagnostic-lens {
    aspect-ratio: 1 / 1 !important;
    border-radius: 50% !important;
    box-shadow:
      0 0 42px rgba(242, 210, 122, 0.14),
      inset 0 0 38px rgba(242, 210, 122, 0.075),
      inset 0 0 0 1px rgba(255, 255, 255, 0.035) !important;
  }
}

@media (max-width: 1180px) {
  .services-hero .map-viewport {
    border-color: rgba(201, 162, 74, 0.10) !important;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38) !important;
  }

  .services-hero .map-viewport::after {
    opacity: 1 !important;
    mix-blend-mode: normal !important;
    background:
      linear-gradient(90deg, rgba(7,7,7,0.95), transparent 18%, transparent 82%, rgba(7,7,7,0.92)),
      linear-gradient(180deg, rgba(7,7,7,0.78), transparent 18%, transparent 82%, rgba(7,7,7,0.82)) !important;
  }
}

/* =========================================================
   DIAGNOSTIC ARCHITECTURE — ROW-ALIGNED VERSION
   Aligns each input/output pair horizontally.
   ========================================================= */

.diagnostic-architecture.diagnostic-rows {
  display: block !important;
  padding-left: clamp(1.2rem, 2.4vw, 2.5rem) !important;
  border-left: 1px solid rgba(201, 162, 74, 0.28) !important;
}

.architecture-headings {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: clamp(2rem, 4vw, 4.25rem) !important;
  margin-bottom: 1.35rem !important;
}

.architecture-headings .module-label {
  display: block !important;
  padding-bottom: 1.15rem !important;
  border-bottom: 1px solid rgba(201, 162, 74, 0.24) !important;
}

.architecture-row {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: clamp(2rem, 4vw, 4.25rem) !important;
  border-bottom: 1px solid rgba(201, 162, 74, 0.14) !important;
}

.architecture-row article {
  display: grid !important;
  grid-template-columns: 4.2rem minmax(0, 1fr) !important;
  gap: 1.1rem !important;
  padding: clamp(1.45rem, 2vw, 1.85rem) 0 !important;
  border-bottom: 0 !important;
}

.architecture-row h3 {
  min-height: 3.55rem !important;
  display: flex !important;
  align-items: flex-start !important;
  color: rgba(245, 241, 232, 0.94) !important;
  font-size: clamp(1.28rem, 1.65vw, 1.62rem) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.015em !important;
}

.architecture-row p {
  margin-top: 0.55rem !important;
  color: rgba(245, 241, 232, 0.66) !important;
  font-size: clamp(0.93rem, 1vw, 1rem) !important;
  line-height: 1.62 !important;
}

/* Missing icon: Client Intelligence Intake */
.intake-line::before {
  width: 1.28rem;
  height: 1.62rem;
  border: 2px solid currentColor;
  border-radius: 0.18rem;
  transform: translate(-50%, -50%);
}

.intake-line::after {
  width: 0.68rem;
  height: 2px;
  background: currentColor;
  box-shadow:
    0 0.42rem 0 currentColor,
    0 0.84rem 0 currentColor;
  transform: translate(-50%, -58%);
}

/* Missing icon: Trust Gap Findings Synthesis */
.synthesis-line::before {
  width: 1.65rem;
  height: 1.65rem;
  border: 2px solid currentColor;
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.synthesis-line::after {
  width: 1.45rem;
  height: 1.45rem;
  background:
    radial-gradient(circle at 50% 50%, currentColor 0 0.14rem, transparent 0.16rem),
    linear-gradient(currentColor, currentColor) 50% 0 / 2px 100% no-repeat,
    linear-gradient(90deg, currentColor, currentColor) 0 50% / 100% 2px no-repeat;
  opacity: 0.95;
  transform: translate(-50%, -50%);
}

/* Responsive */
@media (max-width: 1180px) {
  .diagnostic-architecture.diagnostic-rows {
    padding-left: 0 !important;
    border-left: 0 !important;
    border-top: 1px solid rgba(201, 162, 74, 0.22) !important;
    padding-top: 2rem !important;
  }

  .architecture-headings,
  .architecture-row {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }

  .architecture-headings .module-label:nth-child(2) {
    margin-top: 1.8rem !important;
  }

  .architecture-row {
    border-bottom: 0 !important;
  }

  .architecture-row article {
    border-bottom: 1px solid rgba(201, 162, 74, 0.14) !important;
  }

  .architecture-row h3 {
    min-height: 0 !important;
  }
}

@media (max-width: 760px) {
  .architecture-row article {
    grid-template-columns: 1fr !important;
  }
}

/* =========================================================
   SYSTEM SECTION - FINAL PREMIUM OFFER SUITE VERSION
   Paste at the very bottom of services.css.
   ========================================================= */

.system-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 16%, rgba(201, 162, 74, 0.055), transparent 24rem),
    radial-gradient(circle at 82% 22%, rgba(242, 210, 122, 0.035), transparent 28rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.012), rgba(255, 255, 255, 0)) !important;
}

.system-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(201, 162, 74, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 162, 74, 0.024) 1px, transparent 1px);
  background-size: 96px 96px;
  opacity: 0.26;
  mask-image: radial-gradient(circle at 65% 35%, #000 0, #000 26rem, transparent 54rem);
}

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

.system-intro {
  align-items: center !important;
  margin-bottom: clamp(2.8rem, 5vw, 4.4rem) !important;
}

.system-intro h2 {
  max-width: 780px !important;
  font-size: clamp(3rem, 5.1vw, 6.4rem) !important;
  line-height: 1.02 !important;
}

.system-proof-block {
  max-width: 780px !important;
  justify-self: end !important;
  padding-top: 0.15rem !important;
}

.system-proof-block .module-label {
  display: inline-block !important;
  margin: 0 0 1.35rem 0 !important;
  color: var(--gold-light, #f2d27a) !important;
  font-family: Aptos, "Segoe UI", Arial, sans-serif !important;
  font-size: 0.72rem !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  letter-spacing: 0.24em !important;
  text-transform: uppercase !important;
}

.proof-rule {
  width: 100% !important;
  height: 2px !important;
  margin-bottom: 1.65rem !important;
  border-radius: 999px !important;
  background: linear-gradient(
    90deg,
    rgba(242, 210, 122, 0.95),
    rgba(201, 162, 74, 0.35)
  ) !important;
}

.system-proof-block p:not(.module-label) {
  max-width: 780px !important;
  color: #f5f1e8 !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: clamp(1.1rem, 1.35vw, 1.42rem) !important;
  line-height: 1.68 !important;
  font-weight: 600 !important;
  letter-spacing: -0.01em !important;
}

.system-track {
  gap: clamp(1rem, 1.6vw, 1.35rem) !important;
}

.system-card::after {
  content: none !important;
  display: none !important;
}

.system-card {
  min-height: 420px !important;
  padding: clamp(1.55rem, 2vw, 1.9rem) !important;
  justify-content: flex-start !important;
  text-align: center !important;
  background:
    radial-gradient(circle at 50% 0%, rgba(201, 162, 74, 0.06), transparent 15rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.044), rgba(255, 255, 255, 0.014)) !important;
}

.system-card.is-featured {
  border-color: rgba(242, 210, 122, 0.6) !important;
  background:
    radial-gradient(circle at 50% 0%, rgba(201, 162, 74, 0.18), transparent 18rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.058), rgba(255, 255, 255, 0.018)) !important;
}

.system-card .step-number {
  align-self: flex-start !important;
}

.system-card .step-star {
  display: none !important;
}

.system-card .step-icon,
.system-card .target-icon,
.system-card .audit-icon,
.system-card .map-icon,
.system-card .shield-icon {
  width: 4.25rem !important;
  height: 4.25rem !important;
  margin: 2.15rem auto 1.2rem !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 1px solid rgba(201, 162, 74, 0.32) !important;
  border-radius: 999px !important;
  color: rgba(242, 210, 122, 0.88) !important;
  background:
    radial-gradient(circle at 50% 35%, rgba(201, 162, 74, 0.12), transparent 65%),
    rgba(0, 0, 0, 0.18) !important;
  box-shadow:
    inset 0 0 20px rgba(201, 162, 74, 0.055),
    0 14px 38px rgba(0, 0, 0, 0.26) !important;
}

.system-card .step-icon::before,
.system-card .step-icon::after,
.system-card .target-icon::before,
.system-card .target-icon::after,
.system-card .audit-icon::before,
.system-card .audit-icon::after,
.system-card .map-icon::before,
.system-card .map-icon::after,
.system-card .shield-icon::before,
.system-card .shield-icon::after {
  content: none !important;
  display: none !important;
}

.system-card .step-icon svg {
  width: 2.15rem !important;
  height: 2.15rem !important;
  display: block !important;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 1.8 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}

.system-card h3 {
  max-width: 14ch !important;
  min-height: 4.75rem !important;
  margin: 0 auto !important;
  display: flex !important;
  align-items: flex-end !important;
  justify-content: center !important;
  color: #f5f1e8 !important;
}

.system-card .offer-line {
  margin-top: 0.45rem !important;
  color: rgba(245, 241, 232, 0.82) !important;
  font-size: 0.98rem !important;
  line-height: 1.45 !important;
}

.system-card .offer-summary {
  max-width: 26ch !important;
  margin: 0.9rem auto 0 !important;
  color: rgba(245, 241, 232, 0.62) !important;
  font-size: 0.9rem !important;
  line-height: 1.58 !important;
}

.system-card small {
  margin-top: auto !important;
  padding-top: 1.2rem !important;
}

@media (max-width: 1180px) {
  .system-proof-block {
    justify-self: start !important;
    max-width: 820px !important;
  }

  .system-card {
    min-height: 380px !important;
  }
}

@media (max-width: 760px) {
  .system-intro h2 {
    font-size: clamp(2.75rem, 12vw, 4.6rem) !important;
  }

  .system-proof-block p:not(.module-label) {
    font-size: clamp(1.05rem, 4.4vw, 1.22rem) !important;
  }

  .system-card h3 {
    min-height: 0 !important;
  }

  .system-card {
    min-height: 340px !important;
  }
}

/* =========================================================
   SYSTEM SECTION — TITLE WIDTH + CARD TEXT ALIGNMENT FIX
   ========================================================= */

/* Stretch the headline area wider so it does not stack so narrowly */
.system-intro {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr) !important;
  gap: clamp(3rem, 6vw, 6rem) !important;
  align-items: center !important;
}

.system-intro h2,
#system-title {
  max-width: 940px !important;
  font-size: clamp(3rem, 5vw, 6.15rem) !important;
  line-height: 1.04 !important;
  text-wrap: balance !important;
}

/* Keep the proof block aligned with the wider title */
.system-proof-block {
  max-width: 760px !important;
  justify-self: end !important;
}

/* Make every offer card use the same internal row structure */
.system-card {
  display: grid !important;
  grid-template-rows:
    auto     /* number */
    5.8rem   /* icon area */
    5.9rem   /* title area */
    2.5rem   /* short offer line */
    1fr      /* summary */
    auto !important; /* required first engagement label */
  align-items: start !important;
  justify-items: center !important;
  min-height: 430px !important;
}

/* Number stays pinned top-left */
.system-card .step-number {
  justify-self: start !important;
  align-self: start !important;
}

/* Icons now occupy the exact same row height */
.system-card .step-icon {
  grid-row: 2 !important;
  align-self: center !important;
  margin: 0 auto !important;
}

/* Titles occupy the exact same vertical space */
.system-card h3 {
  grid-row: 3 !important;
  min-height: 0 !important;
  height: 5.9rem !important;
  max-width: 15ch !important;
  margin: 0 auto !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  text-align: center !important;
}

/* Short line starts at the same position on every card */
.system-card .offer-line {
  grid-row: 4 !important;
  margin: 0 !important;
  align-self: start !important;
  text-align: center !important;
}

/* Body summary now starts at the same horizontal/vertical position */
.system-card .offer-summary {
  grid-row: 5 !important;
  margin: 0 auto !important;
  padding-top: 0.15rem !important;
  max-width: 27ch !important;
  text-align: center !important;
}

/* Bottom label stays aligned */
.system-card small {
  grid-row: 6 !important;
  margin-top: 1.1rem !important;
  align-self: end !important;
}

/* Responsive cleanup */
@media (max-width: 1180px) {
  .system-intro {
    grid-template-columns: 1fr !important;
  }

  .system-proof-block {
    justify-self: start !important;
  }

  .system-card {
    min-height: 400px !important;
  }
}

@media (max-width: 760px) {
  .system-card {
    grid-template-rows: auto auto auto auto auto auto !important;
    min-height: 0 !important;
  }

  .system-card h3 {
    height: auto !important;
  }
}


/* =========================================================
   MOBILE EXPERIENCE PASS V1 — SERVICES
   ========================================================= */
@media (max-width: 760px) {
  /* Smaller, static diagnostic lens for touch devices. */
  .services-hero .hero-intelligence-map {
    min-height: 260px !important;
    margin-top: 1.1rem !important;
    pointer-events: none !important;
    perspective: none !important;
  }

  .services-hero .map-viewport {
    width: 100% !important;
    aspect-ratio: 4 / 3 !important;
    border-radius: 22px !important;
    transform: none !important;
    transition: none !important;
  }

  .services-hero .diagnostic-lens {
    left: 55% !important;
    top: 45% !important;
    width: clamp(138px, 47vw, 190px) !important;
    aspect-ratio: 1.25 / 1 !important;
    transform: translate(-50%, -50%) rotate(-3deg) !important;
    animation: none !important;
  }

  .services-hero .lens-ring-one { inset: 0.65rem !important; }
  .services-hero .lens-ring-two { inset: 1.3rem !important; }

  .services-hero .signal-label {
    min-height: 2rem !important;
    padding: 0.42rem 0.56rem !important;
  }

  .services-hero .signal-label strong {
    font-size: 0.7rem !important;
  }

  /* On phones, show every intelligence input first, then every leadership output. */
  .diagnostic-architecture.diagnostic-rows {
    display: flex !important;
    flex-direction: column !important;
    padding-top: 1.6rem !important;
  }

  .diagnostic-architecture .architecture-headings,
  .diagnostic-architecture .architecture-row {
    display: contents !important;
  }

  .diagnostic-architecture .architecture-headings .module-label:first-child {
    order: 1;
    margin: 0 0 0.35rem !important;
    padding: 0 0 0.9rem !important;
    border-bottom: 1px solid rgba(201, 162, 74, 0.28) !important;
  }

  .diagnostic-architecture .architecture-input {
    order: 2;
  }

  .diagnostic-architecture .architecture-headings .module-label:nth-child(2) {
    order: 3;
    margin: 2.2rem 0 0.35rem !important;
    padding: 0 0 0.9rem !important;
    border-bottom: 1px solid rgba(201, 162, 74, 0.28) !important;
  }

  .diagnostic-architecture .architecture-output {
    order: 4;
  }

  .diagnostic-architecture .architecture-input,
  .diagnostic-architecture .architecture-output {
    grid-template-columns: 3rem minmax(0, 1fr) !important;
    gap: 0.9rem !important;
    padding: 1.15rem 0 !important;
    border-bottom: 1px solid rgba(201, 162, 74, 0.14) !important;
  }

  .diagnostic-architecture .line-icon {
    width: 3rem !important;
    height: 3rem !important;
  }

  /* Replace the over-justified tall cards with compact, left-aligned mobile cards. */
  .system-track {
    grid-template-columns: 1fr !important;
    gap: 0.9rem !important;
  }

  .system-card {
    display: grid !important;
    grid-template-columns: 3.25rem minmax(0, 1fr) !important;
    grid-template-rows: auto auto auto auto !important;
    gap: 0.35rem 0.95rem !important;
    min-height: 0 !important;
    padding: 1.15rem !important;
    justify-items: stretch !important;
    align-items: start !important;
    text-align: left !important;
    border-radius: 16px !important;
  }

  .system-card .step-number {
    grid-column: 1 !important;
    grid-row: 1 !important;
    position: static !important;
    justify-self: start !important;
  }

  .system-card .step-icon {
    grid-column: 1 !important;
    grid-row: 2 / span 2 !important;
    width: 3.1rem !important;
    height: 3.1rem !important;
    margin: 0.25rem 0 0 !important;
    align-self: start !important;
  }

  .system-card .step-icon svg {
    width: 1.6rem !important;
    height: 1.6rem !important;
  }

  .system-card h3 {
    grid-column: 2 !important;
    grid-row: 1 !important;
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    display: block !important;
    text-align: left !important;
    font-size: clamp(1.55rem, 7.2vw, 2rem) !important;
    line-height: 1.05 !important;
  }

  .system-card .offer-line {
    grid-column: 2 !important;
    grid-row: 2 !important;
    margin: 0.25rem 0 0 !important;
    text-align: left !important;
  }

  .system-card .offer-summary {
    grid-column: 2 !important;
    grid-row: 3 !important;
    max-width: none !important;
    margin: 0.35rem 0 0 !important;
    padding: 0 !important;
    text-align: left !important;
  }

  .system-card small {
    grid-column: 2 !important;
    grid-row: 4 !important;
    margin: 0.45rem 0 0 !important;
    padding-top: 0.55rem !important;
    text-align: left !important;
    align-self: start !important;
  }

  .diagnostic-copy .button,
  .final-cta .button {
    display: flex !important;
    justify-content: center !important;
    text-align: center !important;
  }
}
