/* --- HERO --- */
.page-header {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(to bottom, #000, var(--bg-dark));
}

.page-header h1 { font-size: 3rem; margin-bottom: 10px; color: white; }
.page-header span { color: var(--primary-yellow); }
.page-header p { color: #888; max-width: 600px; margin: 0 auto; }

/* --- SECTION ABONNEMENT --- */
.subscription-section {
    padding: 40px 5%;
    margin-bottom: 60px;
}

.sub-card {
    background: linear-gradient(45deg, #222, #1a1a1a);
    max-width: 900px;
    margin: 0 auto;
    border-radius: 12px;
    padding: 50px;
    text-align: center;
    border: 2px solid #333;
    position: relative;
    overflow: hidden;
}

.sub-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 5px;
    background: var(--primary-yellow);
}

.sub-title { font-size: 2rem; font-family: var(--font-title); margin-bottom: 20px; }

.sub-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin: 30px 0;
}

.feature { display: flex; align-items: center; gap: 10px; font-size: 1.1rem; }
.feature i { color: var(--primary-yellow); font-size: 1.2rem; }

/* --- SECTION COACHING (GRID) --- */
.coaching-section {
    padding: 0 5% 80px;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2rem;
    text-transform: uppercase;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid #333;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: 0.3s;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-yellow);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
}

.pack-name {
    font-size: 1.2rem;
    color: #888;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: bold;
}

.pack-price {
    font-size: 3rem;
    color: var(--text-white);
    font-family: var(--font-title);
    font-weight: bold;
    margin-bottom: 10px;
}

.pack-price small { font-size: 1rem; color: #666; font-weight: normal; }

.pack-desc {
    color: #aaa;
    margin-bottom: 30px;
    font-size: 0.9rem;
    min-height: 40px;
}

/* --- BOUTONS --- */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: var(--font-title);
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-yellow {
    background: var(--primary-yellow);
    color: black;
    border: 2px solid var(--primary-yellow);
    width: 100%;
}

.btn-yellow:hover { background: transparent; color: var(--primary-yellow); }

.btn-outline {
    background: transparent;
    color: var(--primary-yellow);
    border: 2px solid var(--primary-yellow);
}

.btn-outline:hover { background: var(--primary-yellow); color: black; }
