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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #f5f5f7;
  color: #1d1d1f;
  font-size: 16px;
  line-height: 1.6;
}

/* ─── Hero ─── */
.hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #2d1b69 50%, #7c3aed 100%);
  color: white;
  padding: 56px 24px 48px;
  text-align: center;
}

.hero-logo {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 12px;
}

.hero p {
  color: #c4b5fd;
  font-size: 18px;
  max-width: 520px;
  margin: 0 auto;
}

/* ─── Nav ─── */
nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 14px 16px;
  background: white;
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
  flex-wrap: wrap;
  position: sticky;
  top: 0;
  z-index: 10;
}

nav a {
  color: #1a1a2e;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

nav a:hover { color: #7c3aed; }

/* ─── Container ─── */
.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 24px;
}

/* ─── Card ─── */
.card {
  background: white;
  border-radius: 14px;
  padding: 28px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}

.card h2 {
  font-size: 20px;
  margin-bottom: 14px;
  color: #1a1a2e;
}

.card ul { padding-left: 20px; }
.card li { margin-bottom: 6px; }

/* ─── Steps ─── */
.steps { display: flex; flex-direction: column; gap: 16px; }

.step { display: flex; gap: 16px; align-items: flex-start; }

.step .num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #7c3aed;
  color: white;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

/* ─── CTA ─── */
.cta-block { text-align: center; padding: 8px 0; }

.cta {
  display: inline-block;
  background: #7c3aed;
  color: white;
  text-decoration: none;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 17px;
  transition: background .2s;
}

.cta:hover { background: #6d28d9; }

/* ─── Pricing ─── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 16px 0;
}

.price-card {
  background: #f9f5ff;
  border: 2px solid #e9d5ff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}

.price-card.popular {
  border-color: #7c3aed;
  position: relative;
}

.price-card.popular::before {
  content: "Выгоднее";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #7c3aed;
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 6px;
}

.price-amount {
  font-size: 32px;
  font-weight: 800;
  color: #7c3aed;
}

.price-period {
  font-size: 14px;
  color: #888;
}

/* ─── Report mockup ─── */
.report-mockup {
  background: #1a1a2e;
  color: #e2e8f0;
  border-radius: 12px;
  padding: 20px 24px;
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 13px;
  line-height: 1.5;
  overflow-x: auto;
  margin: 16px 0;
}

.report-mockup .title { color: #c4b5fd; font-weight: 700; }
.report-mockup .green { color: #4ade80; }
.report-mockup .dim { color: #64748b; }
.report-mockup .bold { color: white; font-weight: 700; }

/* ─── Features ─── */
.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}

.feature {
  background: #f9f5ff;
  border-radius: 10px;
  padding: 16px;
}

.feature-icon {
  font-size: 24px;
  margin-bottom: 6px;
}

.feature h3 {
  font-size: 15px;
  margin-bottom: 4px;
  color: #1a1a2e;
}

.feature p {
  font-size: 13px;
  color: #666;
}

/* ─── Footer ─── */
.footer {
  text-align: center;
  padding: 24px;
  color: #aaa;
  font-size: 13px;
}

/* ─── Misc ─── */
.note { font-size: 14px; color: #888; }
.discount { background: #f0fdf4; border-radius: 8px; padding: 12px 16px; margin-top: 12px; }
.discount strong { color: #16a34a; }
code { background: #f1f5f9; padding: 2px 6px; border-radius: 4px; font-size: 14px; }

/* ─── Mobile ─── */
@media (max-width: 600px) {
  .hero h1 { font-size: 28px; }
  .hero p { font-size: 16px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr; }
  .card { padding: 20px; }
  nav { gap: 16px; }
}
