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

:root {
  --black:       #0a0a0a;
  --white:       #ffffff;
  --accent:      #ff5c00;
  --accent-dark: #e04e00;
  --section-alt: #f6efe8;
  --gray-50:     #f8f8f8;
  --gray-100:    #f2f2f2;
  --gray-200:    #e5e5e5;
  --gray-400:    #999;
  --gray-600:    #555;
  --gray-800:    #222;
  --green:       #16a34a;
  --red:         #ef4444;
  --radius:      12px;
  --max:         820px;
}

html {
  scroll-behavior: smooth;
  font-size: 1.125rem;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-block;
  padding: 16px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9412rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform .14s, background .14s, color .14s;
  text-align: center;
  line-height: 1.3;
}
.btn:active { transform: scale(.97); }
.btn-primary { background: var(--accent); color: var(--white); }
.btn-primary:hover { background: var(--accent-dark); }
.btn-full { width: 100%; display: block; }
.btn-lg { padding: 18px 36px; font-size: 1rem; }

/* ─── SECTION BASE ─── */
section { padding: 60px 0; border-top: 1px solid var(--gray-200); }
.section-label {
  font-size: 0.6471rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
h2 {
  font-size: clamp(26px, 5.5vw, 40px);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -.025em;
  margin-bottom: 14px;
  text-wrap: balance;
}
h3 {
  font-size: 1.0588rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 6px;
  text-wrap: balance;
}
p,
li,
.q-soft,
.q-bold,
.secret-final,
.session-result,
.footer-inner,
.price-rub {
  hanging-punctuation: first last;
}

p { line-height: 1.6; }

/* ─── 1. HERO ─── */
.hero {
  border-top: none;
  background: var(--section-alt);
  color: var(--black);
  padding: 72px 0 64px;
  text-align: center;
}
.hero-for {
  font-size: 0.8824rem;
  color: var(--gray-600);
  margin-bottom: 28px;
  line-height: 1.55;
}
.hero h1 {
  font-size: clamp(30px, 7vw, 50px);
  font-weight: 900;
  line-height: 1.14;
  letter-spacing: -.03em;
  margin-bottom: 12px;
  color: var(--black);
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero-sub {
  font-size: 0.9412rem;
  color: var(--gray-600);
  margin-bottom: 36px;
}
.hero-program {
  font-size: 0.8824rem;
  color: rgba(255,255,255,.4);
  margin-top: 16px;
}
.hero-meta {
  font-size: 0.8824rem;
  color: var(--gray-600);
  margin-bottom: 28px;
  font-weight: 600;
}

/* ─── 2. КТО ПРОВЕДЁТ ─── */
.guide-grid {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}
.guide-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: var(--gray-50);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
}
.guide-role {
  flex-shrink: 0;
  font-size: 0.6471rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent);
  min-width: 90px;
  padding-top: 2px;
}
.guide-item p { font-size: 0.8824rem; color: var(--gray-800); line-height: 1.5; }

/* ─── 3. УЗНАЁТЕ СЕБЯ ─── */
.pain-list {
  list-style: none;
  display: grid;
  gap: 14px;
  margin: 24px 0 32px;
}
.pain-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9412rem;
  line-height: 1.55;
}
.pain-list li::before {
  content: "✗";
  flex-shrink: 0;
  color: var(--red);
  font-weight: 800;
  font-size: 0.9412rem;
  margin-top: 2px;
}
.pain-close {
  font-size: 0.9412rem;
  line-height: 1.6;
  color: var(--gray-600);
  margin-bottom: 28px;
}
.pain-cta {
  display: table;
  margin: 0 auto;
}

/* ─── 4. ЗАДАЙТЕ СЕБЕ ВОПРОС ─── */
.questions-section { background: var(--white); }
.q-list { margin-top: 28px; }
.q-item {
  padding: 22px 0;
  border-bottom: 1px solid var(--gray-200);
}
.q-item:last-child { border-bottom: none; }
.q-bold {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 4px;
}
.q-soft {
  font-size: 0.8824rem;
  color: var(--gray-600);
  line-height: 1.55;
}

/* ─── 5. ЧТО ЗНАЮТ ОНИ ─── */
.secrets-list {
  list-style: none;
  display: grid;
  gap: 20px;
  margin-top: 28px;
}
.secret-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.secret-num {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  background: var(--black);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7059rem;
  font-weight: 800;
  margin-top: 2px;
}
.secret-item strong { display: block; font-size: 0.8824rem; font-weight: 700; margin-bottom: 3px; }
.secret-item p { font-size: 0.8824rem; color: var(--gray-600); line-height: 1.5; }
.secret-final {
  margin-top: 24px;
  padding: 20px;
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 0.9412rem;
  line-height: 1.55;
}
.secret-final strong { color: var(--accent); }

/* ─── 6. СИСТЕМА ─── */
.system-section { background: var(--white); }
.section-alt { background: var(--section-alt); }
.section-white { background: var(--white); }
.system-intro {
  font-size: 1.0588rem;
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 28px;
  color: var(--black);
}
.system-note {
  font-size: 0.8824rem;
  color: var(--gray-600);
  margin-bottom: 20px;
  line-height: 1.6;
}
.no-need-label {
  font-size: 0.7647rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gray-400);
  margin-bottom: 12px;
}
.no-need-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}
.no-need-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.8824rem;
  color: var(--gray-600);
}
.no-need-list li::before {
  content: "—";
  flex-shrink: 0;
  color: var(--gray-400);
}
.works-label {
  font-size: 0.7647rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gray-400);
  margin-bottom: 12px;
}
.works-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-bottom: 32px;
}
.works-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.8824rem;
}
.works-list li::before {
  content: "✓";
  flex-shrink: 0;
  color: var(--green);
  font-weight: 800;
}
.bold-points {
  display: grid;
  gap: 8px;
}
.bold-point {
  font-size: 0.9412rem;
  font-weight: 800;
  line-height: 1.3;
}

/* ─── 7. КОМУ ПОДОЙДЁТ ─── */
.audience-list {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-top: 24px;
}
.audience-list li {
  padding: 18px 20px;
  background: var(--gray-50);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  font-size: 0.8824rem;
  line-height: 1.55;
  color: var(--gray-800);
}

/* ─── 8. КАК ОКУПИТСЯ ─── */
.roi-grid {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}
.roi-item {
  padding: 22px 20px;
  background: var(--gray-50);
  border-radius: var(--radius);
  border-left: 4px solid var(--accent);
}
.roi-item h3 { font-size: 0.9412rem; margin-bottom: 6px; }
.roi-item p { font-size: 0.8824rem; color: var(--gray-600); line-height: 1.55; }

/* ─── 9. ЧТО ВЫ ПОЛУЧИТЕ (ПРОГРАММА) ─── */
.curriculum-section { background: var(--section-alt); }
.curriculum { margin-top: 24px; }
.session-block {
  padding: 28px 0;
  border-bottom: 1px solid var(--gray-200);
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
}
.session-block:last-child { border-bottom: none; }
.session-n {
  width: 44px;
  height: 44px;
  background: var(--black);
  color: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9412rem;
  font-weight: 900;
  flex-shrink: 0;
}
.session-block h3 { font-size: 1rem; margin-bottom: 6px; }
.session-block p { font-size: 0.8824rem; color: var(--gray-600); line-height: 1.55; }
.session-result {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 0.7647rem;
  font-weight: 600;
  color: var(--green);
  background: rgba(22,163,74,.09);
  padding: 5px 12px;
  border-radius: 100px;
}
.session-result::before { content: "✓"; }

/* ─── 10. ПОЧЕМУ ПОЛУЧИТСЯ ─── */
.why-list {
  list-style: none;
  display: grid;
  gap: 18px;
  margin-top: 24px;
}
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.9412rem;
  line-height: 1.55;
}
.why-item .marker {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8235rem;
  font-weight: 800;
  margin-top: 1px;
}

/* ─── 11. ЧТО В ИТОГЕ ─── */
.outcome-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 24px;
}
.outcome-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  background: var(--gray-50);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  font-size: 0.8824rem;
  line-height: 1.45;
}
.outcome-list li::before {
  content: "✓";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7059rem;
  font-weight: 800;
}

/* ─── 12. ЧТО БУДЕТ, ЕСЛИ НЕ МЕНЯТЬ ─── */
.negative-section { background: var(--white); }
.negative-section h2 { color: var(--black); }
.negative-section .section-label { color: #ef4444; }
.negative-list {
  list-style: none;
  display: grid;
  gap: 16px;
  margin-top: 24px;
}
.negative-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9412rem;
  color: var(--black);
  line-height: 1.55;
}
.negative-list strong {
  color: var(--black) !important;
}
.negative-list li::before {
  content: "✗";
  flex-shrink: 0;
  color: var(--red);
  font-weight: 800;
  font-size: 0.9412rem;
  margin-top: 2px;
}

/* ─── 13. КТО ВЕДЁТ ─── */
.bio-section { background: var(--section-alt); border-top: 1px solid var(--gray-200); }
.bio-section h2 { color: var(--black); font-size: 1.5294rem; }
.bio-heading {
  color: var(--black);
  font-size: 1.5294rem;
  margin-bottom: 20px;
}
.bio-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7647rem;
  margin-bottom: 20px;
  overflow: hidden;
}
.bio-photo img { width: 100%; height: 100%; object-fit: cover; }
.bio-name {
  margin-bottom: 16px;
}
.bio-name img {
  display: block;
  width: min(100%, 420px);
  height: auto;
}
.bio-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 16px;
}
.bio-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.8824rem;
  color: var(--gray-800);
  line-height: 1.5;
}
.bio-list li::before {
  content: "→";
  flex-shrink: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ─── 14. ПАКЕТЫ ─── */
.pricing-grid {
  display: grid;
  gap: 20px;
  margin-top: 32px;
}
#pricing .container {
  max-width: 1120px;
}
.pricing-card {
  border: 2px solid var(--gray-200);
  border-radius: 16px;
  padding: 32px 24px;
  position: relative;
}
.pricing-card.featured {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}
.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-size: 0.6471rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-card h3 { font-size: 1.2941rem; font-weight: 900; margin-bottom: 0; }
.pricing-card.featured h3 { color: var(--white); }
.price-wrap { margin: 18px 0 24px; }
.price-main {
  font-size: 2.7059rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--black);
}
.pricing-card.featured .price-main { color: var(--white); }
.price-curr { font-size: 1.4118rem; font-weight: 700; vertical-align: super; }
.price-rub { font-size: 0.8235rem; color: var(--gray-400); margin-top: 4px; }
.pricing-card.featured .price-rub { color: rgba(255,255,255,.35); }
.feat-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}
.feat-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.8824rem;
  line-height: 1.5;
}
.feat-list li .ck { flex-shrink: 0; color: var(--green); font-weight: 800; }
.pricing-card.featured .feat-list li { color: rgba(255,255,255,.8); }
.feat-list li .hi { font-weight: 600; color: var(--accent); }
.pricing-cta-note {
  text-align: center;
  font-size: 0.7647rem;
  color: var(--gray-400);
  margin-top: 16px;
}

/* ─── FOOTER ─── */
footer {
  background: var(--section-alt);
  border-top: 1px solid var(--gray-200);
  padding: 28px 0;
}
.metrika-noscript {
  position: absolute;
  left: -9999px;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7647rem;
  color: var(--gray-600);
}
.footer-inner a { color: var(--gray-600); text-decoration: none; }
.footer-inner a:hover { color: var(--black); }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }

@media (min-width: 900px) {
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }
}
@media (max-width: 640px) {
  html { font-size: 1.1875rem; }
  section { padding: 48px 0; }
  .hero { padding: 56px 0 48px; }
  .session-block { grid-template-columns: 38px 1fr; gap: 12px; }
  .session-n { width: 38px; height: 38px; font-size: 0.8235rem; }
  .price-main { font-size: 2.3529rem; }
}
