/* ════════════════════════════════════════════════
   Жизнь без боли — дизайн-система лендинга (2 части)
   Тёмная тема + золото. Шрифт Inter.
   ════════════════════════════════════════════════ */

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

:root {
  --bg:       #0a0a0a;
  --bg-2:     #111111;
  --bg-3:     #181818;
  --gold:     #d4a855;
  --gold-dim: #9a7535;
  --white:    #f0ece4;
  --muted:    #888880;
  --border:   #2a2a2a;
  --radius:   12px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ── UTILS ── */
.container { max-width: 860px; margin: 0 auto; padding: 0 20px; }
.container-wide { max-width: 1080px; margin: 0 auto; padding: 0 20px; }
.gold { color: var(--gold); }
.text-muted { color: var(--muted); }

section { padding: 80px 0; }
@media (max-width: 640px) { section { padding: 56px 0; } }

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

h2 {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.divider { height: 1px; background: var(--border); margin: 0; }

/* ── HERO ── */
#hero {
  padding: 100px 0 80px;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, #1f1500 0%, transparent 65%);
}
@media (max-width: 640px) { #hero { padding: 72px 0 60px; } }

.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

#hero h1 {
  font-size: clamp(32px, 6vw, 58px);
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 28px;
}
#hero h1 em { font-style: normal; color: var(--gold); }

.hero-sub {
  font-size: clamp(16px, 2.5vw, 20px);
  color: #c0bdb5;
  max-width: 620px;
  margin-bottom: 44px;
  line-height: 1.6;
}

/* ── BUTTONS ── */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: #000;
  font-size: 17px;
  font-weight: 700;
  padding: 18px 36px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform .18s, background .18s;
  border: none;
  cursor: pointer;
}
.cta-btn:hover { background: #e8bc67; transform: translateY(-2px); }
.cta-btn.big { font-size: 19px; padding: 22px 44px; }

.cta-note { margin-top: 14px; font-size: 13px; color: var(--muted); }

/* ── HERO PROOF ── */
.hero-proof {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 64px;
}
@media (max-width: 560px) { .hero-proof { grid-template-columns: 1fr; } }

.proof-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.proof-card blockquote { font-size: 14px; line-height: 1.7; color: #c8c4bc; margin-bottom: 16px; }
.proof-card .reviewer { display: flex; align-items: center; gap: 10px; }

.avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--gold-dim);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 15px; color: #000; flex-shrink: 0;
}
.reviewer-name { font-weight: 600; font-size: 14px; }
.reviewer-meta { font-size: 12px; color: var(--muted); }
.stars { color: var(--gold); font-size: 13px; margin-bottom: 10px; }

/* Имя + описание сверху карточки, перед текстом отзыва */
.proof-card .reviewer, .review-card .reviewer { margin-bottom: 14px; }
.review-card blockquote, .proof-card blockquote { margin-bottom: 0; }

/* ── PROBLEM ── */
#problem { background: var(--bg-2); }
.pain-list { list-style: none; display: grid; gap: 14px; margin-top: 32px; }
.pain-list li {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--bg-3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px 20px;
  font-size: 15px; line-height: 1.55;
}
.pain-list li::before { content: '✗'; color: #c0392b; font-size: 17px; flex-shrink: 0; margin-top: 1px; }

/* ── STORY (лонгрид) ── */
#story { background: var(--bg); }
.story-body { max-width: 720px; }
.story-body p { margin-bottom: 18px; font-size: 16.5px; line-height: 1.8; color: #c8c4bc; }
.story-body p strong { color: var(--white); }
.story-sub {
  font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold); margin: 40px 0 16px;
}
.story-punch {
  font-size: clamp(20px, 3.5vw, 28px); font-weight: 800; line-height: 1.35;
  color: var(--white); margin: 36px 0 20px;
}
.story-list { list-style: none; display: grid; gap: 10px; margin: 8px 0 20px; }
.story-list li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 16px; line-height: 1.6; color: #c8c4bc;
}
.story-list li::before { content: '—'; color: var(--gold); flex-shrink: 0; }
.story-img { display: block; width: 100%; max-width: 560px; margin: 28px auto; border-radius: var(--radius); border: 1px solid var(--border); }
.story-figure { margin: 28px auto; max-width: 560px; }
.story-figure img { display: block; width: 100%; border-radius: var(--radius); border: 1px solid var(--border); }
.story-figure figcaption { margin-top: 10px; font-size: 13px; color: var(--muted); text-align: center; font-style: italic; }

/* Мини-истории знакомых — цитатами */
.mini-cases { display: grid; gap: 16px; margin: 28px 0 4px; }
.mini-case {
  border-left: 3px solid var(--gold-dim); background: var(--bg-2);
  border-radius: 0 var(--radius) var(--radius) 0; padding: 16px 20px;
  font-size: 15.5px; line-height: 1.7; color: #c8c4bc;
}
.mini-case strong { color: var(--gold); }

/* ── INSIGHT ── */
#story { padding-bottom: 36px; }
#insight { padding-top: 36px; }
.insight-box {
  background: linear-gradient(135deg, #1a1100 0%, #110e00 100%);
  border: 1px solid var(--gold-dim);
  border-radius: 16px; padding: 44px 40px; text-align: center; margin-top: 16px;
}
@media (max-width: 640px) { .insight-box { padding: 32px 24px; } }
.insight-box .big { font-size: clamp(20px, 4vw, 32px); font-weight: 800; line-height: 1.3; margin-bottom: 20px; }
.insight-box p { font-size: 16px; color: #c0bdb5; max-width: 600px; margin: 0 auto; line-height: 1.7; }
.vs-row { display: flex; justify-content: center; gap: 24px; margin-top: 36px; }
@media (max-width: 560px) { .vs-row { flex-direction: column; align-items: center; } }
.vs-card { text-align: center; padding: 20px 28px; border-radius: 10px; min-width: 180px; }
.vs-card.bad { background: rgba(192,57,43,.12); border: 1px solid rgba(192,57,43,.3); }
.vs-card.good { background: rgba(212,168,85,.1); border: 1px solid rgba(212,168,85,.3); }
.vs-card .vs-title { font-weight: 700; font-size: 15px; margin-bottom: 6px; }
.vs-card.bad .vs-title { color: #e74c3c; }
.vs-card.good .vs-title { color: var(--gold); }
.vs-card p { font-size: 13px; color: var(--muted); }
.vs-arrow { font-size: 24px; display: flex; align-items: center; color: var(--muted); }

/* ── ABOUT ── */
#about { background: var(--bg-2); }
.about-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 48px; align-items: start; margin-top: 8px; }
@media (max-width: 640px) { .about-grid { grid-template-columns: 1fr; } }
.about-photo {
  background: var(--bg-3); border: 1px solid var(--border); border-radius: var(--radius);
  aspect-ratio: 3/4; display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 13px; text-align: center; padding: 20px;
  overflow: hidden;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-photo:has(img) { padding: 0; }
.about-text p { margin-bottom: 16px; font-size: 16px; line-height: 1.75; color: #c8c4bc; }
.about-text p:last-child { margin-bottom: 0; }
.about-text strong { color: var(--white); }

/* ── HOW / STEPS ── */
#how { background: radial-gradient(ellipse 80% 60% at 50% 50%, #120f00 0%, var(--bg) 70%); }
.steps { display: grid; gap: 20px; margin-top: 40px; }
.step { display: grid; grid-template-columns: 56px 1fr; gap: 24px; align-items: start; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(212,168,85,.12); border: 2px solid var(--gold-dim);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 900; color: var(--gold); flex-shrink: 0;
}
.step h3 { font-size: 19px; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 15px; color: #b0aca4; line-height: 1.7; margin-bottom: 6px; }
.step-result { color: var(--gold) !important; margin-top: 8px; }
.step-result strong { color: var(--gold); }
.how-result { margin-top: 44px; padding: 28px 32px; background: rgba(212,168,85,.08); border: 1px solid rgba(212,168,85,.25); border-radius: 12px; }
.how-result h3 { font-size: 18px; font-weight: 700; color: var(--gold); margin-bottom: 10px; }
.how-result p { font-size: 15px; color: #d0cbc3; line-height: 1.7; }
.compare-story { margin-top: 36px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,.08); }
.compare-story p { font-size: 16px; color: #c8c2ba; line-height: 1.75; margin-bottom: 14px; }
.compare-story p:last-child { margin-bottom: 0; color: var(--white); font-weight: 500; }

/* ── REVIEWS ── */
#reviews { background: var(--bg-2); }
.reviews-intro { font-size: 16px; color: var(--muted); margin-bottom: 40px; max-width: 560px; }
.reviews-trust { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
@media (max-width: 640px) { .reviews-trust { grid-template-columns: 1fr; } }
.reviews-mid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .reviews-mid { grid-template-columns: 1fr; } }
.review-card {
  background: var(--bg-3); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px; display: flex; flex-direction: column;
}
.review-card.featured { border-color: var(--gold-dim); background: linear-gradient(160deg, #150f00 0%, var(--bg-3) 100%); }
.review-card blockquote { font-size: 14px; line-height: 1.75; color: #c0bdb5; flex: 1; margin-bottom: 20px; }
.review-card blockquote.clamp { display: -webkit-box; -webkit-line-clamp: 7; -webkit-box-orient: vertical; overflow: hidden; }
.review-label {
  display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; background: rgba(212,168,85,.15); color: var(--gold);
  padding: 3px 9px; border-radius: 20px; margin-bottom: 12px;
}

/* ── BRIDGE CTA (part1 → part2) ── */
#bridge { text-align: center; background: radial-gradient(ellipse 70% 70% at 50% 50%, #1a1000 0%, var(--bg) 100%); }
#bridge h2 { max-width: 640px; margin: 0 auto 20px; }
.bridge-sub { font-size: 17px; color: var(--muted); max-width: 540px; margin: 0 auto 40px; line-height: 1.65; }

/* ── PRICING (3 столбца) ── */
#pricing {}
.pricing-intro { font-size: 16px; color: var(--muted); margin-bottom: 44px; max-width: 560px; }
.pricing-grid {
  display: grid; grid-template-columns: 1fr 1.1fr 1fr; gap: 20px; align-items: stretch;
}
@media (max-width: 880px) { .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }

.price-card {
  border-radius: 16px; padding: 36px 28px 32px; border: 1px solid var(--border);
  background: var(--bg-2); position: relative; display: flex; flex-direction: column;
}
.price-card.popular { border-color: var(--gold-dim); background: linear-gradient(160deg, #1a1100 0%, #0f0f0f 100%); box-shadow: 0 0 40px rgba(212,168,85,.08); }
@media (min-width: 881px) { .price-card.popular { transform: scale(1.03); } }

.popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #000; font-size: 11px; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase; padding: 5px 18px;
  border-radius: 20px; white-space: nowrap;
}
.price-name {
  font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 8px;
}
.price-title { font-size: 21px; font-weight: 800; margin-bottom: 8px; line-height: 1.25; }
.price-desc { font-size: 13.5px; color: var(--muted); margin-bottom: 24px; line-height: 1.6; min-height: 60px; }
.price-amount { font-size: 44px; font-weight: 900; color: var(--gold); margin-bottom: 4px; line-height: 1; text-align: center; }
.price-sub { font-size: 13px; color: var(--muted); margin-bottom: 26px; text-align: center; }
.price-features { list-style: none; display: grid; gap: 9px; margin-bottom: 30px; flex: 1; }
.price-features li { display: flex; align-items: flex-start; gap: 8px; line-height: 1.4; color: #c0bdb5; }
.price-features li::before { display: none; }
.li-num { color: var(--gold); font-weight: 700; font-size: 12px; flex-shrink: 0; min-width: 22px; margin-top: 2px; }
.li-body { flex: 1; }
.price-features li strong { display: block; font-weight: 700; color: var(--white); font-size: 13px; line-height: 1.35; }
.li-sub { display: block; font-size: 11.5px; color: var(--muted); line-height: 1.4; margin-top: 2px; }
.price-old-top { text-align: center; font-size: 15px; color: var(--muted); text-decoration: line-through; margin-bottom: 4px; opacity: 0.55; }
.price-old { text-align: center; font-size: 14px; color: var(--muted); text-decoration: line-through; margin-top: 10px; opacity: 0.55; }
.pricing-footnote { text-align: center; font-size: 14px; color: var(--muted); margin-top: 32px; max-width: 600px; margin-left: auto; margin-right: auto; line-height: 1.65; }
.inside-ending { margin-top: 44px; padding-top: 36px; border-top: 1px solid rgba(255,255,255,.08); }
.inside-ending p { font-size: 16px; color: #c8c2ba; line-height: 1.75; margin-bottom: 16px; }
.inside-ending p:last-child { margin-bottom: 0; }
.inside-quote { margin-top: 28px; padding: 22px 28px; border-left: 3px solid var(--gold-dim); font-size: 15px; color: #c0bdb5; line-height: 1.75; font-style: italic; }
.item-off { opacity: 0.4; }
.item-off .li-num, .item-off strong, .item-off .li-sub { color: #5a5550 !important; text-decoration: line-through; }
.features-divider { font-size: 10px !important; font-weight: 800 !important; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-dim) !important; padding-top: 14px !important; margin-top: 2px; border-top: 1px solid rgba(255,255,255,.1); line-height: 1 !important; }
.features-divider::before { display: none !important; }
.bonus-item { background: rgba(255,255,255,.09); border-radius: 6px; padding: 7px 10px 7px 8px !important; }
.bonus-item.item-off { background: rgba(255,255,255,.03); }

.price-cta {
  display: block; text-align: center; padding: 16px; border-radius: 50px;
  font-size: 16px; font-weight: 700; text-decoration: none;
  transition: transform .18s, opacity .18s; cursor: pointer; border: none; width: 100%;
}
.price-cta:hover { transform: translateY(-2px); opacity: .9; }
.price-cta.outline { border: 2px solid var(--gold-dim); color: var(--white); background: transparent; }
.price-cta.filled { background: var(--gold); color: #000; }

/* ── ЧТО ВНУТРИ ── */
#inside { background: var(--bg-2); }
.inside-grid { display: grid; gap: 12px; margin-top: 36px; }
.inside-item {
  display: grid; grid-template-columns: 44px 1fr; gap: 18px; align-items: center;
  background: var(--bg-3); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 18px 22px;
}
.inside-num {
  width: 44px; height: 44px; border-radius: 50%; background: rgba(212,168,85,.12);
  border: 1px solid var(--gold-dim); display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: var(--gold); font-size: 17px;
}
.inside-item h3 { font-size: 16px; font-weight: 700; margin-bottom: 3px; }
.inside-item p { font-size: 13.5px; color: var(--muted); line-height: 1.5; }
.inside-note { margin-top: 24px; font-size: 14px; color: var(--muted); font-style: italic; }

/* ── СРАВНЕНИЕ ЦЕН ── */
#compare {}
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; align-items: stretch; }
@media (max-width: 640px) { .compare-grid { grid-template-columns: 1fr; } }
.compare-col { border-radius: 16px; padding: 32px 28px; }
.compare-col.bad { background: rgba(192,57,43,.08); border: 1px solid rgba(192,57,43,.25); }
.compare-col.good { background: linear-gradient(160deg, #1a1100 0%, #0f0f0f 100%); border: 1px solid var(--gold-dim); }
.compare-col h3 { font-size: 18px; font-weight: 800; margin-bottom: 20px; }
.compare-col.bad h3 { color: #e74c3c; }
.compare-col.good h3 { color: var(--gold); }
.compare-list { list-style: none; display: grid; gap: 12px; }
.compare-list li { display: flex; justify-content: space-between; gap: 14px; font-size: 14.5px; color: #c0bdb5; border-bottom: 1px dashed var(--border); padding-bottom: 12px; }
.compare-list li span:last-child { font-weight: 700; color: var(--white); white-space: nowrap; }
.compare-total { margin-top: 20px; font-size: 16px; font-weight: 700; }
.compare-col.bad .compare-total { color: #e74c3c; }
.compare-col.good .compare-total { color: var(--gold); }

/* ── ГАРАНТИЯ ── */
#guarantee { background: var(--bg-2); }
.guarantee-box {
  background: linear-gradient(135deg, #1a1100 0%, #110e00 100%);
  border: 1px solid var(--gold-dim); border-radius: 16px;
  padding: 44px 40px; text-align: center; max-width: 720px; margin: 0 auto;
}
@media (max-width: 640px) { .guarantee-box { padding: 32px 24px; } }
.guarantee-shield { font-size: 48px; margin-bottom: 16px; }
.guarantee-box h2 { font-size: clamp(24px, 4vw, 34px); margin-bottom: 16px; }
.guarantee-box p { font-size: 16px; color: #c0bdb5; max-width: 540px; margin: 0 auto; line-height: 1.7; }

/* ── FAQ ── */
#faq { background: var(--bg); }
.faq-list { margin-top: 36px; display: grid; gap: 10px; }
.faq-item { background: var(--bg-3); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-q {
  width: 100%; background: none; border: none; color: var(--white); font-family: inherit;
  font-size: 15px; font-weight: 600; text-align: left; padding: 20px 24px; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 12px; line-height: 1.4;
  transition: color .15s;
}
.faq-q:hover { color: var(--gold); }
.faq-icon { font-size: 22px; flex-shrink: 0; color: var(--gold); transition: transform .25s; line-height: 1; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a-inner { padding: 0 24px 20px; font-size: 15px; color: #b0aca4; line-height: 1.75; }

/* ── FINAL CTA ── */
#final-cta { text-align: center; background: radial-gradient(ellipse 70% 70% at 50% 50%, #1a1000 0%, var(--bg) 100%); }
#final-cta h2 { max-width: 640px; margin: 0 auto 20px; }
.final-sub { font-size: 17px; color: var(--muted); max-width: 500px; margin: 0 auto 40px; line-height: 1.65; }
.cta-group { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.guarantee-line { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); }

/* ── FOOTER ── */
footer { background: var(--bg-2); border-top: 1px solid var(--border); padding: 32px 0; text-align: center; font-size: 13px; color: var(--muted); }
footer a { color: var(--muted); text-decoration: underline; }
