:root {
  --bg: #050505;
  --bg-soft: #0a0a0a;
  --panel: rgba(15, 14, 12, 0.82);
  --panel-strong: #11100e;
  --line: rgba(217, 166, 63, 0.22);
  --line-strong: rgba(230, 183, 78, 0.52);
  --gold: #d8a641;
  --gold-bright: #f4c767;
  --gold-dark: #8d611d;
  --text: #f6f2ea;
  --muted: #b9b4aa;
  --muted-2: #868174;
  --danger: #ff6b6b;
  --success: #6dffb2;
  --shadow: 0 32px 90px rgba(0, 0, 0, 0.55);
  --gold-glow: 0 0 42px rgba(218, 166, 65, 0.18);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1360px;
  --header-height: 82px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 78% 8%, rgba(197, 133, 30, 0.16), transparent 34rem),
    radial-gradient(circle at 10% 18%, rgba(255, 255, 255, 0.04), transparent 28rem),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -3;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.55), transparent 90%);
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
::selection { background: rgba(216,166,65,.38); color: #fff; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -4rem;
  z-index: 9999;
  padding: .75rem 1rem;
  background: var(--gold);
  color: #080806;
  border-radius: 999px;
  font-weight: 800;
  transition: top .2s ease;
}
.skip-link:focus { top: 1rem; }

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.section { position: relative; padding: 112px 0; }
.section h1, .section h2, .section h3 { margin: 0; line-height: .98; letter-spacing: -0.055em; }
.section p { margin: 0; color: var(--muted); }

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 9998;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-bright));
  box-shadow: 0 0 22px rgba(244,199,103,.55);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  height: var(--header-height);
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(5,5,5,.74);
  border-bottom-color: rgba(216,166,65,.14);
  backdrop-filter: blur(18px);
}
.header-inner {
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}
.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(216,166,65,.26));
}
.brand span { display: grid; gap: 0; }
.brand strong {
  color: var(--gold-bright);
  letter-spacing: .08em;
  font-size: 1rem;
  line-height: 1;
}
.brand small {
  color: var(--gold);
  letter-spacing: .26em;
  font-size: .54rem;
  margin-top: 5px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(246,242,234,.76);
  font-size: .92rem;
}
.main-nav a {
  position: relative;
  transition: color .2s ease;
}
.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--gold);
  transition: transform .22s ease;
}
.main-nav a:hover { color: #fff; }
.main-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta {
  padding: 11px 16px;
  border: 1px solid var(--line-strong);
  color: var(--gold-bright) !important;
  border-radius: 999px;
  background: rgba(216,166,65,.06);
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: rgba(216,166,65,.06);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--gold-bright);
  margin: 5px 0;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


.hero .container {
  width: min(1180px, calc(100% - 72px));
}

.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 100px 0 54px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse at 72% 46%, rgba(216,166,65,.22), transparent 30%),
    radial-gradient(ellipse at 24% 18%, rgba(255,255,255,.05), transparent 28%),
    radial-gradient(ellipse at 58% 106%, rgba(216,166,65,.08), transparent 33%),
    linear-gradient(125deg, #020202 0%, #070706 38%, #0b0906 64%, #030303 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 220px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
  z-index: -1;
}
.hero-noise {
  position: absolute;
  inset: 0;
  z-index: -4;
  opacity: .27;
  background:
    radial-gradient(circle at 68% 42%, rgba(216,166,65,.16), transparent 22rem),
    linear-gradient(90deg, rgba(255,255,255,.022), transparent 42%, rgba(216,166,65,.05));
}
.hero-ring {
  position: absolute;
  border: 1px solid rgba(216,166,65,.16);
  border-radius: 50%;
  pointer-events: none;
  z-index: -2;
}
.ring-one { width: 900px; height: 900px; right: -240px; top: -150px; }
.ring-two { width: 620px; height: 620px; left: -290px; bottom: -260px; }
.hero-eagle {
  position: absolute;
  z-index: 0;
  right: clamp(42px, 8vw, 150px);
  top: 52%;
  width: min(38vw, 500px);
  opacity: .24;
  transform: translateY(-44%);
  filter: blur(7px) saturate(1.04) drop-shadow(0 0 30px rgba(244,199,103,.16)) drop-shadow(0 26px 54px rgba(0,0,0,.72));
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 690px) minmax(340px, 410px);
  gap: clamp(26px, 3vw, 46px);
  align-items: center;
  justify-content: center;
  max-width: 1180px;
  min-height: calc(100svh - 154px);
}
.hero-copy { max-width: 720px; position: relative; z-index: 2; }
.eyebrow {
  color: var(--gold) !important;
  text-transform: uppercase;
  letter-spacing: .46em;
  font-size: .76rem;
  font-weight: 700;
  margin-bottom: 22px !important;
}
h1 {
  font-size: clamp(2.72rem, 4.1vw, 4.85rem);
  max-width: 760px;
  line-height: .94;
  text-wrap: pretty;
}
h1 span, .section-heading h2 span {
  display: block;
  color: transparent;
  background: linear-gradient(92deg, #fff 0%, #fff 18%, var(--gold-bright) 58%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
.hero-subtitle {
  max-width: 650px;
  margin-top: 20px !important;
  font-size: clamp(1rem, 1.06vw, 1.12rem);
}
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.hero-points span, .final-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(216,166,65,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.035);
  color: rgba(246,242,234,.86);
  font-size: .88rem;
}
.hero-points span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 12px rgba(244,199,103,.5);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 24px; }
.assurance { margin-top: 14px !important; max-width: 600px; font-size: .92rem; color: var(--muted-2) !important; }

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 15px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 850;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .82rem;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease;
  isolation: isolate;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #090704;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold), var(--gold-dark));
  box-shadow: 0 18px 42px rgba(216,166,65,.2), inset 0 1px 0 rgba(255,255,255,.42);
}
.btn-primary:hover { box-shadow: 0 24px 55px rgba(216,166,65,.28), inset 0 1px 0 rgba(255,255,255,.42); }
.btn-ghost {
  color: var(--gold-bright);
  border-color: rgba(216,166,65,.34);
  background: rgba(216,166,65,.045);
}
.btn-ghost:hover { border-color: rgba(244,199,103,.72); box-shadow: var(--gold-glow); }

.form-card {
  position: relative;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(140deg, rgba(255,255,255,.075), transparent 32%),
    radial-gradient(circle at 12% 5%, rgba(216,166,65,.14), transparent 16rem),
    rgba(10,10,9,.78);
  box-shadow: var(--shadow), 0 0 0 1px rgba(255,255,255,.025) inset;
  backdrop-filter: blur(20px);
  overflow: hidden;
}
.form-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(145deg, rgba(244,199,103,.75), transparent 36%, rgba(255,255,255,.12));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.hero-form { transform: none; position: relative; z-index: 2; scroll-margin-top: calc(var(--header-height) + 24px); }
.form-card-head { margin-bottom: 20px; }
.card-kicker {
  color: var(--gold-bright) !important;
  text-transform: uppercase;
  letter-spacing: .26em;
  font-size: .72rem;
  font-weight: 850;
  margin-bottom: 12px !important;
}
.form-card h2 {
  font-size: clamp(1.7rem, 2vw, 2.3rem);
  letter-spacing: -0.04em;
  margin-bottom: 10px;
}
.diagnosis-form { display: grid; gap: 14px; }
.form-row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
label {
  display: grid;
  gap: 7px;
  color: rgba(246,242,234,.84);
  font-size: .82rem;
  font-weight: 740;
}
input, textarea, select {
  width: 100%;
  color: var(--text);
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  padding: 13px 14px;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
textarea { resize: vertical; min-height: 92px; }
select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%); background-position: calc(100% - 18px) 52%, calc(100% - 13px) 52%; background-size: 5px 5px; background-repeat: no-repeat; }
input::placeholder, textarea::placeholder { color: rgba(185,180,170,.46); }
input:focus, textarea:focus, select:focus {
  border-color: rgba(244,199,103,.72);
  box-shadow: 0 0 0 4px rgba(216,166,65,.1);
  background: rgba(255,255,255,.078);
}
input.is-invalid, textarea.is-invalid, select.is-invalid { border-color: rgba(255,107,107,.8); }
.form-submit { width: 100%; margin-top: 2px; }
.form-privacy { font-size: .78rem !important; color: var(--muted-2) !important; text-align: center; }
.form-status {
  min-height: 18px;
  color: var(--muted);
  font-size: .84rem;
  text-align: center;
}
.form-status.success { color: var(--success); }
.form-status.error { color: var(--danger); }
.honey { display: none !important; }

.authority-strip {
  border-block: 1px solid rgba(216,166,65,.14);
  background: rgba(255,255,255,.025);
  overflow: hidden;
}
.strip-inner {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 18px 0;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .75rem;
  white-space: nowrap;
}

.section-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 70px;
  align-items: start;
}
.section-copy h2, .section-heading h2 {
  font-size: clamp(2.4rem, 4.8vw, 5.2rem);
  text-wrap: balance;
}
.section-copy .lead, .section-heading p, .section-copy > p:not(.eyebrow) {
  margin-top: 22px !important;
  font-size: 1.08rem;
}
.section-copy > p:not(.eyebrow) { max-width: 650px; }
.problem-cards { display: grid; gap: 18px; }
.premium-card, .service-card, .audience-grid article, .timeline article {
  border: 1px solid rgba(216,166,65,.15);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.015));
  box-shadow: 0 18px 70px rgba(0,0,0,.24);
}
.premium-card {
  padding: 28px;
  display: grid;
  gap: 12px;
}
.card-number, .service-card span, .timeline span {
  color: var(--gold-bright);
  font-weight: 900;
  letter-spacing: .16em;
  font-size: .78rem;
}
.premium-card h3, .service-card h3, .audience-grid h3, .timeline h3 {
  font-size: 1.45rem;
  letter-spacing: -.035em;
}

.diagnosis { overflow: hidden; }
.diagnosis::before, .services::before, .final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 50%, rgba(216,166,65,.09), transparent 35rem);
  opacity: .8;
}
.diagnosis-layout {
  display: grid;
  grid-template-columns: .78fr 1fr;
  gap: 70px;
  align-items: center;
}
.diagnosis-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}
.diagnosis-visual img {
  width: min(460px, 84%);
  opacity: .82;
  filter: drop-shadow(0 0 36px rgba(216,166,65,.16));
}
.orbit {
  position: absolute;
  border: 1px solid rgba(216,166,65,.16);
  border-radius: 50%;
  animation: spin 18s linear infinite;
}
.orbit-a { width: 480px; height: 480px; }
.orbit-b { width: 340px; height: 340px; animation-duration: 26s; animation-direction: reverse; }
.orbit::after {
  content: "";
  position: absolute;
  top: 18%;
  right: 9%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 20px rgba(244,199,103,.7);
}
@keyframes spin { to { transform: rotate(360deg); } }
.check-list { display: grid; gap: 16px; margin: 30px 0; }
.check-list div, .why-list div {
  position: relative;
  padding: 20px 20px 20px 54px;
  border: 1px solid rgba(216,166,65,.14);
  border-radius: 18px;
  background: rgba(255,255,255,.035);
}
.check-list div::before, .why-list div::before {
  content: "✓";
  position: absolute;
  left: 18px;
  top: 18px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #080806;
  background: var(--gold-bright);
  font-size: .78rem;
  font-weight: 900;
}
.check-list strong, .why-list strong { display: block; color: var(--text); margin-bottom: 5px; }
.check-list span, .why-list span { display: block; color: var(--muted); }

.mid-cta { padding-block: 72px; }
.mid-card {
  position: relative;
  display: grid;
  grid-template-columns: .85fr 1.05fr;
  gap: 40px;
  align-items: center;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 8% 0%, rgba(216,166,65,.13), transparent 20rem),
    linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.018));
  box-shadow: var(--shadow);
  overflow: hidden;
}
.mid-card h2 { font-size: clamp(2rem, 3.6vw, 4rem); letter-spacing: -.055em; line-height: .98; }
.mid-card p:not(.eyebrow) { margin-top: 18px; }
.compact-form {
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.compact-form .form-submit, .compact-form .form-privacy, .compact-form .form-status { grid-column: 1 / -1; }

.section-heading { max-width: 860px; margin-bottom: 44px; }
.section-heading.center { text-align: center; margin-inline: auto; }
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.audience-grid article { padding: 26px; min-height: 240px; }
.audience-grid h3 { margin-bottom: 12px; }

.services { overflow: hidden; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.service-card {
  position: relative;
  padding: 26px;
  min-height: 246px;
  overflow: hidden;
  transition: transform .24s ease, border-color .24s ease, background .24s ease;
}
.service-card::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  right: -50px;
  bottom: -50px;
  background: radial-gradient(circle, rgba(216,166,65,.22), transparent 70%);
  opacity: 0;
  transition: opacity .24s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(244,199,103,.45);
  background: linear-gradient(145deg, rgba(216,166,65,.08), rgba(255,255,255,.02));
}
.service-card:hover::after { opacity: 1; }
.service-card span { display: block; margin-bottom: 34px; }
.service-card h3 { margin-bottom: 14px; }
.services-footer {
  margin-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 26px;
  border: 1px solid rgba(216,166,65,.14);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.025);
}
.services-footer strong { color: var(--gold-bright); }

.process { background: linear-gradient(to bottom, transparent, rgba(255,255,255,.015), transparent); }
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: step;
}
.timeline article { padding: 28px; position: relative; }
.timeline article::before {
  content: "";
  position: absolute;
  top: 40px;
  right: -18px;
  width: 18px;
  height: 1px;
  background: rgba(216,166,65,.35);
}
.timeline article:last-child::before { display: none; }
.timeline span { display: block; margin-bottom: 48px; }
.timeline h3 { margin-bottom: 14px; }

.why-card {
  display: grid;
  grid-template-columns: .85fr 1fr;
  gap: 54px;
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(255,255,255,.06), transparent),
    radial-gradient(circle at 92% 16%, rgba(216,166,65,.13), transparent 25rem),
    rgba(255,255,255,.025);
  box-shadow: var(--shadow);
}
.why-card h2 { font-size: clamp(2.2rem, 4.3vw, 5rem); letter-spacing: -.055em; line-height: .98; }
.why-card p:not(.eyebrow) { margin-top: 22px; font-size: 1.08rem; }
.why-list { display: grid; gap: 16px; }

.faq-layout {
  display: grid;
  grid-template-columns: .72fr 1fr;
  gap: 70px;
  align-items: start;
}
.faq-list { display: grid; gap: 14px; }
details {
  border: 1px solid rgba(216,166,65,.14);
  border-radius: 18px;
  background: rgba(255,255,255,.035);
  overflow: hidden;
}
summary {
  padding: 22px 24px;
  color: var(--text);
  font-weight: 850;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+";
  color: var(--gold-bright);
  font-size: 1.3rem;
  line-height: 1;
}
details[open] summary::after { content: "–"; }
details p { padding: 0 24px 22px; }

.final-cta {
  overflow: hidden;
  padding-bottom: 120px;
}
.final-bg-eagle {
  position: absolute;
  left: -12%;
  bottom: 0;
  width: min(60vw, 780px);
  opacity: .055;
  filter: blur(1px);
  pointer-events: none;
}
.final-layout {
  display: grid;
  grid-template-columns: 1fr minmax(390px, .78fr);
  gap: 70px;
  align-items: center;
}
.final-proof { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.final-proof span { color: rgba(246,242,234,.92); }

.site-footer {
  border-top: 1px solid rgba(216,166,65,.14);
  background: #030303;
  padding: 54px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr .6fr .7fr;
  gap: 54px;
}
.footer-brand { margin-bottom: 20px; }
.footer-grid p { color: var(--muted); max-width: 430px; }
.footer-grid h2 {
  font-size: .84rem;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--gold-bright);
  margin: 0 0 14px;
}
.footer-grid a:not(.brand) {
  display: block;
  color: var(--muted);
  margin: 9px 0;
  transition: color .18s ease;
}
.footer-grid a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  margin-top: 42px;
  padding-top: 22px;
  color: var(--muted-2);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: .9rem;
}
.footer-bottom a { color: var(--muted); }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

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

@media (max-width: 1080px) {
  :root { --header-height: 74px; }
  .hero-grid, .section-grid, .diagnosis-layout, .mid-card, .why-card, .faq-layout, .final-layout { grid-template-columns: 1fr; }
  .hero { padding-top: 106px; padding-bottom: 56px; }
  .hero-grid { min-height: auto; max-width: 920px; justify-content: start; }
  .hero-eagle { width: min(72vw, 540px); right: -80px; top: 215px; opacity: .14; transform: none; filter: blur(8px) saturate(1.02); }
  .hero-copy { max-width: 820px; }
  .hero-form { transform: none; }
  .diagnosis-visual { min-height: 360px; order: 2; opacity: .7; }
  .audience-grid, .services-grid, .timeline { grid-template-columns: repeat(2, 1fr); }
  .timeline article::before { display: none; }
}

@media (max-width: 820px) {
  .container { width: min(100% - 28px, var(--container)); }
  .site-header { background: rgba(5,5,5,.82); backdrop-filter: blur(18px); border-bottom: 1px solid rgba(216,166,65,.1); }
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 14px;
    right: 14px;
    display: grid;
    gap: 0;
    background: rgba(8,8,8,.96);
    border: 1px solid rgba(216,166,65,.18);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 10px;
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease;
  }
  .main-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .main-nav a { padding: 14px 16px; border-radius: 12px; }
  .main-nav a:hover { background: rgba(216,166,65,.06); }
  .main-nav a::after { display: none; }
  .nav-cta { text-align: center; margin-top: 6px; }
  .section { padding: 78px 0; }
  h1 { font-size: clamp(2.4rem, 6.6vw, 3.75rem); line-height: .96; max-width: 780px; }
  .hero-subtitle { font-size: 1.05rem; }
  .eyebrow { letter-spacing: .26em; line-height: 1.6; }
  .form-row.two, .compact-form { grid-template-columns: 1fr; }
  .form-card, .mid-card, .why-card { padding: 24px; border-radius: 24px; }
  .services-footer { flex-direction: column; align-items: flex-start; }
  .strip-inner { overflow: auto; justify-content: flex-start; padding-bottom: 16px; scrollbar-width: none; }
  .strip-inner::-webkit-scrollbar { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 580px) {
  .hero .container { width: min(100% - 28px, var(--container)); }
  h1 { font-size: clamp(1.9rem, 7.6vw, 2.35rem); max-width: 100%; }
  .brand strong { font-size: .86rem; }
  .brand small { font-size: .46rem; letter-spacing: .2em; }
  .brand img { width: 44px; height: 44px; }
  .hero { min-height: auto; padding-bottom: 56px; }
  .hero-eagle { width: 108vw; right: -230px; top: 118px; opacity: .12; filter: blur(9px) saturate(1); }
  .hero-actions .btn { width: 100%; }
  .btn { min-height: 52px; font-size: .76rem; padding-inline: 18px; }
  .hero-points span, .final-proof span { width: 100%; justify-content: center; }
  .audience-grid, .services-grid, .timeline { grid-template-columns: 1fr; }
  .audience-grid article, .service-card { min-height: auto; }
  .diagnosis-visual { display: none; }
  .section-heading { margin-bottom: 30px; }
  input, textarea, select { font-size: 16px; }
}

#hero-title br { display: block; content: ""; }


/* V5 conversion-focused landing refinements */
.section {
  padding: 92px 0;
}
.section.compact {
  padding: 76px 0;
}
.section-copy h2,
.section-heading h2 {
  font-size: clamp(2.15rem, 4vw, 4.55rem);
}
.section-copy .lead,
.section-heading p,
.section-copy > p:not(.eyebrow) {
  font-size: clamp(1rem, 1.04vw, 1.08rem);
}

.problem-tight {
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 4vw, 56px);
  align-items: center;
}
.compact-cards {
  gap: 14px;
}
.compact-cards .premium-card {
  padding: 22px;
}
.compact-cards .premium-card h3 {
  font-size: 1.22rem;
}
.compact-cards .premium-card p {
  font-size: .96rem;
}

.diagnosis-tight {
  grid-template-columns: minmax(0, .95fr) minmax(340px, .82fr);
  gap: clamp(34px, 4vw, 58px);
  align-items: center;
}
.diagnosis-summary {
  position: relative;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 100% 0%, rgba(216,166,65,.16), transparent 18rem),
    linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.018));
  box-shadow: var(--shadow);
  overflow: hidden;
}
.diagnosis-summary::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: .18;
  mask-image: linear-gradient(140deg, rgba(0,0,0,.9), transparent 68%);
}
.summary-head {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(216,166,65,.16);
}
.summary-head span {
  color: var(--gold-bright);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.summary-head strong {
  color: rgba(246,242,234,.92);
  font-size: .96rem;
}
.review-list {
  position: relative;
  display: grid;
  gap: 12px;
}
.review-list div {
  padding: 14px 14px 14px 18px;
  border: 1px solid rgba(216,166,65,.12);
  border-radius: 16px;
  background: rgba(255,255,255,.035);
}
.review-list strong {
  display: block;
  color: var(--text);
  line-height: 1.2;
}
.review-list span {
  display: block;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.45;
  margin-top: 4px;
}
.diagnosis-note {
  position: relative;
  margin-top: 16px !important;
  color: rgba(246,242,234,.72) !important;
  font-size: .9rem;
}

.services-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  max-width: none;
}
.services-intro > div:first-child {
  max-width: 860px;
}
.carousel-controls {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}
.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(216,166,65,.34);
  background: rgba(216,166,65,.055);
  color: var(--gold-bright);
  font-weight: 900;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, opacity .2s ease;
}
.carousel-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(244,199,103,.68);
  background: rgba(216,166,65,.1);
}
.carousel-btn:disabled {
  opacity: .38;
  cursor: not-allowed;
  transform: none;
}
.services-carousel {
  position: relative;
  margin-top: 4px;
}
.services-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: 2px;
  padding: 2px 2px 16px;
  scrollbar-width: none;
}
.services-track::-webkit-scrollbar {
  display: none;
}
.services-track .service-card {
  flex: 0 0 clamp(276px, 27vw, 350px);
  min-height: 210px;
  scroll-snap-align: start;
}
.services-track .service-card span {
  margin-bottom: 28px;
}
.compact-footer {
  margin-top: 18px;
  padding: 20px 22px;
}

.timeline-three {
  grid-template-columns: repeat(3, 1fr);
}
.timeline-three article {
  min-height: 220px;
}
.timeline-three article::before {
  width: 18px;
}
.timeline-three span {
  margin-bottom: 36px;
}
.faq.compact .faq-list {
  gap: 12px;
}
.faq.compact summary {
  padding: 20px 22px;
}
.faq.compact details p {
  padding: 0 22px 20px;
}

@media (max-width: 1080px) {
  .section { padding: 78px 0; }
  .section.compact { padding: 68px 0; }
  .problem-tight,
  .diagnosis-tight {
    grid-template-columns: 1fr;
  }
  .diagnosis-summary {
    max-width: 820px;
  }
  .services-intro {
    align-items: flex-start;
  }
}

@media (max-width: 820px) {
  .section { padding: 66px 0; }
  .section.compact { padding: 58px 0; }
  .services-intro {
    display: grid;
    gap: 22px;
  }
  .carousel-controls {
    justify-content: flex-start;
  }
  .timeline-three {
    grid-template-columns: 1fr;
  }
  .timeline-three article {
    min-height: auto;
  }
  .summary-head {
    display: grid;
  }
}

@media (max-width: 580px) {
  .section { padding: 58px 0; }
  .section.compact { padding: 50px 0; }
  .diagnosis-summary,
  .compact-cards .premium-card {
    padding: 20px;
  }
  .services-track .service-card {
    flex-basis: min(86vw, 330px);
  }
}


/* V6 typography normalization + middle CTA simplification */
body {
  font-size: 15.5px;
}
.section {
  padding: 82px 0;
}
.section.compact {
  padding: 68px 0;
}
.hero {
  padding-top: 96px;
  padding-bottom: 48px;
}
h1 {
  font-size: clamp(2.35rem, 3.25vw, 3.95rem);
  line-height: .98;
  max-width: 720px;
}
.hero-subtitle {
  font-size: clamp(.96rem, .96vw, 1.04rem);
  max-width: 610px;
}
.eyebrow {
  font-size: .68rem;
  letter-spacing: .38em;
}
.hero-points span,
.final-proof span {
  font-size: .8rem;
  padding: 9px 12px;
}
.assurance {
  font-size: .86rem !important;
}
.btn {
  min-height: 50px;
  padding: 13px 20px;
  font-size: .76rem;
}
.form-card {
  padding: 26px;
}
.form-card h2 {
  font-size: clamp(1.45rem, 1.6vw, 1.9rem);
}
.card-kicker {
  font-size: .66rem;
}
label {
  font-size: .78rem;
}
input,
textarea,
select {
  padding: 12px 13px;
}
.section-copy h2,
.section-heading h2 {
  font-size: clamp(1.95rem, 3.15vw, 3.65rem);
  line-height: 1;
}
.section-copy .lead,
.section-heading p,
.section-copy > p:not(.eyebrow) {
  font-size: clamp(.96rem, .98vw, 1.02rem);
}
.premium-card h3,
.service-card h3,
.audience-grid h3,
.timeline h3 {
  font-size: 1.18rem;
}
.premium-card p,
.service-card p,
.timeline p,
.review-list span {
  font-size: .92rem;
}
.mid-card {
  grid-template-columns: minmax(0, .95fr) minmax(280px, .55fr);
  gap: clamp(22px, 3vw, 40px);
  padding: 34px 38px;
}
.mid-card h2 {
  font-size: clamp(1.85rem, 2.7vw, 3.05rem);
  line-height: 1;
}
.mid-action {
  display: grid;
  gap: 12px;
  justify-items: start;
  align-content: center;
  padding: 6px 0;
}
.mid-action .btn {
  min-width: min(100%, 280px);
}
.mid-action .form-privacy {
  text-align: left;
  max-width: 320px;
}
.services-track .service-card {
  min-height: 196px;
}
.timeline-three article {
  min-height: 196px;
}
.faq.compact summary {
  font-size: .96rem;
}

@media (max-width: 1080px) {
  h1 {
    font-size: clamp(2.25rem, 5.2vw, 3.35rem);
  }
  .mid-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  body {
    font-size: 15px;
  }
  .section {
    padding: 60px 0;
  }
  .section.compact {
    padding: 52px 0;
  }
  h1 {
    font-size: clamp(2.05rem, 7.4vw, 2.9rem);
    line-height: 1;
  }
  .section-copy h2,
  .section-heading h2,
  .mid-card h2 {
    font-size: clamp(1.8rem, 6.2vw, 2.55rem);
  }
  .mid-card {
    padding: 26px;
  }
}

@media (max-width: 580px) {
  .section {
    padding: 52px 0;
  }
  .section.compact {
    padding: 46px 0;
  }
  h1 {
    font-size: clamp(1.82rem, 7vw, 2.22rem);
  }
  .hero-subtitle {
    font-size: .95rem;
  }
  .btn {
    min-height: 48px;
    font-size: .72rem;
  }
  .mid-action,
  .mid-action .form-privacy {
    justify-items: stretch;
    text-align: center;
    max-width: none;
  }
  .mid-action .btn {
    width: 100%;
  }
}


/* V7 smaller typography + diagnosis block removal alignment */
:root {
  --container: 1280px;
}
body {
  font-size: 14.75px;
}
.container {
  width: min(var(--container), calc(100% - 48px));
}
.hero {
  padding-top: 92px;
  padding-bottom: 44px;
}
.hero-grid {
  max-width: 1120px;
  margin-inline: auto;
  grid-template-columns: minmax(0, .92fr) minmax(330px, 390px);
  gap: clamp(24px, 3vw, 46px);
  align-items: center;
}
.hero-copy {
  max-width: 640px;
}
h1 {
  font-size: clamp(2.05rem, 2.85vw, 3.18rem);
  line-height: 1;
  letter-spacing: -0.045em;
  max-width: 620px;
}
.hero-subtitle {
  font-size: clamp(.9rem, .88vw, .98rem);
  line-height: 1.55;
  max-width: 540px;
  margin-top: 18px !important;
}
.eyebrow {
  font-size: .62rem;
  letter-spacing: .34em;
  margin-bottom: 16px !important;
}
.hero-points {
  margin-top: 20px;
}
.hero-points span,
.final-proof span {
  font-size: .74rem;
  padding: 8px 11px;
}
.hero-actions {
  margin-top: 22px;
}
.assurance {
  font-size: .8rem !important;
  line-height: 1.5;
  max-width: 520px;
}
.btn {
  min-height: 46px;
  padding: 12px 18px;
  font-size: .7rem;
}
.form-card {
  padding: 22px;
  border-radius: 24px;
}
.form-card-head {
  margin-bottom: 16px;
}
.form-card h2 {
  font-size: clamp(1.25rem, 1.3vw, 1.6rem);
  line-height: 1.08;
}
.form-card-head p {
  font-size: .86rem;
  line-height: 1.5;
}
.card-kicker {
  font-size: .6rem;
  margin-bottom: 8px !important;
}
.diagnosis-form {
  gap: 12px;
}
label {
  font-size: .72rem;
  gap: 6px;
}
input,
textarea,
select {
  padding: 11px 12px;
  border-radius: 12px;
}
.form-privacy,
.form-status {
  font-size: .72rem !important;
}
.section {
  padding: 72px 0;
}
.section.compact {
  padding: 58px 0;
}
.section-copy h2,
.section-heading h2,
.mid-card h2,
.why-card h2 {
  font-size: clamp(1.65rem, 2.35vw, 2.85rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}
.section-copy .lead,
.section-heading p,
.section-copy > p:not(.eyebrow),
.mid-card p:not(.eyebrow),
.why-card p:not(.eyebrow) {
  font-size: clamp(.88rem, .86vw, .94rem);
  line-height: 1.6;
}
.premium-card,
.service-card,
.audience-grid article,
.timeline article {
  border-radius: 18px;
}
.premium-card h3,
.service-card h3,
.audience-grid h3,
.timeline h3,
.compact-cards .premium-card h3 {
  font-size: 1.02rem;
  line-height: 1.18;
}
.premium-card p,
.service-card p,
.timeline p,
.review-list span,
.compact-cards .premium-card p {
  font-size: .84rem;
  line-height: 1.5;
}
.card-number,
.service-card span,
.timeline span,
.summary-head span {
  font-size: .66rem;
}
.strip-inner {
  font-size: .66rem;
  padding: 14px 0;
}
.problem-tight {
  max-width: 1120px;
  margin-inline: auto;
}
.diagnosis-tight {
  grid-template-columns: minmax(0, 920px);
  justify-content: center;
}
.diagnosis-summary {
  width: min(100%, 920px);
  margin-inline: auto;
  padding: 24px;
}
.summary-head strong {
  font-size: .88rem;
}
.review-list div {
  padding: 13px 14px;
}
.diagnosis-note {
  font-size: .82rem !important;
}
.services-intro > div:first-child {
  max-width: 760px;
}
.services-track .service-card {
  flex-basis: clamp(252px, 24vw, 315px);
  min-height: 178px;
  padding: 22px;
}
.services-track .service-card span {
  margin-bottom: 22px;
}
.compact-footer {
  padding: 18px 20px;
}
.mid-card {
  max-width: 1120px;
  grid-template-columns: minmax(0, .9fr) minmax(260px, .46fr);
  gap: clamp(20px, 2.6vw, 34px);
  padding: 30px 34px;
  margin-inline: auto;
}
.timeline-three article {
  min-height: 176px;
  padding: 24px;
}
.timeline-three span {
  margin-bottom: 28px;
}
.faq.compact summary {
  font-size: .88rem;
  padding: 18px 20px;
}
.faq.compact details p {
  font-size: .86rem;
  padding: 0 20px 18px;
}
.final-layout {
  max-width: 1120px;
  margin-inline: auto;
  grid-template-columns: minmax(0, .95fr) minmax(330px, 390px);
  gap: clamp(26px, 3.2vw, 52px);
}
.footer-grid,
.footer-bottom {
  font-size: .84rem;
}

@media (max-width: 1080px) {
  .container {
    width: min(100% - 40px, var(--container));
  }
  .hero-grid,
  .final-layout {
    grid-template-columns: 1fr;
    max-width: 820px;
  }
  .hero-copy {
    max-width: 650px;
  }
  h1 {
    font-size: clamp(2.05rem, 4.3vw, 3rem);
    max-width: 650px;
  }
  .mid-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  body {
    font-size: 14.5px;
  }
  .container {
    width: min(100% - 30px, var(--container));
  }
  .section {
    padding: 54px 0;
  }
  .section.compact {
    padding: 46px 0;
  }
  h1 {
    font-size: clamp(1.82rem, 6.2vw, 2.45rem);
    line-height: 1.04;
    max-width: 100%;
  }
  .hero-subtitle {
    font-size: .9rem;
    max-width: 100%;
  }
  .section-copy h2,
  .section-heading h2,
  .mid-card h2,
  .why-card h2 {
    font-size: clamp(1.48rem, 5.2vw, 2.05rem);
    line-height: 1.08;
  }
  .section-copy .lead,
  .section-heading p,
  .section-copy > p:not(.eyebrow),
  .mid-card p:not(.eyebrow) {
    font-size: .88rem;
  }
  .form-card,
  .mid-card,
  .diagnosis-summary {
    padding: 22px;
  }
  .form-card h2 {
    font-size: 1.28rem;
  }
  .services-track .service-card {
    flex-basis: min(82vw, 300px);
  }
}

@media (max-width: 580px) {
  body {
    font-size: 14px;
  }
  .container {
    width: min(100% - 26px, var(--container));
  }
  .hero {
    padding-top: 90px;
    padding-bottom: 44px;
  }
  h1 {
    font-size: clamp(1.55rem, 6.4vw, 1.95rem);
    line-height: 1.08;
    letter-spacing: -0.035em;
  }
  .hero-subtitle,
  .assurance {
    font-size: .84rem !important;
  }
  .eyebrow {
    font-size: .58rem;
    letter-spacing: .24em;
  }
  .hero-points span,
  .final-proof span {
    font-size: .7rem;
  }
  .section-copy h2,
  .section-heading h2,
  .mid-card h2,
  .why-card h2 {
    font-size: clamp(1.34rem, 5.8vw, 1.78rem);
  }
  .btn {
    min-height: 44px;
    font-size: .66rem;
    padding-inline: 15px;
  }
  input,
  textarea,
  select {
    font-size: 16px;
    padding: 10px 11px;
  }
  .form-card,
  .mid-card,
  .diagnosis-summary,
  .compact-cards .premium-card {
    padding: 18px;
  }
  .services-track .service-card {
    flex-basis: min(84vw, 286px);
    padding: 20px;
  }
}


/* V8 requested font reduction + hero CTA alignment */
body {
  font-size: 13.9px;
}
.hero-grid {
  max-width: 1080px;
  gap: clamp(22px, 2.7vw, 42px);
}
.hero-copy {
  max-width: 590px;
}
h1 {
  font-size: clamp(1.72rem, 2.25vw, 2.58rem);
  line-height: 1.04;
  max-width: 560px;
  letter-spacing: -0.038em;
}
.hero-subtitle {
  font-size: clamp(.82rem, .78vw, .9rem);
  line-height: 1.55;
  max-width: 500px;
}
.eyebrow {
  font-size: .56rem;
  letter-spacing: .3em;
}
.hero-points span,
.final-proof span {
  font-size: .68rem;
  padding: 7px 10px;
}
.hero-actions {
  justify-content: center;
  max-width: 500px;
}
.assurance {
  font-size: .74rem !important;
  max-width: 500px;
}
.btn {
  min-height: 42px;
  padding: 10px 16px;
  font-size: .62rem;
}
.form-card h2 {
  font-size: clamp(1.1rem, 1.08vw, 1.38rem);
}
.form-card-head p {
  font-size: .78rem;
}
.card-kicker,
.card-number,
.service-card span,
.timeline span,
.summary-head span {
  font-size: .56rem;
}
label {
  font-size: .66rem;
}
input,
textarea,
select {
  padding: 10px 11px;
}
.form-privacy,
.form-status {
  font-size: .66rem !important;
}
.section-copy h2,
.section-heading h2,
.mid-card h2,
.why-card h2 {
  font-size: clamp(1.35rem, 1.85vw, 2.25rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}
.section-copy .lead,
.section-heading p,
.section-copy > p:not(.eyebrow),
.mid-card p:not(.eyebrow),
.why-card p:not(.eyebrow) {
  font-size: clamp(.78rem, .75vw, .86rem);
  line-height: 1.58;
}
.premium-card h3,
.service-card h3,
.audience-grid h3,
.timeline h3,
.compact-cards .premium-card h3 {
  font-size: .9rem;
}
.premium-card p,
.service-card p,
.timeline p,
.compact-cards .premium-card p,
.faq.compact details p {
  font-size: .76rem;
  line-height: 1.5;
}
.strip-inner {
  font-size: .58rem;
}
.services-track .service-card {
  min-height: 160px;
}
.faq.compact summary {
  font-size: .8rem;
}
.footer-grid,
.footer-bottom {
  font-size: .78rem;
}

@media (max-width: 1080px) {
  .hero-grid,
  .final-layout {
    max-width: 780px;
  }
  .hero-copy {
    max-width: 600px;
  }
  h1 {
    font-size: clamp(1.72rem, 3.7vw, 2.45rem);
    max-width: 600px;
  }
  .hero-actions {
    max-width: 100%;
  }
}

@media (max-width: 820px) {
  body {
    font-size: 13.6px;
  }
  h1 {
    font-size: clamp(1.55rem, 5.1vw, 2.08rem);
    line-height: 1.08;
  }
  .hero-subtitle {
    font-size: .82rem;
  }
  .section-copy h2,
  .section-heading h2,
  .mid-card h2,
  .why-card h2 {
    font-size: clamp(1.22rem, 4.2vw, 1.74rem);
  }
  .form-card h2 {
    font-size: 1.12rem;
  }
}

@media (max-width: 580px) {
  body {
    font-size: 13.2px;
  }
  h1 {
    font-size: clamp(1.34rem, 5.45vw, 1.72rem);
    line-height: 1.1;
  }
  .hero-subtitle,
  .assurance {
    font-size: .78rem !important;
  }
  .eyebrow {
    font-size: .52rem;
    letter-spacing: .2em;
  }
  .hero-points span,
  .final-proof span {
    font-size: .64rem;
  }
  .section-copy h2,
  .section-heading h2,
  .mid-card h2,
  .why-card h2 {
    font-size: clamp(1.12rem, 4.8vw, 1.52rem);
  }
  .section-copy .lead,
  .section-heading p,
  .section-copy > p:not(.eyebrow),
  .mid-card p:not(.eyebrow) {
    font-size: .78rem;
  }
  .btn {
    min-height: 40px;
    font-size: .6rem;
    padding-inline: 13px;
  }
  .premium-card h3,
  .service-card h3,
  .timeline h3,
  .compact-cards .premium-card h3 {
    font-size: .84rem;
  }
  .premium-card p,
  .service-card p,
  .timeline p,
  .compact-cards .premium-card p {
    font-size: .72rem;
  }
}


/* V9 strong typography reduction + service group selector */
:root {
  --container: 1160px;
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 13px;
}
body {
  font-size: 12.9px;
}
.container {
  width: min(var(--container), calc(100% - 54px));
}
.section {
  padding: 58px 0;
}
.section.compact {
  padding: 46px 0;
}
.hero {
  min-height: auto;
  padding-top: 84px;
  padding-bottom: 38px;
}
.hero .container {
  width: min(1080px, calc(100% - 64px));
}
.hero-grid {
  max-width: 1060px;
  min-height: auto;
  grid-template-columns: minmax(0, 560px) minmax(300px, 360px);
  gap: clamp(20px, 2.4vw, 36px);
  align-items: center;
  justify-content: center;
}
.hero-copy {
  max-width: 540px;
}
h1 {
  font-size: clamp(1.55rem, 1.95vw, 2.22rem);
  line-height: 1.08;
  max-width: 510px;
  letter-spacing: -0.032em;
}
h1 span,
.section-heading h2 span {
  display: inline;
}
.hero-subtitle {
  font-size: clamp(.76rem, .7vw, .84rem);
  line-height: 1.55;
  max-width: 470px;
  margin-top: 14px !important;
}
.eyebrow {
  font-size: .5rem;
  letter-spacing: .26em;
  margin-bottom: 12px !important;
}
.hero-points {
  margin-top: 16px;
  gap: 8px;
}
.hero-points span,
.final-proof span {
  font-size: .6rem;
  padding: 6px 9px;
}
.hero-points span::before {
  width: 5px;
  height: 5px;
}
.hero-actions {
  margin-top: 18px;
  justify-content: center;
  max-width: 470px;
}
.assurance {
  margin-top: 12px !important;
  font-size: .68rem !important;
  line-height: 1.5;
  max-width: 470px;
}
.btn {
  min-height: 38px;
  padding: 9px 14px;
  font-size: .56rem;
  letter-spacing: .035em;
}
.form-card {
  padding: 18px;
  border-radius: 20px;
}
.form-card-head {
  margin-bottom: 12px;
}
.form-card h2 {
  font-size: clamp(.98rem, .9vw, 1.18rem);
  line-height: 1.12;
}
.form-card-head p {
  font-size: .7rem;
  line-height: 1.48;
}
.card-kicker,
.card-number,
.service-card span,
.timeline span,
.summary-head span {
  font-size: .5rem;
}
.diagnosis-form {
  gap: 10px;
}
.form-row.two {
  gap: 10px;
}
label {
  font-size: .6rem;
  gap: 5px;
}
input,
textarea,
select {
  padding: 9px 10px;
  border-radius: 10px;
  font-size: .78rem;
}
textarea {
  min-height: 76px;
}
.form-privacy,
.form-status {
  font-size: .6rem !important;
  line-height: 1.45;
}
.strip-inner {
  font-size: .52rem;
  padding: 12px 0;
  gap: 18px;
}
.section-copy h2,
.section-heading h2,
.mid-card h2,
.why-card h2 {
  font-size: clamp(1.12rem, 1.45vw, 1.72rem);
  line-height: 1.12;
  letter-spacing: -0.028em;
}
.section-copy .lead,
.section-heading p,
.section-copy > p:not(.eyebrow),
.mid-card p:not(.eyebrow),
.why-card p:not(.eyebrow) {
  font-size: clamp(.72rem, .68vw, .8rem);
  line-height: 1.58;
}
.section-heading {
  margin-bottom: 28px;
  max-width: 680px;
}
.problem-tight,
.mid-card,
.final-layout {
  max-width: 1060px;
}
.problem-tight {
  gap: clamp(24px, 3vw, 42px);
}
.premium-card,
.service-card,
.audience-grid article,
.timeline article {
  border-radius: 15px;
}
.premium-card,
.compact-cards .premium-card {
  padding: 16px;
}
.premium-card h3,
.service-card h3,
.audience-grid h3,
.timeline h3,
.compact-cards .premium-card h3 {
  font-size: .78rem;
  line-height: 1.22;
}
.premium-card p,
.service-card p,
.timeline p,
.compact-cards .premium-card p,
.faq.compact details p {
  font-size: .66rem;
  line-height: 1.5;
}
.mid-card {
  padding: 24px 28px;
  grid-template-columns: minmax(0, .95fr) minmax(235px, .42fr);
  gap: clamp(18px, 2.2vw, 30px);
}
.mid-action .btn {
  min-width: min(100%, 230px);
}
.services-intro {
  display: block;
}
.services-intro > div:first-child {
  max-width: 620px;
}
.carousel-controls,
.services-carousel,
.services-track {
  display: none !important;
}
.service-groups {
  position: relative;
  display: grid;
  gap: 18px;
  margin-top: 4px;
}
.service-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.service-tab {
  appearance: none;
  border: 1px solid rgba(216,166,65,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.045);
  color: rgba(246,242,234,.72);
  min-height: 36px;
  padding: 9px 15px;
  font-size: .66rem;
  font-weight: 780;
  line-height: 1;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}
.service-tab:hover {
  transform: translateY(-1px);
  color: #fff;
  border-color: rgba(244,199,103,.42);
}
.service-tab.is-active {
  color: #080704;
  border-color: rgba(244,199,103,.86);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold), var(--gold-dark));
  box-shadow: 0 15px 34px rgba(216,166,65,.16), inset 0 1px 0 rgba(255,255,255,.34);
}
.service-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(260px, .55fr);
  gap: clamp(18px, 3vw, 38px);
  align-items: stretch;
  padding: clamp(22px, 3vw, 34px);
  min-height: 250px;
  border: 1px solid rgba(216,166,65,.18);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 76% 24%, rgba(216,166,65,.16), transparent 18rem),
    linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.018));
  box-shadow: 0 22px 62px rgba(0,0,0,.24);
  overflow: hidden;
}
.service-panel[hidden] {
  display: none;
}
.service-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity: .14;
  mask-image: linear-gradient(120deg, rgba(0,0,0,.9), transparent 72%);
}
.service-panel-copy,
.service-panel-list {
  position: relative;
}
.service-panel-copy {
  display: grid;
  align-content: end;
  min-height: 190px;
}
.service-panel-copy span {
  color: var(--gold-bright);
  font-size: .58rem;
  font-weight: 900;
  letter-spacing: .18em;
  margin-bottom: 42px;
}
.service-panel-copy h3 {
  font-size: clamp(1.45rem, 2.55vw, 2.35rem);
  line-height: 1;
  letter-spacing: -0.04em;
  margin: 0 0 14px;
}
.service-panel-copy p {
  max-width: 480px;
  font-size: .8rem;
  line-height: 1.55;
  color: var(--muted);
}
.service-panel-list {
  display: grid;
  gap: 12px;
  align-content: end;
}
.service-panel-list strong {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 54px;
  padding: 15px 17px;
  border: 1px solid rgba(216,166,65,.16);
  border-radius: 16px;
  background: rgba(0,0,0,.22);
  color: rgba(246,242,234,.92);
  font-size: .86rem;
  line-height: 1.1;
}
.service-panel-list strong::after {
  content: "→";
  color: var(--gold-bright);
  font-weight: 900;
}
.compact-footer {
  margin-top: 16px;
  padding: 16px 18px;
}
.compact-footer p {
  font-size: .76rem;
}
.timeline-three article {
  min-height: 148px;
  padding: 18px;
}
.timeline-three span {
  margin-bottom: 22px;
}
.faq.compact summary {
  padding: 14px 16px;
  font-size: .72rem;
}
.faq.compact details p {
  padding: 0 16px 14px;
}
.final-cta {
  padding-bottom: 68px;
}
.final-layout {
  grid-template-columns: minmax(0, .95fr) minmax(300px, 360px);
  gap: clamp(22px, 3vw, 44px);
}
.footer-grid,
.footer-bottom {
  font-size: .7rem;
}
.footer-grid h2 {
  font-size: .66rem;
}

@media (max-width: 1080px) {
  .container,
  .hero .container {
    width: min(100% - 40px, var(--container));
  }
  .hero-grid,
  .final-layout {
    max-width: 760px;
    grid-template-columns: 1fr;
  }
  .hero-copy,
  .hero-subtitle,
  .assurance {
    max-width: 540px;
  }
  h1 {
    font-size: clamp(1.58rem, 3.25vw, 2.08rem);
    max-width: 540px;
  }
  .service-panel {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .service-panel-copy {
    min-height: auto;
    align-content: start;
  }
  .service-panel-copy span {
    margin-bottom: 26px;
  }
  .mid-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  body {
    font-size: 12.8px;
  }
  .container,
  .hero .container {
    width: min(100% - 30px, var(--container));
  }
  .section {
    padding: 44px 0;
  }
  .section.compact {
    padding: 38px 0;
  }
  .hero {
    padding-top: 86px;
    padding-bottom: 34px;
  }
  h1 {
    font-size: clamp(1.36rem, 4.55vw, 1.74rem);
    line-height: 1.12;
    max-width: 100%;
  }
  .hero-subtitle {
    font-size: .76rem;
    max-width: 100%;
  }
  .section-copy h2,
  .section-heading h2,
  .mid-card h2,
  .why-card h2 {
    font-size: clamp(1.04rem, 3.55vw, 1.38rem);
  }
  .section-copy .lead,
  .section-heading p,
  .section-copy > p:not(.eyebrow),
  .mid-card p:not(.eyebrow) {
    font-size: .72rem;
  }
  .form-card,
  .mid-card {
    padding: 18px;
  }
  .form-card h2 {
    font-size: 1rem;
  }
  .service-tabs {
    gap: 8px;
  }
  .service-tab {
    flex: 1 1 calc(50% - 8px);
    min-height: 34px;
    padding: 8px 10px;
    font-size: .6rem;
  }
  .service-panel {
    padding: 20px;
  }
  .service-panel-copy h3 {
    font-size: clamp(1.18rem, 6vw, 1.65rem);
  }
  .service-panel-copy p {
    font-size: .74rem;
  }
  .service-panel-list strong {
    min-height: 48px;
    padding: 13px 14px;
    font-size: .78rem;
  }
}

@media (max-width: 580px) {
  body {
    font-size: 12.6px;
  }
  .container,
  .hero .container {
    width: min(100% - 24px, var(--container));
  }
  .hero {
    padding-top: 84px;
    padding-bottom: 32px;
  }
  h1 {
    font-size: clamp(1.2rem, 4.95vw, 1.46rem);
    line-height: 1.14;
  }
  .hero-subtitle,
  .assurance {
    font-size: .72rem !important;
  }
  .eyebrow {
    font-size: .48rem;
    letter-spacing: .18em;
  }
  .hero-points span,
  .final-proof span {
    font-size: .58rem;
  }
  .section-copy h2,
  .section-heading h2,
  .mid-card h2,
  .why-card h2 {
    font-size: clamp(1rem, 4.6vw, 1.24rem);
  }
  .btn {
    min-height: 38px;
    font-size: .54rem;
    padding-inline: 12px;
  }
  .service-tabs {
    display: grid;
    grid-template-columns: 1fr;
  }
  .service-tab {
    width: 100%;
  }
  .service-panel {
    padding: 18px;
  }
  .service-panel-copy h3 {
    font-size: clamp(1.1rem, 8vw, 1.42rem);
  }
  .service-panel-list strong {
    font-size: .74rem;
  }
}

/* V10 dark professional visual refinement — no layout or structure changes */
:root {
  --bg: #030303;
  --bg-soft: #070707;
  --panel: rgba(8, 8, 8, 0.9);
  --panel-strong: #0d0d0d;
  --line: rgba(201, 154, 55, 0.12);
  --line-strong: rgba(207, 165, 68, 0.28);
  --gold: #c99a3f;
  --gold-bright: #e1bc62;
  --gold-dark: #76531d;
  --muted: #ada89e;
  --muted-2: #7d786e;
  --shadow: 0 30px 88px rgba(0, 0, 0, 0.62);
  --gold-glow: 0 0 26px rgba(201, 154, 55, 0.08);
}

body {
  background:
    radial-gradient(circle at 82% 10%, rgba(201, 154, 55, 0.045), transparent 34rem),
    radial-gradient(circle at 12% 14%, rgba(255, 255, 255, 0.025), transparent 28rem),
    var(--bg);
}

body::before {
  background-image:
    linear-gradient(rgba(255,255,255,.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.012) 1px, transparent 1px);
  opacity: .72;
}

::selection { background: rgba(201,154,55,.26); color: #fff; }

.scroll-progress {
  background: linear-gradient(90deg, #6f4e1d, #d0a34d);
  box-shadow: none;
}

.site-header.is-scrolled {
  background: rgba(3,3,3,.82);
  border-bottom-color: rgba(201,154,55,.09);
}

.brand img {
  filter: drop-shadow(0 0 10px rgba(201,154,55,.16));
}

.nav-cta,
.btn-ghost,
.carousel-btn {
  border-color: rgba(201,154,55,.22);
  background: rgba(201,154,55,.035);
  color: #d8b65f !important;
}

.nav-toggle {
  border-color: rgba(201,154,55,.12);
  background: rgba(255,255,255,.025);
}

.hero {
  background:
    radial-gradient(ellipse at 74% 45%, rgba(201,154,55,.06), transparent 32%),
    radial-gradient(ellipse at 20% 10%, rgba(255,255,255,.026), transparent 30%),
    linear-gradient(125deg, #010101 0%, #050505 44%, #070604 68%, #020202 100%);
}

.hero-noise {
  opacity: .18;
  background:
    radial-gradient(circle at 68% 42%, rgba(201,154,55,.045), transparent 22rem),
    linear-gradient(90deg, rgba(255,255,255,.014), transparent 42%, rgba(201,154,55,.018));
}

.hero-ring,
.orbit {
  border-color: rgba(201,154,55,.085);
}

.hero-eagle {
  opacity: .18;
  filter: blur(7px) saturate(.78) contrast(1.02) drop-shadow(0 24px 54px rgba(0,0,0,.78));
}

h1 span,
.section-heading h2 span {
  color: #d8c27d;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
}

.eyebrow,
.card-kicker,
.card-number,
.service-card span,
.timeline span,
.services-footer strong,
.footer-grid h2,
.summary-head span,
.service-panel-copy span,
summary::after,
.service-panel-list strong::after,
.strip-inner {
  color: #d2aa55 !important;
}

.hero-points span,
.final-proof span,
.premium-card,
.service-card,
.audience-grid article,
.timeline article,
details,
.services-footer,
.check-list div,
.why-list div,
.review-list div,
.service-panel-list strong {
  border-color: rgba(201,154,55,.095);
  background: linear-gradient(145deg, rgba(255,255,255,.032), rgba(255,255,255,.010));
  box-shadow: 0 16px 58px rgba(0,0,0,.28);
}

.hero-points span::before,
.orbit::after {
  background: #d8b65f;
  box-shadow: 0 0 10px rgba(216,182,95,.32);
}

.form-card,
.diagnosis-summary,
.mid-card,
.why-card,
.service-panel {
  border-color: rgba(201,154,55,.12);
  background:
    linear-gradient(145deg, rgba(255,255,255,.042), rgba(255,255,255,.012)),
    rgba(6,6,6,.88);
  box-shadow: 0 28px 80px rgba(0,0,0,.48), inset 0 1px 0 rgba(255,255,255,.025);
}

.form-card::before {
  background: linear-gradient(145deg, rgba(225,188,98,.32), transparent 34%, rgba(255,255,255,.08));
}

.btn-primary,
.service-tab.is-active {
  color: #070604;
  background: linear-gradient(135deg, #e2bd66 0%, #c8963a 55%, #8a641f 100%);
  box-shadow: 0 16px 34px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.30);
}

.btn-primary:hover,
.service-tab.is-active:hover {
  box-shadow: 0 20px 42px rgba(0,0,0,.42), 0 0 20px rgba(201,154,55,.10), inset 0 1px 0 rgba(255,255,255,.30);
}

.btn-ghost:hover,
.carousel-btn:hover,
.service-tab:hover {
  border-color: rgba(216,182,95,.34);
  box-shadow: none;
}

.authority-strip,
.site-footer {
  border-color: rgba(201,154,55,.08);
  background: #030303;
}

.service-tab {
  border-color: rgba(201,154,55,.12);
  background: rgba(255,255,255,.028);
}

.service-card::after {
  background: radial-gradient(circle, rgba(201,154,55,.10), transparent 70%);
}

.service-card:hover {
  border-color: rgba(216,182,95,.22);
  background: linear-gradient(145deg, rgba(255,255,255,.042), rgba(255,255,255,.014));
}

.diagnosis::before,
.services::before,
.final-cta::before {
  background: radial-gradient(circle at 50% 50%, rgba(201,154,55,.032), transparent 35rem);
  opacity: .65;
}

.diagnosis-visual img {
  opacity: .76;
  filter: drop-shadow(0 28px 52px rgba(0,0,0,.72));
}

input,
textarea,
select {
  background-color: rgba(255,255,255,.045);
  border-color: rgba(255,255,255,.085);
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(216,182,95,.42);
  box-shadow: 0 0 0 3px rgba(201,154,55,.055);
  background: rgba(255,255,255,.062);
}

.check-list div::before,
.why-list div::before {
  background: #d2aa55;
  box-shadow: none;
}

.summary-head,
.site-footer .footer-bottom {
  border-color: rgba(201,154,55,.08);
}

.service-panel::before,
.diagnosis-summary::before {
  opacity: .09;
}

@media (max-width: 820px) {
  .site-header {
    background: rgba(3,3,3,.86);
    border-bottom-color: rgba(201,154,55,.08);
  }
  .main-nav {
    background: rgba(5,5,5,.97);
    border-color: rgba(201,154,55,.12);
  }
  .main-nav a:hover {
    background: rgba(201,154,55,.04);
  }
}

/* Prime One - form clarity refinement */
.hero-form.form-card {
  padding: clamp(22px, 2.1vw, 30px);
  border-color: rgba(226,189,102,.28);
  background:
    linear-gradient(160deg, rgba(255,255,255,.06), rgba(255,255,255,.015) 34%, rgba(0,0,0,.10)),
    radial-gradient(circle at 50% 0%, rgba(226,189,102,.12), transparent 16rem),
    rgba(7,7,7,.94);
  box-shadow:
    0 34px 90px rgba(0,0,0,.62),
    0 0 0 1px rgba(255,255,255,.035) inset,
    0 0 42px rgba(201,154,55,.08);
}

.hero-form.form-card::before {
  background: linear-gradient(145deg, rgba(244,199,103,.54), transparent 38%, rgba(255,255,255,.12));
}

.hero-form.form-card::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(244,199,103,.9), transparent);
  opacity: .9;
  pointer-events: none;
}

.hero-form .form-card-head {
  margin-bottom: 18px;
}

.hero-form .card-kicker {
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  margin-bottom: 12px !important;
  border: 1px solid rgba(226,189,102,.28);
  border-radius: 999px;
  background: rgba(226,189,102,.075);
  color: #e2bd66 !important;
  letter-spacing: .18em;
  font-size: .58rem;
  line-height: 1;
}

.hero-form .diagnosis-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 13px;
}

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

.hero-form label {
  color: rgba(248,244,235,.9);
  font-weight: 780;
}

.hero-form input,
.hero-form select {
  min-height: 45px;
  color: rgba(250,246,238,.96);
  background-color: rgba(255,255,255,.072);
  border-color: rgba(255,255,255,.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035);
}

.hero-form select {
  cursor: pointer;
  background-image:
    linear-gradient(45deg, transparent 50%, #e2bd66 50%),
    linear-gradient(135deg, #e2bd66 50%, transparent 50%);
  background-position: calc(100% - 18px) 52%, calc(100% - 13px) 52%;
  background-size: 5px 5px;
  background-repeat: no-repeat;
  padding-right: 38px;
  color-scheme: light;
}

.hero-form select:invalid {
  color: rgba(185,180,170,.68);
}


.hero-form input::placeholder {
  color: rgba(190,184,174,.58);
}

.hero-form input:focus,
.hero-form select:focus {
  border-color: rgba(244,199,103,.78);
  background-color: rgba(255,255,255,.095);
  box-shadow:
    0 0 0 3px rgba(226,189,102,.12),
    inset 0 1px 0 rgba(255,255,255,.055);
}

.hero-form .form-submit {
  margin-top: 4px;
}

@media (max-width: 620px) {
  .hero-form.form-card::after {
    left: 18px;
    right: 18px;
  }
}

/* Prime One - dark native dropdown fix */
.hero-form select {
  cursor: pointer;
  color: #f8f4eb !important;
  background-color: #171615 !important;
  background-image:
    linear-gradient(45deg, transparent 50%, #e2bd66 50%),
    linear-gradient(135deg, #e2bd66 50%, transparent 50%);
  background-position: calc(100% - 18px) 52%, calc(100% - 13px) 52%;
  background-size: 5px 5px;
  background-repeat: no-repeat;
  padding-right: 38px;
  color-scheme: dark;
}

.hero-form select:focus {
  color: #ffffff !important;
  background-color: #171615 !important;
}

.hero-form select:invalid {
  color: #f8f4eb !important;
}

.hero-form select option,
.hero-form select optgroup {
  color: #f8f4eb !important;
  background-color: #171615 !important;
  background: #171615 !important;
}

.hero-form select option:checked,
.hero-form select option:hover,
.hero-form select option:focus {
  color: #ffffff !important;
  background-color: #2a251b !important;
  background: #2a251b !important;
}

.hero-form select option[disabled] {
  color: rgba(248,244,235,.72) !important;
  background-color: #171615 !important;
  background: #171615 !important;
}

/* Prime One - custom dark dropdowns for hero form (replaces browser-native select menu) */
.hero-form.form-card {
  overflow: visible;
}

.hero-form .custom-select {
  position: relative;
  width: 100%;
  z-index: 5;
}

.hero-form .custom-select.is-open {
  z-index: 80;
}

.hero-form .native-select {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 45px !important;
  opacity: 0 !important;
  pointer-events: none !important;
  appearance: none !important;
}

.hero-form .custom-select-trigger {
  position: relative;
  width: 100%;
  min-height: 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 38px 11px 12px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  color: rgba(250,246,238,.96);
  background: rgba(255,255,255,.072);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035);
  cursor: pointer;
  outline: none;
  text-align: left;
  font: inherit;
  font-weight: 760;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.hero-form .custom-select-trigger::before,
.hero-form .custom-select-trigger::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 6px;
  height: 6px;
  background: #e2bd66;
  pointer-events: none;
}

.hero-form .custom-select-trigger::before {
  right: 18px;
  transform: translateY(-50%) rotate(45deg);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.hero-form .custom-select-trigger::after {
  display: none;
}

.hero-form .custom-select-trigger:hover,
.hero-form .custom-select-trigger:focus,
.hero-form .custom-select.is-open .custom-select-trigger {
  border-color: rgba(244,199,103,.78);
  background: rgba(255,255,255,.095);
  box-shadow:
    0 0 0 3px rgba(226,189,102,.12),
    inset 0 1px 0 rgba(255,255,255,.055);
}

.hero-form .custom-select-trigger.is-placeholder {
  color: rgba(190,184,174,.68);
}

.hero-form .native-select.is-invalid + .custom-select-trigger {
  border-color: rgba(255,107,107,.8);
}

.hero-form .custom-select-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 999;
  max-height: min(330px, 44vh);
  overflow-y: auto;
  padding: 6px;
  border: 1px solid rgba(226,189,102,.28);
  border-radius: 14px;
  background: #11100f;
  box-shadow:
    0 22px 55px rgba(0,0,0,.68),
    0 0 0 1px rgba(255,255,255,.035) inset;
}

.hero-form .custom-select-menu[hidden] {
  display: none !important;
}

.hero-form .custom-select-option {
  width: 100%;
  display: block;
  padding: 10px 11px;
  border: 0;
  border-radius: 10px;
  color: rgba(250,246,238,.94);
  background: transparent;
  cursor: pointer;
  text-align: left;
  font: inherit;
  font-weight: 680;
  line-height: 1.2;
  outline: none;
}

.hero-form .custom-select-option:hover,
.hero-form .custom-select-option:focus,
.hero-form .custom-select-option.is-selected {
  color: #fff;
  background: rgba(226,189,102,.16);
}

.hero-form .custom-select-option.is-disabled,
.hero-form .custom-select-option:disabled {
  color: rgba(250,246,238,.48);
  cursor: default;
  background: transparent;
}

.hero-form .custom-select-menu::-webkit-scrollbar {
  width: 8px;
}

.hero-form .custom-select-menu::-webkit-scrollbar-track {
  background: rgba(255,255,255,.04);
  border-radius: 999px;
}

.hero-form .custom-select-menu::-webkit-scrollbar-thumb {
  background: rgba(226,189,102,.36);
  border-radius: 999px;
}

/* Prime One - final native-free dark dropdown fix */
.hero-form .choice-field {
  display: grid;
  gap: 7px;
  position: relative;
  width: 100%;
  min-width: 0;
}

.hero-form .choice-label {
  color: rgba(248,244,235,.9);
  font-size: .74rem;
  font-weight: 780;
  line-height: 1.2;
}

.hero-form .prime-choice {
  position: relative;
  width: 100%;
  z-index: 10;
}

.hero-form .prime-choice[open] {
  z-index: 200;
}

.hero-form .prime-choice summary {
  min-height: 45px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 14px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  color: rgba(250,246,238,.96);
  background: #171615;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035);
  cursor: pointer;
  list-style: none;
  outline: none;
  font-weight: 760;
  line-height: 1.25;
  user-select: none;
}

.hero-form .prime-choice summary::-webkit-details-marker {
  display: none;
}

.hero-form .prime-choice summary::marker {
  content: "";
}

.hero-form .prime-choice summary:hover,
.hero-form .prime-choice summary:focus,
.hero-form .prime-choice[open] summary {
  border-color: rgba(244,199,103,.78);
  background: #1c1a17;
  box-shadow:
    0 0 0 3px rgba(226,189,102,.12),
    inset 0 1px 0 rgba(255,255,255,.055);
}

.hero-form .prime-choice:not(.has-value) summary span:first-child {
  color: rgba(190,184,174,.72);
}

.hero-form .choice-arrow {
  color: #e2bd66;
  font-size: 1rem;
  line-height: 1;
  transition: transform .18s ease;
}

.hero-form .prime-choice[open] .choice-arrow {
  transform: rotate(180deg);
}

.hero-form .prime-choice-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 9999;
  max-height: min(330px, 44vh);
  overflow-y: auto;
  padding: 7px;
  border: 1px solid rgba(226,189,102,.34);
  border-radius: 14px;
  background: #0f0f0f !important;
  box-shadow:
    0 24px 60px rgba(0,0,0,.76),
    0 0 0 1px rgba(255,255,255,.035) inset;
}

.hero-form .prime-choice-option {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  min-height: 38px;
  margin: 0;
  padding: 10px 12px;
  border-radius: 10px;
  color: #ffffff !important;
  background: #151515 !important;
  cursor: pointer;
  font: inherit;
  font-weight: 680;
  line-height: 1.2;
}

.hero-form .prime-choice-option + .prime-choice-option {
  margin-top: 3px;
}

.hero-form .prime-choice-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.hero-form .prime-choice-option span {
  color: #ffffff !important;
}

.hero-form .prime-choice-option:hover,
.hero-form .prime-choice-option:focus-within {
  background: #24211b !important;
  color: #ffffff !important;
}

.hero-form .prime-choice-option:has(input:checked) {
  background: rgba(226,189,102,.20) !important;
  color: #ffffff !important;
}

.hero-form .choice-field.is-invalid .prime-choice summary {
  border-color: rgba(255,107,107,.82);
  box-shadow: 0 0 0 3px rgba(255,107,107,.10);
}

.hero-form .prime-choice-menu::-webkit-scrollbar {
  width: 8px;
}

.hero-form .prime-choice-menu::-webkit-scrollbar-track {
  background: rgba(255,255,255,.04);
  border-radius: 999px;
}

.hero-form .prime-choice-menu::-webkit-scrollbar-thumb {
  background: rgba(226,189,102,.36);
  border-radius: 999px;
}

/* Prime One - resolved dark dropdown fix: keep custom choice fields visible and legible */
.hero-form .prime-choice {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  overflow: visible !important;
  z-index: 20;
}

.hero-form .prime-choice[open] {
  z-index: 1000 !important;
  overflow: visible !important;
}

.hero-form .prime-choice summary {
  position: relative !important;
  width: 100% !important;
  min-height: 45px !important;
  padding: 11px 42px 11px 14px !important;
  border: 1px solid rgba(255,255,255,.16) !important;
  border-radius: 12px !important;
  background: #151515 !important;
  color: #ffffff !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04) !important;
  cursor: pointer !important;
  list-style: none !important;
}

.hero-form .prime-choice summary::after,
.hero-form .prime-choice[open] summary::after {
  content: none !important;
  display: none !important;
}

.hero-form .prime-choice summary::-webkit-details-marker {
  display: none !important;
}

.hero-form .prime-choice summary::marker {
  content: "" !important;
  display: none !important;
}

.hero-form .prime-choice .choice-arrow {
  position: absolute !important;
  right: 15px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  color: #e2bd66 !important;
  font-size: 1rem !important;
  line-height: 1 !important;
  pointer-events: none !important;
}

.hero-form .prime-choice[open] .choice-arrow {
  transform: translateY(-50%) rotate(180deg) !important;
}

.hero-form .choice-field.is-invalid .prime-choice summary {
  border-color: rgba(255,107,107,.82) !important;
  box-shadow: 0 0 0 3px rgba(255,107,107,.10) !important;
}

.hero-form .prime-choice-menu {
  position: absolute !important;
  top: calc(100% + 8px) !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 99999 !important;
  display: grid !important;
  gap: 3px !important;
  max-height: min(330px, 44vh) !important;
  overflow-y: auto !important;
  padding: 7px !important;
  border: 1px solid rgba(226,189,102,.34) !important;
  border-radius: 14px !important;
  background: #090909 !important;
  box-shadow: 0 24px 60px rgba(0,0,0,.82), 0 0 0 1px rgba(255,255,255,.04) inset !important;
}

.hero-form .prime-choice-option {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  min-height: 38px !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 10px 12px !important;
  border: 0 !important;
  border-radius: 10px !important;
  background: #151515 !important;
  color: #ffffff !important;
  cursor: pointer !important;
  font: inherit !important;
  font-weight: 680 !important;
  line-height: 1.2 !important;
}

.hero-form .prime-choice-option span {
  color: #ffffff !important;
}

.hero-form .prime-choice-option:hover,
.hero-form .prime-choice-option:focus-within {
  background: #25221b !important;
  color: #ffffff !important;
}

.hero-form .prime-choice-option:has(input:checked) {
  background: rgba(226,189,102,.22) !important;
  color: #ffffff !important;
}

.hero-form .prime-choice-option input {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Prime One - dropdown visibility fix
   Keep custom radio dropdowns in normal document flow while open so the last options are never clipped or blocked. */
.hero-form.form-card,
.hero-form .diagnosis-form,
.hero-form .choice-field,
.hero-form .prime-choice,
.hero-form .prime-choice[open] {
  overflow: visible !important;
}

.hero-form .prime-choice-menu {
  position: static !important;
  inset: auto !important;
  width: 100% !important;
  max-height: 265px !important;
  margin-top: 8px !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  overscroll-behavior: contain !important;
  scrollbar-gutter: stable !important;
  z-index: 1 !important;
}

.hero-form .prime-choice:not([open]) .prime-choice-menu {
  display: none !important;
}

.hero-form .prime-choice[open] .prime-choice-menu {
  display: grid !important;
}

.hero-form .prime-choice-option,
.hero-form .prime-choice-option span {
  color: #fff !important;
}

/* Prime One - final overlay dropdown fix: legible custom dropdown without increasing page height */
.hero-form .choice-field {
  position: relative !important;
}

.hero-form .prime-choice,
.hero-form .prime-choice[open],
.hero-form .prime-choice.is-portal-open {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  overflow: visible !important;
}

.hero-form .prime-choice-menu,
.hero-form .prime-choice[open] .prime-choice-menu,
.hero-form .prime-choice.is-portal-open .prime-choice-menu {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
  position: absolute !important;
  width: 0 !important;
  height: 0 !important;
  max-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  overflow: hidden !important;
}

.hero-form .prime-choice summary {
  position: relative !important;
  width: 100% !important;
  min-height: 45px !important;
  padding: 11px 42px 11px 14px !important;
  border: 1px solid rgba(255,255,255,.16) !important;
  border-radius: 12px !important;
  background: #151515 !important;
  color: #ffffff !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04) !important;
  cursor: pointer !important;
  list-style: none !important;
}

.hero-form .prime-choice summary:focus-visible,
.hero-form .prime-choice.is-portal-open summary {
  border-color: rgba(226,189,102,.78) !important;
  box-shadow: 0 0 0 3px rgba(226,189,102,.14), inset 0 1px 0 rgba(255,255,255,.05) !important;
}

.hero-form .choice-field.is-invalid .prime-choice:not(.is-portal-open) summary {
  border-color: rgba(255,107,107,.82) !important;
  box-shadow: 0 0 0 3px rgba(255,107,107,.10) !important;
}

.prime-choice-portal {
  position: fixed !important;
  z-index: 2147483647 !important;
  display: grid !important;
  gap: 3px !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  overscroll-behavior: contain !important;
  padding: 7px !important;
  border: 1px solid rgba(226,189,102,.40) !important;
  border-radius: 14px !important;
  background: #080808 !important;
  box-shadow:
    0 28px 70px rgba(0,0,0,.86),
    0 0 0 1px rgba(255,255,255,.045) inset !important;
}

.prime-choice-portal[hidden] {
  display: none !important;
}

.prime-choice-portal-option {
  width: 100% !important;
  min-height: 38px !important;
  display: flex !important;
  align-items: center !important;
  padding: 10px 12px !important;
  border: 0 !important;
  border-radius: 10px !important;
  background: #141414 !important;
  color: #ffffff !important;
  cursor: pointer !important;
  text-align: left !important;
  font: inherit !important;
  font-weight: 680 !important;
  line-height: 1.2 !important;
  outline: none !important;
}

.prime-choice-portal-option:hover,
.prime-choice-portal-option:focus-visible,
.prime-choice-portal-option[aria-selected="true"] {
  background: rgba(226,189,102,.20) !important;
  color: #ffffff !important;
}

.prime-choice-portal::-webkit-scrollbar {
  width: 8px;
}

.prime-choice-portal::-webkit-scrollbar-track {
  background: rgba(255,255,255,.05);
  border-radius: 999px;
}

.prime-choice-portal::-webkit-scrollbar-thumb {
  background: rgba(226,189,102,.45);
  border-radius: 999px;
}


/* Prime One - U.S. mobile phone field */
.hero-form .phone-field {
  display: grid;
  gap: 7px;
  width: 100%;
  min-width: 0;
}

.hero-form .phone-input-row {
  display: grid;
  grid-template-columns: 124px minmax(0, 1fr);
  gap: 8px;
  width: 100%;
  min-width: 0;
}

.hero-form .phone-country-static {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-width: 0;
  min-height: 45px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 12px;
  background: #151515;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
  color: #ffffff;
  font: inherit;
  font-size: .82rem;
  font-weight: 780;
  line-height: 1;
  user-select: none;
}

.hero-form .phone-number-input {
  width: 100%;
  min-width: 0;
  letter-spacing: .01em;
}

.hero-form .phone-number-input.is-invalid {
  border-color: rgba(255,107,107,.82);
  box-shadow: 0 0 0 3px rgba(255,107,107,.10);
}

@media (max-width: 430px) {
  .hero-form .phone-input-row {
    grid-template-columns: 116px minmax(0, 1fr);
    gap: 7px;
  }
}


/* Prime One update: slightly larger site typography + metrics directly after hero form. */
html {
  font-size: 104.5%;
}

body {
  font-size: 14.1px;
}

.authority-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(var(--container), calc(100% - 54px));
  padding: 17px 0 20px;
}

.authority-metric {
  position: relative;
  display: grid;
  min-width: 0;
  align-content: center;
  justify-items: center;
  gap: 7px;
  padding: 3px 18px;
  text-align: center;
}

.authority-metric + .authority-metric::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(201,154,55,.28), transparent);
}

.authority-metric-number {
  display: block;
  min-width: 5.4ch;
  color: #f5f1e8;
  font-size: clamp(1.62rem, 2.15vw, 2.12rem);
  font-weight: 840;
  line-height: 1;
  letter-spacing: -.04em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.authority-metric-label {
  display: block;
  color: #d2aa55;
  font-size: .64rem;
  font-weight: 730;
  line-height: 1.25;
  letter-spacing: .075em;
  text-transform: uppercase;
  text-wrap: balance;
}

@media (max-width: 820px) {
  body { font-size: 13.9px; }

  .authority-metrics {
    width: min(var(--container), calc(100% - 30px));
    padding: 15px 0 18px;
  }

  .authority-metric {
    gap: 6px;
    padding-inline: 9px;
  }

  .authority-metric-number {
    font-size: clamp(1.35rem, 4.4vw, 1.72rem);
  }

  .authority-metric-label {
    font-size: .56rem;
    letter-spacing: .045em;
  }
}

@media (max-width: 580px) {
  body { font-size: 13.7px; }

  .authority-metrics {
    width: min(100% - 18px, var(--container));
    padding: 13px 0 16px;
  }

  .authority-metric {
    gap: 5px;
    padding-inline: 4px;
  }

  .authority-metric-number {
    min-width: 0;
    font-size: clamp(1.18rem, 6.1vw, 1.48rem);
  }

  .authority-metric-label {
    max-width: 100px;
    font-size: .48rem;
    line-height: 1.18;
    letter-spacing: .018em;
  }
}


/* Prime One — typography increase v7.
   Typography only. Authority metrics retain their approved sizes. */
body {
  font-size: 16.35px;
}

.brand strong { font-size: 1.16rem; }
.brand small { font-size: .66rem; }
.main-nav { font-size: 1.07rem; }

.eyebrow { font-size: .65rem; }
h1 { font-size: clamp(1.98rem, 2.48vw, 2.82rem); }
.hero-subtitle { font-size: clamp(.98rem, .95vw, 1.07rem); }
.hero-points span,
.final-proof span { font-size: .78rem; }
.assurance { font-size: .89rem !important; }
.btn { font-size: .76rem; }

.card-kicker { font-size: .65rem; }
.form-card h2 { font-size: clamp(1.28rem, 1.28vw, 1.58rem); }
.form-card-head p { font-size: .92rem; }
label,
.choice-label { font-size: .80rem; }
input,
textarea,
select,
.hero-form .prime-choice summary,
.prime-choice-portal-option { font-size: 1rem !important; }
.hero-form .phone-country-static { font-size: 1rem; }
.form-privacy,
.form-status { font-size: .78rem !important; }

.section-copy h2,
.section-heading h2,
.mid-card h2,
.why-card h2 { font-size: clamp(1.48rem, 1.93vw, 2.25rem); }

.section-copy .lead,
.section-heading p,
.section-copy > p:not(.eyebrow),
.mid-card p:not(.eyebrow),
.why-card p:not(.eyebrow) {
  font-size: clamp(.94rem, .90vw, 1.03rem);
}

.card-number,
.service-card span,
.timeline span,
.summary-head span { font-size: .65rem; }

.premium-card h3,
.service-card h3,
.audience-grid h3,
.timeline h3,
.compact-cards .premium-card h3 { font-size: 1.03rem; }

.premium-card p,
.service-card p,
.timeline p,
.compact-cards .premium-card p { font-size: .88rem; }

.service-tab { font-size: .84rem; }
.service-panel-copy span { font-size: .75rem; }
.service-panel-copy h3 { font-size: clamp(1.74rem, 2.92vw, 2.72rem); }
.service-panel-copy p { font-size: 1.02rem; }
.service-panel-list strong { font-size: 1.07rem; }
.compact-footer p { font-size: .96rem; }

.faq.compact summary { font-size: .94rem; }
.faq.compact details p { font-size: .87rem; }
.footer-grid,
.footer-bottom { font-size: .90rem; }
.footer-grid h2 { font-size: .87rem; }

/* Keep the approved company metrics unchanged. */
.authority-metric-number { font-size: clamp(1.62rem, 2.15vw, 2.12rem); }
.authority-metric-label { font-size: .64rem; }

@media (max-width: 820px) {
  body { font-size: 15.95px; }

  .brand strong { font-size: 1.06rem; }
  .brand small { font-size: .60rem; }
  .main-nav { font-size: 1.01rem; }

  h1 { font-size: clamp(1.76rem, 5.7vw, 2.24rem); }
  .hero-subtitle { font-size: .96rem; }
  .eyebrow { font-size: .62rem; }
  .hero-points span,
  .final-proof span { font-size: .75rem; }
  .assurance { font-size: .88rem !important; }
  .btn { font-size: .76rem; }

  .form-card h2 { font-size: 1.31rem; }
  .form-card-head p { font-size: .91rem; }
  label,
  .choice-label { font-size: .78rem; }
  input,
  textarea,
  select,
  .hero-form .prime-choice summary,
  .prime-choice-portal-option { font-size: .98rem !important; }
  .hero-form .phone-country-static { font-size: .98rem; }
  .form-privacy,
  .form-status { font-size: .76rem !important; }

  .section-copy h2,
  .section-heading h2,
  .mid-card h2,
  .why-card h2 { font-size: clamp(1.38rem, 4.45vw, 1.80rem); }

  .section-copy .lead,
  .section-heading p,
  .section-copy > p:not(.eyebrow),
  .mid-card p:not(.eyebrow),
  .why-card p:not(.eyebrow) { font-size: .92rem; }

  .premium-card h3,
  .service-card h3,
  .audience-grid h3,
  .timeline h3,
  .compact-cards .premium-card h3 { font-size: 1rem; }

  .premium-card p,
  .service-card p,
  .timeline p,
  .compact-cards .premium-card p { font-size: .87rem; }

  .service-tab { font-size: .78rem; }
  .service-panel-copy h3 { font-size: clamp(1.50rem, 7.1vw, 2rem); }
  .service-panel-copy p { font-size: .95rem; }
  .service-panel-list strong { font-size: .99rem; }
  .faq.compact summary { font-size: .91rem; }
  .faq.compact details p { font-size: .85rem; }

  .authority-metric-number { font-size: clamp(1.35rem, 4.4vw, 1.72rem); }
  .authority-metric-label { font-size: .56rem; }
}

@media (max-width: 580px) {
  body { font-size: 15.7px; }

  .brand strong { font-size: 1rem; }
  .brand small { font-size: .56rem; }

  h1 { font-size: clamp(1.57rem, 6.2vw, 1.90rem); }
  .hero-subtitle,
  .assurance { font-size: .92rem !important; }
  .eyebrow { font-size: .60rem; }
  .hero-points span,
  .final-proof span { font-size: .73rem; }
  .btn { font-size: .73rem; }

  .form-card h2 { font-size: 1.27rem; }
  .form-card-head p { font-size: .88rem; }
  label,
  .choice-label { font-size: .77rem; }

  /* 16px prevents unwanted browser zoom on mobile form controls. */
  input,
  textarea,
  select,
  .hero-form .prime-choice summary,
  .prime-choice-portal-option { font-size: 16px !important; }

  .hero-form .phone-country-static { font-size: .94rem; }
  .form-privacy,
  .form-status { font-size: .75rem !important; }

  .section-copy h2,
  .section-heading h2,
  .mid-card h2,
  .why-card h2 { font-size: clamp(1.31rem, 5.8vw, 1.66rem); }

  .section-copy .lead,
  .section-heading p,
  .section-copy > p:not(.eyebrow),
  .mid-card p:not(.eyebrow),
  .why-card p:not(.eyebrow) { font-size: .90rem; }

  .premium-card h3,
  .service-card h3,
  .audience-grid h3,
  .timeline h3,
  .compact-cards .premium-card h3 { font-size: .98rem; }

  .premium-card p,
  .service-card p,
  .timeline p,
  .compact-cards .premium-card p { font-size: .86rem; }

  .service-tab { font-size: .75rem; }
  .service-panel-copy h3 { font-size: clamp(1.38rem, 8.7vw, 1.76rem); }
  .service-panel-copy p { font-size: .93rem; }
  .service-panel-list strong { font-size: .95rem; }
  .faq.compact summary { font-size: .89rem; }
  .faq.compact details p { font-size: .84rem; }
  .footer-grid,
  .footer-bottom { font-size: .86rem; }

  .authority-metric-number { font-size: clamp(1.18rem, 6.1vw, 1.48rem); }
  .authority-metric-label { font-size: .48rem; }
}


/* Prime One — desktop alignment refinement v8.
   Widens the content frame and aligns major sections to the same lateral grid.
   Mobile/tablet layouts remain unchanged. */
@media (min-width: 1081px) {
  :root {
    --container: 1240px;
  }

  .container {
    width: min(var(--container), calc(100% - 64px));
  }

  .hero .container {
    width: min(1240px, calc(100% - 64px));
  }

  .hero-grid {
    width: 100%;
    max-width: none;
    grid-template-columns: minmax(0, 600px) minmax(340px, 390px);
    justify-content: space-between;
    gap: clamp(58px, 6.8vw, 108px);
  }

  .hero-copy {
    max-width: 600px;
  }

  h1 {
    max-width: 580px;
  }

  .hero-subtitle,
  .assurance,
  .hero-actions {
    max-width: 550px;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .problem-tight,
  .mid-card {
    width: 100%;
    max-width: none;
  }

  .problem-tight {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: clamp(72px, 6.5vw, 104px);
  }

  .mid-card {
    grid-template-columns: minmax(0, 1.05fr) minmax(290px, .42fr);
    gap: clamp(54px, 5.2vw, 82px);
  }

  .section-heading,
  .services-intro > div:first-child {
    max-width: 760px;
  }

  .faq-layout {
    grid-template-columns: minmax(0, .78fr) minmax(560px, 1.22fr);
    gap: clamp(72px, 6.5vw, 104px);
  }

  .footer-grid {
    grid-template-columns: 1.35fr .55fr .65fr;
    gap: 72px;
  }

  .footer-grid p {
    max-width: 520px;
  }
}

/* Prime One — precise realignment v9.
   Only the two requested middle-page blocks are moved inward on desktop
   so they share the same visual corner and no longer sit too close to the sides. */
@media (min-width: 1081px) {
  .problem-tight,
  .mid-card {
    width: min(1120px, 100%);
    max-width: 1120px;
    margin-inline: auto;
  }
}

/* Prime One — highlighted client revenue v10.
   Adds one premium revenue figure above the existing company metrics. */
.authority-revenue-highlight {
  position: relative;
  isolation: isolate;
  display: grid;
  justify-items: center;
  gap: 10px;
  width: min(760px, calc(100% - 42px));
  padding: 34px 0 27px;
  text-align: center;
}

.authority-revenue-highlight::before {
  content: "";
  position: absolute;
  z-index: -2;
  left: 50%;
  top: 48%;
  width: min(620px, 92vw);
  height: 150px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(ellipse at center,
      rgba(226, 189, 102, .18) 0%,
      rgba(201, 150, 58, .075) 38%,
      transparent 72%);
  filter: blur(10px);
  pointer-events: none;
  animation: revenue-glow 4.4s ease-in-out infinite;
}

.authority-revenue-highlight::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(620px, 82%);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(226, 189, 102, .40),
    transparent
  );
  pointer-events: none;
}

.authority-revenue-number {
  position: relative;
  display: block;
  min-width: 8ch;
  background: linear-gradient(
    112deg,
    #fff8df 0%,
    #e8c979 27%,
    #c8963a 58%,
    #f3dfa3 80%,
    #fff8df 100%
  );
  background-size: 180% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(3.15rem, 7vw, 5.9rem);
  font-weight: 900;
  line-height: .92;
  letter-spacing: -.065em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  text-shadow: 0 0 34px rgba(216, 166, 65, .20);
  animation: revenue-sheen 5.2s ease-in-out infinite;
}

.authority-revenue-label {
  display: block;
  color: #e0c580;
  font-size: .78rem;
  font-weight: 790;
  line-height: 1.25;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-wrap: balance;
}

.authority-revenue-highlight + .authority-metrics {
  padding-top: 24px;
}

@keyframes revenue-glow {
  0%, 100% {
    opacity: .68;
    transform: translate(-50%, -50%) scale(.96);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.045);
  }
}

@keyframes revenue-sheen {
  0%, 28%, 100% { background-position: 100% 50%; }
  58%, 72% { background-position: 0% 50%; }
}

@media (max-width: 820px) {
  .authority-revenue-highlight {
    width: min(680px, calc(100% - 30px));
    gap: 9px;
    padding: 29px 0 23px;
  }

  .authority-revenue-highlight::before {
    height: 125px;
  }

  .authority-revenue-number {
    font-size: clamp(2.65rem, 10.5vw, 4.4rem);
  }

  .authority-revenue-label {
    font-size: .67rem;
    letter-spacing: .14em;
  }

  .authority-revenue-highlight + .authority-metrics {
    padding-top: 20px;
  }
}

@media (max-width: 580px) {
  .authority-revenue-highlight {
    width: min(100% - 22px, 520px);
    gap: 8px;
    padding: 25px 0 20px;
  }

  .authority-revenue-highlight::before {
    width: 96vw;
    height: 108px;
    filter: blur(8px);
  }

  .authority-revenue-number {
    min-width: 0;
    font-size: clamp(2.22rem, 12vw, 3.25rem);
    letter-spacing: -.055em;
  }

  .authority-revenue-label {
    max-width: 285px;
    font-size: .59rem;
    line-height: 1.35;
    letter-spacing: .115em;
  }

  .authority-revenue-highlight + .authority-metrics {
    padding-top: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .authority-revenue-highlight::before,
  .authority-revenue-number {
    animation: none !important;
  }
}



/* Prime One — services visual showcase v11 */
.service-groups {
  gap: 20px;
}

.service-tabs {
  gap: 10px;
}

.service-tab {
  font-size: .72rem;
  min-height: 40px;
  padding: 10px 16px;
}

.services .service-panel {
  display: block;
  padding: 0;
  min-height: 0;
  border: none;
  border-radius: 0;
  background: none;
  box-shadow: none;
  overflow: visible;
}

.services .service-panel::before {
  display: none;
}

.service-preview-card {
  display: grid;
  gap: 18px;
}

.service-preview-visual {
  position: relative;
  min-height: clamp(250px, 34vw, 330px);
  border-radius: 22px;
  overflow: hidden;
  background: #f5f5f5;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 28px 54px rgba(0,0,0,.26);
}

.service-preview-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(0,0,0,.02));
  pointer-events: none;
}

.service-preview-title {
  position: absolute;
  z-index: 2;
  left: clamp(28px, 4vw, 54px);
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  gap: 8px;
  max-width: min(42%, 280px);
}

.service-preview-title span,
.service-preview-title strong {
  display: block;
  line-height: .95;
  letter-spacing: -.045em;
}

.service-preview-title span {
  color: #111317;
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  font-weight: 420;
}

.service-preview-title strong {
  color: #cf2e2e;
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  font-weight: 700;
}

.service-preview-visual svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.service-preview-meta {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.3fr);
  gap: 22px;
  align-items: start;
}

.service-preview-meta h3 {
  margin: 0;
  color: #f6f2ea;
  font-size: clamp(1.1rem, 1.82vw, 1.62rem);
  line-height: 1.12;
  letter-spacing: -.03em;
}

.service-preview-meta p {
  margin: 0;
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.6;
  max-width: 62ch;
}

.services-footer.compact-footer {
  margin-top: 18px;
}

@media (max-width: 1080px) {
  .service-preview-visual {
    min-height: 300px;
  }

  .service-preview-title {
    left: 28px;
    max-width: 220px;
  }

  .service-preview-title span,
  .service-preview-title strong {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
  }
}

@media (max-width: 820px) {
  .service-tab {
    flex: 1 1 calc(50% - 8px);
    font-size: .68rem;
    min-height: 38px;
  }

  .service-preview-visual {
    min-height: 260px;
    border-radius: 18px;
  }

  .service-preview-title {
    left: 22px;
    max-width: 46%;
  }

  .service-preview-title span,
  .service-preview-title strong {
    font-size: clamp(1.72rem, 5.8vw, 2.55rem);
  }

  .service-preview-meta {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .service-preview-meta h3 {
    font-size: 1.06rem;
  }

  .service-preview-meta p {
    font-size: .86rem;
  }
}

@media (max-width: 580px) {
  .service-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-tab:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .service-tab {
    min-height: 40px;
    padding: 10px 11px;
    font-size: .64rem;
  }

  .service-preview-card {
    gap: 14px;
  }

  .service-preview-visual {
    min-height: 210px;
  }

  .service-preview-title {
    top: auto;
    bottom: 20px;
    transform: none;
    left: 18px;
    gap: 4px;
    max-width: 54%;
  }

  .service-preview-title span,
  .service-preview-title strong {
    font-size: clamp(1.34rem, 8vw, 1.9rem);
  }

  .service-preview-meta h3 {
    font-size: 1rem;
  }

  .service-preview-meta p {
    font-size: .82rem;
    line-height: 1.55;
  }
}

/* Prime One — services tab visibility fix v12.
   Only the selected service panel may be displayed. */
.services .service-panel[hidden] {
  display: none !important;
}

/* Prime One — approved service images v13.
   Keeps all five visuals uncropped and responsive inside the existing tabs. */
.service-preview-visual {
  width: 100%;
  min-height: 0 !important;
  aspect-ratio: 2048 / 682;
  border-radius: 22px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(255,255,255,.09);
  box-shadow: 0 28px 54px rgba(0,0,0,.26);
}

.service-preview-visual::after {
  display: none !important;
}

.service-preview-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #ffffff;
}

@media (max-width: 820px) {
  .service-preview-visual {
    min-height: 0 !important;
    border-radius: 18px;
  }
}

@media (max-width: 580px) {
  .service-preview-visual {
    min-height: 0 !important;
    border-radius: 15px;
    box-shadow: 0 18px 38px rgba(0,0,0,.22);
  }

  .service-preview-meta {
    margin-top: 2px;
  }
}



/* Prime One — service visuals size refinement v14.
   Reduces the five service images and scales the headline/description accordingly,
   preserving responsiveness and tab behavior. */
.service-preview-card {
  gap: 14px;
}

.service-preview-visual {
  width: min(92%, 1100px);
  margin-inline: auto;
  border-radius: 20px;
  box-shadow: 0 22px 42px rgba(0,0,0,.22);
}

.service-preview-meta {
  width: min(92%, 1100px);
  margin-inline: auto;
  gap: 18px;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
}

.service-preview-meta h3 {
  font-size: clamp(1rem, 1.48vw, 1.34rem);
  line-height: 1.16;
}

.service-preview-meta p {
  font-size: .88rem;
  line-height: 1.56;
  max-width: 58ch;
}

@media (max-width: 1080px) {
  .service-preview-visual,
  .service-preview-meta {
    width: min(94%, 100%);
  }

  .service-preview-meta {
    gap: 16px;
  }

  .service-preview-meta h3 {
    font-size: 1rem;
  }

  .service-preview-meta p {
    font-size: .84rem;
  }
}

@media (max-width: 820px) {
  .service-preview-card {
    gap: 12px;
  }

  .service-preview-visual,
  .service-preview-meta {
    width: 100%;
  }

  .service-preview-visual {
    border-radius: 17px;
    box-shadow: 0 18px 34px rgba(0,0,0,.19);
  }

  .service-preview-meta {
    gap: 8px;
  }

  .service-preview-meta h3 {
    font-size: .98rem;
  }

  .service-preview-meta p {
    font-size: .82rem;
    line-height: 1.5;
  }
}

@media (max-width: 580px) {
  .service-preview-visual {
    border-radius: 14px;
    box-shadow: 0 14px 28px rgba(0,0,0,.16);
  }

  .service-preview-meta h3 {
    font-size: .94rem;
  }

  .service-preview-meta p {
    font-size: .79rem;
    line-height: 1.48;
  }
}


/* Prime One — service visuals size refinement v15.
   Further reduces the five service visuals and their copy while preserving proportions and mobile responsiveness. */
.service-preview-card {
  gap: 12px;
}

.service-preview-visual {
  width: min(86%, 980px);
  margin-inline: auto;
  border-radius: 18px;
  box-shadow: 0 18px 36px rgba(0,0,0,.18);
}

.service-preview-meta {
  width: min(86%, 980px);
  margin-inline: auto;
  gap: 16px;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.08fr);
}

.service-preview-meta h3 {
  font-size: clamp(.95rem, 1.28vw, 1.2rem);
  line-height: 1.15;
}

.service-preview-meta p {
  font-size: .83rem;
  line-height: 1.52;
  max-width: 54ch;
}

@media (max-width: 1080px) {
  .service-preview-visual,
  .service-preview-meta {
    width: min(90%, 100%);
  }

  .service-preview-meta {
    gap: 14px;
  }

  .service-preview-meta h3 {
    font-size: .94rem;
  }

  .service-preview-meta p {
    font-size: .8rem;
  }
}

@media (max-width: 820px) {
  .service-preview-card {
    gap: 10px;
  }

  .service-preview-visual,
  .service-preview-meta {
    width: 96%;
  }

  .service-preview-visual {
    border-radius: 16px;
    box-shadow: 0 15px 28px rgba(0,0,0,.16);
  }

  .service-preview-meta {
    gap: 7px;
  }

  .service-preview-meta h3 {
    font-size: .92rem;
  }

  .service-preview-meta p {
    font-size: .78rem;
    line-height: 1.47;
  }
}

@media (max-width: 580px) {
  .service-preview-visual,
  .service-preview-meta {
    width: 94%;
  }

  .service-preview-visual {
    border-radius: 13px;
    box-shadow: 0 12px 24px rgba(0,0,0,.14);
  }

  .service-preview-meta h3 {
    font-size: .89rem;
  }

  .service-preview-meta p {
    font-size: .75rem;
    line-height: 1.44;
  }
}

/* Prime One — $20M final digit clipping fix v18.
   Adds only a small internal safety area around the animated number. */
.authority-revenue-number {
  padding-inline: .10em;
}

@media (max-width: 580px) {
  .authority-revenue-number {
    padding-inline: .07em;
  }
}

/* Prime One — Process / FAQ section spacing v19.
   Restores the same visual breathing room used between the surrounding site blocks. */
.process + .faq {
  margin-top: 46px;
}

@media (max-width: 820px) {
  .process + .faq {
    margin-top: 38px;
  }
}

@media (max-width: 580px) {
  .process + .faq {
    margin-top: 32px;
  }
}

/* Prime One — rotating client reviews v21. */
.reviews {
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(216,166,65,.075), transparent 28rem),
    linear-gradient(to bottom, transparent, rgba(255,255,255,.012), transparent);
}

.reviews-heading {
  max-width: 720px;
  margin: 0 auto 28px;
  text-align: center;
}

.reviews-heading h2 {
  font-size: clamp(2rem, 3.7vw, 3.65rem);
}

.reviews-carousel {
  position: relative;
  width: min(100%, 1080px);
  margin-inline: auto;
}

.reviews-viewport {
  overflow: hidden;
  border-radius: 20px;
}

.reviews-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.reviews-carousel.is-ready .reviews-track {
  display: flex;
  gap: 0;
  will-change: transform;
  transition: transform .56s cubic-bezier(.22,.7,.24,1);
}

.reviews-carousel.is-ready .reviews-track.is-resetting {
  transition: none;
}

.reviews-slide {
  flex: 0 0 100%;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(var(--review-columns, 3), minmax(0, 1fr));
  gap: 16px;
}

.review-card {
  position: relative;
  min-width: 0;
  min-height: 218px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(216,166,65,.17);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.052), rgba(255,255,255,.018)),
    rgba(13,12,10,.82);
  box-shadow: 0 18px 44px rgba(0,0,0,.24);
}

.review-card::after {
  content: "";
  position: absolute;
  right: -64px;
  bottom: -72px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216,166,65,.11), transparent 68%);
  pointer-events: none;
}

.review-quote {
  position: relative;
  z-index: 1;
  display: block;
  height: 38px;
  color: var(--gold-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.4rem;
  line-height: .78;
  opacity: .9;
}

.review-card blockquote {
  position: relative;
  z-index: 1;
  margin: 18px 0 24px;
}

.review-card blockquote p {
  color: var(--text);
  font-size: .98rem;
  line-height: 1.58;
}

.review-client {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(244,199,103,.34);
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(216,166,65,.18), rgba(255,255,255,.045));
}

.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-avatar svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: rgba(244,199,103,.76);
  stroke-width: 1.5;
  stroke-linecap: round;
}

.review-client span {
  color: rgba(246,242,234,.86);
  font-size: .78rem;
  font-weight: 760;
  letter-spacing: .015em;
}

.reviews-dots {
  min-height: 12px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.reviews-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(246,242,234,.24);
  transition: width .28s ease, background .28s ease, transform .28s ease;
}

.reviews-dot:hover,
.reviews-dot:focus-visible {
  background: rgba(244,199,103,.64);
  outline: none;
  transform: scale(1.12);
}

.reviews-dot[aria-current="true"] {
  width: 24px;
  background: var(--gold-bright);
}

/* Keep the new block aligned with the spacing already approved for Process and FAQ. */
.process + .reviews,
.reviews + .faq {
  margin-top: 46px;
}

@media (max-width: 960px) {
  .reviews-track:not(.reviews-carousel.is-ready .reviews-track) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reviews-carousel {
    --review-columns: 2;
  }

  .review-card {
    min-height: 210px;
  }
}

@media (max-width: 820px) {
  .reviews-heading {
    margin-bottom: 24px;
  }

  .process + .reviews,
  .reviews + .faq {
    margin-top: 38px;
  }
}

@media (max-width: 620px) {
  .reviews-track:not(.reviews-carousel.is-ready .reviews-track) {
    grid-template-columns: 1fr;
  }

  .reviews-carousel {
    --review-columns: 1;
    width: min(100%, 460px);
  }

  .reviews-viewport {
    border-radius: 16px;
  }

  .review-card {
    min-height: 202px;
    padding: 21px;
    border-radius: 16px;
  }

  .review-card blockquote {
    margin: 15px 0 21px;
  }

  .review-card blockquote p {
    font-size: .92rem;
  }

  .reviews-dots {
    margin-top: 17px;
  }
}

@media (max-width: 580px) {
  .process + .reviews,
  .reviews + .faq {
    margin-top: 32px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reviews-carousel.is-ready .reviews-track,
  .reviews-dot {
    transition: none;
  }
}

/* Prime One — subtle animated edge glow v22.
   A restrained decorative light travels upward along both sides of the viewport. */
.site-edge-glow {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 20px;
  z-index: 60;
  overflow: hidden;
  pointer-events: none;
  opacity: .52;
  mix-blend-mode: screen;
  contain: strict;
}

.site-edge-glow-left { left: 0; }
.site-edge-glow-right { right: 0; }

.site-edge-glow::before,
.site-edge-glow::after {
  content: "";
  position: absolute;
  bottom: -52vh;
  will-change: transform, opacity;
  animation: prime-edge-glow-rise 9s linear infinite;
}

.site-edge-glow::before {
  inset-inline: 0;
  height: 48vh;
  filter: blur(5px);
}

.site-edge-glow-left::before {
  background: radial-gradient(ellipse at left center,
    rgba(255, 231, 169, .58) 0%,
    rgba(244, 199, 103, .32) 15%,
    rgba(216, 166, 65, .13) 37%,
    transparent 72%);
}

.site-edge-glow-right::before {
  background: radial-gradient(ellipse at right center,
    rgba(255, 231, 169, .58) 0%,
    rgba(244, 199, 103, .32) 15%,
    rgba(216, 166, 65, .13) 37%,
    transparent 72%);
}

.site-edge-glow::after {
  width: 1px;
  height: 34vh;
  background: linear-gradient(to bottom,
    transparent,
    rgba(244, 199, 103, .34) 20%,
    rgba(255, 239, 197, .84) 50%,
    rgba(244, 199, 103, .28) 80%,
    transparent);
  box-shadow: 0 0 8px rgba(244, 199, 103, .3);
}

.site-edge-glow-left::after { left: 0; }
.site-edge-glow-right::after { right: 0; }

.site-edge-glow-right::before,
.site-edge-glow-right::after {
  animation-delay: -4.5s;
}

@keyframes prime-edge-glow-rise {
  0% {
    transform: translate3d(0, 0, 0);
    opacity: 0;
  }
  10% { opacity: .26; }
  34% { opacity: .68; }
  70% { opacity: .42; }
  91% { opacity: .12; }
  100% {
    transform: translate3d(0, -158vh, 0);
    opacity: 0;
  }
}

@media (max-width: 820px) {
  .site-edge-glow {
    width: 13px;
    opacity: .42;
  }

  .site-edge-glow::before {
    filter: blur(4px);
  }
}

@media (max-width: 580px) {
  .site-edge-glow {
    width: 9px;
    opacity: .34;
  }

  .site-edge-glow::after {
    opacity: .76;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-edge-glow::before,
  .site-edge-glow::after {
    animation: none;
    transform: translate3d(0, -72vh, 0);
    opacity: .18;
  }
}

/* Prime One — reviews refinement v23.
   Matches the review heading to the site's other section titles and moves one review at a time automatically. */
.reviews-heading h2 {
  font-size: clamp(1.48rem, 1.93vw, 2.25rem);
}

.reviews-carousel.is-ready .reviews-track {
  display: flex;
  gap: 16px;
  transition: transform 1.1s cubic-bezier(.22,.72,.24,1);
  will-change: transform;
}

.reviews-carousel.is-ready .reviews-track.is-resetting {
  transition: none !important;
}

.reviews-carousel.is-ready .review-card {
  flex: 0 0 calc((100% - 32px) / 3);
}

.reviews-dots {
  display: none !important;
}

@media (max-width: 960px) {
  .reviews-carousel.is-ready .review-card {
    flex-basis: calc((100% - 16px) / 2);
  }
}

@media (max-width: 820px) {
  .reviews-heading h2 {
    font-size: clamp(1.38rem, 4.45vw, 1.80rem);
  }
}

@media (max-width: 620px) {
  .reviews-carousel.is-ready .review-card {
    flex-basis: 100%;
  }
}

@media (max-width: 580px) {
  .reviews-heading h2 {
    font-size: clamp(1.31rem, 5.8vw, 1.66rem);
  }
}

/* Prime One — review glow removal + verified floating side lights v24.
   Removes only the decorative golden glow from Client Reviews and replaces
   the previous nearly invisible edge treatment with small, subtle particles. */
.reviews {
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.012), transparent);
}

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

.site-edge-glow {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 34px;
  z-index: 80;
  overflow: visible;
  pointer-events: none;
  opacity: 1;
  mix-blend-mode: normal;
  contain: layout style;
}

.site-edge-glow-left {
  left: 0;
}

.site-edge-glow-right {
  right: 0;
}

.site-edge-glow::before,
.site-edge-glow::after {
  display: none !important;
  animation: none !important;
}

.edge-spark {
  position: absolute;
  bottom: -12vh;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 229, 159, .98);
  box-shadow:
    0 0 5px 2px rgba(255, 229, 159, .46),
    0 0 14px 5px rgba(216, 166, 65, .20);
  opacity: 0;
  will-change: transform, opacity;
  animation: prime-edge-spark-float 11s linear infinite;
}

.site-edge-glow-left .edge-spark {
  left: 2px;
}

.site-edge-glow-right .edge-spark {
  right: 2px;
}

.edge-spark-1 {
  animation-delay: -1.6s;
  animation-duration: 10.6s;
}

.edge-spark-2 {
  width: 3px;
  height: 3px;
  animation-delay: -5.7s;
  animation-duration: 12.8s;
  filter: blur(.15px);
}

.edge-spark-3 {
  width: 5px;
  height: 5px;
  animation-delay: -8.9s;
  animation-duration: 14.2s;
  box-shadow:
    0 0 6px 2px rgba(255, 229, 159, .40),
    0 0 18px 6px rgba(216, 166, 65, .17);
}

.edge-spark-4 {
  width: 2px;
  height: 2px;
  animation-delay: -3.4s;
  animation-duration: 9.8s;
}

.site-edge-glow-right .edge-spark-1 { animation-delay: -6.2s; }
.site-edge-glow-right .edge-spark-2 { animation-delay: -2.8s; }
.site-edge-glow-right .edge-spark-3 { animation-delay: -10.4s; }
.site-edge-glow-right .edge-spark-4 { animation-delay: -7.7s; }

@keyframes prime-edge-spark-float {
  0% {
    transform: translate3d(0, 0, 0) scale(.72);
    opacity: 0;
  }
  8% {
    opacity: .34;
  }
  24% {
    opacity: .74;
  }
  62% {
    opacity: .52;
  }
  88% {
    opacity: .20;
  }
  100% {
    transform: translate3d(0, -124vh, 0) scale(1.05);
    opacity: 0;
  }
}

@media (max-width: 820px) {
  .site-edge-glow {
    width: 24px;
  }

  .edge-spark {
    width: 3px;
    height: 3px;
    box-shadow:
      0 0 4px 1px rgba(255, 229, 159, .40),
      0 0 11px 4px rgba(216, 166, 65, .16);
  }
}

@media (max-width: 580px) {
  .site-edge-glow {
    width: 18px;
  }

  .site-edge-glow-left .edge-spark {
    left: 1px;
  }

  .site-edge-glow-right .edge-spark {
    right: 1px;
  }

  .edge-spark-3 {
    width: 4px;
    height: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .edge-spark {
    animation-duration: 22s;
  }
}

/* Prime One — dispersed side spark refinement v25.
   Keeps the gold lights within broad lateral zones instead of lining them up on the viewport edge. */
.site-edge-glow {
  width: clamp(120px, 16vw, 220px);
  overflow: hidden;
  opacity: 1;
}

.edge-spark {
  bottom: -14vh;
  animation-name: prime-side-spark-drift;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.site-edge-glow-left .edge-spark-1 { left: 8%; --spark-drift-x: 24px; }
.site-edge-glow-left .edge-spark-2 { left: 30%; --spark-drift-x: -18px; }
.site-edge-glow-left .edge-spark-3 { left: 56%; --spark-drift-x: 16px; }
.site-edge-glow-left .edge-spark-4 { left: 78%; --spark-drift-x: -12px; }

.site-edge-glow-right .edge-spark-1 { right: 10%; --spark-drift-x: -22px; }
.site-edge-glow-right .edge-spark-2 { right: 32%; --spark-drift-x: 17px; }
.site-edge-glow-right .edge-spark-3 { right: 58%; --spark-drift-x: -15px; }
.site-edge-glow-right .edge-spark-4 { right: 80%; --spark-drift-x: 12px; }

@keyframes prime-side-spark-drift {
  0% {
    transform: translate3d(0, 0, 0) scale(.70);
    opacity: 0;
  }
  9% { opacity: .24; }
  27% { opacity: .62; }
  56% {
    transform: translate3d(calc(var(--spark-drift-x, 0px) * .55), -68vh, 0) scale(.94);
    opacity: .48;
  }
  84% { opacity: .17; }
  100% {
    transform: translate3d(var(--spark-drift-x, 0px), -126vh, 0) scale(1.03);
    opacity: 0;
  }
}

@media (max-width: 820px) {
  .site-edge-glow {
    width: clamp(82px, 18vw, 138px);
  }
}

@media (max-width: 580px) {
  .site-edge-glow {
    width: clamp(58px, 18vw, 78px);
  }

  .site-edge-glow-left .edge-spark-1 { left: 6%; }
  .site-edge-glow-left .edge-spark-2 { left: 28%; }
  .site-edge-glow-left .edge-spark-3 { left: 53%; }
  .site-edge-glow-left .edge-spark-4 { left: 76%; }

  .site-edge-glow-right .edge-spark-1 { right: 6%; }
  .site-edge-glow-right .edge-spark-2 { right: 28%; }
  .site-edge-glow-right .edge-spark-3 { right: 53%; }
  .site-edge-glow-right .edge-spark-4 { right: 76%; }
}

