*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  min-height: 100vh;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.4;
  color: #0d121c;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

ul,
ol {
  list-style: none;
}

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

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

button {
  background: none;
  border: none;
  cursor: pointer;
}

fieldset {
  border: none;
}

h1,
h2,
h3,
h4 {
  line-height: 1.2;
}

:focus-visible {
  outline: 2px solid #0048ff;
  outline-offset: 2px;
}

.container {
  max-width: 1272px;
  margin-inline: auto;
  padding-inline: 16px;
}

.section {
  padding-block: clamp(50px, 37.23px + 2.97vw, 80px);
}

.section-title {
  margin-bottom: clamp(24px, 17.19px + 1.58vw, 40px);
  font-size: clamp(20px, 14.47px + 1.29vw, 33px);
  font-weight: 700;
  text-align: center;
}
.section-title span {
  color: #0048ff;
}
.section-title--upper {
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 43px;
  padding: 10px 30px;
  font-size: clamp(16px, 14.72px + 0.3vw, 19px);
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  background-color: #0048ff;
  border-radius: 128px;
  transition: filter 0.3s ease, transform 0.3s ease;
}
.btn:hover {
  filter: brightness(1.2);
}
.btn:active {
  transform: scale(0.97);
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 10.89px + 1.19vw, 28px);
  margin-top: clamp(20px, 14.89px + 1.19vw, 32px);
}
.slider-controls__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  color: #0d121c;
  transition: color 0.3s ease, opacity 0.3s ease;
}
.slider-controls__btn svg {
  width: 12px;
  height: 20px;
}
.slider-controls__btn--next svg {
  transform: rotate(180deg);
}
.slider-controls__btn:hover {
  color: #0048ff;
}
.slider-controls__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 7.87px + 0.5vw, 15px);
}
.slider-controls__dots.swiper-pagination-horizontal {
  position: static;
  width: auto;
}
.slider-controls__dots .swiper-pagination-bullet {
  width: clamp(12px, 9.87px + 0.5vw, 17px);
  height: clamp(12px, 9.87px + 0.5vw, 17px);
  margin: 0 !important;
  background-color: #c2d3ff;
  border-radius: 50%;
  opacity: 1;
  transition: background-color 0.3s ease;
}
.slider-controls__dots .swiper-pagination-bullet-active {
  background-color: #0048ff;
}

@media (prefers-reduced-motion: no-preference) {
  .js [data-animate],
  .js [data-animate-group] > * {
    opacity: 0;
  }
  .js [data-animate].is-visible {
    animation: reveal-up 0.7s ease both;
  }
  .js [data-animate=left].is-visible {
    animation-name: reveal-left;
  }
  .js [data-animate=right].is-visible {
    animation-name: reveal-right;
  }
  .js [data-animate=zoom].is-visible {
    animation-name: reveal-zoom;
  }
  .js [data-animate=fade].is-visible {
    animation-name: reveal-fade;
  }
  .js [data-animate][data-animate-delay="1"].is-visible {
    animation-delay: 0.12s;
  }
  .js [data-animate][data-animate-delay="2"].is-visible {
    animation-delay: 0.24s;
  }
  .js [data-animate][data-animate-delay="3"].is-visible {
    animation-delay: 0.36s;
  }
  .js [data-animate][data-animate-delay="4"].is-visible {
    animation-delay: 0.48s;
  }
  .js [data-animate-group].is-visible > * {
    animation: reveal-up 0.6s ease both;
  }
  .js [data-animate-group].is-visible > *:nth-child(2) {
    animation-delay: 0.09s;
  }
  .js [data-animate-group].is-visible > *:nth-child(3) {
    animation-delay: 0.18s;
  }
  .js [data-animate-group].is-visible > *:nth-child(4) {
    animation-delay: 0.27s;
  }
  .js [data-animate-group].is-visible > *:nth-child(5) {
    animation-delay: 0.36s;
  }
  .js [data-animate-group].is-visible > *:nth-child(6) {
    animation-delay: 0.45s;
  }
  .js [data-animate-group].is-visible > *:nth-child(7) {
    animation-delay: 0.54s;
  }
  .js [data-animate-group].is-visible > *:nth-child(8) {
    animation-delay: 0.63s;
  }
  .js [data-animate-group].is-visible > *:nth-child(9) {
    animation-delay: 0.72s;
  }
  .js [data-animate-group].is-visible > *:nth-child(10) {
    animation-delay: 0.81s;
  }
}
@keyframes reveal-up {
  from {
    opacity: 0;
    translate: 0 32px;
  }
  to {
    opacity: 1;
    translate: 0;
  }
}
@keyframes reveal-left {
  from {
    opacity: 0;
    translate: -40px;
  }
  to {
    opacity: 1;
    translate: 0;
  }
}
@keyframes reveal-right {
  from {
    opacity: 0;
    translate: 40px;
  }
  to {
    opacity: 1;
    translate: 0;
  }
}
@keyframes reveal-zoom {
  from {
    opacity: 0;
    scale: 0.94;
  }
  to {
    opacity: 1;
    scale: 1;
  }
}
@keyframes reveal-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: #fff;
  box-shadow: 0 1px 0 rgba(13, 18, 28, 0.06);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding-block: 10px;
}
.header__logo {
  flex-shrink: 0;
}
.header__logo img {
  width: 85px;
}
.header__burger {
  display: none;
}
@media (max-width: 1024px) {
  .header__btn {
    display: none;
  }
  .header__burger {
    display: flex;
  }
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__link {
  font-weight: 600;
  transition: color 0.3s ease;
}
.nav__link:hover {
  color: #0048ff;
}
.nav__btn {
  display: none;
}
@media (max-width: 1024px) {
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 24px 16px 32px;
    background-color: #fff;
    box-shadow: 0 16px 24px rgba(13, 18, 28, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  }
  .header.is-menu-open .nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav__list {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .nav__btn {
    display: inline-flex;
  }
}

.burger {
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}
.burger__line, .burger__line::before, .burger__line::after {
  width: 24px;
  height: 2.5px;
  background-color: #0d121c;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.burger__line::before, .burger__line::after {
  content: "";
  position: absolute;
  left: 8px;
}
.burger__line::before {
  translate: 0 -8px;
}
.burger__line::after {
  translate: 0 8px;
}
.header.is-menu-open .burger .burger__line {
  transform: rotate(45deg);
}
.header.is-menu-open .burger .burger__line::before {
  translate: 0;
  transform: rotate(-90deg);
}
.header.is-menu-open .burger .burger__line::after {
  translate: 0;
  opacity: 0;
}

.hero {
  display: flex;
  align-items: flex-end;
  min-height: clamp(540px, 56vw, 806px);
  padding-block: 60px clamp(56px, 37.27px + 4.36vw, 100px);
  background: radial-gradient(76% 76% at 49% 24%, rgba(0, 0, 0, 0) 49%, rgba(194, 211, 255, 0.64) 87%, #fff 100%), url("../img/hero.jpg") center top/cover no-repeat, linear-gradient(#fff, #fff);
}
.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.hero__title {
  font-size: clamp(23px, 15.76px + 1.68vw, 40px);
  font-weight: 900;
  line-height: 1;
  text-align: center;
  color: #fff;
}
.hero__subtitle {
  margin-top: 10px;
  font-size: clamp(19px, 15.17px + 0.89vw, 28px);
  font-weight: 700;
  text-align: center;
  color: #fff;
}
.hero__subtitle-accent {
  color: #c2d3ff;
}
.hero__tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 590px;
  margin-top: clamp(16px, 12.59px + 0.79vw, 24px);
}
.hero__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 43px;
  padding: 10px 20px;
  font-size: clamp(16px, 14.72px + 0.3vw, 19px);
  font-weight: 500;
  text-align: center;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 100px;
  transition: background-color 0.3s ease;
}
.hero__tag:hover {
  background-color: rgba(255, 255, 255, 0.55);
}
.hero__tag--btn {
  padding: 0;
  background: none;
}

.stats {
  padding-block: 4px clamp(32px, 25.19px + 1.58vw, 48px);
  overflow: hidden;
}
.stats__slider {
  overflow: visible;
}
.stats__slide {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  width: min(680px, 100vw - 32px);
}
.stats--reverse, .stats__slide--reverse {
  justify-content: flex-start;
}
.stats__cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding-top: 22px;
}
.stats__photo {
  width: 100%;
  aspect-ratio: 1360/424;
  object-fit: cover;
  border-radius: 15px;
}

.stat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 0 1 160px;
  min-width: 140px;
  min-height: 99px;
  padding: 30px 10px 12px;
  text-align: center;
  background-color: #fff;
  border: 1px solid #c2d3ff;
  border-radius: 15px;
}
.stat-card__icon {
  position: absolute;
  top: -22px;
  left: 50%;
  translate: -50% 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #0c3fa6;
  background-color: #c2d3ff;
  border-radius: 50%;
}
.stat-card__icon svg {
  width: 23px;
  height: 17px;
}
.stat-card__label {
  font-size: clamp(14px, 13.15px + 0.2vw, 16px);
  text-transform: uppercase;
}
.stat-card__value {
  font-size: clamp(20px, 17.87px + 0.5vw, 25px);
  font-weight: 700;
  color: #0c3fa6;
}
@media (max-width: 576px) {
  .stat-card {
    flex-basis: calc(50% - 5px);
    min-width: 0;
  }
}

.advantages__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 12.59px + 0.79vw, 24px);
  max-width: 1024px;
  margin-inline: auto;
}
@media (max-width: 1024px) {
  .advantages__list {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

.advantage-card {
  display: flex;
  flex-direction: column;
  padding: clamp(20px, 16.59px + 0.79vw, 28px) clamp(16px, 12.59px + 0.79vw, 24px);
  background: linear-gradient(180deg, #fff 0%, #e3ebff 100%);
  border: 1px solid #e3eaf8;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(106, 118, 142, 0.24);
}
.advantage-card__title {
  margin-bottom: clamp(20px, 16.59px + 0.79vw, 28px);
  font-size: clamp(18px, 16.72px + 0.3vw, 21px);
  font-weight: 700;
  text-align: center;
}
.advantage-card__rows {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.advantage-card__row {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 70px;
  padding: 12px 18px;
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(106, 118, 142, 0.16);
}
.advantage-card__row--level {
  justify-content: space-between;
  padding-inline: clamp(18px, 13.74px + 0.99vw, 28px);
}
.advantage-card__num {
  flex-shrink: 0;
  min-width: 64px;
  font-size: clamp(22px, 19.45px + 0.59vw, 28px);
  font-weight: 800;
  color: #0048ff;
}
.advantage-card__num--lg {
  min-width: 0;
}
.advantage-card__price {
  font-size: clamp(22px, 19.45px + 0.59vw, 28px);
  font-weight: 800;
}
.advantage-card__icon {
  flex-shrink: 0;
  width: 64px;
  height: 28px;
  color: #0048ff;
}
.advantage-card__icon--dollar {
  padding-block: 1px;
}
.advantage-card__text {
  font-size: 16px;
}
.advantage-card__note {
  margin-top: clamp(18px, 15.45px + 0.59vw, 24px);
  font-size: 15px;
  font-weight: 700;
  text-align: center;
}

.benefits {
  padding-block: clamp(48px, 21.6px + 6.14vw, 110px);
  background: linear-gradient(180deg, #fff 2%, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0) 81%, #fff 100%), linear-gradient(#dee8ff, #dee8ff);
  overflow: hidden;
}
.benefits__scene {
  position: relative;
  max-width: 1018px;
  margin-inline: auto;
  aspect-ratio: 1018/520;
}
.benefits__scene::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 66%;
  height: 72%;
  translate: -50% -46%;
  background: radial-gradient(closest-side, rgba(77, 110, 245, 0.9), rgba(105, 147, 255, 0.45) 55%, rgba(105, 147, 255, 0) 100%);
  border-radius: 50%;
  filter: blur(40px);
}
.benefits__truck {
  position: absolute;
  top: 0;
  left: 21%;
  width: 58%;
}
.benefits__badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(12px, 8.59px + 0.79vw, 20px) clamp(14px, 11.45px + 0.59vw, 20px);
  font-size: clamp(14px, 11.87px + 0.5vw, 19px);
  font-weight: 800;
  text-align: center;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(106, 118, 142, 0.24);
  transition: scale 0.3s ease;
}
.benefits__badge:hover {
  scale: 1.05;
}
.benefits__badge--deposit {
  top: -10%;
  left: 0;
  rotate: -7deg;
}
.benefits__badge--home {
  top: 5%;
  left: 18%;
  rotate: 3deg;
}
.benefits__badge--take-truck {
  top: 8%;
  left: 70%;
  rotate: 4deg;
}
.benefits__badge--layover {
  top: 28%;
  left: 0;
  rotate: 6deg;
}
.benefits__badge--referral {
  top: 38%;
  right: 0.5%;
  rotate: -3deg;
}
.benefits__badge--weekly {
  top: 57%;
  left: 59%;
  rotate: -4deg;
}
.benefits__badge--deadhead {
  top: 64%;
  left: 1%;
  rotate: -4deg;
}
.benefits__badge--dot {
  top: 68%;
  left: 68%;
  rotate: 2deg;
}
.benefits__emoji {
  position: absolute;
  font-size: clamp(33px, 21.5px + 2.67vw, 60px);
  line-height: 1;
}
.benefits__emoji--truck {
  top: 1%;
  left: 56%;
  rotate: -17deg;
}
.benefits__emoji--gift {
  top: 6%;
  right: 0.5%;
  rotate: -36deg;
  font-size: clamp(23px, 15.76px + 1.68vw, 40px);
}
.benefits__emoji--money {
  top: 59%;
  left: 71.5%;
  rotate: -19deg;
  z-index: 2;
}
.benefits__emoji--house {
  top: 46%;
  left: 2%;
  rotate: 5deg;
}
@media (max-width: 860px) {
  .benefits__scene {
    aspect-ratio: auto;
    padding: 24px 12px 32px;
    text-align: center;
  }
  .benefits__truck {
    position: static;
    width: 100%;
    max-width: 440px;
    margin: 0 auto 12px;
  }
  .benefits__badge {
    position: static;
    margin: 5px;
    rotate: 0deg;
  }
  .benefits__badge br {
    display: none;
  }
  .benefits__badge:nth-of-type(odd) {
    rotate: -2deg;
  }
  .benefits__badge:nth-of-type(even) {
    rotate: 2deg;
  }
  .benefits__emoji {
    display: none;
  }
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 12.59px + 0.79vw, 24px) 20px;
}
@media (max-width: 1024px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .features__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }
}

.feature-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
  min-height: 201px;
  padding: 30px clamp(24px, 12.93px + 2.57vw, 50px);
  text-align: center;
  background: linear-gradient(180deg, #fff 0%, #dee8ff 100%);
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(106, 118, 142, 0.24);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(106, 118, 142, 0.3);
}
.feature-card__title {
  font-size: 19px;
  font-weight: 800;
}
.feature-card__text {
  color: #6a768e;
}

.trust {
  padding-block: clamp(56px, 35.99px + 4.65vw, 103px) clamp(48px, 38.21px + 2.28vw, 71px);
  background: url("../img/trust-bg.jpg") center/cover no-repeat;
}
.trust__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(40px, 12.33px + 6.44vw, 105px);
}
.trust__info {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 15.32px + 1.09vw, 31px);
  max-width: 433px;
  flex-shrink: 0;
}
.trust__title {
  font-size: clamp(23px, 18.74px + 0.99vw, 33px);
  font-weight: 700;
}
.trust__title span {
  color: #0048ff;
}
.trust__text {
  color: #6a768e;
}
.trust__stats {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.trust__stat {
  display: flex;
  flex-direction: column;
}
.trust__stat-value {
  font-size: clamp(23px, 20.87px + 0.5vw, 28px);
  font-weight: 700;
}
.trust__stat-label {
  font-size: 16px;
}
.trust__cards {
  position: relative;
  width: 100%;
  max-width: 734px;
  aspect-ratio: 734/700;
}
@media (max-width: 1024px) {
  .trust {
    background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url("../img/trust-bg.jpg") center top/cover no-repeat;
  }
  .trust__inner {
    flex-direction: column;
    align-items: center;
  }
  .trust__info {
    max-width: 560px;
  }
  .trust__stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px 40px;
  }
  .trust__cards {
    margin-inline: auto;
  }
}
@media (max-width: 576px) {
  .trust__cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    aspect-ratio: auto;
  }
}

.trust-card {
  position: absolute;
  width: 46.3%;
  padding: clamp(14px, 10.59px + 0.79vw, 22px) clamp(16px, 10.89px + 1.19vw, 28px);
  background: linear-gradient(100deg, #4d6ef5 0%, #c2d3ff 100%);
  border-radius: 6px 30px 6px 6px;
  box-shadow: 0 2px 10px rgba(106, 118, 142, 0.24);
}
.trust-card__title {
  margin-bottom: clamp(8px, 5.45px + 0.59vw, 14px);
  font-size: clamp(16px, 13.02px + 0.69vw, 23px);
  font-weight: 700;
  text-align: center;
}
.trust-card__text {
  font-size: clamp(13px, 11.72px + 0.3vw, 16px);
  color: #152340;
}
.trust-card--drivers {
  top: 0;
  left: 53.7%;
}
.trust-card--dispatch {
  top: 31%;
  left: 30.5%;
}
.trust-card--insurance {
  top: 60.5%;
  left: 53.7%;
}
.trust-card--support {
  top: 77%;
  left: 0;
}
@media (max-width: 576px) {
  .trust-card {
    position: static;
    width: 100%;
  }
}

.reviews {
  overflow: hidden;
}
.reviews .container {
  display: flex;
  flex-direction: column;
}
.reviews__slider {
  width: 100%;
  padding: 4px 4px 24px;
  margin: -4px -4px 0;
  overflow: hidden;
}
.reviews__btn {
  align-self: center;
  margin-top: clamp(24px, 20.59px + 0.79vw, 32px);
}

.review-card {
  display: flex;
  flex-direction: column;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(106, 118, 142, 0.35);
}
.review-card__photo {
  width: 100%;
  aspect-ratio: 391/381;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
}
.review-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  flex-grow: 1;
  padding: 21px 20px;
  border: 2px solid #c2d3ff;
  border-top: none;
  border-radius: 0 0 20px 20px;
}
.review-card__meta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.review-card__pill {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
}
.review-card__pill-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 27px;
  height: 26px;
  color: #0048ff;
  border: 1px solid #0c3fa6;
  border-radius: 100px;
}
.review-card__pill-icon svg {
  width: 13px;
  height: 16px;
}
.review-card__name {
  font-size: clamp(19px, 17.3px + 0.4vw, 23px);
  font-weight: 600;
}
.review-card__text {
  flex-grow: 1;
}
.review-card__more {
  font-weight: 500;
  transition: color 0.3s ease;
}
.review-card__more:hover {
  color: #0048ff;
}

.apply {
  padding-block: clamp(50px, 39.78px + 2.38vw, 74px);
  background: linear-gradient(0deg, #fff 0%, rgba(255, 255, 255, 0) 41%), linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0) 35%), radial-gradient(61% 85% at 47% 47%, #fff 0%, rgba(255, 255, 255, 0) 100%), radial-gradient(103% 172% at 96% 82%, #6993ff 0%, rgba(255, 255, 255, 0) 100%), radial-gradient(143% 239% at 0% 0%, #0048ff 0%, rgba(255, 255, 255, 0) 100%);
}
.apply__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.apply .section-title {
  margin-bottom: 10px;
}
.apply__subtitle {
  font-size: clamp(17px, 14.45px + 0.59vw, 23px);
  font-weight: 600;
  text-align: center;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 596px;
  margin-top: clamp(20px, 14.89px + 1.19vw, 32px);
}
.form__row {
  display: flex;
  gap: 20px;
}
.form__input {
  flex-grow: 1;
  width: 100%;
  min-height: 37px;
  padding: 9px 23px;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #6a768e;
  background: radial-gradient(78% 100% at 2% 0%, rgba(105, 147, 255, 0.55) 0%, rgba(255, 255, 255, 0) 100%), linear-gradient(#fff, #fff);
  border: 1px solid #c2d3ff;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(105, 147, 255, 0.5);
  transition: border-color 0.3s ease;
}
.form__input::placeholder {
  color: #6a768e;
}
.form__input:focus {
  outline: none;
  border-color: #0048ff;
}
.form__agree {
  margin-block: 8px;
}
.form__submit {
  align-self: center;
  margin-top: 8px;
}
@media (max-width: 576px) {
  .form__row {
    flex-direction: column;
    gap: 10px;
  }
}

.quiz {
  background: radial-gradient(78% 100% at 2% 0%, rgba(105, 147, 255, 0.55) 0%, rgba(255, 255, 255, 0) 100%), linear-gradient(#fff, #fff);
  border: 1px solid #c2d3ff;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(105, 147, 255, 0.5);
}
.quiz__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 12px 23px;
  text-align: left;
}
.quiz__question {
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #6a768e;
}
.quiz__chevron {
  flex-shrink: 0;
  width: 21px;
  height: 12px;
  color: #6a768e;
  transition: transform 0.3s ease;
}
.quiz.is-open .quiz__chevron {
  transform: rotate(180deg);
}
.quiz__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
.quiz__body > * {
  overflow: hidden;
}
.quiz.is-open .quiz__body {
  grid-template-rows: 1fr;
}
.quiz__options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(10px, 5.74px + 0.99vw, 20px);
  padding: 0 23px;
  transition: padding 0.35s ease;
}
.quiz.is-open .quiz__options {
  padding-block: 4px 20px;
}
.quiz__option {
  flex: 0 1 calc((100% - 40px) / 3);
}
.quiz__option input {
  position: absolute;
  appearance: none;
}
.quiz__option span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 37px;
  padding: 8px 10px;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  color: #6a768e;
  background-color: #fff;
  border: 1px solid #8693ad;
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.quiz__option span:hover {
  border-color: #0048ff;
  transform: scale(1.03);
}
.quiz__option input:checked + span {
  color: #fff;
  background-image: linear-gradient(96deg, #0048ff 89%, rgba(255, 255, 255, 0) 169%);
  border-color: transparent;
}
.quiz__option input:focus-visible + span {
  outline: 2px solid #0048ff;
  outline-offset: 2px;
}
.quiz__option--sm {
  flex-basis: clamp(110px, 30%, 165px);
}
@media (max-width: 576px) {
  .quiz__option, .quiz__option--sm {
    flex-basis: calc(50% - 5px);
  }
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.checkbox__input {
  position: absolute;
  appearance: none;
}
.checkbox__box {
  position: relative;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background-color: #fff;
  border: 1px solid #6a768e;
  border-radius: 4px;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.checkbox__box::after {
  content: "";
  position: absolute;
  inset: 4px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 23 17'%3E%3Cpath d='M8.486 16.974L0 8.486L2.828 5.658L8.486 11.314L19.798 0L22.628 2.83L8.486 16.974Z' fill='%23fff'/%3E%3C/svg%3E") center/contain no-repeat;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.checkbox__input:checked + .checkbox__box {
  background-color: #0048ff;
  border-color: #0048ff;
}
.checkbox__input:checked + .checkbox__box::after {
  opacity: 1;
}
.checkbox__input:focus-visible + .checkbox__box {
  outline: 2px solid #0048ff;
  outline-offset: 2px;
}
.checkbox__text {
  font-size: 13px;
  font-weight: 500;
}

.partners {
  padding-block: clamp(20px, 14.89px + 1.19vw, 32px);
  overflow: hidden;
}
.partners__track {
  display: flex;
  width: max-content;
  animation: partners-marquee 30s linear infinite;
}
.partners__track:hover {
  animation-play-state: paused;
}
.partners__line {
  display: flex;
  align-items: center;
  gap: clamp(40px, 18.71px + 4.95vw, 90px);
  padding-right: clamp(40px, 18.71px + 4.95vw, 90px);
}
.partners__logo {
  width: auto;
  height: clamp(56px, 37.27px + 4.36vw, 100px);
}

@keyframes partners-marquee {
  to {
    transform: translateX(-50%);
  }
}
.faq {
  padding-block: clamp(56px, 47.91px + 1.88vw, 75px) clamp(64px, 48.67px + 3.56vw, 100px);
}
.faq__list {
  display: flex;
  flex-direction: column;
  max-width: 640px;
  margin-inline: auto;
}
.faq__item {
  padding-block: clamp(12px, 9.45px + 0.59vw, 18px);
}
.faq__item + .faq__item {
  border-top: 2px solid #152340;
}
.faq__question {
  display: flex;
  align-items: center;
  gap: clamp(16px, 12.59px + 0.79vw, 24px);
  width: 100%;
  font-size: clamp(16px, 14.72px + 0.3vw, 19px);
  font-weight: 500;
  text-align: left;
  transition: color 0.3s ease;
}
.faq__question:hover {
  color: #0048ff;
}
.faq__chevron {
  flex-shrink: 0;
  width: 21px;
  height: 12px;
  transition: transform 0.3s ease;
}
.faq__item.is-open .faq__chevron {
  transform: rotate(180deg);
}
.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
.faq__answer > p {
  overflow: hidden;
  padding-left: clamp(37px, 33.59px + 0.79vw, 45px);
  font-family: "Roboto", sans-serif;
  font-size: clamp(15px, 14.57px + 0.1vw, 16px);
  font-weight: 300;
  line-height: 1.4;
  transition: padding-top 0.35s ease;
}
.faq__item.is-open .faq__answer {
  grid-template-rows: 1fr;
}
.faq__item.is-open .faq__answer > p {
  padding-top: 12px;
}

.footer {
  padding-block: clamp(40px, 34.04px + 1.39vw, 54px);
  background: linear-gradient(0deg, #6993ff 0%, #fff 100%);
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(32px, 3.05px + 6.73vw, 100px);
}
.footer__about {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 399px;
}
.footer__logo img {
  width: clamp(220px, 188.07px + 7.43vw, 295px);
}
.footer__text {
  color: #152340;
}
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex-shrink: 0;
}
.footer__nav-link {
  font-size: 19px;
  font-weight: 800;
  transition: color 0.3s ease;
}
.footer__nav-link:hover {
  color: #0048ff;
}
.footer__extra {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(32px, 10.71px + 4.95vw, 82px);
  flex-shrink: 0;
}
.footer__socials {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer__social {
  color: #152340;
  transition: color 0.3s ease;
}
.footer__social svg {
  width: 38px;
  height: 38px;
}
.footer__social:hover {
  color: #0048ff;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__link {
  font-size: clamp(16px, 14.72px + 0.3vw, 19px);
  font-weight: 800;
  color: #152340;
  transition: color 0.3s ease;
}
.footer__link:hover {
  color: #0048ff;
}
@media (max-width: 1024px) {
  .footer__inner {
    flex-direction: column;
  }
  .footer__about {
    text-align: center;
  }
  .footer__nav {
    align-items: center;
  }
  .footer__extra {
    align-items: center;
  }
  .footer__links {
    align-items: center;
    text-align: center;
  }
}

.page-hero {
  padding-block: clamp(36px, 24.08px + 2.77vw, 64px);
  background: linear-gradient(180deg, #dee8ff 0%, rgba(222, 232, 255, 0) 100%);
}
.page-hero__inner {
  max-width: 820px;
}
.page-hero__title {
  font-size: clamp(26px, 20.04px + 1.39vw, 40px);
  font-weight: 800;
}
.page-hero__updated {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #6a768e;
}

.policy {
  padding-top: clamp(8px, 4.59px + 0.79vw, 16px);
}
.policy__inner {
  max-width: 820px;
}
.policy h2 {
  margin: clamp(28px, 22.89px + 1.19vw, 40px) 0 clamp(12px, 10.3px + 0.4vw, 16px);
  font-size: clamp(18px, 15.87px + 0.5vw, 23px);
  font-weight: 700;
}
.policy p {
  margin-bottom: 12px;
  line-height: 1.65;
  color: #6a768e;
}
.policy p:last-child {
  margin-bottom: 0;
}
.policy ul {
  margin-bottom: 12px;
  padding-left: 8px;
}
.policy li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 22px;
  line-height: 1.55;
  color: #6a768e;
}
.policy li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: #0048ff;
  border-radius: 50%;
}
.policy a {
  font-weight: 600;
  color: #0048ff;
  transition: filter 0.3s ease;
}
.policy a:hover {
  filter: brightness(1.25);
}

.theme-mdl {
  font-family: "DM Sans", sans-serif;
  color: #f0eee6;
  background-color: #000;
  line-height: 1.4;
  text-align: left;
}
.theme-mdl .m-section {
  padding-block: clamp(40px, 35.74px + 0.99vw, 50px);
}
.theme-mdl .m-title {
  font-size: clamp(20px, 14.47px + 1.29vw, 33px);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}
.theme-mdl .m-title span {
  color: #ffbb00;
}
.theme-mdl .m-subtitle {
  font-size: clamp(27px, 24.45px + 0.59vw, 33px);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}
.theme-mdl .m-subtitle span {
  color: #ffbb00;
}
.theme-mdl .m-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 43px;
  padding: 10px 19px;
  font-size: clamp(18px, 15.87px + 0.5vw, 23px);
  font-weight: 700;
  line-height: 1;
  color: #000;
  background-color: #ffbb00;
  border-radius: 8px;
  transition: filter 0.3s ease, transform 0.3s ease;
}
.theme-mdl .m-btn:hover {
  filter: brightness(1.12);
}
.theme-mdl .m-btn:active {
  transform: scale(0.97);
}
.theme-mdl .m-btn--outline {
  color: #ffbb00;
  background-color: transparent;
  border: 1px solid #ffbb00;
}
.theme-mdl .m-btn--outline:hover {
  filter: none;
  background-color: rgba(255, 187, 0, 0.12);
}
.theme-mdl .m-card {
  background: radial-gradient(78% 100% at 2% 0%, rgba(255, 187, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%), linear-gradient(280deg, #181816 0%, #232320 100%);
  border-radius: 16px;
}
.theme-mdl .m-bee {
  position: absolute;
  z-index: 2;
  width: clamp(40px, 6vw, 90px);
  pointer-events: none;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.5));
  animation: m-bee-float 6s ease-in-out infinite;
}
.theme-mdl .m-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.theme-mdl .m-dots.swiper-pagination-horizontal {
  position: static;
  width: auto;
}
.theme-mdl .m-dots .swiper-pagination-bullet {
  width: 17px;
  height: 17px;
  margin: 0 !important;
  background-color: #3f3f3f;
  opacity: 1;
  transition: background-color 0.3s ease;
}
.theme-mdl .m-dots .swiper-pagination-bullet-active {
  background-color: #ffbb00;
}

@media (prefers-reduced-motion: reduce) {
  .theme-mdl .m-bee {
    animation: none;
  }
}
@keyframes m-bee-float {
  0%, 100% {
    translate: 0 0;
    rotate: var(--bee-rot, 0deg);
  }
  50% {
    translate: 0 -14px;
    rotate: calc(var(--bee-rot, 0deg) + 4deg);
  }
}
.theme-mdl .m-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: #000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.theme-mdl .m-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 16px;
}
.theme-mdl .m-header__logo {
  flex-shrink: 0;
}
.theme-mdl .m-header__logo img {
  width: 111px;
}
.theme-mdl .m-header__nav {
  display: flex;
  align-items: center;
  gap: 40px;
}
.theme-mdl .m-header__link {
  font-size: 16px;
  font-weight: 700;
  transition: color 0.3s ease;
}
.theme-mdl .m-header__link:hover {
  color: #ffbb00;
}
.theme-mdl .m-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.theme-mdl .m-header__burger {
  display: none;
}
@media (max-width: 1280px) {
  .theme-mdl .m-header__nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 22px;
    padding: 24px 16px 32px;
    background-color: #000;
    border-bottom: 1px solid #3f3f3f;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  }
  .theme-mdl .m-header.is-menu-open .m-header__nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .theme-mdl .m-header__actions {
    margin-left: auto;
  }
  .theme-mdl .m-header__actions .m-btn--outline {
    display: none;
  }
  .theme-mdl .m-header__burger {
    display: flex;
  }
}
@media (max-width: 576px) {
  .theme-mdl .m-header__actions .m-btn {
    padding-inline: 12px;
    font-size: 15px;
  }
}
.theme-mdl .m-burger {
  position: relative;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
}
.theme-mdl .m-burger__line, .theme-mdl .m-burger__line::before, .theme-mdl .m-burger__line::after {
  position: absolute;
  left: 8px;
  width: 24px;
  height: 2.5px;
  background-color: #f0eee6;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.theme-mdl .m-burger__line {
  top: 50%;
  translate: 0 -50%;
}
.theme-mdl .m-burger__line::before, .theme-mdl .m-burger__line::after {
  content: "";
}
.theme-mdl .m-burger__line::before {
  translate: 0 -8px;
}
.theme-mdl .m-burger__line::after {
  translate: 0 8px;
}
.theme-mdl .m-header.is-menu-open .m-burger__line {
  background-color: transparent;
}
.theme-mdl .m-header.is-menu-open .m-burger__line::before {
  translate: 0;
  transform: rotate(45deg);
  background-color: #f0eee6;
}
.theme-mdl .m-header.is-menu-open .m-burger__line::after {
  translate: 0;
  transform: rotate(-45deg);
  background-color: #f0eee6;
}

.theme-mdl .m-hero {
  background-color: #000;
  overflow: hidden;
}
.theme-mdl .m-hero__inner {
  display: flex;
  align-items: center;
  gap: clamp(40px, 29.78px + 2.38vw, 64px);
  padding-block: clamp(40px, 18.71px + 4.95vw, 90px);
}
.theme-mdl .m-hero__content {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 21.78px + 2.38vw, 56px);
}
.theme-mdl .m-hero__top {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.theme-mdl .m-hero__title {
  max-width: 595px;
  font-size: clamp(32px, 28.59px + 0.79vw, 40px);
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}
.theme-mdl .m-hero__title span {
  color: #ffbb00;
}
.theme-mdl .m-hero__text {
  max-width: 560px;
  font-size: 16px;
  color: #f0eee6;
}
.theme-mdl .m-hero__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.theme-mdl .m-hero__btn {
  min-width: 272px;
}
.theme-mdl .m-hero__btn--wide {
  min-width: 0;
  width: 100%;
  max-width: 381px;
}
.theme-mdl .m-hero__media {
  flex-shrink: 0;
  width: min(732px, 52%);
  aspect-ratio: 732/505;
  border-radius: 16px;
  overflow: hidden;
}
.theme-mdl .m-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scaleX(-1);
}
@media (max-width: 1280px) {
  .theme-mdl .m-hero__inner {
    flex-direction: column;
    text-align: center;
  }
  .theme-mdl .m-hero__content {
    align-items: center;
  }
  .theme-mdl .m-hero__title, .theme-mdl .m-hero__text {
    max-width: 640px;
  }
  .theme-mdl .m-hero__actions {
    align-items: center;
    width: 100%;
    max-width: 381px;
  }
  .theme-mdl .m-hero__btn {
    width: 100%;
  }
  .theme-mdl .m-hero__media {
    width: 100%;
    max-width: 732px;
  }
}

.theme-mdl .m-about {
  padding-block: clamp(32px, 24.34px + 1.78vw, 50px);
  background-color: #000;
}
.theme-mdl .m-about__inner {
  position: relative;
  min-height: min(481px, 38vw);
}
.theme-mdl .m-about__img {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  width: 62%;
  border-radius: 16px;
}
.theme-mdl .m-about__card {
  position: relative;
  z-index: 1;
  width: min(56%, 594px);
  margin-top: clamp(40px, 16px + 3.5vw, 90px);
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 20.5px + 2.67vw, 59px);
  padding: clamp(40px, 31.49px + 1.98vw, 60px) clamp(24px, 13.78px + 2.38vw, 48px);
  background-color: #000;
  border-radius: 16px 0 80px 16px;
  box-shadow: -19px 0 74.7px rgba(255, 187, 0, 0.2);
}
.theme-mdl .m-about__title {
  font-size: clamp(27px, 24.45px + 0.59vw, 33px);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}
.theme-mdl .m-about__title span {
  color: #ffbb00;
}
.theme-mdl .m-about__body {
  display: flex;
  flex-direction: column;
  gap: 23px;
}
.theme-mdl .m-about__lead {
  margin-bottom: 8px;
  font-size: clamp(18px, 17.57px + 0.1vw, 19px);
  font-style: italic;
  font-weight: 600;
}
.theme-mdl .m-about__text {
  font-size: 16px;
  color: #f0eee6;
}
@media (max-width: 1100px) {
  .theme-mdl .m-about__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 0;
  }
  .theme-mdl .m-about__img {
    position: static;
    width: 100%;
    max-width: 760px;
  }
  .theme-mdl .m-about__card {
    width: 100%;
    max-width: 760px;
    margin-top: -40px;
    border-radius: 0 0 60px 16px;
  }
}

.theme-mdl .m-why {
  position: relative;
  padding-block: clamp(40px, 35.74px + 0.99vw, 50px);
  background-color: #000;
  overflow: hidden;
}
.theme-mdl .m-why__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(32px, 24.34px + 1.78vw, 50px);
  max-width: 812px;
  margin-inline: auto;
}
.theme-mdl .m-why__head {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}
.theme-mdl .m-why__intro {
  font-size: 16px;
  color: #f0eee6;
}
.theme-mdl .m-why__intro b {
  color: #ffbb00;
}
.theme-mdl .m-why__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  width: 100%;
}
.theme-mdl .m-why .m-bee--1 {
  top: 6%;
  left: max(10px, 50% - 470px);
  --bee-rot: -8deg;
}
.theme-mdl .m-why .m-bee--2 {
  top: 3%;
  right: max(10px, 50% - 470px);
  --bee-rot: 12deg;
  animation-delay: -2s;
}
.theme-mdl .m-why .m-bee--3 {
  bottom: 14%;
  left: max(10px, 50% - 430px);
  width: clamp(32px, 4vw, 54px);
  --bee-rot: 20deg;
  animation-delay: -3.5s;
}
@media (max-width: 768px) {
  .theme-mdl .m-why__cards {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }
  .theme-mdl .m-why .m-bee {
    display: none;
  }
}
.theme-mdl .m-icon-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  border-radius: 16px;
  background: radial-gradient(78% 100% at 2% 0%, rgba(255, 187, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%), linear-gradient(280deg, #181816 0%, #232320 100%);
}
.theme-mdl .m-icon-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 78px;
  height: 78px;
  font-size: 40px;
  line-height: 1;
  background-color: #232320;
  border-radius: 50%;
  box-shadow: 0 4px 6.3px rgba(0, 0, 0, 0.25);
  transition: filter 0.3s ease;
}
.theme-mdl .m-icon-card:hover .m-icon-card__icon {
  filter: brightness(1.2);
}
.theme-mdl .m-icon-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.theme-mdl .m-icon-card__title {
  font-size: 16px;
  font-weight: 700;
}
.theme-mdl .m-icon-card__text {
  font-size: 13px;
  color: #f0eee6;
}
@media (max-width: 576px) {
  .theme-mdl .m-icon-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }
}

.theme-mdl .m-services {
  position: relative;
  padding-block: clamp(40px, 35.74px + 0.99vw, 50px);
  background-color: #000;
}
.theme-mdl .m-services::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 50% at 50% 45%, rgba(255, 187, 0, 0.16), rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
}
.theme-mdl .m-services__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(28px, 22.89px + 1.19vw, 40px);
}
.theme-mdl .m-services__title {
  max-width: 560px;
  text-align: center;
}
.theme-mdl .m-services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 7.23px + 2.97vw, 50px);
  width: 100%;
}
@media (max-width: 1100px) {
  .theme-mdl .m-services__grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 760px;
  }
}
@media (max-width: 576px) {
  .theme-mdl .m-services__grid {
    grid-template-columns: 1fr;
    max-width: 360px;
  }
}
.theme-mdl .m-service {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 14px;
  border-radius: 16px;
  background: radial-gradient(78% 100% at 2% 0%, rgba(255, 187, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%), linear-gradient(280deg, #181816 0%, #232320 100%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.theme-mdl .m-service:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.45);
}
.theme-mdl .m-service__img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 6.3px rgba(0, 0, 0, 0.25);
}
.theme-mdl .m-service__title {
  padding-inline: 6px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}
.theme-mdl .m-service__text {
  padding-inline: 6px;
  font-size: 13px;
  color: #f0eee6;
  text-align: center;
}

.theme-mdl .m-steps {
  background-color: #000;
}
.theme-mdl .m-steps__inner {
  display: flex;
  align-items: center;
  gap: clamp(40px, 35.74px + 0.99vw, 50px);
  padding-block: clamp(40px, 35.74px + 0.99vw, 50px);
}
.theme-mdl .m-steps__col {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 29.78px + 2.38vw, 64px);
}
.theme-mdl .m-steps__title {
  font-size: clamp(26px, 23.02px + 0.69vw, 33px);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}
.theme-mdl .m-steps__title span {
  color: #ffbb00;
}
.theme-mdl .m-steps__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.theme-mdl .m-steps__btn {
  align-self: flex-start;
}
.theme-mdl .m-steps__media {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.theme-mdl .m-steps__media-row {
  display: flex;
  gap: 8px;
}
.theme-mdl .m-steps__img {
  border-radius: 16px;
  object-fit: cover;
}
.theme-mdl .m-steps__img--1 {
  flex: 1 1 0;
  min-width: 0;
  aspect-ratio: 373/314;
}
.theme-mdl .m-steps__img--2 {
  width: 36%;
  flex-shrink: 0;
  aspect-ratio: 215/314;
}
.theme-mdl .m-steps__img--3 {
  width: 100%;
  aspect-ratio: 595/180;
}
@media (max-width: 1280px) {
  .theme-mdl .m-steps__inner {
    flex-direction: column;
  }
  .theme-mdl .m-steps__col, .theme-mdl .m-steps__media {
    width: 100%;
    max-width: 595px;
  }
  .theme-mdl .m-steps__title {
    text-align: center;
  }
  .theme-mdl .m-steps__btn {
    align-self: center;
  }
}
@media (max-width: 576px) {
  .theme-mdl .m-steps__media-row {
    flex-direction: column;
  }
  .theme-mdl .m-steps__img--2 {
    width: 100%;
    aspect-ratio: 2/1;
  }
}
.theme-mdl .m-step {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  border-radius: 12px;
  background: radial-gradient(54% 159% at 1% 0%, rgba(255, 187, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%), linear-gradient(280deg, #181816 0%, #232320 100%);
}
.theme-mdl .m-step__num {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  font-size: 40px;
  font-weight: 900;
  color: #ffbb00;
  background-color: #232320;
  border-radius: 50%;
  box-shadow: 0 4px 6.3px rgba(0, 0, 0, 0.25);
}
.theme-mdl .m-step__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.theme-mdl .m-step__title {
  font-size: 16px;
  font-weight: 700;
}
.theme-mdl .m-step__text {
  font-size: 16px;
}
@media (max-width: 576px) {
  .theme-mdl .m-step {
    flex-direction: column;
    text-align: center;
  }
}

.theme-mdl .m-map {
  position: relative;
  padding-block: clamp(32px, 24.34px + 1.78vw, 50px) clamp(40px, 31.49px + 1.98vw, 60px);
  background-color: #000;
  overflow: hidden;
}
.theme-mdl .m-map__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.theme-mdl .m-map__visual {
  position: relative;
  width: 100%;
  max-width: 700px;
  aspect-ratio: 636/417;
  background: url("../img/mdl-map.png") center/contain no-repeat;
}
.theme-mdl .m-map__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(26% 32% at 33% 52%, rgba(255, 150, 0, 0.45), rgba(255, 187, 0, 0) 70%);
  mix-blend-mode: screen;
  pointer-events: none;
}
.theme-mdl .m-map__head {
  max-width: 812px;
  margin-top: clamp(-40px, -5.94px + -7.92vw, -120px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.theme-mdl .m-map__text {
  font-size: 16px;
  color: #f0eee6;
}
.theme-mdl .m-map .m-bee--1 {
  top: 6%;
  left: max(10px, 50% - 400px);
  --bee-rot: 14deg;
}
.theme-mdl .m-map .m-bee--2 {
  top: 5%;
  right: max(10px, 50% - 400px);
  --bee-rot: -10deg;
  animation-delay: -2.5s;
}
.theme-mdl .m-map .m-bee--3 {
  bottom: 18%;
  right: max(10px, 50% - 340px);
  width: clamp(30px, 4vw, 50px);
  --bee-rot: 24deg;
  animation-delay: -1.5s;
}
@media (max-width: 768px) {
  .theme-mdl .m-map .m-bee {
    display: none;
  }
  .theme-mdl .m-map__head {
    margin-top: 8px;
  }
}

.theme-mdl .m-lead {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(20px, 16.59px + 0.79vw, 28px);
  padding-block: clamp(40px, 35.74px + 0.99vw, 50px);
  padding-inline: 16px;
  background-color: #000;
  overflow: hidden;
}
.theme-mdl .m-lead::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: min(1425px, 100%);
  height: 566px;
  background: radial-gradient(50% 60% at 50% 45%, rgba(255, 187, 0, 0.16), rgba(0, 0, 0, 0) 70%), radial-gradient(rgba(255, 187, 0, 0.16) 1.1px, transparent 1.2px) 0 0/15px 15px;
  -webkit-mask-image: linear-gradient(90deg, #000, transparent 34%, transparent 66%, #000);
  mask-image: linear-gradient(90deg, #000, transparent 34%, transparent 66%, #000);
  pointer-events: none;
}
.theme-mdl .m-lead__title {
  position: relative;
  z-index: 1;
  max-width: 596px;
  font-size: clamp(17px, 14.45px + 0.59vw, 23px);
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}
.theme-mdl .m-lead .m-bee--1 {
  top: 16%;
  left: max(10px, 50% - 380px);
  --bee-rot: 12deg;
}
.theme-mdl .m-lead .m-bee--2 {
  bottom: 12%;
  right: max(10px, 50% - 380px);
  --bee-rot: -14deg;
  animation-delay: -3s;
}
@media (max-width: 768px) {
  .theme-mdl .m-lead .m-bee {
    display: none;
  }
}
.theme-mdl .m-form {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 596px;
}
.theme-mdl .m-form__row {
  display: flex;
  gap: clamp(16px, 1.52px + 3.37vw, 50px);
}
.theme-mdl .m-form__input {
  flex: 1 1 0;
  min-width: 0;
  width: 100%;
  min-height: 46px;
  padding: 12px 20px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #f0eee6;
  background: linear-gradient(280deg, #181816 0%, #232320 100%);
  border: 1px solid #38362f;
  border-radius: 8px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.theme-mdl .m-form__input::placeholder {
  color: #8a877c;
}
.theme-mdl .m-form__input:hover {
  border-color: #55524a;
}
.theme-mdl .m-form__input:focus {
  outline: none;
  border-color: #ffbb00;
  box-shadow: 0 0 0 3px rgba(255, 187, 0, 0.15);
}
.theme-mdl .m-form__submit {
  align-self: center;
  min-width: 220px;
  margin-top: 8px;
}
@media (max-width: 576px) {
  .theme-mdl .m-form__row {
    flex-direction: column;
    gap: 10px;
  }
  .theme-mdl .m-form__submit {
    align-self: stretch;
  }
}
.theme-mdl .m-quiz {
  display: flex;
  flex-direction: column;
  padding: 8px 20px;
  border-radius: 8px;
  background: linear-gradient(280deg, #181816 0%, #232320 100%);
  border: 1px solid #38362f;
}
.theme-mdl .m-quiz__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding-block: 8px;
  text-align: left;
}
.theme-mdl .m-quiz__question {
  font-size: 13px;
  font-weight: 700;
  color: #8a877c;
}
.theme-mdl .m-quiz__chevron {
  flex-shrink: 0;
  width: 21px;
  height: 12px;
  color: #7d7d7d;
  transition: transform 0.3s ease;
}
.theme-mdl .m-quiz.is-open .m-quiz__chevron {
  transform: rotate(180deg);
}
.theme-mdl .m-quiz__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
.theme-mdl .m-quiz__body > div {
  overflow: hidden;
}
.theme-mdl .m-quiz.is-open .m-quiz__body {
  grid-template-rows: 1fr;
}
.theme-mdl .m-quiz__options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  padding-top: 0;
  transition: padding-top 0.35s ease;
}
.theme-mdl .m-quiz.is-open .m-quiz__options {
  padding-top: 16px;
}
.theme-mdl .m-quiz__option {
  flex: 1 1 calc((100% - 32px) / 3);
}
.theme-mdl .m-quiz__option input {
  position: absolute;
  appearance: none;
}
.theme-mdl .m-quiz__option span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 9px 12px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  color: #b9b6ab;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid #38362f;
  border-radius: 8px;
  cursor: pointer;
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.theme-mdl .m-quiz__option span:hover {
  color: #f0eee6;
  background-color: rgba(255, 187, 0, 0.06);
  border-color: #ffbb00;
  transform: scale(1.03);
}
.theme-mdl .m-quiz__option input:checked + span {
  color: #1a1500;
  font-weight: 700;
  background: #ffbb00;
  border-color: #ffbb00;
}
.theme-mdl .m-quiz__option input:focus-visible + span {
  outline: 2px solid #ffbb00;
  outline-offset: 2px;
}
.theme-mdl .m-quiz__option--sm {
  flex-basis: clamp(120px, 32%, 165px);
}
@media (max-width: 576px) {
  .theme-mdl .m-quiz__option, .theme-mdl .m-quiz__option--sm {
    flex-basis: 100%;
  }
}

.theme-mdl .m-reviews {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(28px, 18.63px + 2.18vw, 50px);
  padding-block: clamp(40px, 35.74px + 0.99vw, 50px);
  background-color: #000;
  overflow: hidden;
}
.theme-mdl .m-reviews__title {
  text-align: center;
}
.theme-mdl .m-reviews__slider {
  width: 100%;
  padding: 6px;
  margin: -6px;
  overflow: hidden;
}
.theme-mdl .m-reviews__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 10.89px + 1.19vw, 28px);
  margin-top: clamp(8px, 4.59px + 0.79vw, 16px);
}
.theme-mdl .m-reviews__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  color: #f0eee6;
  transition: color 0.3s ease;
}
.theme-mdl .m-reviews__arrow svg {
  width: 11px;
  height: 18px;
}
.theme-mdl .m-reviews__arrow--next svg {
  transform: rotate(180deg);
}
.theme-mdl .m-reviews__arrow:hover {
  color: #ffbb00;
}
.theme-mdl .m-reviews__dots {
  width: auto;
}
.theme-mdl .m-review {
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 24px;
  border-radius: 12px;
  overflow: hidden;
  background: radial-gradient(53% 93% at 0% 0%, rgba(255, 187, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%), linear-gradient(280deg, #181816 1%, #232320 100%);
}
.theme-mdl .m-review__head {
  display: flex;
  align-items: center;
  gap: 14px;
}
.theme-mdl .m-review__avatar {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: 50%;
}
.theme-mdl .m-review__who {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex-grow: 1;
  min-width: 0;
}
.theme-mdl .m-review__name {
  font-size: 19px;
  font-style: italic;
  font-weight: 600;
}
.theme-mdl .m-review__role {
  font-size: 13px;
  font-weight: 700;
}
.theme-mdl .m-review__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 4px;
}
.theme-mdl .m-review__date {
  font-size: 13px;
  font-weight: 700;
  color: #7d7d7d;
}
.theme-mdl .m-review__stars {
  display: inline-flex;
  gap: 2px;
  color: #ffa033;
}
.theme-mdl .m-review__stars svg {
  width: 16px;
  height: 16px;
}
.theme-mdl .m-review__photo {
  width: 100%;
  aspect-ratio: 327/150;
  object-fit: cover;
  border-radius: 10px;
}
.theme-mdl .m-review__text {
  font-size: 16px;
  line-height: 1.45;
}
.theme-mdl .m-review__more {
  margin-top: auto;
  font-size: 16px;
  color: #7d7d7d;
  transition: color 0.3s ease;
}
.theme-mdl .m-review__more:hover {
  color: #ffbb00;
}

.theme-mdl .m-cta {
  position: relative;
  padding-block: clamp(40px, 29.78px + 2.38vw, 64px);
  background-color: #000;
  overflow: hidden;
}
.theme-mdl .m-cta__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: clamp(48px, 30.12px + 4.16vw, 90px) clamp(24px, 8.67px + 3.56vw, 60px);
  text-align: center;
}
.theme-mdl .m-cta__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(55% 120% at 50% 50%, rgba(255, 187, 0, 0.18), rgba(0, 0, 0, 0) 70%), radial-gradient(rgba(255, 187, 0, 0.22) 1.1px, transparent 1.2px) 0 0/14px 14px;
  -webkit-mask-image: radial-gradient(72% 100% at 50% 50%, #000 45%, transparent 100%);
  mask-image: radial-gradient(72% 100% at 50% 50%, #000 45%, transparent 100%);
}
.theme-mdl .m-cta__title, .theme-mdl .m-cta__text, .theme-mdl .m-cta__actions {
  position: relative;
  z-index: 1;
}
.theme-mdl .m-cta__title {
  max-width: 760px;
  font-size: clamp(22px, 17.32px + 1.09vw, 33px);
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
}
.theme-mdl .m-cta__title span {
  color: #ffbb00;
}
.theme-mdl .m-cta__text {
  max-width: 560px;
  font-size: 16px;
  color: #f0eee6;
}
.theme-mdl .m-cta__text i {
  display: block;
  margin-top: 4px;
  font-weight: 700;
}
.theme-mdl .m-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 21px;
  margin-top: 8px;
}
.theme-mdl .m-cta .m-bee--1 {
  top: 16%;
  left: 8%;
  --bee-rot: -16deg;
}
.theme-mdl .m-cta .m-bee--2 {
  top: 12%;
  right: 9%;
  --bee-rot: 18deg;
  animation-delay: -2s;
}
.theme-mdl .m-cta .m-bee--3 {
  bottom: 16%;
  left: 16%;
  width: clamp(30px, 4vw, 52px);
  --bee-rot: 30deg;
  animation-delay: -3.2s;
}
.theme-mdl .m-cta .m-bee--4 {
  bottom: 14%;
  right: 14%;
  width: clamp(34px, 4.5vw, 58px);
  --bee-rot: -22deg;
  animation-delay: -1s;
}
@media (max-width: 768px) {
  .theme-mdl .m-cta .m-bee {
    display: none;
  }
}

.theme-mdl .m-drivers {
  background-color: #000;
}
.theme-mdl .m-drivers__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(34px, 27.19px + 1.58vw, 50px);
  padding-block: clamp(40px, 35.74px + 0.99vw, 50px);
}
.theme-mdl .m-drivers__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  max-width: 810px;
  text-align: center;
}
.theme-mdl .m-drivers__intro {
  max-width: 596px;
  font-size: 16px;
  color: #f0eee6;
}
.theme-mdl .m-drivers__row {
  display: flex;
  align-items: center;
  gap: 50px;
}
.theme-mdl .m-drivers__text {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.theme-mdl .m-drivers__text p {
  font-size: 16px;
  line-height: 1.5;
}
.theme-mdl .m-drivers__img {
  width: 50%;
  flex-shrink: 0;
  border-radius: 16px;
}
.theme-mdl .m-drivers__line {
  width: 100%;
  max-width: 376px;
  border-top: 3px solid #ffbb00;
}
.theme-mdl .m-drivers__values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  width: 100%;
}
@media (max-width: 1280px) {
  .theme-mdl .m-drivers__row {
    flex-direction: column;
  }
  .theme-mdl .m-drivers__img {
    width: 100%;
    max-width: 596px;
  }
}
@media (max-width: 576px) {
  .theme-mdl .m-drivers__values {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }
}

.theme-mdl .m-contact {
  padding-block: clamp(32px, 24.34px + 1.78vw, 50px);
  background-color: #000;
}
.theme-mdl .m-contact__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(24px, 20.59px + 0.79vw, 32px);
  padding: clamp(40px, 33.19px + 1.58vw, 56px) clamp(20px, 8.08px + 2.77vw, 48px);
  border-radius: 16px;
  overflow: hidden;
  background: radial-gradient(60% 80% at 50% 0%, rgba(255, 187, 0, 0.16), rgba(0, 0, 0, 0) 70%), radial-gradient(rgba(255, 187, 0, 0.1) 1.1px, transparent 1.2px) 0 0/16px 16px, #000;
  box-shadow: 0 4px 6.3px rgba(0, 0, 0, 0.25);
}
.theme-mdl .m-contact__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.theme-mdl .m-contact__title {
  font-size: clamp(24px, 20.17px + 0.89vw, 33px);
  font-weight: 800;
  text-transform: uppercase;
  color: #ffbb00;
}
.theme-mdl .m-contact__subtitle {
  max-width: 560px;
  font-size: 16px;
  color: #f0eee6;
}
.theme-mdl .m-contact__details-label {
  margin-top: 4px;
  font-size: 16px;
  font-weight: 600;
  color: #f0eee6;
}
.theme-mdl .m-contact__details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(16px, 12.59px + 0.79vw, 24px);
  width: 100%;
  max-width: 596px;
}
.theme-mdl .m-contact__detail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 1 1 150px;
  padding: 12px 18px;
  font-size: 16px;
  font-weight: 700;
  border: 1px solid #3f3f3f;
  border-radius: 8px;
  transition: border-color 0.3s ease, color 0.3s ease;
}
.theme-mdl .m-contact__detail svg {
  width: 20px;
  height: 20px;
  color: #ffbb00;
}
.theme-mdl .m-contact__detail:hover {
  color: #ffbb00;
  border-color: #ffbb00;
}
.theme-mdl .m-form__textarea {
  min-height: 96px;
  resize: vertical;
  line-height: 1.4;
}
.theme-mdl .m-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.theme-mdl .m-checkbox__input {
  position: absolute;
  appearance: none;
}
.theme-mdl .m-checkbox__box {
  position: relative;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #7d7d7d;
  border-radius: 4px;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.theme-mdl .m-checkbox__box::after {
  content: "";
  position: absolute;
  inset: 3px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 23 17'%3E%3Cpath d='M8.486 16.974L0 8.486L2.828 5.658L8.486 11.314L19.798 0L22.628 2.83L8.486 16.974Z' fill='%23000'/%3E%3C/svg%3E") center/contain no-repeat;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.theme-mdl .m-checkbox__input:checked + .m-checkbox__box {
  background-color: #ffbb00;
  border-color: #ffbb00;
}
.theme-mdl .m-checkbox__input:checked + .m-checkbox__box::after {
  opacity: 1;
}
.theme-mdl .m-checkbox__input:focus-visible + .m-checkbox__box {
  outline: 2px solid #ffbb00;
  outline-offset: 2px;
}
.theme-mdl .m-checkbox__text {
  font-size: 12px;
  color: #7d7d7d;
  text-align: left;
}

.theme-mdl .m-footer {
  background-color: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.theme-mdl .m-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(40px, 14.46px + 5.94vw, 100px);
  padding-block: clamp(48px, 38.21px + 2.28vw, 71px);
}
.theme-mdl .m-footer__about {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 380px;
  max-width: 100%;
  flex-shrink: 0;
}
.theme-mdl .m-footer__logo img {
  width: 100%;
  max-width: 320px;
}
.theme-mdl .m-footer__text {
  font-size: 11px;
  line-height: 1.6;
  color: #f0eee6;
  text-align: center;
}
.theme-mdl .m-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex-shrink: 0;
}
.theme-mdl .m-footer__nav-link {
  font-size: 23px;
  font-weight: 700;
  transition: color 0.3s ease;
}
.theme-mdl .m-footer__nav-link:hover {
  color: #ffbb00;
}
.theme-mdl .m-footer__extra {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(32px, 8.16px + 5.54vw, 88px);
  flex-shrink: 0;
}
.theme-mdl .m-footer__socials {
  display: flex;
  gap: 12px;
}
.theme-mdl .m-footer__social {
  color: #f0eee6;
  transition: color 0.3s ease;
}
.theme-mdl .m-footer__social svg {
  width: 38px;
  height: 38px;
}
.theme-mdl .m-footer__social:hover {
  color: #ffbb00;
}
.theme-mdl .m-footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.theme-mdl .m-footer__link {
  font-size: 16px;
  font-weight: 700;
  transition: color 0.3s ease;
}
.theme-mdl .m-footer__link:hover {
  color: #ffbb00;
}
@media (max-width: 1280px) {
  .theme-mdl .m-footer__inner {
    flex-direction: column;
    text-align: center;
  }
  .theme-mdl .m-footer__nav, .theme-mdl .m-footer__extra {
    align-items: center;
  }
  .theme-mdl .m-footer__links {
    align-items: center;
  }
}

/* ============================================================
   B2B landing (theme-mdl + .b- prefix)
   ============================================================ */
.theme-b2b {
  font-family: "Inter", sans-serif;
  scroll-padding-top: 90px;
}
.theme-b2b .m-btn,
.theme-b2b .m-btn--outline {
  border-radius: 100px;
}
.theme-b2b .m-header__logo img {
  width: clamp(108px, 6vw + 70px, 150px);
}

/* Hero */
.theme-mdl .b-hero {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0) 44%), linear-gradient(0deg, #000 1%, rgba(0, 0, 0, 0) 46%), url("../img/b2b-hero.png") center/cover no-repeat, #000;
}
.theme-mdl .b-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: clamp(480px, 30vw + 240px, 820px);
  max-width: 880px;
  text-align: center;
  padding-block: clamp(48px, 2.97vw + 30px, 96px);
}
.theme-mdl .b-hero__title {
  color: #fff;
  font-size: clamp(32px, 4.16vw + 12px, 60px);
  font-weight: 800;
  line-height: 1.05;
}
.theme-mdl .b-hero__title span {
  color: #ffbb00;
}
.theme-mdl .b-hero__play {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: clamp(64px, 5vw + 40px, 84px);
  height: clamp(64px, 5vw + 40px, 84px);
  color: #fff;
  background-color: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.theme-mdl .b-hero__play svg {
  width: 30px;
  height: 30px;
  margin-left: 4px;
}
.theme-mdl .b-hero__play:hover {
  color: #000;
  background-color: #ffbb00;
  border-color: #ffbb00;
  transform: scale(1.06);
}
.theme-mdl .b-hero__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}
.theme-mdl .b-hero__text {
  max-width: 430px;
  font-size: clamp(15px, 0.5vw + 13px, 18px);
  color: #fff;
  text-align: left;
}
@media (max-width: 700px) {
  .theme-mdl .b-hero__bottom {
    flex-direction: column;
    gap: 16px;
  }
  .theme-mdl .b-hero__text {
    text-align: center;
  }
}

/* Why us */
.theme-mdl .b-why {
  padding-block: clamp(40px, 0.99vw + 35px, 56px);
  background-color: #000;
}
.theme-mdl .b-why__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(28px, 1.78vw + 18px, 50px);
}
.theme-mdl .b-why__title {
  font-size: clamp(22px, 1.39vw + 16px, 36px);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  text-align: center;
}
.theme-mdl .b-why__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(24px, 3vw + 8px, 64px);
  width: 100%;
}
.theme-mdl .b-why__map {
  position: relative;
}
.theme-mdl .b-why__map-img {
  width: 100%;
}
.theme-mdl .b-stat {
  position: absolute;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: clamp(10px, 0.6vw + 6px, 14px) clamp(22px, 2.8vw + 6px, 46px);
  color: #000;
  text-align: center;
  background-color: #ffbb00;
  border-radius: 15px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.5);
}
.theme-mdl .b-stat__num {
  font-size: clamp(18px, 1vw + 12px, 30px);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}
.theme-mdl .b-stat__label {
  font-size: clamp(11px, 0.4vw + 9px, 16px);
  font-weight: 600;
  text-transform: uppercase;
}
.theme-mdl .b-stat--1 {
  top: 22%;
  left: -2%;
}
.theme-mdl .b-stat--2 {
  top: 42%;
  right: -2%;
}
.theme-mdl .b-stat--3 {
  bottom: 6%;
  left: 30%;
}
.theme-mdl .b-why__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(14px, 0.8vw + 8px, 24px);
}
.theme-mdl .b-feature {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 150px;
  padding: clamp(18px, 0.8vw + 12px, 26px);
  border-radius: 16px;
  background: radial-gradient(78% 100% at 2% 0%, rgba(255, 187, 0, 0.22) 0%, rgba(0, 0, 0, 0) 62%), linear-gradient(280deg, #181816 0%, #232320 100%);
  border: 1px solid #2c2b27;
}
.theme-mdl .b-feature__title {
  font-size: clamp(16px, 0.3vw + 15px, 19px);
  font-weight: 700;
  color: #fff;
}
.theme-mdl .b-feature__text {
  font-size: 14px;
  line-height: 1.5;
  color: #b9b6ab;
}
@media (max-width: 980px) {
  .theme-mdl .b-why__grid {
    grid-template-columns: 1fr;
    max-width: 640px;
  }
  .theme-mdl .b-why__map {
    max-width: 560px;
    margin-inline: auto;
  }
}
@media (max-width: 620px) {
  .theme-mdl .b-why__cards {
    grid-template-columns: 1fr;
  }
}

/* Services */
.theme-mdl .b-services {
  position: relative;
  padding-block: clamp(40px, 0.99vw + 35px, 50px);
  background-color: #000;
}
.theme-mdl .b-services::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 50% at 50% 40%, rgba(255, 187, 0, 0.14), rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
}
.theme-mdl .b-services__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(28px, 1.19vw + 22px, 40px);
}
.theme-mdl .b-services__title {
  font-size: clamp(23px, 1.68vw + 15px, 40px);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  text-align: center;
}
.theme-mdl .b-services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 1.2vw + 8px, 28px);
  width: 100%;
}
.theme-mdl .b-service {
  position: relative;
  display: block;
  aspect-ratio: 4/5;
  border-radius: 16px;
  overflow: hidden;
  isolation: isolate;
  background-color: #181816;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.theme-mdl .b-service:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 0 1px rgba(255, 187, 0, 0.5), 0 18px 50px rgba(255, 187, 0, 0.32), 0 10px 26px rgba(0, 0, 0, 0.55);
}
.theme-mdl .b-service__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.theme-mdl .b-service:hover .b-service__img {
  transform: scale(1.06);
}
.theme-mdl .b-service__arrow {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: #000;
  background-color: #ffbb00;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
  transition: transform 0.35s ease;
}
.theme-mdl .b-service:hover .b-service__arrow {
  transform: rotate(45deg);
}
.theme-mdl .b-service__arrow svg {
  width: 18px;
  height: 18px;
}
.theme-mdl .b-service__overlay {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: clamp(16px, 1vw + 12px, 24px);
  padding-top: clamp(40px, 5vw, 72px);
}
.theme-mdl .b-service__overlay::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  bottom: 0;
  top: -42px;
  background: linear-gradient(to top, rgba(9, 7, 4, 0.94) 0%, rgba(12, 10, 6, 0.6) 52%, rgba(12, 10, 6, 0) 100%);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  -webkit-mask-image: linear-gradient(to top, #000 48%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(to top, #000 48%, rgba(0, 0, 0, 0) 100%);
}
.theme-mdl .b-service__title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}
.theme-mdl .b-service__text {
  font-size: 14px;
  line-height: 1.5;
  color: #d8d5cd;
}
@media (max-width: 1100px) {
  .theme-mdl .b-services__grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 760px;
  }
}
@media (max-width: 560px) {
  .theme-mdl .b-services__grid {
    grid-template-columns: 1fr;
    max-width: 360px;
  }
}

/* How we work */
.theme-mdl .b-process {
  padding-block: clamp(40px, 0.99vw + 35px, 50px);
  background-color: #000;
}
.theme-mdl .b-process__card {
  position: relative;
  padding: clamp(20px, 1.6vw + 12px, 44px);
  border-radius: clamp(18px, 1vw + 12px, 28px);
  background: radial-gradient(120% 130% at 50% 0%, rgba(255, 187, 0, 0.1), rgba(0, 0, 0, 0) 55%), #0e0d0b;
  border: 1.5px solid rgba(255, 187, 0, 0.8);
  box-shadow: 0 0 50px rgba(255, 187, 0, 0.22), inset 0 0 40px rgba(255, 187, 0, 0.04);
}
.theme-mdl .b-process__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: clamp(20px, 1.5vw + 12px, 36px);
}
.theme-mdl .b-process__title {
  font-size: clamp(22px, 1.39vw + 16px, 36px);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}
.theme-mdl .b-process__label {
  font-size: clamp(13px, 0.5vw + 11px, 18px);
  color: #898a8b;
}
.theme-mdl .b-process__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(20px, 2vw + 12px, 44px);
}
.theme-mdl .b-process__media {
  position: relative;
  min-height: 340px;
  border-radius: 16px;
  overflow: hidden;
}
.theme-mdl .b-process__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.theme-mdl .b-process__side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.theme-mdl .b-process__steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.theme-mdl .b-process__btn {
  align-self: flex-end;
}
@media (max-width: 900px) {
  .theme-mdl .b-process__row {
    grid-template-columns: 1fr;
  }
  .theme-mdl .b-process__media {
    min-height: 0;
    aspect-ratio: 16/10;
  }
  .theme-mdl .b-process__btn {
    align-self: stretch;
  }
}

/* Accordion (shared: steps + faq) */
.theme-mdl .b-acc__head {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  text-align: left;
}
.theme-mdl .b-acc__title {
  flex-grow: 1;
}
.theme-mdl .b-acc__chevron {
  flex-shrink: 0;
  width: 20px;
  height: 12px;
  color: #ffbb00;
  transition: transform 0.3s ease;
}
.theme-mdl .b-acc.is-open .b-acc__chevron {
  transform: rotate(180deg);
}
.theme-mdl .b-acc__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
.theme-mdl .b-acc__body > div {
  overflow: hidden;
}
.theme-mdl .b-acc.is-open .b-acc__body {
  grid-template-rows: 1fr;
}
.theme-mdl .b-acc__body p {
  font-size: 14px;
  line-height: 1.6;
  color: #b9b6ab;
}
.theme-mdl .b-acc--step {
  padding: 14px 20px;
  border-radius: 12px;
  background: linear-gradient(280deg, #181816 0%, #232320 100%);
  border: 1px solid #2c2b27;
  transition: border-color 0.3s ease;
}
.theme-mdl .b-acc--step.is-open {
  border-color: rgba(255, 187, 0, 0.5);
}
.theme-mdl .b-acc--step .b-acc__num {
  flex-shrink: 0;
  min-width: 40px;
  font-size: clamp(22px, 1vw + 16px, 28px);
  font-weight: 900;
  line-height: 1;
  color: #ffbb00;
}
.theme-mdl .b-acc--step .b-acc__title {
  font-size: clamp(15px, 0.3vw + 14px, 18px);
  font-weight: 700;
}
.theme-mdl .b-acc--step .b-acc__chevron {
  color: #f0eee6;
}
.theme-mdl .b-acc--step .b-acc__body p {
  padding-top: 12px;
  padding-left: 56px;
}
.theme-mdl .b-acc--faq {
  padding-block: clamp(12px, 0.6vw + 8px, 18px);
}
.theme-mdl .b-acc--faq + .b-acc--faq {
  border-top: 1px solid #2c2b27;
}
.theme-mdl .b-acc--faq .b-acc__title {
  font-size: clamp(17px, 0.5vw + 15px, 22px);
  font-weight: 700;
}
.theme-mdl .b-acc--faq .b-acc__body p {
  padding-top: 12px;
  padding-left: 36px;
}

/* Gallery */
.theme-mdl .b-gallery {
  padding-block: clamp(28px, 1.6vw + 18px, 44px);
  background-color: #000;
  overflow: hidden;
}
.theme-mdl .b-gallery__inner {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1vw + 4px, 18px);
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: clamp(8px, 2vw, 24px);
}
.theme-mdl .b-gallery__slider {
  flex: 1 1 0;
  min-width: 0;
  padding: 4px;
  margin: -4px;
  overflow: hidden;
}
.theme-mdl .b-gallery__slide {
  position: relative;
  aspect-ratio: 3/2;
  border-radius: 16px;
  overflow: hidden;
}
.theme-mdl .b-gallery__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.theme-mdl .b-gallery__play {
  position: absolute;
  inset: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.theme-mdl .b-gallery__play svg {
  width: 24px;
  height: 24px;
  margin-left: 3px;
}
.theme-mdl .b-gallery__play:hover {
  color: #000;
  background-color: #ffbb00;
  border-color: #ffbb00;
  transform: scale(1.08);
}
.theme-mdl .b-gallery__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  color: #ffbb00;
  border: 1px solid #3f3f3f;
  border-radius: 50%;
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}
.theme-mdl .b-gallery__arrow svg {
  width: 11px;
  height: 18px;
}
.theme-mdl .b-gallery__next svg {
  transform: rotate(180deg);
}
.theme-mdl .b-gallery__arrow:hover {
  color: #000;
  background-color: #ffbb00;
  border-color: #ffbb00;
}
.theme-mdl .b-gallery__arrow.swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
}

/* Partners strip (light) */
.theme-mdl .b-partners {
  padding-block: clamp(26px, 1.2vw + 18px, 40px);
  background-color: #000;
}
.theme-mdl .b-partners__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 3vw, 64px);
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 16px;
}
.theme-mdl .b-partners__list img {
  height: clamp(30px, 2.6vw + 16px, 48px);
  width: auto;
  object-fit: contain;
}

/* Trust */
.theme-mdl .b-trust {
  position: relative;
  padding-block: clamp(48px, 4vw + 28px, 96px);
  background: linear-gradient(90deg, #000 16%, rgba(0, 0, 0, 0.25) 58%, rgba(0, 0, 0, 0) 100%), linear-gradient(0deg, #000 1%, rgba(0, 0, 0, 0) 24%), linear-gradient(180deg, #000 1%, rgba(0, 0, 0, 0) 22%), url("../img/b2b-symbol.png") center right/cover no-repeat, #000;
}
.theme-mdl .b-trust__inner {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 1.6vw + 16px, 40px);
  max-width: 720px;
}
.theme-mdl .b-trust__head {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.theme-mdl .b-trust__label {
  font-size: clamp(15px, 0.5vw + 13px, 18px);
  color: #898a8b;
}
.theme-mdl .b-trust__title {
  font-size: clamp(24px, 1.6vw + 16px, 40px);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}
.theme-mdl .b-trust__title span {
  color: #ffbb00;
}
.theme-mdl .b-trust__text {
  max-width: 433px;
  font-size: 16px;
  color: #f0eee6;
}
.theme-mdl .b-trust__stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(24px, 3vw, 50px);
}
.theme-mdl .b-trust__stat {
  display: flex;
  flex-direction: column;
}
.theme-mdl .b-trust__stat-num {
  font-size: clamp(24px, 1vw + 18px, 30px);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}
.theme-mdl .b-trust__stat-label {
  font-size: 16px;
  color: #f0eee6;
}
.theme-mdl .b-trust__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(14px, 1vw + 8px, 22px);
  max-width: 600px;
}
.theme-mdl .b-trust-card {
  padding: clamp(16px, 1vw + 10px, 22px);
  border-radius: 5px 30px 5px 5px;
  background-color: rgba(18, 17, 14, 0.72);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 187, 0, 0.28);
}
.theme-mdl .b-trust-card--b,
.theme-mdl .b-trust-card--d {
  margin-top: clamp(14px, 3vw, 44px);
}
.theme-mdl .b-trust-card__title {
  margin-bottom: 6px;
  font-size: clamp(15px, 0.3vw + 14px, 17px);
  font-weight: 700;
}
.theme-mdl .b-trust-card__text {
  font-size: 13px;
  line-height: 1.5;
  color: #b9b6ab;
}
@media (max-width: 860px) {
  .theme-mdl .b-trust {
    background: linear-gradient(0deg, #000 6%, rgba(0, 0, 0, 0.5) 60%, rgba(0, 0, 0, 0.5) 100%), url("../img/b2b-symbol.png") center/cover no-repeat, #000;
  }
  .theme-mdl .b-trust__cards {
    grid-template-columns: 1fr;
    max-width: 440px;
  }
  .theme-mdl .b-trust-card--b,
  .theme-mdl .b-trust-card--d {
    margin-top: 0;
  }
}

/* FAQ */
.theme-mdl .b-faq {
  padding-block: clamp(40px, 0.99vw + 35px, 50px);
  background-color: #000;
}
.theme-mdl .b-faq__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(20px, 1.2vw + 14px, 30px);
}
.theme-mdl .b-faq__title {
  font-size: clamp(23px, 1.68vw + 15px, 40px);
  font-weight: 800;
  text-align: center;
}
.theme-mdl .b-faq__list {
  width: 100%;
  max-width: 820px;
  display: flex;
  flex-direction: column;
}

/* About (text + media) */
.theme-mdl .b-about {
  padding-block: clamp(40px, 0.99vw + 35px, 50px);
  background-color: #000;
}
.theme-mdl .b-about__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 3vw + 12px, 60px);
}
.theme-mdl .b-about__col {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 1.2vw + 12px, 28px);
}
.theme-mdl .b-about__title {
  font-size: clamp(28px, 1.6vw + 20px, 40px);
  font-weight: 800;
}
.theme-mdl .b-about__text {
  font-size: 12px;
  line-height: 1.9;
  letter-spacing: 0.03em;
  color: #cfccc4;
  text-transform: uppercase;
}
.theme-mdl .b-about__line {
  width: 132px;
  height: 10px;
  background-color: #ffbb00;
  border-radius: 2px;
}
.theme-mdl .b-about__media {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: 16px;
  overflow: hidden;
}
.theme-mdl .b-about__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 860px) {
  .theme-mdl .b-about__inner {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin-inline: auto;
  }
}

/* Footer */
.theme-mdl .b-footer {
  background-color: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-block: clamp(40px, 2vw + 30px, 64px);
}
.theme-mdl .b-footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(32px, 4vw, 80px);
  flex-wrap: wrap;
}
.theme-mdl .b-footer__logo {
  width: clamp(220px, 20vw + 60px, 316px);
}
.theme-mdl .b-footer__col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.theme-mdl .b-footer__title {
  font-size: clamp(20px, 0.6vw + 17px, 25px);
  font-weight: 700;
}
.theme-mdl .b-footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.theme-mdl .b-footer__links a {
  font-size: 16px;
  color: #f0eee6;
  transition: color 0.3s ease;
}
.theme-mdl .b-footer__links a:hover {
  color: #ffbb00;
}
.theme-mdl .b-footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.theme-mdl .b-footer__socials {
  display: flex;
  gap: 12px;
  margin-bottom: 2px;
}
.theme-mdl .b-footer__social {
  color: #ffbb00;
  transition: color 0.3s ease, transform 0.3s ease;
}
.theme-mdl .b-footer__social svg {
  width: 28px;
  height: 28px;
}
.theme-mdl .b-footer__social:hover {
  color: #fff;
  transform: translateY(-2px);
}
.theme-mdl .b-footer__contact {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  transition: color 0.3s ease;
}
.theme-mdl .b-footer__contact svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: #ffbb00;
}
.theme-mdl .b-footer__contact:hover {
  color: #ffbb00;
}
@media (max-width: 760px) {
  .theme-mdl .b-footer__inner {
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
  }
  .theme-mdl .b-footer__col,
  .theme-mdl .b-footer__contacts {
    align-items: center;
  }
  .theme-mdl .b-footer__links {
    align-items: center;
  }
  .theme-mdl .b-footer__contact {
    justify-content: center;
  }
}

/* ============================================================
   HIRE landing — driver recruitment (theme-mdl + .h- prefix)
   Hand-written, mirrors the Group 41082 mockup. Reuses the MDL
   theme (.m-header / .m-btn / .m-form / .m-quiz / .m-dots) and the
   b2b footer (.b-footer). New work is the .h-* blocks below.
   NOTE: not generated from scss/ — edit here directly.
   ============================================================ */
.theme-hire {
  scroll-padding-top: 80px;
  overflow-x: clip;
}

/* ---- shared decorative chips (Owner / Driver benefit pills) ---- */
.theme-mdl .h-chip {
  position: absolute;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 220px;
  padding: 8px 18px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  color: #ffbb00;
  background-color: rgba(0, 0, 0, 0.62);
  border: 2.5px solid #ffbb00;
  border-radius: 100px;
  rotate: var(--r, 0deg);
  will-change: transform;
}
.theme-mdl .h-chip__tag {
  position: absolute;
  top: -11px;
  left: 50%;
  translate: -50% 0;
  padding: 1px 16px;
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #000;
  background-color: #fff;
  border-radius: 100px;
}
.theme-mdl .h-spark {
  position: absolute;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: radial-gradient(50% 50% at 50% 50%, #ffbb00 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
}

/* ---- Hero ---- */
.theme-mdl .h-hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(58% 48% at 50% 44%, rgba(255, 187, 0, 0.5) 0%, rgba(255, 187, 0, 0) 70%), #000;
}
.theme-mdl .h-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(18px, 1.5vw + 12px, 28px);
  max-width: 900px;
  padding-block: clamp(120px, 14vw + 40px, 240px);
  text-align: center;
}
.theme-mdl .h-hero__title {
  font-size: clamp(34px, 5vw + 12px, 80px);
  font-weight: 800;
  line-height: 1.06;
  text-transform: none;
  color: #fff;
}
.theme-mdl .h-hero__title span {
  color: #ffbb00;
}
.theme-mdl .h-hero__subtitle {
  font-size: clamp(18px, 1.6vw + 12px, 30px);
  font-weight: 700;
  color: #fff;
}
.theme-mdl .h-hero__subtitle span {
  color: #ffbb00;
}
.theme-mdl .h-hero__btn {
  margin-top: 4px;
}
.theme-mdl .h-hero__scene {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
  width: 100%;
  max-width: 1520px;
  z-index: 1;
  pointer-events: none;
}
.theme-mdl .h-hero .h-chip--1 {
  top: 17%;
  left: 3%;
  --r: -4deg;
}
.theme-mdl .h-hero .h-chip--2 {
  top: 8%;
  left: 20%;
  --r: -3deg;
}
.theme-mdl .h-hero .h-chip--3 {
  top: 10%;
  right: 13%;
  --r: 8deg;
}
.theme-mdl .h-hero .h-chip--4 {
  top: 15%;
  right: 2%;
  --r: 6deg;
}
.theme-mdl .h-hero .h-chip--5 {
  top: 43%;
  left: 1%;
  --r: 9deg;
}
.theme-mdl .h-hero .h-chip--6 {
  top: 39%;
  right: 2%;
  --r: -11deg;
}
.theme-mdl .h-hero .h-chip--7 {
  bottom: 12%;
  left: 4%;
  --r: 8deg;
}
.theme-mdl .h-hero .h-chip--8 {
  bottom: 9%;
  left: 41%;
  --r: -12deg;
}
.theme-mdl .h-hero .h-chip--9 {
  bottom: 14%;
  right: 5%;
  --r: -6deg;
}
.theme-mdl .h-hero .h-spark--1 {
  top: 30%;
  left: 12%;
}
.theme-mdl .h-hero .h-spark--2 {
  top: 64%;
  left: 9%;
}
.theme-mdl .h-hero .h-spark--3 {
  top: 22%;
  right: 24%;
}
.theme-mdl .h-hero .h-spark--4 {
  bottom: 30%;
  right: 16%;
}
@media (max-width: 992px) {
  .theme-mdl .h-hero {
    display: flex;
    flex-direction: column;
  }
  .theme-mdl .h-hero__inner {
    order: 1;
    padding-block: clamp(80px, 18vw, 110px) 0;
  }
  .theme-mdl .h-hero__scene {
    order: 2;
    position: static;
    translate: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px 14px;
    width: 100%;
    max-width: 520px;
    margin-inline: auto;
    padding: 28px 16px clamp(56px, 12vw, 80px);
    pointer-events: auto;
  }
  .theme-mdl .h-hero .h-chip {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    max-width: none;
    width: 100%;
    padding: 8px 18px;
    font-size: 12px;
    border-width: 1px;
    rotate: 0deg;
  }
  .theme-mdl .h-hero .h-chip--9 {
    grid-column: 1 / -1;
    justify-self: center;
    width: auto;
    min-width: 50%;
  }
  .theme-mdl .h-hero .h-spark {
    display: none;
  }
}

/* ---- Stats slider ---- */
.theme-mdl .h-stats {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(18px, 1.5vw + 10px, 28px);
  padding-block: clamp(28px, 3vw + 10px, 48px);
  background-color: #000;
  overflow: hidden;
}
.theme-mdl .h-stats__slider {
  width: 100%;
  overflow: visible;
}
.theme-mdl .h-stats__slide.swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  width: min(680px, 100vw - 32px);
  height: auto;
}
.theme-mdl .h-stats__slide--reverse {
  justify-content: flex-start;
}
.theme-mdl .h-stats__cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding-top: 22px;
}
.theme-mdl .h-stat {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 0 1 160px;
  min-width: 140px;
  min-height: 99px;
  padding: 30px 10px 12px;
  text-align: center;
  background-color: #000;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 15px;
}
.theme-mdl .h-stat__icon {
  position: absolute;
  top: -22px;
  left: 50%;
  translate: -50% 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #ffbb00;
  background-color: #4d3a00;
  border-radius: 50%;
}
.theme-mdl .h-stat__icon svg {
  width: 23px;
  height: 17px;
}
.theme-mdl .h-stat__label {
  font-size: clamp(14px, 13.15px + 0.2vw, 16px);
  text-transform: uppercase;
  color: #fff;
}
.theme-mdl .h-stat__value {
  font-size: clamp(20px, 17.87px + 0.5vw, 25px);
  font-weight: 700;
  white-space: nowrap;
  color: #ffbb00;
}
.theme-mdl .h-stats__photo {
  width: 100%;
  aspect-ratio: 1360/424;
  object-fit: cover;
  border-radius: 15px;
}
.theme-mdl .h-stats__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 1.2vw + 8px, 28px);
}
.theme-mdl .h-stats__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  color: #f0eee6;
  transition: color 0.3s ease;
}
.theme-mdl .h-stats__arrow svg {
  width: 11px;
  height: 18px;
}
.theme-mdl .h-stats__arrow--next svg {
  transform: rotate(180deg);
}
.theme-mdl .h-stats__arrow:hover {
  color: #ffbb00;
}
.theme-mdl .h-stats__dots {
  width: auto;
}
@media (max-width: 576px) {
  .theme-mdl .h-stat {
    flex-basis: calc(50% - 5px);
    min-width: 0;
  }
}

/* ---- Сколько ты заработаешь ---- */
.theme-mdl .h-earn {
  padding-block: clamp(44px, 4vw + 20px, 80px);
  background-color: #000;
}
.theme-mdl .h-earn__title {
  margin-bottom: clamp(24px, 2vw + 12px, 40px);
  text-align: center;
}
.theme-mdl .h-earn__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 1.6vw + 8px, 28px);
  max-width: 1000px;
  margin-inline: auto;
}
.theme-mdl .h-plan {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: clamp(20px, 1.5vw + 12px, 28px);
  text-align: left;
  background: linear-gradient(280deg, #181816 0%, #232320 100%);
  border: 1px solid #38362f;
  border-radius: 16px;
}
.theme-mdl .h-plan--accent {
  background: radial-gradient(120% 120% at 0% 0%, rgba(255, 187, 0, 0.22) 0%, rgba(0, 0, 0, 0) 60%), linear-gradient(200deg, #2a2000 0%, #141000 100%);
  border-color: #ffbb00;
}
.theme-mdl .h-plan__title {
  font-size: clamp(17px, 0.5vw + 15px, 20px);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
}
.theme-mdl .h-plan--accent .h-plan__title {
  color: #ffbb00;
}
.theme-mdl .h-plan--accent .h-plan__note {
  border-top-color: rgba(255, 187, 0, 0.45);
}
.theme-mdl .h-plan__rows {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.theme-mdl .h-plan__row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.theme-mdl .h-plan__row--level {
  justify-content: space-between;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 187, 0, 0.25);
}
.theme-mdl .h-plan__num {
  flex-shrink: 0;
  font-size: 24px;
  font-weight: 800;
  color: #ffbb00;
}
.theme-mdl .h-plan__row--level .h-plan__num {
  font-size: 18px;
}
.theme-mdl .h-plan__price {
  font-size: 20px;
  font-weight: 800;
  color: #ffbb00;
}
.theme-mdl .h-plan__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: #ffbb00;
}
.theme-mdl .h-plan__text {
  font-size: 14px;
  line-height: 1.35;
  color: #f0eee6;
}
.theme-mdl .h-plan__note {
  margin-top: auto;
  padding-top: 14px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #7d7d7d;
  border-top: 1px solid #38362f;
}
@media (max-width: 860px) {
  .theme-mdl .h-earn__cards {
    grid-template-columns: 1fr;
    max-width: 460px;
  }
}

/* ---- Масштабируйте доход ---- */
.theme-mdl .h-scale {
  position: relative;
  padding-block: clamp(60px, 9vw + 20px, 170px);
  background-color: #000;
  overflow: hidden;
}
.theme-mdl .h-scale__scene {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
  width: 100%;
  max-width: 1520px;
  z-index: 1;
  pointer-events: none;
}
.theme-mdl .h-scale__title {
  max-width: 1000px;
  margin-inline: auto;
  margin-bottom: clamp(28px, 3vw + 12px, 50px);
  font-size: clamp(28px, 3vw + 14px, 56px);
  font-weight: 800;
  line-height: 0.95;
  text-align: center;
  text-transform: uppercase;
  color: #ffbb00;
}
.theme-mdl .h-scale__title-top {
  display: block;
  color: #fff;
}
.theme-mdl .h-scale__cards {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw + 6px, 50px);
}
.theme-mdl .h-tile {
  display: flex;
  flex-direction: column;
}
.theme-mdl .h-tile__img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 16px 16px 0 0;
}
.theme-mdl .h-tile__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
  padding: clamp(14px, 1vw + 8px, 20px);
  background-color: #050505;
  border: 2px solid #ffbb00;
  border-top: none;
  border-radius: 0 0 20px 20px;
}
.theme-mdl .h-tile__title {
  font-size: clamp(17px, 0.5vw + 15px, 22px);
  font-weight: 700;
  color: #fff;
}
.theme-mdl .h-tile__text {
  font-size: 14px;
  line-height: 1.4;
  color: #f0eee6;
}
.theme-mdl .h-scale__labels {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw + 8px, 80px);
  margin-top: clamp(28px, 2vw + 14px, 48px);
}
.theme-mdl .h-scale__label {
  font-size: clamp(20px, 1vw + 14px, 28px);
  font-weight: 800;
  text-align: center;
  color: #fff;
}
.theme-mdl .h-scale .h-chip--s1 {
  top: 4%;
  left: 4%;
  --r: 7deg;
}
.theme-mdl .h-scale .h-chip--s2 {
  top: 1%;
  left: 28%;
  --r: -4deg;
}
.theme-mdl .h-scale .h-chip--s3 {
  top: 3%;
  right: 22%;
  --r: 5deg;
}
.theme-mdl .h-scale .h-chip--s4 {
  top: 8%;
  right: 3%;
  --r: -6deg;
}
.theme-mdl .h-scale .h-chip--s5 {
  top: 32%;
  left: 2%;
  --r: -10deg;
}
.theme-mdl .h-scale .h-chip--s6 {
  bottom: 14%;
  left: 3%;
  --r: 16deg;
}
.theme-mdl .h-scale .h-chip--s7 {
  bottom: 22%;
  left: 30%;
  --r: -4deg;
}
.theme-mdl .h-scale .h-chip--s8 {
  bottom: 10%;
  right: 28%;
  --r: -12deg;
}
.theme-mdl .h-scale .h-chip--s9 {
  bottom: 16%;
  right: 3%;
  --r: 6deg;
}
@media (max-width: 1180px) {
  .theme-mdl .h-scale__cards {
    grid-template-columns: repeat(2, 1fr);
    max-width: 720px;
    margin-inline: auto;
  }
}
@media (max-width: 992px) {
  .theme-mdl .h-scale__scene {
    display: none;
  }
}
@media (max-width: 520px) {
  .theme-mdl .h-scale__cards {
    grid-template-columns: 1fr;
    max-width: 360px;
  }
}

/* ---- Что ты будешь делать ---- */
.theme-mdl .h-steps {
  position: relative;
  padding-block: clamp(56px, 6vw + 20px, 110px);
  background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url("../img/hire-steps-truck.png") center 64%/min(1400px, 150%) auto no-repeat, #000;
}
.theme-mdl .h-steps__title {
  margin-bottom: clamp(40px, 5vw + 16px, 100px);
  text-align: center;
  color: #fff;
}
.theme-mdl .h-steps__row {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: clamp(16px, 2vw + 6px, 44px);
}
.theme-mdl .h-step {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: clamp(200px, 20vw + 60px, 253px);
  min-height: 134px;
  padding: 19px;
  background-color: rgba(0, 0, 0, 0.7);
  border: 1px solid #ffbb00;
  border-radius: 15px;
}
.theme-mdl .h-step__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.theme-mdl .h-step__dot {
  width: 24px;
  height: 24px;
  background-color: #ffbb00;
  border-radius: 50%;
  filter: blur(2.7px);
}
.theme-mdl .h-step__num {
  font-size: 40px;
  font-weight: 700;
  line-height: 0.6;
  color: #ffbb00;
}
.theme-mdl .h-step__label {
  font-size: clamp(18px, 0.5vw + 16px, 25px);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
}
.theme-mdl .h-steps__actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1104px;
  margin-inline: auto;
  margin-top: clamp(40px, 5vw + 16px, 96px);
}
.theme-mdl .h-steps__support {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  font-size: clamp(18px, 0.5vw + 16px, 25px);
  font-weight: 700;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.55);
  border-radius: 100px;
}
@media (max-width: 520px) {
  .theme-mdl .h-steps__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .theme-mdl .h-steps__support,
  .theme-mdl .h-steps .m-btn {
    text-align: center;
    justify-content: center;
  }
}

/* ---- Отзывы ---- */
.theme-mdl .h-reviews {
  padding-block: clamp(44px, 4vw + 20px, 80px);
  background-color: #000;
  overflow: hidden;
}
.theme-mdl .h-reviews__title {
  margin-bottom: clamp(28px, 3vw + 12px, 50px);
  text-align: center;
}
.theme-mdl .h-reviews__slider {
  width: 100%;
  padding: 6px;
  margin: -6px;
  overflow: hidden;
}
.theme-mdl .h-review.swiper-slide {
  height: auto;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background-color: #0a0a0a;
  border: 2px solid #ffbb00;
  border-radius: 16px;
}
.theme-mdl .h-review__media {
  position: relative;
}
.theme-mdl .h-review__media img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.theme-mdl .h-review__play {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  color: #000;
  background-color: #ffbb00;
  border-radius: 50%;
  transition: scale 0.3s ease, filter 0.3s ease;
}
.theme-mdl .h-review__play svg {
  width: 22px;
  height: 22px;
  margin-left: 3px;
}
.theme-mdl .h-review__play:hover {
  scale: 1.08;
  filter: brightness(1.1);
}
.theme-mdl .h-review__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
  padding: clamp(16px, 1vw + 10px, 20px);
}
.theme-mdl .h-review__meta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.theme-mdl .h-review__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: #f0eee6;
}
.theme-mdl .h-review__pill-icon {
  display: grid;
  place-items: center;
  padding: 5px 7px;
  color: #ffbb00;
  background-color: rgba(255, 187, 0, 0.3);
  border-radius: 100px;
}
.theme-mdl .h-review__pill-icon svg {
  width: 15px;
  height: 16px;
}
.theme-mdl .h-review__name {
  font-size: clamp(20px, 0.5vw + 18px, 28px);
  font-weight: 700;
  color: #fff;
}
.theme-mdl .h-review__text {
  font-size: 16px;
  line-height: 1.3;
  color: #f0eee6;
}
.theme-mdl .h-review__more {
  margin-top: auto;
  font-size: 16px;
  font-weight: 500;
  color: #7d7d7d;
  transition: color 0.3s ease;
}
.theme-mdl .h-review__more:hover {
  color: #ffbb00;
}
.theme-mdl .h-reviews__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 1.2vw + 8px, 28px);
  margin-top: clamp(20px, 2vw + 8px, 32px);
}
.theme-mdl .h-reviews__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  color: #f0eee6;
  transition: color 0.3s ease;
}
.theme-mdl .h-reviews__arrow svg {
  width: 11px;
  height: 18px;
}
.theme-mdl .h-reviews__arrow--next svg {
  transform: rotate(180deg);
}
.theme-mdl .h-reviews__arrow:hover {
  color: #ffbb00;
}
.theme-mdl .h-reviews__dots {
  width: auto;
}

/* ---- Присоединяйтесь (форма) ---- */
.theme-mdl .h-lead {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-block: clamp(44px, 4vw + 20px, 70px);
  background: linear-gradient(rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.62)), url("../img/hire-form-bg.png") center/cover no-repeat, #000;
}
.theme-mdl .h-lead__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(24px, 2vw + 14px, 40px);
}
.theme-mdl .h-lead__title {
  text-align: center;
}
@media (max-width: 760px) {
  .theme-mdl .h-steps__support {
    width: 100%;
  }
}
.theme-mdl .page--thank-you {
  display: flex;
}
.theme-mdl .thank-you {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  padding-block: clamp(60px, calc(42.97px + 3.96vw), 100px);
  background-color: #000;
  text-align: center;
}
.theme-mdl .thank-you__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(16px, calc(12.59px + 0.79vw), 24px);
  max-width: 720px;
}
.theme-mdl .thank-you__title {
  font-size: clamp(30px, calc(21.49px + 1.98vw), 50px);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  color: #fff;
}
.theme-mdl .thank-you__text {
  font-size: clamp(16px, calc(14.3px + 0.4vw), 20px);
  line-height: 1.5;
  color: #fff;
}
.theme-mdl .thank-you__btn {
  margin-top: clamp(8px, calc(4.59px + 0.79vw), 16px);
}
.theme-mdl .page--404 {
  display: flex;
}
.theme-mdl .error-404 {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  padding-block: clamp(60px, calc(42.97px + 3.96vw), 100px);
  background-color: #000;
  background-image: radial-gradient(circle at 50% 35%, rgba(255, 187, 0, 0.12), transparent 60%);
  text-align: center;
  overflow: hidden;
}
.theme-mdl .error-404__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(12px, calc(8.59px + 0.79vw), 20px);
  max-width: 720px;
}
.theme-mdl .error-404__code {
  font-size: clamp(96px, calc(40px + 16vw), 240px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: transparent;
  background: linear-gradient(180deg, #ffbb00 0%, #ff9500 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 0 60px rgba(255, 187, 0, 0.25);
}
.theme-mdl .error-404__title {
  font-size: clamp(24px, calc(17.62px + 1.49vw), 40px);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  color: #fff;
}
.theme-mdl .error-404__text {
  font-size: clamp(16px, calc(14.3px + 0.4vw), 20px);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
}
.theme-mdl .error-404__btn {
  margin-top: clamp(8px, calc(4.59px + 0.79vw), 16px);
}
