.pro-section {
    background: linear-gradient(180deg, #f7fbff, #eef4ff);
}
.pro-card {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 2rem;
    padding: 2.5rem;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.12), rgba(34, 211, 238, 0.08), #ffffff);
    border: 1px solid rgba(14, 165, 233, 0.12);
    box-shadow: 0 28px 80px rgb(15 23 42 / 0.12);
    position: relative;
    overflow: hidden;
}
.pro-card::after {
    content: '';
    position: absolute;
    inset: 12px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    pointer-events: none;
}
.pro-section-content h2 {
    margin: 0 0 0.6rem;
}
.pro-section-content .lead {
    margin: 0 0 1.25rem;
}
.pro-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}
.pro-point {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(14, 165, 233, 0.12);
    box-shadow: 0 18px 40px rgb(15 23 42 / 0.06);
}
.pro-point-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(135deg, #0ea5e9, #22d3ee);
    color: #fff;
    font-size: 1.1rem;
    box-shadow: 0 15px 35px rgb(14 165 233 / 0.35);
}
.pro-point-title {
    margin: 0;
    font-weight: 700;
}
.pro-point-text {
    margin: 0.3rem 0 0;
    color: var(--text-muted);
    font-weight: 500;
}
.pro-section-cta {
    display: grid;
    place-items: center;
}
.pro-cta-card {
    background: linear-gradient(180deg, #0ea5e9, #2563eb);
    color: #fff;
    padding: 1.75rem;
    border-radius: 18px;
    box-shadow: 0 30px 70px rgb(37 99 235 / 0.35);
    display: grid;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
}
.pro-cta-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.18), transparent 45%);
    pointer-events: none;
}
.pro-cta-title {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 800;
}
.pro-cta-text {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 600;
}
.pro-cta-card .primary-button {
    background: #fff;
    color: #0f172a;
    border-color: transparent;
    box-shadow: 0 16px 40px rgb(255 255 255 / 0.22);
}
.pro-cta-card .primary-button:hover {
    background: #f8fafc;
}
.pro-cta-note {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .pro-card {
        grid-template-columns: 1fr;
        padding: 2rem;
    }
}
