:root {
  --color-black: #262626;
  --color-black-60: rgba(38, 38, 38, 0.6);
  --color-black-30: rgba(38, 38, 38, 0.3);
  --color-black-10: rgba(38, 38, 38, 0.1);
  --color-white: #ffffff;
  --color-white-60: rgba(255, 255, 255, 0.6);
  --color-white-40: rgba(255, 255, 255, 0.4);
  --color-grey-100: #f6f6f8;
  --color-grey-200: #ebebf5;
  --color-input: #e8e8ec;
  --color-purple: #9c45fd;
  --color-brand: #7F30E3;
  --radius-xs: 8px;
  --radius-s: 12px;
  --radius-m: 16px;
  --radius-l: 32px;
  --radius-xl: 60px;
  --font-main: 'ALS Hauss VF', 'Inter', sans-serif;
  --font-accent: 'Inter', 'ALS Hauss VF', sans-serif;
  --container: 1120px;
  --container-padding: 24px;
  --range-thumb-size: 16px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--color-black);
  color: var(--color-black);
  font-family: var(--font-main);
  font-style: normal;
  min-width: 320px;
}

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

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

button,
input {
  font: inherit;
}

.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

:focus-visible {
  outline: 2px solid var(--color-purple);
  outline-offset: 2px;
}

.container {
  margin: 0 auto;
  max-width: calc(var(--container) + var(--container-padding) * 2);
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  width: 100%;
}

.hero {
  background: linear-gradient(180deg, #3f2969 0%, #dad7ff 100%);
  color: var(--color-white);
  min-height: 784px;
  overflow: hidden;
  position: relative;
}

.hero__background {
  background: url('img/hero-bg-main.png') no-repeat;
  background-position: center;
  background-size: cover;
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.header,
.hero__content {
  position: relative;
  z-index: 2;
}

.header {
  align-items: center;
  display: flex;
  padding-top: 16px;
}

.logo {
  margin-right: 40px;
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
}

.header__nav {
  align-items: center;
  display: flex;
  gap: 12px;
}

.header__nav a {
  border-radius: 24px;
  margin-right: 14px;
  color: var(--color-white-40);
  font-size: 17px;
  font-weight: 600;
  line-height: 20px;
  padding: 16px 16px 10px 16px;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.header__nav a:hover,
.header__nav a:focus-visible {
  color: var(--color-white);
}

.menu-button {
  align-items: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: none;
  flex-direction: column;
  height: 52px;
  justify-content: center;
  padding: 0;
  position: relative;
  width: 52px;
}

.menu-button span {
  background: var(--color-white);
  border-radius: 8px;
  display: block;
  height: 2px;
  left: 16px;
  position: absolute;
  top: 50%;
  transform-origin: center;
  transition: transform 0.22s ease, opacity 0.22s ease;
  width: 20px;
}

.menu-button span:nth-child(1) {
  transform: translateY(-6px);
}

.menu-button span:nth-child(2) {
  transform: translateY(0);
}

.menu-button span:nth-child(3) {
  transform: translateY(6px);
}

.menu-button.is-open span:nth-child(1) {
  transform: translateY(0) rotate(45deg);
}

.menu-button.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-button.is-open span:nth-child(3) {
  transform: translateY(0) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  justify-content: center;
  min-height: 700px;
  padding-bottom: 84px;
}

.hero h1 {
  font-size: 56px;
  font-weight: 600;
  line-height: 60px;
  margin: 0;
  max-width: 936px;
}

.hero p {
  color: var(--color-white-60);
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  margin: 0;
  max-width: 600px;
}

.hero__actions {
  display: flex;
  gap: 16px;
}

.btn {
  align-items: center;
  border: 0;
  border-radius: var(--radius-m);
  cursor: pointer;
  display: inline-flex;
  font-size: 17px;
  font-weight: 600;
  justify-content: center;
  line-height: 20px;
  min-height: 48px;
  padding: 14px 16px;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

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

.btn--primary {
  background: var(--color-purple);
  box-shadow: inset 0 0 0 1px rgba(156, 69, 253, 0.48);
  color: var(--color-white);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: #8f34f6;
}

.btn--secondary {
  background: var(--color-grey-200);
  color: var(--color-black);
}

.btn--secondary:hover,
.btn--secondary:focus-visible {
  background: #dfdfeb;
}

.btn--full {
  width: 100%;
}

.surface {
  background: var(--color-grey-100);
}

.products {
  border-top-left-radius: var(--radius-xl);
  border-top-right-radius: var(--radius-xl);
  position: relative;
  z-index: 2;
  margin-top: -4px;
  padding: 100px 0 0;
}

.products h2,
.process h2,
.lead h2,
.faq h2,
.partners h2 {
  color: var(--color-black);
  font-family: var(--font-accent);
  font-size: 56px;
  font-weight: 600;
  line-height: 60px;
  margin: 0;
  text-align: center;
}

.products__grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
}

.product-card {
  background: var(--color-white);
  border-radius: var(--radius-l);
  min-height: 340px;
  overflow: hidden;
  padding: 32px;
  position: relative;
}

.product-card__text {
  max-width: 192px;
  position: relative;
  z-index: 2;
}

.product-card h3 {
  font-size: 22px;
  font-weight: 600;
  line-height: 30px;
  margin: 0;
}

.product-card p {
  color: var(--color-black-60);
  font-size: 17px;
  font-weight: 500;
  line-height: 24px;
  margin: 8px 0 0;
}

.product-card__image {
  bottom: 0px;
  position: absolute;
  right: 0px;
  z-index: 1;
}

.product-equipment {
  max-width: 150px;
  width: 100%;
}

.product-truck {
  max-width: 215px;
  width: 100%;
}

.product-commercial {
  max-width: 210px;
  width: 100%;
}

.product-passenger {
  max-width: 205px;
  width: 100%;
}

.process {
  padding: 100px 0 0;
}

.process .process__title {
  font-size: 40px;
  line-height: 48px;
  text-align: left;
}

.process .process__title .text-mobile {
  color: #7f30e3;
}

.process .process__accent {
  color: #7f30e3;
}

.steps {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  margin: 32px 0;
  padding: 0;
}

.step {
  min-height: 146px;
}

.step__tag {
  align-items: center;
  backdrop-filter: blur(50px);
  background: #7f30e3;
  border-radius: 20px;
  color: var(--color-white);
  display: inline-flex;
  font-size: 17px;
  font-weight: 600;
  height: 36px;
  justify-content: center;
  line-height: 20px;
  min-width: 78px;
  padding: 8px 16px;
}

.step h3 {
  font-size: 22px;
  font-weight: 600;
  line-height: 30px;
  margin: 24px 0 0;
}

.step p {
  color: var(--color-black-60);
  font-size: 17px;
  font-weight: 500;
  line-height: 24px;
  margin: 8px 0 0;
}

.calculator {
  background: var(--color-white);
  border-radius: var(--radius-l);
  display: grid;
  grid-template-columns: 735px 385px;
  margin-top: 32px;
  overflow: hidden;
}

.calculator__controls {
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 540px;
  padding: 32px;
}

.calculator__controls h3 {
  font-size: 40px;
  font-weight: 600;
  line-height: 48px;
  margin: 0;
}

.calculator-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 31px;
  width: 100%;
}

.calc-control {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.calc-control__row {
  align-items: center;
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.calc-control__row--double {
  align-items: center;
}

.calc-control__row > * {
  min-width: 0;
}

.calc-control label {
  color: var(--color-black);
  font-size: 17px;
  font-weight: 600;
  line-height: 20px;
}

.calc-input-double {
  display: grid;
  gap: 4px;
  grid-template-columns: 1fr 1fr;
  min-width: 0;
  width: 100%;
}

.calc-input-double > .calc-input-wrap {
  min-width: 0;
}

.calc-input-wrap {
  align-items: center;
  background: var(--color-grey-100);
  border: 2px solid transparent;
  border-radius: var(--radius-m);
  display: flex;
  gap: 4px;
  height: 60px;
  min-height: 60px;
  min-width: 0;
  padding: 0 8px 0 12px;
  width: 100%;
}

.calc-input-wrap:focus-within {
  border-color: var(--color-purple);
}

.calc-input-wrap input {
  background: transparent;
  border: 0;
  color: var(--color-black);
  flex: 1;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  min-width: 0;
  padding: 0;
  width: 100%;
}

.calc-input-wrap input::placeholder {
  color: var(--color-black-60);
}

.calc-input-wrap input:focus {
  outline: none;
}

.calc-input-unit {
  color: var(--color-black-60);
  flex: 0 0 auto;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
}

input[type='range'] {
  --range-progress: 0%;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  cursor: pointer;
  height: 26px;
  margin: 0;
  width: 100%;
}

input[type='range']::-webkit-slider-runnable-track {
  background: linear-gradient(
    to right,
    var(--color-brand) 0 var(--range-progress),
    #e0e0eb var(--range-progress) 100%
  );
  border-radius: 100px;
  height: 2px;
}

input[type='range']::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  background: var(--color-brand);
  border-radius: 50%;
  height: 24px;
  margin-top: -11px;
  width: 24px;
}

input[type='range']::-moz-range-track {
  background: #e0e0eb;
  border: 0;
  border-radius: 100px;
  height: 2px;
}

input[type='range']::-moz-range-progress {
  background: var(--color-brand);
  border-radius: 100px;
  height: 2px;
}

input[type='range']::-moz-range-thumb {
  background: var(--color-brand);
  border-radius: 50%;
  height: 24px;
  width: 24px;
}

.calc-control__hint {
  align-items: center;
  color: rgba(38, 38, 38, 0.7);
  display: flex;
  font-size: 13px;
  font-weight: 600;
  justify-content: space-between;
  line-height: 13px;
}

.calculator__summary {
  color: var(--color-white);
  display: flex;
  padding: 16px;
}

.calculator__summary-inner {
  background: var(--color-brand);
  border-radius: 16px;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  min-height: 508px;
  padding: 24px;
}

.summary-total__value {
  font-size: 50px;
  font-weight: 600;
  line-height: 56px;
  margin: 0;
}

.summary-total__note {
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
  font-weight: 500;
  line-height: 24px;
  margin: 16px 0 0;
}

.summary-meta {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.summary-list {
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.summary-list__row {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 30px;
}

.summary-list__row dt {
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  font-size: 17px;
  font-weight: 500;
  gap: 8px;
  line-height: 24px;
  position: relative;
}

.summary-list__row dd {
  color: var(--color-white);
  font-size: 22px;
  font-weight: 600;
  line-height: 30px;
  margin: 0;
  text-align: right;
}

.summary-list__row--with-icon img {
  filter: none;
  opacity: 1;
}

.summary-info-icon {
  align-items: center;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  display: inline-flex;
  font-family: var(--font-main);
  font-size: 11px;
  font-style: normal;
  font-weight: 600;
  height: 16px;
  justify-content: center;
  line-height: 1;
  padding: 0;
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
  width: 16px;
}

.summary-info-icon:hover,
.summary-info-icon:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: #ffffff;
  color: #ffffff;
}

.summary-tooltip {
  background: #18181b;
  border-radius: 12px;
  bottom: calc(100% + 10px);
  color: #f6f6f9;
  font-size: 13px;
  font-weight: 400;
  left: 0;
  line-height: 17px;
  max-width: 320px;
  opacity: 0;
  padding: 8px 12px;
  pointer-events: auto;
  position: absolute;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  visibility: hidden;
  width: 200px;
  z-index: 6;
}

.summary-tooltip::after {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 7px solid #18181b;
  content: '';
  left: 50%;
  position: absolute;
  top: 100%;
  transform: translateX(-50%);
}

.summary-list__row--with-icon dt:hover .summary-tooltip,
.summary-list__row--with-icon dt:focus-within .summary-tooltip {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.calculator__summary .btn {
  background: var(--color-grey-200);
  border-radius: 16px;
  box-shadow: none;
  color: var(--color-black);
  min-height: 48px;
}

.calculator__summary .btn:hover,
.calculator__summary .btn:focus-visible {
  background: #dfdfeb;
}

.summary-terms {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 600;
  line-height: 17px;
  margin: 0;
  padding: 0;
}

.partners {
  display: none;
  padding: 64px 0 0;
}

.partner-card {
  background: var(--color-white);
  border-radius: var(--radius-l);
  display: grid;
  grid-template-columns: 1fr 152px;
  margin: 32px auto 0;
  max-width: 456px;
  overflow: hidden;
}

.partner-card__info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
}

.partner-card__head {
  align-items: center;
  display: flex;
  gap: 16px;
}

.partner-card__head h3 {
  font-size: 40px;
  font-weight: 600;
  line-height: 48px;
  margin: 0;
}

.partner-card__head p {
  color: var(--color-black-60);
  font-size: 32px;
  font-weight: 500;
  line-height: 40px;
  margin: 0;
}

.partner-card__hint {
  align-items: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  height: 24px;
  justify-content: center;
  padding: 0;
  width: 24px;
}

.partner-card__media {
  min-height: 176px;
}

.partner-card__media img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.partners__actions {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
}

.lead {
  padding: 100px 0 0;
}

.lead-form {
  background: var(--color-white);
  border-radius: var(--radius-l);
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 32px auto 0;
  max-width: 1120px;
  padding: 64px;
  position: relative;
}

.lead-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 auto;
  max-width: 500px;
  width: 100%;
}

.lead-form__field label {
  color: var(--color-black-60);
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
}

.lead-form__field input {
  background: var(--color-grey-100);
  border: 2px solid transparent;
  border-radius: var(--radius-m);
  color: var(--color-black);
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  min-height: 60px;
  padding: 0 8px 0 12px;
}

.lead-form__field input:-webkit-autofill,
.lead-form__field input:-webkit-autofill:hover,
.lead-form__field input:-webkit-autofill:focus {
  /* Chrome/Edge autofill paints over our background/color styles. */
  -webkit-text-fill-color: var(--color-black);
  -webkit-box-shadow: 0 0 0px 1000px var(--color-grey-100) inset;
  box-shadow: 0 0 0px 1000px var(--color-grey-100) inset;
  /* Ensure the autofill background doesn't “flash” back to browser default. */
  transition: background-color 5000s ease-in-out 0s;
}

.lead-form__field input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 1000px var(--color-white) inset;
  box-shadow: 0 0 0px 1000px var(--color-white) inset;
}

.lead-form__field input::placeholder {
  color: var(--color-black-60);
}

.lead-form__field input:focus {
  background: var(--color-white);
  border-color: var(--color-purple);
  outline: none;
}

.lead-form__field input[aria-invalid='true'] {
  border-color: #dd3c61;
}

.field-error {
  color: #dd3c61;
  font-size: 14px;
  font-weight: 500;
  line-height: 17px;
  margin: 0;
  min-height: 0px;
}

.lead-form__honeypot {
  height: 1px;
  left: -9999px;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 1px;
}

.lead-form__submit {
  align-self: center;
  border-radius: var(--radius-s);
  margin-top: 8px;
  min-width: 170px;
}

.lead-form__submit:disabled {
  background: #cbc4d5;
  box-shadow: none;
  color: rgba(255, 255, 255, 0.8);
  cursor: not-allowed;
  transform: none;
}

.lead-form__consent {
  color: var(--color-black-60);
  font-size: 17px;
  font-weight: 500;
  line-height: 24px;
  margin: 8px auto 0;
  max-width: 500px;
  text-align: center;
}

.lead-form__consent a {
  color: var(--color-purple);
  text-decoration: underline;
}

.lead-form__status {
  font-size: 17px;
  font-weight: 500;
  line-height: 24px;
  margin: 0 auto;
  max-width: 500px;
  min-height: 24px;
  text-align: center;
}

.lead-form__status--success {
  color: #1b8b45;
}

.lead-form__status--error {
  color: #dd3c61;
}

.success-modal {
  align-items: center;
  inset: 0;
  display: flex;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transition: opacity 0.24s ease, visibility 0s linear 0.24s;
  visibility: hidden;
  z-index: 60;
}

.success-modal[hidden] {
  display: none;
}

.success-modal.is-open {
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.24s ease;
  visibility: visible;
}

.success-modal__backdrop {
  background: rgba(0, 0, 0, 0.7);
  inset: 0;
  position: absolute;
}

.success-modal__dialog {
  background: var(--color-white);
  border-radius: var(--radius-l);
  max-height: min(752px, calc(100dvh - 32px));
  max-width: 546px;
  overflow-y: auto;
  position: relative;
  transform: translateY(12px);
  transition: transform 0.24s ease;
  width: calc(100% - 32px);
  z-index: 1;
}

.success-modal.is-open .success-modal__dialog {
  transform: translateY(0);
}

.success-modal__close {
  align-items: center;
  background: rgba(74, 74, 89, 0.08);
  border: 0;
  border-radius: 48px;
  color: var(--color-black);
  cursor: pointer;
  display: inline-flex;
  height: 32px;
  justify-content: center;
  padding: 10px;
  position: absolute;
  right: 24px;
  top: 24px;
  width: 32px;
}

.success-modal__close:hover,
.success-modal__close:focus-visible {
  background: rgba(74, 74, 89, 0.14);
}

.success-modal__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
}

.success-modal__icon-box {
  align-items: center;
  background: #ddf1e4;
  border-radius: var(--radius-m);
  display: inline-flex;
  height: 68px;
  justify-content: center;
  width: 68px;
}

.success-modal__title {
  color: var(--color-black);
  font-size: 32px;
  font-weight: 680;
  line-height: 40px;
  margin: 0;
  max-width: 360px;
}

.success-modal__text {
  color: var(--color-black-60);
  font-size: 16px;
  font-weight: 440;
  line-height: 20px;
  margin: -14px 0 0;
  max-width: 360px;
}

.success-modal__ok {
  align-items: center;
  background: var(--color-purple);
  border: 0;
  border-radius: var(--radius-m);
  box-shadow: inset 0 0 0 1px rgba(156, 69, 253, 0.48);
  color: var(--color-white);
  cursor: pointer;
  display: inline-flex;
  font-size: 17px;
  font-weight: 680;
  height: 48px;
  justify-content: center;
  line-height: 20px;
  margin-top: -8px;
  min-width: 74px;
  padding: 0 16px;
}

.success-modal__ok:hover,
.success-modal__ok:focus-visible {
  background: #8f34f6;
}

body.no-scroll {
  overflow: hidden;
}

.faq {
  padding: 100px 0;
  border-bottom-left-radius: var(--radius-xl);
  border-bottom-right-radius: var(--radius-xl);
}

.faq-list {
  margin-top: 32px;
}

.faq-item {
  border-bottom: 1px solid var(--color-black-10);
}

.faq-trigger {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--color-black);
  cursor: pointer;
  display: flex;
  font-size: 17px;
  font-weight: 600;
  justify-content: space-between;
  line-height: 20px;
  padding: 24px;
  text-align: left;
  width: 100%;
}

.faq-trigger img {
  flex: 0 0 auto;
  transition: transform 0.2s ease;
}

.faq-trigger[aria-expanded='true'] img {
  transform: rotate(180deg);
}

.faq-panel {
  color: var(--color-black-60);
  font-size: 17px;
  font-weight: 500;
  line-height: 24px;
  max-width: 950px;
  padding: 0 24px 24px;
}

.faq-panel p {
  margin: 0;
}

.site-footer {
  background: var(--color-black);
  border-top-left-radius: var(--radius-xl);
  border-top-right-radius: var(--radius-xl);
  color: var(--color-white);
  padding: 80px 0;
}

.site-footer .container {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.footer-nav {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 48px;
}

.footer-nav a {
  color: var(--color-white);
  font-size: 17px;
  font-weight: 500;
  line-height: 24px;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  text-decoration: underline;
}

.footer-copy {
  color: var(--color-white-40);
  display: flex;
  flex-direction: column;
  font-size: 17px;
  font-weight: 500;
  gap: 12px;
  line-height: 24px;
}

.footer-copy p {
  margin: 0;
}

.footer-copy__link {
  color: var(--color-white-40);
  text-decoration: underline;
}

.mobile-only {
  display: none;
}

.text-mobile,
.text-mobile-inline {
  display: none;
}

@media (max-width: 1279px) {
  :root {
    --container: 944px;
    --container-padding: 40px;
  }

  .hero {
    min-height: 884px;
  }

  .hero__content {
    align-items: center;
    min-height: 800px;
    text-align: center;
  }

  .hero h1,
  .hero p {
    max-width: 936px;
  }

  .products,
  .process,
  .lead,
  .faq {
    padding-top: 64px;
  }

  .products h2,
  .process h2,
  .lead h2,
  .faq h2,
  .partners h2 {
    font-size: 40px;
    line-height: 48px;
  }

  .products__grid {
    gap: 32px;
    grid-template-columns: repeat(4, 212px);
    justify-content: start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .product-card {
    min-height: 281px;
    padding: 26.5px;
    width: 212px;
  }

  .product-card__text {
    max-width: 159px;
  }

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

  .step h3 {
    margin-top: 24px;
  }

  .calculator {
    grid-template-columns: minmax(0, 1fr) 385px;
  }

  .calculator__controls {
    padding: 32px;
  }

  .calculator-form {
    margin-top: 31px;
  }

  .calc-control__row {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .partners {
    display: block;
    padding-top: 64px;
  }

  .partner-card__head h3 {
    font-size: 40px;
    line-height: 48px;
  }

  .partner-card__head p {
    font-size: 32px;
    line-height: 40px;
  }

  .lead-form {
    padding: 64px 40px;
  }

  .product-equipment {
    max-width: 115px;
  }

  .product-truck {
    max-width: 150px;
  }

  .product-commercial {
    max-width: 180px;
  }

  .product-passenger {
    max-width: 175px;
  }
}

@media (max-width: 1024px) {
  :root {
    --container: 944px;
    --container-padding: 16px;
  }

  .header {
    padding-top: 32px;
  }

  .header__nav {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .mobile-menu {
    display: block;
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 100px;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
    visibility: hidden;
    z-index: 4;
  }

  .mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    transition: opacity 0.2s ease, transform 0.2s ease;
    visibility: visible;
  }

  .mobile-menu__panel {
    align-items: center;
    background: #18181b;
    border-radius: 26px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 26px;
  }

  .mobile-menu__panel a {
    align-items: center;
    color: rgba(255, 255, 255, 0.4);
    display: inline-flex;
    font-size: 17px;
    font-weight: 600;
    height: 52px;
    justify-content: center;
    line-height: 24px;
    text-align: center;
    width: 100%;
  }

  .mobile-menu__panel a:hover,
  .mobile-menu__panel a:focus-visible {
    color: rgba(255, 255, 255, 0.8);
  }

  .hero__content {
    align-items: center;
    text-align: left;
  }

  .hero h1 {
    font-size: 56px;
    line-height: 60px;
    max-width: 600px;
  }

  .hero p {
    max-width: 600px;
  }

  .hero__actions {
    gap: 16px;
  }

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

  .calculator {
    grid-template-columns: minmax(0, 1fr) 385px;
  }

  .calculator__controls {
    min-height: 540px;
  }

  .calculator__summary {
    min-height: 540px;
  }

  .lead-form {
    border-radius: var(--radius-l);
    padding: 44px 16px;
  }

  .product-equipment {
    max-width: 115px;
  }

  .product-truck {
    max-width: 150px;
  }

  .product-commercial {
    max-width: 180px;
  }

  .product-passenger {
    max-width: 175px;
  }
}

@media (max-width: 767px) {
  :root {
    --container-padding: 16px;
    --radius-xl: 48px;
  }

  .hero {
    min-height: 100vh;
  }

  .hero::after {
    bottom: 34px;
    height: 109px;
  }

  .hero__background {
    background-position: right -120px bottom -85px;
    background-size: 225%;
  }

  .header {
    padding-top: 5px;
    justify-content: space-between;
  }

  .mobile-menu {
    top: 72px;
  }

  .hero__content {
    gap: 48px;
    min-height: 800px;
    padding-top: 32px;
    text-align: center;
  }

  .hero h1 {
    font-size: 56px;
    line-height: 60px;
    max-width: 343px;
  }

  .hero p {
    font-size: 20px;
    line-height: 28px;
    max-width: 343px;
  }

  .hero__actions {
    align-items: center;
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .btn {
    min-width: 205px;
  }

  .products {
    border-top-left-radius: 48px;
    border-top-right-radius: 48px;
    padding-top: 40px;
  }

  .products h2,
  .process h2,
  .lead h2,
  .faq h2,
  .partners h2 {
    font-size: 32px;
    line-height: 40px;
  }

  .products h2 {
    margin: 0 auto;
    max-width: 343px;
  }

  .products__grid {
    gap: 16px;
    grid-template-columns: repeat(4, 212px);
    margin-top: 32px;
  }

  .process {
    padding-top: 64px;
  }

  .process h2 {
    max-width: 343px;
  }

  .process .process__title {
    font-size: 32px;
    line-height: 40px;
    max-width: 343px;
  }

  .steps {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, 309px);
    margin-top: 32px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .step {
    min-height: 146px;
  }

  .calculator {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }

  .calculator__controls {
    padding: 24px;
  }

  .calculator__controls h3 {
    font-size: 40px;
    line-height: 48px;
  }

  .calculator-form {
    gap: 32px;
    margin-top: 32px;
  }

  .calc-control__row {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .calc-control label {
    width: 100%;
  }

  .calc-input-wrap {
    width: 100%;
  }

  .calc-input-double {
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .calculator__summary {
    padding: 16px;
  }

  .calculator__summary-inner {
    min-height: 435px;
    padding: 24px;
  }

  .summary-total__value {
    font-size: 40px;
    line-height: 48px;
  }

  .summary-list__row dt {
    font-size: 18px;
    line-height: 20px;
  }

  .summary-list__row dd {
    font-size: 20px;
    line-height: 20px;
  }

  .summary-terms {
    line-height: 17px;
  }

  .partners {
    padding-top: 64px;
  }

  .partner-card {
    grid-template-columns: 2fr 1fr;
    margin-top: 32px;
  }

  .partner-card__info {
    padding: 20px;
  }

  .partner-card__head {
    gap: 8px;
  }

  .partner-card__head h3 {
    font-size: 28px;
    line-height: 28px;
  }

  .partner-card__head p {
    font-size: 17px;
    line-height: 17px;
  }

  .partners__actions {
    flex-direction: column;
    margin-top: 32px;
  }

  .partners__actions .btn {
    min-width: 205px;
  }

  .lead {
    padding-top: 64px;
  }

  .lead h2 {
    max-width: 343px;
  }

  .lead-form {
    border-radius: var(--radius-l);
    margin-top: 32px;
    max-width: 100%;
    padding: 44px 16px;
  }

  .lead-form__field,
  .lead-form__consent,
  .lead-form__status {
    max-width: none;
  }

  .lead-form__submit {
    margin-top: 0;
    width: 100%;
  }

  .lead-form__consent {
    font-size: 14px;
    line-height: 24px;
    text-align: center;
  }

  .success-modal__dialog {
    border-radius: 24px;
    max-height: calc(100dvh - 24px);
    width: calc(100% - 24px);
  }

  .success-modal__close {
    right: 16px;
    top: 16px;
  }

  .success-modal__content {
    gap: 20px;
    padding: 20px 16px;
  }

  .success-modal__title {
    font-size: 28px;
    line-height: 34px;
  }

  .success-modal__text {
    margin-top: -10px;
  }

  .faq {
    padding: 64px 0 0;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
  }

  .faq h2 {
    margin: 0 auto;
    max-width: 343px;
  }

  .faq-list {
    margin-top: 32px;
  }

  .faq-trigger {
    padding: 24px 0;
  }

  .faq-panel {
    padding: 0 0 24px;
  }

  .site-footer {
    border-top-left-radius: var(--radius-l);
    border-top-right-radius: var(--radius-l);
    margin-top: 32px;
    padding: 48px 0;
  }

  .site-footer .container {
    gap: 32px;
  }

  .logo--light {
    justify-content: center;
    width: 100%;
  }

  .footer-nav {
    align-items: center;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 32px;
  }

  .footer-nav--products {
    gap: 16px;
  }

  .footer-copy {
    text-align: center;
  }

  .mobile-only {
    display: inline;
  }

  .desktop-only {
    display: none;
  }

  .text-desktop-tablet {
    display: none;
  }

  .text-mobile {
    display: block;
  }

  .text-mobile-inline {
    display: inline;
  }
}
