/* =========================================
   HERO SECTION (COACHING)
   ========================================= */
.hero { display: flex; align-items: center; padding: 20px 5% 60px; max-width: 1300px; width: 100%; margin: 0 auto; min-height: 45vh; }
.hero-content { flex: 1.2; }
.hero-content h1 { font-size: 4.5rem; font-weight: 900; line-height: 1.1; margin-bottom: 20px; letter-spacing: -2px; text-shadow: 0 10px 30px rgba(0,0,0,0.8); }
.hero-content h1 span { color: var(--twitch-purple); text-shadow: 0 0 30px rgba(139, 92, 246, 0.4); }
.hero-content p { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 40px; max-width: 550px; font-weight: 600; line-height: 1.5; }

.hero-image { flex: 0.8; text-align: right; position: relative; }
.hero-image::before {
    content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 300px; height: 300px; background: var(--twitch-purple); filter: blur(100px); opacity: 0.2; z-index: -1;
}
.hero-image img { 
    width: 100%; max-width: 400px; border-radius: 30px; border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 20px rgba(139, 92, 246, 0.2); object-fit: cover;
}

.btn-glow {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 14px 28px; border-radius: 12px; font-family: 'Inter', sans-serif; font-weight: 900; font-size: 0.9rem;
    text-transform: uppercase; letter-spacing: 1px; color: white; text-decoration: none; transition: all 0.3s;
    background: linear-gradient(135deg, var(--primary-blue), #2563eb); 
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3), inset 0 1px 0 rgba(255,255,255,0.2); 
}
.btn-glow:hover { box-shadow: 0 15px 30px rgba(59, 130, 246, 0.5); transform: translateY(-2px); }

/* =========================================
   POURQUOI CHOISIR UN COACH
   ========================================= */
.why-section { padding: 40px 5% 80px; width: 100%; max-width: 1300px; margin: 0 auto; display: flex; align-items: center; gap: 60px; }
.why-image { flex: 1; text-align: center; }
.why-image img { max-width: 280px; filter: drop-shadow(0 15px 30px rgba(139, 92, 246, 0.2)); }

.bento-card {
    background: var(--card-bg); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--nav-border); border-radius: 24px; padding: 50px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05); transition: 0.3s;
}
.bento-card:hover { border-color: rgba(255,255,255,0.1); transform: translateY(-5px); box-shadow: 0 40px 70px rgba(0,0,0,0.8); }

.why-card { flex: 1.5; }
.why-card h2 { font-size: 2.2rem; font-weight: 900; margin-bottom: 20px; letter-spacing: -1px; text-shadow: 0 5px 15px rgba(0,0,0,0.5); }
.why-card p { color: var(--text-muted); margin-bottom: 30px; line-height: 1.6; font-weight: 600; font-size: 1.1rem; }

.check-item { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 25px; }
.check-item i { color: var(--twitch-purple); font-size: 1.2rem; margin-top: 3px; text-shadow: 0 0 10px rgba(139, 92, 246, 0.5); }
.check-item strong { display: block; color: var(--text-main); font-size: 1.1rem; margin-bottom: 5px; font-weight: 800; }
.check-item span { color: var(--text-muted); font-size: 0.95rem; line-height: 1.5; font-weight: 600; }

/* =========================================
   OFFRE UNIQUE (LARGE CARD)
   ========================================= */
.offers { padding: 40px 5% 120px; text-align: center; width: 100%; max-width: 1300px; margin: 0 auto; }
.offers h2 { font-size: 3rem; font-weight: 900; margin-bottom: 10px; letter-spacing: -1px; text-shadow: 0 10px 30px rgba(0,0,0,0.8); }
.offers p { color: var(--text-muted); font-weight: 600; font-size: 1.1rem; margin-bottom: 50px; }

.single-offer-card { 
    background: linear-gradient(180deg, rgba(30, 32, 45, 0.8) 0%, rgba(19, 20, 28, 0.9) 100%); 
    backdrop-filter: blur(24px); border: 2px solid var(--twitch-purple);
    padding: 50px 40px; border-radius: 24px; text-align: center; transition: 0.4s;
    box-shadow: 0 30px 60px rgba(139, 92, 246, 0.2), inset 0 1px 0 rgba(255,255,255,0.1);
    max-width: 750px; margin: 0 auto; position: relative; z-index: 10;
}

.single-offer-card h3 { font-size: 2.2rem; font-weight: 900; margin: 10px 0 5px; letter-spacing: -1px; }
.single-offer-card .price { font-size: 4.5rem; font-weight: 900; margin: 10px 0 30px; color: var(--text-main); letter-spacing: -2px; text-shadow: 0 0 30px rgba(255,255,255,0.2); }

.offer-badges { display: flex; justify-content: center; gap: 15px; margin-bottom: 40px; flex-wrap: wrap; }
.badge {
    padding: 10px 20px; border-radius: 50px; font-size: 0.9rem; font-weight: 800;
    display: flex; align-items: center; gap: 10px; border: 1px solid transparent; text-transform: uppercase; letter-spacing: 1px;
}
.badge.role { background: rgba(16, 185, 129, 0.1); border-color: rgba(16, 185, 129, 0.3); color: var(--success-green); }
.badge.rank { background: rgba(139, 92, 246, 0.1); border-color: rgba(139, 92, 246, 0.3); color: #d8b4fe; }

.features-list { list-style: none; text-align: left; max-width: 450px; margin: 0 auto 40px; padding: 0; }
.features-list li { margin-bottom: 15px; color: var(--text-muted); font-weight: 600; font-size: 1.05rem; display: flex; gap: 15px; align-items: center; }
.features-list li i { color: var(--twitch-purple); font-size: 1.2rem; }

.btn-card { 
    display: inline-block; padding: 20px 60px; border-radius: 12px; text-decoration: none; 
    font-weight: 900; transition: 0.3s; text-transform: uppercase; font-size: 1.1rem; letter-spacing: 1px; 
    background: linear-gradient(90deg, #8b5cf6, #a855f7); color: white; box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
}
.btn-card:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(139, 92, 246, 0.6); }

/* Responsive */
@media (max-width: 1000px) {
    .hero { flex-direction: column; text-align: center; gap: 40px; padding-top: 20px; }
    .hero-content h1 { font-size: 3.5rem; }
    .hero-content p { margin: 0 auto 30px; }
    .hero-content div { justify-content: center; }
    .why-section { flex-direction: column; }
    .single-offer-card { padding: 40px 20px; }
    .single-offer-card .price { font-size: 3.5rem; }
}