*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

html{
    background-color: #000000;
    scroll-behavior: smooth;
    overflow-x: hidden;
}
a{
    color: #E3E3E3;
}
.container{
    max-width: 1360px;
    margin: auto;
    padding-left: 16px;
    padding-right: 16px;
}
header{
    padding-top: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-list{
    display: flex;
    max-width: 693px;
    gap: 46px;
    justify-content: space-between;
    text-transform: uppercase;
    font-family: "Noto Sans Mono", monospace;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.logo{
  position: relative;
  z-index: 123123;
}
.nav-list li {
  position: relative;
}

.nav-list li:not(:last-child)::after {
  content: '•';
  position: absolute;
  right: -23px;
  top: 50%;
  transform: translateY(-50%);
  color: #E3E3E3;
  font-size: 18px;
  pointer-events: none;
  transition: color 0.3s ease;
}

.nav-list a {
  color: #E3E3E3;
  transition: color 0.3s ease;
}

.nav-list a:hover,
.nav-list a.active {
  color: #01E083;
}

.nav-list li:hover::after,
.nav-list li:has(a.active)::after {
  color: #01E083;
}


.navbar{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}
.partner-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.login-container{
    display: flex;
    flex-direction: column;
    text-transform: uppercase;
    font-family: "Noto Sans Mono", monospace;
    color: #01E083;
    align-items: center;
}
.language-switcher {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-family: "Noto Sans Mono", monospace;
}

.lang-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: #01E083;
  padding: 6px 12px;
  font-size: 16px;
  font-family: "Noto Sans Mono", monospace;
}

.lang-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: #0a0a0a;
  border: 1px solid #01E083;
  border-radius: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s ease;
  z-index: 10;
  min-width: 70px;
}

.language-switcher.open .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-btn {
  display: block;
  width: 100%;
  padding: 8px 12px;
  background: none;
  border: none;
  color: #01E083;
  text-align: left;
  cursor: pointer;
  font-size: 16px;
}

.partner{
    background-image: url(../img/cta-bg.webp);
    height: 47px;
    width: 170px;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    color: #01E083;
    font-family: "Noto Sans Mono", monospace;
}


/* Burger-menu */
.burger-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    color: #fff;
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    pointer-events: none;
    background-image: url(../img/burger-menu-bg.png);
    background-size: cover;
    background-position: center;
    background-color: #000;

}

.burger-menu.show {
    transform: translateX(0);
    pointer-events: auto;
}

.burger-menu ul {
    list-style: none;
    padding: 0;
    margin-top: 120px;
}

.burger-menu ul li {
    margin: 20px 0;
}

.burger-menu ul li a {
    font-size: 40px;
    text-transform: uppercase;
    color: #E3E3E3;
    padding-left: 16px;
    font-family: 'Tektur';
}

.burger-icon {
  width: 90px;
  height: 40px;
  cursor: pointer;
  color: #fff;
  position: absolute;
  top: 38px;
  right: 16px;
  z-index: 1001;
  display: none;
  background-image: url(../img/burger-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.burger-stick {
    width: 35px;
    height: 2px;
    margin: 2.5px auto 0;
    position: absolute;
    left: 0;
    right: 0;
    background-color: #01E083;
    transition: 0.3s ease-in-out;
}

.burger-stick:nth-child(1) {
    top: 10px;
}

.burger-stick:nth-child(2) {
    top: 22px;
}

.burger-stick:nth-child(3) {
    top: 24px;
}

.burger-icon.active .burger-stick:nth-child(1) {
    transform: rotate(45deg);
    top: 16px;
}

.burger-icon.active .burger-stick:nth-child(2) {
    transform: rotate(-45deg);
    top: 16px;
}

.burger-icon.active .burger-stick:nth-child(3) {
    opacity: 0;
}

.no-scroll {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.burger-icons{
    display: flex;
    align-items: center;
    gap: 80px;
    margin-left: 16px;
    margin-top: 80px;
}
/* End of burger-menu */

.hero{
    display: flex;
    justify-content: space-between;
    margin-top: 48px;
    color: white;
}
.hero__title, .hero__subtitle{
    font-family: "Tektur", sans-serif;
}

.hero__title{
    font-size: clamp(166px, 5vw + 2rem, 84px);
    line-height: 85%;
    font-style: normal;
    margin-bottom: 24px;
}

.hero__subtitle{
    font-size: 31px;
    font-weight: bold;
}
.hero__feature{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    max-width: 167px;
    justify-content: center;
    text-align: center;
    font-family: "Noto Sans Mono", monospace;
}
.hero__features{
    max-width: 550px;
    width: 100%;
    justify-content: space-between;
    display: flex;
    margin-top: 32px;
    margin-bottom: 48px;
}
.hero__cta{
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #04634D 0%, #01E083 100%);
    border: 1px solid #8AD5BC;
    border-radius: 8px;
    max-width: 550px;
    font-size: clamp(20px, 1.5vw + 0.5rem, 24px);
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    height: 76px;
    width: 100%;

}

.hero__video {
    position: relative;
}

.hero__preview-trigger {
    position: absolute;
    right: -60px; /* половина ширины выходит за видео */
    bottom: -60px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    cursor: pointer;
    z-index: 10;
    transition: transform 0.3s ease;
}

.hero__preview-trigger:hover {
    transform: scale(1.15);
}

/* Fullscreen video */
.fullscreen-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.fullscreen-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.case-modal__content {
    background: #111;
    padding: 24px;
    border-radius: 12px;
    max-width: 400px;
    border: 1px solid #01E083;
}

.hidden {
    display: none !important;
}

.case-modal__content h2{
    color: #01E083;
    font-size: 20px;
    text-align: center;
    font-family: 'Tektur', sans-serif;
    margin-bottom: 5px;
}
.modal-subtitle{
    font-family: 'Noto Sans Mono', sans-serif;
    color: #A0A0A0;
    text-align: center;
    font-size: 16px;
}
/* ===== MODAL ===== */
.case-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.case-modal.hidden {
  display: none;
}

.case-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  cursor: pointer;
}

.case-modal__content {
  position: relative;
  background: #121212;
  color: #fff;
  padding: 32px;
  border-radius: 24px;
  max-width: 600px;
  width: 100%;
  z-index: 2;
  overflow-y: auto;
  max-height: 90vh;
}

.case-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
}

/* ===== ACCORDION ===== */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 24px;
}

.accordion-item__card {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  padding: 24px;
  gap: 16px;
  width: 100%;
  border: 1px solid #2D3533;
  border-radius: 24px;
  font-family: "Noto Sans Mono", monospace;
}
.accordion-item__card p{
    font-size: 14px;
    color: #A0A0A0;
}

.accordion-item__header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.accordion-item__header h3{
    font-size: 16px;
}

.accordion-item__header img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
}

.accordion-toggle {
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-toggle {
  transform: rotate(180deg);
}

.accordion-item__body {
  overflow: hidden;
  max-height: 1000px;
  transition: max-height 0.3s ease;
  font-size: 14px;
  line-height: 1.5;
}

.bonus-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.bonus-list li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.4;
}

.bonus-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #00FFD1;
}

/* Убираем бордер и скругление */
.accordion-item__card.no-border {
  border: none;
  border-radius: 0;
}

/* Заголовок и стрелка – вертикально */
.header-stacked {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

/* Заголовок + картинка в одну строку */
.header-top {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #01E083;
    font-family: "Noto Sans Mono", monospace;
    font-size: 16px;
}

.header-top img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

/* SVG вместо точки */
.bonus-list.custom-icons li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 19px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg width='19' height='18' viewBox='0 0 19 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23A0A0A0' d='m9.25 13.493 5.657-5.657L16.32 9.25l-5.657 5.657zm1.414-9.9 4.243 4.243-1.415 1.414L9.25 5.007zm1.414 4.243 1.414 1.414-1.414 1.414-1.414-1.414zm-2.828 0 1.414 1.414-1.414 1.414L7.836 9.25zm-2.83.001L7.836 9.25 6.42 10.665 5.006 9.251z'/%3E%3Cpath fill='%23A0A0A0' d='M3.593 7.836 5.007 9.25l-1.414 1.414L2.179 9.25z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.bonus-list.custom-icons li {
  padding-left: 28px;
}

.accordion-item-second{
    background: none;
}

.about__brand {
  font-family: 'Tektur', sans-serif; 
  color: #E3E3E3;
  font-weight: bold;
  max-width: 1360px;
  width: 100%;
  font-size: clamp(70px, 10vw, 193px);
  margin: 0 auto;
  text-align: center;
  text-transform: uppercase;
  white-space: normal !important;
  overflow-wrap: break-word; 
  word-break: normal; 
  padding: 0;        
  margin-left: auto;       
  margin-right: auto;                  
}



.about {
  max-width: 950px;
  margin: 0 auto;
  text-align: center;
}

.about__description {
  font-family: "Tektur";
  font-size: clamp(22px, 4vw, 40px);
  color: #505050;
  margin-bottom: 12px;
  font-weight: 400;
  line-height: 1.2;
}

.about__title{
  color: #01E083;
  background-image: url(../img/title-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 241px;
  height: 82px;
  font-size: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-top: 85px;
  margin-bottom: 72px;
  font-weight: 400;
  text-transform: uppercase;
  font-family: 'Tektur';
}
.about-section{
  margin-bottom: 96px;
}


.about-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  padding: 0 16px;
}

.about-cards__item {
  max-width: 662px;
  width: 100%;
  height: 330px;
  padding: 32px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  background-image: url(../img/about-bg.png);
  background-size: contain;
  background-repeat: no-repeat;
}

.about-cards__text {
  font-size: clamp(20px, 1.5vw, 32px);
  margin-bottom: 16px;
    font-family: "Noto Sans Mono", monospace;
}

.about-cards__image {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  align-self: flex-start;
}








.stats {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    margin-top: 96px;
    gap: 15px;
  }
  
  
  .stats__title {
    font-size: 60px;
    margin: 0;
    color: #F0FFFB;
    line-height: 100%;
    font-weight: 500;
    text-transform: uppercase;
    font-family: 'Tektur';
    max-width: 400px;
  }
  
  .stats__main {
    flex: 1;
    max-width: 780px;
  }
  
  .stats__container {
    display: flex;
  }
  
  .stats__items {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  
  .stats__item {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    position: relative;
    min-height: 200px;
  }
  
  .stats__number-container {
    position: relative;
    width: 34px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .stats__number-svg {
    width: 34px;
    height: 200px;
  }
  
  .stats__content-wrapper {
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  
  .stats__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
  }
  
  .stats__content {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  .stats__count {
    font-size: 28px;
    font-weight: 500;
    margin: 0;
    color: #1F1F1F;
    transition: color 0.5s ease;
    font-family: 'Noto Sans Mono';
  }
  
  .stats__description {
    font-size: 16px;
    line-height: 115%;
        font-family: 'Noto Sans Mono';
    margin: 0;
    color: #1F1F1F;
    transition: color 0.5s ease;
  }
  
  .stats__number,
  .stats__icon-path,
  .stats__line,
  .stats__border,
  .stats__decoration,
  .stats__bg {
    transition: all 0.5s ease;
  }
  
  .stats__item--animated .stats__number,
  .stats__item--animated .stats__icon-path {
    fill: #66DD8E;
  }
  
  .stats__item--animated .stats__line,
  .stats__item--animated .stats__border,
  .stats__item--animated .stats__decoration {
    stroke: #66DD8E;
  }
  
  .stats__item--animated .stats__bg {
    fill: #1E4733;
  }
  
  .stats__item--animated .stats__count,
  .stats__item--animated .stats__description {
    color: #fff;
  }

  
.offers__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.offers__card-wrapper {
  width: 100%;
  max-width: 305px;
}

.offers__card {
  width: 100%;
  height: 318px;
  position: relative;
}

.offers__card-title {
  font-size: 28px;
  font-family: 'Noto Sans Mono';
  font-weight: 500;
  margin: 0;
  text-transform: uppercase;
  background: #01E083;
  color: black;
  text-align: center;
  clip-path: polygon(
    5% 0%,
    95% 0%,
    100% 20%,
    100% 100%,
    0% 100%,
    0% 20%
  );
  height: 60px; 
  display: flex;
  align-items: center;
  justify-content: center;
}

.offers__card-grid {
  text-transform: uppercase;
  display: flex;
  height: calc(100% - 60px); 
  border: 1px solid #01E083;
  border-top: none;
  border-radius: 0;
  color: #E3E3E3;
  font-family: 'Noto Sans Mono';
}

.offers__card-left {
  width: 40%;
  border-right: 1px solid #01E083;
}

.offers__card-right {
  width: 60%;
}

.offers__row {
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(100% / 3);
  padding: 0 10px;
  border-bottom: 1px solid #01E083;
}

.offers__row:last-child {
  border-bottom: none;
}

.offers__label {
  font-size: 20px;
  margin: 0;
  text-align: center;
}

.offers__value {
  font-size: 30px;
  margin: 0;
  text-align: center;
}

.offers__title{
  font-family: 'Tektur', sans-serif;
   font-size: clamp(27px, 3.5vw, 48px);
   color: #01E083;
   font-weight: 400;
   text-transform: uppercase;
   background-image: url(../img/offers-title-bg.png);
   background-size: cover;
   background-repeat: no-repeat;
   display: flex;
   align-items: center;
   justify-content: center;
   max-width: 630px;
   height: 94px;
   margin: auto;
   margin-bottom: 48px;
   margin-top: 96px;
}


.cta-block{
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-block__title{
  font-size: 43px;
  font-family: 'Tektur';
  color: #E3E3E3;
  margin-top: 48px;
  text-transform: uppercase;
  font-weight: bold;
}

.cta-block__description{
    color: #E3E3E3;
  font-size: 20px;
  max-width: 664px;
  text-align: center;
  margin-top: 5px;
  margin-bottom: 24px;
  font-family: 'Noto Sans Mono', sans-serif;
}
.instruments__title{
  margin: auto;
  margin-top: 96px;
  margin-bottom: 48px;
  color: #01E083;
  text-transform: uppercase;
  font-size: 48px;
  font-family: 'Tektur', sans-serif;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 387px;
  height: 92px;
  background-image: url(../img/instruments-bg-title.png);
  background-repeat: no-repeat;
  background-size: cover;
  font-weight: normal;
}
.instruments__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 660px;
  margin: auto;
}

.instruments__item {
  width: 200px;
  height: 145px;
  object-fit: cover;
  border-radius: 4px;
}


        .calculator {
            max-width: 660px;
            width: 100%;
            padding: 48px;
            padding-top: 80px;
            background: #0E1F14;
            position: relative;
            margin-top: 30px;
            border-radius: 0 0 12px 12px;
            margin: auto;
            margin-top: 78px;
        }
        .calculator-title {
            font-size: 28px;
            font-family: 'Noto Sans Mono', monospace;
            font-weight: 500;
            margin: 0;
            text-transform: uppercase;
            background: #01E083;
            color: black;
            text-align: center;
            clip-path: polygon(5% 0%, 95% 0%, 100% 20%, 100% 100%, 0% 100%, 0% 20%);
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            width: calc(100% - 96px);
            position: absolute;
            top: -30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
            width: 100%;
        }
        .form-group {
            margin-bottom: 24px;
        }
        input, select {
            width: 100%;
            padding: 12px;
            border: 1px solid #01E083;
            color: #E3E3E3;
            background-color: transparent;
            height: 56px;
            border-radius: 12px;
            box-sizing: border-box;
            font-size: 16px;
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
        }
        select {
            background-image: url("data:image/svg+xml,%3Csvg width='30' height='12' viewBox='0 0 30 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m21 3-5.151 5.151a1.2 1.2 0 0 1-1.697 0L9 3' stroke='%23A0A0A0' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 16px center;
            background-size: 30px 12px;
            padding-right: 50px;
        }
        .result {
            margin-top: 32px;
            font-size: 20px;
            font-family: 'Noto Sans Mono', monospace;
            display: flex;
            justify-content: space-between;
            color: #FFFFFF;
        }
        .hidden-calculator {
            display: none;
        }
        input:focus, select:focus {
            outline: none;
            box-shadow: 0 0 0 2px rgba(1, 224, 131, 0.3);
        }

.loading-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: #01E083;
    color: #000;
    text-align: center;
    font-weight: bold;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.summary-item {
    margin-bottom: 10px;
    padding: 8px;
    background: rgba(1, 224, 131, 0.1);
    border-radius: 4px;
}

.submit-btn {
    max-width: 660px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    padding: 16px;
    background: #01E083;
    color: #000;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 20px;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #00C974;
}

.lead-form {
    padding: 30px;
    background: #1A2E24;
    border-radius: 12px;
    max-width: 660px;
    margin: auto;
      margin-top: 30px;
      font-family: 'Noto Sans Mono', sans-serif;
}
.partners{
  margin-top: 96px;
}
.partners-container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.partners-title{
    margin: auto;
  text-align: center;
  margin-bottom: 48px;
  margin-top: 96px;
  font-size: 48px;
  font-family: 'Tektur';
  color: #01E083;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  background-image: url(../img/partners-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 287px;
  height: 69px;
  font-weight: normal;
}
.lead-form h3 {
    color: #FFFFFF;
    margin-bottom: 20px;
    text-align: center;
}

.calculator-data {
    background: #0E1F14;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.calculator-data p {
    margin: 8px 0;
}

.hidden {
    display: none;
}

.bonuses__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}

.bonuses__offer {
  max-width: 660px;
  width: 100%;
}

.bonuses__title {
  margin: auto;
  text-align: center;
  margin-bottom: 48px;
  margin-top: 96px;
  font-size: 48px;
  font-family: 'Tektur';
  color: #01E083;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  background-image: url(../img/bonuses-title-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 238px;
  height: 90px;

}

.bonuses__program-text{
  font-size: 63px;
  font-family: 'Tektur', sans-serif;
  color: #F0FFFB;
}
.bonuses__offer-text {
  font-size: 32px;
  color: #01E083;
  font-family: 'Noto Sans Mono', sans-serif;
}

.bonuses__offer-note {
    font-family: 'Noto Sans Mono', sans-serif;
  font-size: 16px;
  color: #E3E3E3;
  margin-bottom: 32px;
  margin-top: 24px;
  max-width: 450px;
}

.bonuses__cta{
  width: 100%;
  max-width: 660px;
}

.partners-container{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.partners-image{
  width: 316px;
  height: 230px;
}

.swiper-container{
  overflow-x: hidden;
}


.slide {
    max-width: 432px;
    height: 250px;
    overflow: hidden;
    transition: height 0.5s ease;
    margin: 0 auto;
    display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #66DD8E;
}

.stars {
    margin-bottom: 20px;
    margin-top: 24px;
    margin-left: 24px;
}

.stars img {
    width: 100px;
}

.text {
    margin-bottom: 24px;
    line-height: 1.4;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.5s ease;
    padding-left: 24px;
  padding-right: 24px;
  margin-bottom: 24px;
  font-family: 'Noto Sans Mono', sans-serif;
  color: white;
}

.slide.expanded .text {
    -webkit-line-clamp: unset;
    overflow: visible;
}

.author {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #01E083;
    padding: 24px;
      font-family: 'Noto Sans Mono', sans-serif;
      color: #000;
      font-size: 16px;
}

.author-img {
    width: 40px;
    height: 40px;
    object-fit: cover;
}

.author-name {
    font-size: 14px;
    color: var(--color-gray);
    flex-grow: 1;
}

.read-more {
    background: none;
    border: none;
    text-decoration: underline;
    cursor: pointer;
    width: 130px;
          font-family: 'Noto Sans Mono', sans-serif;
      color: #000;
}

.swiper-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 30px auto 0;
  width: 100%;
  gap: 20px;
  flex-direction: column-reverse;
}


.swiper-nav-buttons {
    display: flex;
    gap: 10px;
    order: 2;
}

.swiper-nav-button {

    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    transition: all 0.3s ease;
    background: #080808;
border: 1px solid #2D3533;
}

.swiper-nav-button:hover {
    background: #01E083;
}

.swiper-nav-button:active {
    transform: scale(0.95);
}


.swiper-nav-button svg rect {
    transition: fill 0.3s ease;
}

.swiper-nav-button:hover svg rect {
    fill: #e6ecff;
}

.swiper-progress-container {
    width: 100px;
    height: 4px;
    overflow: hidden;
    order: 1;
}

.swiper-progress-bar {
    height: 100%;
    width: 0%;
    background: #345678;
    transition: width 0.3s ease;
}


.swiper-progress-container {
    width: 120px;
    height: 14px;
    background: transparent;
    overflow: hidden;
    order: 1;
    display: flex;
}

.swiper-progress-bar {
    height: 100%;
  border: 1px solid #2D3533;
  background-color: transparent;
    flex-grow: 1;
    flex-shrink: 0;
    flex-basis: 0;
    transition: background 0.3s ease;
    width: 24px;
    height: 14px;
}

.swiper-progress-bar.active {
    background: #01E083;
}
.reviews-title{
  font-size: 48px;
  font-family: 'Tektur', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(../img/reviews-title-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 250px;
  height: 90px;
  color: #01E083;
  margin: auto;
  margin-bottom: 48px;
  margin-top: 96px;
  text-transform: uppercase;
  font-weight: normal;
}

.how-start-center{
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
}
.about-cards__image2{
  mix-blend-mode:difference;
}

.how-start-title{
  font-size: 63px;
  font-family: 'Tektur', sans-serif;
  color: #F0FFFB;
  margin-bottom: 48px;
  margin-top: 96px;
}


.accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.accordion__item {
  border-top: 1px solid #2D3533;
  border-bottom: 1px solid #2D3533;
    overflow: hidden;
    max-width: 665px;
    width: 100%;
    color: white;
}


.accordion-number{
  font-family: 'Helvetica Neue', sans-serif;
  color: #01E083;
  font-size: 14px;
  margin-right: 12px;
}
.accordion__header {
  padding-top: 24px;
  padding-bottom: 24px;
  padding-left: 32px;
  padding-right: 32px;

    font-weight: 400;
    cursor: pointer;
    position: relative;
    font-size: 22px;
    font-family: 'Noto Sans Mono', sans-serif;
    display: flex;

}

.accordion__header::before,
.accordion__header::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 20px;
  width: 20px;
  height: 2px;
  background-color: #000;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.accordion__header::before {
  transform: translateY(-50%);
}

.accordion__header::after {
  transform: translateY(-50%) rotate(90deg);
}

.accordion__header.active::after {
  opacity: 0;
  transform: translateY(-50%) rotate(90deg);
}
.accordion__item .accordion__content {
    padding-left: 32px;
    max-height: 0;
    transition: .5s;
    overflow: hidden;
}
.accordion__content p{
  margin-bottom: 24px;
  color: var(--color-gray);
  max-width: 635px;
  padding-left: 30px;
  font-family: 'Noto Sans Mono', sans-serif;

}
.items {
  display: flex;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}

.faq-title{
  color: #01E083;
  font-size: 48px;
  font-family: 'Tektur';
  width: 136px;
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  text-align: center;
  margin-top: 96px;
  margin-bottom: 48px;
  background-image: url(../img/faq-title-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  font-weight: normal;
}
.traffic{
  max-width: 550px;
  width: 100%;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 40px;

}
.traffic h2{
  font-family: "Tektur", sans-serif;
  font-size: 63px;
  font-weight: 500;
  line-height: 100%;
}
.traffic-container{
  display: flex;
  justify-content: space-between;
  margin-top: 96px;
  margin-bottom: 96px;
  gap: 20px;
}
.traffic-container img{
  max-width: 660px;
  width: 100%;
  display: block;
}

.footer-title{
font-size: clamp(84px, 10vw, 180px);
  margin: auto;
  font-family: 'Tektur';
  text-align: center;
  color: #F0FFFB;
  margin-bottom: 48px;
}

.footer-content{
  display: flex;
  justify-content: space-between;
}
.footer-nav__list{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-nav__link{
  font-family: 'Noto Sans Mono', sans-serif;
  text-transform: uppercase;
}

.footer-socials{
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 90px;
}
.terms{
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #E3E3E3;
  font-family: 'Noto Sans Mono';
}

footer{
  background-image: url(../img/footer-bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 64px;
  padding-bottom: 64px;
}
/* Планшетная версия (3 ряда по 2 элемента) */
@media (max-width: 1024px) {
  .instruments__grid {
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
  }
  
  .instruments__item {
    width: 162px;
    height: 118px;
  }
}

/* Мобильная версия (аналогично планшету) */
@media (max-width: 768px) {
  .instruments__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .instruments__item {
    width: 162px;
    height: 118px;
  }
}

@media (min-width: 1168px) {
  .about-cards__item {
    flex: 1 1 calc(50% - 12px); /* 2 в ряд, с учётом gap: 24px */
  }
}


@media (max-width: 1290px) {
    .hero{
        flex-direction: column;
    }
    .hero__title, .hero__subtitle{
        text-align: center;
        margin: auto;
    }
    .hero__features{
        margin: auto;
        margin-top: 32px;
        margin-bottom: 32px;
    }
    .hero__cta, .hero__video{
        margin: auto;
    }
    .hero__cta{
        margin-bottom: 32px;
    }
      .partners-container{
    flex-direction: column;
  }

}

@media (max-width: 1190px) {
    .nav-list, .partner, .login-container{
        display: none;
    }
    .burger-icon{
        display: block;
    }
    .language-switcher{
        margin-right: 100px;
        z-index: 1000000000000;
    }
    .bonuses__content{
      flex-direction: column;
      align-items: center;
    
    }
    .traffic-container{
  display: flex;
  flex-direction: column;
  align-items: center;
}
}

@media (min-width: 769px) {
  .bonus-list {
    grid-template-columns: 1fr 1fr;
  }
}


@media (max-width: 768px) {
  .accordion-item__body {
    max-height: 0;
  }

  .accordion-item.active .accordion-item__body {
    max-height: 1000px;
  }

  .accordion-toggle {
    display: inline-block;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .offers__card-wrapper {
    width: calc(33.333% - 20px);
  }
}

@media (max-width: 767px) {
  .offers__card-wrapper {
    display: none;
  }
  .offers__card-wrapper:first-child {
    display: block;
    margin: 0 auto;
  }
}

@media (min-width: 769px) {
  .accordion-toggle {
    display: none;
  }

  .accordion-item__body {
    max-height: none !important;
  }
}

    @media (max-width: 710px){
        /* .container{
            max-width: 385px;
        } */
        .hero__title{
            font-size: 84px;
            text-align: center;
        }
        .hero__subtitle{
            font-size: 35px;
            text-align: center;
            margin-top: 16px;
        }
        .hero__features{
            gap: 40px;
        }
        .hero__video video{
            max-width: 340px;
        }
        .hero__preview-trigger{
        top: 0;
        right: -10px;
    }
      .about-cards__item{
    flex-direction: column !important;
    background-image: url(../img/about-bg-mobile.png);
    background-size: cover;
    height: 409px;
    width: 316px;
  }
  .about-cards__text{
    text-align: center;
  }
  .about-section{
    margin-bottom: 48px;
  }
  .stats{
    flex-direction: column;
  }
  .stats__content{
    gap: 10px;
  }
  .stats__count{
    font-size: 18px;
  }
  .stats__description{
    font-size: 14px;
  }
  .stats__icon{
    height: 40px;
    width: 40px;
  }
  .stats__title{
    font-size: 38px;
    text-align: center;
    margin: auto;
    margin-bottom: 48px;
  }
  .stats{
    margin-top: 48px;
  }
  .offers__title{
    background-size: contain;
    height: 50px;
  }
  .cta-block__title{
    font-size: 30px;
    text-align: center;
  }
  .cta-block__description{
    font-size: 16px;

  }
  .calculator-title{
    font-size: 20px;
  }
  .result{
    font-size: 16px;
  }
  .calculator{
    padding: 24px;
    padding-top: 48px;
  }
  .instruments__title{
    background-size: contain;
    width: 239px;
    height: 60px;
    font-size: 27px;
  }
  .bonuses__title, .reviews-title, .partners-title{
    font-size: 27px;
    background-size: contain;
  background-repeat: no-repeat;
  width: 178px;
  height: 68px;
  margin-bottom: 32px;
  }
  .partners-title{
    height: 45px;
  }
  .bonuses__program-text{
    font-size: 38px;
    text-align: center;
  }
  .bonuses__offer-text{
    font-size: 20px;
  }
  .reviews-title{
    margin-top: 64px;
  }
  .how-start-title{
  font-size: 38px;
    text-align: center;
  margin: auto;
  margin-bottom: 32px;
  margin-top: 64px;
}
.items{
  flex-direction: column;
}
.faq-title{
  margin-bottom: 32px;
  margin-top: 64px;
  background-size: contain;
  font-size: 27px;
  width: 98px;
  height: 62px;
}
.traffic h2{
  font-family: "Tektur", sans-serif;
  font-size: 38px;
  font-weight: 500;
  line-height: 100%;
}
.traffic-container{
  gap:0;
  margin-top: 64px;
  margin-bottom: 64px;
}
footer{
  background-image: url(../img/footer-mobile-bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 32px;
  padding-bottom: 16px;
}
.terms {

  flex-direction: column;
  font-size: 12px;
  gap: 10px;
}
.footer-title{
  font-size: 80px;
}
.partners{
  margin-top: 64px;
}

    }

  @keyframes shake {
  0% { transform: translate(0, 0) rotate(0); }
  20% { transform: translate(-2px, 0) rotate(-2deg); }
  40% { transform: translate(2px, 0) rotate(2deg); }
  60% { transform: translate(-2px, 0) rotate(-2deg); }
  80% { transform: translate(2px, 0) rotate(2deg); }
  100% { transform: translate(0, 0) rotate(0); }
}

.shake {
  animation: shake 0.6s ease-in-out infinite;
  animation-delay: 0s; /* задержка перед началом */
}


.widget-container {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 230px;
  height: 162px;
  background-color: #080808;
  border-radius: 24px;
  padding: 12px;
  box-sizing: border-box;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #2D3533;
}
#paymentAmount{
  color: #01E083;
}
.data-row {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-size: 13px;
  color: #959595;
  font-family: 'Noto Sans Mono', sans-serif;
}

.svg-icon {
  margin-right: 8px;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.close-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #999;
  padding: 2px;
  line-height: 1;
}

.value {
  margin-left: 4px;
  font-weight: bold;
}