@font-face {
  font-family: "Gilroy";
  src: url("./assets/fonts/gilroy-light.ttf") format("truetype");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("./assets/fonts/gilroy-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("./assets/fonts/gilroy-semibold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  --blue: #31a5db;
  --blue-deep: #0b6d9d;
  --graphite: #17191b;
  --graphite-2: #232629;
  --ink: #2b2b2b;
  --paper: #f5f7f8;
  --white: #ffffff;
  --red: #d71920;
  --line: rgba(255, 255, 255, 0.17);
  --line-dark: rgba(23, 25, 27, 0.16);
  --container: min(1380px, calc(100vw - 64px));
  --header-height: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  background: var(--graphite);
  color: var(--white);
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body.dialog-open {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

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

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 10px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-150%);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  padding: 0 max(32px, calc((100vw - 1380px) / 2));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, height 180ms ease;
}

.site-header.is-scrolled {
  height: 72px;
  background: rgba(23, 25, 27, 0.92);
  border-color: var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

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

.brand span {
  padding-left: 12px;
  border-left: 1px solid var(--line);
  color: var(--blue);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.main-nav {
  display: flex;
  gap: 34px;
}

.main-nav a,
.site-footer a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 150ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--blue);
}

.header-cta {
  justify-self: end;
}

.button {
  min-height: 52px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

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

.button:focus-visible,
.text-button:focus-visible,
.dialog-close:focus-visible,
input:focus-visible,
label:has(input:focus-visible) {
  outline: 3px solid rgba(49, 165, 219, 0.45);
  outline-offset: 3px;
}

.button--compact {
  min-height: 44px;
  padding-inline: 18px;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.46);
  font-size: 0.75rem;
}

.button--compact:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--ink);
}

.button--primary {
  background: var(--blue);
  color: #071116;
}

.button--primary:hover {
  background: #58bae7;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: calc(var(--header-height) + 42px) 0 36px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 64px 64px,
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 64px 64px,
    radial-gradient(circle at 75% 42%, rgba(49, 165, 219, 0.16), transparent 40%),
    var(--graphite);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: var(--line);
}

.hero__content {
  width: var(--container);
  min-height: calc(100svh - var(--header-height) - 92px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(540px, 1.06fr);
  align-items: center;
  gap: 40px;
}

.hero__copy {
  position: relative;
  z-index: 2;
  padding-block: 40px 72px;
}

.eyebrow,
.section-number,
.model-card__series,
.model-dialog__eyebrow {
  margin: 0 0 22px;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.eyebrow span {
  margin-inline: 8px;
  color: rgba(255, 255, 255, 0.36);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.95;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  margin-bottom: 30px;
  font-size: clamp(3.8rem, 6.7vw, 7.1rem);
}

.hero__lead {
  max-width: 640px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1.125rem, 1.5vw, 1.4rem);
  line-height: 1.45;
}

.task-line {
  margin-bottom: 34px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.task-line i {
  width: 4px;
  height: 4px;
  background: var(--blue);
  border-radius: 50%;
}

.hero__visual {
  position: relative;
  align-self: stretch;
  min-height: 650px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero__visual::before {
  content: "";
  position: absolute;
  inset: 14% 0 6% 13%;
  border: 1px solid rgba(49, 165, 219, 0.48);
  background: linear-gradient(135deg, rgba(49, 165, 219, 0.12), rgba(49, 165, 219, 0.01));
  clip-path: polygon(12% 0, 100% 0, 100% 88%, 87% 100%, 0 100%, 0 14%);
}

.hero__visual img {
  position: relative;
  z-index: 1;
  width: min(780px, 100%);
  max-height: calc(100svh - 110px);
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 34px 38px rgba(0, 0, 0, 0.34));
}

.hero__signal {
  position: absolute;
  z-index: 3;
  top: 14%;
  right: 0;
  display: grid;
  gap: 5px;
  text-align: right;
}

.hero__signal span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.hero__signal span:first-child {
  color: var(--white);
}

.hero__index {
  position: absolute;
  z-index: 0;
  right: -30px;
  bottom: 4%;
  color: rgba(255, 255, 255, 0.035);
  font-size: clamp(11rem, 24vw, 25rem);
  font-weight: 600;
  line-height: 0.72;
  letter-spacing: -0.08em;
}

.hero__scroll {
  position: absolute;
  z-index: 3;
  left: max(32px, calc((100vw - 1380px) / 2));
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.7rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hero__scroll span {
  color: var(--blue);
  font-size: 1rem;
}

.section {
  padding: 128px 0;
}

.tasks {
  background: var(--paper);
  color: var(--ink);
}

.section-head {
  width: var(--container);
  margin: 0 auto 56px;
}

.section-head h2,
.process h2,
.test-drive h2 {
  max-width: 990px;
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 5vw, 5.6rem);
}

.section-head > p:last-child,
.process__intro > p:last-child,
.test-drive__copy > p:last-of-type {
  max-width: 650px;
  margin-bottom: 0;
  color: #697075;
  font-size: 1.125rem;
}

.task-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.task-card {
  min-height: 310px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.task-card:hover {
  z-index: 1;
  background: var(--blue);
  color: #071116;
  transform: translateY(-6px);
}

.task-card__number {
  margin-bottom: auto;
  color: var(--blue-deep);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.task-card:hover .task-card__number {
  color: #071116;
}

.task-card h3 {
  margin-bottom: 16px;
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.08;
  text-transform: uppercase;
}

.task-card p {
  margin-bottom: 0;
  color: #737a7f;
  line-height: 1.55;
}

.task-card:hover p {
  color: rgba(7, 17, 22, 0.76);
}

.models {
  background: #eceff1;
  color: var(--ink);
}

.section-head--wide {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(300px, 0.6fr);
  gap: 80px;
  align-items: end;
}

.section-head--wide h2 {
  margin-bottom: 0;
}

.model-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.model-card {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(250px, 0.92fr) minmax(0, 1.08fr);
  min-height: 580px;
  background: var(--white);
  border: 1px solid rgba(23, 25, 27, 0.08);
}

.model-card__visual {
  position: relative;
  min-height: 100%;
  padding: 48px 22px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.model-card__visual::after {
  content: "";
  position: absolute;
  inset: auto 12% 8% auto;
  width: 90px;
  height: 90px;
  border-right: 1px solid rgba(255, 255, 255, 0.27);
  border-bottom: 1px solid rgba(255, 255, 255, 0.27);
}

.model-card__visual--dark {
  background: #1e2225;
}

.model-card__visual--light {
  background: #dfe3e6;
}

.model-card__visual--blue {
  background: #135c86;
}

.model-card__visual--photo {
  background: #f3f3f3;
}

.model-card__tag {
  position: absolute;
  z-index: 2;
  inset: 22px auto auto 22px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.model-card__visual--light .model-card__tag,
.model-card__visual--photo .model-card__tag {
  color: #5f666a;
}

.model-card__visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 450px;
  object-fit: contain;
}

.model-card__visual--dark img {
  max-height: 470px;
}

.model-card__visual--photo img {
  width: calc(100% + 44px);
  max-width: none;
  height: calc(100% + 72px);
  object-fit: cover;
}

.model-card__body {
  padding: 42px 38px 34px;
  display: flex;
  flex-direction: column;
}

.model-card__series {
  margin-bottom: 14px;
}

.model-card__body h3 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 2.7vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.98;
  text-transform: uppercase;
}

.model-card__body > p:not(.model-card__series) {
  color: #687075;
}

.model-card__body ul {
  margin: 12px 0 30px;
  padding: 0;
  list-style: none;
}

.model-card__body li {
  padding: 9px 0;
  border-bottom: 1px solid rgba(23, 25, 27, 0.12);
  font-size: 0.88rem;
}

.text-button {
  width: 100%;
  margin-top: auto;
  padding: 14px 0 10px;
  display: flex;
  justify-content: space-between;
  border: 0;
  border-bottom: 2px solid var(--ink);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 600;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.text-button span {
  color: var(--blue-deep);
  font-size: 1.15rem;
  transition: transform 160ms ease;
}

.text-button:hover span {
  transform: translate(3px, -3px);
}

.process {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: 80px;
  background:
    radial-gradient(circle at 14% 20%, rgba(49, 165, 219, 0.13), transparent 28%),
    var(--graphite);
}

.process__intro {
  padding-left: max(32px, calc((100vw - 1380px) / 2));
}

.process__intro > p:last-child {
  color: rgba(255, 255, 255, 0.58);
}

.process-list {
  margin: 0;
  padding: 0 max(32px, calc((100vw - 1380px) / 2)) 0 0;
  list-style: none;
  counter-reset: steps;
}

.process-list li {
  min-height: 108px;
  padding: 28px 0;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.process-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.process-list span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.process-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.15rem;
}

.test-drive {
  padding: 128px max(32px, calc((100vw - 1380px) / 2));
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(540px, 1.18fr);
  gap: 90px;
  background: var(--blue);
  color: #071116;
}

.test-drive .section-number {
  color: #075278;
}

.test-drive__copy {
  position: relative;
  padding-bottom: 170px;
}

.test-drive h2 {
  font-size: clamp(3rem, 5.3vw, 6.3rem);
}

.test-drive__copy > p:last-of-type {
  color: rgba(7, 17, 22, 0.68);
}

.test-drive__mark {
  position: absolute;
  left: 0;
  bottom: -28px;
  color: rgba(7, 17, 22, 0.08);
  font-size: clamp(8rem, 15vw, 15rem);
  font-weight: 600;
  line-height: 0.8;
  letter-spacing: -0.07em;
}

.lead-form {
  padding: 50px;
  background: var(--white);
  color: var(--ink);
}

.lead-form fieldset {
  margin: 0 0 32px;
  padding: 0;
  border: 0;
}

.lead-form legend,
.field label {
  display: block;
  margin-bottom: 13px;
  font-weight: 600;
}

.lead-form legend span {
  margin-right: 10px;
  color: var(--blue-deep);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
}

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

.radio-grid label {
  position: relative;
  min-height: 52px;
  display: flex;
  align-items: center;
  border: 1px solid #d8dde0;
  cursor: pointer;
}

.radio-grid input {
  position: absolute;
  opacity: 0;
}

.radio-grid span {
  width: 100%;
  padding: 14px 16px;
  color: #4c5357;
  font-size: 0.9rem;
}

.radio-grid label:has(input:checked) {
  border-color: var(--blue-deep);
  background: #eaf7fd;
}

.radio-grid label:has(input:checked) span {
  color: #06364c;
  font-weight: 600;
}

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

.field {
  margin-bottom: 24px;
}

.field input {
  width: 100%;
  min-height: 54px;
  padding: 0 15px;
  border: 1px solid #cbd2d6;
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
}

.field input::placeholder {
  color: #959da1;
}

.field input[aria-invalid="true"],
.radio-grid.is-invalid label {
  border-color: var(--red);
}

.field-error {
  min-height: 18px;
  margin: 6px 0 0;
  color: #a60f15;
  font-size: 0.78rem;
}

.button--submit {
  width: 100%;
  min-height: 58px;
  border: 0;
  background: var(--graphite);
  color: var(--white);
}

.button--submit:hover {
  background: var(--blue-deep);
}

.form-note {
  margin: 14px 0 0;
  color: #788084;
  font-size: 0.78rem;
}

.form-success {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid #d8dde0;
}

.form-success strong {
  display: block;
  margin-bottom: 5px;
  color: #075278;
  font-size: 1.2rem;
}

.form-success p {
  margin: 0;
  color: #5d6569;
}

.site-footer {
  width: var(--container);
  min-height: 150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 40px;
  background: var(--graphite);
}

.site-footer__brands {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-footer__brands img:first-child {
  width: 136px;
}

.site-footer__brands img:last-child {
  width: 118px;
}

.site-footer__brands span,
.site-footer p {
  color: rgba(255, 255, 255, 0.4);
}

.site-footer p {
  margin: 0;
}

.model-dialog {
  width: min(1120px, calc(100vw - 44px));
  max-width: none;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
}

.model-dialog::backdrop {
  background: rgba(4, 8, 10, 0.76);
  backdrop-filter: blur(8px);
}

.model-dialog__panel {
  position: relative;
  min-height: 660px;
  display: grid;
  grid-template-columns: minmax(340px, 0.88fr) minmax(0, 1.12fr);
  background: var(--white);
}

.dialog-close {
  position: absolute;
  z-index: 3;
  top: 20px;
  right: 20px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(23, 25, 27, 0.2);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
}

.model-dialog__visual {
  padding: 60px 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #edf0f1;
}

.model-dialog__visual img {
  max-height: 520px;
  object-fit: contain;
}

.model-dialog__content {
  padding: 80px 70px 60px;
}

.model-dialog__content h2 {
  margin-bottom: 28px;
  font-size: clamp(2.8rem, 5vw, 5rem);
}

.model-dialog__summary {
  color: #636b70;
  font-size: 1.08rem;
}

.model-dialog__content h3 {
  margin: 32px 0 14px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.model-dialog__content ul {
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}

.model-dialog__content li {
  padding: 11px 0 11px 20px;
  border-top: 1px solid rgba(23, 25, 27, 0.12);
  position: relative;
}

.model-dialog__content li::before {
  content: "";
  position: absolute;
  top: 19px;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--blue);
}

@media (max-width: 1180px) {
  :root {
    --container: min(100% - 48px, 1060px);
  }

  .site-header {
    padding-inline: 24px;
  }

  .hero__content {
    grid-template-columns: minmax(0, 0.95fr) minmax(440px, 1.05fr);
  }

  .main-nav {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .model-card {
    grid-template-columns: 1fr;
  }

  .model-card__visual {
    min-height: 410px;
  }

  .model-card__visual--photo img {
    height: calc(100% + 72px);
  }

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

@media (max-width: 860px) {
  :root {
    --container: calc(100% - 36px);
    --header-height: 72px;
  }

  .site-header {
    height: 72px;
    padding-inline: 18px;
    background: rgba(23, 25, 27, 0.9);
    border-color: var(--line);
    backdrop-filter: blur(14px);
  }

  .brand img {
    width: 105px;
  }

  .brand span {
    padding-left: 8px;
    font-size: 0.68rem;
  }

  .header-cta span {
    display: none;
  }

  .button--compact {
    min-height: 40px;
    padding-inline: 13px;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 20px);
  }

  .hero__content {
    min-height: 0;
    display: flex;
    flex-direction: column-reverse;
    gap: 0;
  }

  .hero__visual {
    width: 100%;
    min-height: 430px;
  }

  .hero__visual::before {
    inset: 4% 0 4% 4%;
  }

  .hero__visual img {
    width: min(560px, 100%);
    max-height: 490px;
  }

  .hero__signal {
    top: 6%;
    right: 4%;
  }

  .hero__copy {
    width: 100%;
    padding: 30px 0 78px;
  }

  h1 {
    font-size: clamp(3.35rem, 14vw, 5.8rem);
  }

  .hero__scroll {
    display: none;
  }

  .section {
    padding-block: 92px;
  }

  .section-head--wide,
  .process,
  .test-drive,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .section-head--wide {
    gap: 28px;
  }

  .section-head h2,
  .process h2,
  .test-drive h2 {
    font-size: clamp(2.75rem, 11vw, 5rem);
  }

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

  .process {
    gap: 48px;
  }

  .process__intro {
    padding-inline: 18px;
  }

  .process-list {
    padding-inline: 18px;
  }

  .test-drive {
    padding: 92px 18px;
    gap: 50px;
  }

  .test-drive__copy {
    padding-bottom: 80px;
  }

  .lead-form {
    padding: 34px 24px;
  }

  .site-footer {
    min-height: 0;
    padding-block: 50px;
    gap: 28px;
  }

  .model-dialog {
    width: 100vw;
    height: 100dvh;
    max-height: none;
    margin: 0;
  }

  .model-dialog__panel {
    min-height: 100%;
    grid-template-columns: 1fr;
  }

  .model-dialog__visual {
    min-height: 42vh;
    padding: 40px 24px 20px;
  }

  .model-dialog__visual img {
    max-height: 38vh;
  }

  .model-dialog__content {
    padding: 42px 24px 46px;
  }
}

@media (max-width: 580px) {
  h1 {
    max-width: 100%;
    font-size: clamp(2.4rem, 12vw, 3.6rem);
  }

  .section-head h2,
  .process h2,
  .test-drive h2 {
    overflow-wrap: anywhere;
    font-size: clamp(2.35rem, 10.5vw, 4rem);
  }

  .hero__visual {
    min-height: 350px;
  }

  .hero__lead {
    font-size: 1.05rem;
  }

  .task-grid,
  .radio-grid,
  .field-row {
    grid-template-columns: 1fr;
  }

  .task-card {
    min-height: 250px;
  }

  .model-card__body {
    padding: 34px 26px 28px;
  }

  .model-card__visual {
    min-height: 360px;
  }

  .process-list li {
    grid-template-columns: 46px 1fr;
    gap: 10px;
  }

  .site-footer__brands {
    flex-wrap: wrap;
  }
}

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

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