/*
  Дизайн-система перенесена с lp.internet4expert.ru/pozdravlenia/.
  Токены и общие компоненты. Специфика секций — inline <style> рядом с разметкой.
*/

:root {
  --text: #1a1a1a;
  --text-mid: #555;
  --text-light: #888;
  --bg: #fff;
  --bg-warm: #faf7f4;
  --bg-warmer: #f9f1ec;
  --border: #ede8e3;
  --border-warm: #e7d7cf;
  --accent: #c96b4a;
  --accent-soft: #9f6a57;
  --accent-dark: #8f422c;
  --blue: #1a3d52;
  --green: #4f9d69;
  --red: #b85b52;
  --shadow: 0 22px 48px rgba(56, 34, 21, 0.09);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 18px;
  line-height: 1.7;
}

body, button, input, select {
  font-family: 'Montserrat', Arial, sans-serif;
}

h1, h2, h3 { font-weight: 700; }

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

p + p { margin-top: 16px; }

strong { color: var(--text); font-weight: 700; }

.container,
.hero-inner,
.sticky-nav-inner {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow { max-width: 820px; }

/* =========== STICKY NAV =========== */
.sticky-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
}
.sticky-nav-inner {
  display: flex;
  gap: 28px;
  align-items: center;
  min-height: 56px;
  overflow-x: auto;
}
.sticky-nav a {
  color: var(--text-mid);
  flex: 0 0 auto;
  font-size: 15px;
  font-weight: 600;
  opacity: 0.82;
}
.sticky-nav a:hover { color: var(--accent); opacity: 1; text-decoration: none; }

/* =========== HERO =========== */
.hero {
  background: linear-gradient(180deg, #fff 0%, #fbf7f2 100%);
  overflow: hidden;
  padding: 58px 0 70px;
  position: relative;
}
.hero::before {
  background: radial-gradient(circle, #f5ede4 0%, rgba(245, 237, 228, 0) 70%);
  border-radius: 50%;
  content: '';
  height: 600px;
  pointer-events: none;
  position: absolute;
  right: -160px;
  top: -170px;
  width: 600px;
}
.hero-inner {
  align-items: center;
  display: grid;
  gap: 70px;
  grid-template-columns: minmax(0, 1fr) 410px;
  position: relative;
  z-index: 1;
}
.hero-tag, .section-label {
  align-items: center;
  color: var(--accent-soft);
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  gap: 10px;
  letter-spacing: 0.22em;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.hero-tag::before, .section-label::before {
  background: var(--accent);
  content: '';
  display: block;
  height: 1px;
  width: 32px;
}
.hero-title, .section-title {
  color: var(--text);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.hero-title { font-size: clamp(34px, 4.5vw, 52px); max-width: 760px; }
.section-title { font-size: clamp(26px, 4vw, 42px); margin-bottom: 24px; }
.hero-title em, .section-title em { color: var(--accent); font-style: normal; }
.hero-title-main { display: inline-block; font-size: clamp(42px, 6vw, 64px); }
.hero-title-sub { display: inline-block; font-size: clamp(20px, 2.8vw, 28px); font-weight: 600; margin-top: 8px; }
.hero-kicker {
  color: var(--blue);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 800;
  line-height: 1.25;
  margin-top: 18px;
  max-width: 720px;
}
.hero-desc {
  color: var(--text-mid);
  font-size: clamp(18px, 2.1vw, 22px);
  margin: 16px 0 30px;
  max-width: 720px;
}
.hero-right { position: relative; }
.hero-right img, .author-photo img {
  aspect-ratio: 1;
  border: 10px solid #fff;
  border-radius: 28px;
  box-shadow: var(--shadow);
  display: block;
  object-fit: cover;
  width: 100%;
}
.hero-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border-warm);
  box-shadow: 0 18px 42px rgba(56, 34, 21, 0.12);
  display: grid;
  gap: 14px;
  margin: -42px auto 0;
  padding: 22px;
  position: relative;
  width: calc(100% - 34px);
}
.hero-card div {
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
}
.hero-card div:last-child { border-bottom: 0; padding-bottom: 0; }
.hero-card strong { font-size: 14px; }
.hero-card span { color: var(--text-mid); font-size: 14px; text-align: right; }

/* =========== BUTTONS =========== */
.btn, .calc-btn {
  background: var(--accent);
  border: 0;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
  padding: 17px 28px;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.btn:hover, .calc-btn:hover {
  background: var(--accent-dark);
  box-shadow: 0 18px 34px rgba(143, 66, 44, 0.22);
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
}
.btn-large { font-size: 19px; padding: 20px 34px; }
.btn-dark { background: var(--blue); }
.btn-dark:hover { background: #102f42; box-shadow: 0 18px 34px rgba(26, 61, 82, 0.24); }

@keyframes btn-attention {
  0%, 100% { transform: scale(1); box-shadow: 0 4px 20px rgba(201, 107, 74, 0.25); }
  50% { transform: scale(1.04); box-shadow: 0 10px 34px rgba(201, 107, 74, 0.45); }
}
.btn-hero { animation: btn-attention 2s ease-in-out infinite; }
.btn-hero:hover { animation: none; transform: translateY(-2px); }

.price-row { align-items: baseline; display: flex; flex-wrap: wrap; gap: 14px 22px; }
.price-old {
  color: var(--text-light);
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 600;
  text-decoration: line-through;
  text-decoration-color: var(--red);
  text-decoration-thickness: 3px;
}
.price-new {
  color: var(--accent);
  font-size: clamp(36px, 4.5vw, 50px);
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* =========== SECTIONS =========== */
.section { padding: 82px 0; }
.section-warm { background: var(--bg-warm); }
.section-warmer { background: var(--bg-warmer); }
.section-dark { background: var(--blue); color: rgba(255, 255, 255, 0.92); }
.section-dark .section-label { color: #e8b5a2; }
.section-dark .section-label::before { background: #e8b5a2; }
.section-dark .section-title { color: #fff; }
.section-dark .section-title em { color: #e8b5a2; }

.two-col {
  align-items: center;
  display: grid;
  gap: 54px;
  grid-template-columns: 260px minmax(0, 1fr);
}
.author-photo { text-align: center; }
.author-photo a { display: inline-block; font-size: 14px; font-weight: 600; margin-top: 14px; }

.callout {
  background: #fff;
  border: 1px solid var(--border-warm);
  border-left: 5px solid var(--accent);
  box-shadow: 0 14px 32px rgba(56, 34, 21, 0.06);
  color: var(--text-mid);
  margin: 28px 0;
  padding: 22px 26px;
}
.callout strong { color: var(--text); }
.callout-red { border-left-color: var(--red); }
.callout-dark { background: var(--blue); color: rgba(255,255,255,0.92); border-color: var(--blue); }
.callout-dark strong { color: #e8b5a2; }

/* =========== SOCIAL PROOF BAR =========== */
.social-proof-bar {
  background:
    linear-gradient(135deg, rgba(26, 61, 82, 0.96), rgba(20, 48, 66, 0.98)),
    radial-gradient(circle at 20% 20%, rgba(201, 107, 74, 0.3), transparent 42%);
  color: #fff;
  padding: 42px 20px;
}
.social-proof-inner {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  margin: 0 auto;
  max-width: 900px;
  padding: clamp(28px, 4vw, 42px);
  position: relative;
  text-align: center;
}
.social-proof-mark {
  color: #e8b5a2;
  font-size: clamp(72px, 10vw, 128px);
  font-weight: 800;
  left: 24px;
  line-height: 0.8;
  opacity: 0.35;
  position: absolute;
  top: 18px;
}
.social-proof-inner p {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin: 0 auto;
  max-width: 760px;
  position: relative;
  z-index: 1;
}
.social-proof-inner span {
  color: #e8b5a2;
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  gap: 10px;
  letter-spacing: 0.18em;
  margin-top: 22px;
  text-transform: uppercase;
}
.social-proof-inner span::before {
  background: #e8b5a2;
  content: '';
  display: block;
  height: 1px;
  margin-top: 11px;
  width: 34px;
}

/* =========== CARD GRIDS =========== */
.recommend-grid, .program-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 32px;
}
.recommend-card, .program-card, .for-who-card, .faq-item, .module-card, .package-card {
  background: #fff;
  border: 1.5px solid var(--border-warm);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.recommend-card, .program-card { padding: 26px; }
.recommend-card:hover, .program-card:hover, .for-who-card:hover, .faq-item:hover, .module-card:hover {
  border-color: #dec7ba;
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.recommend-card span, .program-card span {
  color: var(--accent);
  display: block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  margin-bottom: 14px;
}
.recommend-card p, .program-card p {
  color: var(--text-mid);
  font-size: 16px;
  margin-top: 10px;
}
.recommend-card h3, .program-card h3, .module-card h3 {
  color: var(--text);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}
.program-card { border-top: 4px solid var(--blue); }

.for-who-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 32px;
}
.for-who-card { padding: 30px; }
.for-who-card.positive { border-top: 5px solid var(--green); }
.for-who-card.negative { border-top: 5px solid var(--red); }
.for-who-card h3 { font-size: 22px; margin-bottom: 6px; }
.for-who-card ul, .check-list { list-style: none; margin-top: 18px; }
.for-who-card li, .check-list li { color: var(--text-mid); padding: 8px 0 8px 26px; position: relative; }
.for-who-card li::before, .check-list li::before {
  background: var(--accent);
  border-radius: 50%;
  content: '';
  height: 8px;
  left: 0;
  position: absolute;
  top: 19px;
  width: 8px;
}
.for-who-card.positive li::before, .check-list li::before { background: var(--green); }
.for-who-card.negative li::before { background: var(--red); }
.for-who-card p { color: var(--text-mid); font-size: 16px; }

/* =========== MODULE LIST (программа) =========== */
.modules-list { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.module-card { border-radius: 0; }
.module-header { display: flex; align-items: center; gap: 18px; padding: 20px 26px; background: var(--bg-warm); }
.program-num-badge {
  width: 44px; height: 44px; min-width: 44px;
  background: var(--blue); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 19px;
}
.module-points { list-style: none; padding: 18px 26px 24px 68px; display: flex; flex-direction: column; gap: 8px; }
.module-points li { font-size: 16px; color: var(--text-mid); line-height: 1.6; position: relative; }
.module-points li::before {
  content: '';
  position: absolute; left: -18px; top: 9px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
}
.ai-layer-badge {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--bg-warm);
  border-left: 5px solid var(--accent);
  padding: 22px 26px;
  margin-bottom: 30px;
}
.ai-layer-icon { font-size: 22px; flex-shrink: 0; }
.ai-layer-title { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.ai-layer-desc { font-size: 15px; color: var(--text-mid); line-height: 1.55; }
.program-block-label {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase;
  color: #fff; background: var(--blue);
  padding: 9px 18px; margin-bottom: 16px;
}

/* =========== FUNNEL LIST (три воронки) =========== */
.funnel-list { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.funnel-item {
  background: #fff;
  border-left: 3px solid var(--accent);
  padding: 16px 22px;
  display: flex; gap: 18px; align-items: center;
}
.funnel-num { font-size: 24px; font-weight: 800; color: var(--accent); line-height: 1; min-width: 34px; flex-shrink: 0; }
.funnel-item p { font-size: 16px; line-height: 1.5; color: var(--text); font-weight: 600; }

/* =========== REASONS (dark) =========== */
.reasons-list {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 32px;
}
.reason-item {
  background: rgba(255, 255, 255, 0.07);
  border-left: 3px solid #e8b5a2;
  padding: 22px 26px;
  display: flex; gap: 18px; align-items: flex-start;
}
.reason-item--wide { grid-column: 1 / -1; }
.reason-item--wide .reason-body { max-width: 68ch; }
.reason-num {
  font-size: 30px; font-weight: 800; color: #e8b5a2;
  line-height: 1; min-width: 34px; flex-shrink: 0;
}
.reason-body { flex: 1; min-width: 0; }
.reason-body h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 8px;
}
.reason-item p {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
}
.reason-item p strong { color: #fff; }
@media (max-width: 860px) {
  .reasons-list { grid-template-columns: 1fr; }
}

/* =========== BONUS LIST =========== */
.bonus-list { list-style: none; display: grid; gap: 14px; margin-top: 32px; }
.bonus-list li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 16px; padding: 20px 24px;
  background: #fff; border: 1.5px solid var(--border-warm);
}
.bonus-icon { font-size: 24px; flex-shrink: 0; }
.bonus-list li strong { font-weight: 700; color: var(--text); }
.bonus-list li p { color: var(--text-mid); margin-top: 4px; font-size: 15px; line-height: 1.6; }

/* =========== AUTHOR BOX =========== */
.author-box {
  background: #fff;
  border: 1.5px solid var(--border-warm);
  box-shadow: var(--shadow);
  padding: clamp(26px, 4vw, 42px);
  align-items: flex-start;
  display: grid;
  gap: 34px;
  grid-template-columns: 160px minmax(0, 1fr);
  margin-top: 32px;
}
.author-box img { aspect-ratio: 1; border-radius: 50%; object-fit: cover; width: 160px; }
.author-box h3 { font-size: 24px; margin-bottom: 6px; }
.author-box p { color: var(--text-mid); font-size: 16px; margin-top: 10px; }
.author-tag {
  display: inline-block; background: var(--blue); color: #fff;
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 14px; margin-bottom: 10px;
}
.author-stats { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 20px; }
.stat-box { background: var(--bg-warm); border: 1px solid var(--border-warm); padding: 14px 20px; text-align: center; min-width: 120px; }
.stat-box strong { display: block; font-size: 24px; font-weight: 800; color: var(--accent); }
.stat-box span { font-size: 13px; line-height: 1.3; display: block; color: var(--text-mid); }

/* =========== TIMER =========== */
.timer-wrap {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 22px 0;
}
.timer-cell { background: #fff; border: 1px solid var(--border-warm); padding: 16px 12px; text-align: center; }
.timer-cell__num { color: var(--blue); display: block; font-size: clamp(28px, 4vw, 42px); font-weight: 800; line-height: 1; }
.timer-cell__label { color: var(--text-light); display: block; font-size: 12px; letter-spacing: 0.14em; margin-top: 8px; text-transform: uppercase; }

/* =========== COMPARE TABLE (посты vs воронка) =========== */
.compare-table { margin-top: 8px; border: 1px solid var(--border-warm); }
.compare-head, .compare-row { display: grid; grid-template-columns: 170px 1fr 1fr; }
.compare-head { background: var(--blue); }
.compare-row { border-top: 1px solid var(--border-warm); }
.compare-row:nth-child(even) { background: var(--bg-warm); }
.compare-cell { padding: 16px 20px; font-size: 15px; line-height: 1.5; }
.compare-cell--label { font-weight: 700; color: var(--text-mid); background: var(--bg-warmer); border-right: 1px solid var(--border-warm); font-size: 13px; }
.compare-head .compare-cell--label { background: var(--blue); }
.compare-cell--bad { color: var(--text-light); border-right: 1px solid var(--border-warm); }
.compare-cell--bad::before { content: "✗ "; color: var(--red); font-weight: 700; }
.compare-cell--good { color: var(--text); font-weight: 500; }
.compare-cell--good::before { content: "✓ "; color: var(--green); font-weight: 700; }
.compare-head .compare-cell--bad, .compare-head .compare-cell--good {
  font-weight: 800; font-size: 14px; text-transform: uppercase; letter-spacing: 0.06em;
}
.compare-head .compare-cell--bad { color: #f0b8ae; }
.compare-head .compare-cell--bad::before, .compare-head .compare-cell--good::before { content: ""; }
.compare-head .compare-cell--good { color: #e8b5a2; }

/* =========== FAQ =========== */
.faq-list { display: grid; gap: 12px; margin-top: 32px; }
.faq-q {
  align-items: center; background: #fff; border: 0; color: var(--text);
  cursor: pointer; display: flex; font-size: 17px; font-weight: 700;
  justify-content: space-between; padding: 20px 22px; text-align: left; width: 100%;
}
.faq-q span { color: var(--accent); font-size: 24px; transition: transform 0.25s; flex-shrink: 0; margin-left: 16px; }
.faq-item.open .faq-q span { transform: rotate(45deg); }
.faq-a { color: var(--text-mid); font-size: 15px; max-height: 0; overflow: hidden; padding: 0 22px; transition: max-height 0.3s ease, padding 0.2s ease; }
.faq-item.open .faq-a { max-height: 400px; padding: 0 22px 22px; }

/* =========== PRICING PACKAGES =========== */
.pricing-section { background: var(--bg-warmer); text-align: center; }
.pricing-section .section-label, .pricing-section .section-label::before { justify-content: center; }
.packages-grid { align-items: stretch; display: grid; gap: 20px; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 34px; text-align: left; }
.package-card { display: flex; flex-direction: column; min-height: 100%; position: relative; box-shadow: 0 16px 36px rgba(56, 34, 21, 0.07); }
.package-card-featured { border-color: var(--accent); box-shadow: 0 24px 60px rgba(201, 107, 74, 0.14); }
.package-card-dark { border-color: var(--blue); }
.package-badge {
  background: var(--accent); color: #fff; font-size: 12px; font-weight: 800;
  left: 22px; letter-spacing: 0.14em; padding: 8px 14px; position: absolute;
  text-transform: uppercase; top: -16px;
}
.package-card-dark .package-badge { background: var(--blue); }
.package-head { background: var(--bg-warm); border-bottom: 1px solid var(--border); padding: 30px 24px 24px; }
.package-card-featured .package-head { background: #fff7f2; }
.package-card-dark .package-head { background: #f0f4f8; }
.package-head h3 { color: var(--text); font-size: clamp(20px, 2.3vw, 25px); font-weight: 800; line-height: 1.2; margin-top: 8px; }
.package-date, .package-note { color: var(--text-mid); font-size: 14px; margin-top: 10px; }
.package-date strong { color: var(--accent); }
.package-support-note {
  background: var(--bg-warm); border-left: 3px solid var(--accent);
  color: var(--text); font-size: 13px; font-weight: 600; line-height: 1.5;
  margin-top: 14px; padding: 10px 14px;
}
.package-price-row { align-items: baseline; display: flex; flex-wrap: wrap; gap: 10px 14px; margin-top: 18px; }
.package-old { color: var(--text-light); font-size: 17px; font-weight: 600; text-decoration: line-through; text-decoration-color: var(--red); text-decoration-thickness: 2px; }
.package-price { color: var(--accent); font-size: clamp(32px, 4vw, 42px); font-weight: 800; letter-spacing: -0.02em; line-height: 1; }
.package-card-dark .package-price { color: var(--blue); }
.package-features { display: flex; flex: 1; flex-direction: column; gap: 12px; list-style: none; padding: 24px; }
.package-features li { color: var(--text-mid); font-size: 14px; line-height: 1.55; padding-left: 24px; position: relative; }
.package-features li::before { background: var(--green); border-radius: 50%; content: ''; height: 8px; left: 0; position: absolute; top: 8px; width: 8px; }
.package-features strong { color: var(--text); }
.package-extra-label {
  margin: 0 24px; padding-top: 16px; border-top: 1px dashed var(--border);
  font-size: 12px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent);
}
.package-features + .package-extra-label { margin-top: -12px; }
.package-features-extra { padding-top: 12px; }
.package-features-extra li::before { background: var(--accent); }
.package-bonus-box {
  margin: 14px 24px 0; padding: 14px 16px; border: 1.5px dashed var(--green);
  border-radius: 10px; background: rgba(79, 157, 105, 0.08);
}
.package-bonus-badge {
  display: inline-block; background: var(--green); color: #fff; font-size: 11px;
  font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 20px; margin-bottom: 8px;
}
.package-bonus-box p { color: var(--text); font-size: 14px; line-height: 1.5; }
.package-btn { margin: 0 24px 24px; width: calc(100% - 48px); }
.package-popular-tag {
  background: var(--blue); color: #fff; text-align: center; font-size: 13px; font-weight: 700;
  padding: 10px 16px; letter-spacing: 0.1em; text-transform: uppercase;
}

/* =========== SUPPORT CALLOUT =========== */
.support-callout {
  background: #fff; border: 2px solid var(--blue); border-left: 6px solid var(--blue);
  box-shadow: 0 14px 32px rgba(26, 61, 82, 0.08); padding: 24px 26px; text-align: left; margin-top: 24px;
}
.support-callout__title { color: var(--blue); font-size: 18px; font-weight: 800; line-height: 1.35; margin-bottom: 8px; }
.support-callout__text { color: var(--text); font-size: 15px; line-height: 1.65; }

/* =========== COMPARISON TABLE (пакеты) =========== */
.cmp-wrap { overflow-x: auto; margin-top: 32px; -webkit-overflow-scrolling: touch; }
.cmp-table { width: 100%; border-collapse: collapse; min-width: 560px; }
.cmp-th-feature { width: 34%; }
.cmp-th { text-align: center; font-size: 14px; font-weight: 800; color: var(--text); padding: 14px 12px; background: var(--bg-warm); width: 22%; }
.cmp-th--popular { background: var(--blue); color: #fff; }
.cmp-group-row td {
  background: var(--bg-warmer); font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-light); padding: 10px 14px; border-top: 2px solid var(--border-warm);
}
.cmp-feature { font-size: 15px; color: var(--text-mid); padding: 14px; line-height: 1.4; border-bottom: 1px solid var(--border); vertical-align: middle; }
.cmp-cell { text-align: center; padding: 14px 10px; font-size: 14px; border-bottom: 1px solid var(--border); vertical-align: middle; background: #fafafa; }
.cmp-col--popular { background: #fff7f2; }
.cmp-yes { color: var(--green); font-size: 18px; font-weight: 900; }
.cmp-no { color: var(--border-warm); font-size: 18px; font-weight: 900; }
.cmp-price-old { color: var(--text-light); text-decoration: line-through; font-size: 14px; }
.cmp-price-row .cmp-cell { border-bottom: none; }
.cmp-price-now { font-size: 20px; font-weight: 800; color: var(--accent); }
.cmp-col--btn { padding: 12px 10px 16px; background: #fafafa; }
.cmp-col--popular.cmp-col--btn { background: #fff7f2; }

/* =========== FINAL / STICKY CTA =========== */
.final-section { text-align: center; }
.final-section p { color: var(--text-mid); margin-bottom: 28px; }
.sticky-cta {
  background: rgba(255, 255, 255, 0.94); border-top: 1px solid var(--border-warm);
  bottom: 0; box-shadow: 0 -14px 34px rgba(56, 34, 21, 0.09); left: 0;
  opacity: 0; padding: 12px 16px; pointer-events: none; position: fixed; right: 0;
  transition: opacity 0.25s ease; z-index: 99;
}
.sticky-cta.is-visible { opacity: 1; pointer-events: auto; }
.sticky-cta .btn { display: block; margin: 0 auto; max-width: 480px; }

/* =========== FOOTER =========== */
.footer { background: var(--blue); color: rgba(255, 255, 255, 0.5); font-size: 14px; line-height: 1.7; padding: 48px 20px 96px; }
.footer a { color: #e8b5a2; }
.footer-inner { margin: 0 auto; max-width: 860px; text-align: center; }
.footer-details { margin-bottom: 24px; text-align: left; }
.footer-details summary { color: rgba(255, 255, 255, 0.7); cursor: pointer; font-size: 13px; text-align: center; }
.footer-details p { color: rgba(255, 255, 255, 0.5); font-size: 12px; margin-top: 12px; }
.footer-top { align-items: center; display: flex; flex-direction: column; gap: 16px; margin-bottom: 24px; }
.footer-logo { color: rgba(255, 255, 255, 0.72); font-size: 15px; }
.footer-logo span { color: #fff; font-weight: 700; }
.footer-logo a { display: block; }
.footer-social { display: flex; gap: 12px; justify-content: center; }
.footer-social a { border: 1px solid rgba(255, 255, 255, 0.22); color: rgba(255, 255, 255, 0.78); display: inline-block; font-size: 13px; font-weight: 700; padding: 6px 14px; }
.footer-divider { border: 0; border-top: 1px solid rgba(255, 255, 255, 0.14); margin-bottom: 24px; }
.footer-bottom { align-items: center; display: flex; flex-direction: column; gap: 18px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 8px 18px; justify-content: center; }
.footer-links a { color: rgba(255, 255, 255, 0.62); font-size: 13px; }
.footer-legal, .footer-disclaimer { color: rgba(255, 255, 255, 0.38); font-size: 12px; }
.footer-disclaimer { max-width: 560px; }

/* =========== REVEAL ON SCROLL =========== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =========== ADAPTIVE =========== */
@media (max-width: 900px) {
  .hero-inner, .two-col, .author-box { grid-template-columns: 1fr; }
  .hero-right { max-width: 420px; margin: 0 auto; }
  .recommend-grid, .program-grid, .packages-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .for-who-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  body { font-size: 16px; }
  .container, .hero-inner, .sticky-nav-inner { width: min(100% - 28px, 1100px); }
  .sticky-nav-inner { gap: 18px; }
  .sticky-nav a { font-size: 14px; }
  .hero, .section { padding: 44px 0; }
  .hero-inner { gap: 24px; }
  .hero-title { font-size: clamp(30px, 8vw, 40px); }
  .hero-title-main { font-size: clamp(32px, 9vw, 44px); }
  .hero-title-sub { font-size: clamp(18px, 5vw, 22px); }
  .hero-kicker { font-size: 16px; margin-top: 12px; }
  .hero-desc { font-size: 16px; margin: 12px 0 20px; }
  .timer-wrap { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin: 16px 0; }
  .recommend-grid, .program-grid, .packages-grid, .for-who-grid { grid-template-columns: 1fr; }
  .compare-head, .compare-row { grid-template-columns: 1fr; }
  .compare-cell--label { background: var(--bg-warmer); font-size: 12px; padding: 10px 16px; }
  .compare-head { display: none; }
  .hero-card { margin-top: 18px; width: 100%; }
  .price-old { font-size: 18px; }
  .price-new { font-size: 34px; }
  .timer-cell { padding: 12px 10px; }
  .timer-cell__num { font-size: 26px; }
  .timer-cell__label { font-size: 11px; margin-top: 6px; }
  .calc-result-row, .hero-card div { align-items: flex-start; flex-direction: column; gap: 4px; }
  .hero-card span { text-align: left; }
  .btn, .btn-large { width: 100%; font-size: 16px; padding: 16px 18px; }
  .package-btn { width: calc(100% - 48px); }
  .author-box img { width: 132px; }
  .cmp-th, .cmp-cell, .cmp-feature { font-size: 13px; padding: 10px 8px; }
  .cmp-price-now { font-size: 17px; }
}

/* =========== PROOF SCREENSHOT =========== */
.proof-wrap { max-width: 620px; margin: 0 auto; }
.proof-card {
  background: #fff;
  border: 1px solid var(--border-warm);
  border-radius: 14px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.proof-bar {
  align-items: center;
  background: var(--bg-warm);
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 7px;
  padding: 12px 18px;
}
.proof-dot { border-radius: 50%; height: 10px; width: 10px; background: #dcd3cc; }
.proof-bar span {
  color: var(--text-light);
  font-size: 13px;
  margin-left: 10px;
}
.proof-body { padding: clamp(24px, 4vw, 34px); text-align: center; }
.proof-label {
  color: var(--text-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.proof-sum {
  color: var(--accent);
  display: block;
  font-size: clamp(40px, 9vw, 64px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 10px 0 6px;
}
.proof-num { font-variant-numeric: tabular-nums; }
.proof-sub { color: var(--text-mid); font-size: 17px; margin-bottom: 22px; }
.proof-grid {
  border-top: 1px solid var(--border);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, 1fr);
  padding-top: 20px;
}
.proof-cell + .proof-cell { border-left: 1px solid var(--border); }
.proof-cell strong {
  color: var(--blue);
  display: block;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.1;
}
.proof-cell span {
  color: var(--text-light);
  display: block;
  font-size: 13px;
  line-height: 1.35;
  margin-top: 5px;
  padding: 0 6px;
}
.proof-note {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.5;
  margin-top: 16px;
  text-align: center;
}
@media (max-width: 520px) {
  .proof-grid { grid-template-columns: 1fr; }
  .proof-cell + .proof-cell { border-left: 0; border-top: 1px solid var(--border); padding-top: 14px; margin-top: 14px; }
}

/* --- Проверка: скриншот по клику --- */
.proof-open {
  align-items: center;
  background: none;
  border: 0;
  border-top: 1px solid var(--border);
  color: var(--blue);
  cursor: pointer;
  display: flex;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
  padding: 16px 10px 0;
  text-decoration: underline;
  text-underline-offset: 3px;
  width: 100%;
}
.proof-open:hover { color: var(--accent); }
.proof-open svg { flex: 0 0 18px; }

.proof-modal {
  align-items: center;
  background: rgba(20, 14, 10, 0.88);
  display: none;
  inset: 0;
  justify-content: center;
  padding: 20px;
  position: fixed;
  z-index: 999;
}
.proof-modal.is-open { display: flex; }
.proof-modal__inner {
  max-height: 92vh;
  max-width: 1000px;
  position: relative;
  width: 100%;
}
.proof-modal__inner img {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  display: block;
  height: auto;
  max-height: 84vh;
  object-fit: contain;
  width: 100%;
}
.proof-modal__cap {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  margin-top: 12px;
  text-align: center;
}
.proof-modal__close {
  background: #fff;
  border: 0;
  border-radius: 50%;
  color: var(--text);
  cursor: pointer;
  font-size: 26px;
  height: 44px;
  line-height: 1;
  position: absolute;
  right: -6px;
  top: -22px;
  width: 44px;
}
.proof-modal__close:hover { background: var(--accent); color: #fff; }
@media (max-width: 600px) {
  .proof-modal__close { right: 0; top: -52px; }
}
.proof-modal__full {
  color: #fff;
  display: inline-block;
  font-weight: 700;
  margin-top: 6px;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.proof-modal__full:hover { color: var(--accent); }
