/* ============================================================
   THERAPIES.CSS - CABINET AZARKANE
   Version complète (sans gestion du footer)
   ============================================================ */

/* ============================================
   BANNIÈRE DE PAGE
   ============================================ */
.page-banner {
    padding: 160px 0 100px;
    margin-top: 50px;
    background: linear-gradient(135deg, rgba(66, 183, 165, 0.1), rgba(200, 147, 162, 0.1));
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 400px;
}

.page-banner .container {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
}

.page-banner-content {
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 20px;
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.5);
    padding: 0 20px;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    display: block;
    position: relative;
}

.page-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    margin: 20px auto 0;
    border-radius: 2px;
}

.page-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: #4a5568 !important;
    margin-bottom: 30px;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    padding: 0 20px;
}

.breadcrumb a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.breadcrumb a:hover {
    color: var(--primary-dark);
}

.breadcrumb i {
    color: var(--gray-2);
    font-size: 0.8rem;
}

.breadcrumb span {
    color: var(--gray-3);
    font-weight: 500;
}

.page-banner-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    color: var(--white);
    z-index: 1;
}

/* ============================================
   SECTION INTRODUCTION THÉRAPIES
   ============================================ */
.therapies-introduction {
    padding: 100px 0;
    background: var(--white);
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-text {
    padding-right: 30px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(66, 183, 165, 0.1), rgba(200, 147, 162, 0.1));
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 8px 20px;
    border-radius: var(--radius-lg);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--dark);
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

.highlight {
    color: var(--primary);
}

.intro-description {
    color: var(--gray-3);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.approach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.approach-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.approach-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(66, 183, 165, 0.1), rgba(200, 147, 162, 0.1));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.approach-content h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--dark);
}

.approach-content p {
    color: var(--gray-3);
    font-size: 0.95rem;
    line-height: 1.6;
}

.intro-visual {
    position: relative;
}

.benefits-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    margin-bottom: 30px;
    border: 1px solid rgba(66, 183, 165, 0.1);
}

.benefits-card h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--dark);
    text-align: center;
}

.benefits-list {
    list-style: none;
    counter-reset: benefit-counter;
    padding: 0;
}

.benefits-list li {
    counter-increment: benefit-counter;
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
}

.benefits-list li::before {
    content: counter(benefit-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
}

.benefits-list i {
    color: var(--primary);
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.benefits-list span {
    flex: 1;
    line-height: 1.5;
}

.therapy-illustration {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.therapy-illustration img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.therapy-illustration:hover img {
    transform: scale(1.05);
}

/* ============================================
   SECTION THÉRAPIES DÉTAIL
   ============================================ */
.therapies-detailed {
    padding: 100px 0;
    background-color: var(--light-1);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .section-description {
    font-size: 1.1rem;
    color: var(--gray-3);
    max-width: 700px;
    margin: 10px auto 0;
    line-height: 1.8;
}

.therapy-detail {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 50px;
    margin-bottom: 60px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(66, 183, 165, 0.1);
    transition: all var(--transition-normal);
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.therapy-detail:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.therapy-content-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.therapy-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(66, 183, 165, 0.1);
}

.therapy-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.5rem;
    flex-shrink: 0;
    transition: all var(--transition-normal);
    box-shadow: 0 8px 25px rgba(66, 183, 165, 0.3);
}

.therapy-detail:hover .therapy-icon-large {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(66, 183, 165, 0.4);
}

.therapy-title-container {
    flex: 1;
}

.therapy-title {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.2;
}

.therapy-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(66, 183, 165, 0.1), rgba(200, 147, 162, 0.1));
    color: var(--primary);
    padding: 8px 16px;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(66, 183, 165, 0.2);
}

.therapy-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    padding: 0;
}

.therapy-description-detailed {
    width: 100%;
    max-width: 100%;
}

.therapy-description-detailed p {
    color: var(--gray-3);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.therapy-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.8);
    padding: 25px;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary);
    transition: all var(--transition-normal);
    text-align: center;
    border: 1px solid rgba(66, 183, 165, 0.1);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-item i {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 15px;
    display: block;
}

.feature-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.feature-item p {
    color: var(--gray-3);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.therapy-techniques {
    background: rgba(66, 183, 165, 0.05);
    padding: 30px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(66, 183, 165, 0.1);
    width: 100% !important;
    max-width: 100% !important;
    align-self: stretch !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
}

.technique-info {
    text-align: center !important;
}

.technique-info h4 {
    text-align: center !important;
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--dark);
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(66, 183, 165, 0.2);
}

.technique-info ul {
    display: inline-block !important;
    text-align: left !important;
    padding: 0 !important;
    margin: 0 auto !important;
    list-style: none !important;
}

.technique-info ul li {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 8px 0 !important;
    border-bottom: 1px dashed rgba(66, 183, 165, 0.1) !important;
}

.technique-info ul li:last-child {
    border-bottom: none !important;
}

.technique-info ul i {
    color: var(--primary) !important;
    font-size: 1rem !important;
    flex-shrink: 0 !important;
}

.techniques-tags {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    justify-content: center !important;
    margin: 15px 0 !important;
}

.technique-tag {
    background: var(--white);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(66, 183, 165, 0.2);
    transition: all var(--transition-fast);
}

.technique-tag:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.technologies-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px !important;
    margin: 15px 0 !important;
    justify-content: center !important;
}

.tech-item-small {
    background: var(--white);
    padding: 15px;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid rgba(66, 183, 165, 0.1);
    transition: all var(--transition-fast);
}

.tech-item-small:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(66, 183, 165, 0.1);
}

.tech-item-small i {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 8px;
    display: block;
}

.tech-item-small span {
    font-size: 0.85rem;
    color: var(--dark);
    font-weight: 500;
    display: block;
}

.advantages-list {
    list-style: none;
    margin-bottom: 25px;
    padding: 0;
}

.advantages-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--gray-3);
    padding: 5px 0;
}

.advantages-list i {
    color: var(--primary);
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.steps-timeline {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
    counter-reset: step-counter;
    position: relative;
    padding-left: 40px;
}

.steps-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 15px;
    bottom: 15px;
    width: 2px;
    background: linear-gradient(to bottom, rgba(66, 183, 165, 0.5), rgba(200, 147, 162, 0.5));
    z-index: 1;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 0;
    background: transparent;
    border-radius: 0;
    border-left: none;
    transition: all var(--transition-fast);
    position: relative;
    z-index: 2;
    counter-increment: step-counter;
}

.step:hover .step-content {
    transform: translateX(5px);
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    flex-shrink: 0;
    position: absolute;
    left: -40px;
    top: 0;
    z-index: 3;
    border: 3px solid #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    transition: all var(--transition-fast);
}

.step-number::after {
    content: counter(step-counter);
    display: block;
    font-weight: 700;
}

.step:nth-child(1) .step-number { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); }
.step:nth-child(2) .step-number { background: linear-gradient(135deg, var(--secondary), var(--secondary-dark)); }
.step:nth-child(3) .step-number { background: linear-gradient(135deg, var(--primary-light), var(--primary)); }
.step:nth-child(4) .step-number { background: linear-gradient(135deg, var(--secondary-light), var(--secondary)); }

.step-content {
    background: var(--white);
    padding: 15px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid transparent;
    transition: all var(--transition-fast);
    flex: 1;
    min-height: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.step:nth-child(1) .step-content { border-left-color: var(--primary); }
.step:nth-child(2) .step-content { border-left-color: var(--secondary); }
.step:nth-child(3) .step-content { border-left-color: var(--primary-light); }
.step:nth-child(4) .step-content { border-left-color: var(--secondary-light); }

.step-content h5 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--dark);
    font-weight: 600;
    line-height: 1.3;
}

.step-content p {
    color: var(--gray-3);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.who-list {
    list-style: none;
    padding: 0;
}

.who-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--gray-3);
    padding: 8px 0;
    border-bottom: 1px dashed rgba(66, 183, 165, 0.1);
}

.who-list li:last-child {
    border-bottom: none;
}

.who-list i {
    color: var(--primary);
    font-size: 0.9rem;
    width: 20px;
    text-align: center;
}

.therapy-schedule {
    margin-bottom: 25px;
}

.schedule-details {
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(66, 183, 165, 0.1);
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed rgba(66, 183, 165, 0.1);
}

.schedule-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.schedule-label {
    color: var(--gray-3);
    font-size: 0.9rem;
    font-weight: 500;
}

.schedule-value {
    color: var(--dark);
    font-weight: 600;
    font-size: 0.9rem;
}

.therapy-cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.therapy-cta .btn {
    justify-content: center;
    padding: 12px 24px;
    font-weight: 600;
}

/* ============================================
   SECTION COMPARAISON
   ============================================ */
.comparison-section {
    padding: 100px 0;
    background: var(--light-1);
}

.table-container {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    margin: 30px 0;
    box-shadow: var(--shadow-md);
    background: var(--white);
    border: 1px solid rgba(66, 183, 165, 0.1);
}

table {
    width: 100%;
    min-width: 800px;
    border-collapse: collapse;
    background: var(--white);
    color: var(--dark);
}

thead {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    position: sticky;
    top: 0;
    z-index: 10;
}

thead th {
    color: var(--white);
    padding: 20px 15px;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

thead th:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

tbody tr {
    border-bottom: 1px solid rgba(66, 183, 165, 0.1);
    transition: background-color var(--transition-fast);
}

tbody tr:nth-child(even) {
    background-color: rgba(66, 183, 165, 0.03);
}

tbody tr:hover {
    background-color: rgba(66, 183, 165, 0.08);
}

tbody td {
    padding: 18px 15px;
    font-size: 0.95rem;
    color: var(--dark);
    line-height: 1.5;
    vertical-align: middle;
    font-weight: 500;
}

tbody td strong {
    color: var(--primary);
    font-weight: 600;
}

tbody td:first-child {
    font-weight: 700;
    color: var(--primary);
    background: linear-gradient(to right, rgba(66, 183, 165, 0.05), transparent);
}

tbody td:not(:last-child) {
    border-right: 1px solid rgba(66, 183, 165, 0.1);
}

.table-legend {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    padding: 20px;
    background: rgba(66, 183, 165, 0.05);
    border-radius: var(--radius-lg);
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 2px solid var(--white);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.legend-text {
    color: var(--dark);
    font-size: 0.9rem;
    font-weight: 500;
}

.choice-advice {
    margin-top: 60px;
    text-align: center;
}

.advice-card {
    display: inline-flex;
    align-items: center;
    gap: 30px;
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(66, 183, 165, 0.2);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.advice-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.advice-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(66, 183, 165, 0.3);
}

.advice-content {
    text-align: left;
    flex: 1;
}

.advice-content h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--dark);
    font-weight: 600;
}

.advice-content p {
    color: var(--gray-3);
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 1rem;
}

.btn-small {
    padding: 10px 25px;
    font-size: 0.95rem;
}

/* ============================================
   SECTION TÉMOIGNAGES
   ============================================ */
.therapy-testimonials {
    padding: 100px 0;
    background-color: var(--light-1);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid rgba(66, 183, 165, 0.1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.patient-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(66, 183, 165, 0.1), rgba(200, 147, 162, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    flex-shrink: 0;
}

.patient-info {
    flex: 1;
}

.patient-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 5px;
}

.patient-rating {
    color: var(--accent);
    font-size: 0.9rem;
}

.testimonial-content {
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 0;
    font-size: 3rem;
    color: rgba(66, 183, 165, 0.2);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-content p {
    color: var(--gray-3);
    font-style: italic;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--gray-1);
}

.treatment-type {
    background: linear-gradient(135deg, rgba(66, 183, 165, 0.1), rgba(200, 147, 162, 0.1));
    color: var(--primary);
    padding: 5px 12px;
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    font-weight: 600;
}

.treatment-date {
    color: var(--gray-2);
    font-size: 0.85rem;
}

/* ============================================
   SECTION FAQ
   ============================================ */
.therapy-faq {
    padding: 100px 0;
    background-color: var(--white);
}

.faq-grid {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(66, 183, 165, 0.1);
    transition: all var(--transition-normal);
}

.faq-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color var(--transition-fast);
}

.faq-question:hover {
    background-color: rgba(66, 183, 165, 0.05);
}

.faq-question h4 {
    font-size: 1.1rem;
    color: var(--dark);
    margin: 0;
    flex: 1;
    font-weight: 600;
}

.faq-question i {
    color: var(--primary);
    font-size: 1rem;
    transition: transform var(--transition-fast);
    margin-left: 15px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: var(--gray-3);
    line-height: 1.7;
    margin: 0;
}

.faq-item.active .faq-question {
    background-color: rgba(66, 183, 165, 0.05);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* ============================================
   SECTION CTA
   ============================================ */
.therapy-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(66, 183, 165, 0.1), rgba(200, 147, 162, 0.1));
    position: relative;
    overflow: hidden;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--gray-3);
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: var(--radius-lg);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.cta-buttons .btn {
    padding: 15px 30px;
    font-weight: 600;
    min-width: 200px;
}

.cta-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(66, 183, 165, 0.3);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: var(--white);
    box-shadow: var(--shadow-md);
}

/* ============================================
   SUPPRESSION DES SCROLLBARS INDÉSIRÉS
   ============================================ */
.therapy-detail::-webkit-scrollbar,
.therapy-content-wrapper::-webkit-scrollbar,
.therapy-techniques::-webkit-scrollbar,
.therapies-detailed *::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    background: transparent !important;
}

.therapy-detail,
.therapy-content-wrapper,
.therapy-techniques {
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes lineGrow {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 100px;
        opacity: 1;
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablettes */
@media (max-width: 1200px) {
    .intro-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .intro-text {
        padding-right: 0;
    }
    
    .therapy-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .therapy-icon-large {
        margin: 0 auto;
    }
}

@media (max-width: 992px) {
    .page-banner {
        padding: 160px 0 80px !important;
        min-height: 350px !important;
    }
    
    .page-title {
        font-size: clamp(2.3rem, 4.5vw, 3rem) !important;
        margin-top: 0 !important;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
    }
    
    .therapy-features-grid {
        grid-template-columns: 1fr;
    }
    
    .therapy-content {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .therapy-techniques {
        order: 2 !important;
        margin-top: 10px !important;
    }
    
    .cta-content h2 {
        font-size: 2.3rem;
    }
    
    .table-container {
        border-radius: var(--radius-md);
        margin: 20px 0;
    }
    
    table {
        min-width: 700px;
    }
    
    thead th,
    tbody td {
        padding: 16px 12px;
        font-size: 0.9rem;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobiles */
@media (max-width: 768px) {
    .page-banner {
        padding: 150px 0 60px !important;
        margin-top: 0 !important;
        min-height: 300px !important;
    }

    .page-title {
        margin-top: 0 !important;
        font-size: clamp(2rem, 4vw, 2.5rem) !important;
    }
    
    .page-subtitle {
        font-size: 1rem !important;
        margin-top: 5px !important;
        margin-bottom: 20px !important;
    }
    
    .therapies-introduction,
    .therapies-detailed,
    .comparison-section,
    .therapy-testimonials,
    .therapy-faq,
    .therapy-cta-section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .therapy-detail {
        padding: 25px 20px;
        margin-bottom: 30px;
    }
    
    .therapy-content-wrapper {
        padding: 0 5px;
    }
    
    .therapy-title {
        font-size: 1.6rem;
    }
    
    .therapy-content {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 0 !important;
    }
    
    .therapy-features-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    .therapy-techniques {
        padding: 20px !important;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr !important;
        max-width: 400px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .techniques-tags {
        justify-content: center !important;
    }
    
    .technologies-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .technique-info ul {
        text-align: center !important;
    }
    
    .technique-info ul li {
        justify-content: center !important;
    }
    
    /* Tableau en cartes sur mobile */
    .table-container {
        overflow: visible;
        min-width: 100%;
        background: transparent;
        box-shadow: none;
        border: none;
        padding: 0;
    }
    
    table {
        display: block;
        min-width: 100%;
        background: transparent;
        border: none;
        box-shadow: none;
    }
    
    thead {
        display: none;
    }
    
    tbody {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0;
    }
    
    tbody tr {
        display: flex;
        flex-direction: column;
        background: var(--white);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        border: 1px solid rgba(66, 183, 165, 0.1);
        padding: 0;
        margin: 0;
        overflow: hidden;
    }
    
    tbody tr:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
    }
    
    tbody td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        border: none;
        border-bottom: 1px solid rgba(66, 183, 165, 0.1);
        text-align: left;
        background: none !important;
        width: 100%;
        box-sizing: border-box;
        min-height: 60px;
    }
    
    tbody td:first-child {
        background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
        color: var(--white);
        font-size: 1.1rem;
        padding: 20px;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        text-align: center;
        border-bottom: 2px solid var(--secondary);
        justify-content: center;
        font-weight: 700;
    }
    
    tbody td:not(:first-child) {
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: var(--dark);
    }
    
    tbody td:not(:first-child)::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--primary);
        font-size: 0.9rem;
        flex: 0 0 140px;
        text-align: left;
        padding-right: 15px;
    }
    
    tbody td:not(:first-child) span {
        text-align: right;
        flex: 1;
        font-weight: 500;
        color: var(--dark);
    }
    
    tbody td:last-child {
        border-bottom: none;
    }
    
    .table-legend {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .legend-item {
        width: 100%;
        justify-content: center;
    }
    
    .advice-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .advice-content {
        text-align: center;
    }
    
    .step-content {
        padding: 12px 15px;
    }
    
    .steps-timeline {
        padding-left: 30px;
    }
    
    .step-number {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
        left: -32px;
    }
}

/* Petits mobiles */
@media (max-width: 576px) {
    .page-banner {
        padding: 140px 0 50px !important;
        min-height: 250px !important;
    }
    
    .page-title {
        font-size: clamp(1.8rem, 4vw, 2.2rem) !important;
        margin-top: 0 !important;
    }
    
    .page-title::after {
        width: 80px;
        margin-top: 15px;
    }
    
    .page-subtitle {
        font-size: 0.9rem !important;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .therapy-title {
        font-size: 1.4rem;
    }
    
    .therapy-detail {
        padding: 20px 15px;
        margin: 15px 0;
    }
    
    .therapy-content-wrapper {
        padding: 0;
    }
    
    .therapy-icon-large {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .therapy-badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .feature-item {
        padding: 18px;
    }
    
    .feature-item h4 {
        font-size: 1.1rem;
    }
    
    .feature-item p {
        font-size: 0.9rem;
    }
    
    .technologies-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
    }
    
    .faq-question {
        padding: 18px 20px;
    }
    
    .faq-question h4 {
        font-size: 0.95rem;
    }
    
    .faq-answer p {
        padding: 0 20px 18px;
        font-size: 0.9rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-content p {
        font-size: 0.95rem;
    }
    
    .testimonial-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    tbody td {
        padding: 12px 15px;
        min-height: 55px;
    }
    
    tbody td:first-child {
        padding: 15px;
        font-size: 1rem;
    }
    
    tbody td:not(:first-child)::before {
        flex: 0 0 120px;
        font-size: 0.85rem;
    }
    
    tbody td:not(:first-child) span {
        font-size: 0.9rem;
    }
    
    .therapy-cta .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        width: 100%;
    }
}

/* Très petits mobiles */
@media (max-width: 480px) {
    .page-banner {
        padding: 130px 0 40px !important;
        min-height: 220px !important;
    }
    
    .page-title {
        font-size: clamp(1.5rem, 4vw, 1.8rem) !important;
        margin-top: 0 !important;
    }
    
    .page-title::after {
        width: 60px;
    }
    
    .page-subtitle {
        font-size: 0.85rem !important;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .approach-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .approach-icon {
        margin: 0 auto;
    }
    
    .therapy-content {
        padding: 0 !important;
    }
    
    .therapy-features-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
    
    .technologies-grid {
        grid-template-columns: 1fr !important;
        max-width: 220px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .technique-info ul li {
        font-size: 0.9rem !important;
    }
    
    .step-number {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
        left: -28px;
    }
    
    .step-content h5 {
        font-size: 1rem;
    }
    
    .step-content p {
        font-size: 0.85rem;
    }
    
    .steps-timeline {
        padding-left: 25px;
    }
    
    tbody td:not(:first-child) {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        padding: 12px 15px;
    }
    
    tbody td:not(:first-child)::before {
        flex: 0 0 auto;
        font-size: 0.8rem;
    }
    
    tbody td:not(:first-child) span {
        text-align: left;
        width: 100%;
        font-size: 0.85rem;
    }
    
    .advice-card {
        padding: 20px;
    }
    
    .advice-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .advice-content h4 {
        font-size: 1.1rem;
    }
    
    .advice-content p {
        font-size: 0.9rem;
    }
    
    .benefits-card {
        padding: 25px;
    }
    
    .benefits-card h3 {
        font-size: 1.3rem;
    }
    
    .cta-buttons .btn {
        min-width: auto;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* ============================================
   IPHONE SAFE AREA
   ============================================ */
@supports (-webkit-touch-callout: none) {
    .page-banner {
        padding-top: calc(140px + env(safe-area-inset-top)) !important;
    }
}

/* ============================================
   INPUT FIX IPHONE
   ============================================ */
input, select, textarea {
    font-size: 16px !important;
    -webkit-appearance: none;
    appearance: none;
}

/* ============================================
   MODE RÉDUCTION DES MOUVEMENTS
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .page-title,
    .page-subtitle,
    .breadcrumb,
    .page-title::after {
        animation: none !important;
    }
    
    .therapy-detail,
    .testimonial-card,
    .feature-item,
    .tech-item-small,
    .step,
    .approach-icon,
    .therapy-icon-large,
    .btn {
        transition: none !important;
        animation: none !important;
        transform: none !important;
    }
    
    tbody tr {
        animation: none !important;
        opacity: 1 !important;
    }
}

/* ============================================
   CORRECTIONS DE DÉBORDEMENT
   ============================================ */
.container {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

p, li, span, h3, h4 {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.therapy-content-wrapper * {
    max-width: 100%;
}

.therapy-illustration img,
.therapy-content-wrapper img {
    width: 100%;
    height: auto;
    max-width: 100%;
}

