:root {
  --ink-950: #050b13;
  --ink-900: #08111f;
  --ink-850: #0b1626;
  --ink-800: #0f1c2e;
  --ink-700: #18283d;
  --line: #263a54;
  --line-strong: #5b789a;
  --text: #f5f9ff;
  --muted: #a9bad0;
  --quiet: #7f94ae;
  --sky: #4cc9ff;
  --sky-dark: #08243a;
  --green: #6df7b1;
  --amber: #ffcb6b;
  --danger: #ff7a8a;
  --max: 1180px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink-900);
  color: var(--text);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 4px;
}

::selection {
  background: var(--sky);
  color: var(--ink-950);
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: 6px;
  background: var(--text);
  color: var(--ink-950);
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(54, 85, 116, 0.72);
  background: rgba(8, 17, 31, 0.96);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 172px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav li a,
.footer-nav a,
.footer-contact a {
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

.site-nav li a:hover,
.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--sky);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: transparent;
  color: var(--text);
  padding: 8px 12px;
}

.nav-toggle-lines {
  display: inline-block;
  width: 18px;
  height: 12px;
  margin-left: 8px;
  border-top: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}

.button-row,
.text-link-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--sky);
  border-radius: 8px;
  padding: 12px 20px;
  background: var(--sky);
  color: var(--ink-950);
  font-family: "Space Grotesk", "Arial Narrow", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.1;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: var(--green);
  background: var(--green);
}

.button-secondary {
  border-color: var(--line-strong);
  background: transparent;
  color: var(--text);
}

.button-secondary:hover {
  border-color: var(--sky);
  background: var(--sky-dark);
}

.button-small {
  min-height: 42px;
  padding: 9px 15px;
  font-size: 14px;
}

.text-link,
.card-link {
  color: var(--sky);
  font-weight: 700;
  text-decoration: none;
}

.text-link:hover,
.card-link:hover {
  color: var(--green);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 70px;
  border-bottom: 1px solid var(--line);
  background: var(--ink-900);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::before {
  inset: 34px auto auto 5%;
  width: 1px;
  height: 78%;
  background: var(--line);
}

.hero::after {
  right: 5%;
  bottom: 42px;
  width: 26%;
  height: 1px;
  background: var(--line);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(500px, 1.02fr);
  align-items: start;
  gap: clamp(44px, 6vw, 86px);
}

.hero-copy {
  padding-top: 34px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--sky);
  font-family: "Space Grotesk", "Arial Narrow", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  color: var(--quiet);
  font-size: 12px;
}

.breadcrumbs a {
  color: var(--muted);
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--sky);
}

.breadcrumbs > span[aria-hidden="true"] {
  color: var(--line-strong);
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: "Space Grotesk", "Arial Narrow", sans-serif;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 790px;
  margin-bottom: 25px;
  font-size: clamp(46px, 5.1vw, 68px);
  line-height: 0.98;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.04;
}

h3 {
  margin-bottom: 14px;
  font-size: 23px;
  line-height: 1.15;
}

.lede,
.section-intro {
  color: var(--muted);
}

.lede {
  max-width: 710px;
  margin: 0 0 30px;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 42px 0 0;
  padding: 0;
  border: 1px solid var(--line);
  list-style: none;
}

.hero-stats li {
  display: grid;
  align-content: start;
  min-height: 102px;
  padding: 18px;
  border-right: 1px solid var(--line);
  background: var(--ink-850);
}

.hero-stats li:last-child {
  border-right: 0;
}

.hero-stats strong {
  color: var(--green);
  font-family: "Space Grotesk", "Arial Narrow", sans-serif;
  font-size: 25px;
}

.hero-stats span {
  color: var(--quiet);
  font-size: 13px;
  line-height: 1.35;
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.hero-rocket {
  position: absolute;
  z-index: 3;
  top: 18px;
  right: auto;
  left: -76px;
  width: 62px;
  height: auto;
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.42));
  pointer-events: none;
}

.product-window {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: var(--ink-950);
  box-shadow: var(--shadow);
}

.window-bar {
  display: flex;
  min-height: 38px;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--line);
  padding: 0 13px;
  background: var(--ink-800);
}

.window-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line-strong);
}

.window-bar span:first-child {
  background: var(--danger);
}

.window-bar span:nth-child(2) {
  background: var(--amber);
}

.window-bar span:nth-child(3) {
  background: var(--green);
}

.window-bar small {
  margin-left: auto;
  color: var(--quiet);
  font-family: "Space Grotesk", "Arial Narrow", sans-serif;
  font-size: 9px;
  letter-spacing: 0.12em;
}

.product-window > img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top left;
}

.signal-panel {
  position: relative;
  min-height: 420px;
  display: grid;
  align-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  padding: clamp(34px, 6vw, 72px);
  background: var(--ink-850);
  box-shadow: var(--shadow);
}

.signal-panel::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid var(--line);
  pointer-events: none;
}

.signal-panel strong {
  position: relative;
  color: var(--text);
  font-family: "Space Grotesk", "Arial Narrow", sans-serif;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1;
}

.signal-panel i {
  position: relative;
  color: var(--sky);
  font-family: "Space Grotesk", "Arial Narrow", sans-serif;
  font-size: 26px;
  font-style: normal;
}

.signal-label,
.signal-panel small {
  position: relative;
  color: var(--quiet);
  font-family: "Space Grotesk", "Arial Narrow", sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
}

.signal-label {
  margin-bottom: 28px;
  color: var(--sky);
}

.signal-panel small {
  max-width: 360px;
  margin-top: 30px;
  line-height: 1.7;
  letter-spacing: 0.04em;
}

.transaction-rail {
  position: relative;
  z-index: 2;
  margin-top: 62px;
  border: 1px solid var(--line-strong);
  background: var(--ink-950);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
}

.rail-head {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: 0 16px;
  color: var(--quiet);
  font-family: "Space Grotesk", "Arial Narrow", sans-serif;
  font-size: 10px;
  letter-spacing: 0.14em;
}

.status-dot {
  color: var(--green);
}

.status-dot::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--green);
}

.transaction-rail ol {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.transaction-rail li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  min-height: 125px;
  padding: 20px 16px;
  border-right: 1px solid var(--line);
}

.transaction-rail li:last-child {
  border-right: 0;
}

.rail-number {
  color: var(--sky);
  font-family: "Space Grotesk", "Arial Narrow", sans-serif;
  font-size: 12px;
}

.transaction-rail strong,
.transaction-rail small {
  display: block;
}

.transaction-rail strong {
  margin-bottom: 7px;
  font-family: "Space Grotesk", "Arial Narrow", sans-serif;
  font-size: 15px;
}

.transaction-rail small {
  color: var(--quiet);
  font-size: 12px;
  line-height: 1.5;
}

.section {
  padding: clamp(82px, 9vw, 132px) 0;
  border-bottom: 1px solid var(--line);
  background: var(--ink-900);
}

.section:nth-of-type(even) {
  background: var(--ink-850);
}

.section-ink {
  background: var(--ink-950) !important;
}

.section-soft {
  background: var(--ink-800) !important;
}

.section-head {
  max-width: 790px;
  margin-bottom: 50px;
}

.section-head .section-intro {
  max-width: 720px;
  margin: 0;
  font-size: 19px;
}

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

.card {
  position: relative;
  min-height: 315px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-top: 3px solid var(--sky);
  border-radius: 10px;
  padding: 27px;
  background: var(--ink-800);
  transition: transform 180ms ease, border-color 180ms ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  border-top-color: var(--green);
}

.card-index {
  position: absolute;
  top: 18px;
  right: 20px;
  color: var(--quiet);
  font-family: "Space Grotesk", "Arial Narrow", sans-serif;
  font-size: 23px;
}

.card-kicker {
  margin: 0 0 26px;
  color: var(--sky);
  font-family: "Space Grotesk", "Arial Narrow", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.card > p:not(.card-kicker) {
  color: var(--muted);
}

.card-link {
  margin-top: auto;
  padding-top: 22px;
}

.workflow-grid,
.proof-grid,
.faq-grid,
.form-grid,
.calculator-grid,
.legal-grid {
  display: grid;
  gap: clamp(42px, 7vw, 96px);
}

.workflow-grid {
  grid-template-columns: minmax(0, 0.8fr) minmax(520px, 1.2fr);
  align-items: start;
}

.sticky-copy {
  position: sticky;
  top: 130px;
}

.workflow-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-strong);
  list-style: none;
}

.workflow-list li {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 20px;
  min-height: 176px;
  align-items: start;
  border-bottom: 1px solid var(--line);
  padding: 30px 0;
}

.workflow-list > li > span {
  color: var(--sky);
  font-family: "Space Grotesk", "Arial Narrow", sans-serif;
  font-size: 14px;
}

.workflow-list h3 {
  margin-bottom: 10px;
}

.workflow-list p,
.proof-copy > p,
.legal-grid p {
  margin: 0;
  color: var(--muted);
}

.proof-grid {
  grid-template-columns: minmax(300px, 0.72fr) minmax(560px, 1.28fr);
  align-items: center;
}

.proof-copy .text-link-row {
  margin-top: 30px;
}

.proof-window figcaption {
  border-top: 1px solid var(--line);
  padding: 12px 16px;
  color: var(--quiet);
  font-size: 12px;
}

.faq-grid {
  grid-template-columns: minmax(280px, 0.7fr) minmax(520px, 1.3fr);
  align-items: start;
}

.faq-list {
  border-top: 1px solid var(--line-strong);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 0;
}

.faq-list summary {
  cursor: pointer;
  padding: 25px 46px 25px 0;
  font-family: "Space Grotesk", "Arial Narrow", sans-serif;
  font-size: 20px;
  font-weight: 600;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  margin-right: -36px;
  color: var(--sky);
  font-size: 25px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 720px;
  margin: -5px 0 26px;
  color: var(--muted);
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.plan {
  min-height: 470px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 30px;
  background: var(--ink-800);
}

.plan-featured {
  border: 2px solid var(--sky);
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0 0 22px;
}

.plan-price strong {
  font-family: "Space Grotesk", "Arial Narrow", sans-serif;
  font-size: 52px;
  line-height: 1;
}

.plan-price span,
.plan > p {
  color: var(--muted);
}

.plan ul {
  display: grid;
  gap: 9px;
  margin: 24px 0 32px;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.plan li::before {
  content: "✓";
  margin-right: 9px;
  color: var(--green);
}

.plan .button {
  margin-top: auto;
}

.section-form {
  background: var(--ink-950) !important;
}

.form-grid {
  grid-template-columns: minmax(280px, 0.72fr) minmax(560px, 1.28fr);
  align-items: start;
}

.lead-form,
.calculator {
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  padding: clamp(24px, 4vw, 42px);
  background: var(--ink-800);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.field {
  min-width: 0;
}

.field label {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.form-instructions {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 13px;
}

.field-required,
.field-optional {
  color: var(--quiet);
  font-size: 0.88em;
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  padding: 11px 13px;
  background: var(--ink-900);
  color: var(--text);
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--quiet);
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field-check {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 11px;
  align-items: start;
}

.field-check input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
  accent-color: var(--sky);
}

.field-check label {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.55;
}

.field-check a {
  color: var(--sky);
}

.field-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.lead-form > .button,
.calculator > .button {
  margin-top: 24px;
}

.calculator [disabled] {
  cursor: not-allowed;
}

.privacy-note {
  margin-top: 28px;
  border-left: 3px solid var(--amber);
  padding: 12px 15px;
  background: var(--ink-800);
  color: var(--muted);
  font-size: 13px;
}

.form-status {
  min-height: 26px;
  margin: 16px 0 0;
  color: var(--green);
  font-weight: 700;
}

.form-status.is-error {
  color: var(--danger);
}

.demo-result {
  margin-top: 20px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.demo-result strong {
  display: block;
  margin-bottom: 12px;
  font-family: "Space Grotesk", "Arial Narrow", sans-serif;
}

.calculator-grid {
  grid-template-columns: minmax(560px, 1.15fr) minmax(320px, 0.85fr);
  align-items: start;
}

.calculator .section-head {
  margin-bottom: 36px;
}

.calculator-result {
  position: sticky;
  top: 128px;
  display: grid;
  border: 1px solid var(--line-strong);
  border-top: 3px solid var(--green);
  border-radius: 10px;
  padding: clamp(26px, 4vw, 44px);
  background: var(--ink-800);
}

.calculator-result span {
  color: var(--quiet);
  font-size: 13px;
}

.calculator-result strong {
  margin: 5px 0 24px;
  color: var(--green);
  font-family: "Space Grotesk", "Arial Narrow", sans-serif;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1;
}

.calculator-result p {
  margin: 6px 0 0;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  color: var(--muted);
  font-size: 13px;
}

.legal-section {
  padding-block: 72px;
}

.legal-grid {
  grid-template-columns: minmax(260px, 0.65fr) minmax(540px, 1.35fr);
  align-items: start;
}

.legal-grid h2 {
  font-size: 31px;
}

.legal-grid p + p {
  margin-top: 18px;
}

.site-footer {
  padding: 70px 0 26px;
  background: var(--ink-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr;
  gap: 50px;
  align-items: start;
}

.footer-brand {
  margin-bottom: 22px;
}

.footer-grid p {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
}

.footer-contact,
.footer-nav {
  display: grid;
  gap: 10px;
}

.footer-contact span {
  color: var(--text);
  font-family: "Space Grotesk", "Arial Narrow", sans-serif;
  font-weight: 600;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 56px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  color: var(--quiet);
  font-size: 12px;
}

.not-found {
  min-height: 72vh;
  display: grid;
  place-items: center;
  padding: 60px 20px;
}

.not-found .signal-panel {
  width: min(800px, 100%);
}

.not-found h1 {
  margin: 18px 0;
}

.js [data-reveal] {
  transform: translateY(10px);
  transition: transform 380ms ease;
}

.js [data-reveal].is-visible {
  transform: none;
}

@media (max-width: 1280px) {
  .hero-rocket {
    display: none;
  }
}

@media (max-width: 1000px) {
  .hero-grid,
  .proof-grid,
  .workflow-grid,
  .faq-grid,
  .form-grid,
  .calculator-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 54px;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero-visual {
    max-width: 820px;
  }

  .sticky-copy,
  .calculator-result {
    position: static;
  }

  .card-grid,
  .plan-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .transaction-rail ol {
    grid-template-columns: repeat(2, 1fr);
  }

  .transaction-rail li:nth-child(2) {
    border-right: 0;
  }

  .transaction-rail li:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

  .footer-nav {
    grid-column: 1 / -1;
    grid-template-columns: repeat(5, auto);
  }
}

@media (max-width: 820px) {
  .header-inner {
    min-height: 68px;
    flex-wrap: wrap;
  }

  .brand img {
    width: 150px;
  }

  .js .nav-toggle {
    display: inline-flex;
    align-items: center;
  }

  .site-nav {
    display: grid;
    flex: 1 0 100%;
    align-items: stretch;
    border-bottom: 1px solid var(--line-strong);
    padding: 22px 20px 26px;
    background: var(--ink-950);
  }

  .js .site-nav {
    position: absolute;
    top: 68px;
    right: 0;
    left: 0;
    display: none;
  }

  .js .site-nav.is-open {
    display: grid;
  }

  .site-nav ul {
    display: grid;
    gap: 0;
  }

  .site-nav li {
    border-bottom: 1px solid var(--line);
  }

  .site-nav li a {
    display: block;
    padding: 13px 0;
    font-size: 17px;
  }

  .site-nav .button {
    margin-top: 8px;
  }

  .hero {
    padding-top: 64px;
  }

  .field-grid {
    grid-template-columns: 1fr;
  }

  .field-check {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(calc(100% - 28px), var(--max));
  }

  body {
    font-size: 16px;
  }

  h1 {
    font-size: 43px;
  }

  h2 {
    font-size: 34px;
  }

  .hero {
    padding-bottom: 48px;
  }

  .hero-grid {
    gap: 40px;
  }

  .button-row .button {
    width: 100%;
  }

  .hero-stats,
  .card-grid,
  .plan-grid,
  .transaction-rail ol,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats li,
  .hero-stats li:last-child,
  .transaction-rail li,
  .transaction-rail li:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-stats li:last-child,
  .transaction-rail li:last-child {
    border-bottom: 0;
  }

  .transaction-rail li:nth-child(3) {
    border-bottom: 1px solid var(--line);
  }

  .card,
  .plan {
    min-height: auto;
  }

  .workflow-list li {
    grid-template-columns: 44px 1fr;
  }

  .lead-form,
  .calculator {
    padding: 22px 17px;
  }

  .footer-nav {
    grid-column: auto;
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
