/* =====================================================
   SECTION 6 — Что произойдёт через 30 дней использования?
   ===================================================== */

.s6 {
  background: #0d1220;
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}

.s6::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(220, 29, 36, .07) 0%, transparent 65%);
  pointer-events: none;
}

.s6__wrap {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 52px;
}

/* ── HEADER ──────────────────────────────────────── */
.s6__header {
  display: flex;
  align-items: center;
  gap: 28px;
}

.s6__badge {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: rgba(220, 29, 36, .12);
  border: 2px solid rgba(220, 29, 36, .30);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.s6__badge-num {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: #DC1D24;
  line-height: 1;
  letter-spacing: -.02em;
}

.s6__badge-unit {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, .45);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.s6__title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(24px, 3vw, 44px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -.03em;
  color: #ffffff;
  margin: 0;
}

/* ── RESULTS GRID ─────────────────────────────────── */
.s6__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.s6__item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 24px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 14px;
  position: relative;
  transition: border-color .2s ease, background .2s ease;
}

.s6__item:hover {
  background: rgba(255, 255, 255, .05);
  border-color: rgba(220, 29, 36, .22);
}

.s6__item-num {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: rgba(220, 29, 36, .60);
  letter-spacing: .10em;
  text-transform: uppercase;
}

.s6__item-check {
  width: 32px;
  height: 32px;
  background: rgba(220, 29, 36, .12);
  border: 1px solid rgba(220, 29, 36, .28);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.s6__item-check svg {
  width: 14px;
  height: 14px;
}

.s6__item-text {
  font-family: 'Inter', sans-serif;
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 1.5;
  color: rgba(255, 255, 255, .78);
  margin: 0;
}

/* span the last item if 5 total (3+2) on last row */
.s6__grid .s6__item:last-child {
  grid-column: span 1;
}

/* ── RESPONSIVE ─────────────────────────────────────── */

@media (max-width: 960px) {
  .s6 {
    padding: 60px 24px;
  }
  .s6__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .s6__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .s6 {
    padding: 48px 16px;
  }
  .s6__grid {
    grid-template-columns: 1fr;
  }
}

/* hide original Tilda block */
#rec1972804191 {
  display: none !important;
}
