.s-hero__inner {
  position: relative;
  padding: 89px 96px 80px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 1440px;
  margin: 0 auto;
}
.s-hero__content { display: flex; flex-direction: column; gap: 16px; max-width: 680px; position: relative; z-index: 1; }
.s-hero__title {
  font-size: 44px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--color-text-dark);
}
.s-hero__subtitle {
  font-size: 18px;
  line-height: 1.4;
  color: var(--color-text-gray-3);
}

.s-stats { display: flex; gap: 16px; position: relative; z-index: 1; }
.s-stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 240px;
}
.s-stat__num { font-size: 32px; font-weight: 700; color: var(--color-primary); }
.s-stat__label { font-size: 14px; color: var(--color-text-gray); }

.s-hero__actions { display: flex; gap: 16px; position: relative; z-index: 1; }
.s-hero__btn { padding: 12px 20px; }

.s-hero__visual {
  position: absolute;
  right: 96px;
  top: 50%;
  transform: translateY(-50%);
  width: 480px;
  height: 480px;
}
.s-hero__circle {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--color-bg-light);

  z-index: 0;
}
.s-hero__image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.s-how__inner {
  background: var(--color-bg-light);
  padding: 80px 96px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1440px;
  margin: 0 auto;
}
.s-how { background: var(--color-bg-light); }
.s-how__head { text-align: center; display: flex; flex-direction: column; gap: 8px; align-items: center; }
.s-how__subtitle { font-size: 16px; color: var(--color-text-gray); }
.s-how__row { display: flex; gap: 16px; }
.s-step {
  flex: 1;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.s-step__num { font-size: 24px; font-weight: 700; color: var(--color-primary); }
.s-step__title { font-size: 17px; font-weight: 600; color: var(--color-text-dark); }
.s-step__text { font-size: 14px; line-height: 1.4; color: var(--color-text-gray); }

.s-advantages__row { display: flex; gap: 24px; }

.s-testimonials__inner {
  padding: 80px 96px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1440px;
  margin: 0 auto;
}
.s-testimonials__head { text-align: center; display: flex; flex-direction: column; gap: 8px; align-items: center; }
.s-testimonials__subtitle { font-size: 16px; color: var(--color-text-gray); }
.s-testimonials__row { display: flex; gap: 24px; align-items: stretch; }
.s-testimonial {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}
.s-testimonial__stars { color: #FFB020; font-size: 16px; letter-spacing: 2px; }
.s-testimonial__quote { font-size: 15px; line-height: 1.5; color: var(--color-text-dark); flex: 1; }
.s-testimonial__person { display: flex; align-items: center; gap: 12px; }
.s-testimonial__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-sky);
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.s-testimonial__info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.s-testimonial__name { font-size: 14px; font-weight: 600; color: var(--color-text-dark); }
.s-testimonial__role { font-size: 12px; color: var(--color-text-gray); line-height: 1.35; }

.s-faq__head { margin-bottom: -8px; }
