/* ─────────────────────────────────────────────
   maintenance-support.css
   BNSPIRE Technologies – Maintenance & Support Page
   ───────────────────────────────────────────── */

/* Banner */


.ms-highlight {
    color: #0d9488;
}

/* Plan cards */
.ms-plan-card {
    padding: 28px;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ms-plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}

.ms-plan-card--featured {
    background: linear-gradient(135deg, #0d9488, #0f766e) !important;
    color: #fff !important;
    box-shadow: 0 12px 40px rgba(13, 148, 136, 0.35);
}

.ms-plan-card--featured h5 {
    color: #fff;
}

.ms-plan-popular {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #fbbf24;
    color: #1e293b;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.ms-plan-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    flex: 1;
}

.ms-plan-features li {
    padding: 7px 0;
    font-size: 0.88rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.ms-plan-card--featured .ms-plan-features li {
    border-bottom-color: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.9);
}

.ms-plan-card--featured .ms-plan-features li i {
    color: #6ee7b7;
}

/* Included section */
.ms-included-section {
    background: #f0fdfa;
}

.ms-covered-icon {
    width: 44px;
    height: 44px;
    background: #ccfbf1;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #0d9488;
}

/* SLA Cards */
.ms-sla-card {
    padding: 24px;
}

.ms-sla-icon {
    font-size: 1.6rem;
    color: #0d9488;
    display: block;
    margin-bottom: 8px;
}

.ms-sla-value {
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.1;
    margin-bottom: 4px;
}

/* CTA */
.ms-cta-section {
    background: linear-gradient(135deg, #ccfbf1 0%, #f0fdfa 100%);
    border-top: 1px solid #99f6e4;
}