/* ========================================
   COACHING INDIVIDUEL - Styles spécifiques
   ======================================== */

/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #fdfbfb 0%, #f8f5f2 100%);
    color: #2c2c2c;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

/* ========== NAVIGATION ========== */
.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #d4a574;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.back-button:hover {
    color: #c8935f;
    transform: translateX(-5px);
}

/* ========== HERO - IMAGE COMPLÈTE ========== */
.page-hero {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 3rem;
    height: 500px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.page-hero__image {
    width: 100%;
    height: 100%;
}

.page-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top; /* ← Pour voir le visage */
}

.page-hero__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 60%, transparent 100%);
    padding: 3rem 2rem 2rem;
    color: white;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* ========== SECTIONS ========== */
.content-section {
    margin: 5rem 0;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.section-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

/* ========== LISTE AVEC POINTS ========== */
.benefits-list {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
}

.benefits-list li {
    font-size: 1.05rem;
    padding: 0.75rem 0 0.75rem 2rem;
    color: #555;
    line-height: 1.6;
    position: relative;
}

.benefits-list li::before {
    content: '•';
    position: absolute;
    left: 0.5rem;
    color: #d4a574;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

/* ========== CARDS AVEC NUMÉROS ========== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.info-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 2px solid rgba(212, 165, 116, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    border-color: #d4a574;
}

.info-card__number {
    position: absolute;
    top: -15px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d4a574 0%, #c8935f 100%);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.35rem;
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.4);
}

.info-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 1.5rem 0 0.75rem;
    color: #1a1a1a;
}

.info-card__text {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

/* ========== TIMELINE ========== */
.timeline {
    margin: 2rem 0;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.timeline-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #d4a574 0%, #c8935f 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.3);
}

.timeline-content h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
}

/* ========== TARIFS - CARDS DYNAMIQUES ========== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.pricing-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 2px solid rgba(212, 165, 116, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: #d4a574;
}

.pricing-card__title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.pricing-card__price {
    font-size: 2.25rem;
    font-weight: 700;
    color: #d4a574;
    margin-bottom: 1.5rem;
}

.pricing-card__features {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.pricing-card__features li {
    padding: 0.6rem 0 0.6rem 1.8rem;
    color: #555;
    font-size: 1rem;
    position: relative;
}

.pricing-card__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #d4a574;
    font-weight: 700;
    font-size: 1.2rem;
}

.pricing-card__button {
    display: block;
    background: linear-gradient(135deg, #d4a574 0%, #c8935f 100%);
    color: white;
    text-align: center;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
}

.pricing-card__button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.4);
}

/* ========== CTA ========== */
.cta-section {
    text-align: center;
    background: linear-gradient(135deg, #fef8f1 0%, #fdf3e7 100%);
    padding: 4rem 3rem;
    border-radius: 20px;
    margin: 5rem 0;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.cta-text {
    font-size: 1.15rem;
    color: #666;
    margin-bottom: 2.5rem;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #d4a574 0%, #c8935f 100%);
    color: white;
    text-align: center;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.3);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.4);
}

.btn-large {
    font-size: 1.15rem;
    padding: 1.3rem 3.5rem;
}

.btn-secondary {
    display: inline-block;
    background: white;
    color: #d4a574;
    padding: 1.1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #d4a574;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-secondary:hover {
    background: #d4a574;
    color: white;
    transform: translateY(-3px);
}

.cta-alternative {
    margin: 2rem 0;
    color: #999;
    font-size: 1rem;
}

/* ========== TÉMOIGNAGES ========== */
.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border-left: 4px solid #d4a574;
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateX(8px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.testimonial__text {
    font-style: italic;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.testimonial__author {
    font-weight: 600;
    color: #d4a574;
    font-size: 0.95rem;
}

/* ========== FOOTER ========== */
.footer {
    text-align: center;
    color: #999;
    font-size: 0.9rem;
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(212, 165, 116, 0.15);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .container {
        padding: 2rem 1.25rem;
    }
    
    .page-hero {
        height: 400px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials {
        grid-template-columns: 1fr;
    }
}