/* ============================================
   АнтиКоддинг — стили лендинга
   ============================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-cyan: #00B4DB;
  --color-purple: #A742FF;
  --color-text: #12152a;
  --color-text-body: #2a3042;
  --color-text-muted: #434a5c;
  --color-text-soft: #565f72;
  --color-bg: #f5f7fa;
  --color-white: #ffffff;
  --color-border: #e5e7eb;
  --color-accent: #4a55a2;
  --color-callout-bg: #f0f2ff;
  --color-icon-bg: #eef4ff;
  --color-icon: #5b8def;

  --section-padding: 72px;

  --gradient: linear-gradient(135deg, var(--color-cyan) 0%, var(--color-purple) 100%);
  --gradient-text: linear-gradient(135deg, #0099cc 0%, #9333ea 50%, var(--color-purple) 100%);

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
  --shadow-btn: 0 6px 20px rgba(0, 180, 219, 0.35);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-pill: 100px;

  --container-max: 1200px;
  --header-height: 60px;
  --side-padding: 16px;
  --text-col: 5;
  --screen-gap: 24px; /* одинаковый внутренний отступ сверху и снизу */
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text-body);
  background-color: var(--color-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--side-padding);
}

.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* --- Кнопки --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
  text-align: center;
}

.btn:active {
  transform: scale(0.97);
}

.btn--gradient {
  background: var(--gradient);
  color: var(--color-white);
  box-shadow: var(--shadow-btn);
}

.btn--gradient:hover {
  box-shadow: 0 10px 28px rgba(0, 180, 219, 0.45);
  transform: translateY(-1px);
}

.btn--outline {
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-text);
  border: 1.5px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.btn--outline:hover {
  border-color: #d1d5db;
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn--sm {
  padding: 8px 16px;
  font-size: 13px;
}

.btn--lg {
  padding: 14px 28px;
  font-size: 16px;
}

.btn__icon {
  flex-shrink: 0;
}

/* ============================================
   Первый экран — один фон, без лишних отступов
   ============================================ */
.hero-screen {
  position: relative;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  background-image: url('../images/hero-bg.png');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.hero-screen__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(245, 247, 250, 0.98) 0%,
    rgba(245, 247, 250, 0.95) 35%,
    rgba(245, 247, 250, 0.7) 48%,
    rgba(245, 247, 250, 0.2) 55%,
    transparent 62%
  );
  pointer-events: none;
}

/* Контент + карточки: равные отступы сверху и снизу */
.hero-screen__main {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container-max);
  height: 100%;
  margin: 0 auto;
  padding: var(--header-height) var(--side-padding) 0;
  display: grid;
  grid-template-rows: 1fr auto 1fr;
  align-items: stretch;
}

.hero-screen__stack {
  grid-row: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero__content {
  width: calc((100% / 12) * var(--text-col));
  max-width: calc((100% / 12) * var(--text-col));
  flex-shrink: 0;
}

.features {
  flex-shrink: 0;
  width: 100%;
}

/* --- Шапка --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.6);
  transition: box-shadow 0.3s ease;
}

.header--scrolled {
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo__icon {
  display: block;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  object-fit: contain;
}

.logo__icon--sm {
  width: 32px;
  height: 32px;
}

.logo__text {
  display: flex;
  flex-direction: column;
}

.logo__title {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-text);
  line-height: 1.2;
}

.logo__subtitle {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--color-text-muted);
  text-transform: uppercase;
  line-height: 1.4;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav__link {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav__link:hover {
  color: var(--color-text);
}

.header__cta {
  flex-shrink: 0;
}

.header__cta.btn--gradient {
  box-shadow: none;
}

.header__cta.btn--gradient:hover {
  box-shadow: none;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
}

.burger__line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.burger--open .burger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger--open .burger__line:nth-child(2) {
  opacity: 0;
}

.burger--open .burger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --- Контент --- */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-muted);
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}

.badge__live {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
}

.badge__pulse {
  display: block;
  width: 7px;
  height: 7px;
  background: var(--color-cyan);
  border-radius: 50%;
  position: relative;
}

.badge__pulse::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid var(--color-cyan);
  opacity: 0.5;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.4); opacity: 0; }
}

.hero__date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 8px 14px;
  background: rgba(238, 240, 255, 0.95);
  border: 1px solid #d4dcff;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  color: #4b55f5;
  box-shadow: var(--shadow-sm);
}

.hero__date svg {
  flex-shrink: 0;
  color: #5b6cf8;
}

.hero__title {
  font-size: clamp(28px, 3.6vh, 40px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  color: var(--color-text);
}

.hero__desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-body);
  margin-bottom: 14px;
}

.hero__list-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 8px;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.check-list__item {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  line-height: 1.45;
  color: var(--color-text-body);
}

.check-list__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gradient);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
}

.hero__actions {
  margin-bottom: 12px;
}

.hero__note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--color-text-muted);
}

.hero__note-icon {
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--color-cyan);
}

/* --- Карточки преимуществ --- */
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.feature-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease;
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
}

.feature-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(40px, 5vh, 48px);
  height: clamp(40px, 5vh, 48px);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  position: relative;
}

.feature-card__icon::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: var(--gradient);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.feature-card__icon--blue {
  background: rgba(0, 180, 219, 0.08);
  color: var(--color-cyan);
}

.feature-card__icon--purple {
  background: rgba(167, 66, 255, 0.08);
  color: var(--color-purple);
}

.feature-card__icon--cyan {
  background: rgba(0, 180, 219, 0.08);
  color: var(--color-cyan);
}

.feature-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}

.feature-card__desc {
  font-size: 14px;
  color: var(--color-text-body);
  line-height: 1.4;
}

.placeholder-section {
  display: none;
}

/* ============================================
   Третий экран — программа мастер-класса
   ============================================ */
.program {
  background: var(--color-bg);
  padding: var(--section-padding) 0;
}

.program__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
}

.program__title {
  font-size: clamp(26px, 2.8vw, 34px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin-bottom: 16px;
}

.program__desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-body);
  margin-bottom: 24px;
  max-width: 640px;
}

.program__subtitle {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-icon);
  margin-bottom: 20px;
}

/* Сетка шагов 2×3 */
.program__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 28px;
  margin-bottom: 24px;
}

.program-step__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.program-step__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--color-icon);
  color: var(--color-white);
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.program-step__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-icon-bg);
  color: var(--color-icon);
  flex-shrink: 0;
}

.program-step__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-text);
  margin-bottom: 6px;
}

.program-step__desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--color-text-body);
}

/* Блок-пояснение про таймеры */
.program__note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: var(--color-callout-bg);
  border-radius: var(--radius-lg);
}

.program__note-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-icon);
}

.program__note-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-icon);
  margin-bottom: 6px;
}

.program__note-text {
  font-size: 14px;
  line-height: 1.55;
  color: var(--color-text-body);
}

/* Фото ноутбука слева */
.program__visual {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.program__visual img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
}

/* ============================================
   Четвёртый экран — об авторе
   ============================================ */
.author {
  background: var(--color-white);
  padding: var(--section-padding) 0;
}

.author__top {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 28px;
}

.author__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--color-icon-bg);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-icon);
  margin-bottom: 16px;
}

.author__name {
  font-size: clamp(30px, 3.2vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin-bottom: 12px;
}

.author__role {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
  color: var(--color-icon);
  margin-bottom: 18px;
}

.author__text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-body);
  margin-bottom: 14px;
}

.author__text--lead {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0;
}

.author__subtitle {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-icon);
  margin: 24px 0 14px;
}

/* Фото справа */
.author__visual {
  width: 100%;
}

.author__photo {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

/* Карточка на всю ширину секции */
.author__card {
  width: 100%;
  margin-bottom: 28px;
  padding: 22px 24px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

.author__card-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
}

.author__card-head {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.author__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-icon);
}

.author__card-title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-text);
}

.author__card-intro {
  font-size: 13px;
  line-height: 1.5;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}

.author__card-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--color-text-body);
}

.author__card-text {
  flex: 1;
  min-width: 0;
}

.author__card-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-icon-bg);
  color: var(--color-icon);
  flex-shrink: 0;
  margin-top: 1px;
}

/* Пять карточек процесса */
.author__features {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}

.author-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 14px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.author-feature__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-icon-bg);
  color: var(--color-icon);
  margin-bottom: 12px;
}

.author-feature__title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-text);
  margin-bottom: 6px;
}

.author-feature__desc {
  font-size: 12px;
  line-height: 1.45;
  color: var(--color-text-muted);
}

/* Нижний баннер «Моя задача» */
.author__mission {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 24px 28px;
  background: var(--color-callout-bg);
  border-radius: var(--radius-lg);
}

.author__mission-text {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex: 1;
  min-width: 0;
}

.author__mission-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-icon);
}

.author__mission-title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-text);
  margin-bottom: 6px;
}

.author__mission-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--color-text-body);
}

.author__flow {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.author__flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 72px;
}

.author__flow-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-white);
  color: #9ca3af;
  box-shadow: var(--shadow-sm);
}

.author__flow-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.author__flow-arrow {
  display: flex;
  align-items: center;
  color: #d1d5db;
  margin-top: -18px;
}

/* ============================================
   Пятый экран — для кого
   ============================================ */
.audience {
  position: relative;
  padding: var(--section-padding) 0;
  background-image:
    linear-gradient(
      to right,
      rgba(245, 247, 250, 0.96) 0%,
      rgba(245, 247, 250, 0.9) 50%,
      rgba(245, 247, 250, 0.72) 72%,
      rgba(245, 247, 250, 0.35) 100%
    ),
    url('../images/audience-bg.png');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.audience__inner {
  position: relative;
  z-index: 1;
}

.audience__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--color-icon-bg);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-icon);
  margin-bottom: 16px;
}

.audience__title {
  font-size: clamp(26px, 2.8vw, 34px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin-bottom: 24px;
  max-width: 820px;
}

.audience__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 16px;
}

.audience-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 20px 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.audience-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--color-icon-bg);
  color: var(--color-icon);
  flex-shrink: 0;
}

.audience-card__title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-text);
}

.audience-card__desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--color-text-body);
}

.audience__highlights {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 14px;
}

.audience__highlight {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: rgba(240, 242, 255, 0.92);
  border-radius: var(--radius-lg);
}

.audience__highlight-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-icon);
  color: var(--color-white);
  flex-shrink: 0;
}

.audience__highlight-title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-icon);
  margin-bottom: 6px;
}

.audience__highlight-text {
  font-size: 13px;
  line-height: 1.5;
  color: var(--color-text-body);
}

.audience__highlight:last-child .audience__highlight-title {
  margin-bottom: 0;
}

/* ============================================
   Шестой экран — стоимость и оплата
   ============================================ */
.pricing {
  position: relative;
  padding: var(--section-padding) 0;
  background: #f4f5f9;
  overflow: hidden;
}

.pricing__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.pricing__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
}

.pricing__blob--left {
  width: 360px;
  height: 360px;
  left: -120px;
  bottom: 60px;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.45) 0%, transparent 70%);
}

.pricing__blob--right {
  width: 400px;
  height: 400px;
  right: -140px;
  top: 40px;
  background: radial-gradient(circle, rgba(147, 197, 253, 0.4) 0%, transparent 70%);
}

/* Декоративные «кубики» как на макете */
.pricing__cube {
  position: absolute;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(230, 235, 255, 0.6) 100%);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 8px 24px rgba(100, 120, 200, 0.12);
  transform: rotate(25deg);
}

.pricing__cube--1 {
  width: 56px;
  height: 56px;
  right: 12%;
  bottom: 18%;
  opacity: 0.7;
}

.pricing__cube--2 {
  width: 40px;
  height: 40px;
  left: 8%;
  bottom: 28%;
  opacity: 0.5;
  transform: rotate(-15deg);
}

.pricing__inner {
  position: relative;
  z-index: 1;
}

.pricing__main {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 32px;
  align-items: stretch;
  margin-bottom: 20px;
}

.pricing__info {
  display: flex;
  flex-direction: column;
}

.pricing__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: #eef0ff;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  color: #5b6cf8;
  margin-bottom: 18px;
}

.pricing__title {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin-bottom: 14px;
  max-width: 560px;
}

.pricing__desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin-bottom: 18px;
  max-width: 580px;
}

.pricing__includes-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 12px;
}

.pricing__includes {
  flex: 1;
  padding: 20px 24px;
  background: var(--color-white);
  border: 1px solid #eceef3;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.pricing__list {
  display: flex;
  flex-direction: column;
}

.pricing__list-item {
  position: relative;
  padding: 14px 0 14px 36px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--color-text-body);
  border-bottom: 1px dashed #e2e5ec;
}

.pricing__list-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.pricing__list-item:first-child {
  padding-top: 0;
}

.pricing__list-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #5b6cf8;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

.pricing__list-item:first-child::before {
  top: 0;
}

/* Правая колонка: эфир + карточка цены на всю высоту */
.pricing__aside {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
}

.pricing__live {
  display: inline-flex;
  align-items: center;
  align-self: flex-end;
  flex-shrink: 0;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 600;
  color: #5b6cf8;
}

.pricing__live svg {
  flex-shrink: 0;
  color: #5b6cf8;
}

.pricing__live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #5b6cf8;
  animation: pulse 2s ease-in-out infinite;
}

.pricing__card {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  padding: 28px 24px 24px;
  background: var(--color-white);
  border: 1px solid #eceef3;
  border-radius: 20px;
  box-shadow: 0 16px 48px rgba(60, 70, 130, 0.1);
  text-align: center;
  min-height: 0;
}

.pricing__old-wrap {
  margin-bottom: 8px;
}

.pricing__old-label {
  display: block;
  font-size: 13px;
  color: #9ca3af;
  margin-bottom: 4px;
}

.pricing__old {
  font-size: 24px;
  font-weight: 600;
  color: #b0b5c0;
  text-decoration: line-through;
  text-decoration-color: #5b6cf8;
  text-decoration-thickness: 2px;
}

.pricing__price {
  font-size: clamp(44px, 5vw, 56px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #4b55f5;
  margin-bottom: 14px;
}

.pricing__sale-badge {
  display: inline-block;
  padding: 7px 18px;
  margin-bottom: 16px;
  background: #eef0ff;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  color: #5b6cf8;
}

/* Компактный список внутри карточки цены */
.pricing__card-list {
  flex: 1;
  width: 100%;
  margin-bottom: 18px;
  padding: 14px 0;
  border-top: 1px solid #eef0f4;
  border-bottom: 1px solid #eef0f4;
  text-align: left;
}

.pricing__card-list li {
  position: relative;
  padding: 5px 0 5px 20px;
  font-size: 12px;
  line-height: 1.45;
  color: var(--color-text-muted);
}

.pricing__card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #a5b0f8;
}

.btn--pricing {
  width: 100%;
  max-width: 100%;
  padding: 17px 24px;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-white);
  background: #4b55f5;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(75, 85, 245, 0.45);
  margin-bottom: 18px;
  margin-top: auto;
}

.btn--pricing:hover {
  background: #3f48e0;
  box-shadow: 0 12px 32px rgba(75, 85, 245, 0.55);
  transform: translateY(-1px);
}

.pricing__note {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--color-text-muted);
  text-align: left;
  max-width: 280px;
  margin: 0 auto;
}

.pricing__note svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: #5b6cf8;
}

/* Нижняя полоса */
.pricing__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 24px 12px;
  background: var(--color-white);
  border: 1px solid #eceef3;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 4px 24px;
  border-right: 1px solid #e8eaef;
}

.pricing-feature:last-child {
  border-right: none;
}

.pricing-feature__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  flex-shrink: 0;
  background: #eef0ff;
  color: #5b6cf8;
}

.pricing-feature__icon--play {
  border-radius: 12px;
}

.pricing-feature__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}

.pricing-feature__desc {
  font-size: 13px;
  line-height: 1.45;
  color: var(--color-text-body);
}

/* ============================================
   Седьмой экран — вопросы и ответы
   ============================================ */
.faq {
  padding: var(--section-padding) 0;
  background: linear-gradient(180deg, #f3f4f8 0%, #eef0f6 100%);
}

.faq__inner {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.faq__header {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  max-width: 720px;
}

.faq__header-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4f6fd8 0%, #3d57b8 100%);
  color: var(--color-white);
  box-shadow: 0 6px 18px rgba(61, 87, 184, 0.28);
}

.faq__title {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: 10px;
}

.faq__intro {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.faq__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: start; /* сосед в ряду не растягивается при открытии ответа */
}

.faq-item {
  align-self: start;
  height: auto;
  background: var(--color-white);
  border: 1px solid #e8ebf2;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(30, 40, 80, 0.05);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item--open {
  border-color: #d4dcf5;
  box-shadow: 0 6px 22px rgba(50, 70, 140, 0.1);
}

.faq-item__trigger {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 14px 16px;
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: inherit;
  transition: background-color 0.2s ease;
}

.faq-item__trigger:hover {
  background: rgba(79, 111, 216, 0.04);
}

.faq-item--open .faq-item__trigger {
  background: rgba(79, 111, 216, 0.05);
}

.faq-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--color-icon-bg);
  color: var(--color-icon);
}

.faq-item__question {
  flex: 1;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-text);
}

.faq-item__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  color: #4f6fd8;
}

.faq-item__plus {
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item--open .faq-item__plus {
  transform: rotate(45deg);
}

/* Плавное раскрытие: grid 0fr → 1fr */
.faq-item__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item--open .faq-item__panel {
  grid-template-rows: 1fr;
}

.faq-item__panel-inner {
  overflow: hidden;
  min-height: 0;
  padding: 0 16px 0 64px;
  opacity: 0;
  transform: translateY(-6px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item--open .faq-item__panel-inner {
  padding-bottom: 16px;
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.06s;
}

.faq-item:not(.faq-item--open) .faq-item__panel-inner {
  transition-delay: 0s;
}

.faq-item__answer {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-body);
}

.faq-item__answer p {
  margin-bottom: 10px;
}

.faq-item__answer p:last-child {
  margin-bottom: 0;
}

.faq-item__list {
  margin: 8px 0 10px;
  padding-left: 18px;
  list-style: disc;
}

.faq-item__list li {
  margin-bottom: 4px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text-body);
}

.faq__cta {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 24px;
  border-radius: 18px;
  background: linear-gradient(135deg, #fff8e6 0%, #fff3d4 100%);
  border: 1px solid #f5e6b8;
  box-shadow: 0 4px 20px rgba(220, 180, 60, 0.12);
}

.faq__cta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffe566 0%, #ffc94a 100%);
  color: #9a7200;
  box-shadow: 0 6px 16px rgba(255, 190, 50, 0.35);
}

.faq__cta-text {
  flex: 1;
  min-width: 0;
}

.faq__cta-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 4px;
}

.faq__cta-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--color-text-muted);
}

.btn--faq {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-shrink: 0;
  padding: 14px 24px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-white);
  background: linear-gradient(135deg, #5b7fe8 0%, #4a63d4 100%);
  box-shadow: 0 8px 22px rgba(74, 99, 212, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn--faq:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(74, 99, 212, 0.42);
}

/* ============================================
   Восьмой экран — финальный призыв
   ============================================ */
.final {
  position: relative;
  padding: var(--section-padding) 0;
  background: linear-gradient(180deg, #f6f7fb 0%, #eef1f8 100%);
  overflow: hidden;
}

.final__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.final__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.final__blob--left {
  width: 420px;
  height: 420px;
  left: -160px;
  top: 80px;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.35) 0%, transparent 70%);
}

.final__blob--right {
  width: 380px;
  height: 380px;
  right: -120px;
  bottom: 40px;
  background: radial-gradient(circle, rgba(147, 197, 253, 0.35) 0%, transparent 70%);
}

.final__inner {
  position: relative;
  z-index: 1;
}

.final__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: #eef0ff;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  color: #5b6cf8;
  margin-bottom: 20px;
}

.final__main {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: start;
  margin-bottom: 28px;
}

.final__title {
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin-bottom: 20px;
  max-width: 640px;
}

.final__text {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.final__text p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-text-body);
}

.final__text strong {
  color: var(--color-text);
  font-weight: 700;
}

.final__mid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

.final__list-card {
  padding: 20px;
  background: var(--color-white);
  border: 1px solid #e8ebf2;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(30, 40, 80, 0.05);
}

.final__list-intro,
.final__list-lead {
  font-size: 14px;
  line-height: 1.55;
  color: var(--color-text-body);
  margin-bottom: 10px;
}

.final__list-lead {
  font-weight: 600;
  color: var(--color-text);
}

.final__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.final__list-item {
  position: relative;
  padding-left: 26px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text-body);
}

.final__list-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #eef0ff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 12l5 5L20 7' stroke='%235b6cf8' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 10px no-repeat;
}

.final__points {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.final-point {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.final-point__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #eef0ff;
  color: #5b6cf8;
}

.final-point__title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  color: var(--color-text);
  margin-bottom: 4px;
}

.final-point__desc {
  font-size: 13px;
  line-height: 1.55;
  color: var(--color-text-muted);
}

.final-point__desc + .final-point__desc {
  margin-top: 8px;
}

/* Два выделенных блока по центру секции */
.final__highlights {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 720px;
  margin: 8px auto 32px;
}

.final__text--after {
  width: 100%;
  padding: 26px 32px;
  text-align: center;
  background: var(--color-white);
  border: 1px solid #d4dcff;
  border-radius: 18px;
  box-shadow: 0 10px 36px rgba(75, 85, 245, 0.1);
}

.final__text--after p {
  font-size: 15px;
  line-height: 1.65;
}

.final__text--after p strong {
  display: block;
  margin: 4px 0 2px;
  font-size: 17px;
  font-weight: 800;
  color: var(--color-text);
}

.final__quote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  padding: 26px 32px;
  text-align: center;
  background: linear-gradient(135deg, #eef2ff 0%, #e4ebff 100%);
  border-radius: 18px;
  border: 1px solid #c8d4ff;
  box-shadow: 0 10px 36px rgba(75, 85, 245, 0.14);
}

.final__quote-icon {
  flex-shrink: 0;
  font-size: 52px;
  line-height: 0.8;
  font-weight: 800;
  color: #8b9cf8;
  font-family: Georgia, serif;
}

.final__quote p {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  line-height: 1.45;
  color: #4b55f5;
  text-align: left;
}

.final__aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.final__flow {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4px;
  padding: 0 4px;
}

.final__flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 0;
}

.final__flow-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7c8cf8 0%, #5b6cf8 100%);
  color: var(--color-white);
  box-shadow: 0 6px 16px rgba(91, 108, 248, 0.35);
}

.final__flow-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 2px;
}

.final__flow-sub {
  font-size: 11px;
  line-height: 1.35;
  color: var(--color-text-muted);
}

.final__flow-arrow {
  flex-shrink: 0;
  margin-top: 16px;
  color: #c4c9e8;
}

.final__visual {
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, #f0f2fa 0%, #e8ecf8 100%);
  box-shadow: 0 8px 28px rgba(50, 70, 140, 0.08);
}

.final__visual img {
  display: block;
  width: 100%;
  height: auto;
}

.final__card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 28px 24px 22px;
  background: var(--color-white);
  border: 1px solid #eceef3;
  border-radius: 20px;
  box-shadow: 0 16px 48px rgba(60, 70, 130, 0.1);
  text-align: center;
}

.final__old-wrap {
  margin-bottom: 12px;
}

.final__old-label {
  display: block;
  font-size: 13px;
  color: #9ca3af;
  margin-bottom: 4px;
}

.final__old {
  font-size: 22px;
  font-weight: 600;
  color: #b0b5c0;
  text-decoration: line-through;
  text-decoration-color: #5b6cf8;
  text-decoration-thickness: 2px;
}

.final__price-wrap {
  margin-bottom: 18px;
}

.final__price-label {
  display: block;
  font-size: 13px;
  color: #9ca3af;
  margin-bottom: 4px;
}

.final__price {
  font-size: clamp(44px, 5vw, 52px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #4b55f5;
}

.btn--final {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 20px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-white);
  background: linear-gradient(135deg, #5b6cf8 0%, #4b55f5 100%);
  box-shadow: 0 8px 24px rgba(75, 85, 245, 0.38);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn--final:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(75, 85, 245, 0.45);
}

.final__note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #eef0f4;
  font-size: 12px;
  line-height: 1.5;
  color: var(--color-text-muted);
  text-align: left;
}

.final__note svg {
  flex-shrink: 0;
  margin-top: 1px;
  color: #5b6cf8;
}

.final__cta {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 24px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #f0f4ff 0%, #e8eeff 100%);
  border: 1px solid #dde5ff;
  border-radius: 18px;
}

.final__cta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #5b6cf8 0%, #4b55f5 100%);
  color: var(--color-white);
  box-shadow: 0 6px 18px rgba(75, 85, 245, 0.3);
}

.final__cta-title {
  font-size: 18px;
  font-weight: 800;
  color: #4b55f5;
  margin-bottom: 6px;
}

.final__cta-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-body);
}

@media (max-width: 1100px) {
  .author__features {
    grid-template-columns: repeat(3, 1fr);
  }

  .audience__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.comparison {
  background: var(--color-white);
  padding: var(--section-padding) 0;
}

.comparison__inner {
  display: grid;
  grid-template-columns: 1fr 48px 1fr;
  gap: 32px;
  align-items: start;
}

.comparison__title {
  font-size: clamp(26px, 2.8vw, 34px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin-bottom: 18px;
}

.comparison__text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-body);
  margin-bottom: 14px;
}

.comparison__text--bold {
  font-weight: 600;
  color: var(--color-text);
}

.comparison__lead {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-text);
  margin-bottom: 14px;
}

/* Карточки проблем слева */
.pain-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pain-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--color-white);
  border: 1px solid #e8ecf1;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.pain-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-icon-bg);
  color: var(--color-icon);
  flex-shrink: 0;
}

.pain-card__text {
  font-size: 15px;
  line-height: 1.45;
  color: var(--color-text-body);
}

/* Вертикальный разделитель */
.comparison__divider {
  position: relative;
  align-self: stretch;
  min-height: 200px;
}

.comparison__divider-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-left: 2px dashed #d1d5db;
}

.comparison__arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gradient);
  color: var(--color-white);
  box-shadow: 0 4px 16px rgba(167, 66, 255, 0.35);
}

/* Правая колонка */
.comparison__col--after {
  display: flex;
  flex-direction: column;
}

.comparison__callout {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: var(--color-callout-bg);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
}

.comparison__callout-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-icon);
}

.comparison__callout-text {
  font-size: 15px;
  line-height: 1.55;
  color: var(--color-text-body);
}

.comparison__highlight {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.55;
  color: var(--color-accent);
  margin-bottom: 16px;
}

.comparison__visual {
  margin-top: auto;
  padding-top: 12px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.comparison__visual img {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
  margin-left: auto;
  border-radius: var(--radius-md);
  -webkit-mask-image: linear-gradient(to bottom, #000 75%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 75%, transparent 100%);
}

/* --- Компактность на низких экранах --- */
@media (max-height: 750px) {
  :root {
    --header-height: 52px;
  }

  .hero__title {
    font-size: 26px;
  }

  .hero__desc,
  .check-list__item {
    font-size: 14px;
  }

  .features {
    margin-top: 0;
  }

  .btn--lg {
    padding: 12px 22px;
    font-size: 15px;
  }
}

/* --- Планшет --- */
@media (max-width: 1024px) {
  :root {
    --text-col: 6;
    --section-padding: 56px;
  }

  .comparison__inner {
    gap: 24px;
    grid-template-columns: 1fr 40px 1fr;
  }

  .program__inner {
    gap: 36px;
    grid-template-columns: 0.9fr 1.1fr;
  }

  .pricing__main {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .pricing__aside {
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
    height: auto;
  }

  .pricing__card {
    flex: none;
  }

  .pricing__includes {
    flex: none;
  }

  .pricing__live {
    align-self: center;
  }

  .final__main {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .final__aside {
    max-width: 440px;
    margin: 0 auto;
    width: 100%;
  }

  .author__top {
    gap: 32px;
    grid-template-columns: 1fr 1fr;
  }

  .author__features {
    grid-template-columns: repeat(3, 1fr);
  }

  .nav__list {
    gap: 16px;
  }

  .nav__link {
    font-size: 12px;
  }
}

/* --- Шапка: мобильное меню --- */
@media (max-width: 820px) {
  .nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    z-index: 99;
  }

  .nav--open {
    max-height: 400px;
    padding: 16px 20px 24px;
  }

  .nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .nav__link {
    display: block;
    padding: 12px 0;
    font-size: 16px;
    width: 100%;
    border-bottom: 1px solid var(--color-border);
  }

  .nav__list li:last-child .nav__link {
    border-bottom: none;
  }

  .header__cta {
    display: none;
  }

  .burger {
    display: flex;
  }
}

/* --- Мобильные --- */
@media (max-width: 768px) {
  .hero-screen {
    height: auto;
    min-height: 100dvh;
    overflow: visible;
  }

  .hero-screen__overlay {
    background: linear-gradient(
      to bottom,
      rgba(245, 247, 250, 0.97) 0%,
      rgba(245, 247, 250, 0.92) 70%,
      rgba(245, 247, 250, 0.85) 100%
    );
  }

  .hero-screen__main {
    grid-template-rows: auto auto;
    padding-bottom: var(--screen-gap);
  }

  .hero-screen__stack {
    grid-row: auto;
  }

  .hero__content {
    width: 100%;
    max-width: 100%;
  }

  .features {
    margin-top: 0;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .features__grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .feature-card {
    padding: 12px 16px;
  }

  .comparison__inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .comparison__divider {
    min-height: 48px;
    margin: 32px 0;
  }

  .comparison__divider-line {
    top: 50%;
    bottom: auto;
    left: 0;
    right: 0;
    width: 100%;
    height: 0;
    transform: none;
    border-left: none;
    border-top: 2px dashed #d1d5db;
  }

  .comparison__arrow {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
  }

  .comparison__visual img {
    margin-left: 0;
    max-width: 100%;
  }

  .program__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .program__visual {
    position: static;
    max-width: 480px;
    margin: 0 auto;
  }

  .program__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .program__desc {
    max-width: none;
  }

  .author__top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .author__photo {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }

  .author__card-list {
    grid-template-columns: 1fr;
  }

  .author__features {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .author-feature {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 14px;
    padding: 16px 18px;
  }

  .author-feature__icon {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .author__mission {
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
  }

  .author__flow {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 6px;
  }

  .author__flow-arrow {
    margin-top: 0;
  }

  .audience__grid {
    grid-template-columns: 1fr;
  }

  .audience__highlights {
    grid-template-columns: 1fr;
  }

  /* На мобильных fixed-фон работает нестабильно */
  .audience {
    background-attachment: scroll;
  }

  .pricing__live {
    align-self: center;
  }

  .pricing__features {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .pricing-feature {
    border-right: none;
    border-bottom: 1px solid #e5e7eb;
    padding: 14px 8px;
  }

  .pricing-feature:last-child {
    border-bottom: none;
  }

  .btn--pricing {
    white-space: normal;
  }

  .faq__grid {
    grid-template-columns: 1fr;
  }

  .faq__cta {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 20px;
  }

  .faq__cta-icon {
    margin: 0 auto;
  }

  .btn--faq {
    width: 100%;
  }

  .final__mid {
    grid-template-columns: 1fr;
  }

  .final__flow {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .final__flow-arrow {
    display: none;
  }

  .final__cta {
    flex-direction: column;
    align-items: stretch;
  }

  .btn--final {
    white-space: normal;
  }
}

@media (max-width: 480px) {
  .badge {
    font-size: 10px;
  }

  .btn--lg {
    white-space: normal;
  }
}

/* ============================================
   Подвал
   ============================================ */
.footer {
  padding: 36px 0 32px;
  background: #e8ebf2;
  border-top: 1px solid #d8dde8;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px 40px;
  flex-wrap: wrap;
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin-bottom: 10px;
}

.footer__copy,
.footer__ogrn {
  font-size: 13px;
  line-height: 1.55;
  color: var(--color-text-muted);
}

.footer__ogrn {
  margin-top: 4px;
  color: var(--color-text-soft);
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  align-items: center;
}

.footer__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-body);
  transition: color 0.2s ease;
}

.footer__link:hover {
  color: #4b55f5;
}

.footer__legal {
  padding-top: 20px;
  border-top: 1px solid #d0d6e4;
  font-size: 12px;
  line-height: 1.55;
  color: var(--color-text-soft);
}

@media (max-width: 768px) {
  .footer__top {
    flex-direction: column;
  }

  .footer__nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* --- Кроссбраузерность --- */
@supports not (background-clip: text) {
  .gradient-text {
    color: var(--color-cyan);
    background: none;
    -webkit-text-fill-color: unset;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
