/* ── RESET & ROOT ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:      #07090D;
  --bg2:     #0C0F15;
  --bg3:     #11151D;
  --gold:    #F0A500;
  --gold2:   #C98A00;
  --gold-f:  rgba(240,165,0,0.09);
  --gold-f2: rgba(240,165,0,0.16);
  --white:   #EDF1F7;
  --muted:   #5E6878;
  --muted2:  #8A97A8;
  --border:  rgba(255,255,255,0.06);
  --border2: rgba(240,165,0,0.28);
  --fh: 'Manrope', sans-serif;
  --fb: 'Space Grotesk', sans-serif;
}

html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--white); font-family: var(--fb); font-size: 1rem; line-height: 1.7; overflow-x: hidden; }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw; height: 4.25em;
  background: rgba(7,9,13,0.92);
  backdrop-filter: blur(0.875em);
  border-bottom: 0.03125em solid var(--border);
}
.logo-wrap { display: flex; align-items: center; gap: 0.6875em; text-decoration: none; }
.logo-mark { width: 2.25em; height: 2.25em; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-top { font-family: var(--fh); font-weight: 800; font-size: 0.9375em; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }
.logo-bottom { font-family: var(--fb); font-weight: 300; font-size: 0.625em; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted2); }
.nav-links { display: flex; gap: 2em; list-style: none; }
.nav-links a { font-size: 0.8125em; font-weight: 300; color: var(--muted); text-decoration: none; letter-spacing: 0.04em; transition: color 0.2s; }
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--gold) !important; color: #07090D !important;
  padding: 0.5625em 1.25em; border-radius: 0.375em;
  font-weight: 600 !important; font-size: 0.8125em !important;
  letter-spacing: 0.03em; transition: background 0.2s, transform 0.15s !important;
}
.nav-cta:hover { background: var(--gold2) !important; transform: translateY(-0.0625em); }

/* ── HERO ── */
.hero {
  min-height: 94vh; display: flex; flex-direction: column;
  justify-content: center; padding: 5.625em 5vw 3.75em;
  position: relative; overflow: hidden;
}
.hero-bg-lines { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-bg-lines svg { width: 100%; height: 100%; opacity: 0.4; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-size: 0.6875em; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); border: 0.03125em solid var(--border2);
  background: var(--gold-f); padding: 0.375em 1em; border-radius: 6.25em;
  margin-bottom: 1.75em; font-weight: 400; width: fit-content;
  animation: fadeUp 0.6s ease both;
}
.hero-badge::before {
  content: ''; width: 0.375em; height: 0.375em; border-radius: 50%;
  background: var(--gold); animation: blink 2.2s ease infinite;
}

@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }
@keyframes fadeUp { from{opacity:0;transform:translateY(1.375em)} to{opacity:1;transform:translateY(0)} }

.hero h1 {
  font-family: var(--fh); font-size: clamp(2.75rem, 6.5vw, 5.5rem);
  font-weight: 800; line-height: 1.0; letter-spacing: -0.125rem;
  max-width: 53.75rem; animation: fadeUp 0.7s 0.1s ease both;
}
.hero h1 em { font-style: normal; color: var(--gold); }
.hero-sub {
  font-size: clamp(0.9375rem, 1.8vw, 1.1875rem); font-weight: 300; color: var(--muted2);
  max-width: 31.25rem; margin-top: 1.375em; line-height: 1.65;
  animation: fadeUp 0.7s 0.2s ease both;
}
.hero-actions {
  display: flex; gap: 0.875em; margin-top: 2.375em; flex-wrap: wrap;
  animation: fadeUp 0.7s 0.3s ease both;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--gold); color: #07090D;
  font-family: var(--fb); font-size: 0.9375em; font-weight: 600;
  padding: 0.8125em 1.625em; border-radius: 0.4375em; border: none;
  cursor: pointer; text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.01em; display: inline-block;
}
.btn-primary:hover { background: var(--gold2); transform: translateY(-0.125em); }
.btn-ghost {
  background: transparent; color: var(--white);
  font-family: var(--fb); font-size: 0.875em; font-weight: 300;
  padding: 0.75em 1.5em; border-radius: 0.4375em;
  border: 0.03125em solid var(--border); cursor: pointer; text-decoration: none;
  transition: border-color 0.2s, transform 0.15s; display: inline-block;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.22); transform: translateY(-0.125em); }

/* ── HERO STATS ── */
.hero-stats {
  display: flex; gap: 3em; margin-top: 4.5em;
  padding-top: 2.25em; border-top: 0.03125em solid var(--border);
  animation: fadeUp 0.7s 0.4s ease both; flex-wrap: wrap;
}
.stat-num { font-family: var(--fh); font-size: 2.375em; font-weight: 800; color: var(--white); letter-spacing: -0.026em; }
.stat-num span { color: var(--gold); }
.stat-label { font-size: 0.75em; color: var(--muted); font-weight: 300; margin-top: 0.125em; letter-spacing: 0.02em; }

/* ── SECTIONS ── */
section { padding: 6.25em 5vw; }
.sec-tag { font-size: 0.6875em; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); font-weight: 400; margin-bottom: 0.875em; }
h2 { font-family: var(--fh); font-size: clamp(1.875rem, 4vw, 3.125rem); font-weight: 800; letter-spacing: -0.09375rem; line-height: 1.06; max-width: 50.75rem; }
h2 em { font-style: normal; color: var(--gold); }
.sec-sub { font-size: 1em; font-weight: 300; color: var(--muted2); max-width: 35rem; margin-top: 0.875em; line-height: 1.65; }

/* ── SERVICES ── */
#services { background: var(--bg2); }
.svc-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(17.5rem,1fr));
  gap: 0.0625em; margin-top: 3.25em;
  border: 0.03125em solid var(--border); border-radius: 1em; overflow: hidden;
}
.svc-card { background: var(--bg3); padding: 2.25em 1.875em; transition: background 0.25s; }
.svc-card:hover { background: #141922; }
.svc-ico {
  width: 2.625em; height: 2.625em; border-radius: 0.5625em;
  background: var(--gold-f); border: 0.03125em solid var(--border2);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.125em;
}
.svc-ico svg { width: 1.1875em; height: 1.1875em; stroke: var(--gold); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.svc-card h3 { font-family: var(--fh); font-size: 1.0625em; font-weight: 700; margin-bottom: 0.5625em; letter-spacing: -0.01875em; }
.svc-card p { font-size: 0.8125em; font-weight: 300; color: var(--muted2); line-height: 1.65; }

/* ── HOW IT WORKS ── */
.steps { display: grid; grid-template-columns: repeat(auto-fit,minmax(13.125rem,1fr)); gap: 2em; margin-top: 3.25em; }
.step-num { font-family: var(--fh); font-size: 5em; font-weight: 800; color: var(--gold); line-height: 1; margin-bottom: 0.375em; letter-spacing: 0.01em; }
.step h3 { font-family: var(--fh); font-size: 1.0625em; font-weight: 700; margin-bottom: 0.5625em; letter-spacing: -0.01875em; }
.step p { font-size: 0.8125em; color: var(--muted2); font-weight: 300; line-height: 1.65; }

/* ── INDUSTRIES ── */
#industries { background: var(--bg2); }
.industry-details-list { display: flex; flex-direction: column; gap: 0.5em; margin-top: 2.25em; }

details { border: 0.03125em solid var(--border); border-radius: 0.625em; overflow: hidden; transition: border-color 0.2s; }
details[open] { border-color: var(--border2); }
details summary { list-style: none; cursor: pointer; padding: 1em 1.25em; display: flex; align-items: center; justify-content: space-between; font-family: var(--fh); font-size: 0.9375em; font-weight: 600; color: var(--white); letter-spacing: -0.0125em; transition: background 0.2s; }
details summary::-webkit-details-marker { display: none; }
details summary:hover { background: var(--bg3); }
details[open] summary { background: var(--bg3); color: var(--gold); }
details summary::after { content: '+'; font-size: 1.25em; font-weight: 300; color: var(--gold); transition: transform 0.2s; flex-shrink: 0; }
details[open] summary::after { content: '−'; }
.details-body { padding: 0.25em 1.5em 1.75em; }
.details-body p { font-size: 0.875em; font-weight: 300; color: var(--muted2); line-height: 1.7; margin-bottom: 1em; }
.details-body p strong { color: var(--white); font-weight: 600; }

/* ── TESTIMONIALS ── */
#examples { background: var(--bg); }
.t-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(17.5rem,1fr)); gap: 1.125em; margin-top: 3.25em; }
.tcard { background: var(--bg3); border: 0.03125em solid var(--border); border-radius: 0.875em; padding: 1.75em; transition: border-color 0.2s; }
.tcard:hover { border-color: rgba(240,165,0,0.2); }
.tquote { font-size: 0.875em; font-weight: 300; color: var(--white); line-height: 1.75; margin-bottom: 1.375em; font-style: italic; }
.tauthor { display: flex; align-items: center; gap: 0.625em; }
.avatar {
  width: 2.25em; height: 2.25em; border-radius: 50%;
  background: var(--gold-f2); border: 0.03125em solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fh); font-size: 0.75em; font-weight: 700; color: var(--gold); flex-shrink: 0;
}
.aname { font-size: 0.8125em; font-weight: 600; color: var(--white); }
.arole { font-size: 0.6875em; color: var(--muted); font-weight: 300; }

/* ── CTA BAND ── */
.cta-band { background: var(--bg2); padding: 6.625em 5vw; text-align: center; }
.cta-band h2 { max-width: 100%; margin: 0 auto 1.25em; }
.cta-band .sec-sub { margin: 0 auto 3.5em; text-align: center; }

/* ── CONTACT ── */
#contact { background: var(--bg); padding: 6.25em 5vw; }
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5em; margin-top: 3.25em; }
.contact-info p { font-size: 0.875em; color: var(--muted2); font-weight: 300; margin-bottom: 1.75em; line-height: 1.7; }
.cdetail { display: flex; align-items: center; gap: 0.6875em; margin-bottom: 0.875em; }
.cdetail svg { width: 0.9375em; height: 0.9375em; stroke: var(--gold); fill: none; stroke-width: 1.8; flex-shrink: 0; stroke-linecap: round; stroke-linejoin: round; }
.cdetail span { font-size: 0.8125em; font-weight: 300; color: var(--muted2); }
.cdetail a { color: var(--gold); text-decoration: none; }
.cdetail a:hover { text-decoration: underline; }

.contact-cta-box {
  background: var(--bg3); border: 0.03125em solid var(--border2);
  border-radius: 0.875em; padding: 2.25em; margin-top: 0.5em;
}
.contact-cta-box h3 { font-family: var(--fh); font-size: 1.375em; font-weight: 700; letter-spacing: -0.025em; margin-bottom: 0.625em; }
.contact-cta-box p { font-size: 0.875em; font-weight: 300; color: var(--muted2); line-height: 1.65; margin-bottom: 1.5em; }

/* ── FOOTER ── */
footer { border-top: 0.03125em solid var(--border); padding: 2.25em 5vw; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1em; }
footer p { font-size: 0.75em; color: var(--muted); font-weight: 300; }
.flinks { display: flex; gap: 1.375em; }
.flinks a { font-size: 0.75em; color: var(--muted); text-decoration: none; font-weight: 300; transition: color 0.2s; }
.flinks a:hover { color: var(--gold); }

/* ── RESPONSIVE ── */
@media (max-width: 48em) {
  .nav-links { display: none; }
  .contact-wrap { grid-template-columns: 1fr; gap: 2.25em; }
  .hero-stats { gap: 1.5em; }
}

/* ── INDUSTRY TABS ── */
.ind-tabs { display: flex; flex-wrap: wrap; gap: 0.625em; margin-top: 2.25em; margin-bottom: 0; }
.ind-tab {
  background: transparent; border: 0.03125em solid var(--border);
  color: var(--muted); font-family: var(--fb); font-size: 0.8125em; font-weight: 300;
  padding: 0.5625em 1.125em; border-radius: 6.25em; cursor: pointer;
  transition: all 0.2s; letter-spacing: 0.02em;
}
.ind-tab:hover { border-color: var(--border2); color: var(--white); }
.ind-tab.active { border-color: var(--gold); color: var(--gold); background: var(--gold-f); font-weight: 400; }

.ind-panel {
  margin-top: 1.75em; background: var(--bg3);
  border: 0.03125em solid var(--border2); border-radius: 0.75em;
  padding: 2.25em 2.5em; min-height: 12.5em;
}
.ind-content { display: none; }
.ind-content.active { display: block; }
.ind-content p { font-size: 0.875em; font-weight: 300; color: var(--muted2); line-height: 1.7; margin-bottom: 1em; }
.ind-content p:last-child { margin-bottom: 0; }
.ind-content p strong { color: var(--white); font-weight: 600; display: block; margin-top: 1.25em; margin-bottom: 0.25em; }
.ind-content p:first-child strong { margin-top: 0; }

/* ── AUDIT PAGE ── */
.nav-back { font-size: 0.8125em; font-weight: 300; color: var(--muted); text-decoration: none; letter-spacing: 0.04em; transition: color 0.2s; display: flex; align-items: center; gap: 0.375em; }
.nav-back:hover { color: var(--white); }
.nav-back svg { width: 0.875em; height: 0.875em; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.page-wrap { display: grid; grid-template-columns: 1fr 1fr; min-height: calc(100vh - 4.25em); }
.left-panel {
  background: var(--bg2); padding: 4.5em 6vw 4.5em 8vw;
  display: flex; flex-direction: column; justify-content: center;
  border-right: 0.03125em solid var(--border); position: relative; overflow: hidden;
}
.left-bg {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 80% 60% at 20% 50%, rgba(240,165,0,0.06) 0%, transparent 70%);
}
.sec-tag { font-size: 0.6875em; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); font-weight: 400; margin-bottom: 0.875em; }
h1 { font-family: var(--fh); font-size: clamp(2rem, 3.5vw, 3.25rem); font-weight: 800; letter-spacing: -0.09375rem; line-height: 1.06; margin-bottom: 1.125em; }
h1 em { font-style: normal; color: var(--gold); }
.lead { font-size: 1em; font-weight: 300; color: var(--muted2); line-height: 1.7; margin-bottom: 2.5em; max-width: 25em; }

.promise-list { display: flex; flex-direction: column; gap: 1.125em; margin-bottom: 3em; }
.promise-item { display: flex; align-items: flex-start; gap: 0.875em; }
.promise-icon {
  width: 2.25em; height: 2.25em; flex-shrink: 0; border-radius: 0.5em;
  background: var(--gold-f); border: 0.03125em solid var(--border2);
  display: flex; align-items: center; justify-content: center;
}
.promise-icon svg { width: 1em; height: 1em; stroke: var(--gold); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.promise-text strong { display: block; font-size: 0.875em; font-weight: 600; color: var(--white); margin-bottom: 0.125em; }
.promise-text span { font-size: 0.8125em; font-weight: 300; color: var(--muted2); line-height: 1.5; }

.social-proof { border-top: 0.03125em solid var(--border); padding-top: 2em; }
.sp-label { font-size: 0.6875em; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 1em; font-weight: 400; }
.sp-quote { font-size: 0.875em; font-weight: 300; font-style: italic; color: var(--white); line-height: 1.65; margin-bottom: 0.75em; }
.sp-author { font-size: 0.75em; color: var(--muted); font-weight: 300; }
.sp-author strong { color: var(--muted2); font-weight: 400; }

.right-panel {
  background: var(--bg); padding: 4.5em 8vw 4.5em 6vw;
  display: flex; flex-direction: column; justify-content: center;
}
.form-title { font-family: var(--fh); font-size: 1.375em; font-weight: 700; letter-spacing: -0.03125em; margin-bottom: 0.375em; }
.form-subtitle { font-size: 0.875em; font-weight: 300; color: var(--muted2); margin-bottom: 2em; }

.fg { margin-bottom: 1em; }
.fg label { display: block; font-size: 0.6875em; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.4375em; font-weight: 400; }
.fg input, .fg textarea, .fg select {
  width: 100%; background: var(--bg3); border: 0.03125em solid var(--border);
  color: var(--white); font-family: var(--fb); font-size: 0.875em; font-weight: 300;
  padding: 0.6875em 0.875em; border-radius: 0.4375em; outline: none;
  transition: border-color 0.2s; appearance: none;
}
.fg input:focus, .fg textarea:focus, .fg select:focus { border-color: var(--border2); }
.fg textarea { min-height: 6.25em; resize: vertical; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75em; }

.btn-primary {
  background: var(--gold); color: #07090D;
  font-family: var(--fb); font-size: 0.9375em; font-weight: 600;
  padding: 0.8125em 1.625em; border-radius: 0.4375em; border: none;
  cursor: pointer; transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.01em; margin-top: 0.5em;
}
.btn-primary:hover { background: var(--gold2); transform: translateY(-0.0625em); }

.form-note { font-size: 0.75em; color: var(--muted); font-weight: 300; text-align: center; margin-top: 0.875em; line-height: 1.6; }

.success-state { display: none; text-align: center; padding: 3em 1.5em; }
.success-icon {
  width: 4em; height: 4em; border-radius: 50%;
  background: var(--gold-f2); border: 0.03125em solid var(--border2);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5em;
}
.success-icon svg { width: 1.75em; height: 1.75em; stroke: var(--gold); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.success-state h2 { font-family: var(--fh); font-size: 1.625em; font-weight: 800; letter-spacing: -0.03125em; margin-bottom: 0.75em; }
.success-state p { font-size: 0.9375em; font-weight: 300; color: var(--muted2); max-width: 20em; margin: 0 auto 1.75em; line-height: 1.65; }

.btn-ghost {
  display: inline-block; background: transparent; color: var(--white);
  font-family: var(--fb); font-size: 0.875em; font-weight: 300;
  padding: 0.75em 1.5em; border-radius: 0.4375em;
  border: 0.03125em solid var(--border); cursor: pointer;
  text-decoration: none; transition: border-color 0.2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.22); }

footer {
  border-top: 0.03125em solid var(--border); padding: 1.75em 5vw;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.75em;
}
footer p { font-size: 0.75em; color: var(--muted); font-weight: 300; }
.flinks { display: flex; gap: 1.25em; }
.flinks a { font-size: 0.75em; color: var(--muted); text-decoration: none; font-weight: 300; transition: color 0.2s; }
.flinks a:hover { color: var(--gold); }

@media (max-width: 51.25em) {
  .page-wrap { grid-template-columns: 1fr; }
  .left-panel { padding: 3em 6vw; border-right: none; border-bottom: 0.03125em solid var(--border); }
  .right-panel { padding: 3em 6vw; }
  .frow { grid-template-columns: 1fr; }
}

/* ── PRICING TIERS ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  gap: 1.5em;
  margin-top: 3.25em;
}

.price-card {
  background: var(--bg3);
  border: 0.03125em solid var(--border);
  border-radius: 1em;
  padding: 2.25em 2em 2em;
  position: relative;
  transition: border-color 0.3s, transform 0.2s;
}

.price-card:hover {
  border-color: var(--border2);
  transform: translateY(-0.25em);
}

.price-card-featured {
  border-color: var(--border2);
  background: linear-gradient(180deg, rgba(240,165,0,0.04) 0%, var(--bg3) 100%);
}

.price-popular-badge {
  position: absolute;
  top: -0.75em;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #07090D;
  font-size: 0.6875em;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.375em 1em;
  border-radius: 6.25em;
}

.price-tier-badge {
  font-size: 0.6875em;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 1em;
}

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 0.25em;
  margin-bottom: 0.875em;
}

.price-dollar {
  font-family: var(--fh);
  font-size: 1.375em;
  font-weight: 700;
  color: var(--muted);
}

.price-num {
  font-family: var(--fh);
  font-size: 3.5em;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
}

.price-period {
  font-size: 0.8125em;
  color: var(--muted);
  font-weight: 300;
}

.price-desc {
  font-size: 0.9375em;
  color: var(--muted2);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 1.75em;
  padding-bottom: 1.75em;
  border-bottom: 0.03125em solid var(--border);
}

.price-includes {
  margin-bottom: 1.75em;
}

.price-inc-label {
  font-size: 0.6875em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
  margin-bottom: 1em;
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.875em;
}

.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75em;
}

.price-features svg {
  width: 1em;
  height: 1em;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  margin-top: 0.125em;
}

.price-features span {
  font-size: 0.8125em;
  color: var(--muted2);
  font-weight: 300;
  line-height: 1.55;
}

.price-features strong {
  color: var(--white);
  font-weight: 400;
}

.price-examples {
  padding-top: 1.75em;
  border-top: 0.03125em solid var(--border);
}

.price-ex-label {
  font-size: 0.6875em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
  margin-bottom: 0.75em;
}

.price-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
}

.price-tags span {
  font-size: 0.6875em;
  color: var(--gold);
  background: var(--gold-f);
  border: 0.03125em solid var(--border2);
  padding: 0.375em 0.875em;
  border-radius: 6.25em;
  font-weight: 300;
  letter-spacing: 0.02em;
}

/* ── RETAINER CARDS ── */
.retainer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
  gap: 1.5em;
  margin-top: 3.25em;
}

.retainer-card {
  background: var(--bg2);
  border: 0.03125em solid var(--border);
  border-radius: 1em;
  padding: 2.25em 2em 2em;
  position: relative;
  transition: border-color 0.3s, transform 0.2s;
}

.retainer-card:hover {
  border-color: var(--border2);
  transform: translateY(-0.25em);
}

.retainer-card-featured {
  border-color: var(--border2);
  background: linear-gradient(180deg, rgba(240,165,0,0.04) 0%, var(--bg2) 100%);
}

.retainer-popular {
  position: absolute;
  top: -0.75em;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #07090D;
  font-size: 0.6875em;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.375em 1em;
  border-radius: 6.25em;
}

.retainer-tier {
  font-size: 0.6875em;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 1em;
}

.retainer-price {
  display: flex;
  align-items: baseline;
  gap: 0.25em;
  margin-bottom: 0.875em;
  min-height: 3.5em;
}

.retainer-dollar {
  font-family: var(--fh);
  font-size: 1.375em;
  font-weight: 700;
  color: var(--muted);
}

.retainer-num {
  font-family: var(--fh);
  font-size: 3em;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
}

.retainer-period {
  font-size: 0.8125em;
  color: var(--muted);
  font-weight: 300;
}

.retainer-custom {
  font-family: var(--fh);
  font-size: 1.5em;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.02em;
}

.retainer-desc {
  font-size: 0.9375em;
  color: var(--muted2);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 1.75em;
  padding-bottom: 1.75em;
  border-bottom: 0.03125em solid var(--border);
}

.retainer-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.875em;
  margin-bottom: 1.75em;
}

.retainer-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75em;
}

.retainer-features svg {
  width: 1em;
  height: 1em;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  margin-top: 0.125em;
}

.retainer-features span {
  font-size: 0.8125em;
  color: var(--muted2);
  font-weight: 300;
  line-height: 1.55;
}

.retainer-features strong {
  color: var(--white);
  font-weight: 400;
}

/* ── VALUE CARDS ── */
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1.5em;
  margin-top: 3.25em;
}

.value-card {
  background: var(--bg3);
  border: 0.03125em solid var(--border);
  border-radius: 0.875em;
  padding: 2em 1.75em;
  transition: background 0.25s, border-color 0.25s;
}

.value-card:hover {
  background: #141922;
  border-color: var(--border2);
}

.value-icon {
  width: 2.625em;
  height: 2.625em;
  border-radius: 0.5625em;
  background: var(--gold-f);
  border: 0.03125em solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.125em;
}

.value-icon svg {
  width: 1.1875em;
  height: 1.1875em;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-card h3 {
  font-family: var(--fh);
  font-size: 1.0625em;
  font-weight: 700;
  margin-bottom: 0.5625em;
  letter-spacing: -0.01875em;
}

.value-card p {
  font-size: 0.8125em;
  font-weight: 300;
  color: var(--muted2);
  line-height: 1.65;
}

/* ── FAQ ── */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  gap: 1.5em;
  margin-top: 3.25em;
}

.faq-item {
  background: var(--bg2);
  border: 0.03125em solid var(--border);
  border-radius: 0.875em;
  padding: 2em 1.875em;
  transition: border-color 0.25s;
}

.faq-item:hover {
  border-color: var(--border2);
}

.faq-item h3 {
  font-family: var(--fh);
  font-size: 1em;
  font-weight: 700;
  margin-bottom: 0.75em;
  letter-spacing: -0.01875em;
  color: var(--white);
}

.faq-item p {
  font-size: 0.8125em;
  font-weight: 300;
  color: var(--muted2);
  line-height: 1.65;
}

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, rgba(240,165,0,0.08) 0%, rgba(240,165,0,0.02) 100%);
  border-top: 0.03125em solid var(--border2);
  border-bottom: 0.03125em solid var(--border2);
  padding: 4.5em 5vw;
  text-align: center;
}

.cta-band h2 {
  margin: 0 auto 0.875em;
}

.cta-band .sec-sub {
  margin: 0 auto 2em;
}

/* ── RESPONSIVE ── */
@media (max-width: 48em) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .retainer-grid {
    grid-template-columns: 1fr;
  }
  .value-grid {
    grid-template-columns: 1fr;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
}
/* ── THANK-YOU / CONFIRMATION PAGE ── */
.confirm-hero {
  min-height: 38vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 6em 5vw 3em;
  position: relative;
  overflow: hidden;
}

.confirm-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.confirm-hero-bg svg {
  width: 100%;
  height: 100%;
  opacity: 0.5;
}

.check-ring {
  width: 4.5em;
  height: 4.5em;
  border-radius: 50%;
  border: 0.125em solid var(--gold);
  background: var(--gold-f);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5em;
  animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
  position: relative;
  z-index: 1;
}

.check-ring svg {
  width: 1.75em;
  height: 1.75em;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 30;
  stroke-dashoffset: 0;
  animation: drawCheck 0.4s 0.3s ease both;
}

@keyframes popIn {
  from { opacity: 0; transform: scale(0.6); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes drawCheck {
  from { stroke-dashoffset: 30; opacity: 0; }
  to   { stroke-dashoffset: 0;  opacity: 1; }
}

.confirm-hero .sec-tag {
  position: relative;
  z-index: 1;
  animation: fadeUp 0.5s 0.1s ease both;
}

.confirm-hero h1 {
  position: relative;
  z-index: 1;
  font-family: var(--fh);
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.09375rem;
  line-height: 1.05;
  margin-bottom: 0.6em;
  animation: fadeUp 0.5s 0.15s ease both;
}

.confirm-hero h1 em { font-style: normal; color: var(--gold); }

.confirm-hero p {
  font-size: clamp(0.9375rem, 1.6vw, 1.125rem);
  font-weight: 300;
  color: var(--muted2);
  max-width: 30rem;
  line-height: 1.65;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.5s 0.2s ease both;
}

/* ── NEXT STEPS STRIP ── */
.next-strip {
  background: var(--bg2);
  border-top: 0.03125em solid var(--border);
  border-bottom: 0.03125em solid var(--border);
  padding: 3em 5vw;
  display: flex;
  justify-content: center;
  gap: 0;
}

.next-step {
  display: flex;
  align-items: flex-start;
  gap: 1em;
  padding: 0 2.5em;
  flex: 1;
  max-width: 18rem;
  position: relative;
}

.next-step + .next-step::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.25em;
  height: 2em;
  width: 0.03125em;
  background: var(--border);
}

.next-num {
  width: 2em;
  height: 2em;
  border-radius: 50%;
  background: var(--gold-f);
  border: 0.03125em solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fh);
  font-size: 0.75em;
  font-weight: 800;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.125em;
}

.next-text strong {
  display: block;
  font-family: var(--fh);
  font-size: 0.9375em;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25em;
  letter-spacing: -0.01em;
}

.next-text span {
  font-size: 0.8125em;
  color: var(--muted2);
  font-weight: 300;
  line-height: 1.55;
}

/* ── CALENDLY SECTION ── */
.calendly-section {
  padding: 4.5em 5vw 5em;
  background: var(--bg);
}

.calendly-section .sec-tag { margin-bottom: 0.5em; }

.calendly-section h2 {
  font-family: var(--fh);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.09375rem;
  line-height: 1.06;
  margin-bottom: 0.5em;
}

.calendly-section h2 em { font-style: normal; color: var(--gold); }

.calendly-section .sec-sub { margin-bottom: 2.5em; }

.calendly-wrap {
  border-radius: 1em;
  overflow: hidden;
  border: 0.03125em solid var(--border);
  background: var(--bg2);
}

.calendly-inline-widget {
  min-width: 320px;
  height: 700px;
}

/* ── SKIP LINK ── */
.skip-wrap {
  text-align: center;
  padding: 1.5em 5vw 3em;
  background: var(--bg);
  border-top: 0.03125em solid var(--border);
}

.skip-wrap p {
  font-size: 0.8125em;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 1em;
}

@media (max-width: 48em) {
  .next-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.75em;
    padding: 2.5em 5vw;
  }

  .next-step + .next-step::before { display: none; }
  .next-step { padding: 0; max-width: 100%; }

  .calendly-inline-widget { height: 900px; }
}

/* ── REAL ESTATE LANDING PAGE ── */

/* Pain points grid */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 1px;
  margin-top: 3.25em;
  border: 0.03125em solid var(--border);
  border-radius: 1em;
  overflow: hidden;
}

.pain-card {
  background: var(--bg3);
  padding: 2em 1.875em;
  transition: background 0.25s;
  position: relative;
}

.pain-card:hover { background: #141922; }

.pain-card::before {
  content: '';
  display: block;
  width: 2em;
  height: 0.1875em;
  background: var(--gold);
  border-radius: 1em;
  margin-bottom: 1.125em;
  opacity: 0.6;
}

.pain-card h3 {
  font-family: var(--fh);
  font-size: 1em;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5em;
  letter-spacing: -0.01em;
}

.pain-card p {
  font-size: 0.8125em;
  font-weight: 300;
  color: var(--muted2);
  line-height: 1.65;
}

/* Use cases list */
.usecase-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin-top: 3.25em;
  border: 0.03125em solid var(--border);
  border-radius: 1em;
  overflow: hidden;
}

.usecase-item {
  background: var(--bg3);
  padding: 2em 2.25em;
  display: grid;
  grid-template-columns: 2.5em 1fr;
  gap: 1.25em;
  align-items: flex-start;
  transition: background 0.2s;
}

.usecase-item:hover { background: #141922; }

.usecase-num {
  font-family: var(--fh);
  font-size: 1.5em;
  font-weight: 800;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.usecase-body h3 {
  font-family: var(--fh);
  font-size: 1.0625em;
  font-weight: 700;
  margin-bottom: 0.375em;
  letter-spacing: -0.015em;
}

.usecase-body p {
  font-size: 0.8125em;
  font-weight: 300;
  color: var(--muted2);
  line-height: 1.65;
}

.usecase-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.375em;
  font-size: 0.6875em;
  color: var(--gold);
  background: var(--gold-f);
  border: 0.03125em solid var(--border2);
  padding: 0.25em 0.75em;
  border-radius: 6.25em;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 0.75em;
}

/* ROI band */
.roi-band {
  background: var(--bg2);
  border-top: 0.03125em solid var(--border2);
  border-bottom: 0.03125em solid var(--border2);
  padding: 4em 5vw;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  text-align: center;
}

.roi-item {
  padding: 1em 2em;
  position: relative;
}

.roi-item + .roi-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  height: 70%;
  width: 0.03125em;
  background: var(--border2);
}

.roi-num {
  font-family: var(--fh);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
}

.roi-num span { color: var(--gold); }

.roi-label {
  font-size: 0.8125em;
  color: var(--muted2);
  font-weight: 300;
  margin-top: 0.5em;
  line-height: 1.4;
}

/* Proof / testimonial grid */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(17.5rem, 1fr));
  gap: 1.125em;
  margin-top: 3.25em;
}

.tcard::before {
  content: '\201C';
  font-family: var(--fh);
  font-size: 4em;
  font-weight: 800;
  color: var(--gold);
  opacity: 0.2;
  line-height: 0.75;
  display: block;
  margin-bottom: 0.25em;
}

/* Breadcrumb */
.breadcrumb {
  list-style: none;
  display: flex;
  gap: 0.5em;
  align-items: center;
  font-size: 0.75em;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 1.5em;
}

.breadcrumb a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb li + li::before { content: '›'; opacity: 0.4; margin-right: 0.5em; }

@media (max-width: 48em) {
  .roi-band { grid-template-columns: 1fr; gap: 2em; }
  .roi-item + .roi-item::before { display: none; }
  .usecase-item { grid-template-columns: 1fr; }
  .usecase-num { font-size: 1em; }
}

/* ── SOCIAL LINKS ── */
.social-links {
  display: flex;
  gap: 0.75em;
  align-items: center;
  margin-top: 1em;
}

.social-link {
  width: 2.25em;
  height: 2.25em;
  border-radius: 0.5em;
  background: var(--gold-f);
  border: 0.03125em solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  flex-shrink: 0;
}

.social-link:hover {
  background: var(--gold-f2);
  border-color: var(--gold);
  transform: translateY(-0.125em);
}

.social-link svg {
  width: 1em;
  height: 1em;
  fill: var(--gold);
  flex-shrink: 0;
}

/* Footer social row */
.footer-social {
  display: flex;
  align-items: center;
  gap: 0.5em;
  margin-top: 0.75em;
}

.footer-social .social-link {
  width: 1.875em;
  height: 1.875em;
  border-radius: 0.375em;
}

.footer-social .social-link svg {
  width: 0.875em;
  height: 0.875em;
}

/* Contact section social label */
.social-label {
  font-size: 0.6875em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
  margin-top: 1.5em;
  margin-bottom: 0.625em;
}

/* ── ASSESSMENT PAGE ── */
.assess-hero{min-height:calc(100vh - 4.25em);display:flex;align-items:center;justify-content:center;padding:5em 5vw;text-align:center;position:relative;}
.assess-hero-inner{max-width:44rem;position:relative;z-index:1;}
.assess-hero h1{margin-bottom:1em;}
.assess-hero .hero-sub{margin:0 auto 2.25em;}
.assess-meta{margin-top:1em;font-size:0.8125em;color:var(--muted);font-weight:300;}
.assess-meta span{color:var(--gold);}
.quiz-wrap{display:none;grid-template-columns:1fr 1fr;min-height:calc(100vh - 4.25em);}
.quiz-wrap.active{display:grid;}
.quiz-left{background:var(--bg2);padding:4em 5vw;border-right:0.03125em solid var(--border);position:sticky;top:4.25em;height:calc(100vh - 4.25em);overflow-y:auto;display:flex;flex-direction:column;}
.quiz-right{padding:4em 5vw;background:var(--bg);overflow-y:auto;}
.progress-wrap{display:flex;align-items:center;gap:0.875em;margin-bottom:2.5em;}
.progress-track{flex:1;height:0.1875em;background:var(--border);border-radius:100em;overflow:hidden;}
.progress-fill{height:100%;background:var(--gold);border-radius:100em;transition:width 0.4s ease;width:0%;}
.progress-label{font-size:0.6875em;letter-spacing:0.12em;text-transform:uppercase;color:var(--muted);font-weight:400;white-space:nowrap;font-family:var(--fh);}
.quiz-context-step{display:none;animation:fadeUp 0.35s ease both;}
.quiz-context-step.active{display:block;}
.context-icon{width:3em;height:3em;background:var(--gold-f);border:0.03125em solid var(--border2);border-radius:0.75em;display:flex;align-items:center;justify-content:center;margin-bottom:1.5em;}
.context-icon svg{width:1.375em;height:1.375em;stroke:var(--gold);fill:none;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round;}
.context-title{font-family:var(--fh);font-size:1.375em;font-weight:800;letter-spacing:-0.025em;line-height:1.2;margin-bottom:0.625em;}
.context-title em{font-style:normal;color:var(--gold);}
.context-body{font-size:0.875em;font-weight:300;color:var(--muted2);line-height:1.65;margin-bottom:1.75em;}
.context-stat{background:var(--bg3);border:0.03125em solid var(--border);border-radius:0.75em;padding:1.25em 1.375em;}
.context-stat-num{font-family:var(--fh);font-size:2em;font-weight:800;color:var(--white);letter-spacing:-0.04em;line-height:1;margin-bottom:0.25em;}
.context-stat-num span{color:var(--gold);}
.context-stat-label{font-size:0.75em;color:var(--muted);font-weight:300;line-height:1.4;}
.q-card{display:none;animation:fadeUp 0.35s ease both;}
.q-card.active{display:block;}
.q-num{font-size:0.6875em;letter-spacing:0.16em;text-transform:uppercase;color:var(--gold);font-weight:400;margin-bottom:0.875em;}
.q-text{font-family:var(--fh);font-size:clamp(1.25rem,2.5vw,1.625rem);font-weight:800;line-height:1.15;letter-spacing:-0.025em;margin-bottom:0.5em;color:var(--white);}
.q-sub{font-size:0.875em;color:var(--muted2);font-weight:300;margin-bottom:1.75em;line-height:1.6;}
.answers{display:flex;flex-direction:column;gap:0.625em;}
.answer-btn{display:flex;align-items:flex-start;gap:0.875em;background:var(--bg3);border:0.03125em solid var(--border);border-radius:0.75em;padding:1em 1.25em;cursor:pointer;text-align:left;width:100%;transition:border-color 0.2s,background 0.2s,transform 0.15s;}
.answer-btn:hover{border-color:var(--border2);background:#141922;transform:translateX(3px);}
.answer-btn.selected{border-color:var(--gold);background:var(--gold-f);}
.answer-dot{width:1.125em;height:1.125em;flex-shrink:0;border-radius:50%;border:0.09375em solid var(--muted);margin-top:0.125em;transition:border-color 0.2s,background 0.2s;display:flex;align-items:center;justify-content:center;}
.answer-btn.selected .answer-dot{border-color:var(--gold);background:var(--gold);}
.answer-dot-inner{width:0.4375em;height:0.4375em;background:#07090D;border-radius:50%;opacity:0;transition:opacity 0.2s;}
.answer-btn.selected .answer-dot-inner{opacity:1;}
.answer-label{font-size:0.875em;font-weight:400;color:var(--white);line-height:1.4;}
.answer-sublabel{font-size:0.75em;color:var(--muted);font-weight:300;margin-top:0.125em;}
.q-nav{display:flex;justify-content:space-between;align-items:center;margin-top:1.75em;padding-top:1.5em;border-top:0.03125em solid var(--border);}
.q-back-btn{display:flex;align-items:center;gap:0.375em;font-size:0.8125em;color:var(--muted);background:none;border:none;cursor:pointer;font-family:inherit;transition:color 0.2s;padding:0;font-weight:300;letter-spacing:0.04em;}
.q-back-btn:hover{color:var(--white);}
.q-back-btn svg{width:0.875em;height:0.875em;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;}
.q-next-btn{display:inline-flex;align-items:center;gap:0.5em;background:var(--gold);color:#07090D;font-family:var(--fh);font-size:0.875em;font-weight:700;padding:0.75em 1.625em;border-radius:0.5em;border:none;cursor:pointer;transition:background 0.2s,opacity 0.2s,transform 0.15s;opacity:0.35;pointer-events:none;letter-spacing:0.01em;}
.q-next-btn.enabled{opacity:1;pointer-events:auto;}
.q-next-btn.enabled:hover{background:var(--gold2);transform:translateY(-0.125em);}
.q-next-btn svg{width:0.875em;height:0.875em;stroke:currentColor;fill:none;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round;}
.results-wrap{display:none;}
.results-wrap.active{display:block;}
.score-band{background:var(--bg2);border-bottom:0.03125em solid var(--border);padding:4em 5vw;text-align:center;}
.score-ring-wrap{position:relative;display:inline-block;margin:1.25em 0;}
.score-ring{width:8rem;height:8rem;transform:rotate(-90deg);}
.score-ring-track{fill:none;stroke:var(--border);stroke-width:6;}
.score-ring-fill{fill:none;stroke:var(--gold);stroke-width:6;stroke-linecap:round;stroke-dasharray:251.2;stroke-dashoffset:251.2;transition:stroke-dashoffset 1.2s cubic-bezier(0.4,0,0.2,1);}
.score-ring-fill.red{stroke:#EF4444;}
.score-ring-fill.amber{stroke:#F59E0B;}
.score-ring-fill.green{stroke:#10B981;}
.score-number{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;font-family:var(--fh);font-size:2rem;font-weight:800;color:var(--white);letter-spacing:-0.04em;}
.score-band h2{margin:0 auto 0.625em;}
.score-band .sec-sub{margin:0 auto;}
.metrics-row{display:grid;grid-template-columns:repeat(3,1fr);gap:1px;background:var(--border);border-radius:1em;overflow:hidden;margin:3em 0;}
.metric-cell{background:var(--bg3);padding:1.75em 1.5em;text-align:center;}
.findings-grid{display:flex;flex-direction:column;gap:0.75em;margin-bottom:3em;}
.finding-tcard{background:var(--bg3);border:0.03125em solid var(--border);border-radius:0.875em;padding:1.5em 1.75em;display:flex;align-items:flex-start;gap:1em;transition:border-color 0.2s;animation:fadeUp 0.4s ease both;}
.finding-tcard:nth-child(1){animation-delay:0.05s;}
.finding-tcard:nth-child(2){animation-delay:0.12s;}
.finding-tcard:nth-child(3){animation-delay:0.19s;}
.finding-tcard:hover{border-color:rgba(240,165,0,0.2);}
.finding-tcard .value-icon{width:2.625em;height:2.625em;flex-shrink:0;border-radius:0.5625em;background:var(--gold-f);border:0.03125em solid var(--border2);display:flex;align-items:center;justify-content:center;}
.finding-tcard .value-icon svg{width:1.1875em;height:1.1875em;stroke:var(--gold);fill:none;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round;}
.finding-tcard h4{font-family:var(--fh);font-size:0.9375em;font-weight:700;margin-bottom:0.25em;letter-spacing:-0.01875em;color:var(--white);}
.finding-tcard p{font-size:0.8125em;font-weight:300;color:var(--muted2);line-height:1.65;}
@keyframes fadeUp{from{opacity:0;transform:translateY(1rem);}to{opacity:1;transform:translateY(0);}}
@media(max-width:51.25em){
  .quiz-wrap{grid-template-columns:1fr;}
  .quiz-left{position:static;height:auto;border-right:none;border-bottom:0.03125em solid var(--border);}
  .metrics-row{grid-template-columns:1fr;}
}
