:root {
  --ink: #0f172a;
  --ink-2: #1e293b;
  --muted: #64748b;
  --line: #e2e8f0;
  --paper: #ffffff;
  --soft: #f8fafc;
  --blue: #0ea5e9;
  --blue-dark: #0369a1;
  --teal: #14b8a6;
  --violet: #6366f1;
  --green: #16a34a;
  --gold: #f59e0b;
  --radius: 12px;
  --shadow: 0 18px 50px rgba(15, 23, 42, 0.10);
  --focus: rgba(14, 165, 233, 0.38);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}
.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  z-index: 20;
}
.skip-link:focus { top: 16px; }

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  backdrop-filter: blur(16px);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  min-height: 72px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.brand img { width: 38px; height: 38px; object-fit: contain; }
.brand small {
  display: block;
  color: var(--muted);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  font-weight: 700;
}
.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  text-decoration: none;
  color: var(--ink-2);
}
.nav-links a:not(.btn) {
  padding: 6px 2px;
}
.nav-links a:hover { color: var(--blue-dark); }
.nav-toggle { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--blue);
  color: #001018;
  box-shadow: 0 12px 26px rgba(14, 165, 233, 0.26);
}
.btn-primary:hover { background: #38bdf8; }
.btn-secondary {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}
.btn-secondary:hover { box-shadow: var(--shadow); }
.btn-block { width: 100%; }

.section {
  padding: 84px 22px;
}
.section.alt { background: var(--soft); }
.wrap {
  max-width: 1160px;
  margin: 0 auto;
}
.narrow {
  max-width: 760px;
  margin: 0 auto;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}
h1, h2, h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}
h1 {
  font-size: clamp(42px, 7vw, 74px);
}
h2 {
  font-size: clamp(30px, 4vw, 48px);
}
h3 {
  font-size: 22px;
  letter-spacing: 0;
}
.lead {
  color: var(--ink-2);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.65;
  margin: 22px 0 0;
}
.sub {
  color: var(--muted);
  font-size: 17px;
  margin: 16px 0 0;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 20%, rgba(14, 165, 233, 0.18), transparent 32%),
    radial-gradient(circle at 12% 18%, rgba(20, 184, 166, 0.13), transparent 26%),
    radial-gradient(circle at 50% 90%, rgba(99, 102, 241, 0.10), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 64%, #f8fafc 100%);
  background-size: 140% 140%, 130% 130%, 120% 120%, 100% 100%;
  animation: hero-breathe 12s ease-in-out infinite alternate;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(14,165,233,0.45), transparent);
}
.hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 86px 22px 72px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.82fr);
  gap: 52px;
  align-items: center;
}
.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.trust-line {
  margin-top: 22px;
  color: var(--muted);
  font-weight: 700;
}
.local-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 800;
}

.audit-preview {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 22px;
  transform: translateY(0);
  animation: card-rise 700ms ease both;
}
.audit-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.audit-score {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: conic-gradient(var(--blue) 0 62%, #e2e8f0 62% 100%);
  color: var(--ink);
  font-weight: 900;
}
.audit-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 12px;
}
.audit-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid #eef2f7;
  font-weight: 800;
}
.status { color: var(--muted); font-size: 13px; }
.status.warn { color: #b45309; }
.status.good { color: var(--green); }
.proof-note {
  margin: 18px 0 0;
  padding: 14px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 12px;
  color: #1e3a8a;
  font-weight: 800;
  font-size: 14px;
}

.map-mock {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: #f1f5f9;
}
.map-grid {
  min-height: 160px;
  position: relative;
  background:
    linear-gradient(90deg, rgba(148,163,184,0.22) 1px, transparent 1px),
    linear-gradient(rgba(148,163,184,0.22) 1px, transparent 1px);
  background-size: 38px 38px;
  animation: map-drift 16s linear infinite;
}
.map-pin {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 8px 22px rgba(15,23,42,0.12);
  font-size: 12px;
  font-weight: 900;
}
.map-pin::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue);
}
.map-pin {
  animation: pin-pop 700ms ease both;
}
.map-pin.two { animation-delay: 140ms; }
.map-pin.three { animation-delay: 260ms; }
.map-pin.one { left: 22px; top: 26px; }
.map-pin.two { right: 20px; top: 66px; }
.map-pin.three { left: 42%; bottom: 24px; }
.rank-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 900;
}
.rank-num {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #dcfce7;
  color: #166534;
  display: grid;
  place-items: center;
}
.rank-change { color: var(--green); }

.grid {
  display: grid;
  gap: 22px;
}
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
  position: relative;
  overflow: hidden;
}
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(14,165,233,0.12), transparent 34%);
  opacity: 0;
  transition: opacity 180ms ease;
}
.card:hover::after { opacity: 1; }
.card > * { position: relative; z-index: 1; }
.card.highlight {
  border-color: rgba(14, 165, 233, 0.45);
  box-shadow: var(--shadow);
}
.system-flow {
  position: relative;
}
.system-flow::before {
  content: "";
  position: absolute;
  left: 15%;
  right: 15%;
  top: 78px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--gold), var(--green));
  opacity: 0.45;
}
.system-flow .card {
  position: relative;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.system-flow .card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(14,165,233,0.45);
}
.stage-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #eff6ff;
  color: var(--blue-dark);
  margin-bottom: 16px;
}
.system-flow .card:nth-child(2) .stage-icon {
  background: #fffbeb;
  color: #b45309;
}
.system-flow .card:nth-child(3) .stage-icon {
  background: #ecfdf5;
  color: #047857;
}
.outcome {
  margin-top: 18px;
  padding: 12px;
  border-radius: 12px;
  background: var(--soft);
  color: var(--ink);
  font-weight: 900;
}
.card .tag {
  display: inline-flex;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}
.card p { color: var(--muted); margin: 12px 0 0; }
.check-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 10px;
}
.check-list li {
  position: relative;
  padding-left: 24px;
  color: var(--ink-2);
  font-weight: 650;
}
.check-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  position: absolute;
  left: 4px;
  top: 10px;
}

.problem-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}
.problem-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 18px;
  font-weight: 800;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}
.price-card {
  display: flex;
  flex-direction: column;
}
.price-card h3 {
  font-size: 28px;
  margin-top: 10px;
}
.price-card .btn {
  margin-top: auto;
}
.proof-disclaimer {
  max-width: 820px;
  margin: 24px auto 0;
  padding: 16px 18px;
  border: 1px solid #fed7aa;
  border-radius: 14px;
  background: #fff7ed;
  color: #7c2d12;
  font-weight: 750;
  text-align: center;
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}
.result-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
}
.result-kpi {
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--blue-dark);
}
.result-card p { margin: 10px 0 0; color: var(--muted); font-weight: 700; }
.proof-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-top: 34px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}
.proof-image-card {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}
.proof-image-card img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  background: #f8fafc;
}
.proof-image-card figcaption {
  display: grid;
  gap: 4px;
  padding: 16px;
  color: var(--muted);
  font-size: 14px;
}
.proof-image-card figcaption strong {
  color: var(--ink);
  font-size: 16px;
}
.review-proof-note {
  margin-top: 22px;
  padding: 16px 18px;
  border: 1px solid #bfdbfe;
  border-radius: 14px;
  background: #eff6ff;
  color: #1e3a8a;
  font-weight: 750;
}
.reviews-panel {
  margin-top: 24px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(135deg, #ffffff, #f8fbff);
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) minmax(0, 1.25fr);
  gap: 22px;
  align-items: center;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}
.reviews-panel h3 {
  font-size: 28px;
}
.reviews-panel p {
  margin: 10px 0 0;
  color: var(--muted);
}
.review-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.review-card {
  min-height: 150px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  display: flex;
  flex-direction: column;
}
.stars {
  color: var(--gold);
  letter-spacing: 0.06em;
  font-size: 14px;
}
.review-card p {
  color: var(--ink);
  font-weight: 850;
  line-height: 1.35;
}
.review-card span {
  margin-top: auto;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}
.audit-check-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}
.audit-check {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
  font-weight: 900;
  font-size: 14px;
}
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(15,23,42,0.04);
}
.compare-table th,
.compare-table td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.compare-table tr:last-child td { border-bottom: 0; }
.compare-table th {
  background: var(--soft);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.compare-table td:nth-child(2) {
  color: var(--blue-dark);
  font-weight: 900;
}
.score-tool {
  background: linear-gradient(135deg, #082f49, #0f172a);
  color: #fff;
  border-radius: 18px;
  padding: 34px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
  gap: 28px;
  align-items: start;
}
.score-tool .sub { color: #cbd5e1; }
.score-result {
  display: none;
  margin-top: 16px;
  padding: 14px;
  border-radius: 12px;
  background: rgba(14,165,233,0.16);
  border: 1px solid rgba(125,211,252,0.28);
  font-weight: 900;
}
.score-result.show { display: block; }
.score-result.show {
  animation: card-rise 420ms ease both;
}
.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
}
.faq-item h3 { font-size: 18px; }
.faq-item p { margin: 8px 0 0; color: var(--muted); }
.sticky-audit {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 12;
  box-shadow: 0 16px 34px rgba(14,165,233,0.32);
  animation: sticky-in 500ms ease both;
}
.system-number {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
  margin-bottom: 18px;
}
.service-link {
  color: var(--blue-dark);
  font-weight: 900;
  text-decoration: none;
}
.service-link:hover { text-decoration: underline; }
.industry-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.industry-list span {
  padding: 12px 15px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-weight: 850;
}

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
label {
  font-size: 13px;
  font-weight: 900;
  color: var(--ink-2);
}
input, textarea, select {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  min-height: 46px;
  padding: 12px 13px;
  font: inherit;
}
textarea { min-height: 120px; resize: vertical; }
input:focus, textarea:focus, select:focus {
  outline: 3px solid rgba(14, 165, 233, 0.18);
  border-color: var(--blue);
}
.form-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
}
.form-trust {
  margin: 18px 0 0;
  padding: 14px;
  border: 1px solid #dbeafe;
  border-radius: 12px;
  background: #eff6ff;
}
.form-trust h3 {
  font-size: 16px;
  letter-spacing: -0.02em;
}
.form-trust ol {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 650;
}
.form-trust li + li { margin-top: 6px; }
.form-feedback {
  margin-top: 14px;
  font-weight: 800;
}
.form-feedback--success { color: var(--green); }
.form-feedback--error { color: #b91c1c; }

.cta-band {
  background: var(--ink);
  color: #fff;
  border-radius: 18px;
  padding: 42px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}
.cta-band p { color: #cbd5e1; }
.cta-band .btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.25);
}

.footer {
  background: #07111f;
  color: #cbd5e1;
  padding: 42px 22px;
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
}
.footer a { color: #e0f2fe; text-decoration: none; }
.footer a:hover { text-decoration: underline; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}
.footer-cities {
  margin-top: 14px;
  color: #94a3b8;
  font-size: 14px;
}

@keyframes card-rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes hero-breathe {
  from { background-position: 0% 0%, 0% 0%, 50% 80%, center; }
  to { background-position: 100% 22%, 40% 18%, 30% 100%, center; }
}
@keyframes map-drift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 38px 0, 0 38px; }
}
@keyframes pin-pop {
  from { opacity: 0; transform: translateY(8px) scale(0.94); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes sticky-in {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal-item {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms ease;
}
.reveal-item.visible {
  opacity: 1;
  transform: translateY(0);
}
.compare-table tr {
  transition: background 160ms ease, transform 160ms ease;
}
.compare-table tbody tr:hover {
  background: #f8fbff;
}
.audit-score {
  transition: transform 220ms ease;
}
.audit-preview:hover .audit-score {
  transform: rotate(8deg) scale(1.04);
}

.page-hero {
  background: linear-gradient(180deg, #f8fbff, #fff);
  padding: 78px 22px 64px;
}
.page-hero .wrap { max-width: 920px; }
.page-hero .wrap.grid-2 { max-width: 1160px; }
.breadcrumb {
  color: var(--blue-dark);
  font-weight: 900;
  text-decoration: none;
  font-size: 13px;
}

@media (max-width: 900px) {
  .hero-inner,
  .grid-2,
  .grid-3,
  .footer-inner,
  .cta-band,
  .pricing-grid,
  .results-grid,
  .audit-check-grid,
  .proof-gallery,
  .reviews-panel,
  .score-tool {
    grid-template-columns: 1fr;
  }
  .review-cards { grid-template-columns: 1fr; }
  .system-flow::before { display: none; }
  .nav-toggle {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    font-weight: 900;
  }
  .nav-links {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 78px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }
  .nav-links a:not(.btn) {
    padding: 10px 2px;
  }
  .nav-links.open { display: flex; }
  .nav-links .btn { width: 100%; }
  .problem-list,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .field.full { grid-column: auto; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 560px) {
  .section { padding: 62px 18px; }
  .hero-inner { padding: 62px 18px 54px; }
  h1 { font-size: 38px; }
  h2 { font-size: 30px; }
  .hero-actions .btn,
  .cta-row .btn {
    width: 100%;
  }
  .audit-preview,
  .form-card,
  .score-tool { padding: 18px; }
  .audit-head {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
  }
  .audit-score {
    width: 64px;
    height: 64px;
  }
  .rank-card {
    grid-template-columns: auto 1fr;
  }
  .rank-change {
    grid-column: 2;
  }
  .cta-band { padding: 28px; border-radius: 18px; }
  .brand small { display: none; }
  .sticky-audit {
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
  }
  body { padding-bottom: 74px; }
  .compare-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

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