/* ==========================================================================
   LES VERTUS DES SIMPLES — ÉQUILIBRE (STYLES SPÉCIFIQUES PREMIUM)
   ========================================================================== */

/* --------------------------------------------------------------------------
   Hero Spécifique
   -------------------------------------------------------------------------- */
.equilibre-hero {
    min-height: 80vh;
    height: 80vh;
}

.equilibre-hero .hero-video-bg {
    filter: brightness(0.7) saturate(1.05);
}

.equilibre-hero .hero-overlay {
    background: linear-gradient(to bottom,
        rgba(27, 74, 36, 0.15) 0%,
        rgba(27, 46, 30, 0.35) 60%,
        rgba(13, 26, 17, 0.50) 100%);
}

/* --------------------------------------------------------------------------
   Section: Approche Holistique
   -------------------------------------------------------------------------- */
.holistic-section {
    padding: 10rem 8%;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.holistic-section::before {
    content: '';
    position: absolute;
    bottom: -10%; left: -10%;
    width: 35%; height: 50%;
    background: radial-gradient(circle, rgba(143, 169, 140, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.holistic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 4.5rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.holistic-card {
    background: var(--white);
    padding: 4rem 3rem;
    border-top: 3px solid var(--mauve);
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(13, 26, 17, 0.04);
    border-left: 1px solid rgba(155, 126, 164, 0.1);
    border-right: 1px solid rgba(155, 126, 164, 0.1);
    border-bottom: 1px solid rgba(155, 126, 164, 0.1);
    transition: var(--t-smooth);
}

.holistic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 55px rgba(155, 126, 164, 0.12);
}

.holistic-card h3 {
    color: var(--forest);
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.holistic-card h3::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 35px; height: 1px;
    background: var(--mauve);
}

.holistic-card p {
    color: var(--text-mid);
    line-height: 1.85;
    font-size: 1.15rem;
}

.approach-list {
    list-style: none;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.approach-list li {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    color: var(--text-mid);
    font-size: 1.12rem;
    transition: var(--t-fast);
}

.approach-list li i {
    color: var(--mauve);
    font-size: 1.1rem;
    width: 25px;
    height: 25px;
    background: rgba(155, 126, 164, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--t-smooth);
}

.approach-list li:hover i {
    background: var(--mauve);
    color: var(--white);
    transform: scale(1.1);
}

/* --------------------------------------------------------------------------
   Section: Bienfaits (Thème Lumineux & Gai)
   -------------------------------------------------------------------------- */
.benefits-section {
    padding: 10rem 8%;
    background: rgba(155, 126, 164, 0.08);
    color: var(--text-dark);
    text-align: center;
    border-top: 1px solid rgba(155, 126, 164, 0.15);
    border-bottom: 1px solid rgba(155, 126, 164, 0.15);
}

.benefits-section .section-header h2 {
    color: var(--forest);
}

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

.benefit-item {
    padding: 4rem 2.5rem;
    background: var(--white);
    border: 1px solid rgba(155, 126, 164, 0.15);
    border-radius: 16px;
    position: relative;
    transition: var(--t-smooth);
    box-shadow: 0 10px 30px rgba(13, 26, 17, 0.02);
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 50px; height: 3px;
    background: var(--mauve);
    border-radius: 0 0 4px 4px;
    opacity: 0.5;
    transition: var(--t-smooth);
}

.benefit-item:hover {
    background: var(--white);
    border-color: var(--mauve);
    transform: translateY(-8px);
    box-shadow: 0 25px 45px rgba(155, 126, 164, 0.15);
}

.benefit-item:hover::before {
    width: 80px;
    opacity: 1;
}

.benefit-item h3 {
    font-size: 1.8rem;
    color: var(--mauve-deep);
    margin-bottom: 1.2rem;
    transition: var(--t-smooth);
}

.benefit-item:hover h3 {
    color: var(--mauve);
}

.benefit-item p {
    color: var(--text-mid);
    line-height: 1.8;
    font-size: 1.12rem;
}

/* --------------------------------------------------------------------------
   Section: Citation Vidéo (Intercalaire Lumineux)
   -------------------------------------------------------------------------- */
.quote-video-section {
    position: relative;
    height: 55vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.quote-video-section video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.quote-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(27, 74, 36, 0.35) 0%, rgba(13, 26, 17, 0.55) 100%);
    z-index: 1;
}

.quote-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 850px;
    padding: 0 2.5rem;
}

.quote-content p {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    color: var(--cream);
    font-style: italic;
    line-height: 1.5;
    text-shadow: 0 2px 12px rgba(13, 26, 17, 0.6);
}

/* --------------------------------------------------------------------------
   Section: Piliers (Icônes et cartes)
   -------------------------------------------------------------------------- */
.pillars-section {
    padding: 10rem 8%;
    background: var(--sage-light);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 5rem auto 0;
}

.pillar-card {
    background: var(--white);
    padding: 3.5rem 2.2rem;
    text-align: center;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(13,26,17,0.03);
    border: 1px solid rgba(143, 169, 140, 0.15);
    transition: var(--t-smooth);
}

.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px rgba(13,26,17,0.08);
    border-color: var(--mauve);
}

.pillar-icon {
    font-size: 2.8rem;
    color: var(--mauve);
    margin-bottom: 1.8rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(155, 126, 164, 0.08);
    border-radius: 50%;
    transition: var(--t-smooth);
}

.pillar-card:hover .pillar-icon {
    background: var(--mauve);
    color: var(--white);
    transform: scale(1.08) rotate(5deg);
}

.pillar-card h3 {
    font-size: 1.45rem;
    color: var(--forest);
    margin-bottom: 1.1rem;
}

.pillar-card p {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.7;
}

/* --------------------------------------------------------------------------
   Section: Rituels (Timeline / Colonnes)
   -------------------------------------------------------------------------- */
.rituals-section {
    padding: 10rem 8%;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.rituals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    max-width: 1200px;
    margin: 5rem auto 0;
}

.ritual-card {
    border: 1px dashed var(--mauve);
    border-radius: 16px;
    padding: 4rem 2.5rem 3.5rem;
    position: relative;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(13,26,17,0.02);
    transition: var(--t-smooth);
}

.ritual-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(155, 126, 164, 0.12);
    border-style: solid;
}

.ritual-time {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--mauve);
    color: var(--white);
    padding: 0.35rem 2.2rem;
    border-radius: 30px;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(155, 126, 164, 0.3);
    transition: var(--t-smooth);
}

.ritual-card:hover .ritual-time {
    background: var(--mauve-deep);
    transform: translateX(-50%) scale(1.05);
}

.ritual-card h3 {
    text-align: center;
    color: var(--forest);
    margin-bottom: 2rem;
    font-size: 1.6rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.ritual-card h3::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 25px; height: 1px;
    background: var(--mauve-dim);
}

.ritual-card ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.ritual-card ul li {
    padding: 1rem 0;
    border-bottom: 1px dashed rgba(155, 126, 164, 0.15);
    color: var(--text-mid);
    text-align: center;
    font-size: 1.1rem;
    transition: var(--t-fast);
}

.ritual-card ul li:hover {
    color: var(--mauve-deep);
}

.ritual-card ul li:last-child {
    border-bottom: none;
}

/* --------------------------------------------------------------------------
   Section: FAQ / Conseils
   -------------------------------------------------------------------------- */
.faq-section {
    padding: 10rem 8%;
    background: var(--white);
    border-top: 1px solid rgba(143, 169, 140, 0.15);
}

.faq-container {
    max-width: 850px;
    margin: 4.5rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    border: 1px solid rgba(155, 126, 164, 0.15);
    border-radius: 12px;
    padding: 0.5rem 2rem;
    background: var(--cream);
    transition: var(--t-smooth);
}

.faq-item.active {
    background: var(--white);
    border-color: var(--mauve);
    box-shadow: 0 10px 30px rgba(155,126,164,0.08);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--forest);
    padding: 1.2rem 0;
    transition: var(--t-fast);
}

.faq-question span {
    padding-right: 2rem;
    line-height: 1.4;
}

.faq-item:hover .faq-question {
    color: var(--mauve);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out);
}

.faq-answer p {
    padding: 0.5rem 0 1.8rem;
    color: var(--text-mid);
    line-height: 1.8;
    font-size: 1.12rem;
}

.faq-icon {
    font-size: 0.95rem;
    transition: transform 0.4s var(--ease-out);
    color: var(--mauve);
    width: 32px;
    height: 32px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(155,126,164,0.15);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--mauve);
    color: var(--white);
    border-color: var(--mauve);
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 968px) {
    .rituals-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .holistic-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pillars-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-section, .pillars-section, .rituals-section, .faq-section {
        padding: 6rem 6%;
    }
    
    .faq-question {
        font-size: 1.2rem;
    }
}
