* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

:root {
  --primary: #002747;
  --primary-dark: #2f1656;
  --secondary: #d8f5ff;
  --white: #fff;
  --black: #15171c;
  --lime-dark: #95e5f1;
  --lime: #ceedf9;
  --lime-400: #41b6da;
  --light-gray: #f6f6f6;
  --gray: #d1dadb;
  --light: #e6e6e6;
  --text-gray: #6f7480;
  --gray-700: #818897;
  --brand-500: #05aac7;
  --success: #0a5a6e;
  --green-700: #4e6d75;
  --green-800: #2c4e58;
  --green-900: #022237;
}

html,
body {
  height: 100%;
}

body.no-scroll,
html.no-scroll {
  height: 100vh;
  overflow: hidden;
  position: fixed;
  width: 100%;
}

html {
  scroll-behavior: smooth;
  font-size: 14px;
}

li,
a {
  list-style-type: none;
  text-decoration: none;
}

/* 
.box {
  width: 100%;
  height: 100%;
} */

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

.section {
  width: 100%;
  overflow: hidden;
}

.section-wrapper {
  width: 100%;
  margin: 0 auto;
  padding: 100px 0;
}

.card-logo {
  display: flex;
  overflow: hidden;
  border-radius: 50%;
  border: 1.31px solid white;
  width: 11px;
  height: 11px;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.z-index-negative-9999 {
  z-index: -9999 !important;
}

.preloader{
  position: fixed;
  inset: 0;
  background: var(--secondary);
  z-index: 9999;
  overflow: hidden;
}

.preloader-center{
  position: absolute;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  transform: translate(-50%, -50%);
}

/* белый квадрат — теперь тоже от центра */
.preloader-logo-overlay{
  position: absolute;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  transform: translate(-50%, -50%) scale(1);
  transform-origin: center;
  background: var(--white);
  border-radius: 37.5px;
  will-change: transform;
}


/* иконка */
.logo-icon{
  position: absolute;
  left: 50%;
  top: 50%;
  width: 128px;
  height: 128px;
  transform: translate(-50%, -50%);
  z-index: 1;
  will-change: transform;
}

.logo-icon img{
  width: 100%;
  height: 100%;
  display: block;
}


/* анимации (твои же) */
.animation-scale-in-out {
  animation: scaleInOut 2s ease forwards;
}

.animation-scale-in-out-2 {
  animation: scaleInOut2 2s ease forwards;
}

@keyframes scaleInOut {
  0%   { transform: translate(-50%, -50%) scale(1); }
  40%  { transform: translate(-50%, -50%) scale(0.8); }
  100% { transform: translate(-50%, -50%) scale(20) rotate(90deg); }
}


/* логотип не должен “улетать”, поэтому просто scale */
@keyframes scaleInOut2 {
  0%   { transform: translate(-50%, -50%) scale(1); }
  40%  { transform: translate(-50%, -50%) scale(0.8); }
  100% { transform: translate(-50%, -50%) scale(1); }
}

.hide-preloader {
  opacity: 0;
  pointer-events: none;
}

.header {
  width: 100%;
}

.header-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 0;
}

.header-wrapper-logo {
  max-width: 156px;
}

.header-logo-item {
  max-width: 156px;
}
@media (max-width: 768px) {
  .header-logo-item {
    max-width: 120px; /* или 220px если хочешь ещё крупнее */
  }
}

.header-wrapper-button {
  position: relative;
  display: flex;
}

.language-button {
  padding: 4px 12px;
  background-color: transparent;
  color: var(--black);
  border: 1px solid #000000;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  transition: 0.4s;
  transform-origin: top;
  transform: scaleY(0);
  cursor: pointer;
}

.language-button.current,
.language-button.open {
  transform: scaleY(1);
}

.language-button:not(.current) {
  width: 100%;
  position: absolute;
  top: calc(100% + 8px);
}

.language-button::before {
  font-size: 24px;
  line-height: 32px;
}

.spain-button::before {
  content: "\1F1EA\1F1F8";
}

.english-button::before {
  content: "\1F1FA\1F1F8";
}

.language-button svg {
  transition: 0.4s;
  transform: rotate(180deg);
}

.language-button.active svg {
  transform: rotate(0);
}

.download-button {
  padding: 12px 32px 12px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: 0.4s;
}

.download-button:hover {
  transform: scale(1.07);
}

.download-button.black {
  background: var(--black);
  color: var(--white);
}

.download-button.light {
  background-color: var(--light-gray);
  color: var(--black);
}

.download-button.transparent {
  background-color: transparent;
  color: var(--white);
  border: 1px solid #f0f0f0;
}

.hero {
  overflow: hidden;
}

.hero-wrapper {
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
  padding: 0;
  padding-bottom: 80px;
}

.hero-wrapper-header {
  max-width: 650px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

.hero-wrapper-top {
  background: var(--light-gray);
  padding: 8px 16px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-wrapper-top img {
  width: 24px;
}

.hero-top-text {
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  color: var(--black);
}

.hero-wrapper-title {
  font-size: 73px;
  font-weight: 600;
  line-height: 130%;
  color: var(--black);
  text-align: center;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.hero-wrapper-text {
  font-size: 22px;
  line-height: 32px;
  font-weight: 500;
  color: var(--text-gray);
  text-align: center;
}

.hero-wrapper-main {
  max-width: 660px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.hero-wrapper-banner {
  max-width: 730px;
}

.hero-banner-item {
  width: 100%;
}

.hero-2-wrapper {
  position: relative;
  height: 200vh;
}

.hero-2-slot {
  height: 100vh;
  position: sticky;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-2-wrapper .payment-cards {
  position: absolute;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}

.hero-2-wrapper .payment-card {
  width: 313px;
  height: 200px;
  position: absolute;
  z-index: 0;
}

.hero-2-wrapper .payment-card.mono {
  top: -30%;
  left: 0%;
}

.hero-2-wrapper .payment-card.abank {
  top: -33%;
  right: 0%;
}

.hero-2-wrapper .payment-card.raiffeisen {
  bottom: -36%;
  left: 0%;
}

.hero-2-wrapper .payment-card.privat {
  bottom: -26%;
  right: 0%;
}

.hero-2-wrapper .payment-card img {
  width: 100%;
  height: 100%;
}

.hero-2-wrapper-image {
  max-width: calc(500px * 1.5);
  width: 100%;
  height: calc(516px * 1.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  overflow: hidden;
}

.hero-2-wrapper-image img {
  max-width: 500px;
  width: 100%;
}

.about-wrapper {
  position: relative;
  height: 200vh;
}

.about-wrapper-slot {
  height: 100vh;
  position: sticky;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-wrapper-title {
  text-align: center;
  max-width: 580px;
  color: var(--primary);
}

.about-wrapper-title h2 {
  font-size: 48px;
  font-weight: 500;
  line-height: 56px;
}

.about-wrapper-cards {
  position: absolute;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}

.about-card {
  position: absolute;
  max-width: 272px;
  width: 100%;
  border-radius: 40px;
  overflow: hidden;
  box-sizing: content-box;
}

.about-card-content {
  position: relative;
  width: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;

}

.about-card-1 {
  max-width: 200px;
  border: 0;
  border-radius: 40px;
  box-shadow: none;
}

.about-card-1 .about-card-content {
  height: 230px;
  background-image: url("../116.png");
}

.about-card-2 {
  /* border-radius: 28px; */
}

.about-card-2 .about-card-content {
  height: 230px;
  background-image: url("../117.png");
}

.about-card-2 .about-card-content-header {
  display: flex;
  justify-content: space-between;
  gap: 6px;
}



.about-card-2 .about-card-content-header h3 {
  font-size: 16px;
  color: var(--black);
}

.about-card-2 .about-card-content-header button {
  font-size: 12px;
  color: var(--primary);
}

.about-card-2 .about-card-content-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about-card-2 .about-card-list-item:not(:last-child) {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--light);
}

.about-card-2 .about-card-list-item {
  display: flex;
  justify-content: space-between;
}

.about-card-2 .about-card-item-info {
  display: flex;
  gap: 8px;
}

.about-card-2 .about-card-item-img {
  display: flex;
  position: relative;
  width: 45px;
  height: 29px;
}

.about-card-2 .about-card-item-img img {
  border-radius: 3px;
}

.about-card-2 .card-logo {
  position: absolute;
  bottom: 0;
}

.about-card-2 .about-card-info-details {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about-card-2 .about-card-info-details .text {
  font-size: 10px;
  line-height: 14px;
  font-weight: 500;
  word-break: break-all;
}

.about-card-2 .about-card-info-details .additional-text {
  font-size: 8px;
  line-height: 11px;
  font-weight: 300;
  color: var(--gray-700);
}

.about-card-2 .about-card-item-balance {
  font-size: 10px;
  line-height: 14px;
  font-weight: 700;
}

.about-card-3 {
  border: 0;
  box-shadow: none;
}

.about-card-3 .about-card-content {
  height: 230px;
  background-image: url("../119.png");
}



.about-card-3 .about-card-info-img svg {
  height: 12.5px;
  width: 12.5px;
}

.about-card-3 .about-card-info-img .card-logo {
  position: absolute;
  top: -4px;
  right: -4px;
}

.about-card-3 .about-card-info-title {
  font-size: 10px;
  font-weight: 400;
  line-height: 14px;
  color: var(--black);
}

.about-card-3 .about-card-info-details {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}

.about-card-3 .about-card-info-details .text {
  width: max-content;
  font-size: 10px;
  font-weight: 500;
  line-height: 14px;
  color: var(--success);
}

.about-card-3 .about-card-info-details .additional-text {
  font-size: 9px;
  font-weight: 300;
  line-height: 11px;
  color: var(--gray-700);
}

.about-card-4 {
  border-color: #f2fce9;
}

.about-card-4 .about-card-content {
 height: 230px;
  background-image: url("../118.png");
}



.about-card-4 .about-card-item-icon {
  font-size: 26px;
  line-height: 35px;
}

.about-card-4 .about-card-item-text {
  font-size: 13px;
  font-weight: 500;
  line-height: 18px;
  color: var(--green-900);
}

.about-card-5 .about-card-content {
  height: 230px;
  background-image: url("../120.png");
}

.about-card-5 .about-card-content-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.about-card-5 .about-card-header-title {
  text-align: center;
}



.about-card-5 .about-card-header-img img {
  width: 100%;
}

.about-card-5 .about-card-content-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.about-card-5 .about-card-main-text {
  text-align: center;
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
  color: #92b3b9;
}

.about-card-5 .about-card-main-price {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}

.about-card-1 {
  top: -36%;
  left: -64px;
}

.about-card-2 {
  top: -50%;
  right: 0;
}

.about-card-3 {
  bottom: -45%;
  right: -45%;
}

.about-card-4 {
  bottom: -100%;
  right: 37.5%;
}

.about-card-5 {
  bottom: -47%;
  left: -55%;
}

.features {
  padding: 100px 0;
}

.features-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 60px;
}

.features-title {
  max-width: 1000px;
  font-size: 56px;
  font-weight: 500;
}

.features-slider {
  padding-left: 100px;
}

.features-slider .splide__slide {
  box-sizing: content-box;
}

.features-slider .splide__slide:last-child {
  padding-right: 16px;
}

.features-card {
  height: 100%;
  background-color: var(--light-gray);
  border-radius: 32px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  cursor: pointer;
}

.features-card-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 32px 24px 0;
}

.features-card-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
}

.features-card-desc {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  color: var(--text-gray);
}

.features-card-main img {
  width: 100%;
}

.how-it-works-wrapper {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.how-it-works-wrapper-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.top-info-button {
  width: max-content;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 6px 12px;
  border-radius: 100px;
  border: 1px solid var(--lime-dark);
  background-color: var(--white);
  box-shadow: 0 4px 20px 0 #95ecf14d;
  font-size: 16px;
  font-weight: 300;
  line-height: 22px;
}

.how-it-works-wrapper-title {
  text-align: center;
  font-size: 56px;
  font-weight: 500;
  max-width: 665px;
}

.how-it-works-items {
  display: flex;
  flex-direction: column;
  gap: 60px;
  list-style: none;
}

.how-it-works-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  transition: 0.7s;
}

.how-it-works-item-content {
  max-width: 660px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  transition: 0.7s;
}

.how-it-works-item.not-active .how-it-works-item-content {
  max-width: 500px;
}

.how-it-works-item.not-active .how-it-works-item-content {
  opacity: 0.5;
}

.how-it-works-item-top {
  padding: 4px 11px;
  border-radius: 100px;
  background-color: #f0f0f0;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  transition: 0.7s;
}

.how-it-works-item-main {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
  transition: 0.7s;
}

.how-it-works-item-main-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  transition: 0.7s;
}

.how-it-works-item.not-active .how-it-works-item-main-title {
  font-size: 24px;
  line-height: 30px;
}

.how-it-works-item-main-text {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  color: var(--text-gray);
  transition: 0.7s;
}

.how-it-works-item.not-active .how-it-works-item-main-text {
  font-size: 13.5px;
  line-height: 18px;
}

.how-it-works-item-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.open-button {
  padding: 12px 32px 12px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  border-radius: 50px;
  
  cursor: pointer;
  transition: 0.4s;
  color: var(--black);
  background-color: var(--lime);
}

.open-button:hover {
  transform: scale(1.07);
}

.open-button-icon {
  width: 32px;
  height: 32px;
  display: flex;
  border-radius: 50%;
  background-color: #ffffff;
  justify-content: center;
  align-items: center;
}

.how-it-works-item .download-button,
.how-it-works-item .open-button {
  transition: 0.7s;
}

.how-it-works-item.not-active .how-it-works-item-buttons .download-button,
.how-it-works-item.not-active .how-it-works-item-buttons .open-button {
  padding: 10px 15px 12px 15px;
  font-size: 12px;
}

.how-it-works-item.not-active .how-it-works-item-buttons .download-button img,
.how-it-works-item.not-active .how-it-works-item-buttons .open-button-icon {
  width: 24px;
  height: 24px;
}

.how-it-works-item-img {
  max-width: 660px;
  width: 100%;
  border-radius: 68px;
  overflow: hidden;
  transition: 0.7s;
}

.how-it-works-item-img img {
  width: 100%;
}

.how-it-works-item.not-active .how-it-works-item-img {
  max-width: 500px;
  filter: grayscale(100%);
  opacity: 0.8;
}

.advantages {
  background-color: var(--primary);
  color: var(--white);
}

.advantages .container {
  max-width: 1280px;
}

.advantages-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.advantages .top-info-button {
  box-shadow: none;
  background-color: transparent;
  color: var(--lime-400);
}

.advantages-header {
  width: 48%;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.advantages-wrapper-title {
  font-size: 48px;
  line-height: 56px;
  font-weight: 500;
}

.advantages-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.advantages-item {
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 60px;
  justify-content: space-between;
  border-bottom: 1px solid #4e6675;
  transition: 0.4s;
}

.footer-legal {
  margin-top: 72px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-legal p {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
  max-width: 980px;
}

.advantages-item.not-active {
  opacity: 0.6;
}

.advantages-item:last-child {
  border-bottom: none;
}

.advantages-item-title {
  width: 50%;
  display: flex;
  align-items: baseline;
  gap: 60px;
}

.advantages-item-number {
  font-size: 32px;
  font-weight: 400;
  line-height: 40px;
}

.advantages-item-heading {
  font-size: 32px;
  font-weight: 500;
  line-height: 40px;
}

.advantages-item-desc {
  width: 50%;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
}

.faq {
  background-color: var(--light-gray);
}

.faq-wrapper {
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: center;
}

.faq-wrapper-header {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.faq .top-info-button {
  box-shadow: none;
  border: 0;
}

.faq-wrapper-title {
  font-size: 56px;
  font-weight: 500;
}

.faq-list {
  list-style: none;
  padding: 0;
  width: 100%;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.faq-item {
  padding: 32px 24px;
  background: var(--white);
  border-radius: 32px;
  overflow: hidden;
  cursor: pointer;
}

.faq-item-details summary {
  list-style: none;
}

.faq-item-summary::-webkit-details-marker {
  display: none;
}

.faq-item-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-item-question {
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
}

.faq-item-number {
  font-size: 32px;
  font-weight: 400;
  line-height: 40px;
}

.faq-item-answer-container {
  height: 0;
  overflow: hidden;
  transition: 0.4s;
}

.faq-item-answer {
  padding-top: 32px;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  color: var(--text-gray);
}

.reviews {
  padding: 100px 0;
}

.reviews-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 60px;
}

.reviews-title {
  font-size: 56px;
  font-weight: 500;
}

.reviews-slider {
  padding-left: 100px;
}

.reviews-slider .splide__slide {
  box-sizing: content-box;
}

.reviews-slider .splide__slide:last-child {
  padding-right: 32px;
}

.reviews-card {
  background: var(--white);
  border-radius: 48px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  cursor: pointer;
}

.reviews-card-1[data-type="img"] {
  background-image: url("../images/review-background-1.avif");
}

.reviews-card-2[data-type="img"] {
  background-image: url("../images/review-background-2.avif");
}

.reviews-card-3[data-type="img"] {
  background-image: url("../images/review-background-3.avif");
}

.reviews-card-4[data-type="img"] {
  background-image: url("../images/review-background-4.avif");
}

.reviews-card[data-type="text"] {
  border: 1px solid var(--light);
  padding: 24px;
  gap: 4px;
}

.reviews-card-header {
  color: #9ba3b3;
  font-size: 48px;
  font-weight: 500;
  line-height: 56px;
}

.reviews-card-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.reviews-card[data-type="img"] .reviews-card-info {
  flex-grow: 1;
  position: absolute;
  padding: 14px;
  left: 50%;
  transform: translate(-50%);
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: calc(100% - 32px);
  background: #ffffff;
  border-radius: 32px;
  bottom: 16px;
}

.reviews-slider
  .splide__slide:last-child
  .reviews-card[data-type="img"]
  .reviews-card-info {
  width: calc(100% - 64px);
  left: calc(50% - 16px);
}

.reviews-card[data-type="text"] .reviews-card-info {
  padding: 0;
  flex-grow: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}

.reviews-card-name {
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

.reviews-card-role {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
}

.splide__list {
  padding-bottom: var(--gap);
}

.splide__arrow {
  color: var(--clr-text-dark);
}

.splide__arrow path {
  stroke: var(--clr-text-dark);
}

.prices {
  background: var(--light-gray);
}

.prices-wrapper {
  display: flex;
  flex-direction: column;
  gap: 120px;
}

.prices-wrapper-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.prices-wrapper-header-top,
.prices-wrapper-header-bottom {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.prices-wrapper-header-top {
  gap: 16px;
}

.prices .top-info-button {
  box-shadow: none;
  border: 0;
}

.prices-title {
  font-size: 56px;
  font-weight: 500;
}

.prices-subtitle {
  max-width: 660px;
  font-size: 18px;
  font-weight: 300;
  line-height: 24px;
  color: var(--text-gray);
}

.prices-toggle {
  display: inline-flex;
  border-radius: 100px;
  padding: 6px;
  background-color: var(--white);
}

.prices-toggle-button {
  background: transparent;
  border: 0;
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 16px;
  font-weight: 300;
  line-height: 22px;
  color: var(--black);
  cursor: pointer;
  transition: 0.4s;
}

.prices-toggle-button.active {
  background: var(--black);
  color: var(--white);
}

.prices-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  row-gap: 24px;
}

.prices-card {
  position: relative;
  min-width: 224px;
  width: calc((100% / 3) - 10.7px);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: 0.4s;
}

.prices-card.not-active {
  opacity: 0.4;
  pointer-events: none;
}

.prices-card-main-container {
  width: 100%;
  flex-grow: 1;
  display: flex;
}

.prices-card-header,
.prices-card-main {
  width: 100%;
  padding: 32px;
  display: flex;
  flex-direction: column;
  border-radius: 32px;
  border: 4px solid #f4f4f4;
  background: var(--white);
}

.prices-card-additional-height {
  display: none;
}

.prices-card-header {
  gap: 16px;
  margin-bottom: 12px;
  z-index: 1;
}

.prices-card.pro .prices-card-header {
  border-color: var(--lime);
}

.prices-card-main {
  gap: 0;
}

.mobile-margin {
  transition: transform 0.25s ease;

}

.mobile-margin:hover {
  transform: scale(1.07);
}

/* Только для мобайла */
@media (max-width: 768px) {
  .mobile-margin {
    margin-top: 30px;
  }
}

.prices-card-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  color: var(--primary);
}

.prices-card-subtitle {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: var(--text-gray);
}

.prices-card-price {
  transition: 0.4s;
}

.prices-card-price.opacity-0 {
  opacity: 0;
}

.prices-card-price-by-month {
  display: none;
}

.prices-card-price-amount {
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
}

.prices-card-price-period {
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
}

.prices-card-price-period span {
  color: var(--text-gray);
}

.prices-card-button {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 13px 24px;
  border: 1px solid #141415;
  border-radius: 100px;
  background: transparent;
  color: var(--black);
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  cursor: pointer;
  transition: 0.3s;
}

.prices-card-button:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: scale(1.07);
}

.prices-card.pro .prices-card-button {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.prices-card-button-more {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border: 0;
  background: 0;
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
  color: #9ba3b3;
  transition: 0.4s;
}

.prices-card-button-more img,
.prices-card-button-more svg {
  transition: 0.4s;
}

.prices-card-button-more.active img,
.prices-card-button-more.active svg {
  transform: rotate(180deg);
}

.prices-card-header-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
}

.prices-card-badge {
  position: absolute;
  top: -39px;
  width: 80%;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
}

.prices-card.pro .prices-card-badge {
  color: var(--white);
  background-color: var(--primary);
}

.prices-card.premium .prices-card-badge {
  color: var(--primary);
  background-color: var(--lime-dark);
}

.prices-card-features {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.prices-card-features li {
  display: flex;
  gap: 8px;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
}

.prices-card-feature-icon {
  width: 24px;
  height: 24px;
}

.why {
  background: #9fe2ff;
}

.why-wrapper {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.why-wrapper-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.why .top-info-button {
  background-color: transparent;
  border: 1.5px solid var(--primary);
  color: var(--primary);
}

.why-wrapper-title {
  max-width: 1000px;
  text-align: center;
  font-size: 56px;
  font-weight: 600;
  color: var(--primary);
}

.why-wrapper-subtitle {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  max-width: 660px;
  color: var(--green-700);
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-features-main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.why-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--white);
  border-radius: 48px;
  overflow: hidden;
  transition: transform 0.25s ease;
}

.why-item:hover {
  transform: scale(0.97);
}

.why-item-large {
  max-height: 700px;
  padding: 32px;
  gap: 32px;
}

.why-item-large-1 {
  padding-bottom: 0 !important;
}

.why-item-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.why-item-large .why-item-content {
  gap: 16px;
}

.why-item-title {
  font-size: 32px;
  font-weight: 500;
  line-height: 40px;
}

.why-item-desc {
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: -1px;
  color: var(--text-gray);
}

.why-item-media {
  flex: 1;
  display: flex;
}

.why-item-img {
  max-width: 100%;
  height: auto;
}

.why-item-small-3 .why-item-img {
  max-width: 195px;
}

.why-features-extra {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.why-item-small {
  height: 375px;
  padding: 24px;
  gap: 24px;
}

.why-item-small .why-item-content {
  gap: 4px;
}

.why-item-small .why-item-title {
  font-size: 24px;
  line-height: 32px;
}

.why-item-small .why-item-desc {
  font-size: 16px;
  line-height: 22px;
}

.testimonials {
  position: relative;
  height: 900px;
  overflow: hidden;
  color: var(--white);
}

.testimonials .background {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -1;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

.testimonials .container {
  height: 100%;
}

.testimonials-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.testimonials-wrapper-title {
  text-align: center;
  font-size: 56px;
  font-weight: 500;
  max-width: 768px;
}

.testimonials-wrapper-buttons {
  display: flex;
  max-width: 660px;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

/* Footer */
.footer {
  position: relative;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
  z-index: 1;
}

.footer-background-text {
  position: absolute;
  bottom: -100px;
  left: -74%;
  z-index: 0;
  opacity: 0.03;
  display: flex;
  gap: 86px;
  z-index: 2;
}

.footer-background-text span {
  flex-shrink: 0;
  font-size: 316px;
  font-weight: 500;
  line-height: 121%;
  color: var(--white);
}

.footer .container {
  position: relative;
  max-width: 1280px;
  z-index: 3;
}

.footer-wrapper {
  padding: 120px 0 80px;
  z-index: 3;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-bottom: 136px;
  z-index: 3;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 3;
}

.footer-logo {
  width: 310px;
  height: auto;          /* важно */
  max-width: 100%;
  object-fit: contain;   /* чтобы не резало */
  display: block;
}

/* на мобилке можно сделать чуть меньше */
@media (max-width: 768px) {
  .footer-logo {
    min-width: 220px;        /* подбери */
    min-height: 100px;
    height: auto;
  }
}

.footer-brand-name {
  font-size: 48px;
  font-weight: 500;
  line-height: 56px;
  z-index: 3;
}

.footer-subscribe-container {
  max-width: 350px;
  z-index: 3;
}

.footer-subscribe-container,
.footer-subscribe {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 3;
}

.footer-subscribe-label {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  z-index: 3;
}

.footer-subscribe-field {
  display: flex;
  padding: 6px 6px 6px 12px;
  align-items: center;
  background: transparent;
  border: 1px solid #ffffff66;
  border-radius: 100px;
  overflow: hidden;
  z-index: 3;
}

.footer-input {
  flex: 1;
  background: transparent;
  border: none;
  font-size: 16px;
  font-weight: 300;
  line-height: 22px;
  color: var(--white);
  z-index: 3;
}

.footer-input::placeholder {
  color: #ffffffb2;
}

.footer-input:focus {
  outline: none;
}

.footer-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px;
  background: var(--lime-dark);
  border: none;
  cursor: pointer;
  border-radius: 50%;
}

.footer-subscribe-response {
  display: none;
  font-size: 13px;
  font-weight: 300;
  line-height: 19px;
  z-index: 3;
}

.footer-subscribe-response.success {
  color: var(--secondary);
}

.footer-subscribe-response.error {
  color: red;
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(217, 217, 217, 0.5);
  z-index: 3;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;
  flex-wrap: wrap;
  margin-top: 106px;
  z-index: 3;
}

.footer-qr {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  max-width: 367px;
  width: 100%;
  z-index: 3;
}

.footer-qr-img {
  width: 175px;
  height: 175px;
  z-index: 3;
}

.footer-qr-text {
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  z-index: 3;
}

.footer-nav-list {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
  z-index: 3;
}

.footer-nav-link {
  text-decoration: none;
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  transition: 0.4s;
  color: var(--white);
  z-index: 3;
}

.footer-nav-link:hover {
  color: #ffffff66;
}
