/* ====== БАЗОВАЯ СЕТКА ====== */
.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.grid {
  display: grid;
  gap: 24px;
}
.grid.cols-2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.grid.cols-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* ====== HERO ====== */
.hero {
  background: #0f172a; /* тёмный фон */
  color: #fff;
  padding: 5rem 0;
}
.hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.hero .lead {
  font-size: 1.2rem;
  color: #cbd5e1;
  max-width: 60ch;
  margin-bottom: 2rem;
}
.hero .cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero .btn {
  padding: 12px 22px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  background: #3b82f6;
  color: #fff;
  transition: background .2s;
}
.hero .btn:hover {
  background: #2563eb;
}
.hero .btn.alt {
  background: rgba(255,255,255,.1);
}
.hero .glow {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(59,130,246,.15), transparent 70%);
  pointer-events: none;
}

/* ====== CHIP / TAGS ====== */
.chip {
  display: inline-block;
  font-size: 14px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  margin-bottom: 14px;
}
.band {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tag {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  font-size: 14px;
}

/* ====== СЕКЦИИ ====== */
.section-h {
  margin: 60px 0 20px;
}
.section-h h2 {
  font-size: 2rem;
  font-weight: 700;
}
.section-h .muted {
  font-size: 15px;
  color: #94a3b8;
  margin-left: 12px;
}

/* ====== КАРТОЧКИ ====== */
.card {
  border-radius: 16px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
}
.card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
}
.card p, .card ul, .card li {
  max-width: none; /* чтобы текст не был узким */
}
.card .icon {
  font-size: 32px;
  margin-bottom: 10px;
}
.card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.card ul li {
  margin-bottom: 6px;
  font-size: 15px;
}

/* ====== PRICE-КАРТОЧКИ ====== */
.card.price {
  transition: transform .2s ease, box-shadow .2s ease;
}
.card.price:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0,0,0,.3);
}
.card.price h3 {
  font-size: 20px;
  margin: 0 0 12px;
  font-weight: 700;
}
.card.price b {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
}

/* ====== STEPS ====== */
.steps {
  display: grid;
  gap: 20px;
  margin-top: 20px;
}
.step {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 14px;
  align-items: start;
}
.step > div:first-child {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #3b82f6;
  margin-top: 6px;
}
.step h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
}
.step p {
  margin: 4px 0 0;
  font-size: 14px;
  color: #94a3b8;
}

/* ====== FAQ ====== */
.faq details {
  padding: 14px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  background: rgba(255,255,255,.03);
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
}
.faq .muted {
  font-size: 14px;
  margin-top: 8px;
  color: #94a3b8;
}

/* ====== CTA BLOCK ====== */
.cta-block {
  margin: 50px 0;
  padding: 24px;
  border-radius: 16px;
  background: rgba(59,130,246,.08);
  text-align: center;
}
.cta-block b {
  display: block;
  margin-bottom: 14px;
}

/* ====== FOOT CTA ====== */
.foot-cta {
  margin: 60px 0;
  padding: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

/* ====== KPI (в HERO) ====== */
.svc .kpi {
  margin-top: 32px;
}
.svc .kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.svc .kpi-card {
  border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
  text-align: center;
}
.svc .kpi-title {
  font-size: 13px;
  opacity: .7;
  letter-spacing: .02em;
}
.svc .kpi-value {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.2;
  margin-top: 8px;
}
.svc .kpi-note {
  font-size: 12px;
  margin-top: 4px;
  opacity: .85;
}

/* ====== HELPERS ====== */
.muted { color: #94a3b8; }
.btn { cursor: pointer; }
