/* Полировка: иерархия, без наложений, один акцент на слайд */

/* ——— Базовая геометрия слайдов ——— */
.slide {
  align-items: center;
  justify-content: center;
  padding-top: calc(var(--nav-height) + 1rem);
  padding-bottom: 1.5rem;
}

.slide__inner {
  flex-shrink: 0;
  width: 100%;
}

.slide--hero,
.slide--title,
.slide--contacts {
  min-height: 100vh;
  min-height: 100dvh;
}

/* ——— Титульный слайд ——— */
.slide--title {
  position: relative;
  overflow: hidden;
  background: #070b09;
}

.title-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.title-backdrop__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.04);
  filter: brightness(0.78) saturate(1.08) contrast(1.06);
}

.title-backdrop__shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 92% 78% at 50% 50%, transparent 42%, rgb(10 15 13 / 0.28) 100%),
    linear-gradient(180deg, rgb(10 15 13 / 0.22) 0%, transparent 24%, transparent 76%, rgb(10 15 13 / 0.26) 100%);
}

.title-slide__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(
    ellipse 36% 30% at 50% 48%,
    rgb(10 15 13 / 0.42) 0%,
    rgb(10 15 13 / 0.12) 52%,
    transparent 74%
  );
}

.title-slide {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0;
  padding: 2rem 1.5rem;
}

.title-slide__glow {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(520px, 90vw);
  height: min(520px, 90vw);
  transform: translate(-50%, -58%);
  border-radius: 50%;
  background: radial-gradient(circle, rgb(58 209 102 / 0.1) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.slide.is-visible .title-backdrop__img {
  animation: title-backdrop-in 1.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes title-backdrop-in {
  from {
    opacity: 0;
    transform: scale(1.08);
  }

  to {
    opacity: 1;
    transform: scale(1.04);
  }
}

@media (prefers-reduced-motion: reduce) {
  .slide.is-visible .title-backdrop__img {
    animation: none;
  }
}

@media (max-width: 720px) {
  .title-backdrop__img {
    object-position: center 38%;
    filter: brightness(0.72) saturate(1.05) contrast(1.06);
  }
}

.title-slide__logo {
  position: relative;
  z-index: 1;
  width: clamp(4.5rem, 10vw, 6.25rem);
  height: clamp(4.5rem, 10vw, 6.25rem);
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
  filter: drop-shadow(0 12px 40px rgb(58 209 102 / 0.35));
}

.title-slide__heading {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: none;
  white-space: nowrap;
  font-size: clamp(1.25rem, 3.8vw, 3.35rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: var(--text);
  text-shadow:
    0 2px 28px rgb(0 0 0 / 0.75),
    0 1px 3px rgb(0 0 0 / 0.85);
}

.title-slide__brand {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: clamp(0.65rem, 2vw, 1.15rem);
  margin: clamp(1.35rem, 3.5vw, 2rem) 0 0;
  white-space: nowrap;
}

.title-slide__brand-line {
  width: clamp(2rem, 6vw, 4.5rem);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgb(58 209 102 / 0.45) 35%,
    rgb(58 209 102 / 0.45) 65%,
    transparent
  );
}

.title-slide__brand-name {
  display: inline-flex;
  align-items: center;
  padding: 0.42em 1.05em;
  border-radius: 999px;
  border: 1px solid rgb(58 209 102 / 0.28);
  background: linear-gradient(
    135deg,
    rgb(58 209 102 / 0.12) 0%,
    rgb(58 209 102 / 0.04) 55%,
    rgb(255 255 255 / 0.03) 100%
  );
  box-shadow:
    0 0 0 1px rgb(58 209 102 / 0.06) inset,
    0 12px 40px rgb(58 209 102 / 0.1);
}

.title-slide__brand-name-text {
  font-size: clamp(0.95rem, 2.2vw, 1.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ecfdf3 0%, #86efac 45%, var(--green) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

[data-theme="premium"] .slide--title {
  background: #0a0907;
}

[data-theme="premium"] .title-backdrop__img {
  filter: brightness(0.74) saturate(0.92) sepia(0.1) contrast(1.06);
}

[data-theme="premium"] .title-slide__brand-line {
  background: linear-gradient(
    90deg,
    transparent,
    rgb(212 168 83 / 0.45) 35%,
    rgb(212 168 83 / 0.45) 65%,
    transparent
  );
}

[data-theme="premium"] .title-slide__brand-name {
  border-color: rgb(212 168 83 / 0.32);
  background: linear-gradient(
    135deg,
    rgb(212 168 83 / 0.12) 0%,
    rgb(212 168 83 / 0.04) 55%,
    rgb(255 255 255 / 0.03) 100%
  );
  box-shadow:
    0 0 0 1px rgb(212 168 83 / 0.06) inset,
    0 12px 40px rgb(212 168 83 / 0.1);
}

[data-theme="premium"] .title-slide__brand-name-text {
  background: linear-gradient(135deg, #fffbeb 0%, #fcd34d 45%, #d4a853 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

[data-theme="premium"] .title-slide__glow {
  background: radial-gradient(circle, rgb(212 168 83 / 0.12) 0%, transparent 68%);
}

[data-theme="premium"] .title-slide__logo {
  filter: drop-shadow(0 12px 40px rgb(212 168 83 / 0.28));
}

[data-theme="scale"] .title-slide__brand-line {
  background: linear-gradient(
    90deg,
    transparent,
    rgb(96 165 250 / 0.4) 35%,
    rgb(96 165 250 / 0.4) 65%,
    transparent
  );
}

[data-theme="scale"] .title-slide__brand-name {
  border-color: rgb(96 165 250 / 0.32);
  background: linear-gradient(
    135deg,
    rgb(96 165 250 / 0.12) 0%,
    rgb(96 165 250 / 0.04) 55%,
    rgb(255 255 255 / 0.03) 100%
  );
  box-shadow:
    0 0 0 1px rgb(96 165 250 / 0.06) inset,
    0 12px 40px rgb(96 165 250 / 0.1);
}

[data-theme="scale"] .title-slide__brand-name-text {
  background: linear-gradient(135deg, #eff6ff 0%, #93c5fd 45%, #3b82f6 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

[data-theme="scale"] .slide--title {
  background: #070a10;
}

[data-theme="scale"] .title-backdrop__img {
  filter: brightness(0.76) saturate(0.95) hue-rotate(-8deg) contrast(1.06);
}

[data-theme="scale"] .title-slide__glow {
  background: radial-gradient(circle, rgb(96 165 250 / 0.1) 0%, transparent 68%);
}

.slide.is-visible .title-slide__logo {
  animation: title-rise 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.slide.is-visible .title-slide__heading {
  animation: title-rise 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.08s both;
}

.slide.is-visible .title-slide__brand {
  animation: title-rise 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.16s both;
}

@keyframes title-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide--compact .slide__inner {
  max-width: 1080px;
}

.slide--compact .slide__header--center {
  margin-bottom: 1.25rem;
}

.slide--compact .slide__header--center h2 {
  max-width: 720px;
}

.slide--compact h2 {
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  margin-bottom: 0.65rem;
}

.slide--compact .slide__desc {
  font-size: 0.92rem;
  margin-bottom: 1rem;
  line-height: 1.55;
}

.slide--compact .eyebrow {
  margin-bottom: 0.5rem;
}

/* ——— Типографика: eyebrow не кричит на каждом слайде ——— */
.eyebrow {
  color: var(--text-soft);
  letter-spacing: 0.1em;
}

.slide--hero .eyebrow,
#pricing .eyebrow,
.slide--contacts .eyebrow {
  color: var(--green);
}

/* ——— Hero: один акцент = цена ——— */
.hero__lead {
  margin-bottom: 1.25rem;
  max-width: 440px;
}

#hero .hero__lead {
  max-width: 100%;
}

.hero__offer {
  margin-top: 0;
  margin-bottom: 0;
  padding: 1rem 1.2rem;
  border-width: 1px;
  background: rgb(58 209 102 / 0.06);
}

.hero__offer-price {
  font-size: clamp(1.5rem, 3vw, 1.85rem);
}

.hero__tags {
  display: none;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.slide--hero .slide__inner {
  align-items: center;
}

.hero__visual {
  padding: 0;
  overflow: visible;
}

#hero .hero__visual .mock-browser {
  transform: none;
  max-width: 100%;
}

#hero .hero__visual .mock-browser:hover {
  transform: none;
}

/* ——— Audience: compare cards ——— */
.value-compare {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  max-width: 420px;
  margin-left: auto;
}

.compare-card {
  position: relative;
  padding: 1.15rem 1.2rem 1rem;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgb(255 255 255 / 0.03);
  overflow: hidden;
}

.compare-card__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.9;
}

.compare-card--before {
  border-color: rgb(248 113 113 / 0.22);
}

.compare-card--before .compare-card__glow {
  background:
    linear-gradient(135deg, rgb(248 113 113 / 0.1) 0%, transparent 55%),
    radial-gradient(circle at 100% 0%, rgb(248 113 113 / 0.08), transparent 45%);
}

.compare-card--before::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, rgb(248 113 113 / 0.2), #f87171, rgb(248 113 113 / 0.2));
}

.compare-card--after {
  border-color: rgb(58 209 102 / 0.32);
  background: rgb(58 209 102 / 0.05);
  box-shadow: 0 12px 40px rgb(58 209 102 / 0.08);
}

.compare-card--after .compare-card__glow {
  background:
    linear-gradient(135deg, rgb(58 209 102 / 0.12) 0%, transparent 50%),
    radial-gradient(circle at 0% 100%, rgb(58 209 102 / 0.1), transparent 50%);
}

.compare-card--after::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, rgb(58 209 102 / 0.2), var(--green), rgb(58 209 102 / 0.2));
}

.compare-card__head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.compare-card__icon {
  display: grid;
  place-items: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 10px;
  flex-shrink: 0;
}

.compare-card__icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.compare-card__icon--bad {
  background: rgb(248 113 113 / 0.12);
  color: #fca5a5;
  border: 1px solid rgb(248 113 113 / 0.25);
}

.compare-card__icon--good {
  background: rgb(58 209 102 / 0.15);
  color: #86efac;
  border: 1px solid rgb(58 209 102 / 0.3);
}

.compare-card__badge {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.compare-card__badge--bad {
  color: #fca5a5;
}

.compare-card__badge--good {
  color: #86efac;
}

.compare-card__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.compare-metric {
  position: relative;
  padding: 0.75rem 0.7rem 0.65rem;
  border-radius: 12px;
  background: rgb(0 0 0 / 0.2);
  border: 1px solid rgb(255 255 255 / 0.06);
}

.compare-card--after .compare-metric--highlight {
  background: rgb(58 209 102 / 0.08);
  border-color: rgb(58 209 102 / 0.15);
}

.compare-metric__delta {
  position: absolute;
  top: 0.45rem;
  right: 0.45rem;
  padding: 0.12rem 0.4rem;
  border-radius: 999px;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #061018;
  background: var(--green);
  box-shadow: 0 0 12px rgb(58 209 102 / 0.35);
}

.compare-metric__value {
  display: block;
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.compare-metric__value--bad {
  color: #fca5a5;
}

.compare-metric__value--good {
  color: var(--green);
}

.compare-metric__label {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
}

.compare-metric__bar {
  margin-top: 0.55rem;
  height: 5px;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.08);
  overflow: hidden;
}

.compare-metric__bar > span {
  display: block;
  height: 100%;
  width: var(--fill, 50%);
  border-radius: inherit;
  transform: scaleX(0);
  transform-origin: left center;
}

.slide.is-visible .compare-metric__bar > span {
  animation: compare-bar-in 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.compare-metric__bar--bad > span {
  background: linear-gradient(90deg, #ef4444, #f87171);
  opacity: 0.85;
}

.compare-metric__bar--good > span {
  background: linear-gradient(90deg, var(--green-dark), var(--green));
  box-shadow: 0 0 10px rgb(58 209 102 / 0.45);
}

.compare-metric__bar--waste.compare-metric__bar--bad > span {
  margin-left: auto;
  transform-origin: right center;
}

.compare-card__note {
  position: relative;
  z-index: 1;
  margin: 0.85rem 0 0;
  padding-top: 0.75rem;
  border-top: 1px solid rgb(255 255 255 / 0.08);
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.compare-card--after .compare-card__note {
  border-top-color: rgb(58 209 102 / 0.15);
  color: rgb(240 244 242 / 0.75);
}

.compare-bridge {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0;
}

.compare-bridge__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgb(255 255 255 / 0.15), transparent);
}

.compare-bridge__vs {
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #061018;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: 0 4px 16px rgb(58 209 102 / 0.35);
  flex-shrink: 0;
}

.slide.is-visible .compare-card--after .compare-metric:nth-child(1) .compare-metric__bar > span {
  animation-delay: 0.15s;
}

.slide.is-visible .compare-card--after .compare-metric:nth-child(2) .compare-metric__bar > span {
  animation-delay: 0.25s;
}

.slide.is-visible .compare-card--before .compare-metric:nth-child(1) .compare-metric__bar > span {
  animation-delay: 0.05s;
}

.slide.is-visible .compare-card--before .compare-metric:nth-child(2) .compare-metric__bar > span {
  animation-delay: 0.1s;
}

@keyframes compare-bar-in {
  to {
    transform: scaleX(1);
  }
}

#audience .feature-list {
  gap: 0.85rem;
}

#audience .feature-list li {
  padding: 0;
  border: none;
  background: none;
}

#audience .audience-tags {
  display: none;
}

#audience .slide__text .slide__desc {
  margin-bottom: 1.1rem;
}

/* ——— ROI: крупная таблица ——— */
#roi .slide__inner {
  max-width: 1000px;
}

#roi .slide__header--center {
  margin-bottom: 1.5rem;
}

#roi .slide__desc {
  max-width: 640px;
  margin-bottom: 0.25rem;
}

#roi .roi-table {
  gap: 0.65rem;
}

#roi .roi-row {
  padding: 1rem 1.4rem;
  font-size: 0.95rem;
  gap: 1rem;
  border-radius: 14px;
  grid-template-columns: 1.55fr 1fr 1fr 0.9fr;
}

#roi .roi-row--head {
  padding: 0 1.4rem 0.45rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}

#roi .roi-row__metric {
  font-size: 1rem;
}

#roi .roi-row__bad,
#roi .roi-row__good {
  font-size: 1.08rem;
  font-variant-numeric: tabular-nums;
}

#roi .roi-row__delta {
  font-size: 1.02rem;
}

#roi .roi-summary {
  margin-top: 1.35rem;
  padding: 1.25rem 1.5rem;
  border-color: rgb(58 209 102 / 0.3);
  background: rgb(58 209 102 / 0.07);
}

#roi .roi-summary__title {
  font-size: 0.75rem;
  margin-bottom: 0.65rem;
}

#roi .roi-summary p {
  font-size: 1rem;
}

#roi .roi-summary strong {
  color: var(--green);
}

/* ——— Compare: только последняя колонка яркая ——— */
.compare-table .cell-yes,
.compare-table .cell-no,
.compare-table .cell-part {
  font-weight: 600;
}

.compare-table .cell-yes {
  color: var(--green);
  font-weight: 700;
}

.compare-table .cell-no {
  color: var(--text-soft);
  opacity: 1;
}

.compare-table .cell-part {
  color: var(--text-muted);
}

.compare-table tbody td:last-child {
  background: rgb(58 209 102 / 0.04);
}

/* ——— Compare slide: крупная таблица ——— */
#compare .slide__inner {
  max-width: 1100px;
}

#compare .slide__header--center {
  margin-bottom: 1.35rem;
}

#compare .slide__desc {
  max-width: 680px;
  margin-bottom: 0.25rem;
}

#compare .compare-table-wrap {
  border-radius: 16px;
}

#compare .compare-table {
  font-size: 0.95rem;
}

#compare .compare-table th,
#compare .compare-table td {
  padding: 1rem 1.15rem;
}

#compare .compare-table th:first-child,
#compare .compare-table td:first-child {
  min-width: 190px;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text);
}

#compare .compare-table thead th {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
}

#compare .compare-table thead th:last-child {
  font-size: 0.78rem;
}

#compare .compare-table .cell-yes {
  font-size: 1rem;
}

#compare .compare-table .cell-no,
#compare .compare-table .cell-part {
  font-size: 0.95rem;
}

/* ——— Product: feature cards ——— */
#product .slide__inner {
  max-width: 1080px;
}

#product .slide__header--center {
  margin-bottom: 1.35rem;
}

#product .sell-trust {
  display: none;
}

#product .killer-grid {
  gap: 1rem;
  margin-bottom: 1.1rem;
}

#product .killer-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.2rem 1.25rem 1.15rem;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgb(255 255 255 / 0.03);
  overflow: hidden;
}

#product .killer-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, rgb(58 209 102 / 0.15), var(--green), rgb(58 209 102 / 0.15));
}

#product .killer-card__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 100% 0%, rgb(58 209 102 / 0.1), transparent 55%),
    linear-gradient(160deg, rgb(58 209 102 / 0.06) 0%, transparent 45%);
  opacity: 0.85;
}

#product .killer-card__head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
}

#product .killer-card__icon {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 11px;
  color: #86efac;
  background: rgb(58 209 102 / 0.12);
  border: 1px solid rgb(58 209 102 / 0.28);
}

#product .killer-card__icon svg {
  width: 1.2rem;
  height: 1.2rem;
}

#product .killer-card__num {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--text-soft);
}

#product .killer-card__visual {
  position: relative;
  z-index: 1;
  height: 4.5rem;
  margin-bottom: 0.95rem;
  border-radius: 12px;
  border: 1px solid rgb(255 255 255 / 0.08);
  background: rgb(0 0 0 / 0.25);
  overflow: hidden;
}

#product .killer-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

#product .killer-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.55;
  flex: 1;
}

#product .killer-card__tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0.85rem 0 0;
  padding: 0;
  list-style: none;
}

#product .killer-card__tags li {
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #86efac;
  background: rgb(58 209 102 / 0.1);
  border: 1px solid rgb(58 209 102 / 0.2);
}

/* Mini visual: nesting */
#product .nest-roll {
  position: absolute;
  inset: 0.55rem 0.65rem;
  border-radius: 8px;
  border: 1px dashed rgb(58 209 102 / 0.25);
  background: rgb(58 209 102 / 0.04);
}

#product .nest-piece {
  position: absolute;
  border-radius: 4px;
  background: linear-gradient(135deg, rgb(58 209 102 / 0.55), rgb(43 184 90 / 0.35));
  border: 1px solid rgb(134 239 172 / 0.35);
}

#product .nest-piece--a {
  top: 8%;
  left: 6%;
  width: 38%;
  height: 42%;
}

#product .nest-piece--b {
  top: 8%;
  right: 8%;
  width: 28%;
  height: 28%;
}

#product .nest-piece--c {
  top: 42%;
  right: 8%;
  width: 28%;
  height: 48%;
}

#product .nest-piece--d {
  bottom: 8%;
  left: 6%;
  width: 22%;
  height: 38%;
}

#product .nest-piece--e {
  bottom: 8%;
  left: 32%;
  width: 34%;
  height: 38%;
}

/* Mini visual: scheme roll */
#product .mini-roll {
  position: absolute;
  inset: 0.65rem 0.75rem;
  border-radius: 8px;
  background: linear-gradient(180deg, rgb(255 255 255 / 0.06), rgb(255 255 255 / 0.02));
  border: 1px solid rgb(255 255 255 / 0.1);
}

#product .mini-cut {
  position: absolute;
  top: 18%;
  bottom: 18%;
  border-radius: 3px;
  border: 1px solid rgb(96 165 250 / 0.45);
  background: rgb(96 165 250 / 0.25);
}

#product .mini-cut--1 {
  left: 8%;
  width: 22%;
}

#product .mini-cut--2 {
  left: 34%;
  width: 18%;
  background: rgb(58 209 102 / 0.3);
  border-color: rgb(58 209 102 / 0.5);
}

#product .mini-cut--3 {
  left: 56%;
  width: 26%;
  background: rgb(167 139 250 / 0.25);
  border-color: rgb(167 139 250 / 0.45);
}

#product .mini-roll__remnant {
  position: absolute;
  top: 18%;
  right: 6%;
  bottom: 18%;
  width: 10%;
  border-radius: 3px;
  border: 1px dashed rgb(255 255 255 / 0.2);
  background: rgb(255 255 255 / 0.03);
}

/* Mini visual: task queue */
#product .mini-queue {
  position: absolute;
  inset: 0.65rem 0.75rem;
  display: flex;
  gap: 0.45rem;
  align-items: stretch;
}

#product .mini-task {
  flex: 1;
  border-radius: 8px;
  border: 1px solid rgb(255 255 255 / 0.1);
  background: rgb(255 255 255 / 0.04);
}

#product .mini-task--wait {
  background: rgb(251 191 36 / 0.08);
  border-color: rgb(251 191 36 / 0.25);
}

#product .mini-task--active {
  background: rgb(58 209 102 / 0.12);
  border-color: rgb(58 209 102 / 0.35);
  box-shadow: 0 0 16px rgb(58 209 102 / 0.15);
}

#product .mini-task--done {
  opacity: 0.45;
}

#product .mini-task--wait::after,
#product .mini-task--active::after,
#product .mini-task--done::after {
  content: "";
  display: block;
  margin: 0.55rem 0.45rem 0;
  height: 4px;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.12);
}

#product .mini-task--active::after {
  background: rgb(58 209 102 / 0.45);
  box-shadow: 0 0 8px rgb(58 209 102 / 0.35);
}

/* Includes panel */
#product .product-includes {
  display: grid;
  grid-template-columns: 1fr auto 240px;
  gap: 0;
  align-items: stretch;
  border-radius: 18px;
  border: 1px solid rgb(58 209 102 / 0.22);
  background: rgb(255 255 255 / 0.02);
  overflow: hidden;
}

#product .product-includes__panel {
  position: relative;
  padding: 1.15rem 1.25rem 1.2rem;
}

#product .product-includes__panel--core {
  border-right: none;
}

#product .product-includes__panel--addon {
  border-left: none;
  background: rgb(251 191 36 / 0.04);
  border-color: rgb(251 191 36 / 0.15);
}

#product .product-includes__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 0% 100%, rgb(58 209 102 / 0.1), transparent 55%),
    linear-gradient(160deg, rgb(58 209 102 / 0.05) 0%, transparent 40%);
}

#product .product-includes__glow--addon {
  background:
    radial-gradient(circle at 100% 0%, rgb(251 191 36 / 0.12), transparent 50%),
    linear-gradient(200deg, rgb(251 191 36 / 0.06) 0%, transparent 45%);
}

#product .product-includes__panel--core::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, rgb(58 209 102 / 0.15), var(--green), rgb(58 209 102 / 0.15));
}

#product .product-includes__panel--addon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    rgb(251 191 36 / 0.15),
    var(--accent-amber),
    rgb(251 191 36 / 0.15)
  );
}

#product .product-includes__head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

#product .product-includes__head-main {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

#product .product-includes__icon {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  flex-shrink: 0;
}

#product .product-includes__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

#product .product-includes__icon--core {
  color: #86efac;
  background: rgb(58 209 102 / 0.12);
  border: 1px solid rgb(58 209 102 / 0.28);
}

#product .product-includes__icon--addon {
  color: #fcd34d;
  background: rgb(251 191 36 / 0.12);
  border: 1px solid rgb(251 191 36 / 0.3);
}

#product .product-includes__title {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.2;
}

#product .product-includes__subtitle {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
}

#product .product-includes__count {
  flex-shrink: 0;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #86efac;
  background: rgb(58 209 102 / 0.1);
  border: 1px solid rgb(58 209 102 / 0.22);
}

#product .product-includes__badge--addon {
  flex-shrink: 0;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fcd34d;
  background: rgb(251 191 36 / 0.1);
  border: 1px solid rgb(251 191 36 / 0.25);
}

#product .product-includes__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.55rem;
}

#product .product-module {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  padding: 0.75rem 0.35rem 0.65rem;
  border-radius: 12px;
  border: 1px solid rgb(255 255 255 / 0.08);
  background: rgb(0 0 0 / 0.2);
  text-align: center;
  transition:
    border-color 0.2s,
    background 0.2s;
}

#product .product-module__icon {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 9px;
  color: #86efac;
  background: rgb(58 209 102 / 0.1);
  border: 1px solid rgb(58 209 102 / 0.18);
}

#product .product-module__icon svg {
  width: 1.05rem;
  height: 1.05rem;
}

#product .product-module__name {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

#product .product-includes__bridge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0 0.35rem;
  background: rgb(0 0 0 / 0.15);
  border-left: 1px solid rgb(255 255 255 / 0.06);
  border-right: 1px solid rgb(255 255 255 / 0.06);
}

#product .product-includes__bridge-line {
  width: 1px;
  flex: 1;
  min-height: 1rem;
  background: linear-gradient(180deg, transparent, rgb(255 255 255 / 0.15), transparent);
}

#product .product-includes__bridge-plus {
  display: grid;
  place-items: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text-soft);
  background: rgb(255 255 255 / 0.06);
  border: 1px solid rgb(255 255 255 / 0.1);
}

#product .product-includes__addon-text {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
}

#product .product-includes__head--addon {
  margin-bottom: 0.75rem;
}

#product .submodules {
  display: none;
}

[data-theme="premium"] #product .killer-card::before {
  background: linear-gradient(90deg, rgb(212 168 83 / 0.2), #f0d78a, var(--green));
}

[data-theme="premium"] #product .killer-card__icon {
  color: #f0d78a;
  background: rgb(212 168 83 / 0.12);
  border-color: rgb(212 168 83 / 0.3);
}

[data-theme="scale"] #product .killer-card {
  border-color: rgb(52 211 153 / 0.28);
}

[data-theme="scale"] #product .mini-task--active {
  box-shadow: 0 0 20px rgb(52 211 153 / 0.25);
}

@media (max-width: 1024px) {
  #product .killer-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  #product .product-includes {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  #product .product-includes__bridge {
    flex-direction: row;
    padding: 0.5rem 1rem;
    border-left: none;
    border-right: none;
    border-top: 1px solid rgb(255 255 255 / 0.06);
    border-bottom: 1px solid rgb(255 255 255 / 0.06);
  }

  #product .product-includes__bridge-line {
    width: auto;
    height: 1px;
    flex: 1;
    min-height: 0;
    background: linear-gradient(90deg, transparent, rgb(255 255 255 / 0.15), transparent);
  }

  #product .product-includes__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  #product .product-module:nth-child(n + 5) {
    grid-column: span 1;
  }
}

@media (max-width: 640px) {
  #product .product-includes__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-height: 820px) {
  #product .killer-card__visual {
    height: 3.75rem;
    margin-bottom: 0.75rem;
  }

  #product .product-includes__panel {
    padding: 0.95rem 1rem;
  }

  #product .product-module {
    padding: 0.55rem 0.25rem 0.5rem;
  }

  #product .product-module__name {
    font-size: 0.72rem;
  }
}

[data-theme="premium"] .compare-card--after {
  border-color: rgb(212 168 83 / 0.35);
  box-shadow: 0 12px 40px rgb(212 168 83 / 0.1);
}

[data-theme="premium"] .compare-card--after::before {
  background: linear-gradient(90deg, rgb(212 168 83 / 0.25), #f0d78a, var(--green));
}

[data-theme="premium"] .compare-metric__value--good {
  background: linear-gradient(135deg, var(--green), #f0d78a);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

[data-theme="premium"] .compare-metric__delta {
  background: linear-gradient(135deg, var(--green-dark), #f0d78a);
  color: #1a1408;
}

[data-theme="scale"] .compare-metric__delta {
  box-shadow: 0 0 14px rgb(52 211 153 / 0.45);
}

[data-theme="scale"] .compare-metric__value--good {
  font-size: 1.75rem;
}

@media (max-width: 1024px) {
  .value-compare {
    max-width: none;
    margin: 0;
  }
}

/* ——— Modules slide ——— */
#modules .slide__inner {
  max-width: 1040px;
}

#modules .modules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

#modules .module-card {
  position: relative;
  padding: 1rem 1.1rem;
  min-height: 0;
  overflow: hidden;
}

#modules .module-card--core {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: stretch;
  gap: 1.25rem;
  padding: 1.35rem 1.45rem;
  min-height: 0;
  border-color: rgb(58 209 102 / 0.35);
  background: rgb(58 209 102 / 0.06);
}

#modules .module-card--core::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, rgb(58 209 102 / 0.2), var(--green), rgb(58 209 102 / 0.2));
}

#modules .module-card__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 0% 100%, rgb(58 209 102 / 0.14), transparent 55%),
    linear-gradient(160deg, rgb(58 209 102 / 0.08) 0%, transparent 50%);
}

#modules .module-card__core-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

#modules .module-card__core-head {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

#modules .module-card__icon {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 13px;
  flex-shrink: 0;
  color: #86efac;
  background: rgb(58 209 102 / 0.14);
  border: 1px solid rgb(58 209 102 / 0.32);
}

#modules .module-card__icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

#modules .module-card__core-titles h3 {
  margin: 0.2rem 0 0;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

#modules .module-card__core-tag {
  margin: 0.25rem 0 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: #86efac;
}

#modules .module-card__desc--core {
  font-size: 0.88rem;
  line-height: 1.55;
  max-width: 520px;
}

#modules .module-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

#modules .module-card__chips span {
  padding: 0.28rem 0.55rem;
  border-radius: 8px;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-muted);
  background: rgb(0 0 0 / 0.22);
  border: 1px solid rgb(255 255 255 / 0.08);
}

#modules .module-card__price-panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  min-width: 11rem;
  padding: 1rem 1.15rem;
  border-radius: 14px;
  border: 1px solid rgb(58 209 102 / 0.35);
  background: rgb(0 0 0 / 0.25);
  text-align: right;
}

#modules .module-card__price-label {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
}

#modules .module-card__price--hero {
  margin-top: 0.35rem;
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--green);
  line-height: 1.1;
}

#modules .module-card__price-sub {
  margin-top: 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
}

#modules .module-card--selsup {
  border-color: rgb(58 209 102 / 0.24);
  background: rgb(58 209 102 / 0.04);
}

#modules .module-card--selsup .module-card__price {
  font-size: 1rem;
  font-weight: 800;
  margin-top: 0.35rem;
}

#modules .module-card--marketplace .module-card__mp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin: 0.35rem 0 0.5rem;
}

#modules .module-card--marketplace .module-card__mp-tags span {
  padding: 0.2rem 0.45rem;
  border-radius: 6px;
  font-size: 0.62rem;
  font-weight: 700;
  color: #93c5fd;
  background: rgb(96 165 250 / 0.12);
  border: 1px solid rgb(96 165 250 / 0.22);
}

#modules .module-card:not(.module-card--core) {
  opacity: 1;
}

#modules .module-card:not(.module-card--core) h3 {
  font-size: 0.92rem;
}

#modules .module-card:not(.module-card--core) .module-card__desc {
  font-size: 0.76rem;
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}

#modules .modules-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.65rem;
  align-items: stretch;
  margin-top: 0.85rem;
  padding: 0.15rem;
}

#modules .modules-flow__step {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.95rem 1.1rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgb(255 255 255 / 0.03);
}

#modules .modules-flow__step--base {
  border-color: rgb(58 209 102 / 0.28);
  background: rgb(58 209 102 / 0.06);
}

#modules .modules-flow__step--addon {
  border-color: rgb(251 191 36 / 0.22);
  background: rgb(251 191 36 / 0.04);
}

#modules .modules-flow__icon {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 10px;
  flex-shrink: 0;
  color: #86efac;
  background: rgb(58 209 102 / 0.12);
  border: 1px solid rgb(58 209 102 / 0.28);
}

#modules .modules-flow__icon svg {
  width: 1.1rem;
  height: 1.1rem;
}

#modules .modules-flow__icon--addon {
  color: #fcd34d;
  background: rgb(251 191 36 / 0.12);
  border-color: rgb(251 191 36 / 0.28);
}

#modules .modules-flow__text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

#modules .modules-flow__text strong {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.25;
}

#modules .modules-flow__text span {
  font-size: 0.76rem;
  color: var(--text-muted);
  line-height: 1.45;
}

#modules .modules-flow__bridge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0 0.25rem;
}

#modules .modules-flow__line {
  width: 1px;
  flex: 1;
  min-height: 0.75rem;
  background: linear-gradient(180deg, transparent, rgb(255 255 255 / 0.15), transparent);
}

#modules .modules-flow__plus {
  display: grid;
  place-items: center;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--text-soft);
  background: rgb(255 255 255 / 0.06);
  border: 1px solid rgb(255 255 255 / 0.1);
}

#modules .modules-note {
  display: none;
}

@media (max-width: 1024px) {
  #modules .modules-grid {
    grid-template-columns: 1fr;
  }

  #modules .module-card--core {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }

  #modules .module-card__price-panel {
    align-items: flex-start;
    text-align: left;
    min-width: 0;
  }

  #modules .modules-flow {
    grid-template-columns: 1fr;
  }

  #modules .modules-flow__bridge {
    flex-direction: row;
    padding: 0.35rem 0;
  }

  #modules .modules-flow__line {
    width: auto;
    height: 1px;
    flex: 1;
    min-height: 0;
    background: linear-gradient(90deg, transparent, rgb(255 255 255 / 0.15), transparent);
  }
}

@media (max-height: 820px) {
  #modules .module-card--core {
    padding: 1.1rem 1.2rem;
  }

  #modules .module-card__price--hero {
    font-size: 1.45rem;
  }
}

/* ——— Pricing: равная высота колонок ——— */
#pricing .slide__inner {
  max-width: 1000px;
}

#pricing .slide__header--center {
  margin-bottom: 1.15rem;
}

#pricing .slide__header--center h2 {
  font-size: clamp(1.45rem, 2.8vw, 2rem);
}

#pricing .pricing-layout {
  align-items: stretch;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

#pricing .pricing-hero-card,
#pricing .pricing-addons {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
}

#pricing .pricing-hero-card {
  padding: 1.5rem 1.45rem;
}

#pricing .pricing-hero-card h3 {
  font-size: 1.35rem;
  margin-bottom: 1.15rem;
}

#pricing .pricing-hero-card__rows {
  gap: 1rem;
}

#pricing .pricing-row {
  padding-bottom: 1rem;
}

#pricing .pricing-row__value {
  font-size: 1.25rem;
}

#pricing .pricing-row__value--accent {
  font-size: 1.55rem;
}

#pricing .pricing-includes {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-top: 1.15rem;
  padding-top: 1.15rem;
}

#pricing .pricing-includes strong {
  font-size: 0.82rem;
}

#pricing .pricing-includes ul {
  flex: 1;
  gap: 0.65rem;
  margin-top: 0.65rem;
}

#pricing .pricing-includes li {
  font-size: 0.88rem;
  line-height: 1.5;
}

#pricing .pricing-addons {
  padding: 1.5rem 1.4rem;
  opacity: 1;
}

#pricing .pricing-addons h4 {
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
}

#pricing .addon-list {
  flex: 1;
  gap: 0.7rem;
}

#pricing .addon-item {
  padding: 0.9rem 1rem;
  border-radius: 12px;
  font-size: 0.88rem;
  border: 1px solid rgb(255 255 255 / 0.06);
}

#pricing .addon-item__name {
  font-size: 0.92rem;
}

#pricing .addon-item__status {
  margin-top: 0.2rem;
  font-size: 0.68rem;
}

#pricing .addon-item__price {
  font-size: 0.88rem;
}

#pricing .pricing-footnote {
  margin-top: auto;
  padding-top: 1.1rem;
  font-size: 0.78rem;
  line-height: 1.55;
}

.addon-item--live {
  border: 1px solid rgb(58 209 102 / 0.22);
  background: rgb(58 209 102 / 0.05);
}

.addon-item__price--accent {
  color: var(--green);
  font-weight: 800;
  font-size: 0.88rem;
}

/* ——— Launch: крупные шаги ——— */
#launch .slide__inner {
  max-width: 1080px;
}

#launch .slide__header--center {
  margin-bottom: 1.35rem;
}

#launch .launch-steps,
#launch .slide__kicker {
  display: none !important;
}

#launch .launch-workflow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
  align-items: stretch;
}

#launch .launch-workflow__line {
  position: absolute;
  top: 2.35rem;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgb(58 209 102 / 0.15),
    var(--green) 20%,
    var(--green) 80%,
    rgb(58 209 102 / 0.15)
  );
  z-index: 0;
  pointer-events: none;
}

#launch .launch-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.35rem 1rem 1.15rem;
  border-radius: 18px;
  border: 1px solid rgb(58 209 102 / 0.2);
  background: rgb(58 209 102 / 0.04);
  overflow: hidden;
}

#launch .launch-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgb(58 209 102 / 0.5), transparent);
}

#launch .launch-step__top {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0.95rem;
}

#launch .launch-step__num {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  font-size: 1.05rem;
  font-weight: 800;
  color: #061018;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: 0 4px 18px rgb(58 209 102 / 0.4);
}

#launch .launch-step__icon {
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  margin-top: 0.65rem;
  border-radius: 11px;
  color: #86efac;
  background: rgb(58 209 102 / 0.12);
  border: 1px solid rgb(58 209 102 / 0.28);
}

#launch .launch-step__icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

#launch .launch-step h3 {
  margin: 0 0 0.45rem;
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

#launch .launch-step p {
  margin: 0;
  flex: 1;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

#launch .launch-step__tag {
  margin-top: 0.85rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #86efac;
  background: rgb(58 209 102 / 0.1);
  border: 1px solid rgb(58 209 102 / 0.22);
}

[data-theme="premium"] #launch .launch-step {
  border-color: rgb(212 168 83 / 0.22);
  background: rgb(212 168 83 / 0.04);
}

[data-theme="premium"] #launch .launch-step::before {
  background: linear-gradient(90deg, transparent, rgb(212 168 83 / 0.55), transparent);
}

[data-theme="premium"] #launch .launch-step__icon {
  color: #f0d78a;
  background: rgb(212 168 83 / 0.12);
  border-color: rgb(212 168 83 / 0.28);
}

@media (max-width: 1024px) {
  #launch .launch-workflow {
    grid-template-columns: repeat(2, 1fr);
    max-width: 520px;
    margin: 0 auto;
  }

  #launch .launch-workflow__line {
    display: none;
  }
}

@media (max-width: 640px) {
  #launch .launch-workflow {
    grid-template-columns: 1fr;
  }
}

@media (max-height: 820px) {
  #launch .launch-step {
    padding: 1.1rem 0.85rem 1rem;
  }

  #launch .launch-step h3 {
    font-size: 0.95rem;
  }
}

/* ——— Contacts: акцентные шаги ——— */
#contacts .slide__desc {
  max-width: 520px;
  margin-bottom: 1.5rem;
}

.slide--contacts .sell-cta-note {
  display: none;
}

.slide--contacts h2 {
  font-size: clamp(1.65rem, 3.5vw, 2.35rem);
}

#contacts .contacts-steps {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  max-width: 820px;
  margin: 0 auto 1.75rem;
}

#contacts .contacts-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  padding: 1.25rem 1rem 1.15rem;
  border-radius: 16px;
  border: 1px solid rgb(58 209 102 / 0.28);
  background: rgb(58 209 102 / 0.07);
  min-width: 0;
}

#contacts .contacts-step--final {
  border-color: rgb(58 209 102 / 0.45);
  background: rgb(58 209 102 / 0.1);
  box-shadow: 0 8px 28px rgb(58 209 102 / 0.12);
}

#contacts .contacts-step__num {
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 800;
  color: #061018;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: 0 4px 16px rgb(58 209 102 / 0.4);
}

#contacts .contacts-step__body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

#contacts .contacts-step__body strong {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.25;
}

#contacts .contacts-step__body > span {
  font-size: 0.78rem;
  font-weight: 600;
  color: #86efac;
}

#contacts .contacts-steps__arrow {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: rgb(58 209 102 / 0.55);
  padding-top: 1.5rem;
}

#contacts .contacts-price-line {
  display: none;
}

[data-theme="premium"] #contacts .contacts-step {
  border-color: rgb(212 168 83 / 0.3);
  background: rgb(212 168 83 / 0.06);
}

[data-theme="premium"] #contacts .contacts-step--final {
  box-shadow: 0 8px 28px rgb(212 168 83 / 0.1);
}

[data-theme="premium"] #contacts .contacts-step__body > span {
  color: #f0d78a;
}

@media (max-width: 768px) {
  #contacts .contacts-steps {
    flex-direction: column;
    align-items: stretch;
    max-width: 360px;
  }

  #contacts .contacts-steps__arrow {
    justify-content: center;
    padding: 0;
    transform: rotate(90deg);
  }
}

#scheme .slide__desc {
  margin-bottom: 1.25rem;
}

#scheme .scheme-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

#scheme .scheme-feature {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.85rem 0.9rem;
  border-radius: 14px;
  border: 1px solid rgb(58 209 102 / 0.18);
  background: rgb(58 209 102 / 0.04);
  overflow: hidden;
}

#scheme .scheme-feature::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgb(58 209 102 / 0.45), transparent);
  opacity: 0.85;
}

#scheme .scheme-feature__icon {
  display: grid;
  place-items: center;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 10px;
  flex-shrink: 0;
  color: #86efac;
  background: rgb(58 209 102 / 0.12);
  border: 1px solid rgb(58 209 102 / 0.28);
}

#scheme .scheme-feature__icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

#scheme .scheme-feature__body {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}

#scheme .scheme-feature__body strong {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text);
  line-height: 1.25;
}

#scheme .scheme-feature__body > span:not(.scheme-feature__roles) {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.45;
}

#scheme .scheme-feature__roles {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-top: 0.1rem;
}

#scheme .scheme-feature__roles em {
  font-style: normal;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 700;
  color: #86efac;
  background: rgb(58 209 102 / 0.1);
  border: 1px solid rgb(58 209 102 / 0.2);
}

[data-theme="premium"] #scheme .scheme-feature {
  border-color: rgb(212 168 83 / 0.22);
  background: rgb(212 168 83 / 0.04);
}

[data-theme="premium"] #scheme .scheme-feature::before {
  background: linear-gradient(90deg, transparent, rgb(212 168 83 / 0.5), transparent);
}

[data-theme="premium"] #scheme .scheme-feature__icon {
  color: #f0d78a;
  background: rgb(212 168 83 / 0.12);
  border-color: rgb(212 168 83 / 0.28);
}

@media (max-width: 1024px) {
  #scheme .scheme-features {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
}

@media (max-height: 820px) {
  #scheme .scheme-feature {
    padding: 0.7rem 0.8rem;
  }

  #scheme .scheme-feature__body strong {
    font-size: 0.78rem;
  }
}

#scheme .mock-scheme {
  max-height: min(62vh, 540px);
}

#scheme .mock-scheme__canvas {
  overflow: hidden;
}

#scheme .mock-scheme__svg {
  max-height: 240px;
}

/* ——— Scheme: callout не наезжает на SVG ——— */
#scheme .mock-scheme__callout {
  right: 0.75rem;
  top: auto;
  bottom: 0.75rem;
  max-width: 150px;
}

/* ——— Premium/Scale: меньше декора ——— */
[data-theme="premium"] h2::after,
[data-theme="scale"] h2::after {
  display: none;
}

[data-theme="premium"] .eyebrow,
[data-theme="scale"] .eyebrow {
  padding: 0;
  border: none;
  background: none;
  color: var(--text-soft);
}

[data-theme="premium"] .slide--hero .eyebrow,
[data-theme="premium"] #pricing .eyebrow,
[data-theme="premium"] .slide--contacts .eyebrow,
[data-theme="scale"] .slide--hero .eyebrow,
[data-theme="scale"] #pricing .eyebrow,
[data-theme="scale"] .slide--contacts .eyebrow {
  color: var(--green);
}

[data-theme="premium"] .hero__lead,
[data-theme="scale"] .hero__lead {
  border: none;
  padding-left: 0;
}

[data-theme="premium"] #product .killer-card:first-child {
  border-color: rgb(212 168 83 / 0.32);
  box-shadow: 0 12px 36px rgb(212 168 83 / 0.08);
}

[data-theme="scale"] #product .killer-card:first-child {
  border-color: rgb(52 211 153 / 0.4);
}

/* ——— Анимации: без «плывущих» блоков ——— */
.killer-card,
.module-card,
.roi-row:not(.roi-row--head),
.pricing-hero-card,
.pricing-addons,
.launch-step,
.compare-table-wrap {
  opacity: 1;
  transform: none;
}

.slide.is-visible .killer-card,
.slide.is-visible .module-card,
.slide.is-visible .roi-row,
.slide.is-visible .pricing-hero-card,
.slide.is-visible .pricing-addons,
.slide.is-visible #launch .launch-step,
.slide.is-visible .compare-table-wrap {
  opacity: 1;
  transform: none;
}

/* ——— Nav wrap fix ——— */
.deck-nav {
  row-gap: 0.35rem;
}

@media (max-width: 1024px) {
  .slide--hero .slide__inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero__visual {
    order: -1;
    max-width: 520px;
    margin: 0 auto;
  }

  .pricing-layout {
    gap: 0.85rem;
  }
}

@media (max-height: 820px) {
  .slide--compact {
    padding-top: calc(var(--nav-height) + 0.5rem);
  }

  .slide--compact .slide__header--center {
    margin-bottom: 0.85rem;
  }

  #roi .roi-row {
    padding: 0.75rem 1rem;
    font-size: 0.88rem;
  }

  #roi .roi-row__bad,
  #roi .roi-row__good {
    font-size: 0.95rem;
  }

  #compare .compare-table th,
  #compare .compare-table td {
    padding: 0.8rem 0.9rem;
  }

  #compare .compare-table {
    font-size: 0.88rem;
  }

  #pricing .addon-item {
    padding: 0.75rem 0.9rem;
  }

  #pricing .pricing-hero-card,
  #pricing .pricing-addons {
    padding: 1.2rem 1.15rem;
  }

  .scroll-hint {
    display: none;
  }
}

@media (max-width: 640px) {
  .compare-metric__value {
    font-size: 1.4rem;
  }

  .compare-card__grid {
    gap: 0.5rem;
  }

  #compare .compare-table {
    font-size: 0.82rem;
  }

  #compare .compare-table th,
  #compare .compare-table td {
    padding: 0.65rem 0.55rem;
  }
}

@media (max-width: 820px) {
  #roi .roi-row--head {
    display: none;
  }

  #roi .roi-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "metric metric"
      "bad good"
      "delta delta";
    gap: 0.55rem 0.85rem;
    padding: 0.95rem 1rem;
  }

  #roi .roi-row__metric {
    grid-area: metric;
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.25;
    padding-bottom: 0.45rem;
    border-bottom: 1px solid rgb(255 255 255 / 0.08);
  }

  #roi .roi-row__metric::before {
    display: none;
  }

  #roi .roi-row__bad {
    grid-area: bad;
  }

  #roi .roi-row__good {
    grid-area: good;
  }

  #roi .roi-row__delta {
    grid-area: delta;
  }

  #roi .roi-row__bad,
  #roi .roi-row__good,
  #roi .roi-row__delta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    font-size: 1rem;
    font-variant-numeric: tabular-nums;
  }

  #roi .roi-row__delta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.35rem;
    border-top: 1px solid rgb(255 255 255 / 0.06);
  }

  #roi .roi-row > span::before {
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-soft);
  }

  #roi .roi-row__bad::before {
    content: "Вручную";
  }

  #roi .roi-row__good::before {
    content: "С сервисом";
  }

  #roi .roi-row__delta::before {
    content: "Выигрыш";
  }

  #roi .roi-summary {
    padding: 1rem;
  }
}
