.plan-notes-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.plan-note-card {
    position: relative;
    overflow: hidden;
    padding: 22px;
    border-radius: 8px;
    border-color: rgba(139, 92, 246, 0.18);
}

.plan-note-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(180deg, #8b5cf6, #06b6d4);
}

.plan-note-card.primary {
    background:
        linear-gradient(145deg, rgba(139, 92, 246, 0.12), rgba(6, 182, 212, 0.05)),
        rgba(22, 30, 49, 0.72);
}

.plan-note-kicker {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 5px 9px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 900;
}

.plan-note-card h3 {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 12px;
    font-size: 18px;
}

.plan-note-card p,
.plan-note-card li {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.65;
}

.plan-note-card ul {
    display: grid;
    gap: 8px;
    padding-left: 18px;
}

.plan-note-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.plan-note-facts span {
    padding: 7px 10px;
    border-radius: 8px;
    background: rgba(6, 182, 212, 0.12);
    color: #67e8f9;
    font-size: 12px;
    font-weight: 900;
}

@media (max-width: 720px) {
    .plan-notes-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .plan-note-card {
        padding: 18px;
    }
}
