@font-face {
  font-family: "Poppins";
  src: url("/h81b91a09-resources/h81b91a09-fonts/h81b91a09-poppins_black.woff2");
  font-display: swap;
  font-weight: 800;
}

@font-face {
  font-family: "Poppins";
  src: url("/h81b91a09-resources/h81b91a09-fonts/h81b91a09-poppins_bold.woff2");
  font-display: swap;
  font-weight: 700;
}

@font-face {
  font-family: "Poppins";
  src: url("/h81b91a09-resources/h81b91a09-fonts/h81b91a09-poppins_medium.woff2");
  font-display: swap;
  font-weight: 500;
}

@font-face {
  font-family: "Poppins";
  src: url("/h81b91a09-resources/h81b91a09-fonts/h81b91a09-poppins_regular.woff2");
  font-display: swap;
  font-weight: 400;
}


/* ===== Переменные ===== */
:root {
  --container-width: 1240px;
  --container-step: 28px;
  --container-step-tablet: 26px;
  --container-step-mobile: 24px;
  --container: calc(var(--container-width) + (var(--container-step) * 2));
  --font-family: "Poppins", sans-serif;
}

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

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

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

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

h1 {
  font-family: var(--font-family);
  font-weight: 900;
  font-size: 50px;
  line-height: 100%;
  color: #fff;
  margin: 0px;
}

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

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

h2 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 32px;
  line-height: 106%;
  color: #001f21;
  margin: 0px;
}

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

@media (max-width: 600px) {
  h2 {
    font-size: 28px;
    line-height: 121%;
  }
}

p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #181818;
  margin: 0px;
}

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

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

img{
  max-width: 100%;
  min-width: 0px;
}

section {
  margin-bottom: 40px;
}

@media (max-width: 600px) {
  section {
    margin-bottom: 20px;
  }
}

.h81b91a09-btn {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 11px;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 24px;
  line-height: 117%;
  text-align: center;
  color: #001f21;
  box-shadow: 0 5px 0 0 #1e2d20;
  background: #2bd5a5;
  border: 1px solid #001f21;
  border-radius: 10px;
  box-sizing: border-box;
  max-width: 510px;
  margin: auto;

  /* animation setup */
  transition: all 0.15s ease;
  cursor: pointer;
}

/* hover state */
.h81b91a09-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 0 0 #1e2d20;
}

/* active (click) state */
.h81b91a09-btn:active {
  transform: translateY(3px);
  box-shadow: 0 2px 0 0 #1e2d20;
}


.h81b91a09-site-header{
    background: #001f21;
    padding: 15px 0px;
}

.h81b91a09-header-container{
    align-items: center;
}

.h81b91a09-logo-link, .h81b91a09-logo-image{
  height: 40px;
}

.h81b91a09-hero-section{
  height: 572px;
  background: url("/h81b91a09-resources/h81b91a09-img/h81b91a09-hero_bg.webp");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.h81b91a09-character{
  position: absolute;
  right: 138px;
  top: 30px;
  z-index: 1;
}

.h81b91a09-hero-container{
  width: 100%;
  flex-direction: row;
  flex-wrap: nowrap;
}

.h81b91a09-hero-content{
  max-width: 771px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 2;
}

.h81b91a09-hero-description{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 115%;
  color: #12a87d;
}

.h81b91a09-hero-highlight{
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  color: #fff;
}

.h81b91a09-hero-button{
  margin: 0px;
}





.h81b91a09-benefits-section{
  padding: 20px 0px;
}

.h81b91a09-benefits-container{
  align-items: center;
}

.h81b91a09-benefits-content{
  display: flex;
  gap: 40px;
  max-width: 720px;
}

.h81b91a09-benefits-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  text-align: start;
  color: #001f21;
}

.h81b91a09-benefits-icon{
  min-width: 20px;
  min-height: 20px;
}

.h81b91a09-benefits-image{
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  color: #12a87d;
  max-width: 312px;
}

.h81b91a09-cta-title{
  color: #fff;
}

.h81b91a09-cta-container .h81b91a09-benefits-item{
  color: #fff;
}

.h81b91a09-cta-container{
  align-items: center;
}

.h81b91a09-cta-content{
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 40px;
}

.h81b91a09-cta-content{
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 40px;
}

.h81b91a09-cta-highlight{
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  color: #12a87d;
}

.h81b91a09-cta-section{
  padding: 20px 0px;
  background: url("/h81b91a09-resources/h81b91a09-img/h81b91a09-money_bg.webp");
  background-size: cover;
  background-position: center;
}





.h81b91a09-site-footer{
    background: #001f21;
    padding: 24px 0px;
}

.h81b91a09-footer-top{
    display: flex;
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.h81b91a09-footer-links{
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.h81b91a09-footer-title{
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 24px;
    line-height: 125%;
    color: #fff;
    margin: 0px;
}

.h81b91a09-footer-menu{
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    color: #fff;
}

.h81b91a09-footer-copy{
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    color: #e4e4e4;
}

@media screen and (max-width: 990px) {
  .h81b91a09-hero-container{
    flex-direction: column;
    align-items: center;
    justify-content: end;
    gap: 12px;
  }

  .h81b91a09-character{
    position: relative;
    max-width: 185px;
    right: 0px;
    top: 98px;
  }

  .h81b91a09-hero-content{
    max-width: 771px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    top: 58px;
    z-index: 2;
  }

  .h81b91a09-hero-section{
    height: auto;
  }
}

@media screen and (max-width: 600px) {
  .h81b91a09-button-icon{
    display: none;
  }

  .h81b91a09-benefits-content{
    flex-direction: column;
    align-items: start;
  }

  .h81b91a09-benefits-container{
    align-items: start;
  }

  .h81b91a09-cta-content{
    align-items: start;
    flex-direction: column;
    align-self: flex-start;
    gap: 20px;
  }

  .h81b91a09-footer-logo{
    max-width: 239px;
    width: 100%;
    margin: auto;
  }
}

@media screen and (max-width: 360px) {
  .h81b91a09-hero-section{
    height: 633px;
  }

  .h81b91a09-hero-content{
    top: 70px;
    gap: 12px;
  }

  .h81b91a09-character{
    top: 69px;
  }
}

@media screen and (max-width: 359px) {
  .h81b91a09-hero-section{
    height: auto;
  }
}

.h81b91a09-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip: rect(0 0 0 0);
}

.h81b91a09-screenshots_section h2{
  text-align: center;
}

.h81b91a09-screenshots_list{
  flex-direction: row;
  justify-content: center;
  gap: 13px;
}

.h81b91a09-screenshot_item {
  height: 400px;
  max-width: 291px;
  width: 100%;
  box-shadow: 0 3px 12px 0 rgba(24, 19, 123, 0.73);
  background: #001f21;
  border: 1px solid #2bd5a5;
  border-radius: 19px;
}

.h81b91a09-screenshots_section .h81b91a09-container{
  flex-wrap: nowrap;
}

@media screen and (max-width: 1213px) {
  .h81b91a09-screenshots_list{
    flex-wrap: wrap;
  }
}

.h81b91a09-policy_section{
  padding: 70px 0px;
  margin: 0px;
}

.h81b91a09-policy_container h1{
  font-family: var(--font-family);
  font-weight: 900;
  font-size: 50px;
  color: #181818;
}

.h81b91a09-policy_container ul{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #181818;
  padding-left: 20px;
  list-style: disc;
}