
/* §2 — pain / "why most websites fail" cards (red diagnostic) */
.rsg-page .pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 0 0 34px; }
.rsg-page .pain-card { position: relative; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 24px 24px 22px; box-shadow: var(--shadow-md); display: flex; flex-direction: column; transition: transform .25s, box-shadow .25s, border-color .25s; }
.rsg-page .pain-card::after { content: ""; position: absolute; top: -40px; right: -40px; width: 130px; height: 130px; background: radial-gradient(circle, rgba(200,32,43,0.06) 0%, transparent 70%); pointer-events: none; }
.rsg-page .pain-card:hover { transform: translateY(-3px); border-color: rgba(200,32,43,0.28); box-shadow: 0 16px 36px rgba(0,0,0,0.08); }
.rsg-page .pain-ic { position: relative; z-index: 1; width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(135deg, #E2434E, var(--red)); color: #fff; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; box-shadow: 0 8px 18px rgba(200,32,43,0.26); }
.rsg-page .pain-ic svg { width: 21px; height: 21px; }
.rsg-page .pain-card h3, .rsg-page .pain-card h4 { position: relative; z-index: 1; font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--ink-900); margin: 0 0 7px; line-height: 1.3; }
.rsg-page .pain-card p { position: relative; z-index: 1; font-size: 13px; line-height: 1.58; color: var(--ink-2); margin: 0 0 16px; }
.rsg-page .pain-foot { margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line-2); display: flex; align-items: center; gap: 13px; }
.rsg-page .pain-foot svg { display: block; flex-shrink: 0; }
.rsg-page .pf-label { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.07em; text-transform: uppercase; font-weight: 700; color: var(--red); line-height: 1.4; }
.rsg-page .pf-label.green { color: var(--green-700); }
@media (max-width: 900px) { .rsg-page .pain-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .rsg-page .pain-grid { grid-template-columns: 1fr; } }
