/* ============================================
   COURSE PACKS SECTION
   Packs de cours en ligne Vimeo
   ============================================ */

.course-packs-section {
    padding: 3rem 0;
}

.course-packs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.course-pack-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid #E5E3DF;
}

.course-pack-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: #7C9885;
}

.course-pack-card.recommended-pack {
    border: 2px solid #7C9885;
    box-shadow: 0 6px 30px rgba(124, 152, 133, 0.2);
}

.pack-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
}

.pack-header h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: #2C3E2F;
    margin-bottom: 1rem;
}

.pack-price {
    margin: 1rem 0;
}

.pack-price .amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #7C9885;
    font-family: 'Montserrat', sans-serif;
}

.pack-subtitle {
    color: #62665B;
    font-size: 0.95rem;
}

.pack-video-preview {
    padding: 0 2rem;
    margin-bottom: 1.5rem;
}

.pack-video-preview iframe {
    width: 100%;
    border-radius: 8px;
}

.pack-includes {
    padding: 0 2rem 1.5rem;
}

.pack-includes h5 {
    font-weight: 600;
    color: #2C3E2F;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.pack-includes ul {
    list-style: none;
    padding: 0;
}

.pack-includes li {
    padding: 0.5rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: #5A6C68;
    line-height: 1.6;
}

.pack-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #7C9885;
    font-weight: bold;
    font-size: 1.1rem;
}

.pack-benefits {
    padding: 1rem 2rem;
    background: rgba(124, 152, 133, 0.05);
    border-top: 1px solid #E5E3DF;
    border-bottom: 1px solid #E5E3DF;
}

.pack-benefits p {
    margin: 0;
    color: #2C3E2F;
    font-size: 0.95rem;
}

.course-pack-card .btn-full {
    margin: 1.5rem 2rem 2rem;
    width: calc(100% - 4rem);
    padding: 1rem;
}

/* Online Benefits Grid */
.online-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    text-align: center;
}

.online-benefit h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #2C3E2F;
}

.online-benefit p {
    color: #62665B;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
    .course-packs-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .online-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .online-benefits-grid {
        grid-template-columns: 1fr;
    }

    .pack-header h4 {
        font-size: 1.5rem;
    }

    .pack-price .amount {
        font-size: 2rem;
    }
}
