@charset "UTF-8";
/**
  Box model normalization
 */
*,
::before,
::after {
  box-sizing: border-box;
}

/**
  Remove left padding from list elements that have a class attribute
 */
:where(ul, ol):where([class]) {
  padding-left: 0;
}

/**
  Remove outer margins from body and other elements that have a class attribute
 */
body,
:where(blockquote, figure, fieldset):where([class]) {
  margin: 0;
}

/**
  Remove vertical outer margins from elements that have a class attribute
 */
:where(h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl):where([class]) {
  margin-block: 0;
}

:where(dd[class]) {
  margin-left: 0;
}

:where(fieldset[class]) {
  padding: 0;
  border: none;
}

/**
  Remove default list markers from unordered lists that have a class attribute
 */
:where(ul[class]) {
  list-style: none;
}

:where(address[class]) {
  font-style: normal;
}

/**
  Reset vertical outer margins on paragraphs,
  declare a local variable for bottom margin
  to avoid conflicts with more specific selectors
 */
p {
  --paragraphMarginBottom: 24px;
  margin-block: 0;
}

/**
  Bottom margin for paragraphs without a class attribute
  that are not the last among their sibling elements
 */
p:where(:not([class]):not(:last-child)) {
  margin-bottom: var(--paragraphMarginBottom);
}

/**
  Simplify working with images and video
 */
img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

/**
  Inherit font properties for form fields
 */
input,
textarea,
select,
button {
  font: inherit;
}

html {
  /**
    Useful in most cases
    (e.g. when you need to stick the footer to the bottom of the page)
   */
  height: 100%;
  /**
    Prevent horizontal layout shift
    when the scrollbar appears or disappears
   */
  scrollbar-gutter: stable;
  /**
    Smooth scrolling
   */
  scroll-behavior: smooth;
}

body {
  /**
    Useful in most cases
    (e.g. when you need to stick the footer to the bottom of the page)
   */
  min-height: 100%;
  /**
    Unified line height
   */
  line-height: 1.5;
}

/**
  Normalize link element height when inspecting it in DevTools
 */
a:where([class]) {
  display: inline-flex;
}

/**
  Pointer cursor on hover
 */
button,
label {
  cursor: pointer;
}

/**
  Remove gray tap highlight on mobile devices (iOS/Android)
 */
button {
  -webkit-tap-highlight-color: transparent;
}

/**
  Remove all animations and transitions for users
  who prefer reduced motion
 */
@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sora";
  src: url("../fonts/Sora-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --color-text-primary: #FFF;
  --color-text-secondary: #AAA;
  --color-text-tertiary: #555;
  --color-text-inverse: #111;
  --color-text-disabled: #777;
  --color-text-danger: #D63C3C;
  --color-text-accent: #00F391;
  --color-bg-page: #0A0A0A;
  --color-action-primary: #00F391;
  --color-action-disabled: #DDD;
  --color-surface-light: #FFF;
  --color-surface-gray: #F2F2F2;
  --color-border-disabled: #AAA;
  --color-border-subtle: #FFF;
  --color-border-light: #F2F2F2;
  --color-border-default: #DDD;
  --text-on-accent: #FFF;
  --text-warning: #F08C00;
  --text-info: #1A72D9;
  --bg-surface-raised: #1A1A1A;
  --bg-accent-pressed: #0A0A0A;
  --bg-warning: #6B3C00;
  --bg-danger: #5C0F0F;
  --bg-info: #062352;
  --bg-accent-disabled-icon: #AAA;
  --bg-accent-hover: #0A0A0A;
  --border-default-dark: #0A0A0A;
  --border-strong: #555;
  --border-accent: #00F391;
  --border-warning: #F08C00;
  --font-family-body: 'Inter', sans-serif;
  --font-family-display: 'Sora', sans-serif;
  --radius-full: 624.9375rem;
  --container-width: 80rem;
  --container-padding-x: 1rem;
  --transition-duration: 0.2s;
}

.container {
  max-width: calc(var(--container-width) + var(--container-padding-x) * 2);
  padding-inline: var(--container-padding-x);
  margin-inline: auto;
}

@media (width <= 47.99875rem) {
  .hidden-mobile {
    display: none !important;
  }
}

@media (width > 47.99875rem) {
  .visible-mobile {
    display: none !important;
  }
}

@media (width <= 63.99875rem) {
  .hidden-tablet {
    display: none !important;
  }
}

@media (width > 63.99875rem) {
  .visible-tablet {
    display: none !important;
  }
}

@media (width <= 30.06125rem) {
  .hidden-mobile-s {
    display: none !important;
  }
}

@media (width > 30.06125rem) {
  .visible-mobile-s {
    display: none !important;
  }
}

@media (width <= 22.56125rem) {
  .hidden-mobile-old {
    display: none !important;
  }
}

@media (width > 22.56125rem) {
  .visible-mobile-old {
    display: none !important;
  }
}

.subtext {
  font-size: clamp(1rem, 0.9362745098rem + 0.2614379085vw, 1.25rem);
  font-weight: 400;
  line-height: 140%;
}

.subtitle {
  font-family: var(--font-family-display);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 100%;
  color: var(--color-text-tertiary);
  margin-bottom: 1rem;
}

.flex-buttons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.background-black {
  background-color: var(--color-bg-page);
}
.background-black h1,
.background-black .h1,
.background-black h2,
.background-black .h2,
.background-black h3,
.background-black .h3,
.background-black h4,
.background-black .h4,
.background-black h5,
.background-black .h5,
.background-black h6,
.background-black .h6 {
  color: var(--color-text-primary);
}

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

.block-padding {
  padding-block: clamp(4rem, 3.1078431373rem + 3.660130719vw, 7.5rem);
}

.block-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}
@media (width <= 63.99875rem) {
  .block-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}
@media (width <= 47.99875rem) {
  .block-header {
    gap: 1rem;
  }
}
.block-header__heading {
  max-width: 48rem;
}
@media (width <= 63.99875rem) {
  .block-header__heading {
    max-width: none;
    width: 100%;
  }
}
.block-header__text {
  max-width: 29rem;
}
@media (width <= 63.99875rem) {
  .block-header__text {
    max-width: none;
    width: 100%;
  }
}

body {
  font-family: var(--font-family-body);
  font-weight: 400;
  font-size: 1rem;
  color: var(--color-text-inverse);
  background-color: var(--color-surface-light);
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  color: var(--color-text-inverse);
  font-weight: 700;
  font-family: var(--font-family-display);
}
h1 span,
.h1 span,
h2 span,
.h2 span,
h3 span,
.h3 span,
h4 span,
.h4 span,
h5 span,
.h5 span,
h6 span,
.h6 span {
  color: var(--color-text-accent);
}

h1,
.h1 {
  font-size: clamp(2rem, 1.4901960784rem + 2.091503268vw, 4rem);
  line-height: 112.5%;
}

h2,
.h2 {
  font-size: clamp(1.25rem, 0.8039215686rem + 1.8300653595vw, 3rem);
  line-height: 116.667%;
}

h3,
.h3 {
  font-size: 1.25rem;
  line-height: 120%;
}

a,
button,
label,
input,
textarea,
select,
svg * {
  transition-duration: var(--transition-duration);
}

a {
  color: inherit;
}
@media (any-hover: hover) {
  a:hover {
    color: var(--color-text-accent);
  }
}
@media (any-hover: none) {
  a:active {
    color: var(--color-text-accent);
  }
}
a[class] {
  text-decoration: none;
}

:focus-visible {
  outline: 0.125rem dashed var(--color-border-light);
  outline-offset: 0.25rem;
  transition-duration: 0s !important;
}

.btn {
  display: inline-flex;
  justify-content: center;
  padding: 1.0625rem 2rem 0.9375rem;
  font-size: 1.25rem;
  white-space: nowrap;
  border: none;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-family: var(--font-family-display);
  line-height: 120%;
  text-decoration: none;
}
@media (width <= 30.06125rem) {
  .btn {
    width: 100%;
  }
}
.btn-icon {
  display: inline-flex;
  align-items: center;
  column-gap: 0.5rem;
}
.btn-icon::after {
  --size: 1.5rem;
  width: var(--size);
  height: var(--size);
  content: "";
  flex-shrink: 0;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transition: var(--transition-duration);
}
.btn:disabled .btn-icon {
  opacity: 0.4;
}
.btn--primary {
  background-color: var(--color-action-primary);
  color: var(--color-text-inverse);
}
.btn--primary .btn-icon--arrow::after {
  background-image: url(../icons/icon-arrow-black.svg);
}
.btn--primary .btn-icon--calc::after {
  background-image: url(../icons/icon-calculator-black.svg);
}
@media (any-hover: hover) {
  .btn--primary:hover {
    color: var(--color-text-primary);
    background-color: var(--bg-accent-hover);
  }
  .btn--primary:hover .btn-icon--arrow::after {
    background-image: url(../icons/icon-arrow-white.svg);
  }
  .btn--primary:hover .btn-icon--calc::after {
    background-image: url(../icons/icon-arrow-white.svg);
  }
}
@media (any-hover: none) {
  .btn--primary:active {
    color: var(--color-text-primary);
    background-color: var(--bg-accent-hover);
  }
  .btn--primary:active .btn-icon--arrow::after {
    background-image: url(../icons/icon-arrow-white.svg);
  }
  .btn--primary:active .btn-icon--calc::after {
    background-image: url(../icons/icon-arrow-white.svg);
  }
}
.btn--primary:focus, .btn--primary:active {
  color: var(--color-text-primary);
  background-color: var(--bg-accent-hover);
}
.btn--primary:focus .btn-icon--arrow::after, .btn--primary:active .btn-icon--arrow::after {
  background-image: url(../icons/icon-arrow-white.svg);
}
.btn--primary:focus .btn-icon--calc::after, .btn--primary:active .btn-icon--calc::after {
  background-image: url(../icons/icon-arrow-white.svg);
}
.btn--primary:disabled {
  color: var(--color-text-primary);
  background-color: var(--color-text-disabled);
  cursor: not-allowed;
}
.btn--dark {
  background-color: var(--color-bg-page);
  color: var(--color-text-primary);
}
.btn--dark .btn-icon--phone::after {
  background-image: url(../icons/icon-phone-white.svg);
}
@media (any-hover: hover) {
  .btn--dark:hover {
    background-color: var(--color-action-primary);
    color: var(--color-text-inverse);
  }
  .btn--dark:hover .btn-icon--phone::after {
    background-image: url(../icons/icon-phone-black.svg);
  }
}
@media (any-hover: none) {
  .btn--dark:active {
    background-color: var(--color-action-primary);
    color: var(--color-text-inverse);
  }
  .btn--dark:active .btn-icon--phone::after {
    background-image: url(../icons/icon-phone-black.svg);
  }
}
.btn--dark:focus, .btn--dark:active {
  background-color: var(--color-bg-page);
  color: var(--color-text-primary);
}
.btn--dark:focus .btn-icon--phone::after, .btn--dark:active .btn-icon--phone::after {
  background-image: url(../icons/icon-phone-white.svg);
}
.btn--dark:disabled {
  color: var(--color-text-primary);
  background-color: var(--color-text-disabled);
  cursor: not-allowed;
}
.btn--light {
  background-color: var(--color-surface-light);
  color: var(--color-text-inverse);
}
.btn--light .btn-icon--phone::after {
  background-image: url(../icons/icon-phone-black.svg);
}
@media (any-hover: hover) {
  .btn--light:hover {
    background-color: var(--color-action-primary);
    color: var(--color-text-inverse);
  }
}
@media (any-hover: none) {
  .btn--light:active {
    background-color: var(--color-action-primary);
    color: var(--color-text-inverse);
  }
}
.btn--light:focus, .btn--light:active {
  background-color: var(--color-action-primary);
  color: var(--color-text-inverse);
}
.btn--light:disabled {
  color: var(--color-text-primary);
  background-color: var(--color-text-disabled);
  cursor: not-allowed;
}

.header {
  background-color: var(--color-bg-page);
  padding-block: 1rem;
  position: sticky;
  z-index: 100;
  top: 0;
}
.header .custom-logo-link img {
  max-width: clamp(8.75rem, 7.9215686275rem + 3.3986928105vw, 12rem);
}
@media (width > 63.99875rem) {
  .header__main {
    display: contents;
  }
}
@media (width <= 63.99875rem) {
  .header__main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
}
@media (width > 63.99875rem) {
  .header__overlay {
    display: contents;
  }
}
@media (width <= 63.99875rem) {
  .header__overlay {
    position: fixed;
    inset: 0;
    top: 5.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 1rem;
    background-color: var(--color-dark-10);
    transition-duration: var(--transition-duration);
    z-index: 99;
    background-color: var(--color-surface-light);
    color: var(--color-text-inverse);
    overflow-y: auto;
  }
  .header__overlay:not(.is-active) {
    opacity: 0;
    visibility: hidden;
    translate: 100%;
  }
}
.header__menu {
  color: var(--color-text-primary);
  display: flex;
  align-items: center;
}
@media (width <= 63.99875rem) {
  .header__menu {
    color: var(--color-text-inverse);
    flex-direction: column;
    align-items: flex-start;
  }
}
.header__menu li a {
  font-size: 1rem;
  text-decoration: none;
  font-weight: 700;
  font-family: var(--font-family-display);
  padding: 0.875rem 1rem;
}
@media (width <= 63.99875rem) {
  .header__menu li a {
    padding: 0.875rem 0;
    display: block;
  }
}
.header__menu .menu-item-has-children {
  position: relative;
}
.header__menu .menu-item-has-children > a {
  display: flex;
  column-gap: 0.5rem;
}
@media (width > 63.99875rem) {
  .header__menu .menu-item-has-children > a::after {
    width: 1.5rem;
    height: 1.5rem;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    content: "";
    display: block;
    background-image: url(../icons/icon-arrow-menu.svg);
    flex-shrink: 0;
    transition: var(--transition-duration);
  }
}
@media (width > 47.99875rem) and (any-hover: hover) {
  .header__menu .menu-item-has-children:hover > a {
    color: var(--color-text-accent);
  }
  .header__menu .menu-item-has-children:hover > a::after {
    background-image: url(../icons/icon-arrow-menu-accent.svg);
    transform: rotate(-180deg);
  }
  .header__menu .menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
@media (width > 47.99875rem) {
  .header__menu .menu-item-has-children:focus-within > a {
    color: var(--color-text-accent);
  }
  .header__menu .menu-item-has-children:focus-within > a::after {
    background-image: url(../icons/icon-arrow-menu-accent.svg);
    transform: rotate(-180deg);
  }
  .header__menu .menu-item-has-children:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
@media (width > 63.99875rem) {
  .header__menu .sub-menu {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: max-content;
    min-width: 100%;
    margin: 0;
    padding: 1rem;
    list-style: none;
    pointer-events: none;
    background-color: var(--color-surface-light);
    border: 0.0625rem solid var(--color-border-default);
    border-radius: 0.75rem;
    box-shadow: 0 0.25rem 0.9375rem 0 rgba(0, 0, 0, 0.08);
  }
  .header__menu .sub-menu a {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1rem;
    border-radius: 0.75rem;
    color: var(--color-text-inverse);
    background-color: var(--color-surface-light);
    white-space: nowrap;
  }
}
@media (width > 63.99875rem) and (any-hover: hover) {
  .header__menu .sub-menu a:hover {
    color: var(--color-text-accent);
    background-color: var(--color-bg-page);
  }
}
@media (width > 63.99875rem) and (any-hover: none) {
  .header__menu .sub-menu a:active {
    color: var(--color-text-accent);
    background-color: var(--color-bg-page);
  }
}
@media (width <= 63.99875rem) {
  .header__menu .sub-menu {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
  }
  .header__menu .sub-menu a {
    padding: 0.75rem 0;
  }
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 0.75rem;
}
.header__buttons .btn {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}
@media (width <= 90.06125rem) {
  .header__buttons .btn--light {
    display: none;
  }
}
@media (width <= 63.99875rem) {
  .header__buttons {
    padding-block: 2.5rem;
    width: 100%;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    border-top: 0.0625rem solid var(--color-border-light);
    border-bottom: 0.0625rem solid var(--color-border-light);
  }
}
.header__soc1al {
  display: flex;
  gap: 1rem;
}
.header__soc1al img {
  max-width: 2rem;
}

.hero {
  position: relative;
  width: 100%;
  height: calc(100dvh - 5.25rem);
  overflow: hidden;
  background-color: var(--color-bg-page);
  color: var(--color-text-primary);
  padding-block: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media (width <= 63.99875rem) {
  .hero {
    max-height: 52.5rem;
  }
}
.hero__video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.hero__title {
  color: var(--color-text-primary);
}
@media (width <= 22.56125rem) {
  .hero__title {
    font-size: 1.75rem;
  }
}
.hero__text {
  max-width: 60rem;
  margin-left: auto;
  margin-right: auto;
}
.hero__wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.hero-info__wrapper {
  padding: 2rem;
  color: var(--color-text-primary);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
@media (width <= 47.99875rem) {
  .hero-info__wrapper {
    padding: 2rem 1rem;
  }
}
@media (width <= 22.56125rem) {
  .hero-info__wrapper {
    gap: 0.75rem;
  }
}
.hero-info__item {
  width: calc(25% - 1.5rem * 3 / 4);
}
@media (width <= 47.99875rem) {
  .hero-info__item {
    width: calc(50% - 1.5rem / 2);
  }
}
@media (width <= 22.56125rem) {
  .hero-info__item {
    width: calc(50% - 0.75rem / 2);
  }
}
.hero-info__name {
  font-size: clamp(0.875rem, 0.8431372549rem + 0.1307189542vw, 1rem);
  color: var(--color-text-primary);
  font-weight: 400;
  line-height: 150%;
}
.hero-info__main {
  display: flex;
  align-items: center;
  column-gap: 0.5rem;
  margin-top: 0.5rem;
}
.hero-info__text {
  font-size: clamp(1.125rem, 0.9019607843rem + 0.9150326797vw, 2rem);
  color: var(--color-text-primary);
  font-family: var(--font-family-display);
  font-weight: 700;
  line-height: 125%;
}
.hero-info__img {
  flex-shrink: 0;
}

.tag {
  border-radius: var(--radius-full);
  border: 0.0625rem solid var(--color-border-subtle);
  background: rgba(255, 255, 255, 0.05);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 1rem;
  column-gap: 0.5rem;
}
.tag__title {
  font-size: clamp(0.875rem, 0.7794117647rem + 0.3921568627vw, 1.25rem);
  color: var(--color-text-primary);
  font-weight: 400;
  line-height: 140%;
}
.tag img {
  max-width: 1.5rem;
  flex-shrink: 0;
}

.burger-button {
  width: 3.5rem;
  height: 3.5rem;
  background-color: var(--color-action-primary);
  border-radius: var(--radius-full);
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.25rem 1rem;
  color: var(--border-default-dark);
  border: none;
}
.burger-button.is-active {
  background-color: transparent;
}
.burger-button.is-active .burger-button__line {
  background-color: var(--color-border-subtle);
}
.burger-button.is-active .burger-button__line:first-child {
  rotate: 45deg;
  transform-origin: 0;
  translate: 0.25em -0.1em;
}
.burger-button.is-active .burger-button__line:nth-child(2) {
  rotate: -45deg;
}
.burger-button.is-active .burger-button__line:last-child {
  width: 0;
}
.burger-button__line {
  width: 100%;
  height: 0.125rem;
  background-color: var(--border-default-dark);
  border-radius: 1rem;
  transition-duration: var(--transition-duration);
}
.burger-button__line:last-child {
  align-self: end;
}

.trust__title {
  text-align: center;
}
.trust__items {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
@media (width <= 30.06125rem) {
  .trust__items {
    margin-top: 1.5rem;
    flex-direction: column;
  }
  .trust__items .tag {
    width: 100%;
  }
}

.how {
  background-color: var(--color-surface-light);
  color: var(--color-text-inverse);
}
.how__wrapper {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: center;
}
@media (width <= 63.99875rem) {
  .how__wrapper {
    grid-template-columns: 1fr;
    align-items: start;
  }
}
.how__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 36rem;
}
@media (width <= 63.99875rem) {
  .how__content {
    max-width: none;
  }
}
.how__title {
  color: var(--color-text-inverse);
}
@media (width <= 63.99875rem) {
  .how__title {
    line-height: 125%;
  }
}
.how__text {
  color: var(--color-text-inverse);
}
.how__buttons {
  justify-content: flex-start;
}
.how__buttons--top {
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
@media (width <= 63.99875rem) {
  .how__buttons--top {
    display: none;
  }
}
.how__buttons--bottom {
  display: none;
}
@media (width <= 63.99875rem) {
  .how__buttons--bottom {
    display: flex;
  }
}
@media (width <= 30.06125rem) {
  .how__buttons--bottom {
    flex-direction: column;
    width: 100%;
  }
}
.how__steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (width <= 63.99875rem) {
  .how__steps {
    gap: 1.5rem;
  }
}
.how__step {
  display: flex;
  gap: 1.25rem;
  padding: 2.0625rem;
  background-color: var(--color-surface-light);
  border: 0.0625rem solid var(--color-border-light);
  border-radius: 1.875rem;
  box-shadow: 0 1.5rem 4.375rem rgba(17, 24, 39, 0.06);
}
@media (width <= 30.06125rem) {
  .how__step {
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5625rem;
  }
}
@media (width <= 30.06125rem) {
  .how__step {
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5625rem;
  }
}
@media (width <= 22.56125rem) {
  .how__step {
    flex-direction: column;
  }
}
.how__step-num {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3.5rem;
  height: 3.5rem;
  padding-top: 0.25rem;
  flex-shrink: 0;
  border-radius: var(--radius-full);
  background-color: var(--color-bg-page);
  color: var(--color-text-primary);
  font-family: var(--font-family-display);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 120%;
}
.how__step-icon {
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
}
.how__step-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.how__step-body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 0;
}
.how__step-text {
  font-size: 1rem;
  line-height: 150%;
  color: var(--color-text-inverse);
}
@media (width <= 30.06125rem) {
  .how__call-full {
    display: none;
  }
}
.how__call-short {
  display: none;
}
@media (width <= 30.06125rem) {
  .how__call-short {
    display: inline;
  }
}

.services__title {
  color: var(--color-text-inverse);
}
@media (width <= 63.99875rem) {
  .services__title {
    line-height: 125%;
  }
}
.services__items {
  margin-top: 3rem;
}
@media (width <= 47.99875rem) {
  .services__items {
    margin-top: 1.5rem;
  }
}
.services__items {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}
.services__items--cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (width <= 63.99875rem) {
  .services__items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (width <= 47.99875rem) {
  .services__items {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.services__card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem;
  background-color: var(--color-bg-page);
  border-radius: 1.875rem;
  box-shadow: 0 1.5rem 4.375rem rgba(17, 24, 39, 0.06);
  text-decoration: none;
}
@media (width <= 47.99875rem) {
  .services__card {
    padding: 1.5rem;
  }
}
@media (any-hover: hover) {
  .services__card:hover {
    color: var(--color-text-primary);
  }
  .services__card:hover .services__card-link {
    color: var(--color-text-accent);
  }
  .services__card:hover .services__card-icon::after {
    background-image: url(../icons/icon-arrow-external-accent.svg);
  }
}
@media (any-hover: none) {
  .services__card:active {
    color: var(--color-text-primary);
  }
  .services__card:active .services__card-link {
    color: var(--color-text-accent);
  }
  .services__card:active .services__card-icon::after {
    background-image: url(../icons/icon-arrow-external-accent.svg);
  }
}
.services__card-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (width <= 47.99875rem) {
  .services__card-body {
    gap: 0.75rem;
  }
}
.services__card-title {
  color: var(--color-text-primary);
}
.services__card-text {
  font-size: 1rem;
  line-height: 150%;
  color: var(--color-text-primary);
}
.services__card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  align-self: flex-start;
  padding-block: 0.5rem;
  font-family: var(--font-family-display);
  font-size: 1rem;
  font-weight: 700;
  line-height: 100%;
  color: var(--color-text-primary);
  transition: color var(--transition-duration);
}
.services__card-icon {
  display: inline-flex;
  flex-shrink: 0;
}
.services__card-icon::after {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../icons/icon-arrow-external-white.svg);
  transition: var(--transition-duration);
}

.why {
  background-color: var(--color-surface-light);
}
.why__inner {
  display: flex;
  flex-direction: column;
}
.why__title {
  color: var(--color-text-inverse);
}
@media (width <= 63.99875rem) {
  .why__title {
    line-height: 125%;
  }
}
.why__items {
  margin-top: 3rem;
}
@media (width <= 47.99875rem) {
  .why__items {
    margin-top: 1.5rem;
  }
}
.why__items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
@media (width <= 63.99875rem) {
  .why__items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (width <= 47.99875rem) {
  .why__items {
    grid-template-columns: 1fr;
  }
}
.why__card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  background-color: var(--color-surface-light);
  border-radius: 1.875rem;
  box-shadow: 0 1.5rem 4.375rem rgba(17, 24, 39, 0.06);
}
@media (width <= 63.99875rem) {
  .why__card {
    padding: 2.0625rem;
    border: 0.0625rem solid rgba(16, 18, 20, 0.08);
  }
}
@media (width <= 47.99875rem) {
  .why__card {
    gap: 0.75rem;
    padding: 1.5625rem;
  }
}
.why__card-icon {
  border-radius: var(--radius-full);
}
.why__card-icon img {
  flex-shrink: 0;
  max-width: 100%;
}
.why__card-title {
  color: var(--color-text-inverse);
}
.why__card-text {
  font-size: 1rem;
  line-height: 150%;
  color: var(--color-text-inverse);
}
.why__buttons {
  margin-top: 3rem;
}
@media (width <= 47.99875rem) {
  .why__buttons {
    margin-top: 1.5rem;
  }
}

.coverage__title {
  color: var(--color-text-inverse);
}
@media (width <= 63.99875rem) {
  .coverage__title {
    line-height: 125%;
  }
}
.coverage .block-header {
  margin-bottom: 3rem;
}
@media (width <= 63.99875rem) {
  .coverage .block-header {
    margin-bottom: 1.5rem;
  }
}
@media (width <= 47.99875rem) {
  .coverage .block-header {
    margin-bottom: 1.5rem;
  }
}
.coverage__interactive {
  display: grid;
  grid-template-columns: minmax(0, 45.625rem) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}
@media (width <= 90.06125rem) {
  .coverage__interactive {
    grid-template-columns: minmax(0, 55%) minmax(0, 1fr);
    gap: 0.75rem;
  }
}
@media (width <= 63.99875rem) {
  .coverage__interactive {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
@media (width <= 47.99875rem) {
  .coverage__interactive {
    gap: 1rem;
  }
}
.coverage__map-wrap {
  position: relative;
  background-color: var(--color-surface-light);
  border-radius: 2.25rem;
  box-shadow: 0 2.25rem 6.5625rem rgba(17, 24, 39, 0.06);
  overflow: hidden;
  line-height: 0;
}
@media (width <= 63.99875rem) {
  .coverage__map-wrap {
    height: 34.375rem;
    border-radius: 2.25rem;
  }
}
@media (width <= 63.99875rem) {
  .coverage__map-wrap {
    height: 25rem;
  }
}
.coverage__tooltip {
  padding: 0.375rem 1rem;
  font-family: var(--font-family-body);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5rem;
  color: var(--color-text-primary);
  text-transform: uppercase;
  white-space: nowrap;
  background-color: var(--color-bg-page);
  border: 0.0625rem solid var(--border-default-dark);
  border-radius: 0.25rem;
}
.coverage .shipping-states-map {
  display: block;
  width: 100%;
  height: auto;
  max-height: 100%;
}
@media (width <= 63.99875rem) {
  .coverage .shipping-states-map {
    position: absolute;
    left: 0;
    bottom: -6.25rem;
    max-height: 50rem;
  }
}
@media (width <= 63.99875rem) {
  .coverage .shipping-states-map {
    bottom: -1.875rem;
    max-height: 34.375rem;
  }
}
.coverage .state-item {
  cursor: pointer;
}
.coverage .state-item.is-disabled {
  cursor: default;
  pointer-events: none;
}
.coverage .state-item__area {
  transition: fill var(--transition-duration), stroke var(--transition-duration);
}
@media (any-hover: hover) {
  .coverage .state-item:hover:not(.is-disabled):not(.is-active) .state-item__area {
    fill: var(--color-action-primary);
  }
}
.coverage .state-item.is-active .state-item__area {
  fill: var(--color-action-primary);
  stroke: var(--color-text-inverse);
}
.coverage__board {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.5rem;
  background-color: var(--color-surface-light);
  border: 0.0625rem solid rgba(16, 18, 20, 0.08);
  border-radius: 2rem;
  box-shadow: 0 1.5rem 4.375rem rgba(17, 24, 39, 0.06);
}
@media (width <= 22.56125rem) {
  .coverage__board {
    padding: 1.5rem 1rem;
  }
}
.coverage__board-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
}
.coverage__board-title {
  margin: 0;
  font-family: var(--font-family-display);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5rem;
  color: var(--color-text-inverse);
}
.coverage__board-text {
  margin: 0.5rem 0 0;
  font-size: 1.25rem;
  line-height: 1.75rem;
  color: var(--color-text-inverse);
}
.coverage__board-toggle {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.coverage__board-toggle.is-collapsed img {
  transform: rotate(180deg);
}
.coverage__board-body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.coverage__search {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background-color: var(--color-surface-light);
  border: 0.0625rem solid var(--color-border-default);
  border-radius: var(--radius-full);
}
.coverage__search input {
  width: 100%;
  padding: 0;
  font-size: 1.25rem;
  line-height: 1.75rem;
  color: var(--color-text-inverse);
  background: transparent;
  border: 0;
  outline: none;
}
.coverage__search input::placeholder {
  color: var(--color-text-secondary);
}
.coverage__board-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  max-height: 31rem;
  padding-right: 0.25rem;
  overflow-y: auto;
}
.coverage__board-grid::-webkit-scrollbar {
  width: 0.5rem;
}
.coverage__board-grid::-webkit-scrollbar-track {
  background: var(--color-surface-gray);
  border-radius: var(--radius-full);
}
.coverage__board-grid::-webkit-scrollbar-thumb {
  background: var(--bg-surface-raised);
  border-radius: var(--radius-full);
}
.coverage__board-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 1rem 2rem;
  font-family: var(--font-family-display);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-text-inverse);
  background-color: var(--color-surface-light);
  border: 0.0625rem solid var(--color-border-default);
  border-radius: 1rem;
  cursor: pointer;
}
.coverage__board-item.is-active {
  background-color: var(--color-action-primary);
  border-color: var(--color-action-primary);
  box-shadow: 0.375rem 0.125rem 1.25rem rgba(16, 18, 20, 0.14);
}
.coverage__board-item[hidden] {
  display: none;
}
.coverage__state-panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  color: var(--color-text-primary);
  background-color: var(--color-bg-page);
  border: 0.0625rem solid rgba(255, 255, 255, 0.08);
  border-radius: 2rem;
  box-shadow: 0 1.625rem 2.5rem rgba(0, 0, 0, 0.28);
}
@media (width <= 90.06125rem) {
  .coverage__state-panel {
    padding: 1.5rem 1.25rem;
  }
}
@media (width <= 63.99875rem) {
  .coverage__state-panel {
    padding: 2rem;
  }
}
@media (width <= 47.99875rem) {
  .coverage__state-panel {
    padding: 1.5625rem;
  }
}
.coverage__state-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.coverage__state-label, .coverage__state-routing-label {
  margin: 0;
  font-family: var(--font-family-display);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-text-secondary);
}
.coverage__state-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  font-family: var(--font-family-display);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-text-inverse);
  background-color: var(--color-surface-light);
  border-radius: var(--radius-full);
  white-space: nowrap;
}
.coverage__state-name {
  margin: 0;
  font-family: var(--font-family-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 2.5rem;
  color: var(--color-text-primary);
}
.coverage__state-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding-top: 1rem;
}
@media (width <= 30.06125rem) {
  .coverage__state-stats {
    grid-template-columns: 1fr;
    padding-top: 0.5rem;
  }
}
.coverage__state-stat {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
  border-radius: 1.5rem;
}
@media (width <= 90.06125rem) {
  .coverage__state-stat {
    padding: 0.5rem 0;
  }
}
@media (width <= 63.99875rem) {
  .coverage__state-stat {
    padding: 1rem;
  }
}
@media (width <= 47.99875rem) {
  .coverage__state-stat {
    padding: 0.5rem 0;
  }
}
@media (width > 47.99875rem) {
  .coverage__state-stat--wide {
    grid-column: span 1;
  }
}
@media (width > 47.99875rem) {
  .coverage__state-stat--services {
    grid-column: 2;
    grid-row: 4;
  }
}
.coverage__state-stat-label {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5rem;
  color: var(--color-text-secondary);
}
.coverage__state-stat-value {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-family: var(--font-family-display);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5rem;
  color: var(--color-text-primary);
}
@media (width <= 90.06125rem) {
  .coverage__state-stat-value {
    gap: 0.375rem;
  }
}
.coverage__state-stat-value img {
  flex-shrink: 0;
}
.coverage__state-stat-value span {
  min-width: 0;
}
.coverage__state-services {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.coverage__service-item {
  position: relative;
  padding-left: 1.5rem;
  font-family: var(--font-family-display);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5rem;
  color: var(--color-text-primary);
}
.coverage__service-item::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-text-accent);
}
.coverage__state-routing {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.3125rem;
  background-color: rgba(255, 255, 255, 0.05);
  border: 0.0625rem solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
}
@media (width <= 22.56125rem) {
  .coverage__state-routing {
    padding: 0;
    background-color: transparent;
  }
}
.coverage__state-routing-note {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5rem;
  color: var(--color-text-primary);
}
.coverage__buttons {
  margin-top: 3rem;
}
@media (width <= 63.99875rem) {
  .coverage__buttons {
    margin-top: 1.5rem;
  }
}
@media (width <= 47.99875rem) {
  .coverage__buttons {
    margin-top: 1.5rem;
  }
}

.recent {
  background-color: var(--color-surface-light);
}
@media (width <= 63.99875rem) {
  .recent__title {
    line-height: 125%;
  }
}
.recent__items {
  margin-block: 3rem;
}
@media (width <= 30.06125rem) {
  .recent__items {
    margin-block: 1.5rem;
  }
}
.recent__items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}
@media (width <= 47.99875rem) {
  .recent__items {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.recent__card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  background-color: var(--color-surface-light);
  border: 0.0625rem solid rgba(16, 18, 20, 0.08);
  border-radius: 1.875rem;
  box-shadow: 0 1.5rem 4.375rem rgba(17, 24, 39, 0.06);
  text-decoration: none;
}
@media (width <= 63.99875rem) {
  .recent__card {
    padding: 1.5rem;
  }
}
@media (width <= 22.56125rem) {
  .recent__card {
    padding: 1rem;
    border-radius: 1rem;
  }
}
@media (any-hover: hover) {
  .recent__card:hover {
    box-shadow: 0 1.5rem 4.375rem rgba(17, 24, 39, 0.12);
  }
}
@media (any-hover: none) {
  .recent__card:active {
    box-shadow: 0 1.5rem 4.375rem rgba(17, 24, 39, 0.12);
  }
}
.recent__card-tag {
  font-family: var(--font-family-display);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 100%;
  color: var(--color-text-inverse);
}
.recent__card-media {
  aspect-ratio: 562/241;
  border-radius: 1rem;
  overflow: hidden;
}
@media (width <= 47.99875rem) {
  .recent__card-media {
    aspect-ratio: 562/241;
  }
}
.recent__card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.recent__card-route {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}
.recent__card-path, .recent__card-days {
  font-family: var(--font-family-display);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 120%;
  color: var(--color-text-inverse);
}
@media (width <= 22.56125rem) {
  .recent__card-path, .recent__card-days {
    font-size: 1rem;
  }
}
.recent__card-days {
  flex-shrink: 0;
}
.recent__card-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.recent__stat {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.recent__stat-label {
  font-size: 1rem;
  line-height: 150%;
  color: var(--color-text-secondary);
}
.recent__stat-value {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-family-display);
  font-size: 1rem;
  font-weight: 700;
  line-height: 100%;
  color: var(--color-text-inverse);
}
@media (width <= 22.56125rem) {
  .recent__stat-value {
    font-size: 0.875rem;
  }
}
.recent__stat-icon {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.recent__stat-icon--coupon {
  background-image: url(../icons/icon-coupon-accent.svg);
}
.recent__stat-icon--star {
  background-image: url(../icons/icon-star-accent.svg);
}
.recent__stat-icon--location {
  background-image: url(../icons/icon-location-accent.svg);
}
.recent__stat-icon--placeholder {
  width: 0;
  margin-left: -0.5rem;
}
.recent__buttons {
  justify-content: flex-start;
}
@media (width <= 30.06125rem) {
  .recent__buttons {
    flex-direction: column;
    width: 100%;
  }
}

.reviews {
  overflow: hidden;
}
.reviews__inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media (width <= 47.99875rem) {
  .reviews__inner {
    gap: 1.5rem;
  }
}
.reviews__heading {
  max-width: 48rem;
}
.reviews__title {
  color: var(--color-text-inverse);
}
@media (width <= 63.99875rem) {
  .reviews__title {
    line-height: 125%;
  }
}
.reviews__slider-wrap {
  position: relative;
}
@media (width <= 63.99875rem) {
  .reviews__slider-wrap {
    padding-inline: 0;
  }
}
.reviews__slider {
  overflow: visible;
}
.reviews__card {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  height: 100%;
  padding: 2.0625rem;
  background-color: var(--color-surface-light);
  border: 0.0625rem solid rgba(16, 18, 20, 0.08);
  border-radius: 1.875rem;
}
@media (width <= 63.99875rem) {
  .reviews__card {
    padding: 1.5625rem 1.0625rem;
  }
}
.reviews__stars {
  display: flex;
  gap: 0.25rem;
}
.reviews__star {
  width: 1rem;
  height: 1rem;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../icons/icon-star-rating.svg);
}
.reviews__text {
  padding-block: 1.25rem;
  font-size: 1rem;
  line-height: 150%;
  color: var(--color-text-inverse);
}
.reviews__author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
}
.reviews__author-avatar {
  position: relative;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
}
.reviews__author-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-full);
}
.reviews__author-google {
  position: absolute;
  right: -0.3125rem;
  bottom: -0.375rem;
  width: 1.5rem;
  height: 1.5rem;
  object-fit: contain;
}
.reviews__author-info {
  min-width: 0;
}
.reviews__author-name {
  font-family: var(--font-family-display);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 100%;
  color: var(--color-text-inverse);
}
.reviews__author-location {
  font-size: 0.875rem;
  line-height: 142.857%;
  color: var(--color-text-tertiary);
}
.reviews__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  padding: 0;
  border: 0.0625rem solid var(--color-border-light);
  border-radius: 1.875rem;
  background-color: var(--color-surface-light);
  cursor: pointer;
  transition: var(--transition-duration);
}
@media (any-hover: hover) {
  .reviews__nav:hover {
    border-color: var(--color-text-tertiary);
  }
}
@media (any-hover: none) {
  .reviews__nav:active {
    border-color: var(--color-text-tertiary);
  }
}
.reviews__nav:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.reviews__nav::after {
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../icons/icon-chevron-left.svg);
}
.reviews__nav--next::after {
  transform: scaleX(-1);
}
.reviews__controls {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}
@media (width > 63.99875rem) {
  .reviews__controls {
    display: none;
  }
}
.reviews__controls .reviews__nav {
  width: 3.5rem;
  height: 3.5rem;
}
.reviews__controls .reviews__nav::after {
  width: 1.0625rem;
  height: 1.0625rem;
}
.reviews__slider-wrap .reviews__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
}
@media (width <= 63.99875rem) {
  .reviews__slider-wrap .reviews__nav {
    display: none;
  }
}
.reviews__slider-wrap .reviews__nav--prev {
  left: -4.25rem;
}
@media (width <= 90.06125rem) {
  .reviews__slider-wrap .reviews__nav--prev {
    left: -1.25rem;
  }
}
.reviews__slider-wrap .reviews__nav--next {
  right: -4.25rem;
}
@media (width <= 90.06125rem) {
  .reviews__slider-wrap .reviews__nav--next {
    right: -1.25rem;
  }
}

.faq__inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: calc(64rem + var(--container-padding-x) * 2);
}
@media (width <= 47.99875rem) {
  .faq__inner {
    gap: 1.5rem;
  }
}
.faq__heading {
  max-width: 48rem;
}
.faq__title {
  color: var(--color-text-inverse);
}
@media (width <= 63.99875rem) {
  .faq__title {
    line-height: 125%;
  }
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}
.faq__item {
  border-radius: var(--radius-full);
  border: 0.0625rem solid rgba(16, 18, 20, 0.08);
  background: var(--color-surface-light);
  box-shadow: 0 1.5rem 4.375rem 0 rgba(17, 24, 39, 0.06);
}
.faq__item[open] {
  border-radius: 1.5rem;
}
@media (width <= 47.99875rem) {
  .faq__item {
    border-radius: 1.5rem;
  }
}
.faq__summary {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  cursor: pointer;
  list-style: none;
  padding: 1.5rem;
}
@media (width <= 47.99875rem) {
  .faq__summary {
    padding: 1rem 1.5rem;
  }
}
@media (width <= 22.56125rem) {
  .faq__summary {
    padding: 1rem;
  }
}
.faq__summary::-webkit-details-marker {
  display: none;
}
.faq__question {
  font-size: clamp(1rem, 0.9362745098rem + 0.2614379085vw, 1.25rem);
  flex: 1;
  min-width: 0;
  font-family: var(--font-family-display);
  font-weight: 700;
  line-height: 120%;
  color: var(--color-text-inverse);
  transition: color var(--transition-duration);
}
@media (width <= 47.99875rem) {
  .faq__question {
    line-height: normal;
  }
}
.faq__icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  background-image: url(../icons/icon-chevron-up.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transform: rotate(180deg);
  transition: transform var(--transition-duration), background-image var(--transition-duration);
}
.faq__item[open] .faq__icon {
  transform: rotate(0deg);
}
.faq__answer {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-bottom: 1.5rem;
  font-size: clamp(1rem, 0.9362745098rem + 0.2614379085vw, 1.25rem);
  line-height: 140%;
  color: var(--color-text-inverse);
}
@media (width <= 47.99875rem) {
  .faq__answer {
    line-height: 150%;
    padding-bottom: 1rem;
  }
}
@media (width <= 22.56125rem) {
  .faq__answer {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.cta {
  color: var(--color-text-primary);
}
.cta__inner {
  max-width: calc(64rem + var(--container-padding-x) * 2);
  text-align: center;
}
.cta__text {
  max-width: 42rem;
  width: 100%;
  margin: 1.5rem auto 2.5rem;
}
@media (width <= 47.99875rem) {
  .cta__text {
    margin: 1.25rem auto 2rem;
  }
}

.backblock {
  position: relative;
  color: var(--color-text-primary);
  background-color: var(--color-bg-page);
  overflow: hidden;
}
.backblock--has-bg {
  background-image: var(--backblock-bg-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.backblock__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.backblock__title {
  color: var(--color-text-primary);
}
.backblock__title span {
  color: var(--color-text-accent);
}
.backblock__buttons {
  justify-content: center;
  margin-top: 3rem;
}
@media (width <= 47.99875rem) {
  .backblock__buttons {
    margin-top: 1.5rem;
  }
}

.footer {
  color: var(--color-text-secondary);
}
.footer .custom-logo-link img {
  max-width: 8.6875rem;
}
@media (width <= 47.99875rem) {
  .footer .custom-logo-link img {
    margin-inline: auto;
  }
}
@media (width <= 47.99875rem) {
  .footer .custom-logo-link {
    display: block;
    text-align: center;
  }
}
.footer__inner {
  padding-block: 4rem;
  display: flex;
  justify-content: space-between;
  gap: 3rem;
}
@media (width <= 63.99875rem) {
  .footer__inner {
    gap: 2rem;
    flex-wrap: wrap;
    padding-block: 2rem;
  }
}
@media (width <= 47.99875rem) {
  .footer__inner {
    gap: 1.5rem;
  }
}
@media (width <= 22.56125rem) {
  .footer__inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}
.footer__main {
  max-width: 20.625rem;
}
@media (width <= 63.99875rem) {
  .footer__main {
    max-width: 100%;
    width: 100%;
  }
}
.footer__text {
  color: var(--color-text-secondary);
  font-size: 1rem;
  font-weight: 400;
  line-height: 150%;
  margin-top: 1.5rem;
}
@media (width <= 63.99875rem) {
  .footer__text {
    margin-top: 1rem;
  }
}
@media (width <= 47.99875rem) {
  .footer__item {
    width: calc(50% - 1.5rem);
  }
}
@media (width <= 22.56125rem) {
  .footer__item {
    width: 100%;
  }
}
@media (width <= 47.99875rem) {
  .footer__last {
    width: 100%;
  }
}
.footer__name {
  color: var(--color-text-tertiary);
  font-family: var(--font-family-display);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 1.25rem;
}
@media (width <= 47.99875rem) {
  .footer__name {
    margin-bottom: 1rem;
  }
}
.footer__menu {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer__menu a {
  text-decoration: none;
}
.footer__menu a:not(:hover) {
  color: var(--color-text-primary);
}
.footer__menu-text {
  color: var(--color-text-primary);
}
.footer__copyright {
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 0;
}
.footer__copyright-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (width <= 63.99875rem) {
  .footer__copyright-inner {
    flex-direction: column;
    gap: 0.5rem;
  }
}
.footer__copyright-text {
  color: var(--color-text-secondary);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 140%;
}
.footer__terms {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer__terms-item {
  color: var(--color-text-secondary);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 140%;
}
@media (width <= 22.56125rem) {
  .footer__terms {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.quote-popup {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  transition: opacity var(--transition-duration), visibility var(--transition-duration);
}
.quote-popup.is-active {
  visibility: visible;
  opacity: 1;
}
.quote-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.7);
}
.quote-popup__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 27.0625rem;
  padding: 2rem 1.5rem;
  border-radius: 0.75rem;
  background: var(--color-surface-light);
  box-shadow: 0 0.25rem 0.46875rem rgba(0, 0, 0, 0.08);
}
.quote-popup__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.quote-popup__title {
  margin: 0;
  font-family: var(--font-family-display);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5rem;
  color: var(--color-text-inverse);
}
.quote-popup__close {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  position: relative;
  padding: 0;
  border: none;
  border-radius: var(--radius-full);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition-duration) ease;
}
@media (any-hover: hover) {
  .quote-popup__close:hover {
    transform: rotate(90deg);
  }
}
@media (any-hover: none) {
  .quote-popup__close:active {
    transform: rotate(90deg);
  }
}
.quote-popup__close::before, .quote-popup__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.5rem;
  height: 0.125rem;
  background: var(--color-text-inverse);
  transform: translate(-50%, -50%) rotate(45deg);
}
.quote-popup__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.quote-service-select__label {
  margin: 0 0 0.5rem;
  font-family: var(--font-family-display);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-text-inverse);
}
.quote-service-select__field {
  position: relative;
  width: 100%;
  max-width: 24.0625rem;
}
.quote-service-select__field.is-open .quote-service-select__chevron {
  transform: rotate(180deg);
}
.quote-service-select__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  padding: 1.25rem 1rem;
  border: 0.0625rem solid var(--color-border-default);
  border-radius: 0.75rem;
  background: var(--color-surface-light);
  cursor: pointer;
  text-align: left;
}
.quote-service-select__value {
  font-family: var(--font-family-body);
  font-size: 1rem;
  line-height: 1.5rem;
  color: var(--color-text-disabled);
}
.quote-service-select__chevron {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  background: url("../icons/icon-chevron-up.svg") center/contain no-repeat;
  transform: rotate(180deg);
  transition: transform var(--transition-duration);
}
.quote-service-select__dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  right: 0;
  z-index: 2;
  margin: 0;
  padding: 1rem;
  list-style: none;
  border: 0.0625rem solid var(--color-border-default);
  border-radius: 0.75rem;
  background: var(--color-surface-light);
  box-shadow: 0 1.5rem 2.1875rem rgba(17, 24, 39, 0.06);
}
.quote-service-select__option {
  margin: 0;
}
.quote-service-select__option + .quote-service-select__option {
  margin-top: 0.5rem;
}
.quote-service-select__option-btn {
  display: block;
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 0.75rem;
  background: var(--color-surface-light);
  font-family: var(--font-family-display);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-text-inverse);
  text-align: left;
  cursor: pointer;
  transition: background-color var(--transition-duration), color var(--transition-duration);
}
.quote-service-select__option-btn:hover, .quote-service-select__option-btn.is-selected {
  background: var(--color-bg-page);
  color: var(--color-text-accent);
}

.form-loader {
  visibility: hidden;
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.52);
}
.form-loader.is-active {
  visibility: visible;
}
.form-loader__spinner {
  width: 3rem;
  height: 3rem;
  border: 0.25rem solid var(--color-border-default);
  border-top-color: var(--color-action-primary);
  border-radius: 50%;
  animation: quote-loader-spin 0.8s linear infinite;
}

@keyframes quote-loader-spin {
  to {
    transform: rotate(360deg);
  }
}
body.quote-popup-open {
  overflow: hidden;
}

/*# sourceMappingURL=main.css.map */
