/*--------------------------------------------------------------
Faqada AI — design system
Ported from the original growfaqada.ai build (dark "deep space"
palette, violet→blue→cyan gradients, Inter + Plus Jakarta Sans,
glass cards, glow buttons).
--------------------------------------------------------------*/

:root {
  --violet: #7C5CFF;
  --blue: #4F8BFF;
  --cyan: #22d3ee;
  --bg: #050505;
  --bg-soft: #080808;
  --mist: #CBD5E1;
  --danger: #FF5C5C;
  --warn: #FFB547;
  --font-inter: 'Inter', system-ui, -apple-system, sans-serif;
  --font-jakarta: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --radius: 0.75rem;
  --grad: linear-gradient(135deg, #7C5CFF, #4F8BFF, #22d3ee);
  --header-h: 4rem;
}

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

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

body {
  margin: 0;
  background: var(--bg);
  color: #fff;
  font-family: var(--font-jakarta);
  font-size: 16px;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-inter);
  letter-spacing: -0.04em;
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 1rem;
  color: #fff;
}

p { margin: 0 0 1rem; }

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

.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  clip-path: inset(50%);
  overflow: hidden;
  word-wrap: normal !important;
}

/* Layout ------------------------------------------------------*/
.container { max-width: 80rem; margin: 0 auto; padding: 0 1rem; }
.container--narrow { max-width: 64rem; }
.container--tight { max-width: 48rem; }

.section { padding: 4rem 0; }
.section--lg { padding: 5rem 0; }
.section--soft { background: linear-gradient(180deg, #050505 0%, #080510 50%, #050505 100%); }

@media (min-width: 768px) {
  .container { padding: 0 1.5rem; }
  .section { padding: 6rem 0; }
  .section--lg { padding: 8rem 0; }
}

.grid { display: grid; gap: 1.5rem; }
.grid--gap-lg { gap: 2rem; }

@media (min-width: 640px) {
  .grid--sm-2 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  .grid--md-2 { grid-template-columns: repeat(2, 1fr); }
  .grid--md-3 { grid-template-columns: repeat(3, 1fr); }
  .grid--md-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid--lg-3 { grid-template-columns: repeat(3, 1fr); }
  .grid--md-4 { grid-template-columns: repeat(4, 1fr); }
  .grid--lg-2 { grid-template-columns: repeat(2, 1fr); }
}

.split { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) {
  .split { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .split--3-2 { grid-template-columns: 3fr 2fr; }
  .split--2-3 { grid-template-columns: 2fr 3fr; }
}

.text-center { text-align: center; }
.text-mist { color: var(--mist); }

/* Type helpers ------------------------------------------------*/
.eyebrow {
  font-family: var(--font-jakarta);
  color: var(--violet);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.eyebrow--blue { color: var(--blue); }

.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.h-hero { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 900; letter-spacing: -0.04em; }
.h-xl { font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 900; letter-spacing: -0.04em; }
.h-lg { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; letter-spacing: -0.04em; }
.h-md { font-size: clamp(1.5rem, 3vw, 2rem); }

.lead { font-size: 1.25rem; line-height: 1.6; color: var(--mist); }
.small { font-size: 0.875rem; }

/* Icons -------------------------------------------------------*/
.icon { width: 1.25rem; height: 1.25rem; flex-shrink: 0; vertical-align: middle; }
.icon--xs { width: 0.75rem; height: 0.75rem; }
.icon--sm { width: 1rem; height: 1rem; }
.icon--lg { width: 1.5rem; height: 1.5rem; }
.icon--xl { width: 1.75rem; height: 1.75rem; }
.icon--2x { width: 2.5rem; height: 2.5rem; }

/* Glass card --------------------------------------------------*/
.glass {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  border: 1.5px solid transparent;
  background-clip: padding-box;
  border-radius: 1rem;
}
.glass::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.8), rgba(79, 139, 255, 0.8), rgba(34, 211, 238, 0.8));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}
.glass--hover { transition: transform 0.3s ease; }
.glass--hover:hover { transform: scale(1.02); }

/* Buttons -----------------------------------------------------*/
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  min-height: 48px;
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  border-radius: 0.5rem;
  border: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}
.btn-primary {
  background-image: linear-gradient(135deg, #7C5CFF, #4F8BFF, #22d3ee);
  background-size: 200% auto;
}
.btn-primary:hover {
  background-position: right center;
  box-shadow: 0 0 30px rgba(124, 92, 255, 0.8), 0 0 60px rgba(79, 139, 255, 0.5), 0 0 20px rgba(34, 211, 238, 0.4);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-outline:hover {
  border-color: rgba(124, 92, 255, 0.8);
  box-shadow: 0 0 30px rgba(124, 92, 255, 0.5), inset 0 0 15px rgba(79, 139, 255, 0.3);
}
.btn--sm { padding: 0.65rem 1.5rem; min-height: 40px; font-size: 0.875rem; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: 0.7; cursor: wait; }

.spinner {
  width: 1.25rem; height: 1.25rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  display: inline-block;
}

/* Pills & chips -----------------------------------------------*/
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--violet);
  border: 1px solid rgba(124, 92, 255, 0.3);
  background: rgba(124, 92, 255, 0.1);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.chip-row { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.875rem;
  color: var(--mist);
  transition: all 0.2s ease;
}
.chip:hover { color: #fff; border-color: rgba(124, 92, 255, 0.5); }
.chip .icon { color: var(--violet); }
.chip--solid { background: rgba(124, 92, 255, 0.06); color: #fff; font-weight: 500; }

/* Reveal animation --------------------------------------------*/
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* Header ------------------------------------------------------*/
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: all 0.3s ease;
  background: transparent;
}
.site-header.is-scrolled {
  background: rgba(5, 5, 5, 0.9);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
body.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { body.admin-bar .site-header { top: 46px; } }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

/* Logo */
.logo { display: inline-flex; align-items: center; }
.logo-image {
  height: 60px; width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(124, 92, 255, 0.25));
  transition: transform 0.5s ease, filter 0.3s ease;
}
.logo:hover .logo-image { transform: scale(1.03); filter: drop-shadow(0 0 20px rgba(124, 92, 255, 0.5)); }

/* Desktop nav */
.nav-desktop { display: none; align-items: center; gap: 2rem; }
@media (min-width: 1024px) { .nav-desktop { display: flex; } }

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--mist);
  transition: color 0.2s ease;
  background: none;
  border: 0;
  padding: 0;
  font-family: var(--font-jakarta);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-link:hover { color: #fff; }
.nav-link.is-active { color: var(--violet); }
.nav-link .icon { transition: transform 0.2s ease; }
.has-dropdown { position: relative; }
.has-dropdown.is-open .nav-link .icon--chev { transform: rotate(-180deg); }

.dropdown-menu {
  position: absolute;
  top: 100%; left: 0;
  padding-top: 1rem;
  width: 16rem;
  display: none;
  z-index: 60;
}
.has-dropdown.is-open .dropdown-menu { display: block; animation: fadeUp 0.2s ease; }
.dropdown-panel {
  background: #080808;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.dropdown-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  padding: 0.65rem 1rem;
  border-radius: 0.5rem;
  color: var(--mist);
  transition: all 0.15s ease;
}
.dropdown-link .icon { color: rgba(203, 213, 225, 0.7); }
.dropdown-link:hover { background: rgba(255, 255, 255, 0.05); color: #fff; }
.dropdown-link.is-active { background: rgba(124, 92, 255, 0.1); color: var(--violet); }
.dropdown-link.is-active .icon { color: var(--violet); }

.header-cta { display: none; }
@media (min-width: 1024px) { .header-cta { display: flex; align-items: center; gap: 1rem; } }

.nav-toggle {
  display: inline-flex;
  background: none;
  border: 0;
  color: #fff;
  padding: 0.5rem;
  cursor: pointer;
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }
.nav-toggle .icon--close { display: none; }
.nav-toggle.is-open .icon--close { display: block; }
.nav-toggle.is-open .icon--open { display: none; }

/* Mobile menu */
.mobile-menu {
  display: none;
  background: #080808;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
}
.mobile-menu.is-open { display: block; animation: fadeUp 0.2s ease; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 1rem; }
.mobile-link { font-size: 1rem; color: var(--mist); padding: 0.25rem 0; }
.mobile-link:hover { color: #fff; }
.mobile-sub { display: flex; flex-direction: column; gap: 0.75rem; padding-left: 1rem; margin: 0.5rem 0; border-left: 1px solid rgba(255, 255, 255, 0.1); }
.mobile-sub a { font-size: 0.875rem; color: rgba(203, 213, 225, 0.8); display: flex; align-items: center; gap: 0.5rem; }
.mobile-sub a:hover { color: #fff; }
@media (min-width: 1024px) { .mobile-menu { display: none !important; } }

/* Hero --------------------------------------------------------*/
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 30%, rgba(124, 92, 255, 0.18), transparent 65%),
    radial-gradient(ellipse 50% 45% at 80% 60%, rgba(79, 139, 255, 0.15), transparent 65%),
    radial-gradient(ellipse 45% 40% at 55% 15%, rgba(34, 211, 238, 0.08), transparent 60%),
    #050505;
  animation: heroShift 14s ease-in-out infinite alternate;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.3) 0%, rgba(5, 5, 5, 0.1) 50%, #050505 100%);
}
.hero-inner { position: relative; z-index: 1; width: 100%; padding: 4rem 0; }
@media (min-width: 768px) { .hero-inner { padding: 6rem 0; } }

.hero-grid { display: grid; gap: 4rem; align-items: center; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1.1fr 0.9fr; } }

.hero-title { font-size: clamp(2.75rem, 6vw, 4.25rem); font-weight: 900; margin-bottom: 1.5rem; }
.hero-lead { font-size: 1.25rem; color: var(--mist); max-width: 32rem; margin-bottom: 2rem; }
.hero-actions { display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 640px) { .hero-actions { flex-direction: row; } }

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.stat-num { font-family: var(--font-inter); font-weight: 900; font-size: 1.5rem; }
.stat-label { color: var(--mist); font-size: 0.875rem; }

/* Mini audit form (hero) */
.mini-audit {
  margin-top: 2rem;
  display: grid;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .mini-audit { grid-template-columns: 1fr 1fr auto; align-items: stretch; }
  .mini-audit .btn { white-space: nowrap; }
}
.mini-audit .form-input { margin: 0; }
.mini-audit-note { font-size: 0.75rem; color: rgba(203, 213, 225, 0.6); margin-top: 0.5rem; }

/* Floating scorecard */
.scorecard-wrap { display: none; justify-content: center; position: relative; }
@media (min-width: 1024px) { .scorecard-wrap { display: flex; } }
.scorecard { width: 20rem; padding: 2rem; animation: float 4s ease-in-out infinite; }
.scorecard-head { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem; }
.scorecard-brain {
  width: 2.5rem; height: 2.5rem;
  border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #7C5CFF, #4F8BFF);
  animation: pulseGlow 3s ease-in-out infinite;
  color: #fff;
}
.scorecard-title { font-family: var(--font-inter); font-weight: 700; font-size: 0.875rem; }
.scorecard-sub { color: var(--mist); font-size: 0.75rem; }
.meter { margin-bottom: 1rem; }
.meter-row { display: flex; justify-content: space-between; margin-bottom: 0.25rem; font-size: 0.75rem; }
.meter-row .meter-label { color: var(--mist); }
.meter-row .meter-val { color: #fff; font-weight: 600; }
.meter-bar { height: 6px; background: rgba(255, 255, 255, 0.05); border-radius: 999px; overflow: hidden; }
.meter-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #7C5CFF, #4F8BFF);
  width: 0;
  transition: width 1.5s ease 0.4s;
}
.scorecard-callout {
  margin-top: 1.5rem;
  padding: 0.75rem;
  border-radius: 0.75rem;
  text-align: center;
  background: rgba(124, 92, 255, 0.1);
  border: 1px solid rgba(124, 92, 255, 0.2);
}
.scorecard-callout strong { font-family: var(--font-inter); color: var(--violet); font-size: 0.875rem; display: block; }
.scorecard-callout span { color: var(--mist); font-size: 0.75rem; }
.scorecard-orb { position: absolute; border-radius: 50%; filter: blur(32px); }
.scorecard-orb--a { top: -1rem; right: -1rem; width: 5rem; height: 5rem; background: #7C5CFF; opacity: 0.4; }
.scorecard-orb--b { bottom: -1rem; left: -1rem; width: 4rem; height: 4rem; background: #4F8BFF; opacity: 0.3; }

/* Cards -------------------------------------------------------*/
.card { padding: 1.5rem; height: 100%; }
.card--lg { padding: 2rem; }
.card-icon {
  width: 3rem; height: 3rem;
  border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  background: rgba(124, 92, 255, 0.1);
  border: 1px solid rgba(124, 92, 255, 0.2);
  color: var(--violet);
}
.card-icon--lg { width: 3.5rem; height: 3.5rem; border-radius: 1rem; margin-bottom: 1.5rem; }
.card-icon--blue { background: rgba(79, 139, 255, 0.1); border-color: rgba(79, 139, 255, 0.2); color: var(--blue); }
.card-title { font-size: 1.05rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 0.5rem; }
.card-title--lg { font-size: 1.15rem; letter-spacing: -0.03em; margin-bottom: 0.75rem; }
.card-text { color: var(--mist); font-size: 0.875rem; line-height: 1.6; margin: 0; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--violet);
}
.card-link:hover { text-decoration: underline; text-underline-offset: 4px; }
.card-link--blue { color: var(--blue); }

/* Feature checklist */
.check-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.check-item { display: flex; align-items: flex-start; gap: 0.75rem; color: var(--mist); }
.check-item .icon { color: var(--violet); margin-top: 0.2rem; }

/* Process steps */
.step-num {
  font-family: var(--font-inter);
  font-weight: 900;
  font-size: 3rem;
  opacity: 0.4;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
  line-height: 1;
}
.step-title { font-size: 1.1rem; font-weight: 700; letter-spacing: -0.03em; margin-bottom: 0.75rem; }

/* CTA banner --------------------------------------------------*/
.cta-banner {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  padding: 2rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.15), rgba(79, 139, 255, 0.15));
  border: 1px solid rgba(124, 92, 255, 0.2);
}
@media (min-width: 768px) { .cta-banner { padding: 4rem; } }
.cta-banner .orb { position: absolute; width: 16rem; height: 16rem; border-radius: 50%; filter: blur(64px); opacity: 0.2; }
.cta-banner .orb--a { top: -5rem; left: -5rem; background: #7C5CFF; }
.cta-banner .orb--b { bottom: -5rem; right: -5rem; background: #4F8BFF; }
.cta-banner-inner { position: relative; z-index: 1; }
.cta-banner h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 800; }
.cta-banner .lead { max-width: 42rem; margin: 0 auto 2rem; font-size: 1.125rem; }

/* Sticky audit widget -----------------------------------------*/
.sticky-audit {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translate(-50%, 150%);
  z-index: 40;
  display: none;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #7C5CFF, #4F8BFF);
  box-shadow: 0 10px 30px rgba(124, 92, 255, 0.4);
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 0.875rem;
  color: #fff;
  transition: transform 0.35s ease, opacity 0.35s ease;
  opacity: 0;
}
.sticky-audit .zap-bubble { background: rgba(255, 255, 255, 0.2); padding: 0.375rem; border-radius: 999px; display: flex; }
.sticky-audit:hover { transform: translate(-50%, 0) scale(1.05); }
@media (min-width: 768px) { .sticky-audit { display: inline-flex; } }
.sticky-audit.is-shown { transform: translate(-50%, 0); opacity: 1; }

.sticky-audit-mobile {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 40;
  padding: 1rem;
  background: rgba(5, 5, 5, 0.9);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  transform: translateY(110%);
  transition: transform 0.35s ease;
}
.sticky-audit-mobile.is-shown { transform: none; }
@media (min-width: 768px) { .sticky-audit-mobile { display: none; } }
.sticky-audit-mobile a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.85rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, #7C5CFF, #4F8BFF);
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 0.875rem;
  color: #fff;
}

/* Forms -------------------------------------------------------*/
.form-label {
  display: block;
  color: var(--mist);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.form-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  padding: 0.8rem 1rem;
  font-family: var(--font-jakarta);
  color: #fff;
  font-size: 0.875rem;
  transition: border-color 0.2s ease;
}
.form-input::placeholder { color: rgba(255, 255, 255, 0.3); }
.form-input:focus { outline: none; border-color: rgba(124, 92, 255, 0.6); }
select.form-input { appearance: none; cursor: pointer; }
select.form-input option { background: #0a0a0a; color: #fff; }
textarea.form-input { resize: none; }
.form-row { display: grid; gap: 1.25rem; margin-bottom: 1.5rem; }
@media (min-width: 640px) { .form-row--2 { grid-template-columns: 1fr 1fr; } }
.form-field { margin-bottom: 1.5rem; }
.form-msg { margin-top: 1rem; font-size: 0.875rem; }
.form-msg.is-error { color: var(--danger); }
.form-msg.is-success { color: var(--cyan); }
.hp-field { position: absolute !important; left: -9999px; opacity: 0; }

.goal-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
@media (min-width: 640px) { .goal-grid { grid-template-columns: repeat(3, 1fr); } }
.goal-btn {
  padding: 0.8rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.75rem;
  font-family: var(--font-jakarta);
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--mist);
}
.goal-btn.is-selected {
  background: rgba(124, 92, 255, 0.2);
  border-color: rgba(124, 92, 255, 0.5);
  color: #fff;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.02);
  color: var(--mist);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.trust-item .icon { color: var(--violet); }

/* Info cards (contact) */
.info-item { display: flex; align-items: flex-start; gap: 1rem; padding: 1rem; margin-bottom: 1rem; }
.info-item .info-icon {
  width: 2.5rem; height: 2.5rem;
  border-radius: 0.5rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background: rgba(124, 92, 255, 0.1);
  color: var(--violet);
}
.info-label { font-size: 0.7rem; color: rgba(203, 213, 225, 0.6); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.15rem; }
.info-value { font-size: 0.875rem; font-weight: 500; color: #fff; }

/* Audit report ------------------------------------------------*/
.report-hero { position: relative; padding: 8rem 0 5rem; overflow: hidden; }
.report-hero .orb { position: absolute; width: 24rem; height: 24rem; border-radius: 50%; filter: blur(64px); opacity: 0.2; }
.report-hero .orb--a { top: -8rem; left: -8rem; background: #7C5CFF; }
.report-hero .orb--b { bottom: -8rem; right: -8rem; background: #4F8BFF; }

.report-section { margin-bottom: 4rem; }
.report-label { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.5rem; }
.report-label .card-icon { width: 2.5rem; height: 2.5rem; margin: 0; }
.report-label span {
  color: var(--violet);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.report-section > h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 900; margin-bottom: 2rem; }

.gauge { padding: 1.5rem; }
.gauge-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.75rem; }
.gauge-name { color: var(--mist); font-size: 0.875rem; font-weight: 500; }
.gauge-rating { font-family: var(--font-inter); font-weight: 700; font-size: 0.75rem; padding: 0.15rem 0.6rem; border-radius: 999px; }
.gauge-rating--strong { background: rgba(34, 211, 238, 0.13); color: var(--cyan); }
.gauge-rating--decent { background: rgba(79, 139, 255, 0.13); color: var(--blue); }
.gauge-rating--weak { background: rgba(255, 181, 71, 0.13); color: var(--warn); }
.gauge-rating--critical { background: rgba(255, 92, 92, 0.13); color: var(--danger); }
.gauge-score { display: flex; align-items: baseline; gap: 0.5rem; margin-bottom: 0.75rem; }
.gauge-score strong { font-family: var(--font-inter); font-weight: 900; font-size: 1.875rem; }
.gauge-score span { color: var(--mist); font-size: 0.875rem; }
.gauge-bar { height: 8px; background: rgba(255, 255, 255, 0.05); border-radius: 999px; overflow: hidden; }
.gauge-fill { height: 100%; border-radius: 999px; width: 0; transition: width 1.2s ease 0.2s; }

.impact-badge {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  flex-shrink: 0;
}
.impact-badge--critical { background: rgba(255, 92, 92, 0.13); color: var(--danger); }
.impact-badge--high { background: rgba(255, 181, 71, 0.13); color: var(--warn); }
.impact-badge--medium { background: rgba(79, 139, 255, 0.13); color: var(--blue); }

.gap-card { padding: 1.5rem; margin-bottom: 1rem; }
.gap-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; margin-bottom: 0.75rem; }
.gap-head h3 { font-size: 1.125rem; letter-spacing: -0.02em; margin: 0; }
.gap-loss { font-size: 0.75rem; color: var(--danger); font-weight: 600; }

.blueprint-card { padding: 1.5rem; }
.blueprint-num-row { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.75rem; }
.blueprint-num {
  font-family: var(--font-inter);
  font-weight: 900;
  font-size: 1.5rem;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.blueprint-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  padding-top: 0.75rem;
  margin-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.blueprint-meta-label { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.25rem; }
.blueprint-meta-label--violet { color: var(--violet); }
.blueprint-meta-label--blue { color: var(--blue); }
.blueprint-meta p { color: #fff; font-size: 0.75rem; margin: 0; }

.roi-panel {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.15), rgba(79, 139, 255, 0.15));
  border: 1px solid rgba(124, 92, 255, 0.2);
}
@media (min-width: 768px) { .roi-panel { padding: 3rem; } }
.roi-num {
  font-family: var(--font-inter);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.quickwin-card { padding: 1.5rem; }
.quickwin-num {
  font-family: var(--font-inter);
  font-weight: 900;
  font-size: 1.875rem;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.75rem;
}
.quickwin-card p { color: #fff; font-size: 0.875rem; margin: 0; }

/* Generating state */
.generating-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 6rem 1.5rem 3rem; }
.gen-brain {
  width: 5rem; height: 5rem;
  border-radius: 1rem;
  margin: 0 auto 2rem;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #7C5CFF, #4F8BFF);
  color: #fff;
  animation: spin 2.4s linear infinite;
}
.progress-track {
  height: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 999px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  width: 5%;
  border-radius: 999px;
  background: linear-gradient(90deg, #7C5CFF, #4F8BFF, #22d3ee);
  box-shadow: 0 0 20px rgba(124, 92, 255, 0.6);
  transition: width 0.6s ease;
}
.gen-step {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: var(--mist);
  text-align: left;
}
.gen-step .icon { color: var(--violet); animation: spin 1.2s linear infinite; }

/* Compare table -----------------------------------------------*/
.compare-table { border-radius: 1.25rem; overflow: hidden; }
.compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  gap: 0.75rem;
}
.compare-row:hover { background: rgba(255, 255, 255, 0.05); }
.compare-row--head { background: rgba(255, 255, 255, 0.05); font-family: var(--font-inter); font-weight: 700; }
.compare-row--head .col-fa { color: var(--violet); font-weight: 900; }
.compare-row--head .col-trad { color: #fff; font-weight: 900; }
.compare-feature { font-size: 0.875rem; font-weight: 500; color: #fff; }
.compare-cell { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; text-align: center; font-size: 0.8rem; }
.compare-cell--trad { color: var(--mist); }
.compare-cell--trad .icon { color: var(--danger); }
.compare-cell--fa { color: #fff; font-weight: 700; }
.compare-cell--fa .icon { color: var(--violet); }

/* Case studies ------------------------------------------------*/
.case-card { padding: 2rem; height: 100%; display: flex; flex-direction: column; }
.case-head { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 1rem; }
.case-type {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--violet);
  background: rgba(124, 92, 255, 0.1);
  margin-bottom: 0.5rem;
}
.case-market { display: flex; align-items: center; gap: 0.25rem; color: var(--mist); font-size: 0.75rem; }
.case-trend {
  width: 2.5rem; height: 2.5rem;
  border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.25), rgba(79, 139, 255, 0.25));
  color: var(--violet);
}
.case-block { margin-bottom: 0.9rem; }
.case-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }
.case-label--problem { color: rgba(255, 92, 92, 0.8); }
.case-label--strategy { color: var(--blue); }
.case-label--results { color: var(--violet); display: inline-flex; align-items: center; gap: 0.25rem; }
.case-block p { color: var(--mist); font-size: 0.875rem; margin: 0.25rem 0 0; }
.case-results {
  padding: 1rem;
  border-radius: 0.75rem;
  background: rgba(124, 92, 255, 0.06);
  border: 1px solid rgba(124, 92, 255, 0.15);
}
.case-results p { color: #fff; font-weight: 600; }
.case-quote { border-top: 1px solid rgba(255, 255, 255, 0.05); padding-top: 1.25rem; margin-top: auto; }
.case-quote p { color: var(--mist); font-size: 0.875rem; font-style: italic; }
.case-quote cite { color: #fff; font-size: 0.75rem; font-weight: 600; font-style: normal; }
.stars { display: flex; gap: 0.25rem; margin-bottom: 0.5rem; color: #facc15; }
.stars .icon { fill: currentColor; width: 1rem; height: 1rem; }

/* Market cards ------------------------------------------------*/
.market-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; margin: 1.5rem 0; }
.market-stat {
  text-align: center;
  padding: 0.75rem;
  border-radius: 0.75rem;
  background: rgba(124, 92, 255, 0.06);
  border: 1px solid rgba(124, 92, 255, 0.1);
}
.market-stat strong { display: block; font-family: var(--font-inter); font-weight: 700; color: var(--violet); font-size: 1rem; }
.market-stat span { color: var(--mist); font-size: 0.72rem; }

/* Blog --------------------------------------------------------*/
.post-card { overflow: hidden; height: 100%; display: flex; flex-direction: column; }
.post-card-img { height: 12rem; overflow: hidden; border-radius: 1rem 1rem 0 0; flex-shrink: 0; }
.post-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.post-card:hover .post-card-img img { transform: scale(1.05); }
.post-card-img--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(124,92,255,0.22), rgba(79,139,255,0.16), rgba(34,211,238,0.1));
  position: relative;
}
.post-card-img--placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.08), transparent 60%);
}
.post-card-img--placeholder .icon { width: 2.5rem; height: 2.5rem; color: rgba(255,255,255,0.85); position: relative; z-index: 1; }
.post-card-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.post-card-cat {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--violet);
  background: rgba(124, 92, 255, 0.1);
  margin-bottom: 0.75rem;
  align-self: flex-start;
}
.post-card-title { font-size: 1rem; font-weight: 700; letter-spacing: -0.02em; line-height: 1.35; margin-bottom: 0.5rem; transition: color 0.2s ease; }
.post-card:hover .post-card-title { color: var(--violet); }
.post-card-excerpt { color: var(--mist); font-size: 0.875rem; margin: 0 0 0.75rem; }
.post-card-date { color: rgba(203, 213, 225, 0.5); font-size: 0.75rem; margin-top: auto; padding-top: 0.5rem; }
.post-meta { color: rgba(203, 213, 225, 0.6); font-size: 0.8rem; margin-bottom: 1rem; }

/* Blog: category filter pills */
.blog-filters { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin-bottom: 3.5rem; }
.blog-filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--mist);
  transition: all 0.2s ease;
}
.blog-filter-pill:hover { color: #fff; border-color: rgba(124,92,255,0.5); }
.blog-filter-pill.is-active {
  background: rgba(124,92,255,0.18);
  border-color: rgba(124,92,255,0.6);
  color: #fff;
}
.blog-filter-pill .count { color: rgba(203,213,225,0.5); font-size: 0.7rem; }
.blog-filter-pill.is-active .count { color: rgba(255,255,255,0.7); }

/* Blog: featured post */
.featured-post {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  padding: 2rem;
  margin-bottom: 4rem;
  overflow: hidden;
}
@media (min-width: 900px) { .featured-post { grid-template-columns: 1.1fr 1fr; padding: 2.5rem; } }
.featured-post-img { border-radius: 1rem; overflow: hidden; height: 16rem; }
.featured-post-img img { width: 100%; height: 100%; object-fit: cover; }
.featured-post-img.post-card-img--placeholder { height: 16rem; border-radius: 1rem; }
.featured-post-img.post-card-img--placeholder .icon { width: 4rem; height: 4rem; }
.featured-post-eyebrow { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.featured-post h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 0.75rem; }
.featured-post .post-card-excerpt { font-size: 1rem; margin-bottom: 1.25rem; }

.pagination { display: flex; justify-content: center; gap: 0.5rem; margin-top: 3rem; }
.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--mist);
  font-size: 0.875rem;
}
.pagination .page-numbers.current { background: rgba(124, 92, 255, 0.2); border-color: rgba(124, 92, 255, 0.5); color: #fff; }
.pagination .page-numbers:hover { color: #fff; border-color: rgba(124, 92, 255, 0.5); }

/* Prose (post content) ----------------------------------------*/
.prose {
  font-family: var(--font-jakarta);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--mist);
  max-width: 48rem;
}
.prose h1, .prose h2, .prose h3, .prose h4 {
  font-family: var(--font-inter);
  color: #fff;
  letter-spacing: -0.04em;
  font-weight: 800;
  margin: 2.5rem 0 1rem;
}
.prose h1 { font-size: 2.25rem; }
.prose h2 { font-size: 1.75rem; border-bottom: 1px solid rgba(124, 92, 255, 0.2); padding-bottom: 0.5rem; }
.prose h3 { font-size: 1.375rem; color: var(--violet); }
.prose p { margin-bottom: 1.5rem; }
.prose a { color: var(--violet); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--blue); }
.prose ul, .prose ol { padding-left: 1.5rem; margin-bottom: 1.5rem; }
.prose li { margin-bottom: 0.5rem; }
.prose blockquote {
  border-left: 4px solid var(--violet);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-size: 1.25rem;
  font-style: italic;
  color: #fff;
}
.prose img { width: 100%; border-radius: 0.75rem; margin: 2rem 0; }
.prose code {
  background: rgba(124, 92, 255, 0.1);
  border: 1px solid rgba(124, 92, 255, 0.2);
  padding: 0.2em 0.4em;
  border-radius: 0.25rem;
  font-size: 0.875em;
  color: var(--violet);
}
.prose pre {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(124, 92, 255, 0.2);
  padding: 1.5rem;
  border-radius: 0.75rem;
  overflow-x: auto;
  margin-bottom: 1.5rem;
}
.prose strong { color: #fff; font-weight: 700; }
.prose hr { border: 0; border-top: 1px solid rgba(124, 92, 255, 0.2); margin: 2.5rem 0; }
.prose .wp-block-image figcaption { color: rgba(203, 213, 225, 0.6); font-size: 0.8rem; text-align: center; }

/* Footer ------------------------------------------------------*/
.site-footer {
  background: #030303;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 5rem 0 2.5rem;
}
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; margin-bottom: 4rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(5, 1fr); } }
.footer-brand p { color: var(--mist); font-size: 0.875rem; margin: 1.5rem 0; }
.social-row { display: flex; gap: 0.75rem; }
.social-link {
  width: 2.25rem; height: 2.25rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--mist);
  transition: all 0.2s ease;
}
.social-link:hover { color: #fff; border-color: rgba(124, 92, 255, 0.8); background: rgba(124, 92, 255, 0.1); }
.social-link .icon { width: 1rem; height: 1rem; }
.footer-col h4 {
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a { color: var(--mist); font-size: 0.875rem; transition: color 0.2s ease; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; } }
.footer-bottom p { margin: 0; font-size: 0.875rem; color: rgba(203, 213, 225, 0.6); }
.footer-bottom .footer-areas { font-size: 0.75rem; color: rgba(203, 213, 225, 0.4); }

/* Page heros --------------------------------------------------*/
.page-shell { padding-top: calc(var(--header-h) + 1rem); }
.page-hero { padding: 4rem 0; }
@media (min-width: 768px) { .page-hero { padding: 5rem 0 6rem; } }

.hero-orb { position: absolute; border-radius: 50%; filter: blur(64px); pointer-events: none; }

/* Media panels ------------------------------------------------*/
.media-panel { position: relative; height: 20rem; border-radius: 1rem; overflow: hidden; }
.media-panel img { width: 100%; height: 100%; object-fit: cover; opacity: 0.8; transition: transform 0.7s ease; }
.media-panel:hover img { transform: scale(1.05); }
.media-panel::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, #050505, transparent 60%); }

/* Newsletter --------------------------------------------------*/
.newsletter { border-top: 1px solid rgba(255, 255, 255, 0.05); padding: 4rem 0; }
.newsletter-form { display: flex; flex-direction: column; gap: 0.75rem; max-width: 28rem; margin: 0 auto; }
@media (min-width: 640px) { .newsletter-form { flex-direction: row; } .newsletter-form .form-input { flex: 1; } }

/* Team --------------------------------------------------------*/
.avatar-initials {
  width: 4rem; height: 4rem;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-inter);
  font-weight: 900;
  font-size: 1.25rem;
  color: #fff;
  background: linear-gradient(135deg, #7C5CFF, #4F8BFF);
}
.role { color: var(--violet); font-size: 0.75rem; font-weight: 600; margin-bottom: 1rem; }

/* 404 ---------------------------------------------------------*/
.error-wrap { min-height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 8rem 1.5rem 4rem; }

/* Animations --------------------------------------------------*/
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes ping { 75%, 100% { transform: scale(2); opacity: 0; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 30px rgba(124, 92, 255, 0.6); }
  50% { box-shadow: 0 0 50px rgba(124, 92, 255, 1), 0 0 80px rgba(79, 139, 255, 0.8), 0 0 40px rgba(34, 211, 238, 0.5); }
}
@keyframes heroShift {
  0% { background-position: 0 0; filter: hue-rotate(0deg); }
  100% { filter: hue-rotate(-12deg); }
}

/* Print (audit report download) -------------------------------*/
@media print {
  body { background: #fff; color: #111; }
  .site-header, .site-footer, .sticky-audit, .sticky-audit-mobile, .no-print { display: none !important; }
  .glass, .roi-panel, .cta-banner { border: 1px solid #ddd; background: #fff; }
  .glass::before { display: none; }
  h1, h2, h3, h4, .card-title, .gauge-score strong, .compare-feature { color: #111 !important; }
  .card-text, .lead, .gauge-name, .text-mist, .gen-step { color: #333 !important; }
  .gradient-text, .roi-num, .blueprint-num, .quickwin-num, .step-num { -webkit-text-fill-color: #4c2fd8; color: #4c2fd8; }
  .report-hero { padding: 2rem 0; }
}
