:root {
  --bg: #ffffff;
  --bg-soft: #f5f6f4;
  --bg-warm: #fff9df;
  --text: #151515;
  --muted: #606366;
  --line: #d9dde1;
  --graphite: #222426;
  --graphite-2: #303338;
  --yellow: #f6c900;
  --yellow-dark: #d5aa00;
  --green: #2f8f6f;
  --danger: #b33939;
  --success-bg: #e8f6ef;
  --danger-bg: #fff0f0;
  --radius: 8px;
  --shadow: 0 22px 60px rgba(20, 20, 20, 0.14);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
}

body.modal-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

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

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

.narrow {
  width: min(100% - 40px, 880px);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.mobile-only {
  display: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 12px clamp(18px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(217, 221, 225, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--text);
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  background: var(--yellow);
  color: var(--text);
  border: 2px solid var(--text);
  border-radius: var(--radius);
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(12px, 2vw, 24px);
  color: #34383c;
  font-size: 14px;
  font-weight: 650;
}

.main-nav a,
.link-action {
  transition: color 0.2s ease;
}

.main-nav a:hover,
.link-action:hover,
.site-footer a:hover,
.site-footer button:hover {
  color: var(--yellow-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.link-action {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--yellow);
  color: var(--text);
  border-color: #c69d00;
  box-shadow: 0 12px 22px rgba(246, 201, 0, 0.22);
}

.btn-primary:hover {
  background: #ffd92f;
}

.btn-secondary {
  background: #fff;
  color: var(--text);
  border-color: var(--line);
}

.btn-secondary:hover {
  border-color: var(--graphite);
}

.btn-link {
  background: transparent;
  color: var(--text);
  border-color: rgba(21, 21, 21, 0.18);
}

.btn-small {
  min-height: 38px;
  padding: 9px 13px;
  font-size: 14px;
}

.btn-full {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
}

.hero {
  position: relative;
  min-height: 74svh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 76px 0 20px;
  isolation: isolate;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media {
  background-image: url("assets/karo-hero.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.01);
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.84) 42%, rgba(255, 255, 255, 0.36) 76%, rgba(255, 255, 255, 0.18) 100%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.12) 34%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 730px) minmax(280px, 360px);
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  margin-bottom: 18px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #705b00;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.final-cta h2 {
  margin: 0;
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.hero h1 {
  max-width: 730px;
  font-size: 52px;
}

.hero-copy {
  min-width: 0;
}

.hero-lead {
  max-width: 650px;
  margin: 22px 0 0;
  color: #303338;
  font-size: 21px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.fine-print,
.form-note,
.contact-note {
  color: var(--muted);
  font-size: 13px;
}

.fine-print {
  max-width: 630px;
  margin: 16px 0 0;
}

.hero-process {
  align-self: center;
  padding: 22px;
  background: rgba(34, 36, 38, 0.9);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.process-label {
  margin: 0 0 18px;
  color: var(--yellow);
  font-weight: 900;
}

.hero-process ol {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: route;
}

.hero-process li {
  position: relative;
  min-height: 34px;
  padding-left: 48px;
  color: #f3f3f3;
  font-weight: 750;
}

.hero-process li::before {
  counter-increment: route;
  content: counter(route);
  position: absolute;
  left: 0;
  top: -3px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(246, 201, 0, 0.95);
  color: var(--text);
  font-size: 14px;
  font-weight: 900;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 12px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(217, 221, 225, 0.9);
  border-radius: var(--radius);
  color: #32363a;
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.section {
  padding: clamp(70px, 9vw, 118px) 0;
}

.hero + .section {
  padding-top: 20px;
}

.section-muted {
  background: var(--bg-soft);
}

.section-dark {
  background: var(--graphite);
  color: #fff;
}

.section-dark .eyebrow {
  color: var(--yellow);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading h2,
.form-copy h2,
.final-cta h2 {
  font-size: 46px;
}

.section-heading p,
.form-copy p,
.large-text,
.final-cta p,
.contacts-grid p {
  color: var(--muted);
  font-size: 18px;
}

.section-dark .form-copy p,
.section-dark .notice {
  color: #d8dcdf;
}

.card-grid {
  display: grid;
  gap: 18px;
}

.cards-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card,
.metric-card,
.document-card,
.step-card,
.data-card,
.requisites-card,
.lead-form,
.mini-panel,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.feature-card,
.metric-card,
.document-card {
  padding: 24px;
}

.feature-card h3,
.metric-card h3,
.document-card h3,
.mini-panel h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.18;
}

.feature-card p,
.metric-card p,
.document-card p,
.mini-panel p,
.step-card p,
.data-card li {
  color: var(--muted);
}

.icon {
  display: inline-block;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  background: var(--bg-warm);
  border: 1px solid #f0d15c;
  border-radius: var(--radius);
  position: relative;
}

.icon::before,
.icon::after {
  content: "";
  position: absolute;
  inset: 11px;
  border: 2px solid var(--graphite);
}

.car-icon::before {
  inset: 16px 8px 11px;
  border-radius: 9px 9px 4px 4px;
}

.car-icon::after {
  inset: auto 10px 9px;
  height: 6px;
  border-width: 0 4px;
}

.shield-icon::before {
  inset: 8px 11px;
  border-radius: 12px 12px 16px 16px;
}

.wallet-icon::before {
  inset: 13px 8px 10px;
  border-radius: 5px;
}

.wallet-icon::after {
  inset: 17px 7px auto auto;
  width: 10px;
  height: 8px;
  border-radius: 4px 0 0 4px;
  background: var(--yellow);
}

.route-icon::before {
  inset: 10px;
  border: 0;
  border-top: 2px dashed var(--graphite);
  transform: rotate(-18deg);
}

.route-icon::after {
  inset: auto 9px 9px auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--graphite);
}

.report-icon::before,
.document-icon::before {
  inset: 8px 11px;
  border-radius: 3px;
}

.report-icon::after {
  inset: auto 14px 11px;
  height: 10px;
  border-width: 0 0 0 2px;
  box-shadow: 6px -5px 0 -2px var(--graphite), 12px -10px 0 -2px var(--graphite);
}

.document-icon::after {
  inset: 16px 15px auto;
  height: 7px;
  border-width: 2px 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(6, minmax(170px, 1fr));
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.step-card {
  position: relative;
  min-width: 170px;
  padding: 20px;
}

.step-card span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  background: var(--yellow);
  border: 1px solid #c69d00;
  border-radius: 50%;
  font-weight: 900;
}

.step-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.2;
}

.notice {
  margin: 24px 0 0;
  padding: 16px 18px;
  border-left: 4px solid var(--yellow);
  background: #fff;
  color: #3d4145;
  border-radius: var(--radius);
}

.notice-dark {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--yellow);
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.form-copy {
  position: sticky;
  top: 98px;
}

.mini-panel {
  margin-top: 26px;
  padding: 22px;
}

.lead-form {
  padding: clamp(22px, 4vw, 34px);
  box-shadow: 0 18px 45px rgba(20, 20, 20, 0.08);
}

.lead-form-light {
  color: var(--text);
}

.form-row {
  display: grid;
  gap: 7px;
  margin-bottom: 16px;
}

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

label,
legend {
  color: #32363a;
  font-size: 14px;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid #cfd5da;
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
  padding: 13px 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--yellow-dark);
  box-shadow: 0 0 0 4px rgba(246, 201, 0, 0.22);
}

.radio-group {
  display: flex;
  gap: 12px;
  align-items: center;
  min-width: 0;
  margin: 0 0 16px;
  padding: 0;
  border: 0;
}

.radio-group legend {
  width: 100%;
  margin-bottom: 7px;
}

.radio-group label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
}

.radio-group input,
.check-row input {
  width: auto;
  accent-color: var(--yellow-dark);
}

.radio-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.checks,
.check-row {
  display: grid;
  gap: 12px;
}

.check-row {
  grid-template-columns: 18px 1fr;
  align-items: start;
  color: #32363a;
  font-size: 14px;
  line-height: 1.45;
}

.inline-link {
  display: inline;
  padding: 0;
  background: transparent;
  border: 0;
  color: #6b5600;
  cursor: pointer;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.form-note {
  margin: 12px 0 0;
}

.form-status {
  display: none;
  margin: 16px 0 0;
  padding: 12px 14px;
  border-radius: var(--radius);
  font-weight: 800;
}

.form-status.is-visible {
  display: block;
}

.form-status.success {
  background: var(--success-bg);
  color: #216349;
}

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

.accordion-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}

.data-card {
  padding: 0;
  overflow: hidden;
}

.data-card summary,
.faq-list summary {
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

.data-card summary {
  padding: 18px;
}

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

.data-card summary::after,
.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--yellow-dark);
  font-weight: 900;
}

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

.data-card ul {
  margin: 0;
  padding: 0 18px 20px 34px;
}

.metric-card {
  min-height: 230px;
  background: var(--graphite);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.16);
}

.metric-card p {
  color: #d9dde1;
}

.flow-example {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 26px 0;
}

.flow-example span {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 58px;
  padding: 12px;
  background: var(--bg-warm);
  border: 1px solid #efd45f;
  border-radius: var(--radius);
  font-weight: 900;
  text-align: center;
}

.flow-example span:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;
  width: 10px;
  height: 2px;
  background: #d0b234;
}

.documents-grid {
  align-items: stretch;
}

.document-card {
  display: flex;
  flex-direction: column;
}

.document-card p {
  flex: 1;
}

.document-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.company-grid,
.contacts-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.requisites-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  overflow: hidden;
}

.requisites-card div {
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.requisites-card div:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.requisites-card div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.requisites-card dt {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.requisites-card dd {
  margin: 0;
  font-weight: 780;
}

.requisites-card a,
.contact-link,
.faq-list a {
  color: #6b5600;
  font-weight: 900;
}

.site-footer a {
  color: var(--yellow);
  font-weight: 900;
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.faq-list summary {
  padding: 20px 22px;
  font-size: 18px;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.final-cta {
  padding: 62px 0;
  background: var(--bg-warm);
  border-block: 1px solid #f0d15c;
}

.final-cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.final-cta p {
  max-width: 650px;
  margin-bottom: 0;
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.contacts-section {
  padding-top: 80px;
}

.contact-card {
  padding: 26px;
}

.contact-link {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 24px;
}

.site-footer {
  padding: 46px 0 100px;
  background: var(--graphite);
  color: #f2f4f5;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 36px;
}

.footer-title {
  margin: 0 0 12px;
  color: #fff;
  font-size: 16px;
}

.site-footer p {
  margin: 0 0 8px;
  color: #d9dde1;
}

.site-footer nav {
  display: grid;
  gap: 9px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom p {
  max-width: 650px;
  font-size: 13px;
}

.mobile-bottom-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 45;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px;
  background: rgba(34, 36, 38, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.mobile-bottom-bar a {
  display: grid;
  place-items: center;
  min-height: 44px;
  border-radius: 6px;
  background: var(--yellow);
  color: var(--text);
  font-weight: 900;
}

.mobile-bottom-bar a + a {
  background: #fff;
}

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
}

.modal-dialog {
  position: relative;
  width: min(100%, 740px);
  max-height: min(82svh, 720px);
  overflow: auto;
  padding: clamp(24px, 4vw, 36px);
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.modal-dialog h2 {
  margin: 0 0 16px;
  font-size: 34px;
  line-height: 1.12;
}

.modal-body {
  color: var(--muted);
}

.modal-body ul {
  padding-left: 22px;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

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

  .main-nav {
    position: fixed;
    top: 72px;
    left: 16px;
    right: 16px;
    display: none;
    grid-column: 1 / -1;
    padding: 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: grid;
    justify-items: start;
  }

  .menu-toggle {
    display: block;
    position: absolute;
    top: 11px;
    right: 14px;
  }

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

  .hero-process {
    max-width: 520px;
  }

  .cards-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .accordion-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding-top: 86px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-lead {
    font-size: 19px;
  }

  .section-heading h2,
  .form-copy h2,
  .final-cta h2 {
    font-size: 38px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.82) 58%, rgba(255, 255, 255, 0.42) 100%),
      linear-gradient(0deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.18) 38%);
  }

  .cards-3,
  .form-layout,
  .company-grid,
  .contacts-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .form-copy {
    position: static;
  }

  .final-cta-inner,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .final-actions {
    justify-content: flex-start;
  }
}

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

  .site-header {
    grid-template-columns: auto 1fr;
    min-height: 64px;
    padding: 10px 14px;
    gap: 12px;
  }

  .brand span:last-child {
    display: none;
  }

  .header-actions {
    justify-self: end;
    gap: 8px;
  }

  .header-actions .btn-primary {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .link-action {
    display: none;
  }

  .btn-small.btn-primary {
    padding-inline: 12px;
  }

  .main-nav {
    top: 64px;
  }

  .hero {
    padding: 74px 0 24px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-lead {
    font-size: 17px;
    max-width: 32ch;
  }

  .fine-print {
    max-width: 36ch;
  }

  .hero-actions,
  .document-actions,
  .final-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-process {
    padding: 18px;
    max-width: 100%;
  }

  .trust-strip span {
    width: 100%;
  }

  .section {
    padding: 58px 0;
  }

  .section-heading h2,
  .form-copy h2,
  .final-cta h2 {
    font-size: 31px;
  }

  .modal-dialog h2 {
    font-size: 28px;
  }

  .cards-4,
  .accordion-grid,
  .form-grid-2,
  .flow-example,
  .requisites-card,
  .radio-stack {
    grid-template-columns: 1fr;
  }

  .requisites-card div,
  .requisites-card div:nth-child(odd) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .requisites-card div:last-child {
    border-bottom: 0;
  }

  .steps {
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .step-card {
    min-width: 0;
  }

  .flow-example span:not(:last-child)::after {
    left: 50%;
    right: auto;
    top: auto;
    bottom: -10px;
    width: 2px;
    height: 10px;
  }

  .contact-link {
    font-size: 20px;
  }

  .site-footer {
    padding-bottom: 112px;
  }

  .mobile-bottom-bar {
    display: grid;
  }

  .mobile-only {
    display: block;
  }
}

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