*,
*::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=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-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__text--clamp {
  flex-grow: 0;
  max-height: 4.8em;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.review-card__more {
  font-weight: 500;
  transition: color 0.3s ease;
}
.review-card__more:hover {
  color: #0048ff;
}
.review-card__toggle {
  align-self: flex-start;
  padding: 0;
  font: inherit;
  font-weight: 500;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

.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;
  }
}

.apply__form-wrap {
  width: 100%;
  max-width: 596px;
}

.apply__form-wrap .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  margin-top: clamp(20px, 14.89px + 1.19vw, 32px);
}

.wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.form__row .wpcf7-form-control-wrap {
  flex: 1;
}

.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-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.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,
  .footer__nav-list {
    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);
}

/* ===== Company Hero (home intro) ===== */
.intro {
  display: flex;
  align-items: center;
  min-height: 100vh;
  min-height: 100svh;
  padding-block: clamp(60px, 8vw, 110px);
  background:
    linear-gradient(rgba(13, 18, 28, 0.4), rgba(13, 18, 28, 0.4)),
    url("../img/hero.jpg") center/cover no-repeat,
    linear-gradient(135deg, #152340, #0d121c);
}
.intro__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  text-align: center;
}
.intro__title {
  max-width: 18ch;
  font-size: clamp(28px, 5vw, 54px);
  font-weight: 900;
  line-height: 1.05;
  color: #fff;
}
.intro__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: clamp(16px, 2.5vw, 26px);
}
.intro__meta-item {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 22px;
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 600;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 100px;
  backdrop-filter: blur(2px);
}
.intro__text {
  max-width: 640px;
  margin-top: clamp(16px, 2.5vw, 24px);
  font-family: "Roboto", sans-serif;
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.5;
  color: #dee8ff;
}
.intro__btn {
  margin-top: clamp(22px, 3vw, 34px);
}

/* ===== Contact Info ===== */
.contact-info__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2.5vw, 30px);
  max-width: 900px;
  margin-inline: auto;
}
.contact-info__map {
  max-width: 900px;
  margin: clamp(24px, 3vw, 40px) auto 0;
  border: 1px solid #dee8ff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(106, 118, 142, 0.24);
  line-height: 0;
}
.contact-info__map iframe {
  display: block;
  width: 100%;
  min-height: clamp(260px, 38vw, 420px);
  border: 0;
}
.contact-card {
  padding: clamp(22px, 3vw, 36px);
  background:
    radial-gradient(120% 120% at 0% 0%, rgba(105, 147, 255, 0.12) 0%, rgba(255, 255, 255, 0) 60%),
    #fff;
  border: 1px solid #dee8ff;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(106, 118, 142, 0.24);
}
.contact-card__title {
  margin-bottom: 16px;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  color: #152340;
}
.contact-card__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-card__item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.contact-card__label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #6a768e;
}
.contact-card__value {
  font-family: "Roboto", sans-serif;
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 500;
  color: #0d121c;
}
.contact-card__value--link {
  color: #0048ff;
  transition: filter 0.3s ease;
}
.contact-card__value--link:hover {
  filter: brightness(1.2);
}

/* ===== Contact Form ===== */
.contact-form {
  background:
    radial-gradient(103% 172% at 96% 82%, rgba(105, 147, 255, 0.35) 0%, rgba(255, 255, 255, 0) 100%),
    radial-gradient(143% 239% at 0% 0%, rgba(0, 72, 255, 0.18) 0%, rgba(255, 255, 255, 0) 100%);
}
.contact-form__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-form .section-title {
  margin-bottom: 10px;
}
.contact-form__subtitle {
  max-width: 560px;
  font-size: clamp(15px, 1.6vw, 18px);
  text-align: center;
  color: #6a768e;
}
.contact-form__wrap {
  margin-inline: auto;
}
.form__textarea {
  min-height: 130px;
  resize: vertical;
}

@media (max-width: 768px) {
  .contact-info__grid {
    grid-template-columns: 1fr;
  }
}

.embed__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.embed .section-title {
  margin-bottom: clamp(20px, 3vw, 36px);
}
.embed__frame {
  width: 100%;
}
.embed__frame iframe {
  display: block;
  width: 100%;
  min-height: clamp(900px, 120vw, 1400px);
  border: 0;
}
