@font-face {
  font-family: "Open Sans";
  src: url("/h20273420-media/h20273420-fonts/h20273420-opensans-extrabold.woff2");
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("/h20273420-media/h20273420-fonts/h20273420-opensans-bold.woff2");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("/h20273420-media/h20273420-fonts/h20273420-opensans-regular.woff2");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("/h20273420-media/h20273420-fonts/h20273420-poppins-light.woff2");
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("/h20273420-media/h20273420-fonts/h20273420-poppins-regular.woff2");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("/h20273420-media/h20273420-fonts/h20273420-poppins-medium.woff2");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("/h20273420-media/h20273420-fonts/h20273420-poppins-bold.woff2");
  font-weight: 700;
  font-display: swap;
}


/* ===== Переменные ===== */
:root {
  --container-width: 1196px;
  --container-step: 20px;
  --container-step-tablet: 15px;
  --container-step-mobile: 12px;
  --container: calc(var(--container-width) + (var(--container-step) * 2));
  --font-family: "Open Sans", sans-serif;
  --second-family: "Poppins", sans-serif;
}

/* ===== Базовые ===== */
body {
  margin: 0;
  background: #0f0f0f;
}

.h20273420-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-step);
  display: flex;
  flex-direction: column;
  gap: 40px;
  flex-wrap: wrap;
  box-sizing: border-box;
}

@media (max-width: 991px) {
  .h20273420-container {
    padding: 0 var(--container-step-tablet);
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .h20273420-container {
    padding: 0 var(--container-step-mobile);
    gap: 20px;
  }
}

h1 {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 44px;
  line-height: 120%;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  text-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.25);
  margin: 0px;
}

@media (max-width: 991px) {
  h1 {
    font-size: 32px;
  }
}

@media (max-width: 600px) {
  h1 {
    font-size: 20px;
  }
}

.h20273420-h1_look{
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 44px;
  line-height: 120%;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  text-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.25);
  margin: 0px;
}

@media (max-width: 991px) {
  .h20273420-h1_look {
    font-size: 32px;
  }
}

@media (max-width: 600px) {
  .h20273420-h1_look {
    font-size: 20px;
  }
}

h2 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 32px;
  line-height: 100%;
  color: #fff;
  text-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.25);
  margin: 0px;
}

@media (max-width: 991px) {
  h2 {
    font-size: 24px;
  }
}

@media (max-width: 600px) {
  h2 {
    font-size: 16px;
    text-align: center;
  }
}

h3 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 130%;
  text-transform: uppercase;
  color: #fff;
  margin: 0px;
}

@media (max-width: 991px) {
  h3 {
    font-size: 14px;
  }
}

@media (max-width: 600px) {
  h3 {
    font-size: 12px;
  }
}

p {
  line-height: 130%;
  color: #fff;
  margin: 0;
}

.h20273420-p-text {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 16px;
}

.h20273420-p-title {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 20px;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.h20273420-p-caption {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
}

@media screen and (max-width: 991px) {
  .h20273420-p-text {
    font-size: 14px;
  }

  .h20273420-p-title {
    font-size: 16px;
  }

  .h20273420-p-caption {
    font-size: 13px;
  }
}

@media screen and (max-width: 600px) {
  .h20273420-p-text {
    font-size: 12px;
    text-align: center;
  }

  .h20273420-p-caption, .h20273420-p-title{
    font-size: 12px;
  }
}

ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  margin: 0px;
  padding: 0px;
}

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

section {
  padding: 100px 0px;
}

@media (max-width: 600px) {
  section {
    padding: 20px 0px;
  }
}

.h20273420-btn{
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  text-align: center;
  color: #0d0d0d;
  border-radius: 20px;
  padding: 10px 20px;
  background: #e28813;
  width: 100%;
  display: flex;
  justify-content: center;
  border: 0px;
}

.h20273420-heading_div{
  width: 100%;
  display: flex;
  gap: 40px;
}

.h20273420-heading_div_title{
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.h20273420-heading_div_span{
  font-family: var(--second-family);
  font-weight: 300;
  font-size: 18px;
  line-height: 130%;
  color: #ff9000;
  text-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.25);
}

.h20273420-heading_div_text{
  flex: 1;
}

@media screen and (max-width: 600px) {
  .h20273420-heading_div_title{
    gap: 10px;
  }

  .h20273420-heading_div_span{
    text-align: start;
    font-family: var(--second-family);
    font-weight: 300;
    font-size: 12px;
    line-height: 130%;
    text-align: center;
    color: #ff9000;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  }

  .h20273420-heading_div{
    flex-direction: column;
    gap: 20px;
  }
}

.h20273420-bold_span{
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 20px;
  line-height: 130%;
  text-align: center;
  color: #ff9000;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  text-align: center;
}

@media screen and (max-width: 600px) {
  .h20273420-bold_span{
    font-size: 12px;
  }
}

.h20273420-site-header{
  padding: 15px 0px;
  background: #000;
}

.h20273420-header-container{
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.h20273420-nav-list{
  flex-direction: row;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  color: #fff;
  align-items: center;
  gap: 20px;
}

.h20273420-header-actions{
  display: flex;
  align-items: center;
  gap: 20px;
}

.h20273420-btn-register{
  max-width: 115px;
}

.h20273420-btn-login{
  max-width: 115px;
  background: none;
  border: 1px solid #e28813;
  color: #fff;
}


.h20273420-hero-section{
  padding: 120px 0px;
  background: url("/h20273420-media/h20273420-images/h20273420-hero_bg.webp");
  background-size: cover;
  background-position: center;
}

.h20273420-hero-container{
  align-items: center;
}

.h20273420-hero-content{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.h20273420-hero-cta{
  max-width: 225px;
}


.h20273420-features-list{
  flex-direction: row;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.h20273420-features-item{
  display: flex;
  align-items: center;
  max-width: 372px;
  width: 100%;
  gap: 20px;
  padding: 19px;
  box-sizing: border-box;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  background: radial-gradient(100% 99.91% at 0% 0%, #222 0%, #0f0f0f 100%);
  border: 1px solid #6f3f00;
  border-radius: 20px;
}

.h20273420-features-item-content{
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: start;
}

.h20273420-process-section{
  background: #181818;
}

.h20273420-process-steps{
  flex-direction: row;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.h20273420-process-step{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  border: 1px solid #6f3f00;
  border-radius: 20px;
  padding: 19px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  background: #0f0f0f;
  max-width: 269px;
  box-sizing: border-box;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 32px;
  line-height: 80%;
  text-align: center;
  color: #e28813;
}

.h20273420-process-step-content{
  display: flex;
  flex-direction: column;
  gap: 10px;
}


.h20273420-compliance-list{
  flex-direction: row;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.h20273420-compliance-item{
  border: 1px solid #6f3f00;
  border-radius: 20px;
  padding: 19px;
  box-sizing: border-box;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  max-width: 372px;
}

.h20273420-compliance-item-title{
  color: #e28813;
}

.h20273420-cta-section{
  padding: 120px 0px;
  background: url("/h20273420-media/h20273420-images/h20273420-spa_block_bg.webp");
  background-size: cover;
  background-position: center;
}

.h20273420-site-footer{
  padding: 40px 0px;
  background: #000;
}


.h20273420-footer-main{
  display: flex;
  gap: 40px;
}

.h20273420-footer-brand{
  flex: 1;
}

.h20273420-footer-nav{
  flex: 1;
  align-items: end;
  color: #fff;
  font-weight: 400;
  text-align: end;
}

.h20273420-footer-nav-list{
  gap: 20px;
}

.h20273420-footer-legal-list{
  text-align: center;
  color: #fff;
  gap: 20px;
  font-weight: 400;
  border-top: 1px solid #333;
  padding: 20px 0px 0px;
}

.h20273420-footer-bottom{
  border-top: 1px solid #333;
  padding: 20px 0px 0px;
  text-align: center;
}

@media (max-width: 991px) {
  .h20273420-hero-section, .h20273420-cta-section{
    padding: 80px 0px;
  }
  
  .h20273420-legal-info__list, .h20273420-footer-main, .h20273420-features-list, .h20273420-compliance-list, .h20273420-process-steps{
    gap: 25px;
  }
}


@media screen and (max-width: 813px) {
  .h20273420-compliance-item, .h20273420-features-item{
    max-width: none;
    width: 100%;
  }
}

@media screen and (max-width: 607px) {
  .h20273420-process-step{
    max-width: none;
    width: 100%;
  }
}

@media screen and (max-width: 600px) {
  .h20273420-hero-section, .h20273420-cta-section{
    padding: 40px 0px;
  }

  .h20273420-hero-section{
    background: url("/h20273420-media/h20273420-images/h20273420-hero_bg-mobile.webp");
    background-size: cover;
    background-position: center;
  }

  .h20273420-cta-section{
    background: url("/h20273420-media/h20273420-images/h20273420-spa_block_bg-mobile.webp");
    background-size: cover;
    background-position: center;
  }

  .h20273420-legal-info__list, .h20273420-features-list, .h20273420-compliance-list, .h20273420-process-steps{
    gap: 10px;
  }

  .h20273420-footer-main{
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .h20273420-footer-brand{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .h20273420-footer-nav{
    align-items: center;
    text-align: center;
  }
}

.h20273420-burger {
  display: none;
  width: 30px;
  height: 15px;
  position: relative;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.h20273420-burger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: #fff;
  border-radius: 1.5px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.h20273420-burger span:nth-child(1) {
  top: 0;
}

.h20273420-burger span:nth-child(2) {
  top: 6px;
}

.h20273420-burger span:nth-child(3) {
  top: 12px;
}

/* Active state -> cross */
.h20273420-burger.h20273420-is-active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.h20273420-burger.h20273420-is-active span:nth-child(2) {
  opacity: 0;
}

.h20273420-burger.h20273420-is-active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ===== Mobile behavior ===== */
@media (max-width: 654px) {
  .h20273420-burger {
    display: block;
  }

  .h20273420-main-nav.h20273420-is-open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #000;
    padding: 20px 0;
  }

  .h20273420-main-nav.h20273420-is-open .h20273420-nav-list {
    flex-direction: column;
    gap: 20px;
  }
}


/* ===== Mobile menu wrapper ===== */
.h20273420-mobile-menu {
  display: flex;
  gap: 30px;
  align-items: center;
}

@media (max-width: 654px) {
  .h20273420-mobile-menu {
    display: none;
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    background: #000;
    padding: 20px;
    flex-direction: column;
    align-items: center;
  }

  .h20273420-mobile-menu.h20273420-is-open {
    display: flex;
  }

  .h20273420-nav-list {
    flex-direction: column;
    gap: 20px;
  }

  .h20273420-header-actions {
    flex-direction: column;
    width: 100%;
    gap: 15px;
  }

  .h20273420-header-actions .h20273420-btn {
    max-width: none;
  }
}


.h20273420-overlay{
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100vh;
  background: #0000006b;
  display: flex;
  align-items: center;
  justify-content: center;
}

.h20273420-auth-container{
  max-width: 490px;
  width: 100%;
}

.h20273420-auth-popup{
  box-sizing: border-box;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #6f3f00;
  border-radius: 20px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  background: radial-gradient(100% 99.91% at 0% 0%, #222 0%, #0f0f0f 100%);
  width: 100%;
}

.h20273420-auth-form{
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  text-align: center;
}

.h20273420-auth-title{
  color: #e28813;
}

.h20273420-auth-input{
  border: 0px;
  border-bottom: 1px solid #e28813;
  padding: 10px;
  background: none;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  text-align: center;
  color: #fff;
}

.h20273420-auth-button{
  max-width: 164px;
  align-self: center;
}

.h20273420-auth-button--link{
  background: none;
  border: 0px;
  color: #fff;
}

input:focus-visible{
  outline: none;
}

.h20273420-legal-info__container .h20273420-p-text{
  text-align: center;
}

.h20273420-legal-info__list{
  flex-direction: row;
  gap: 40px;
}

.h20273420-legal-info__item{
  width: 100%;
  max-width: 372px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 19px;
  border: 1px solid #6f3f00;
  border-radius: 20px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  background: radial-gradient(100% 99.91% at 0% 0%, #222 0%, #0f0f0f 100%);
}

@media screen and (max-width: 843px) {
  .h20273420-legal-info__list{
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media screen and (max-width: 813px) {
  .h20273420-legal-info__item{
    max-width: none;
  }
}

@media screen and (max-width: 991px) {
  .h20273420-legal-info__list{
    gap: 25px;
  }

  .h20273420-legal-info__item{
    padding: 14px 0px;
  }
}

@media screen and (max-width: 600px) {
  .h20273420-legal-info__list{
    gap: 10px;
  }

  .h20273420-legal-info__item{
    padding: 9px 0px;
  }
}

.h20273420-checkbox {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.h20273420-checkbox input {
  display: none;
}

.h20273420-custom-box {
  min-width: 40px;
  min-height: 40px;
  border: 1px solid #6f3f00;
  border-radius: 10px;
  box-sizing: border-box;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  position: relative;
  background: none;
}

/* checked state */
.h20273420-checkbox input:checked + .h20273420-custom-box::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 12px;
  width: 10px;
  height: 18px;
  border: solid #6f3f00;
  border-width: 0 4px 4px 0;
  transform: rotate(45deg);
}

.h20273420-contact__container{
  flex-direction: row;
}

.h20273420-contact__list{
  flex: 1;
  gap: 40px;
}

.h20273420-contact__item{
  display: flex;
  gap: 20px;
  align-items: center;
}

.h20273420-contact__details{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.h20273420-contact__label{
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.h20273420-contact__value{
  font-family: var(--second-family);
  font-weight: 300;
  font-size: 18px;
  line-height: 130%;
  color: #ff9000;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.h20273420-contact-form{
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.h20273420-contact-form__input{
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  background: radial-gradient(100% 99.91% at 0% 0%, #222 0%, #0f0f0f 100%);
  border: 1px solid #6f3f00;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: #fff;
}

.h20273420-contact-form__textarea{
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  background: radial-gradient(100% 99.91% at 0% 0%, #222 0%, #0f0f0f 100%);
  border: 1px solid #6f3f00;
  height: 108px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: #fff;
}

.h20273420-contact-form__checkbox{
  gap: 20px;
}

@media screen and (max-width: 600px) {
  .h20273420-contact__container{
    flex-direction: column;
    text-align: center;
  }

  .h20273420-contact__icon{
    height: 24px;
    width: 24px;
  }

  .h20273420-contact__item{
    flex-direction: column;
    gap: 10px;
  }

  .h20273420-contact__label{
    font-size: 12px;
  }

  .h20273420-contact__value{
    font-size: 12px;
  }

  .h20273420-contact__list{
    gap: 20px;
  }

  .h20273420-contact-form__input{
    text-align: center;
  }

  .h20273420-contact-form__textarea{
    text-align: center;
  }

  .h20273420-contact-form__checkbox-text{
    text-align: start;
    color: #fff;
    font-weight: 400;
  }
}

.h20273420-policy_page_section{
  padding: 80px 0px;
}

.h20273420-policy_page_heading{
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
}

.h20273420-policy_page_heading h1{
  text-align: start;
}

.h20273420-policy_page_content{
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.h20273420-policy_page_content p{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  color: #fff;
}

.h20273420-policy_page_content ul{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  color: #fff;
  list-style: disc;
  padding-left: 35px;
  gap: 5px;
}

@media screen and (max-width: 991px) {
  .h20273420-policy_page_section{
    padding: 50px 0px;
  }

  .h20273420-policy_page_content p{
    font-size: 16px;
  }
  
  .h20273420-policy_page_content ul{
    font-size: 16px;
  }
}

@media screen and (max-width: 600px) {
  .h20273420-policy_page_section{
    padding: 20px 0px;
  }

  .h20273420-policy_page_content p{
    font-size: 12px;
  }
  
  .h20273420-policy_page_content ul{
    font-size: 12px;
  }
}

.h20273420-form .h20273420-message{
  display: none;
}

.h20273420-form.h20273420-active .h20273420-message{
  display: block;
}

.h20273420-legal-overlay {
  z-index: 9999;
}

.h20273420-legal-popup {
  max-width: 420px;
  width: 100%;
  padding: 25px;
  text-align: center;
  border: 1px solid #6f3f00;
  border-radius: 20px;
  background: radial-gradient(100% 99.91% at 0% 0%, #222 0%, #0f0f0f 100%);
  box-shadow: 0 4px 10px rgba(0,0,0,.4);
}

.h20273420-legal-popup h2 {
  color: #e28813;
  margin-bottom: 15px;
}

.h20273420-legal-popup p {
  font-size: 14px;
}

.h20273420-legal-popup a {
  color: #ff9000;
  text-decoration: underline;
}

.h20273420-legal-close {
  margin-top: 20px;
}
