:root {
  --ink: #111312;
  --muted: #5f6764;
  --line: #dce2df;
  --paper: #f7faf8;
  --white: #ffffff;
  --charcoal: #101113;
  --green: #20d184;
  --blue: #2f7df6;
  --coral: #ff5d52;
  --yellow: #f5ca45;
  --shadow: 0 18px 50px rgba(17, 19, 18, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body.lock-scroll {
  overflow: hidden;
}

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

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

#network-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background: #101113;
  pointer-events: none;
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  width: min(calc(100% - 32px), var(--max));
  min-height: 58px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(16, 17, 19, 0.7);
  color: var(--white);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(17, 19, 18, 0.12);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  box-shadow: 0 8px 28px rgba(17, 19, 18, 0.1);
}

.brand,
.nav-links,
.header-cta {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 6px;
  background: var(--green);
  color: #07110c;
  font-size: 14px;
  font-weight: 900;
}

.nav-links {
  justify-content: center;
  gap: 22px;
  color: currentColor;
  font-size: 14px;
}

.nav-links a {
  opacity: 0.78;
  transition: opacity 160ms ease;
}

.nav-links a:hover {
  opacity: 1;
}

.header-cta {
  justify-content: center;
  min-height: 38px;
  padding: 0 18px;
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
}

.site-header.is-scrolled .header-cta {
  background: var(--ink);
  color: var(--white);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 100svh;
  padding: 104px 24px 46px;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(16, 17, 19, 0.92) 0%, rgba(16, 17, 19, 0.72) 46%, rgba(16, 17, 19, 0.18) 100%),
    linear-gradient(0deg, rgba(16, 17, 19, 0.92) 0%, rgba(16, 17, 19, 0.1) 56%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(42px, 7vw, 92px);
  line-height: 0.93;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 0;
  border-radius: 7px;
  cursor: pointer;
  font-weight: 900;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

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

.button-primary {
  background: var(--green);
  color: #06110c;
  box-shadow: 0 14px 34px rgba(32, 209, 132, 0.26);
}

.button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(760px, 100%);
  margin: 42px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  overflow: hidden;
}

.hero-metrics div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.hero-metrics dt {
  margin: 0;
  color: var(--white);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 950;
  line-height: 1;
}

.hero-metrics dd {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.hero-signal {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 32px;
  display: grid;
  gap: 9px;
  width: min(260px, calc(100% - 48px));
  pointer-events: none;
}

.hero-signal span {
  width: max-content;
  max-width: 100%;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(12px);
  animation: floatSignal 6s ease-in-out infinite;
}

.hero-signal span:nth-child(2) {
  margin-left: 46px;
  animation-delay: -1s;
}

.hero-signal span:nth-child(3) {
  margin-left: 12px;
  animation-delay: -2s;
}

.hero-signal span:nth-child(4) {
  margin-left: 74px;
  animation-delay: -3s;
}

.hero-signal span:nth-child(5) {
  margin-left: 28px;
  animation-delay: -4s;
}

@keyframes floatSignal {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -12px, 0);
  }
}

.comparison-section {
  position: relative;
  z-index: 1;
  background: var(--white);
}

.comparison-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  gap: 42px;
  align-items: stretch;
  width: 100%;
  padding: 104px max(24px, calc((100% - var(--max)) / 2)) 86px;
}

.comparison-copy .section-kicker {
  width: auto;
  margin-inline: 0;
}

.comparison-copy h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 0.98;
  letter-spacing: 0;
}

.comparison-copy p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.compare-card {
  display: grid;
  align-content: start;
  min-height: 430px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.compare-card span {
  display: inline-flex;
  width: fit-content;
  min-height: 34px;
  align-items: center;
  padding: 0 11px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 950;
}

.compare-human span {
  background: rgba(255, 93, 82, 0.12);
  color: #b3342c;
}

.compare-ai {
  border-color: rgba(32, 209, 132, 0.52);
  background: #eafff4;
}

.compare-ai span {
  background: var(--green);
  color: #06110c;
}

.compare-card h3 {
  margin: 70px 0 20px;
  font-size: 30px;
  line-height: 1.02;
}

.compare-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.compare-card li {
  position: relative;
  padding-left: 25px;
  color: var(--muted);
  line-height: 1.45;
}

.compare-card li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.compare-ai li {
  color: #265843;
}

.comparison-table {
  align-self: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.comparison-row {
  display: grid;
  grid-template-columns: minmax(130px, 0.9fr) minmax(120px, 0.8fr) minmax(120px, 0.8fr);
  gap: 1px;
  border-bottom: 1px solid var(--line);
  background: var(--line);
}

.comparison-row:last-child {
  border-bottom: 0;
}

.comparison-row span,
.comparison-row strong {
  display: flex;
  align-items: center;
  min-height: 74px;
  padding: 16px;
  background: var(--white);
  line-height: 1.3;
}

.comparison-row span:first-child {
  color: var(--muted);
  font-weight: 850;
}

.comparison-row strong {
  color: #0b5c37;
  background: #eafff4;
  font-size: 20px;
  font-weight: 950;
}

.comparison-head span {
  min-height: 56px;
  background: var(--ink);
  color: var(--white);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.section,
.use-cases-section,
.lead-section {
  position: relative;
  z-index: 1;
  padding: 104px 24px;
  background: var(--white);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(260px, 0.88fr);
  gap: 44px;
  align-items: end;
  width: min(100%, var(--max));
  margin: 0 auto 46px;
}

.section-heading h2,
.use-cases-section h2,
.faq-intro h2,
.lead-copy h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 0.98;
  letter-spacing: 0;
}

.section-heading p,
.use-cases-section .section-heading p,
.faq-intro p,
.lead-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.section-kicker {
  width: min(100%, var(--max));
  margin-inline: auto;
  color: var(--blue);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.local-section {
  background: var(--white);
}

.local-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.local-card {
  min-height: 310px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.local-card:hover {
  border-color: rgba(47, 125, 246, 0.42);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.local-card span {
  display: inline-flex;
  margin-bottom: 54px;
  color: var(--blue);
  font-weight: 950;
}

.local-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.05;
}

.local-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.law-callout {
  display: grid;
  grid-template-columns: minmax(180px, 0.32fr) minmax(0, 0.68fr);
  gap: 28px;
  align-items: start;
  width: min(100%, var(--max));
  margin: 14px auto 0;
  padding: 24px;
  border: 1px solid rgba(32, 209, 132, 0.38);
  border-radius: var(--radius);
  background: #eafff4;
}

.law-callout strong {
  color: #0b5c37;
  font-size: 24px;
  line-height: 1.05;
}

.law-callout p {
  margin: 0;
  color: #265843;
  font-size: 17px;
  line-height: 1.55;
}

.feature-card,
.tech-panel,
.step-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.feature-card {
  min-height: 320px;
  padding: 22px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.feature-card:hover {
  border-color: rgba(47, 125, 246, 0.4);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.feature-index {
  display: inline-flex;
  margin-bottom: 54px;
  color: var(--coral);
  font-weight: 950;
}

.feature-card h3,
.tech-panel h3,
.step-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.05;
}

.feature-card p,
.step-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.numbers-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--charcoal);
  color: var(--white);
}

.number-cell {
  min-height: 220px;
  padding: 34px 24px;
  background: linear-gradient(180deg, #17191b, #101113);
}

.number-cell strong {
  display: block;
  color: var(--yellow);
  font-size: clamp(44px, 6vw, 82px);
  line-height: 0.92;
  letter-spacing: 0;
}

.number-cell span {
  display: block;
  max-width: 240px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 800;
  line-height: 1.35;
}

.architecture-section {
  background: var(--white);
}

.pipeline {
  display: grid;
  grid-template-columns: minmax(130px, 1fr) 48px minmax(130px, 1fr) 48px minmax(130px, 1fr) 48px minmax(130px, 1fr) 48px minmax(130px, 1fr);
  align-items: center;
  width: min(100%, var(--max));
  margin: 0 auto 18px;
}

.pipeline-node {
  min-height: 136px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.pipeline-node:hover,
.pipeline-node.active {
  border-color: rgba(32, 209, 132, 0.62);
  background: #eafff4;
  transform: translateY(-4px);
}

.pipeline-node span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 950;
}

.pipeline-node strong {
  display: block;
  margin-top: 22px;
  font-size: 22px;
}

.pipeline-node small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

.pipeline-line {
  height: 2px;
  background: linear-gradient(90deg, var(--line), var(--green));
}

.architecture-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.tech-panel {
  padding: 26px;
}

.tech-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tech-panel li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  line-height: 1.48;
}

.tech-panel li::before {
  position: absolute;
  top: 0.66em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.use-cases-section {
  width: 100%;
  background: var(--white);
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.use-case-card {
  display: grid;
  align-content: start;
  min-height: 286px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.use-case-card:hover {
  border-color: rgba(32, 209, 132, 0.55);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.use-case-card span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 48px;
  color: var(--coral);
  font-weight: 950;
}

.use-case-card h3 {
  margin: 0 0 12px;
  font-size: 23px;
  line-height: 1.05;
}

.use-case-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.pilot-section {
  background: var(--white);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.step-card {
  min-height: 264px;
  padding: 22px;
}

.step-card span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 52px;
  border-radius: 6px;
  background: var(--yellow);
  font-weight: 950;
}

.faq-section {
  background: var(--white);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(320px, 1.16fr);
  gap: 44px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.faq-intro p {
  margin-top: 22px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

summary {
  padding: 20px 22px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  line-height: 1.58;
}

.lead-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  gap: 42px;
  align-items: start;
  width: 100%;
  background: var(--white);
  padding-right: max(24px, calc((100% - var(--max)) / 2));
  padding-left: max(24px, calc((100% - var(--max)) / 2));
}

.lead-copy .section-kicker {
  width: auto;
}

.lead-copy p {
  margin-top: 22px;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.lead-form label {
  display: grid;
  gap: 8px;
}

.lead-form label.wide,
.form-submit,
.form-note,
.lead-result {
  grid-column: 1 / -1;
}

.lead-form span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
  outline: 0;
  padding: 0 14px;
}

.lead-form textarea {
  min-height: 118px;
  padding-top: 12px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(47, 125, 246, 0.12);
}

.form-submit {
  width: 100%;
  margin-top: 4px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.lead-result {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(32, 209, 132, 0.45);
  border-radius: var(--radius);
  background: #eafff4;
}

.lead-result[hidden] {
  display: none;
}

.lead-result pre {
  max-height: 220px;
  margin: 0;
  padding: 12px;
  overflow: auto;
  border-radius: 6px;
  background: #101113;
  color: #dfffea;
  font-size: 12px;
  line-height: 1.45;
}

.copy-button {
  min-height: 40px;
  border: 0;
  border-radius: 6px;
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
  font-weight: 900;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 0.58fr);
  gap: 42px;
  padding: 42px max(24px, calc((100% - var(--max)) / 2));
  border-top: 1px solid var(--line);
  background: var(--white);
  color: var(--muted);
}

.footer-brand span {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 950;
}

.footer-brand p {
  max-width: 380px;
  margin: 0;
  line-height: 1.55;
}

.footer-legal {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 22px;
}

.footer-legal div {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.footer-legal span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-legal strong {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.35;
}

.footer-address {
  grid-column: 1 / -1;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 620ms ease,
    transform 620ms ease;
}

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

@media (max-width: 1040px) {
  .feature-grid,
  .steps,
  .numbers-band,
  .comparison-grid,
  .local-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pipeline {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .pipeline-line {
    width: 2px;
    height: 28px;
    margin: 0 auto;
  }
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 100svh;
    padding: 94px 18px 34px;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-signal {
    display: none;
  }

  .section,
  .use-cases-section,
  .lead-section {
    padding: 72px 18px;
  }

  .section-heading,
  .faq-layout,
  .lead-section,
  .architecture-panels,
  .comparison-section,
  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 18px;
  }

  .feature-grid,
  .steps,
  .numbers-band,
  .local-grid,
  .use-cases-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .step-card,
  .compare-card,
  .local-card,
  .use-case-card {
    min-height: auto;
  }

  .feature-index,
  .local-card span,
  .step-card span {
    margin-bottom: 28px;
  }

  .law-callout {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .comparison-section {
    padding: 72px 18px;
  }

  .compare-card h3 {
    margin-top: 42px;
  }

  .use-case-card span {
    margin-bottom: 28px;
  }

  .lead-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    gap: 10px;
  }

  .brand span:last-child {
    max-width: 116px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .header-cta {
    padding: 0 12px;
    font-size: 13px;
  }

  .hero h1 {
    font-size: clamp(38px, 13vw, 56px);
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .site-footer {
    display: grid;
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 34px 18px;
  }

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

@media (max-width: 620px) {
  .comparison-table {
    display: grid;
    gap: 10px;
    border: 0;
    box-shadow: none;
    overflow: visible;
  }

  .comparison-head {
    display: none;
  }

  .comparison-row {
    grid-template-columns: 1fr;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    overflow: hidden;
  }

  .comparison-row span,
  .comparison-row strong {
    min-height: auto;
    padding: 12px 14px;
  }

  .comparison-row span:first-child {
    background: #f7faf8;
    color: var(--ink);
  }

  .comparison-row strong::before,
  .comparison-row span:nth-child(3)::before {
    display: block;
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .comparison-row strong::before {
    content: "AI-Bot B2B";
  }

.comparison-row span:nth-child(3)::before {
    content: "Живой сотрудник";
  }
}

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