@charset "UTF-8";
/* Base */
/* Reset and base styles  */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

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

/* Links */
a, a:link, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */
aside, nav, footer, header, section, main {
  display: block;
}

h1, h2, h3, h4, h5, h6, p {
  font-size: inherit;
  font-weight: inherit;
}

ul, ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

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

address {
  font-style: normal;
}

/* Form */
input, textarea, button, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button, input[type=submit] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus, input:active,
button:focus, button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
html.body-overflow {
  overflow-y: hidden !important;
}

body {
  font-family: "Onest", sans-serif;
  background-color: #232830;
  position: relative;
  color: #fff;
}

body.lock {
  overflow: hidden;
}

main {
  overflow: hidden;
}

.container {
  max-width: 1310px;
  width: 100%;
  margin: 0 auto;
  padding-left: 30px;
  padding-right: 30px;
  position: relative;
}

/* Regular (400) */
@font-face {
  font-family: "Onest";
  font-display: swap;
  src: url("../fonts/OnestRegular.woff2") format("woff2"), 
    url("../fonts/OnestRegular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
/* Medium (500) */
@font-face {
  font-family: "Onest";
  font-display: swap;
  src: url("../fonts/OnestMedium.woff2") format("woff2"), 
    url("../fonts/OnestMedium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
/* SemiBold (600) */
@font-face {
  font-family: "Onest";
  font-display: swap;
  src: url("../fonts/OnestExtraBold.woff2") format("woff2"), 
    url("../fonts/OnestExtraBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}
/* Bold (700) */
@font-face {
  font-family: "Onest";
  font-display: swap;
  src: url("../fonts/OnestBold.woff2") format("woff2"), 
    url("../fonts/OnestBold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
/* Blocks */
.footer {
  background-color: #252830;
  color: #ffffff;
  padding: 60px 0 20px 0;
  width: 100%;
  box-sizing: border-box;
  margin-top: 50px;
}
.footer .footer-body {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .footer .footer-body {
    justify-content: center;
  }
  .footer .footer-body .col {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.footer .footer-body .footer-nav-col {
  flex: 2;
}
.footer .footer-body .footer-nav-col .footer__menu {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}
.footer .footer-body .footer-nav-col .footer__menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer-body .footer-nav-col .footer__menu ul .menu-title {
  color: #6b7280;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: default;
}
.footer .footer-body .footer-nav-col .footer__menu ul li {
  margin-bottom: 12px;
}
.footer .footer-body .footer-nav-col .footer__menu ul li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: opacity 0.2s;
}
.footer .footer-body .footer-nav-col .footer__menu ul li a:hover {
  opacity: 0.7;
}
.footer .footer-body .footer-contacts-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  gap: 30px;
}
.footer .footer-body .footer-contacts-col .footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer .footer-body .footer-contacts-col .footer__contacts a {
  color: #ffffff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  transition: color 0.2s;
}
.footer .footer-body .footer-contacts-col .footer__contacts a.email {
  font-size: 16px;
  color: #ea5040;
}
.footer .footer-body .footer-contacts-col .footer__contacts a:hover {
  opacity: 0.8;
}
.footer .footer-body .footer-contacts-col .footer__social p {
  font-size: 12px;
  text-transform: uppercase;
  color: #6b7280;
  margin: 0 0 10px 0;
  font-weight: 700;
}
.footer .footer-body .footer-contacts-col .footer__social ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 10px;
  justify-content: flex-end;
}
.footer .footer-body .footer-contacts-col .footer__social ul li a img {
  width: 24px;
  height: 24px;
  transition: transform 0.2s;
}
.footer .footer-body .footer-contacts-col .footer__social ul li a img:hover {
  transform: scale(1.1);
}
.footer .footer-body .footer-contacts-col .footer__app p {
  font-size: 12px;
  text-transform: uppercase;
  color: #6b7280;
  margin: 0 0 10px 0;
  font-weight: 700;
}
.footer .footer-body .footer-contacts-col .footer__app ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 10px;
  justify-content: flex-end;
}
.footer .footer-body .footer-contacts-col .footer__app ul li a img {
  height: 35px;
  width: auto;
}
.footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #fff;
  width: 100%;
}
.footer .footer-bottom .footer-bottom__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
}
@media screen and (max-width: 568px) {
  .footer .footer-bottom .footer-bottom__link {
    flex-direction: column;
  }
}
.footer .footer-bottom .footer-bottom__link p {
  margin: 0;
}
.footer .footer-bottom .footer-bottom__link .legal-links {
  display: flex;
  gap: 20px;
}
.footer .footer-bottom .footer-bottom__link .legal-links a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s;
}
.footer .footer-bottom .footer-bottom__link .legal-links a:hover {
  color: #ffffff;
}
.footer .footer-bottom .footer-bottom__oxbox a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
}
.footer .footer-bottom .footer-bottom__oxbox a:hover {
  text-decoration: underline;
}
.footer .footel-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .footer .footel-contact {
    justify-content: center;
  }
}
.footer .footel-contact .contact-list {
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .footer .footel-contact .contact-list {
    justify-content: center;
  }
}
.footer .footel-contact .contact-list .phone,
.footer .footel-contact .contact-list .email {
  color: #ffffff;
  font-size: 20px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}
.footer .footel-contact .contact-list .phone:hover,
.footer .footel-contact .contact-list .email:hover {
  color: #ff4b45;
}
.footer .footel-contact .contact-social {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 8px;
}
@media screen and (max-width: 768px) {
  .footer .footel-contact .contact-social {
    justify-content: center;
  }
}
.footer .footel-contact .contact-social a {
  -webkit-transition: background 0.3s;
  -o-transition: background 0.3s;
  transition: background 0.3s;
  background: #333540;
  border-radius: 8px;
  width: 48px;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.footer .footel-contact .contact-social a:hover {
  background: #ff4b45;
}
.footer .footel-contact .contact-social a svg {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 0;
  }
  .footer .footer-body {
    flex-direction: column;
  }
  .footer .footer-body .footer-nav-col .footer__menu {
    gap: 40px;
    justify-content: flex-start;
  }
  .footer .footer-body .footer-contacts-col {
    align-items: flex-start;
    text-align: left;
    margin-top: 20px;
  }
  .footer .footer-body .footer-contacts-col .footer__social ul,
  .footer .footer-body .footer-contacts-col .footer__app ul {
    justify-content: flex-start;
  }
  .footer .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.ritzip-header {
  background-color: #252830;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  width: 100%;
  padding-top: 30px;
  /* Обертка для меню и контактов */
}
@media screen and (max-width: 768px) {
  .ritzip-header {
    flex-direction: column;
  }
}
@media screen and (max-width: 414px) {
  .ritzip-header {
    flex-direction: row;
  }
}
.ritzip-header .header-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  z-index: 101;
  position: relative;
}
.ritzip-header .header-logo img {
  max-height: 40px;
  width: auto;
}
.ritzip-header .burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
  /* Важно: выше меню */
  position: relative;
  /* Анимация крестика */
}
.ritzip-header .burger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  transition: all 0.3s ease;
}
.ritzip-header .burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 7px);
}
.ritzip-header .burger.active span:nth-child(2) {
  opacity: 0;
}
.ritzip-header .burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -8px);
}
.ritzip-header .header-menu-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  margin-left: 40px;
}
@media screen and (max-width: 768px) {
  .ritzip-header .header-menu-wrapper {
    margin-left: 0;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
  }
}
.ritzip-header .header-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 32px;
}
.ritzip-header .header-nav ul li a {
  text-decoration: none;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s;
}
.ritzip-header .header-nav ul li a:hover {
  color: #ff4b45;
}
.ritzip-header .header-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}
.ritzip-header .header-actions .phone {
  text-decoration: none;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s;
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ff4b45;
  padding: 12px 24px;
  border-radius: 8px;
}
.ritzip-header .header-actions .phone:hover {
  color: #ff4b45;
}

@media screen and (max-width: 414px) {
  .ritzip-header {
    justify-content: space-between;
  }
  .ritzip-header .burger {
    display: flex;
  }
  .ritzip-header .header-menu-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(37, 40, 48, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 20px;
    box-sizing: border-box;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    margin: 0;
    z-index: 100;
  }
  .ritzip-header .header-menu-wrapper.active {
    transform: translateY(0);
  }
  .ritzip-header .header-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }
  .ritzip-header .header-nav ul li a {
    font-size: 20px;
  }
  .ritzip-header .header-actions {
    flex-direction: column;
    gap: 20px;
  }
}
.cooperation-block {
  margin-top: 100px;
}
@media screen and (max-width: 568px) {
  .cooperation-block {
    margin-top: 50px;
  }
}
.cooperation-block .container {
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 1024px) {
  .cooperation-block .container {
    flex-direction: column;
  }
}
.cooperation-block .card--conditions {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background-color: transparent;
}

.card {
  background-color: #2B2F38;
  border-radius: 16px;
  padding: 42px;
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media screen and (max-width: 414px) {
  .card {
    padding: 24px;
  }
}
.card__title {
  color: #ffffff;
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  margin-top: 0;
  margin-bottom: 42px;
}
@media screen and (max-width: 414px) {
  .card__title {
    font-size: 24px;
    margin-bottom: 24px;
  }
}
.card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.card__item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.card__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.card__text {
  color: #ffffff;
  font-size: 20px;
  line-height: 1.2;
  font-weight: normal;
}
@media screen and (max-width: 414px) {
  .card__text {
    font-size: 16px;
  }
}
.card__subtext {
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  line-height: 1.3;
}
@media screen and (max-width: 414px) {
  .card__subtext {
    font-size: 14px;
  }
}

.icon-box {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background-color: #343740;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
}
@media screen and (max-width: 414px) {
  .icon-box {
    width: 48px;
    height: 48px;
  }
}
.icon-box svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
}
.icon-box--accent {
  background-color: #ff4b45;
  color: #ffffff;
}

.earnings {
  margin-top: 100px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 568px) {
  .earnings {
    margin-top: 50px;
  }
}
.earnings__container {
  max-width: 1320px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.earnings__title {
  font-size: 42px;
  font-weight: 600;
  margin: 0 0 32px 0;
  color: #ffffff;
  text-align: center;
  font-family: "Onest", sans-serif;
}
@media (max-width: 600px) {
  .earnings__title {
    font-size: 28px;
    margin-bottom: 30px;
  }
}
.earnings__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 992px) {
  .earnings__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .earnings__grid {
    grid-template-columns: 1fr;
  }
}
.earnings__info {
  display: flex;
  justify-content: center;
  margin-top: 32px;
  color: #fff;
  font-size: 20px;
  line-height: 24px;
  font-weight: normal;
  width: 768px;
  max-width: 100%;
  text-align: center;
}

.earning-card {
  background-color: #1b1f26;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.earning-card__content {
  padding: 32px 24px 20px 24px;
  text-align: center;
}
.earning-card__subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 8px 0;
  font-weight: normal;
}
.earning-card__price {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}
.earning-card__price span {
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
}
.earning-card__image-box {
  height: 220px;
  width: 100%;
  background-color: #2c3038;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
}
.earning-card__image-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, #1b1f26 0%, transparent 20%);
}
.earning-card__image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.earning-card__icon {
  width: 64px;
  height: 64px;
  color: #4a4f5a;
  z-index: 1;
}
.earning-card__decoration {
  position: absolute;
  bottom: 12px;
  right: 12px;
  color: #ffffff;
  opacity: 0.5;
  z-index: 2;
}
@media (max-width: 992px) {
  .earning-card:last-child {
    grid-column: span 2;
  }
  .earning-card:last-child .earning-card__image-box {
    height: 260px;
  }
}
@media (max-width: 600px) {
  .earning-card:last-child {
    grid-column: auto;
  }
}

.faq-container {
  width: 100%;
  margin-top: 100px;
}
@media screen and (max-width: 568px) {
  .faq-container {
    margin-top: 50px;
  }
}

.faq-title {
  color: #ffffff;
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  margin-top: 0;
  margin-bottom: 42px;
}

.accordion {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  gap: 16px;
  max-width: 991px;
}
.accordion__item {
  background-color: #232428;
  border-radius: 8px;
  overflow: hidden;
  transition: background-color 0.3s ease;
  /* Класс active добавляется через JS */
}
.accordion__item.active .accordion__icon {
  transform: rotate(180deg);
  background-color: #3a3b40;
}
.accordion__header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: #ffffff;
  font-family: inherit;
}
@media screen and (max-width: 414px) {
  .accordion__header {
    padding: 16px 20px;
  }
}
.accordion__header:hover .accordion__icon {
  background-color: #333439;
}
.accordion__question {
  font-size: 20px;
  font-weight: 500;
  padding-right: 24px;
}
@media screen and (max-width: 414px) {
  .accordion__question {
    font-size: 16px;
  }
}
.accordion__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background-color: #2c2d32;
  border-radius: 6px;
  flex-shrink: 0;
}
.accordion__icon svg {
  width: 24px;
  height: 24px;
  stroke: #ffffff;
  transition: transform 0.3s ease, background-color 0.2s ease;
}
.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.accordion__body {
  padding: 0 24px 24px 24px;
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  font-weight: normal;
  max-width: 768px;
  opacity: 0.8;
}
@media screen and (max-width: 414px) {
  .accordion__body {
    padding: 0 16px 16px 16px;
    font-size: 14px;
  }
}

.form-section {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 100px;
}
@media screen and (max-width: 568px) {
  .form-section {
    margin-top: 50px;
  }
}
.form-section .contact-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .form-section .contact-social {
    justify-content: center;
  }
}
.form-section .contact-social .icon-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 32px;
}
.form-section .contact-social .icon-social p {
  font-size: 14px;
  opacity: 0.8;
}
.form-section .contact-social a {
  -webkit-transition: background 0.3s;
  -o-transition: background 0.3s;
  transition: background 0.3s;
  background: #333540;
  border-radius: 8px;
  width: 56px;
  height: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.form-section .contact-social a:hover {
  background: #ff4b45;
}
.form-section .contact-social a svg {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-container {
  max-width: 991px;
  width: 100%;
  background-color: #2b2f38;
  border-radius: 20px;
  padding: 40px;
}
@media (max-width: 600px) {
  .form-container {
    padding: 50px 24px;
  }
}

.form-header {
  text-align: center;
  margin-bottom: 40px;
}

.form-title {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 12px 0;
  color: #ffffff;
}

.form-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  line-height: 1.5;
  font-weight: normal;
}

.application-form {
  display: flex;
  flex-direction: column;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}
@media (max-width: 600px) {
  .form-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group--full {
  grid-column: 1/-1;
}

.form-label {
  font-size: 14px;
  font-weight: normal;
  color: rgba(255, 255, 255, 0.8);
  margin-left: 4px;
}

/* Стили полей ввода */
.form-input {
  background-color: #232830;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 16px;
  color: #ffffff;
  font-weight: normal;
  font-family: inherit;
  width: 100%;
  box-sizing: border-box;
  transition: all 0.2s ease;
  outline: none;
}
.form-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.form-input:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.submit-btn {
  background-color: #ff4b45;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 18px 32px;
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.submit-btn:hover {
  background-color: #ea453f;
}

.form-policy {
  text-align: center;
  font-size: 12px;
  color: #fff;
  margin-top: 16px;
  margin-bottom: 0;
  opacity: 0.5;
}

.hero {
  display: flex;
  justify-content: center;
  padding-top: 100px;
}
@media screen and (max-width: 768px) {
  .hero {
    padding-top: 32px;
  }
}
.hero__content {
  text-align: center;
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__title {
  font-size: 56px;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 32px;
  color: #ffffff;
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 32px;
  }
}
.hero__features {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin-bottom: 40px;
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
}
@media screen and (max-width: 568px) {
  .hero__features {
    gap: 20px;
  }
}
.hero__features li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero__features li svg {
  width: 24px;
  height: 24px;
}
.hero__btn {
  background-color: #ff4b45;
  color: #ffffff;
  border: none;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.hero__btn:hover {
  background-color: #ea453f;
}
.hero__image-wrapper {
  width: 100%;
  height: auto;
  border-radius: 16px;
  overflow: hidden;
}
.hero__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-height: 600px;
}

.line-container .container {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 100px;
}
@media screen and (max-width: 568px) {
  .line-container .container {
    margin-top: 50px;
  }
}
.line-container .container span {
  width: 100%;
  background-color: #FDFDFD;
  opacity: 0.5;
  height: 1px;
  display: block;
}
.line-container .container .logo-line {
  width: 24px;
  min-width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reasons {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 100px;
}
@media screen and (max-width: 568px) {
  .reasons {
    margin-top: 50px;
  }
}
@media (max-width: 900px) {
  .reasons {
    align-items: flex-start;
  }
}
.reasons__container {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
}
@media (max-width: 900px) {
  .reasons__container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.reasons__header {
  position: relative;
}
.reasons__header-content {
  position: sticky;
  top: 0px;
}
@media (max-width: 900px) {
  .reasons__header-content {
    position: static;
  }
}
.reasons__title {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 600;
  margin: 0;
  color: #fff;
  font-family: "Onest", sans-serif;
}
@media (max-width: 900px) {
  .reasons__title {
    font-size: 32px;
    text-align: left;
  }
}
.reasons__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.reason-btn {
  background-color: #ff4b45;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 18px 32px;
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 32px;
}
@media screen and (max-width: 414px) {
  .reason-btn {
    width: 100%;
    margin-top: 0px;
  }
}
.reason-btn:hover {
  background-color: #ea453f;
}

.reason-card {
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform 0.2s ease, background-color 0.2s ease;
  cursor: default;
}
.reason-card__icon-box {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background-color: #343740;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 414px) {
  .reason-card__icon-box {
    width: 48px;
    height: 48px;
  }
}
.reason-card__icon-box svg {
  width: 28px;
  height: 28px;
  display: block;
}
@media screen and (max-width: 414px) {
  .reason-card__icon-box svg {
    width: 24px;
    height: 24px;
  }
}
.reason-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.reason-card__title {
  font-size: 20px;
  font-weight: 500;
  margin: 0;
  line-height: 1.4;
  color: #ffffff;
}
@media screen and (max-width: 414px) {
  .reason-card__title {
    font-size: 16px;
  }
}
.reason-card__desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  margin: 4px 0 0 0;
  line-height: 1.4;
  font-weight: normal;
}
@media screen and (max-width: 414px) {
  .reason-card__desc {
    font-size: 14px;
  }
}

.how-it-works {
  padding: 80px 32px;
  display: flex;
  justify-content: center;
  background-color: rgba(51, 53, 64, 0.5);
  max-width: 1520px;
  margin: 0 auto;
  border-radius: 32px;
  margin-top: 100px;
}
@media screen and (max-width: 568px) {
  .how-it-works {
    margin-top: 50px;
  }
}
@media screen and (max-width: 414px) {
  .how-it-works {
    padding: 50px 0px;
  }
}
.how-it-works__container {
  max-width: 100%;
  width: 100%;
}
.how-it-works__title {
  font-size: 42px;
  font-weight: 600;
  margin: 0 0 32px 0;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 600px) {
  .how-it-works__title {
    font-size: 32px;
    margin-bottom: 32px;
  }
}
.how-it-works__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1100px) {
  .how-it-works__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .how-it-works__grid {
    grid-template-columns: 1fr;
  }
}

.step-card {
  background-color: #1B1F26;
  border-radius: 16px;
  padding: 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
  box-sizing: border-box;
  transition: transform 0.2s ease;
}
.step-card__top {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.step-card__icon {
  width: 32px;
  height: 32px;
  color: #ffffff;
}
.step-card__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.step-card__divider {
  width: 100%;
  height: 1px;
  background-color: #383b42;
  margin: 0;
  border: none;
}
.step-card__text {
  font-size: 18px;
  line-height: 1.4;
  font-weight: 500;
  margin: 0;
  color: #ffffff;
}
.step-card__number-box {
  position: absolute;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background-color: #ff4b45;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
}