.business-section {
  width: 100%;
  max-width: clamp(1200px, 90vw, 1600px);
  min-height: clamp(2600px, 55vw, 3648px);
  background-color: #000;
  background-image: url('/Images/EVERYTHINGBG.png');
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  border-radius: clamp(24px, 2.5vw, 40px);
  padding: clamp(36px, 4vw, 60px) clamp(60px, 6.25vw, 100px);
  color: #fff;
  font-family: 'Manrope';
  margin: 0 auto;
  position: relative;
}

/* Звезда */
.star-icon1 {
  width: clamp(23px, 2.7vw, 36px);
  height: clamp(26px, 3vw, 40.5px);
 margin-bottom: clamp(12px, 1.6vw, 20px); /* ⬅️ увеличено */
  background-image: url('/Images/ShineStar.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 5;
}

/* Заголовок */
.trust-block h2 {
  font-size: clamp(32px, 3.6vw, 49.5px);
  margin-bottom: clamp(3.6px, 0.45vw, 7.2px);
  font-weight: 600;
}

/* Колонки */
.trust-columns {
  display: flex;
  justify-content: space-between;
  gap: clamp(54px, 6.3vw, 108px);
}

/* Разделитель */
.divider {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
  margin: clamp(9px, 1.35vw, 14.4px) 0;
}

/* Карточки */
.trust-item {
  flex: 1;
  text-align: left;
}

.trust-item .number {
  font-size: clamp(108px, 11.7vw, 180px);
  font-weight: bold;
  margin-bottom: clamp(5.4px, 0.9vw, 9px);
}

.trust-item h4 {
  font-size: clamp(18px, 2vw, 27px);
  font-weight: 600;
  margin-bottom: clamp(9px, 1.1vw, 12.6px);
  line-height: 1.4;
}

.trust-item p {
  font-size: clamp(12.6px, 1.08vw, 14.4px);
  font-weight: 200;
  line-height: 1.5;
}




.steps-block {
  position: relative;
  margin-top: clamp(144px, 16.2vw, 252px);
  text-align: left;
}

.steps-title {
  font-size: clamp(32px, 4vw, 55px);
  font-weight: 700;
  margin-bottom: clamp(24px, 3vw, 40px);
  line-height: 1.2;
}

.steps-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1348 / 886;
}

.steps-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.step-item {
  position: absolute;
  display: flex;
  align-items: center;
  font-size: clamp(13px, 1.1vw, 15px);
  font-weight: 200;
  line-height: 1.5;
  color: #e6e6e6;
  max-width: clamp(240px, 28vw, 370px);
  z-index: 2;
}

/* Номер шага */
.step-number {
  font-size: clamp(36px, 5vw, 63px);
  font-weight: 200;
  margin-right: clamp(10px, 1.5vw, 18px);
  min-width: 26px;
  text-align: center;
}

/* Позиционирование по % из viewBox */
.step-1 {
  top: 7%;
  left: 3%;
}
.step-2 {
  top: 61%;
  left: 21.6%;
}
.step-3 {
  top: 22%;
  left: 63.7%;
}
.step-4 {
  top: 84.5%;
  left: 63.5%;
}

.cta-button-div {
  position: absolute;
  top: 99.88%;         /* по вертикали на уровень точки */
  right: 44.2%;        /* 100% - 55.8% = 44.2% → правый край точно по точке */
  transform: translateY(-50%);
  display: flex;
  justify-content: flex-end;
  z-index: 10;
}


.cta-button {
  padding: clamp(10px, 1.2vw, 13px) clamp(32px, 5vw, 50px);
  font-size: clamp(16px, 1.5vw, 19px);
  font-weight: 300;
  color: white;
  border: 1px solid white;
  border-radius: 40px;
  background: linear-gradient(90deg, #6163AE, #282948);
  text-decoration: none;
  box-shadow:
    0 0 20px rgba(194, 196, 255, 0.6),
    0 0 40px rgba(221, 210, 236, 0.4),
    0 0 60px rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

.cta-button:hover {
  transform: scale(1.05);
}












.plans-block {
  text-align: center;
  margin-top: clamp(160px, 20vw, 250px);
}

.gradient-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  background: linear-gradient(90deg, #FFFFFF, #D3B4FF, #BCB0FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.plans-subtitle {
  font-size: clamp(16px, 2vw, 22px);
  color: #fff;
  margin-top: clamp(6px, 1vw, 10px);
}

.plans {
  display: flex;
  gap: clamp(20px, 3vw, 30px);
  margin-top: clamp(40px, 6vw, 50px);
  justify-content: center;
}

.plan {
  background: rgba(255, 255, 255, 0.1);
  border-radius: clamp(14px, 2vw, 20px);
  padding: clamp(30px, 3.5vw, 40px) clamp(20px, 3vw, 30px);
  width: clamp(240px, 28vw, 300px);
  color: white;
  text-align: left;
  backdrop-filter: blur(6px);
  position: relative;
}

.plan h4 {
  font-size: clamp(18px, 2vw, 22px);
  margin-bottom: 8px;
}

.plan .desc {
  font-size: clamp(13px, 1.5vw, 14px);
  opacity: 0.8;
  margin-bottom: clamp(16px, 2vw, 20px);
}

.price {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: bold;
  margin-bottom: clamp(16px, 2vw, 20px);
}

.price span {
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 400;
  margin-left: 5px;
}

.buy-button {
  display: block;
  width: 100%;
  padding: clamp(10px, 1.2vw, 12px);
  border-radius: 30px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border: 1px solid white;
  background: none;
  color: white;
  margin-bottom: clamp(16px, 2vw, 20px);
}

.buy-button.purple {
  background: linear-gradient(90deg, #AE7DFB, #6350E0);
  border: none;
}

.features {
  list-style: none;
  padding: 0;
  font-size: clamp(12px, 1.2vw, 14px);
  opacity: 0.8;
}

.features li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.features li::before {
  content: "●";
  color: white;
  position: absolute;
  left: 0;
  font-size: 10px;
  top: 4px;
}

.popular {
  border: 1.5px solid #D3B4FF;
}

.badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: #fff;
  color: #000;
  font-size: 12px;
  padding: 2px 10px;
  border-radius: 20px;
  font-weight: 700;
}

.footnote1 {
  font-size: clamp(12px, 1.1vw, 13px);
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  margin-top: clamp(24px, 3vw, 30px);
  line-height: 1.5;
}


/* FAQ блок */
.faq-block {
  margin-top: 120px;
}

.faq-block h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 40px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* Вопрос */
.faq-question {
  padding: 20px;
  font-size: 20px;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* SVG-стрелка */
.arrow {
  transition: transform 0.3s ease;
  margin-left: 20px;
  margin-top: 2px;
}

/* Поворот стрелки при раскрытии */
.faq-item.active .arrow {
  transform: rotate(180deg);
}

/* Ответ (скрыт по умолчанию) */
.faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 16px;
  color: #ddd;
  line-height: 1.5;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}



/* 🔹 Планшеты: до 1024px */

@media (max-width: 1024px) {
  .trust-columns {
    flex-direction: column;
    gap: clamp(30px, 4vw, 60px);
  }

  .steps-image {
    grid-template-areas:
      "step-1"
      "step-2"
      "step-3"
      "step-4";
    grid-template-columns: 1fr;
    gap: clamp(24px, 4vw, 40px);
    justify-items: start;
  }

  .plans {
    flex-direction: column;
    align-items: center;
  }

  .faq-question {
    font-size: 18px;
  }

  .faq-answer {
    font-size: 15px;
  }
}

/* 🔹 Мобильные устройства: до 768px */

@media (max-width: 768px) {
  .business-section {
    padding: clamp(24px, 6vw, 40px) clamp(20px, 6vw, 40px);
    border-radius: clamp(12px, 3vw, 24px);
  }

  .trust-item .number {
    font-size: clamp(72px, 12vw, 108px);
  }

  .steps-block {
    margin-top: clamp(100px, 14vw, 160px);
  }

  .steps-title {
    font-size: clamp(24px, 5vw, 38px);
    text-align: center;
  }

  .step-item {
    flex-direction: column;
    align-items: flex-start;
    font-size: clamp(13px, 1.3vw, 15px);
    max-width: 100%;
  }

  .step-number {
    margin-bottom: 8px;
    margin-right: 0;
  }

  .cta-button {
    font-size: clamp(14px, 4vw, 17px);
    padding: clamp(10px, 4vw, 16px) clamp(24px, 6vw, 40px);
  }

  .plan {
    width: 90%;
    padding: clamp(24px, 5vw, 36px);
  }

  .faq-block h2 {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .steps-image {
    position: static;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    padding: 0;
  }

  .steps-svg {
    display: none;
  }

  .step-item {
    font-size: clamp(12px, 3.5vw, 14px);
    position: static;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    max-width: 100%;
  }

  .step-number {
    font-size: clamp(28px, 9vw, 36px); /* ⬅ Увеличено */
    font-weight: 600;
    min-width: 36px;
    margin: 0;
    margin-top: -4px;
  }

  .cta-button-div {
    position: static;
    transform: none;
    margin-top: 24px;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .cta-button {
    width: auto;
  }
}
