/* =====================================================
   SECTION 3 — Почему блокнот, Notion и заметки не дают результата?
   ===================================================== */

.s3 {
  background: #080c1c;
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}

.s3::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -60px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(220, 29, 36, .07) 0%, transparent 70%);
  pointer-events: none;
}

.s3__wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.s3__title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(26px, 3.2vw, 46px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -.03em;
  color: #ffffff;
  margin: 0;
  text-align: center;
  max-width: 800px;
  align-self: center;
}

/* ── COMPARISON GRID ──────────────────────────────── */
.s3__compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

/* shared panel base */
.s3__panel {
  border-radius: 16px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* LEFT — problem panel */
.s3__panel--bad {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .07);
}

.s3__panel-label {
  font-family: 'Inter', sans-serif;
  font-size: clamp(13px, 1.2vw, 15px);
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.s3__panel--bad .s3__panel-label {
  color: rgba(255, 255, 255, .35);
}

.s3__panel--good .s3__panel-label {
  color: rgba(220, 29, 36, .80);
}

/* lists */
.s3__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.s3__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 1.55;
}

.s3__panel--bad .s3__list li {
  color: rgba(255, 255, 255, .55);
}

.s3__panel--good .s3__list li {
  color: rgba(255, 255, 255, .80);
}

.s3__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.s3__icon--x {
  background: rgba(220, 29, 36, .12);
  border: 1px solid rgba(220, 29, 36, .30);
}

.s3__icon--x svg {
  width: 10px;
  height: 10px;
}

.s3__icon--check {
  background: rgba(34, 197, 94, .15);
  border: 1px solid rgba(34, 197, 94, .35);
}

.s3__icon--check svg {
  width: 11px;
  height: 11px;
}

/* verdict / conclusion */
.s3__verdict {
  margin-top: auto;
  padding: 16px 20px;
  background: rgba(220, 29, 36, .08);
  border: 1px solid rgba(220, 29, 36, .20);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: clamp(13px, 1.2vw, 15px);
  line-height: 1.55;
  color: rgba(255, 255, 255, .60);
}

/* RIGHT — solution panel */
.s3__panel--good {
  background: linear-gradient(135deg, rgba(220, 29, 36, .10) 0%, rgba(220, 29, 36, .04) 100%);
  border: 1px solid rgba(220, 29, 36, .25);
  position: relative;
  overflow: hidden;
}

.s3__panel--good::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(220, 29, 36, .15) 0%, transparent 70%);
  pointer-events: none;
}

.s3__panel-heading {
  font-family: 'Inter', sans-serif;
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: #ffffff;
  margin: 0;
}

.s3__panel-sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(14px, 1.3vw, 17px);
  line-height: 1.6;
  color: rgba(255, 255, 255, .60);
  margin: 0;
}

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

@media (max-width: 960px) {
  .s3 {
    padding: 60px 24px;
  }
  .s3__compare {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .s3__panel {
    padding: 28px 24px;
  }
}

@media (max-width: 640px) {
  .s3 {
    padding: 48px 16px;
  }
}

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