@font-face {
  font-family: "duplet";
  src: url(/assests/fonts/DupletOpen-Regular-BF660637b30bdd6.otf)
    format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "duplet";
  src: url(/assests/fonts/DupletOpen-Semibold-BF660637b44507f.otf)
    format("opentype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "duplet";
  src: url(/assests/fonts/DupletOpen-Bold-BF660637b3bc02f.otf)
    format("opentype");
  font-weight: 700;
  font-style: normal;
}

:root {
  --color-primary: #ff5d1e;
  --color-secondary: #6b7280;
  --color-background: #f9fafb;
  --color-text: #061e00;
  --color-border: #0a350033;
  --white: #ffffff;
  --font-primary: "duplet", sans-serif;
}

/* *,
*::before,
*::after {
  box-sizing: border-box;
} */

* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
li,
a,
button,
figure {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-primary);
}

section {
  overflow: hidden;
}

body.menu-open {
  overflow: hidden;
}

@media (max-width: 991px) {
  body.menu-open::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
}

/* img {
  vertical-align: middle;
  max-width: 100%;
} */

.mw-container {
  width: clamp(320px, 95%, 1330px);
  margin: 0 auto;
  padding: 0px 15px;

  @media (max-width: 575px) {
    width: 100%;
  }
}

.mw-primary-button {
  background-color: rgba(244, 244, 242, 0.2);
  color: #ffffff;
  border: 1px solid #ffffff73;
  border-radius: 16px;
  padding: 15px 30px;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(20px);
  transition: 0.3s;
}

@media (max-width: 575px) {
  .header .mw-primary-button {
    padding: 15px 10px;
    font-size: 13px;
  }
}

.mw-primary-button:hover {
  box-shadow: 0px 0px 10px 0px rgba(255, 255, 255, 0.281);
  filter: brightness(1.2);
}

/* .header .mw-primary-button:hover {
  filter: brightness(1.5);
} */

.mw-secondary-button {
  background-color: var(--color-primary);
  color: #ffffff;
  border: none;
  padding: 16px 32px;
  font-weight: 600;
  font-size: 14px;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.3s;
}

.mw-secondary-button:hover {
  box-shadow: 0px 0px 10px 0px rgba(255, 94, 30, 0.603);
  filter: brightness(1.2);
}

/* Header */
.header {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(141.58px);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: 0.3s;
}

.header.is-sticky {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  background-color: #000000;
}

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 15px;
}

.header__nav-list {
  display: flex;
  gap: 40px;
  list-style: none;
}

.header__nav-link {
  text-decoration: none;
  color: var(--white);
  font-weight: 600;
  transition: 0.3s;
}

.header__nav-link:hover {
  color: var(--color-primary);
}

.header__actions {
  display: flex;
  gap: 20px;
  align-items: center;
}

.header__button--language {
  background-color: transparent;
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: 0.3s;
  position: relative;
}

.header__button--language:hover {
  color: var(--color-primary);
}

.header__button--language-text {
  font-weight: 700;
  font-size: 18px;
  line-height: 160%;
}

.header__button--menu {
  background-color: transparent;
  border: none;
  display: none;
  cursor: pointer;
  color: var(--white);
  transition: 0.3s;
  position: relative;
  width: 24px;
  height: 24px;
  padding: 0;
}

.header__button--menu:hover {
  color: var(--color-primary);
}

.header__button--menu {
  display: flex;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 20px;
  height: 14px;
  position: relative;
}

.header__button--menu span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
  position: absolute;
  left: 0;
}

.header__button--menu span:nth-child(1) {
  top: 0;
}

.header__button--menu span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.header__button--menu span:nth-child(3) {
  bottom: 0;
}

.header__button--menu.is-active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.header__button--menu.is-active span:nth-child(2) {
  opacity: 0;
  transform: translateY(-50%) scale(0);
}

.header__button--menu.is-active span:nth-child(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.header__lang-dropdown {
  display: none;
  position: absolute;
  width: 100px;
  top: 45px;
  left: -30px;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 5px;
}

.header-lang-value {
  font-weight: 600;
  font-size: 14px;
  color: var(--white);
  cursor: pointer;
  padding: 8px 12px;
  display: block;
  transition: 0.3s;
}

.header-lang-value:hover {
  background-color: var(--color-primary);
}

.header__lang-list {
  list-style: none;
  margin: 0;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .header__nav-list {
    gap: 20px;
  }
}

@media (max-width: 991px) {
  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 80%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 1);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 80px 30px 30px 30px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
  }

  .header__button--menu {
    display: block;
    position: relative;
    z-index: 1000;
  }

  /* .header__button--menu.is-active {
    color: var(--color-primary);
  } */

  .header__nav.is-open {
    transform: translateX(0);
  }

  .header__nav-list {
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
    width: 100%;
  }

  .header__nav-item {
    width: 100%;
  }

  .header__nav-link {
    font-size: 20px;
    width: 100%;
    display: block;
    padding: 10px 0;
  }
}

@media (max-width: 480px) {
  .header__actions {
    gap: 0px;
  }

  .header__button--language {
    margin: 0px 0px 0px 8px;
  }

  .header__button--menu {
    margin: 0px 0px 0px 8px;
  }

  .header__logo svg {
    width: 40px;
  }
}

/* Hero */
.hero {
  background-image: url(../images/hero_banner.webp);
  width: 100%;
  min-height: 100vh;
  background-size: cover;
  background-position: bottom;
  position: relative;
  overflow: hidden;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 0;
}

/* .hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90.7deg,
    rgb(24, 24, 24) 0.61%,
    rgba(24, 24, 24, 0.1) 50.01%,
    rgba(24, 24, 24, 0.2) 99.41%
  );
  z-index: -1;
} */

.hero__content {
  max-width: 800px;
}

.hero__badge {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero__badge-icon {
  width: 8px;
  height: 8px;
  background-color: white;
  border-radius: 50%;
}

.hero__badge-text {
  color: var(--white);
  font-weight: 600;
  font-size: 16px;
  margin: 0;
}

.hero__title {
  color: var(--white);
  font-size: 61px;
  font-weight: 600;
  letter-spacing: -1.5%;
  line-height: 106%;
  margin: 16px 0px 32px 0px;
}

.hero__description {
  color: var(--white);
  font-size: 16px;
  line-height: 160%;
  letter-spacing: 0%;
  margin: 0px 0px 40px 0px;
}

.hero__features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 0 40px;
}

.hero__feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
}

.hero__feature-text {
  font-weight: 600;
  font-size: 16px;
  line-height: 160%;
  margin: 0;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 0 0 16px;
}

.hero__stamp {
  position: absolute;
  bottom: 70px;
  right: 70px;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .hero {
    background-position: center;
  }

  .hero__title {
    font-size: 49px;
    line-height: 100%;
    letter-spacing: -1.5%;
    margin: 12px 0px 16px 0px;
  }

  .hero__description {
    margin: 0px 0px 32px 0px;
  }

  .hero__title-break {
    display: none;
  }

  .hero__description-break {
    display: none;
  }

  .hero__stamp {
    bottom: 16px;
    right: 16px;
  }

  .hero__stamp-image {
    width: 96px;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  .hero {
    background-position: center;
  }

  .hero__title {
    font-size: 49px;
    line-height: 100%;
    letter-spacing: -1.5%;
    margin: 12px 0px 16px 0px;
  }

  .hero__description {
    margin: 0px 0px 16px 0px;
  }

  .hero__title-break {
    display: none;
  }

  .hero__description-break {
    display: none;
  }

  .hero__stamp {
    bottom: 16px;
    right: 16px;
  }

  .hero__stamp-image {
    width: 96px;
  }
}

@media (max-width: 480px) {
  .hero {
    background-position: center;
  }

  .hero__title {
    font-size: 49px;
    line-height: 100%;
    letter-spacing: -1.5%;
    margin: 12px 0px 16px 0px;
  }

  .hero__description {
    margin: 0px 0px 32px 0px;
  }

  .hero__title-break {
    display: none;
  }

  .hero__description-break {
    display: none;
  }

  .hero__stamp {
    bottom: 16px;
    right: 16px;
  }

  .hero__stamp-image {
    width: 96px;
  }
}

/* Features section*/
.features {
  background-color: #ff5d1e26;
  padding: 24px 0;
}

.features ul {
  display: flex;
  padding: 0;
  list-style: none;
  gap: 24px;
}

.features ul li {
  display: flex;
  align-items: center;
  padding: 30px;
  border-radius: 20px;
  background-color: #ffffff;
  gap: 24px;
}

.features ul li figure {
  flex: 0 0 56px;
}

@media (max-width: 767px) {
  .features ul {
    flex-direction: column;
  }
}

/* Awards Section */

.award {
  margin: 60px 0px 120px 0px;
}

.award__title {
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  text-align: center;
  margin: 0px 0px 40px 0px;
}

.award__marquee {
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.award__marquee::before,
.award__marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 60px;
  height: 100%;
  z-index: 9;
  pointer-events: none;
}

.award__marquee::before {
  left: 0;
  background: linear-gradient(to right, rgb(255, 255, 255), transparent);
}

.award__marquee::after {
  right: 0;
  background: linear-gradient(to left, rgb(255, 255, 255), transparent);
}

.award__marquee-content {
  display: flex;
  width: fit-content;
  animation: scroll 30s linear infinite;
}

.award__marquee-track {
  display: flex;
  gap: 91px;
  flex-shrink: 0;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.award__logo {
  flex-shrink: 0;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .award {
    margin: 32px 0px 48px 0px;
  }

  .award__title {
    margin: 0px 0px 24px 0px;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  .award {
    margin: 32px 0px 48px 0px;
  }

  .award__title {
    margin: 0px 0px 24px 0px;
  }
}

@media (max-width: 480px) {
  .award {
    margin: 32px 0px 48px 0px;
  }

  .award__title {
    margin: 0px 0px 24px 0px;
  }
}

@media (max-width: 767px) {
  .award__marquee-track {
    gap: 24px;
  }
}

/* About Section */

.about {
  padding: 100px 0px;
}

.about__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 110px;
}

.about__content {
  max-width: 50%;
}

.about__badge {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.about__badge-icon {
  background-color: black;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.about__badge-text {
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  margin: 0px 0px 0px 0px;
}

.about__title {
  font-weight: 700;
  font-size: 49px;
  line-height: 106%;
  letter-spacing: -1%;
  margin: 0px 0px 27px 0px;
}

.about__description {
  color: rgba(0, 0, 0, 0.7);
  font-size: 18px;
  line-height: 160%;
  letter-spacing: 0%;
}

.about__description--last {
  margin: 24px 0px 40px 0px;
}

.about__features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about__feature {
  display: flex;
  align-items: center;
  gap: 8px;
}

.about__feature-text {
  font-weight: 600;
  font-size: 16px;
  line-height: 160%;
  margin: 0;
}

.about__image {
  width: 100%;
  max-width: 40%;
}

.about__image-img {
  width: 100%;
  object-fit: cover;
  border-radius: 24px;
}

@media (max-width: 1024px) {
  .about__image {
    max-width: 100%;
  }

  .about {
    padding: 50px 0px 20px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .about__container {
    flex-direction: column-reverse;
    gap: 24px;
  }

  .about__content {
    max-width: 100%;
  }

  .about__description {
    font-size: 16px;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  .about__container {
    flex-direction: column-reverse;
    gap: 24px;
  }

  .about__content {
    max-width: 100%;
  }

  .about__description {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .about {
    margin: 0px 0px 16px 0px;
  }

  .about__container {
    flex-direction: column-reverse;
    gap: 24px;
  }

  .about__title {
    font-size: 38px;
    margin: 0px 0px 20px 0px;
  }

  .about__description--last {
    margin: 16px 0px 24px 0px;
  }

  .about__content {
    max-width: 100%;
  }

  .about__description {
    font-size: 16px;
  }
}

/* Services Section */

.services {
  background-image: url("../images/services-background.png");
  padding-top: 80px;
  padding-bottom: 300px;
  z-index: 10;
}

.services__header {
  max-width: 700px;
  margin-inline: auto;
}

.services__badge {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.services__badge-icon {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: black;
}

.services__badge-text {
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
}

.services__title {
  text-align: center;
  font-weight: 700;
  font-size: 49px;
  letter-spacing: -1%;
  margin: 8px auto 40px;
  line-height: 106%;
  max-width: 900px;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.services__card {
  background: rgba(255, 253, 246, 1);
  border-radius: 30px;
  position: relative;
}

.services__card-content {
  padding: 40px 40px 27px 40px;
}

.services__card-title {
  font-weight: 700;
  font-size: 39px;
  line-height: 106%;
  letter-spacing: -1%;
  margin: 0px 0px 4px 0px;
}

.services__card-description {
  font-size: 20px;
  line-height: 160%;
}

.services__card-image {
  width: 100%;
  object-fit: cover;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}

.services__card-new-icon {
  position: absolute;
  top: 3.4px;
  right: 5.1px;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .services {
    padding-top: 48px;
    padding-bottom: 250px;
  }

  .services__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .services__title {
    font-size: 28px;
    margin: 0px 0px 24px 0px;
  }

  .services__card-title {
    font-size: 25px;
  }

  .services__card-description {
    font-size: 16px;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  .services {
    padding-top: 48px;
    padding-bottom: 250px;
  }

  .services__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .services__title {
    font-size: 28px;
    margin: 0px 0px 24px 0px;
  }

  .services__card-title {
    font-size: 25px;
  }

  .services__card-description {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .services {
    padding-top: 48px;
    padding-bottom: 250px;
  }

  .services__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .services__title {
    font-size: 28px;
    margin: 0px 0px 24px 0px;
  }

  .services__card-title {
    font-size: 25px;
  }

  .services__card-description {
    font-size: 16px;
  }
}

/* Benefits Section */

.benefits {
  background-image: url("../images/benefits-background-union.png");
  background-size: cover;
  background-position: left top;
  padding-top: 150px;
  padding-bottom: 98px;
  margin: -200px 0px 0px 0px;
  z-index: 20;
}

.benefits__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.benefits__content {
  max-width: 50%;
}

.benefits__badge {
  display: flex;
  align-items: center;
  gap: 10px;
}

.benefits__badge-icon {
  width: 8px;
  height: 8px;
  background-color: black;
  border-radius: 50%;
}

.benefits__badge-text {
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
}

.benefits__title {
  font-weight: 700;
  font-size: 49px;
  letter-spacing: -1%;
  line-height: 106%;
  margin: 8px 0px 40px 0px;
}

.benefits__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0;
}

.benefits__list-item {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.benefits__list-text {
  font-size: 18px;
  line-height: 160%;
  margin: 0;
}

.benefits__list-label {
  font-weight: 700;
}

.benefits__image-img {
  width: 100%;
  object-fit: contain;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .benefits {
    padding-bottom: 48px;
  }

  .benefits__title {
    font-size: 31px;
    margin: 0px 0px 24px 0px;
  }

  .benefits__container {
    flex-direction: column-reverse;
  }

  .benefits__list {
    gap: 16px;
  }

  .benefits__list-item {
    align-items: flex-start;
  }

  .benefits__content {
    max-width: 100%;
    width: 100%;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  .benefits {
    padding-bottom: 48px;
  }

  .benefits__title {
    font-size: 31px;
    margin: 0px 0px 24px 0px;
  }

  .benefits__container {
    flex-direction: column-reverse;
  }

  .benefits__list {
    gap: 16px;
  }

  .benefits__list-item {
    align-items: flex-start;
  }

  .benefits__content {
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .benefits {
    padding-bottom: 48px;
  }

  .benefits__title {
    font-size: 31px;
    margin: 0px 0px 24px 0px;
  }

  .benefits__container {
    flex-direction: column-reverse;
  }

  .benefits__list {
    gap: 16px;
  }

  .benefits__list-item {
    align-items: flex-start;
  }

  .benefits__content {
    max-width: 100%;
    width: 100%;
  }
}

/* Eligibility Section */

.eligibility {
  padding-top: 130px;
  padding-bottom: 174px;
}

.eligibility__header {
  max-width: 640px;
  margin-inline: auto;
}

.eligibility__grid {
  max-width: 50%;
  width: 100%;
}

.eligibility__badge {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.eligibility__badge-icon {
  width: 8px;
  height: 8px;
  background-color: black;
  border-radius: 50%;
}

.eligibility__badge-text {
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
}

.eligibility__title {
  font-weight: 700;
  font-size: 49px;
  letter-spacing: -1%;
  line-height: 106%;
  text-align: center;
  margin: 8px 0px 24px 0px;
}

.eligibility__dsc {
  font-size: 16px;
  font-weight: 400;
  color: #000;
  text-align: center;
  margin: 0px 0px 40px 0px;
}

.eligibility__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 49px;
}

.eligibility__row--reverse {
  margin: 76px 0px 0px 0px;
}

.eligibility__image-wrapper {
  width: 100%;
  max-width: 50%;
}

.eligibility__image {
  width: 100%;
}

.eligibility__card {
  display: flex;
  gap: 24px;
  padding: 16px 0px;
  border-bottom: 1px solid var(--color-border);
}

.eligibility__card:first-child {
  padding-top: 0px;
}

.eligibility__card:last-child {
  border-bottom: none;
}

.eligibility__card-icon {
  height: fit-content;
}

.eligibility__card-title {
  font-weight: 600;
  font-size: 25px;
  line-height: 106%;
  margin: 0px 0px 8px 0px;
}

.eligibility__card-description {
  font-size: 18px;
  line-height: 160%;
  color: rgba(6, 30, 0, 1);
  margin: 0;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .eligibility {
    padding-top: 48px;
    padding-bottom: 16px;
  }

  .eligibility__title {
    font-size: 31px;
    margin: 0px 0px 24px 0px;
  }

  .eligibility__dsc {
    margin: 0px 0px 40px 0px;
  }

  .eligibility__title-break {
    display: none;
  }

  .eligibility__row {
    flex-direction: column;
    gap: 24px;
  }

  .eligibility__image-wrapper,
  .eligibility__grid {
    max-width: 100%;
    width: 100%;
  }

  .eligibility__row--reverse {
    flex-direction: column-reverse;
    margin: 32px 0px 0px 0px;
  }

  .eligibility__card {
    gap: 12px;
  }

  .eligibility__card-title {
    font-size: 20px;
    margin: 11px 0px 0px 0px;
  }

  .eligibility__card-description {
    font-size: 16px;
    line-height: 160%;
  }
}

@media (max-width: 767px) {
  .eligibility {
    padding-top: 48px;
    padding-bottom: 16px;
  }

  .eligibility__image-wrapper,
  .eligibility__grid {
    max-width: 100%;
    width: 100%;
  }

  .eligibility__title {
    font-size: 31px;
    margin: 0px 0px 20px 0px;
  }

  .eligibility__dsc {
    margin: 0px 0px 32px 0px;
  }

  .eligibility__title-break {
    display: none;
  }

  .eligibility__row {
    flex-direction: column;
    gap: 24px;
  }

  .eligibility__row--reverse {
    flex-direction: column-reverse;
    margin: 32px 0px 0px 0px;
  }

  .eligibility__card {
    gap: 12px;
  }

  .eligibility__card-title {
    font-size: 20px;
    margin: 11px 0px 0px 0px;
  }

  .eligibility__card-description {
    font-size: 16px;
    line-height: 160%;
  }

  .eligibility__grid {
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .eligibility {
    padding-top: 48px;
    padding-bottom: 16px;
  }

  .eligibility__title {
    font-size: 31px;
    margin: 0px 0px 16px 0px;
  }

  .eligibility__dsc {
    margin: 0px 0px 24px 0px;
  }

  .eligibility__title-break {
    display: none;
  }

  .eligibility__row {
    flex-direction: column;
    gap: 24px;
  }

  .eligibility__row--reverse {
    flex-direction: column-reverse;
    margin: 32px 0px 0px 0px;
  }

  .eligibility__card {
    gap: 12px;
  }

  .eligibility__card-title {
    font-size: 20px;
    margin: 11px 0px 0px 0px;
  }

  .eligibility__card-description {
    font-size: 16px;
    line-height: 160%;
  }

  .eligibility__grid {
    max-width: 100%;
    width: 100%;
  }
}

/* Journey Section */

.journey {
  padding-bottom: 173px;
}

.journey__badge {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.journey__badge-icon {
  width: 8px;
  height: 8px;
  background-color: black;
  border-radius: 50%;
}

.journey__badge-text {
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
}

.journey__title {
  font-weight: 700;
  font-size: 49px;
  letter-spacing: -1%;
  line-height: 106%;
  text-align: center;
  margin: 8px 0px 40px 0px;
}

.journey__steps {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 20px;
}

.journey__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

.journey__step-title {
  margin: 24px 0px 8px 0px;
  font-weight: 600;
  font-size: 25px;
  line-height: 106%;
  letter-spacing: -1%;
}

.journey__step-description {
  font-size: 18px;
  line-height: 160%;
  letter-spacing: 0%;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .journey {
    padding-top: 48px;
    padding-bottom: 34px;
  }

  .journey__title {
    font-size: 31px;
    margin: 0px 0px 24px 0px;
  }

  .journey__steps {
    flex-direction: column;
    gap: 18px;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  .journey {
    padding-top: 48px;
    padding-bottom: 34px;
  }

  .journey__title {
    font-size: 31px;
    margin: 0px 0px 24px 0px;
  }

  .journey__steps {
    flex-direction: column;
    gap: 18px;
  }
}

@media (max-width: 480px) {
  .journey {
    padding-top: 48px;
    padding-bottom: 34px;
  }

  .journey__title {
    font-size: 31px;
    margin: 0px 0px 24px 0px;
  }

  .journey__steps {
    flex-direction: column;
    gap: 18px;
  }
}

/* Our Application */

.application {
  background-image: url("../images/our-application-background.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 150px;
  background-position: top left;
  background-size: 100% 75%;
}

.application__badge {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.application__badge-icon {
  width: 8px;
  height: 8px;
  background-color: black;
  border-radius: 50%;
}

.application__badge-text {
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
}

.application__title {
  font-weight: 700;
  font-size: 49px;
  letter-spacing: -1%;
  line-height: 106%;
  text-align: center;
  margin: 8px 0px 24px 0px;
  max-width: 860px;
  margin-inline: auto;
}

.application__description {
  font-size: 16px;
  line-height: 160%;
  text-align: center;
  margin: 0px 0px 40px 0px;
  max-width: 860px;
  margin-inline: auto;
}

.application__description:not(:last-of-type) {
  margin-bottom: 16px;
}

.application__stores {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.application__store-badge {
  width: 100%;
  cursor: pointer;
}

.application__banner-container {
  display: flex;
  justify-content: center;
  margin: 35px 0px 0px 0px;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .application__banner-container {
    width: 100%;
  }

  .application__banner {
    width: 100%;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  .application__banner-container {
    width: 100%;
  }

  .application__banner {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .application {
    padding-top: 60px;
  }

  .application__title {
    font-size: 31px;
    margin: 0px 0px 16px 0px;
  }

  .application__title-break {
    display: none;
  }

  .application__description {
    font-size: 14px;
    margin: 0px 0px 24px 0px;
  }

  .application__description-break {
    display: none;
  }

  .application__banner-container {
    width: 100%;
  }

  .application__banner {
    width: 100%;
  }

  .application__banner-container {
    margin: 32px 0px 0px 0px;
  }
}

/* Early Access */

.early-access {
  padding: 130px 0px;
}

.early-access__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 90px;
}

.early-access__image-wrapper {
  width: 100%;
  max-width: 600px;
  aspect-ratio: 600 / 667;
}

.early-access__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

.early-access__title {
  font-weight: 700;
  font-size: 32px;
  line-height: 106%;
  letter-spacing: -1%;
  margin: 0px 0px 16px 0px;
}

.early-access__description {
  font-size: 18px;
  line-height: 160%;
  margin: 0 0 24px;
}

.early-access__subtitle {
  font-size: 700px;
  font-size: 25px;
  line-height: 106%;
  letter-spacing: -1%;
  margin: 24px 0px 24px 0px;
}

.early-access__form-wrapper {
  max-width: 50%;
}

.early-access__form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.early-access__form-group {
  display: flex;
  flex-direction: column;
  /* gap: 5px; */
  width: 100%;
}

.early-access__form-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
}

.early-access__label {
  font-weight: 600;
  font-size: 18px;
  line-height: 106%;
  letter-spacing: -1%;
}

.early-access__input {
  border: none;
  outline: none;
  padding: 16px 0px;
  border-bottom: 2px solid var(--color-border);
  font-size: 18px;
  font-family: var(--font-primary);
}

.early-access__select {
  padding: 16px 0px;
  border: none;
  outline: none;
  border-bottom: 2px solid var(--color-border);
  font-size: 18px;
  font-family: var(--font-primary);
}

.early-access__form-group--checkbox {
  display: flex;
  gap: 12px;
  flex-direction: row;
}

.early-access__checkbox {
  width: 20px;
  height: 26px;
  accent-color: var(--color-primary);
}

.early-access__checkbox-label {
  font-weight: 300;
  font-size: 16px;
  line-height: 160%;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .early-access {
    padding: 48px 0px;
  }

  .early-access__content {
    flex-direction: column;
    gap: 32px;
  }

  .early-access__form-wrapper {
    width: 100%;
    max-width: 100%;
  }

  .early-access__title {
    font-size: 28px;
    margin: 0px 0px 16px 0px;
  }

  .early-access__subtitle {
    margin: 0px 0px 32px 0px;
  }

  .early-access__form {
    gap: 20px;
  }

  .early-access__form-row {
    flex-direction: column;
    gap: 20px;
  }

  .early-access__form-group--checkbox {
    margin: 12px 0px 0px 0px;
  }

  .early-access__button {
    margin: 4px 0px 0px 0px;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  .early-access {
    padding: 48px 0px;
  }

  .early-access__content {
    flex-direction: column;
    gap: 32px;
  }

  .early-access__title {
    font-size: 28px;
    margin: 0px 0px 16px 0px;
  }

  .early-access__subtitle {
    margin: 0px 0px 32px 0px;
  }

  .early-access__form {
    gap: 20px;
  }

  .early-access__form-wrapper {
    width: 100%;
    max-width: 100%;
  }

  .early-access__form-row {
    flex-direction: column;
    gap: 20px;
  }

  .early-access__form-group--checkbox {
    margin: 12px 0px 0px 0px;
  }

  .early-access__button {
    margin: 4px 0px 0px 0px;
  }
}

@media (max-width: 480px) {
  .early-access {
    padding: 48px 0px;
  }

  .early-access__content {
    flex-direction: column;
    gap: 32px;
  }

  .early-access__title {
    font-size: 28px;
    margin: 0px 0px 16px 0px;
  }

  .early-access__subtitle {
    margin: 0px 0px 32px 0px;
  }

  .early-access__form {
    gap: 20px;
  }

  .early-access__form-row {
    flex-direction: column;
    gap: 20px;
  }

  .early-access__form-group--checkbox {
    margin: 12px 0px 0px 0px;
  }

  .early-access__button {
    margin: 4px 0px 0px 0px;
  }

  .early-access__form-wrapper {
    width: 100%;
    max-width: 100%;
  }
}

/* Testimonials Sectioin */

.testimonials {
  padding-top: 72px;
  padding-bottom: 90px;
  background-color: rgba(246, 245, 240, 1);
}

.testimonials__header {
  max-width: 500px;
  margin-inline: auto;
}

.testimonials__badge {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.testimonials__badge-icon {
  width: 8px;
  height: 8px;
  background-color: black;
  border-radius: 50%;
}

.testimonials__badge-text {
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
}

.testimonials__title {
  font-weight: 700;
  font-size: 49px;
  letter-spacing: -1%;
  line-height: 106%;
  text-align: center;
  margin: 8px 0px 34px 0px;
}

.testimonials__swiper {
  width: 100vw;
}

.testimonials__swiper .swiper-wrapper {
  display: flex;
}

.testimonials__slide {
  background-image: url("../images/tetsimonial-card-background.png");
  background-size: cover;
  background-position: center;
  padding: 30px;
  border-radius: 20px;
  width: 640px;
  max-width: 70%;
  height: auto;
}

.testimonials__slide-header {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 0px 0px 16px 0px;
}

.testimonials__slide-name {
  font-weight: 700;
  font-size: 18px;
  line-height: 106%;
  letter-spacing: -1%;
  margin: 0px 0px 0px;
}

.testimonials__slide-role {
  font-size: 14px;
  line-height: 160%;
}

.testimonials__slide-text {
  font-size: 18px;
  line-height: 160%;
}

.testimonials__controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 38px;
  margin: 10px 0px 0px 0px;
}

.testimonials-progressbar {
  flex: 1;
  height: 2px;
  background-color: var(--color-border);
  border-radius: 1px;
}

.testimonials-progressbar__fill {
  width: 0%;
  height: 100%;
  background-color: var(--color-primary);
  transition: width 0.3s ease;
}

.testimonials__navigation {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonials__next-button,
.testimonials__prev-button {
  background: url(../images/button-gradient-bg.webp) no-repeat;
  background-size: cover;
  height: 48px;
  width: 48px;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--white);
  transition: 0.3s;
  cursor: pointer;
}

.testimonials__next-button:hover,
.testimonials__prev-button:hover {
  color: var(--white);
  background-color: var(--color-primary);
}

.testimonials__pagination {
  display: flex;
  font-size: 16px;
  line-height: 160%;
  font-weight: 600;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  min-width: 40px;
}

.testimonials__pagination span {
  color: var(--color-primary);
  margin: 0px 4px 0px 0px;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .testimonials {
    padding-top: 48px;
    padding-bottom: 48px;
    background-color: rgba(246, 245, 240, 1);
  }

  .testimonials__container {
    padding-right: 0px;
  }

  .testimonials__title {
    font-size: 31px;
    margin: 0px 0px 24px 0px;
  }

  .testimonials__slide {
    padding: 16px;
  }

  .testimonials__slide-header {
    margin: 0px 0px 16px 0px;
  }

  .testimonials__slide-text {
    font-size: 14px;
  }

  .testimonials__controls {
    display: none;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  .testimonials {
    padding-top: 48px;
    padding-bottom: 48px;
    background-color: rgba(246, 245, 240, 1);
  }

  .testimonials__container {
    padding-right: 0px;
  }

  .testimonials__title {
    font-size: 31px;
    margin: 0px 0px 24px 0px;
  }

  .testimonials__slide {
    padding: 16px;
  }

  .testimonials__slide-header {
    margin: 0px 0px 16px 0px;
  }

  .testimonials__slide-text {
    font-size: 14px;
  }

  .testimonials__controls {
    display: none;
  }
}

@media (max-width: 767px) {
  .testimonials__slide {
    max-width: 80%;
  }
}

@media (max-width: 480px) {
  /* .testimonials__slide {
    max-width: 90%;
  } */

  .testimonials {
    padding-top: 48px;
    padding-bottom: 48px;
    background-color: rgba(246, 245, 240, 1);
  }

  .testimonials__container {
    padding-right: 0px;
  }

  .testimonials__title {
    font-size: 31px;
    margin: 0px 0px 24px 0px;
  }

  .testimonials__slide {
    padding: 16px;
  }

  .testimonials__slide-header {
    margin: 0px 0px 16px 0px;
  }

  .testimonials__slide-text {
    font-size: 14px;
  }

  .testimonials__controls {
    display: none;
  }
}

/* FAQS Section */

.faq {
  padding-top: 130px;
  padding-bottom: 74px;
}

.faq .mw-container {
  max-width: 890px;
}

.faq__title {
  font-weight: 700;
  font-size: 48px;
  letter-spacing: -1%;
  line-height: 106%;
  text-align: center;
  margin: 0px 0px 48px 0px;
}

.faq__title-break {
  display: none;
}

.faq__list {
  padding-top: 39px;
  border-bottom: 1px solid var(--color-border);
}

.faq__list--last {
  border-bottom: none;
  padding-bottom: 0px;
}

.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0px 0px 16px 0px;
  cursor: pointer;
}

.faq__question-text {
  font-size: 25px;
  font-weight: 600;
  line-height: 106%;
  letter-spacing: -1%;
}

.faq__answer {
  display: none;
  font-size: 18px;
  line-height: 160%;
  margin: 0px 0px 16px 0px;
}

.faq__toggle-icon {
  background: url(../images/button-gradient-bg.webp) no-repeat;
  background-size: cover;
  height: 48px;
  width: 48px;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--white);
  transition: 0.3s;
  cursor: pointer;
}

.faq__item.active .faq__toggle-icon {
  color: var(--white);
  background-color: var(--color-primary);
  transform: rotate(180deg);
}

.answer {
  display: block;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .faq {
    padding: 48px 0px;
  }

  .faq__title {
    font-size: 31px;
    line-height: 106%;
    margin: 0px 0px 24px 0px;
  }

  .faq__title-break {
    display: block;
  }

  .first-faq__list {
    padding-top: 0px;
  }

  .faq__list {
    padding-top: 24px;
  }

  .faq__question-text {
    font-size: 20px;
  }

  .faq__answer {
    font-size: 16px;
  }

  .faq__list--last {
    border-bottom: none;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  .faq {
    padding: 48px 0px;
  }

  .faq__title {
    font-size: 31px;
    line-height: 106%;
    margin: 0px 0px 24px 0px;
  }

  .faq__title-break {
    display: block;
  }

  .first-faq__list {
    padding-top: 0px;
  }

  .faq__list {
    padding-top: 24px;
  }

  .faq__question-text {
    font-size: 20px;
  }

  .faq__answer {
    font-size: 16px;
  }

  .faq__list--last {
    border-bottom: none;
  }
}

@media (max-width: 480px) {
  .faq {
    padding: 48px 0px;
  }

  .faq__title {
    font-size: 31px;
    line-height: 106%;
    margin: 0px 0px 24px 0px;
  }

  .faq__title-break {
    display: block;
  }

  .first-faq__list {
    padding-top: 0px;
  }

  .faq__list {
    padding-top: 24px;
  }

  .faq__question-text {
    font-size: 20px;
  }

  .faq__answer {
    font-size: 16px;
  }

  .faq__list--last {
    border-bottom: none;
  }
}

/* Footer Section */

.footer {
  background-color: black;
  color: white;
  position: relative;
}

.footer__container {
  display: flex;
  justify-content: space-between;
  padding-top: 70px;
  padding-bottom: 48px;
  gap: 15px;
}

.footer__brand {
  display: flex;
  gap: 16px;
  max-width: 475px;
}

.footer__logo {
  width: 68px;
  height: 60px;
  object-fit: contain;
}

.footer__description {
  font-size: 16px;
  line-height: 160%;
  margin-bottom: 16px;
}

.footer__description.color-primary {
  color: var(--color-primary);
}

.footer__links-title {
  font-size: 12px;
  line-height: 100%;
  margin: 0px 0px 32px 0px;
  color: #999999;
}

.footer__nav-list {
  /* max-width: 406px; */
  display: flex;
  flex-wrap: wrap;
  row-gap: 15px;
  padding: 0;
}

.footer__nav-item {
  list-style: none;
  white-space: nowrap;
}

.footer__nav-link {
  text-decoration: none;
  color: white;
  font-size: 25px;
  font-weight: 400;
  font-family: var(--font-primary);
  line-height: 1;
}

.footer__nav-separator {
  margin: 0 10px;
  background-color: #999999;
  height: 100%;
  width: 1px;
  transform: rotate(15deg) translateY(6px);
  display: inline-block;
}

.footer__contact-title {
  font-size: 12px;
  line-height: 100%;
  margin: 0px 0px 32px 0px;
  color: #999999;
}

.footer__contact-phone,
.footer__contact-email {
  font-size: 25px;
  line-height: 160%;
  margin: 0px 0px 4px 0px;
  color: var(--color-primary);
}

.footer__info {
  display: flex;
  gap: 100px;
}

.footer__social-title {
  font-size: 12px;
  line-height: 100%;
  margin: 0px 0px 32px 0px;
  color: #999999;
}

.footer__social-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0px;
}

.footer__social-item {
  list-style: none;
}

.footer__social-link {
  text-decoration: none;
  font-size: 16px;
  line-height: 160%;
  color: white;
}

.footer__copyright {
  border-top: 1px solid rgba(153, 153, 153, 0.1);
}

.footer__copyright-text {
  padding: 16px 0px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  line-height: 100%;
  text-align: center;
}

.footer__copyright-br {
  display: none;
}

.footer__top-shape {
  position: absolute;
  top: -43px;
  right: 70px;
  z-index: 100;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .footer__container {
    flex-wrap: wrap;
    /* flex-direction: column; */
    padding-top: 48px;
    padding-bottom: 32px;
    gap: 32px;
  }

  .footer__brand,
  .footer__nav-list {
    max-width: 100%;
  }

  .footer__info {
    display: flex;
    gap: 16px;
  }

  .footer__copyright-br {
    display: block;
  }

  .footer__top-shape {
    display: none;
  }

  .footer__links-title,
  .footer__contact-title,
  .footer__social-title {
    margin: 0px 0px 16px 0px;
  }

  .footer__copyright-text {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  .footer__container {
    flex-wrap: wrap;
    /* flex-direction: column; */
    padding-top: 48px;
    padding-bottom: 32px;
    gap: 32px;
  }

  .footer__brand,
  .footer__nav-list {
    max-width: 100%;
  }

  .footer__info {
    display: flex;
    gap: 16px;
  }

  .footer__copyright-br {
    display: block;
  }

  .footer__top-shape {
    display: none;
  }

  .footer__links-title,
  .footer__contact-title,
  .footer__social-title {
    margin: 0px 0px 16px 0px;
  }

  .footer__copyright-text {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
}

@media (max-width: 480px) {
  .footer__container {
    flex-wrap: wrap;

    /* flex-direction: column; */
    padding-top: 48px;
    padding-bottom: 32px;
    gap: 32px;
  }

  .footer__brand,
  .footer__nav-list {
    max-width: 100%;
  }

  .footer__info {
    display: flex;
    gap: 16px;
  }

  .footer__copyright-br {
    display: block;
  }

  .footer__top-shape {
    display: none;
  }

  .footer__links-title,
  .footer__contact-title,
  .footer__social-title {
    margin: 0px 0px 16px 0px;
  }

  .footer__copyright-text {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
}

/* --- Info Cards --- */
.info-cards {
  background-color: #ff5d1e26;
  padding: 24px 0;
}

.info-cards__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 24px;
}

.info-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.info-card__icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.info-card__text {
  font-size: 18px;
  font-weight: 400;
  color: #000000;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .info-cards__grid {
    gap: 16px;
  }

  .info-card {
    padding: 20px;
  }

  .info-card__text {
    font-size: 16px;
  }
}

/* --- Comparison & Process --- */
.suitability {
  padding: 120px 0 0;
}

.suitability__header {
  text-align: center;
  max-width: 630px;
  margin: 0 auto 40px;
}

.suitability__header__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.suitability__header__badge::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #000;
  border-radius: 50%;
}

.suitability__header__title {
  font-size: 49px;
  font-weight: 700;
  margin: 0 0 24px;
  letter-spacing: -0.02em;
}

.suitability__header__description {
  font-size: 18px;
  color: #4a4a4a;
}

.suitability__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.suitability__box {
  background: #f6f5f0;
  border-radius: 24px;
  padding: 24px;
}

.suitability__box__title {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 24px;
}

.list {
  list-style: none;
}

.list__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 600;
}

.list__item:last-child {
  margin-bottom: 0;
}

.list__icon {
  color: #ff6b35;
  flex-shrink: 0;
  margin-top: 2px;
}

@media (max-width: 991px) {
  .suitability {
    padding: 60px 0 0;
  }

  .suitability__grid {
    grid-template-columns: 1fr;
  }

  .suitability__header__title {
    font-size: 40px;
    margin: 0 0 20px;
  }

  .suitability__box__title {
    font-size: 24px;
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .suitability__header__title {
    font-size: 32px;
    margin: 0 0 16px;
  }

  .suitability__box__title {
    font-size: 22px;
    margin-bottom: 16px;
  }
}

/* --- Process --- */
.process {
  margin-bottom: 120px;
}

.process__steps {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 80px;
}

.process__step {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}

.process__step__number {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #d48c6a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  font-weight: 600;
  box-shadow: inset 0 0 16px 0 #f2f2f2;
}

.process__step__text {
  flex: 1;
  font-size: 25px;
  font-weight: 600;
}

.info-banner {
  background: #f5f4ee;
  border-radius: 24px;
  padding: 40px;
  text-align: center;
}

.info-banner__title {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 24px;
}

.info-banner .list {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.info-banner .list__item {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .process__steps {
    flex-wrap: wrap;
  }

  .process__step {
    flex: auto;
    min-width: 300px;
  }

  .process__step__number {
    width: 56px;
    height: 56px;
  }

  .process__step__number,
  .process__step__text {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .info-banner {
    text-align: start;
  }

  .info-banner {
    padding: 24px;
  }

  .info-banner .list {
    justify-content: flex-start;
  }

  .process__step__number,
  .process__step__text {
    font-size: 20px;
  }
}

/* --- Regional Split --- */
.regional {
}

.regional .mw-container {
  max-width: 1110px;
  padding-block: 100px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.regional__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
}

.regional__title {
  font-size: 49px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
}

.regional__text {
  font-size: 18px;
  color: #000000;
  line-height: 1.6;
}

.map-container {
  position: relative;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
}

.map-container img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 991px) {
  .regional .mw-container {
    padding-block: 70px;
  }

  .regional__title {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  .regional .mw-container {
    padding-block: 50px;
  }

  .regional__layout {
    grid-template-columns: 1fr;
  }

  .regional__title {
    font-size: 32px;
  }

  .regional__text {
    font-size: 16px;
  }
}
