/* ============================================================
   landing.css — стили лендинга «Конструктор НД»
   Поверх ui.css (использует те же --bg/--surface/--accent...).
   Подключать ТОЛЬКО на лендинге, после ui.css.
   ============================================================ */

/* ─── ОБЩЕЕ ─── */
.l-wrap { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.l-section { padding: 88px 0; }
.l-section-sm { padding: 56px 0; }

.l-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px;
}
.l-h2 { font-size: 34px; font-weight: 900; line-height: 1.15; margin-bottom: 14px; }
.l-lead { font-size: 16px; color: var(--muted); line-height: 1.7; max-width: 620px; }
.l-center { text-align: center; margin-left: auto; margin-right: auto; }

/* ─── ФОН HERO: радиальное свечение акцентом ─── */
.l-hero {
  position: relative; overflow: hidden;
  padding: 96px 0 80px;
}
.l-hero::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(60% 50% at 50% 0%, var(--accent-dim) 0%, transparent 70%),
    radial-gradient(40% 40% at 85% 20%, var(--accent-dim) 0%, transparent 60%);
  pointer-events: none;
}
.l-hero > .l-wrap { position: relative; z-index: 1; }

.l-hero-title {
  font-size: 54px; font-weight: 900; line-height: 1.05;
  letter-spacing: -0.02em; margin-bottom: 20px;
}
.l-hero-title .accent { color: var(--accent); }
.l-hero-sub { font-size: 18px; color: var(--muted); line-height: 1.6; max-width: 560px; margin-bottom: 32px; }

.l-cta-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.btn-lg { padding: 14px 30px; font-size: 16px; border-radius: 12px; }

.l-hero-note {
  margin-top: 18px; font-size: 13px; color: var(--muted);
  display: flex; align-items: center; gap: 7px;
}
.l-hero-note .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

/* ─── МОКАП ОКНА (превью генератора) ─── */
.l-mockup {
  margin-top: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px -40px rgba(0,0,0,0.6);
}
.l-mockup-bar {
  display: flex; align-items: center; gap: 7px;
  padding: 12px 16px; border-bottom: 1px solid var(--border);
}
.l-mockup-dot { width: 11px; height: 11px; border-radius: 50%; background: var(--border); }
.l-mockup-body { padding: 28px; display: grid; grid-template-columns: 1fr 1.4fr; gap: 24px; }
.l-mockup-doc {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 10px; padding: 22px; min-height: 280px;
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--muted); line-height: 1.9;
}
.l-skel { height: 9px; border-radius: 4px; background: var(--border); margin-bottom: 10px; }

/* ─── СЕТКА ФИЧ ─── */
.l-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.l-feature {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; padding: 26px;
}
.l-feature:hover { border-color: var(--accent); }
.l-feature-ic {
  width: 44px; height: 44px; border-radius: 11px;
  background: var(--accent-dim); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.l-feature-ic svg { width: 22px; height: 22px; }
.l-feature-title { font-size: 17px; font-weight: 700; margin-bottom: 7px; }
.l-feature-text { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ─── ШАГИ ─── */
.l-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: step; }
.l-step { position: relative; padding-top: 8px; }
.l-step-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px; font-weight: 700; color: var(--accent);
  width: 34px; height: 34px; border-radius: 10px;
  border: 1px solid var(--accent); background: var(--accent-dim);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.l-step-title { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.l-step-text { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ─── ПРАЙСИНГ ─── */
.l-pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.l-price {
  display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 18px; padding: 30px 26px;
}
.l-price.featured { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent); position: relative; }
.l-price-tag {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff;
  font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 99px;
}
.l-price-name { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.l-price-desc { font-size: 13px; color: var(--muted); margin-bottom: 18px; min-height: 36px; }
.l-price-amount { font-size: 38px; font-weight: 900; line-height: 1; }
.l-price-amount .per { font-size: 14px; font-weight: 500; color: var(--muted); }
.l-price-list { list-style: none; margin: 22px 0; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.l-price-list li { display: flex; align-items: flex-start; gap: 9px; font-size: 14px; line-height: 1.45; }
.l-price-list svg { width: 17px; height: 17px; flex-shrink: 0; margin-top: 1px; color: var(--accent); }
.l-price-list li.off { color: var(--muted); }
.l-price-list li.off svg { color: var(--muted); }

/* ─── FAQ ─── */
.l-faq { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.l-faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 20px 24px; }
.l-faq-q { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.l-faq-a { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ─── ФИНАЛЬНЫЙ CTA ─── */
.l-cta-band {
  text-align: center;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 24px; padding: 56px 32px;
  position: relative; overflow: hidden;
}
.l-cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(50% 90% at 50% 0%, var(--accent-dim) 0%, transparent 70%);
  pointer-events: none;
}
.l-cta-band > * { position: relative; }

/* ─── ФУТЕР ─── */
.l-footer { border-top: 1px solid var(--border); padding: 40px 0; }
.l-footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.l-footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.l-footer-links a { font-size: 13px; color: var(--muted); text-decoration: none; }
.l-footer-links a:hover { color: var(--accent); }
.l-footer-copy { font-size: 13px; color: var(--muted); }

/* ─── АДАПТИВ ─── */
@media (max-width: 900px) {
  .l-features, .l-steps, .l-pricing { grid-template-columns: 1fr; }
  .l-mockup-body { grid-template-columns: 1fr; }
  .l-hero-title { font-size: 40px; }
  .l-section { padding: 64px 0; }
}
@media (max-width: 600px) {
  .l-hero-title { font-size: 32px; }
  .l-h2 { font-size: 26px; }
}
