/* ============ soft-pro tokens ============ */
: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;
  --bg-gradient:   linear-gradient(180deg, #fff 0%, #fbf7f2 100%);
  --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%; }

/* ============ навигация ============ */
.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); }

/* ============ баннер срочности ============ */
.urgency-banner {
  background: var(--accent); color: #fff;
  text-align: center; font-weight: 600;
  font-size: 16px; padding: 12px 20px;
}
.urgency-banner strong { font-weight: 700; }

/* ============ кнопки ============ */
.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;
  transition: background 0.25s, transform 0.2s;
  border: none;
  cursor: pointer;
}
.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); }
.section-gradient { background: var(--bg-gradient); }
.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; margin-bottom: 24px;
}
.section-title em { font-style: normal; color: var(--accent); }

/* ============ hero ============ */
.hero {
  background: #fff;
  padding: 52px 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: 80px;
  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; color: var(--text);
  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-meta { display: flex; flex-wrap: wrap; gap: 12px 28px; margin-bottom: 32px; }
.hero-meta-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 600; color: var(--dark);
}
.hero-cta { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.hero-calc-link {
  font-size: 15px; font-weight: 600;
  color: var(--dark); text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.2s;
}
.hero-calc-link:hover { color: var(--accent); }
.hero-photo img {
  width: 100%; border-radius: 16px; display: block;
  box-shadow: 0 24px 60px rgba(39,23,15,0.14);
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-photo { max-width: 340px; margin: 0 auto; }
}

/* ============ intro / боли ============ */
.intro-lead {
  font-size: clamp(20px, 2.6vw, 26px);
  line-height: 1.6; color: var(--text);
  font-weight: 500;
  margin-bottom: 24px;
}
.intro-text p { font-size: 18px; color: var(--text-mid); margin-bottom: 18px; }

/* ============ карточки ============ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px; margin-top: 40px;
}
.card {
  padding: 36px 32px;
  border: 1.5px solid var(--border);
  background: #fff;
  position: relative; overflow: hidden;
  transition: transform 0.32s, box-shadow 0.32s, border-color 0.32s;
}
.card::before {
  content: ''; position: absolute;
  top: 0; left: 0; width: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), #e4b3a2);
  transition: width 0.36s;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(39,23,15,0.09);
  border-color: var(--accent);
}
.card:hover::before { width: 100%; }
.card-icon { font-size: 30px; margin-bottom: 14px; line-height: 1; }
.card h3 { font-size: 19px; margin-bottom: 10px; color: var(--text); }
.card p { font-size: 16px; line-height: 1.7; color: var(--text-mid); }

.card-accent {
  background: #fff;
  border: 2px solid var(--dark);
  border-left: 6px solid var(--dark);
  padding: 28px 30px;
  border-radius: 6px;
}
.card-warm {
  background: #fff;
  border: 2px solid var(--accent);
  border-left: 6px solid var(--accent);
  padding: 28px 30px;
  border-radius: 6px;
}

/* ============ списки ============ */
.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);
}

/* ============ представьте (сцена) ============ */
.scene-card {
  background: #fff;
  border: 1.5px solid var(--border-warm);
  border-radius: 24px;
  padding: 44px 40px;
  margin-top: 36px;
  box-shadow: 0 18px 42px rgba(56,34,21,0.06);
}
.scene-card p { font-size: 18px; line-height: 1.8; color: var(--text-mid); margin-bottom: 16px; }
.scene-card p:last-child { margin-bottom: 0; }
.scene-card strong { color: var(--text); }

/* ============ программа ============ */
.program-day {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 40px 36px;
  margin-top: 28px;
}
.program-day-tag {
  display: inline-block;
  background: var(--dark); color: #fff;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 999px;
  margin-bottom: 16px;
}
.program-day h3 { font-size: clamp(20px, 2.6vw, 26px); color: var(--text); margin-bottom: 20px; }
.program-items { list-style: none; counter-reset: pi; }
.program-items li {
  position: relative;
  padding: 20px 0 20px 56px;
  border-top: 1px solid var(--border);
  font-size: 16px; line-height: 1.6; color: var(--text-mid);
}
.program-items li:first-child { border-top: none; padding-top: 4px; }
.program-items li:first-child::before { top: 2px; }
.program-items li:last-child { padding-bottom: 0; }
.program-items li::before {
  counter-increment: pi;
  content: counter(pi, decimal-leading-zero);
  position: absolute; left: 0; top: 18px;
  width: 36px; height: 36px; border-radius: 50%;
  background: #f6e7e0; color: var(--accent);
  font-size: 13px; font-weight: 700; letter-spacing: 0.04em;
  display: flex; align-items: center; justify-content: center;
}
.program-items strong {
  display: block; color: var(--text);
  font-size: 18px; font-weight: 700; line-height: 1.35;
  margin-bottom: 5px;
}

/* ============ что получите ============ */
.result-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 36px; }
.result-list li {
  display: flex; align-items: flex-start; gap: 14px;
  background: #fff; border: 1.5px solid var(--border);
  border-radius: 10px; padding: 20px 22px;
  font-size: 16px; line-height: 1.6; color: var(--text-mid);
}
.result-icon { font-size: 24px; line-height: 1.2; }
@media (max-width: 700px) { .result-list { grid-template-columns: 1fr; } }

/* ============ таймер ============ */
.timer-box { text-align: center; margin-top: 36px; }
.timer-label { font-size: 15px; font-weight: 600; color: var(--text-mid); margin-bottom: 14px; letter-spacing: 0.04em; }
.timer {
  display: inline-flex; gap: 14px;
}
.timer-cell {
  background: var(--dark); color: #fff;
  border-radius: 10px; padding: 14px 0;
  width: 84px; text-align: center;
}
.timer-cell b { display: block; font-size: 34px; font-weight: 700; line-height: 1.1; }
.timer-cell span { font-size: 12px; opacity: 0.7; text-transform: uppercase; letter-spacing: 0.08em; }
@media (max-width: 700px) {
  .timer { gap: 8px; }
  .timer-cell { width: 68px; }
  .timer-cell b { font-size: 26px; }
}

/* ============ отзывы ============ */
.rev-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px; margin-top: 40px;
}
.rev-card {
  padding: 16px;
  border: 1px solid var(--border-warm);
  border-radius: 24px;
  background: linear-gradient(135deg, #fffdfb 0%, #f7f0e8 100%);
  box-shadow: 0 18px 42px rgba(56,34,21,0.06);
  transition: border-color 0.25s, box-shadow 0.25s;
  cursor: pointer;
}
.rev-card:hover { border-color: #dec7ba; box-shadow: 0 22px 48px rgba(56,34,21,0.09); }
.rev-card img { display: block; width: 100%; border-radius: 14px; }

/* лайтбокс */
.lightbox {
  display: none;
  position: fixed; inset: 0; z-index: 300;
  background: rgba(20,12,8,0.85);
  align-items: center; justify-content: center;
  padding: 32px;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 92vw; max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute; top: 20px; right: 28px;
  font-size: 40px; color: #fff; cursor: pointer;
  line-height: 1; user-select: none;
}

/* ============ автор ============ */
.author-grid {
  display: grid; grid-template-columns: 320px 1fr;
  gap: 56px; align-items: start; margin-top: 40px;
}
.author-photo img {
  width: 100%; border-radius: 16px; display: block;
  box-shadow: 0 18px 48px rgba(39,23,15,0.14);
}
.author-text p { font-size: 17px; line-height: 1.75; color: var(--text-mid); margin-bottom: 16px; }
.author-text strong { color: var(--text); }
.author-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 14px; margin-top: 28px;
}
.author-stat {
  background: var(--bg-warmer); border-radius: 12px;
  padding: 18px 14px; text-align: center;
}
.author-stat b { display: block; font-size: 24px; font-weight: 700; color: var(--accent); }
.author-stat span { font-size: 14px; color: var(--text-mid); }
@media (max-width: 860px) {
  .author-grid { grid-template-columns: 1fr; gap: 32px; }
  .author-photo { max-width: 320px; }
}

/* ============ тарифы ============ */
.pr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; align-items: start; margin-top: 44px;
}
.pr-card {
  display: flex; flex-direction: column;
  border: 1.5px solid var(--border-warm);
  background: #fff; position: relative;
  transition: box-shadow 0.3s, transform 0.3s;
}
.pr-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.08); transform: translateY(-4px); }
.pr-card-featured { border: 2px solid var(--accent); margin-top: -16px; }
.pr-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff;
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; white-space: nowrap;
  padding: 5px 18px; border-radius: 999px;
}
.pr-card-head { padding: 36px 32px 24px; border-bottom: 1px solid var(--border); }
.pr-card-name { font-size: 22px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.pr-card-sub { font-size: 14px; color: var(--text-light); line-height: 1.5; }
.pr-card-body { padding: 24px 32px 32px; display: flex; flex-direction: column; flex: 1; }
.pr-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pr-features li {
  font-size: 15px; line-height: 1.55; color: var(--text-mid);
  padding-left: 22px; position: relative;
}
.pr-features li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--accent); font-weight: 700;
}
.pr-price-block { margin-top: auto; }
.pr-price-old {
  font-size: 18px; color: var(--text-light);
  text-decoration: line-through; margin-bottom: 2px;
}
.pr-price { font-size: 44px; font-weight: 700; color: var(--accent); line-height: 1.1; margin-bottom: 4px; }
.pr-price-note { font-size: 13px; color: var(--text-light); margin-bottom: 20px; }
.pr-btn {
  display: block; text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 16px 20px; text-decoration: none;
  transition: background 0.25s, color 0.25s, transform 0.2s;
}
.pr-btn-outline { border: 2px solid var(--dark); color: var(--dark); background: transparent; }
.pr-btn-outline:hover { background: var(--dark); color: #fff; transform: translateY(-2px); }
.pr-btn-solid { background: var(--dark); color: #fff; border: 2px solid var(--dark); }
.pr-btn-solid:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-2px); }
@media (max-width: 860px) {
  .pr-grid { grid-template-columns: 1fr; }
  .pr-card-featured { margin-top: 0; }
}

/* ============ FAQ ============ */
.faq-list { margin-top: 36px; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: 10px; overflow: hidden;
}
.faq-q {
  width: 100%; text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-size: 17px; font-weight: 600; color: var(--text);
  background: none; border: none; cursor: pointer;
  padding: 20px 52px 20px 24px;
  position: relative;
}
.faq-q::after {
  content: '+';
  position: absolute; right: 22px; top: 50%;
  transform: translateY(-50%);
  font-size: 26px; font-weight: 400; color: var(--accent);
  transition: transform 0.25s;
}
.faq-item.open .faq-q::after { transform: translateY(-50%) rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-a-inner { padding: 0 24px 22px; font-size: 16px; line-height: 1.75; color: var(--text-mid); }

/* ============ финальный призыв ============ */
.final-cta { text-align: center; }
.final-cta .section-title { margin-bottom: 16px; }
.final-cta p { font-size: 18px; color: var(--text-mid); max-width: 640px; margin: 0 auto 32px; }

/* ============ футер ============ */
.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; }

/* ============ анимация при скролле ============ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============ мобильная адаптация ============ */
@media (max-width: 700px) {
  body { font-size: 16px; }
  .section { padding: 48px 16px; }
  .section-title { margin-bottom: 18px; }

  /* навигация: горизонтальная прокрутка без скроллбара */
  .sticky-nav { padding: 0 16px; }
  .sticky-nav-inner {
    gap: 20px; overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .sticky-nav-inner::-webkit-scrollbar { display: none; }
  .sticky-nav a { flex-shrink: 0; white-space: nowrap; font-size: 14px; }

  .urgency-banner { font-size: 14px; padding: 10px 16px; }

  /* hero */
  .hero { padding: 40px 16px 48px; }
  .hero-tag { margin-bottom: 20px; }
  .hero-desc { font-size: 16px; margin-bottom: 22px; }
  .hero-meta { flex-direction: column; gap: 10px; margin-bottom: 26px; }
  .hero-meta-item { font-size: 15px; }
  .hero .btn-accent { display: block; text-align: center; }
  .hero-cta { flex-direction: column; align-items: stretch; gap: 14px; }
  .hero-calc-link { text-align: center; }

  /* тексты и карточки */
  .intro-text p { font-size: 16px; }
  .card { padding: 26px 20px; }
  .card p { font-size: 15px; }
  .scene-card { padding: 28px 20px; border-radius: 16px; }
  .scene-card p { font-size: 16px; }
  .card-warm, .card-accent { padding: 22px 18px; }
  .card-warm p { font-size: 16px !important; }

  /* программа */
  .program-day { padding: 26px 20px; }
  .program-items li { font-size: 15px; padding-left: 46px; }
  .program-items li::before { width: 30px; height: 30px; font-size: 12px; top: 20px; }
  .program-items strong { font-size: 16px; }

  .result-list li { font-size: 15px; padding: 16px 16px; }

  /* тарифы */
  .pr-card-head { padding: 26px 20px 18px; }
  .pr-card-body { padding: 20px 20px 26px; }
  .pr-price { font-size: 38px; }

  /* автор */
  .author-stats { grid-template-columns: 1fr; gap: 10px; }
  .author-stat { display: flex; align-items: baseline; justify-content: center; gap: 10px; padding: 14px; }

  /* FAQ */
  .faq-q { font-size: 15px; padding: 16px 44px 16px 16px; }
  .faq-q::after { right: 16px; }
  .faq-a-inner { padding: 0 16px 18px; font-size: 15px; }

  .final-cta p { font-size: 16px; }
  .lightbox { padding: 16px; }
  .lightbox img { max-width: 100%; }
}

@media (max-width: 400px) {
  .timer { gap: 6px; }
  .timer-cell { width: 60px; padding: 10px 0; }
  .timer-cell b { font-size: 22px; }
  .timer-cell span { font-size: 10px; }
  .btn, .btn-accent { padding: 16px 24px; }
}

/* ============ калькулятор недополученных денег ============ */
.calc-card {
  background: #fff;
  border: 1.5px solid var(--border-warm);
  border-radius: 24px;
  padding: 40px 40px 44px;
  margin-top: 36px;
  box-shadow: 0 18px 42px rgba(56,34,21,0.06);
}
.calc-progress {
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 18px;
}
.calc-step { display: none; }
.calc-step.active { display: block; animation: calcFade 0.35s ease; }
@keyframes calcFade {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.calc-q {
  font-size: clamp(20px, 2.8vw, 26px);
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 24px;
}
.calc-options { display: flex; flex-direction: column; gap: 12px; }
.calc-opt {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px; font-weight: 600;
  text-align: left; color: var(--text);
  background: var(--bg-warm);
  border: 2px solid var(--border-warm);
  border-radius: 12px;
  padding: 18px 22px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.calc-opt:hover { border-color: var(--accent); background: #fff; transform: translateY(-2px); }
.calc-opt.chosen { border-color: var(--accent); background: #fff; color: var(--accent); }
.calc-chain {
  font-size: 15px; line-height: 1.7; color: var(--text-mid);
  background: var(--bg-warm);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 24px;
}
.calc-chain b { color: var(--text); }
.calc-big {
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 700; color: var(--accent);
  line-height: 1.15;
  margin-bottom: 16px;
}
.calc-verdict { font-size: 17px; line-height: 1.7; color: var(--text-mid); margin-bottom: 14px; }
.calc-verdict b { color: var(--text); }
.calc-actions {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 18px; margin-top: 26px;
}
.calc-restart {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px; font-weight: 600;
  color: var(--text-light);
  background: none; border: none; cursor: pointer;
  text-decoration: underline; text-underline-offset: 3px;
}
.calc-restart:hover { color: var(--accent); }
.calc-note {
  font-size: 13px; line-height: 1.6; color: var(--text-light);
  margin-top: 22px;
}
@media (max-width: 700px) {
  .calc-card { padding: 26px 20px 30px; border-radius: 16px; }
  .calc-opt { font-size: 15px; padding: 16px 18px; }
  .calc-chain { font-size: 14px; padding: 14px 16px; }
  .calc-actions .btn-accent { display: block; text-align: center; flex: 1 1 100%; }
}

.pr-features a {
  color: var(--accent); text-decoration: underline;
  text-underline-offset: 2px; text-decoration-thickness: 1px;
}
.pr-features a:hover { text-decoration-thickness: 2px; }

/* ============ скриншоты инструмента ============ */
.tool-shots { margin-top: 48px; }
.tool-shots-title {
  font-size: clamp(20px, 2.4vw, 24px); color: var(--text);
  margin-bottom: 10px;
}
.tool-shots-lead { font-size: 16px; color: var(--text-mid); margin-bottom: 24px; }
.tool-shots-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.tool-shot {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: 12px; overflow: hidden; cursor: zoom-in;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.tool-shot:hover {
  border-color: var(--border-warm);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.07);
}
.tool-shot img {
  display: block; width: 100%; height: auto;
  border-bottom: 1px solid var(--border);
}
.tool-shot figcaption {
  padding: 16px 18px; font-size: 14px;
  line-height: 1.55; color: var(--text-mid);
}
@media (max-width: 700px) {
  .tool-shots-grid { grid-template-columns: 1fr; }
}

.tool-shots-wide { grid-template-columns: 1fr; }
.tool-shots-wide .tool-shot figcaption { font-size: 15px; padding: 18px 22px; }

/* ============ приглашение пройти калькулятор ============ */
.calc-card { position: relative; }

.calc-card.inviting {
  animation: calc-breathe 2s ease-in-out infinite;
  border-width: 2px;
}
@keyframes calc-breathe {
  0%, 100% {
    box-shadow: 0 18px 42px rgba(56,34,21,0.08),
                0 0 0 0 rgba(201,107,74,0.55);
    border-color: var(--accent);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 22px 50px rgba(56,34,21,0.14),
                0 0 0 18px rgba(201,107,74,0);
    border-color: var(--accent-hover);
    transform: scale(1.012);
  }
}

/* подсказка «нажмите» над первым вопросом */
.calc-hint {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--accent); color: #fff;
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  padding: 10px 20px; border-radius: 999px;
  margin-bottom: 20px;
  box-shadow: 0 6px 18px rgba(201,107,74,0.35);
  opacity: 0; transform: translateY(8px) scale(.94);
  transition: opacity .45s ease, transform .45s ease;
}
.calc-card.inviting .calc-hint {
  opacity: 1; transform: none;
  animation: calc-hint-pulse 2s ease-in-out infinite;
}
@keyframes calc-hint-pulse {
  0%, 100% { transform: scale(1);    box-shadow: 0 6px 18px rgba(201,107,74,0.35); }
  50%      { transform: scale(1.05); box-shadow: 0 10px 26px rgba(201,107,74,0.55); }
}
.calc-hint::after {
  content: '↓'; font-size: 17px; font-weight: 700;
  animation: calc-nudge 1.1s ease-in-out infinite;
}
@keyframes calc-nudge {
  0%, 100% { transform: translateY(-2px); }
  50%      { transform: translateY(5px); }
}

/* пульсация первой группы вариантов */
.calc-card.inviting .calc-step[data-step="1"] .calc-opt {
  animation: calc-opt-glow 2s ease-in-out infinite;
}
.calc-card.inviting .calc-step[data-step="1"] .calc-opt:nth-child(2) { animation-delay: .15s; }
.calc-card.inviting .calc-step[data-step="1"] .calc-opt:nth-child(3) { animation-delay: .30s; }
.calc-card.inviting .calc-step[data-step="1"] .calc-opt:nth-child(4) { animation-delay: .45s; }
@keyframes calc-opt-glow {
  0%, 100% {
    border-color: var(--border-warm); background: #fff;
    box-shadow: none;
  }
  50% {
    border-color: var(--accent); background: #fbeee8;
    box-shadow: 0 4px 14px rgba(201,107,74,0.22);
  }
}

@media (prefers-reduced-motion: reduce) {
  .calc-card.inviting,
  .calc-card.inviting .calc-hint,
  .calc-card.inviting .calc-step[data-step="1"] .calc-opt,
  .calc-hint::after { animation: none; }
  .calc-card.inviting { border-color: var(--accent); }
  .calc-card.inviting .calc-hint { opacity: 1; transform: none; }
}
