/* ============================================
   COACHING PAGE - SECTIONS VISUELLES
   Transformations complètes pour page coaching
   ============================================ */

/* ============================================
   SECTION PROBLÉMATIQUES - FORMAT IDENTIFICATION
   ============================================ */

.problems {
    background: linear-gradient(135deg, #0A0A0A 0%, #141414 100%);
    position: relative;
    overflow: hidden;
}

.problems::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 107, 0, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 107, 0, 0.04) 0%, transparent 40%);
    pointer-events: none;
}

.problems .container {
    position: relative;
    z-index: 1;
}

.problems .section-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: #FF6B00;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: 1rem;
}

.problems .section-subtitle {
    font-size: 1.3rem;
    color: #B0B0B0;
    text-align: center;
    margin-bottom: 4rem;
}

/* Grille de problématiques - Format identification */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.problem-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(20, 20, 20, 0.85) 100%);
    border: 2px solid rgba(255, 107, 0, 0.15);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

/* Badge "C'est vous ?" qui apparaît au hover */
.problem-card::before {
    content: '✓ C\'est vous ?';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: #FF6B00;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    opacity: 0;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.5);
}

.problem-card:hover::before {
    top: -20px;
    opacity: 1;
}

.problem-card:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: #FF6B00;
    box-shadow: 0 25px 60px rgba(255, 107, 0, 0.3);
}

/* Icône problème */
.problem-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: rgba(255, 107, 0, 0.15);
    border: 3px solid rgba(255, 107, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #FF6B00;
    transition: all 0.5s ease;
}

.problem-card:hover .problem-icon {
    background: linear-gradient(135deg, #FF6B00, rgba(255, 107, 0, 0.8));
    color: white;
    border-color: #FF6B00;
    transform: scale(1.15);
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.5);
}

.problem-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.problem-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #C0C0C0;
}

/* ============================================
   SECTION BÉNÉFICES - FORMAT PROCESSUS RÉSULTATS
   ============================================ */

.benefits {
    background: linear-gradient(135deg, #141414 0%, #0A0A0A 100%);
    position: relative;
}

.benefits .section-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #FF6B00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefits .section-subtitle {
    font-size: 1.3rem;
    color: #B0B0B0;
    text-align: center;
    margin-bottom: 4rem;
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.benefits-visual {
    display: none;
}

/* Liste de bénéfices - Format timeline horizontale */
.benefits-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-item {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(20, 20, 20, 0.85) 100%);
    border: 2px solid rgba(255, 107, 0, 0.2);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
    border-color: #FF6B00;
    box-shadow: 0 15px 50px rgba(255, 107, 0, 0.25);
}

/* Barre gauche orange */
.benefit-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 0;
    background: linear-gradient(180deg, #FF6B00, rgba(255, 107, 0, 0.5));
    transition: height 0.5s ease;
}

.benefit-item:hover::before {
    height: 100%;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    background: linear-gradient(135deg, #FF6B00, rgba(255, 107, 0, 0.8));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.4);
    transition: all 0.4s ease;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.6);
}

.benefit-content {
    flex: 1;
}

.benefit-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 0.8rem;
}

.benefit-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #C0C0C0;
}

/* ============================================
   SECTION FORMATS - OFFRES DIFFÉRENCIÉES
   ============================================ */

.coaching-formats {
    background: linear-gradient(135deg, #0A0A0A 0%, #141414 100%);
    position: relative;
}

.coaching-formats .section-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: #FF6B00;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: 1rem;
}

.coaching-formats .section-subtitle {
    font-size: 1.3rem;
    color: #B0B0B0;
    text-align: center;
    margin-bottom: 4rem;
}

/* Grille de formats - Cards pricing style */
.formats-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.format-coaching-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(20, 20, 20, 0.9) 100%);
    border: 2px solid rgba(255, 107, 0, 0.2);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Bande supérieure orange */
.format-coaching-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, #FF6B00 0%, rgba(255, 107, 0, 0.6) 100%);
}

.format-coaching-card:hover {
    transform: translateY(-15px);
    border-color: #FF6B00;
    box-shadow: 0 30px 70px rgba(255, 107, 0, 0.3);
}

/* Badge recommandé */
.format-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: #FF6B00;
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(255, 107, 0, 0.5);
}

.format-coaching-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-top: 0.5rem;
    line-height: 1.3;
}

.format-coaching-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #C0C0C0;
}

/* Détails du format */
.format-coaching-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 107, 0, 0.2);
    border-bottom: 1px solid rgba(255, 107, 0, 0.2);
}

.detail-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1rem;
    color: #D0D0D0;
}

.detail-row i {
    color: #FF6B00;
    font-size: 1.2rem;
    min-width: 20px;
    margin-top: 0.2rem;
}

.detail-row strong {
    color: #FFFFFF;
    font-weight: 700;
}

/* Prix */
.format-coaching-price {
    text-align: center;
    padding: 1.5rem 0;
}

.price-label {
    font-size: 1.3rem;
    font-weight: 700;
    color: #FF6B00;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Bouton format */
.btn-format-coaching {
    background: linear-gradient(135deg, #FF6B00, rgba(255, 107, 0, 0.8));
    color: white;
    padding: 1.2rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.4);
}

.btn-format-coaching:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.6);
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.9), #FF6B00);
}

/* ============================================
   ANIMATIONS D'ENTRÉE
   ============================================ */

.problem-card,
.benefit-item,
.format-coaching-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUpCoaching 0.6s ease forwards;
}

.problem-card:nth-child(1) { animation-delay: 0.1s; }
.problem-card:nth-child(2) { animation-delay: 0.2s; }
.problem-card:nth-child(3) { animation-delay: 0.3s; }
.problem-card:nth-child(4) { animation-delay: 0.4s; }
.problem-card:nth-child(5) { animation-delay: 0.5s; }
.problem-card:nth-child(6) { animation-delay: 0.6s; }

.benefit-item:nth-child(1) { animation-delay: 0.1s; }
.benefit-item:nth-child(2) { animation-delay: 0.2s; }
.benefit-item:nth-child(3) { animation-delay: 0.3s; }
.benefit-item:nth-child(4) { animation-delay: 0.4s; }
.benefit-item:nth-child(5) { animation-delay: 0.5s; }
.benefit-item:nth-child(6) { animation-delay: 0.6s; }

.format-coaching-card:nth-child(1) { animation-delay: 0.1s; }
.format-coaching-card:nth-child(2) { animation-delay: 0.2s; }
.format-coaching-card:nth-child(3) { animation-delay: 0.3s; }
.format-coaching-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUpCoaching {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   SECTION PROCESS - DÉROULÉ MÉTHODOLOGIE
   ============================================ */

.process-coaching {
    background: linear-gradient(135deg, #141414 0%, #0A0A0A 100%);
    position: relative;
}

.process-coaching .section-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #FF6B00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.process-coaching .section-subtitle {
    font-size: 1.3rem;
    color: #B0B0B0;
    text-align: center;
    margin-bottom: 4rem;
}

/* Timeline processus avec ligne verticale */
.process-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding-left: 80px;
}

/* Ligne verticale connectant les étapes */
.process-timeline::before {
    content: '';
    position: absolute;
    left: 45px;
    top: 50px;
    bottom: 50px;
    width: 4px;
    background: linear-gradient(180deg, 
        #FF6B00 0%, 
        rgba(255, 107, 0, 0.6) 50%, 
        rgba(255, 107, 0, 0.3) 100%);
}

/* Étape du processus */
.process-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

/* Icône hexagonale numérotée */
.step-icon {
    width: 90px;
    height: 90px;
    min-width: 90px;
    background: linear-gradient(135deg, #FF6B00 0%, rgba(255, 107, 0, 0.8) 100%);
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: white;
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.5);
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.process-step:hover .step-icon {
    transform: scale(1.15) rotate(15deg);
    box-shadow: 0 20px 50px rgba(255, 107, 0, 0.7);
}

/* Contenu de l'étape */
.step-content {
    flex: 1;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(20, 20, 20, 0.85) 100%);
    border: 2px solid rgba(255, 107, 0, 0.2);
    border-radius: 20px;
    padding: 2rem 2.5rem;
    position: relative;
    transition: all 0.4s ease;
}

.process-step:hover .step-content {
    border-color: #FF6B00;
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.2);
}

/* Flèche pointant de l'icône vers le contenu */
.step-content::before {
    content: '→';
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: #FF6B00;
    font-weight: 900;
    opacity: 0;
    transition: all 0.3s ease;
}

.process-step:hover .step-content::before {
    left: -30px;
    opacity: 1;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.step-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #C0C0C0;
}

/* Animation progressive des étapes */
.process-step {
    opacity: 0;
    transform: translateX(-30px);
    animation: fadeInLeft 0.6s ease forwards;
}

.process-step:nth-child(1) { animation-delay: 0.1s; }
.process-step:nth-child(2) { animation-delay: 0.2s; }
.process-step:nth-child(3) { animation-delay: 0.3s; }
.process-step:nth-child(4) { animation-delay: 0.4s; }
.process-step:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============================================
   SECTION EXEMPLES - ÉTUDES DE CAS
   ============================================ */

.examples-coaching {
    background: linear-gradient(135deg, #0A0A0A 0%, #141414 100%);
    position: relative;
}

.examples-coaching .section-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: #FF6B00;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: 1rem;
}

.examples-coaching .section-subtitle {
    font-size: 1.3rem;
    color: #B0B0B0;
    text-align: center;
    margin-bottom: 4rem;
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.example-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(20, 20, 20, 0.9) 100%);
    border: 2px solid rgba(255, 107, 0, 0.2);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.example-card:hover {
    transform: translateY(-10px);
    border-color: #FF6B00;
    box-shadow: 0 20px 50px rgba(255, 107, 0, 0.25);
}

.example-profile {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 107, 0, 0.15);
    border: 1px solid rgba(255, 107, 0, 0.3);
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: #FF6B00;
}

.example-profile i {
    font-size: 1.1rem;
}

.example-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 1.2rem;
    line-height: 1.3;
}

.example-description,
.example-evolution {
    font-size: 1rem;
    line-height: 1.7;
    color: #C0C0C0;
    margin-bottom: 1rem;
}

.example-description strong,
.example-evolution strong {
    color: #FF6B00;
    font-weight: 700;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
    }
    
    .examples-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .problems .section-title,
    .benefits .section-title,
    .coaching-formats .section-title,
    .process-coaching .section-title,
    .examples-coaching .section-title {
        font-size: 2.2rem;
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .problem-card,
    .benefit-item,
    .format-coaching-card {
        padding: 2rem 1.5rem;
    }
    
    .formats-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .format-badge {
        top: 1.5rem;
        right: 1.5rem;
    }
    
    .process-timeline {
        padding-left: 50px;
    }
    
    .process-timeline::before {
        left: 20px;
    }
    
    .step-icon {
        width: 70px;
        height: 70px;
        min-width: 70px;
        font-size: 1.8rem;
    }
    
    .step-content {
        padding: 1.75rem 1.5rem;
    }
    
    .step-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .problems .section-title,
    .benefits .section-title,
    .coaching-formats .section-title,
    .process-coaching .section-title,
    .examples-coaching .section-title {
        font-size: 1.8rem;
    }
    
    .problem-icon,
    .benefit-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
        font-size: 1.8rem;
    }
    
    .format-coaching-title {
        font-size: 1.5rem;
    }
    
    .process-timeline {
        padding-left: 40px;
    }
    
    .process-timeline::before {
        left: 15px;
        width: 3px;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .process-step {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}
