/* =========================================
   STYLE PAGE PRO (Dynamique)
========================================= */

/* --- HERO --- */
.pro-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../img/server-room.jpg');
    /* Trouve une image de salle serveur sombre pour 'server-room.jpg' */
    background-size: cover;
    background-position: center;
    padding: 100px 20px;
    /* Increased padding */
    text-align: center;
    color: var(--white);
}

.pro-hero h1 {
    font-size: 4rem;
    /* Increased from 3rem */
    margin-bottom: 25px;
    font-weight: 800;
    /* Bolder */
}

.text-red {
    color: #E62020;
}

/* --- MAINTENANCE INTRO --- */
.intro-text p {
    font-size: 1.3rem;
    /* Increased from 1.1rem */
    line-height: 1.8;
    color: #333;
    /* Slightly darker for better contrast */
}

.intro-text .section-title {
    font-size: 2.5rem;
    /* Explicitly bigger title */
    margin-bottom: 1.5rem;
}

.levels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    /* Slightly wider cards */
    gap: 30px;
    margin-top: 50px;
}

.level-card {
    background: #fff;
    padding: 40px;
    /* Increased padding */
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    border-bottom: 3px solid transparent;
    transition: 0.3s;
    height: 100%;
}

.level-card:hover {
    transform: translateY(-10px);
    border-bottom-color: #E62020;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.level-icon {
    font-size: 3rem;
    color: #E62020;
    margin-bottom: 20px;
}

.level-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: #222;
}

.border-left-red {
    border-left: 5px solid #E62020;
}

/* --- PRICING CARDS --- */
.bg-gray {
    background-color: #f8f9fa;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.price-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card-img-wrapper {
    height: 180px;
    width: 100%;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.card-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.price-card:hover .card-img-top {
    transform: scale(1.1);
    /* Zoom effect on hover */
}

.red-theme {
    background: linear-gradient(135deg, #E62020, #a00000);
}

.blue-theme {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.gray-theme {
    background: linear-gradient(135deg, #95a5a6, #7f8c8d);
}

.dark-theme {
    background: linear-gradient(135deg, #34495e, #2c3e50);
}

.price-card h3 {
    text-align: center;
    padding: 15px;
    background: #f9f9f9;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    border-bottom: 1px solid #eee;
    color: #333;
}

.card-body {
    padding: 20px;
    flex: 1;
    font-size: 0.9rem;
    color: #555;
    display: flex;
    flex-direction: column;
}

.card-intro {
    margin-bottom: 15px;
    line-height: 1.4;
    color: #333;
}

.check-list-sm {
    list-style: none;
    padding: 0;
    margin-top: auto;
}

.check-list-sm li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    line-height: 1.3;
}

.check-list-sm li::before {
    content: '-';
    position: absolute;
    left: 0;
    font-weight: bold;
    color: #E62020;
}

.price-tag {
    text-align: center;
    padding: 15px;
    background: #fff;
    border-top: 1px solid #eee;
    color: #777;
    font-size: 0.9rem;
}

.price-tag .price-val {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: #E62020;
    margin-top: 5px;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* --- WHY US --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.feat-item i {
    font-size: 2.5rem;
    color: #E62020;
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 900px) {
    .display-content {
        flex-direction: column;
    }

    .dynamic-img {
        height: 250px;
        margin-top: 30px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}