:root {
  --accent:        #c96b4a;
  --accent-soft:   #b9816f;
  --accent-hover:  #b95f40;
  --dark:          #2c4a6e;
  --text:          #1a1a1a;
  --text-mid:      #555;
  --text-light:    #888;
  --bg:            #fff;
  --bg-warm:       #faf7f4;
  --bg-warmer:     #f9f1ec;
  --border:        #ede8e3;
  --border-warm:   #e7d7cf;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

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

h1, h2, h3 { font-weight: 700; letter-spacing: -0.01em; }
img { max-width: 100%; display: block; }

/* навигация */
.sticky-nav {
  position: sticky; top: 0; z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 0 20px;
}
.sticky-nav-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; gap: 32px; height: 56px; align-items: center;
}
.sticky-nav a {
  color: var(--text-mid); text-decoration: none;
  font-size: 15px; font-weight: 600; opacity: 0.7;
  transition: opacity 0.2s, color 0.2s;
}
.sticky-nav a:hover { opacity: 1; color: var(--accent); }

/* кнопки */
.btn {
  display: inline-block;
  background: #1a1a1a; color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px; font-weight: 600; letter-spacing: 0.03em;
  padding: 18px 36px; border-radius: 4px;
  text-decoration: none; border: none; cursor: pointer;
  transition: background 0.25s, transform 0.2s;
}
.btn:hover { background: var(--accent); transform: translateY(-2px); }
.btn-accent {
  background: var(--accent); color: #fff;
  border-radius: 999px; padding: 18px 34px;
  font-size: 15px; font-weight: 700; letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 14px 32px rgba(201,107,74,0.24);
}
.btn-accent:hover { background: var(--accent-hover); transform: translateY(-2px); }

/* секции */
.section { padding: 80px 20px; }
.section-white   { background: #fff; }
.section-warm    { background: var(--bg-warm); }
.section-warmer  { background: var(--bg-warmer); }
.container        { max-width: 1100px; margin: 0 auto; }
.container-narrow { max-width: 820px; margin: 0 auto; }

.section-label {
  display: inline-block;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent-soft); margin-bottom: 16px;
}
.section-title {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 700; color: var(--text); line-height: 1.2;
}
.section-title em { font-style: normal; color: var(--accent); }
.divider { width: 64px; height: 3px; background: var(--accent); border-radius: 2px; margin: 20px 0 32px; }

.lead { font-size: 18px; line-height: 1.8; color: var(--text-mid); margin-bottom: 20px; }

/* герой */
.hero { background: #fff; padding: 64px 20px; position: relative; overflow: hidden; }
.hero::before {
  content: ''; position: absolute;
  top: -120px; right: -120px; width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, #f5ede4 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 420px;
  gap: 64px; align-items: center;
  position: relative; z-index: 1;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 28px;
}
.hero-tag::before { content: ''; display: block; width: 32px; height: 1px; background: var(--accent); }
.hero-title {
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 700; line-height: 1.15; margin-bottom: 16px;
}
.hero-title em { font-style: normal; color: var(--accent); }
.hero-desc { font-size: 18px; color: #666; line-height: 1.7; margin-bottom: 28px; }
.hero-right img { border-radius: 12px; box-shadow: 0 18px 44px rgba(56,34,21,0.12); }

/* цитата-карточка */
.card-warm {
  background: #fff;
  border: 2px solid var(--accent);
  border-left: 6px solid var(--accent);
  padding: 28px 30px; border-radius: 6px;
  margin: 32px 0;
}
.card-warm p { font-size: 17px; line-height: 1.75; color: var(--text-mid); }
.card-warm p + p { margin-top: 14px; }
.card-warm strong { color: var(--text); }

/* шаги программы */
.steps { display: flex; flex-direction: column; gap: 16px; }
.step {
  display: flex; gap: 22px; align-items: flex-start;
  background: #fff; border: 1.5px solid var(--border);
  border-radius: 8px; padding: 26px 28px;
  transition: transform 0.28s, box-shadow 0.28s, border-color 0.28s;
}
.step:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(39,23,15,0.08); border-color: var(--accent); }
.step-num {
  font-size: 15px; font-weight: 700; color: var(--accent);
  letter-spacing: 0.06em; padding-top: 4px; min-width: 32px;
}
.step h3 { font-size: 20px; margin-bottom: 8px; color: var(--text); }
.step p { font-size: 17px; line-height: 1.7; color: var(--text-mid); }
.step-accent { border: 2px solid var(--accent); background: #fffdfb; }

/* списки */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.check-list li {
  font-size: 17px; line-height: 1.7; color: var(--text-mid);
  padding-left: 22px; position: relative;
}
.check-list li::before {
  content: ''; position: absolute; left: 0; top: 11px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
}

/* цена */
.price-card {
  border: 2px solid var(--accent);
  border-radius: 16px; background: #fff;
  padding: 40px; text-align: center;
  box-shadow: 0 18px 44px rgba(201,107,74,0.12);
}
.price-card-head { margin-bottom: 24px; }
.price-name { font-size: 22px; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.price-row { display: flex; align-items: baseline; justify-content: center; gap: 16px; }
.price-old { font-size: 22px; color: var(--text-light); text-decoration: line-through; }
.price-now { font-size: 48px; font-weight: 700; color: var(--accent); line-height: 1; }
.price-features { max-width: 320px; margin: 0 auto 28px; text-align: left; }
.price-note { font-size: 14px; color: var(--text-light); margin-top: 18px; }

/* вопросы */
.faq { display: flex; flex-direction: column; gap: 18px; }
.faq-item { background: #fff; border: 1.5px solid var(--border); border-radius: 8px; padding: 24px 28px; }
.faq-item h3 { font-size: 18px; margin-bottom: 8px; color: var(--dark); }
.faq-item p { font-size: 17px; line-height: 1.7; color: var(--text-mid); }

/* футер */
.footer { background: #1a3d52; color: rgba(255,255,255,0.5); padding: 48px 20px 32px; font-size: 14px; line-height: 1.7; }
.footer a { color: var(--accent); text-decoration: none; }
.footer a:hover { text-decoration: underline; }
.footer-inner { max-width: 860px; margin: 0 auto; text-align: center; }
.footer-top { display: flex; flex-direction: column; align-items: center; gap: 16px; margin-bottom: 24px; }
.footer-logo { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.8; }
.footer-logo span { color: var(--accent); font-weight: 700; }
.footer-logo a { display: block; }
.footer-social { display: flex; gap: 16px; justify-content: center; }
.footer-social a {
  display: inline-block; padding: 6px 14px;
  border: 1px solid rgba(255,255,255,0.2); border-radius: 20px;
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.7);
}
.footer-social a:hover { border-color: var(--accent); color: var(--accent); text-decoration: none; }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin-bottom: 24px; }
.footer-bottom { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 20px; margin-bottom: 16px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.5); }
.footer-links a:hover { color: var(--accent); }
.footer-legal { font-size: 12px; color: rgba(255,255,255,0.3); line-height: 1.6; }
.footer-disclaimer { font-size: 12px; color: rgba(255,255,255,0.25); max-width: 480px; line-height: 1.6; }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { order: -1; }
}
@media (max-width: 700px) {
  body { font-size: 17px; }
  .section { padding: 56px 20px; }
  .sticky-nav-inner { gap: 20px; overflow-x: auto; }
  .price-card { padding: 28px 22px; }
  .price-now { font-size: 40px; }
  .step { padding: 22px; gap: 16px; }
}
