/* css/spetspredlozheniya.css */

/* ─── HERO ─── */
.spo-hero { padding: 40px 0 0; }

.spo-hero__card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 52px 56px;
}

.spo-hero__title {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 12px;
}

.spo-hero__sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 680px;
}

/* ─── ОФЕРЫ ─── */
.spo-offers { padding: 16px 0 40px; }

.spo-offer {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 260px;
  margin-bottom: 40px;
}

.spo-offer:last-child { margin-bottom: 0; }

.spo-offer__body { padding: 52px 56px; }

.spo-offer__title {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 12px;
}

.spo-offer__sub {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 580px;
}

/* ─── СПИСОК ─── */
.spo-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.spo-list li {
  position: relative;
  padding: 10px 0 10px 26px;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.4;
  border-bottom: 1px solid var(--border);
}

.spo-list li:last-child { border-bottom: none; padding-bottom: 0; }

.spo-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
  font-size: 15px;
}

.spo-offer__note {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 28px;
}

.spo-offer__btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ─── ВИЗУАЛЬНАЯ КОЛОНКА ─── */
.spo-offer__visual {
  background: #fff5f5;
  border-left: 2px dashed var(--red);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 32px;
  text-align: center;
}

.spo-offer__price {
  font-size: 80px;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  letter-spacing: -2px;
}

.spo-offer__cond {
  font-size: 14px;
  color: var(--muted);
  margin-top: 12px;
  line-height: 1.5;
}

/* ─── АДАПТИВ ─── */
@media (max-width: 900px) {
  .spo-hero__card { padding: 36px 32px; }
  .spo-offer { grid-template-columns: 1fr; }
  .spo-offer__visual { display: none; }
  .spo-offer__body { padding: 36px 32px; }
}

@media (max-width: 560px) {
  .spo-hero__card { padding: 28px 24px; }
  .spo-offer__body { padding: 28px 24px; }
  .spo-offer__btns .btn { width: 100%; text-align: center; }
}
