.s-hero {
  position: relative;
  padding: 5rem 0 4.5rem;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 255, 255, 0.82), transparent 24%),
    radial-gradient(circle at 88% 22%, rgba(27, 58, 138, 0.08), transparent 24%),
    linear-gradient(180deg, #eef5ff 0%, var(--bg-blue) 100%);
  overflow: clip;
  isolation: isolate;
}

.s-hero::before,
.s-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}

.s-hero::before {
  top: -7rem;
  right: -6rem;
  width: 21rem;
  height: 21rem;
  background: radial-gradient(circle, rgba(27, 58, 138, 0.12) 0%, rgba(27, 58, 138, 0) 68%);
  filter: blur(6px);
}

.s-hero::after {
  bottom: -9rem;
  left: -7rem;
  width: 18rem;
  height: 18rem;
  background: radial-gradient(circle, rgba(22, 163, 74, 0.08) 0%, rgba(22, 163, 74, 0) 70%);
  filter: blur(8px);
}

.s-hero .container {
  position: relative;
}

.s-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  align-items: center;
  gap: 3.75rem;
  min-height: calc(100vh - var(--page-offset));
  min-height: calc(100svh - var(--page-offset));
}

.s-hero__content {
  max-width: 40rem;
}

.s-hero__badge {
  margin-bottom: 1.25rem;
  padding-inline: 1rem;
  color: var(--text-gray);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.75);
}

.s-hero__badge-icon {
  color: var(--green);
}

.s-hero__badge-separator {
  color: var(--border-strong);
  user-select: none;
}

.s-hero__title {
  max-width: 13ch;
  margin-bottom: 1.25rem;
  color: var(--text-dark);
}

.s-hero__title-mark {
  color: var(--brand);
}

.s-hero__lead {
  max-width: 38rem;
  margin-bottom: 2rem;
  font-size: 1.125rem;
}

.s-hero__benefits {
  margin-bottom: 2.5rem;
}

.s-hero__benefits .check-list__item {
  font-size: var(--fs-15);
}

.s-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.s-hero__btn {
  min-width: 13.5rem;
}

.s-hero__trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.375rem;
  margin-top: 1rem;
  font-size: var(--fs-13);
  line-height: 1.5;
  color: var(--text-gray);
}

.s-hero__trust-icon {
  color: var(--text-gray);
  flex-shrink: 0;
}

.s-hero__trust-separator {
  margin-inline: 0.125rem;
  color: var(--border-strong);
  user-select: none;
}

.s-hero__visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.s-hero__media {
  position: relative;
  width: 100%;
  max-width: 34rem;
  padding-left: 1.5rem;
}

.s-hero__media::before {
  content: "";
  position: absolute;
  inset: 2rem 1rem 3rem 2.25rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62) 0%, rgba(255, 255, 255, 0.38) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    0 18px 40px rgba(27, 58, 138, 0.08);
  z-index: -1;
}

.s-hero__image {
  width: 100%;
  max-height: 28.75rem;
  object-fit: contain;
  filter: drop-shadow(0 18px 32px rgba(27, 58, 138, 0.08));
}

.s-hero__result {
  position: absolute;
  bottom: 1.5rem;
  left: 0;
  display: flex;
  align-items: center;
  gap: 0.875rem;
  width: fit-content;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-md);
  backdrop-filter: saturate(1.1);
}

.s-hero__result-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: var(--radius-sm);
  background: var(--bg-green);
  color: var(--green);
  flex-shrink: 0;
}

.s-hero__result-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.125rem;
}

.s-hero__result-label {
  font-size: var(--fs-13);
  line-height: 1.2;
  color: var(--text-gray);
}

.s-hero__result-value {
  font-size: 1.375rem;
  font-weight: var(--fw-700);
  line-height: 1.15;
  color: var(--brand);
  letter-spacing: -0.02em;
}

.s-hero__result-note {
  font-size: var(--fs-13);
  line-height: 1.25;
  color: var(--text-gray);
}

@media (min-width: 48rem) and (max-width: 64rem) {
  .s-hero {
    padding: 4.5rem 0 4rem;
  }

  .s-hero__grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 2.25rem;
    min-height: calc(100vh - var(--page-offset));
    min-height: calc(100svh - var(--page-offset));
  }

  .s-hero__title {
    max-width: 12ch;
    font-size: clamp(2.25rem, 5vw, 2.75rem);
  }

  .s-hero__lead {
    font-size: 1rem;
  }

  .s-hero__actions {
    gap: 0.75rem;
  }

  .s-hero__btn {
    min-width: auto;
  }

  .s-hero__media {
    max-width: 29rem;
    padding-left: 1rem;
  }

  .s-hero__media::before {
    inset: 1.5rem 0.75rem 2.5rem 1.5rem;
  }

  .s-hero__result {
    left: -0.25rem;
    bottom: 1rem;
  }
}

@media (max-width: 47.99875rem) {
  .s-hero {
    padding: 3rem 0 3.5rem;
    background:
      radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.78), transparent 28%),
      linear-gradient(180deg, #eff5ff 0%, var(--bg-blue) 100%);
  }

  .s-hero::before,
  .s-hero::after {
    display: none;
  }

  .s-hero__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    min-height: auto;
  }

  .s-hero__content {
    max-width: none;
    text-align: center;
  }

  .s-hero__badge {
    justify-content: center;
    margin-inline: auto;
    max-width: 100%;
    flex-wrap: wrap;
  }

  .s-hero__title {
    max-width: none;
    font-size: 2.25rem;
  }

  .s-hero__lead {
    margin-inline: auto;
    margin-bottom: 1.75rem;
    font-size: 1rem;
  }

  .s-hero__benefits {
    align-items: stretch;
    margin-bottom: 2rem;
    text-align: left;
  }

  .s-hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.875rem;
  }

  .s-hero__btn {
    width: 100%;
  }

  .s-hero__trust {
    justify-content: center;
    margin-top: 0.875rem;
  }

  .s-hero__visual {
    order: -1;
    justify-content: center;
  }

  .s-hero__media {
    max-width: 19rem;
    padding-left: 0;
  }

  .s-hero__media::before {
    inset: 1rem 0.25rem 1.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 12px 28px rgba(27, 58, 138, 0.08);
  }

  .s-hero__image {
    max-height: 16.25rem;
    filter: none;
  }

  .s-hero__result {
    position: static;
    margin: 1rem auto 0;
    animation: none;
  }
}

@media (hover: none), (pointer: coarse) {
  .s-hero__result {
    animation: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .s-hero__result {
    animation: none !important;
  }
}