/*
Theme Name:   Transcription
Theme URI:    http://transcripteur.accessdoc.fr
Description:  Thème pour la plateforme de transcription Accessdoc
Author:       AccessDoc
Author URI:   http://transcripteur.accessdoc.fr
Version:      1.0.0
License:      GPL v2 or later
Text Domain:  transcription
*/

/* =============================================
   STYLES DE BASE - ACCESSIBLES
   ============================================= */

:root {
    /* Couleurs principales */
    --primary-color: #6e559f;
    --primary-dark: #5a4480;
    --primary-light: #8a72b8;
    --secondary-color: #fbdd74;
    --secondary-dark: #e8c85a;
    --secondary-light: #fce89a;
    
    /* Couleurs de fond et texte */
    --dark-bg: #3d2a5c;
    --text-color: #2d1a4a;
    --text-light: #5a4480;
    --text-muted: #7a6a8a;
    --bg-light: #f8f6fc;
    --border-color: #d5cce0;
    
    /* Variables de design */
    --shadow: 0 2px 12px rgba(110, 85, 159, 0.12);
    --radius: 12px;
    --transition: all 0.3s ease;
    --focus-color: #6e559f;
    --focus-outline: 3px solid #6e559f;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    background: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.site-content{

}
/* =============================================
   FOCUS VISIBLE - WCAG 2.4.7
   ============================================= */

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
    outline: var(--focus-outline);
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(110, 85, 159, 0.15);
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
    outline: none;
}

/* =============================================
   SKIP LINKS - WCAG 2.4.1
   ============================================= */

.skip-link {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    border: 0 !important;
    white-space: nowrap !important;
}

.skip-link:focus {
    position: fixed !important;
    top: 10px !important;
    left: 10px !important;
    width: auto !important;
    height: auto !important;
    padding: 12px 24px !important;
    margin: 0 !important;
    overflow: visible !important;
    clip: auto !important;
    background: #ffffff !important;
    color: #6e559f !important;
    z-index: 9999 !important;
    border: 3px solid #6e559f !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
}

/* =============================================
   SCREEN READER TEXT - WCAG 1.1.1
   ============================================= */

.screen-reader-text {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    border: 0 !important;
    white-space: nowrap !important;
}

.screen-reader-text:focus {
    position: fixed !important;
    top: 10px !important;
    left: 10px !important;
    width: auto !important;
    height: auto !important;
    padding: 12px 24px !important;
    margin: 0 !important;
    overflow: visible !important;
    clip: auto !important;
    background: #ffffff !important;
    color: #6e559f !important;
    z-index: 9999 !important;
    border: 3px solid #6e559f !important;
    border-radius: 8px !important;
}

/* =============================================
   HEADER - TOP BAR AVEC CONNEXION
   ============================================= */

.site-header {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* TOP BAR */
.header-top-bar {
    background: var(--dark-bg);
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.header-top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 20px;
}

/* Contact à gauche */
.header-contact-info {
    display: flex;
    align-items: center;
    gap: 25px;
}

.header-contact-info span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.8);
}

.header-contact-info a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.header-contact-info a:hover {
    color: #ffffff;
}

.header-contact-info i {
    color: var(--secondary-color);
    font-size: 13px;
    width: 16px;
}

/* =============================================
   TOP ACTIONS - CONNEXION / INSCRIPTION
   ============================================= */

.header-top-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-login-top {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.btn-login-top:hover {
    color: #ffffff;
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.08);
}

.btn-login-top i {
    font-size: 12px;
}

.btn-register-top {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-color);
    text-decoration: none;
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    background: var(--secondary-color);
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(251, 221, 116, 0.25);
}

.btn-register-top:hover {
    background: var(--secondary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(251, 221, 116, 0.35);
    color: var(--text-color);
    text-decoration: none;
}

/* User menu dans top bar */
.user-menu-top {
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-dashboard-top {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 3px 12px 3px 3px;
    border-radius: 50px;
    background: rgba(255,255,255,0.06);
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    font-size: 13px;
}

.btn-dashboard-top:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.08);
}

.btn-dashboard-top img {
    border-radius: 50%;
    border: 2px solid var(--secondary-color);
    width: 22px;
    height: 22px;
    object-fit: cover;
}

.user-name-top {
    font-weight: 500;
    font-size: 13px;
}

.btn-logout-top {
    color: rgba(255,255,255,0.4);
    padding: 4px;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    font-size: 13px;
}

.btn-logout-top:hover {
    color: var(--secondary-color);
    background: rgba(255,255,255,0.05);
}

/* Social dans top bar */
.social-top {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.05);
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 13px;
}

.social-top:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.social-top.linkedin:hover {
    background: #0a66c2;
    box-shadow: 0 4px 15px rgba(10, 102, 194, 0.3);
}

/* MAIN HEADER */
.header-main {
    background: var(--dark-bg);
    padding: 10px 0;
    position: relative;
    box-shadow: 0 4px 25px rgba(0,0,0,0.2);
}

.header-main::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color), var(--primary-color));
    background-size: 200% 100%;
    animation: shimmerGradient 4s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
    .header-main::after {
        animation: none !important;
        background: var(--primary-color) !important;
    }
}

@keyframes shimmerGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* =============================================
   SITE BRANDING - LOGO 180px
   ============================================= */

.site-branding {
    flex-shrink: 0;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-container img {
    max-height: 180px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-container img:hover {
    transform: scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text .site-title {
    margin: 0;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.1;
}

.logo-text .site-title a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo-text .site-title a:hover {
    color: var(--secondary-color);
}

.logo-highlight {
    color: var(--secondary-color);
}

.site-tagline {
    margin: 0;
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 300;
}

/* =============================================
   GROUPE GAUCHE : LOGO + MENU
   ============================================= */

.header-left-group {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
}

/* =============================================
   NAVIGATION - ACCESSIBLE
   ============================================= */

.main-navigation {
    display: flex;
    align-items: center;
}

.main-navigation .nav-menu {
    list-style: none;
    display: flex;
    gap: 2px;
    margin: 0;
    padding: 0;
}

.main-navigation .nav-menu li {
    position: relative;
}

.main-navigation .nav-menu li a {
    display: block;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.main-navigation .nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.main-navigation .nav-menu li a:hover,
.main-navigation .nav-menu li a:focus-visible {
    color: #ffffff;
    background: rgba(255,255,255,0.05);
}

.main-navigation .nav-menu li a:hover::after,
.main-navigation .nav-menu li a:focus-visible::after {
    width: 50%;
}

.main-navigation .nav-menu li.current-menu-item a {
    color: #ffffff;
    background: rgba(255,255,255,0.08);
}

.main-navigation .nav-menu li.current-menu-item a::after {
    width: 50%;
}

/* Focus visible pour la navigation */
.main-navigation .nav-menu li a:focus-visible {
    outline: 3px solid var(--secondary-color);
    outline-offset: 2px;
}

/* =============================================
   HEADER ACTIONS - UNIQUEMENT MENU TOGGLE
   ============================================= */

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

/* =============================================
   MENU TOGGLE - ACCESSIBLE
   ============================================= */

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 8px 8px 8px 12px;
    transition: all 0.3s ease;
    align-items: center;
    gap: 10px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.06);
}

.menu-toggle:hover {
    background: rgba(255,255,255,0.05);
    color: var(--secondary-color);
}

.menu-toggle:focus-visible {
    outline: 3px solid var(--secondary-color);
    outline-offset: 2px;
}

.menu-icon {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 22px;
}

.menu-icon span {
    display: block;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle.active .menu-icon span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.menu-toggle.active .menu-icon span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .menu-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}

.menu-label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

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

@media (max-width: 992px) {
    .header-left-group {
        gap: 15px;
    }
    
    .main-navigation .nav-menu li a {
        padding: 6px 14px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .header-top-bar {
        display: none;
    }
    
    .header-wrapper {
        flex-wrap: wrap;
    }
    
    .header-left-group {
        flex: 1;
        gap: 10px;
    }
    
    .main-navigation {
        display: none;
        width: 100%;
        padding: 15px 0 5px;
        order: 10;
        border-top: 1px solid rgba(255,255,255,0.05);
        margin-top: 12px;
    }
    
    .main-navigation.active {
        display: block;
    }
    
    .main-navigation .nav-menu {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    
    .main-navigation .nav-menu li a {
        display: block;
        padding: 12px 16px;
        border-radius: 8px;
        border-bottom: 1px solid rgba(255,255,255,0.03);
    }
    
    .main-navigation .nav-menu li a::after {
        display: none;
    }
    
    .main-navigation .nav-menu li a:hover {
        background: rgba(255,255,255,0.05);
    }
    
    .menu-toggle {
        display: flex !important;
    }
    
    .logo-container img {
        max-height: 80px;
    }
    
    .logo-text .site-title {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .header-main {
        padding: 10px 0;
    }
    
    .header-left-group {
        gap: 5px;
    }
    
    .logo-container img {
        max-height: 60px;
    }
    
    .logo-text .site-title {
        font-size: 18px;
    }
    
    .site-tagline {
        font-size: 9px;
        letter-spacing: 1px;
    }
    
    .header-actions {
        gap: 6px;
    }
    
    .menu-toggle {
        padding: 6px 8px 6px 10px;
    }
    
    .menu-label {
        font-size: 11px;
    }
}

/* =============================================
   SERVICES CARDS - GRILLE RESPONSIVE
   ============================================= */

.services-cards-wrapper {
    padding: 40px 0 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.services-header {
    text-align: center;
    margin-bottom: 40px;
}

.services-main-title {
    font-size: 32px;
    color: var(--text-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.services-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin: 0;
}

/* --- GRILLE PRINCIPALE : 4 COLONNES (Desktop) --- */
.services-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- CARTE SERVICE --- */
.service-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 20px 25px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    min-height: 380px;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(110, 85, 159, 0.15);
}

.service-card-featured {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, #f8f6fc 0%, #ffffff 100%);
    position: relative;
}

.service-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--primary-color);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-icon {
    margin-bottom: 15px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    width: 60px;
    height: auto;
}

.service-icon svg {
    width: 60px;
    height: 60px;
}

.service-title {
    font-size: 19px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 10px;
    margin-top: 0;
}

.service-description {
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 15px;
    flex: 1;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    margin: 10px 0 15px;
}

.service-features span {
    background: #f0ebf8;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    color: var(--primary-color);
    font-weight: 500;
}

.service-prices {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin: 10px 0 15px;
    width: 100%;
}

.price-item {
    font-size: 13px;
    color: var(--text-color);
    background: #f0ebf8;
    padding: 4px 14px;
    border-radius: 20px;
}

.price-item strong {
    color: var(--primary-color);
    font-size: 16px;
}

.service-link {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    padding: 8px 24px;
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    transition: all 0.3s ease;
    margin-top: 5px;
    font-size: 14px;
}

.service-link:hover {
    background: var(--primary-color);
    color: #ffffff;
    text-decoration: none;
}

/* =============================================
   RESPONSIVE SERVICES CARDS
   ============================================= */

/* --- 2 COLONNES (Tablette) --- */
@media (max-width: 992px) {
    .services-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .service-card {
        min-height: 340px;
        padding: 25px 18px 20px;
    }
    
    .services-main-title {
        font-size: 28px;
    }
    
    .services-subtitle {
        font-size: 16px;
    }
}

/* --- 1 COLONNE (Mobile) --- */
@media (max-width: 768px) {
    .services-container {
        grid-template-columns: 1fr;
        gap: 18px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .service-card {
        min-height: auto;
        padding: 28px 20px 22px;
        max-width: 100%;
    }
    
    .service-card-featured {
        border-width: 2px;
    }
    
    .service-badge {
        top: -8px;
        right: 15px;
        font-size: 10px;
        padding: 3px 12px;
    }
    
    .service-title {
        font-size: 18px;
    }
    
    .service-description {
        font-size: 14px;
    }
    
    .service-features span {
        font-size: 11px;
        padding: 3px 10px;
    }
    
    .services-main-title {
        font-size: 26px;
    }
    
    .services-subtitle {
        font-size: 15px;
    }
    
    .services-cards-wrapper {
        padding: 30px 10px 15px;
    }
}

/* --- TRÈS PETIT ÉCRAN --- */
@media (max-width: 480px) {
    .services-container {
        gap: 15px;
        padding: 0 5px;
        max-width: 100%;
    }
    
    .service-card {
        padding: 22px 15px 18px;
        border-radius: 12px;
        min-height: auto;
    }
    
    .service-icon img {
        width: 50px;
    }
    
    .service-icon svg {
        width: 50px;
        height: 50px;
    }
    
    .service-title {
        font-size: 17px;
        margin-bottom: 8px;
    }
    
    .service-description {
        font-size: 13px;
        margin-bottom: 10px;
    }
    
    .service-features {
        gap: 4px;
        margin: 8px 0 10px;
    }
    
    .service-features span {
        font-size: 10px;
        padding: 2px 8px;
    }
    
    .service-prices {
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }
    
    .price-item {
        font-size: 12px;
        padding: 3px 12px;
    }
    
    .price-item strong {
        font-size: 14px;
    }
    
    .service-link {
        padding: 6px 18px;
        font-size: 13px;
        width: 100%;
        max-width: 200px;
    }
    
    .services-main-title {
        font-size: 22px;
    }
    
    .services-subtitle {
        font-size: 14px;
    }
    
    .services-header {
        margin-bottom: 25px;
    }
    
    .service-badge {
        font-size: 9px;
        padding: 2px 10px;
        top: -7px;
        right: 12px;
    }
}

/* --- RÉDUCTION DE MOUVEMENT --- */
@media (prefers-reduced-motion: reduce) {
    .service-card:hover {
        transform: none !important;
    }
}

/* =============================================
   PAGE D'ACCUEIL - STYLES SPÉCIFIQUES
   ============================================= */

/* HERO SECTION - COMPACT */
.hero-section {
    background: linear-gradient(135deg, #3d2a5c 0%, #5a4480 50%, #3d2a5c 100%);
    padding: 30px 0 30px;
    color: #ffffff;
    overflow: hidden;
    position: relative;
    min-height: auto;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(110, 85, 159, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-section .container {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 30px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Hero Content */
.hero-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hero-badge {
    display: inline-block;
    background: rgba(251, 221, 116, 0.15);
    color: #fbdd74;
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(251, 221, 116, 0.15);
    width: fit-content;
    margin-bottom: 0;
}

.hero-title {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.15;
    margin: 0;
}

.hero-title span {
    color: #fbdd74;
}

.hero-title small {
    display: block;
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    font-weight: 400;
    margin-top: 2px;
}

.hero-subtitle {
    font-size: 15px;
    opacity: 0.85;
    max-width: 480px;
    line-height: 1.5;
    margin: 0;
}

.hero-description {
    font-size: 15px;
    opacity: 0.8;
    max-width: 520px;
    line-height: 1.7;
    margin: 0 0 5px 0;
}

.hero-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 5px 0;
}

.hero-buttons .btn {
    padding: 10px 22px;
    font-size: 14px;
}

/* =============================================
   HERO - VALEURS (Rapidité, Réactivité, Suivi, Conseils)
   ============================================= */

.hero-values {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    margin: 8px 0 0 0;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.value-item {
    font-size: 13px;
    color: rgba(255,255,255);
    font-weight: 400;
    letter-spacing: 0.3px;
    position: relative;
}

.value-item:not(:last-child)::after {
    content: '·';
    position: absolute;
    right: -14px;
    color: rgba(255,255,255,0.2);
}

/* =============================================
   HERO - STATS
   ============================================= */

.hero-stats {
    display: flex;
    gap: 25px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 2px;
}

.stat-number {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
}

.stat-label {
    font-size: 12px;
    
}

/* Hero Image */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-placeholder {
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    min-height: auto;
}

.hero-image-placeholder img {
    max-width: 200px;
    border-radius: 12px;
}

.hero-icon {
    font-size: 80px;
    line-height: 1;
}

/* Certifications */
.hero-certifications {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 5px 0;
}

.cert-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.8);
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.cert-badge:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.2);
}

/* Wave Animation */
.wave-animation {
    display: flex;
    gap: 6px;
    margin-top: 15px;
}

.wave-animation span {
    width: 6px;
    height: 25px;
    background: #fbdd74;
    border-radius: 4px;
    animation: wave 1.2s ease-in-out infinite;
}

.wave-animation span:nth-child(2) { animation-delay: 0.2s; }
.wave-animation span:nth-child(3) { animation-delay: 0.4s; }
.wave-animation span:nth-child(4) { animation-delay: 0.6s; }

@keyframes wave {
    0%, 100% { transform: scaleY(0.4); }
    50% { transform: scaleY(1); }
}

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

@media (max-width: 992px) {
    .hero-section .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }
    
    .hero-subtitle,
    .hero-description {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-certifications {
        justify-content: center;
    }
    
    .hero-values {
        justify-content: center;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-title small {
        font-size: 14px;
    }
    
    .hero-image-placeholder img {
        max-width: 150px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 20px 0;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .hero-title small {
        font-size: 13px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .hero-buttons .btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .hero-stats {
        gap: 15px;
    }
    
    .stat-number {
        font-size: 18px;
    }
    
    .stat-label {
        font-size: 11px;
    }
    
    .hero-values {
        gap: 8px 15px;
        padding-top: 8px;
    }
    
    .value-item {
        font-size: 12px;
    }
    
    .value-item:not(:last-child)::after {
        right: -12px;
    }
    
    .hero-image-placeholder {
        padding: 15px;
    }
    
    .hero-image-placeholder img {
        max-width: 120px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 20px;
    }
    
    .hero-title small {
        font-size: 12px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-values {
        gap: 6px 12px;
        justify-content: center;
    }
    
    .value-item {
        font-size: 11px;
    }
    
    .value-item:not(:last-child)::after {
        right: -10px;
    }
    
    .hero-image-placeholder img {
        max-width: 100px;
    }
}

/* =============================================
   SERVICES SECTION
   ============================================= */

.services-section {
    padding: 60px 0;
    background: #f8f6fc;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-tag {
    display: inline-block;
    background: rgba(110, 85, 159, 0.1);
    color: #6e559f;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #2d1a4a;
    margin: 0 0 10px 0;
}

.section-subtitle {
    color: #5a4480;
    font-size: 17px;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Grid - Utilise la même grille que services-container */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Responsive Services Grid */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .services-grid {
        gap: 15px;
        padding: 0 5px;
        max-width: 100%;
    }
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #3d2a5c 0%, #5a4480 50%, #3d2a5c 100%);
    padding: 60px 0;
    text-align: center;
    color: #ffffff;
}

.cta-content h2 {
    font-size: 32px;
    margin: 0 0 10px 0;
}

.cta-content p {
    font-size: 17px;
    opacity: 0.8;
    margin: 0 0 30px 0;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Boutons spécifiques */
.btn-dashboard {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 50px;
    background: #28a745;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    font-size: 14px;
}

.btn-dashboard:hover {
    background: #218838;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.35);
    color: #ffffff;
    text-decoration: none;
}

.btn-outline-light {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 50px;
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255,255,255,0.2);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.4);
    transform: translateY(-3px);
    color: #ffffff;
    text-decoration: none;
}

.btn-large {
    padding: 14px 40px;
    font-size: 16px;
}

.btn-sm {
    padding: 8px 18px !important;
    font-size: 13px !important;
}

/* =============================================
   RESPONSIVE HEADER & PAGE D'ACCUEIL
   ============================================= */

@media (max-width: 992px) {
    .header-left-group {
        gap: 15px;
    }
    
    .main-navigation .nav-menu li a {
        padding: 6px 14px;
        font-size: 13px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        padding: 12px 30px;
        font-size: 15px;
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 26px;
    }
    
    .cta-content h2 {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 22px;
    }
    
    .cta-content h2 {
        font-size: 22px;
    }
}

/* =============================================
   PAGE ACCESSIBILITÉ - STYLES
   ============================================= */

.accessibility-page-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 15px 40px;
    font-family: inherit;
}

/* HEADER */
.accessibility-page-header {
    background: linear-gradient(135deg, #f8f6fc 0%, #f0ebf8 100%);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid #d5cce0;
}

.accessibility-header-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.accessibility-header-icon img {
    width: 48px;
    height: 48px;
}

.accessibility-header-text h1 {
    font-size: 28px;
    color: #2d1a4a;
    margin: 0 0 4px 0;
    font-weight: 700;
}

.accessibility-header-text .subtitle {
    font-size: 16px;
    color: #5a4480;
    margin: 0;
    font-weight: 400;
}

/* INTRODUCTION */
.accessibility-intro {
    background: #f8f6fc;
    border-radius: 12px;
    padding: 20px 25px;
    margin-bottom: 20px;
    border-left: 5px solid #6e559f;
}

.accessibility-intro p {
    font-size: 16px;
    line-height: 1.8;
    color: #2d1a4a;
    margin: 0;
}

/* DIVIDER */
.accessibility-divider {
    border: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, #6e559f, transparent);
    margin: 30px 0;
    opacity: 0.2;
}

/* SECTIONS */
.accessibility-section {
    margin-bottom: 15px;
}

.section-header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}

.section-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    background: #6e559f;
    color: #ffffff;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
    padding: 0 4px;
}

.section-header h2 {
    font-size: 24px;
    color: #2d1a4a;
    margin: 0;
    font-weight: 600;
}

.section-content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.section-text {
    flex: 1.5;
}

.section-text p {
    font-size: 15px;
    line-height: 1.8;
    color: #2d1a4a;
    margin-bottom: 12px;
}

.section-image {
    flex: 1;
    text-align: center;
}

.section-image figure {
    margin: 0;
}

.section-image img {
    max-width: 120px;
    height: auto;
}

.image-caption {
    font-size: 13px;
    color: #7a6a8a;
    margin-top: 6px;
    font-style: italic;
}

/* BENEFITS LIST */
.benefits-list {
    list-style: none;
    padding: 0;
    margin: 12px 0;
}

.benefits-list li {
    padding: 6px 0 6px 28px;
    background: url('data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\' width=\'16\' height=\'16\' viewBox=\'0 0 24 24\' fill=\'none\' stroke=\'%236e559f\' stroke-width=\'3\'><polyline points=\'20 6 9 17 4 12\'/></svg>') left center no-repeat;
    background-size: 16px;
    border-bottom: 1px solid #f0ebf8;
    font-size: 14px;
    color: #2d1a4a;
}

.benefits-list li:last-child {
    border-bottom: none;
}

/* REF LIST */
.ref-list {
    background: #f8f6fc;
    border-radius: 12px;
    padding: 16px 20px;
    margin: 12px 0;
}

.ref-list h4 {
    color: #6e559f;
    margin: 0 0 8px 0;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ref-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ref-list ul li {
    padding: 4px 0;
    font-size: 14px;
    color: #2d1a4a;
    border-bottom: 1px solid #eee;
}

.ref-list ul li:last-child {
    border-bottom: none;
}

/* =============================================
   FORMATS GRID - 3 COLONNES
   ============================================= */

.formats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 12px 0;
}

.format-item {
    background: #f8f6fc;
    border-radius: 10px;
    padding: 12px 14px;
    border-left: 4px solid #6e559f;
}

.format-item strong {
    color: #6e559f;
    display: block;
    font-size: 15px;
}

.format-item span {
    font-size: 13px;
    color: #5a4480;
}

.format-item.full-width {
    grid-column: span 3;
}

/* =============================================
   PRACTICE LIST
   ============================================= */

.practice-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
}

.practice-list li {
    padding: 4px 0 4px 28px;
    background: url('data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\' width=\'16\' height=\'16\' viewBox=\'0 0 24 24\' fill=\'none\' stroke=\'%236e559f\' stroke-width=\'3\'><polyline points=\'20 6 9 17 4 12\'/></svg>') left center no-repeat;
    background-size: 16px;
    border-bottom: 1px solid #f0ebf8;
    font-size: 14px;
    color: #2d1a4a;
}

.practice-list li:last-child {
    border-bottom: none;
}

.section-text h3 {
    color: #6e559f;
    margin: 0 0 8px 0;
    font-size: 17px;
    font-weight: 600;
}

/* TOOLS LIST */
.tools-list {
    background: #f8f6fc;
    border-radius: 12px;
    padding: 16px 20px;
    margin: 12px 0;
}

.tools-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tools-list ul li {
    padding: 4px 0;
    font-size: 14px;
    color: #2d1a4a;
    border-bottom: 1px solid #eee;
}

.tools-list ul li:last-child {
    border-bottom: none;
}

/* CTA */
.accessibility-cta {
    text-align: center;
    background: linear-gradient(135deg, #f8f6fc 0%, #f0ebf8 100%);
    border-radius: 16px;
    padding: 30px;
    margin-top: 15px;
    border: 1px solid #d5cce0;
}

.accessibility-cta h3 {
    font-size: 22px;
    color: #2d1a4a;
    margin: 0 0 8px 0;
    font-weight: 600;
}

.accessibility-cta p {
    font-size: 15px;
    color: #2d1a4a;
    margin: 0 0 16px 0;
}

/* =============================================
   RESPONSIVE ACCESSIBILITY PAGE
   ============================================= */

@media (max-width: 992px) {
    .section-content {
        flex-direction: column;
    }
    
    .section-image {
        width: 100%;
        text-align: center;
    }
    
    .section-image img {
        max-width: 100px;
    }
    
    .formats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .format-item.full-width {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .accessibility-page-header {
        padding: 20px;
    }
    
    .accessibility-header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .accessibility-header-text h1 {
        font-size: 24px;
    }
    
    .accessibility-header-text .subtitle {
        font-size: 15px;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .section-number {
        min-width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .section-header h2 {
        font-size: 20px;
    }
    
    .formats-grid {
        grid-template-columns: 1fr;
    }
    
    .format-item.full-width {
        grid-column: span 1;
    }
    
    .accessibility-cta {
        padding: 20px;
    }
    
    .accessibility-cta h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .accessibility-page-wrapper {
        padding: 10px;
    }
    
    .accessibility-page-header {
        padding: 16px;
    }
    
    .accessibility-header-text h1 {
        font-size: 20px;
    }
    
    .accessibility-intro {
        padding: 14px 16px;
    }
    
    .accessibility-intro p {
        font-size: 14px;
    }
    
    .section-text p {
        font-size: 14px;
    }
    
    .section-image img {
        max-width: 80px;
    }
}

/* =============================================
   PAGE BRAILLE - ACCESSIBLE
   ============================================= */

.braille-page-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 15px 40px;
    font-family: inherit;
}

.braille-page-header {
    background: linear-gradient(135deg, #f8f6fc 0%, #f0ebf8 100%);
    border-radius: 16px;
    padding: 40px 30px;
    margin-bottom: 40px;
    border: 1px solid var(--border-color);
}

.braille-header-content {
    display: flex;
    align-items: center;
    gap: 25px;
}

.braille-header-icon img {
    width: 120px;
    height: auto;
}

.braille-header-text h1 {
    font-size: 32px;
    color: var(--text-color);
    margin: 0 0 8px 0;
    font-weight: 700;
}

.braille-header-text .subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin: 0;
    font-weight: 400;
}

.braille-intro {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 30px;
}

.intro-text {
    flex: 1.2;
}

.intro-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 15px;
}

.intro-highlight {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 15px;
}

.intro-highlight span {
    background: #f0ebf8;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 500;
}

.intro-image {
    flex: 1;
    text-align: center;
}

.intro-image img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.image-caption {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 8px;
    font-style: italic;
}

.braille-divider {
    border: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
    margin: 40px 0;
    opacity: 0.3;
}

.braille-service {
    margin-bottom: 20px;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 25px;
}

.service-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #ffffff;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
    padding: 0 4px;
}

.service-header h2 {
    font-size: 26px;
    color: var(--text-color);
    margin: 0;
    font-weight: 600;
}

.service-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.service-desc {
    flex: 1.5;
}

.service-desc p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 18px;
}

.service-features-list {
    background: #f8f6fc;
    border-radius: 12px;
    padding: 18px 22px;
    margin: 15px 0;
}

.service-features-list h4 {
    font-size: 14px;
    color: var(--primary-color);
    margin: 0 0 10px 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-features-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features-list ul li {
    padding: 5px 0;
    font-size: 14px;
    color: var(--text-color);
    border-bottom: 1px solid #eee;
}

.service-features-list ul li:last-child {
    border-bottom: none;
}

.service-image {
    flex: 1;
    text-align: center;
}

.service-image img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.price-block {
    background: var(--primary-color);
    color: #ffffff;
    padding: 14px 22px;
    border-radius: 12px;
    display: inline-block;
    margin: 10px 0;
}

.price-label {
    font-size: 15px;
    font-weight: 400;
}

.price-value {
    font-size: 24px;
    font-weight: 700;
    margin-left: 10px;
}

.info-note {
    font-size: 14px;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 10px !important;
}

.braille-reliure {
    display: flex;
    gap: 25px;
    align-items: center;
    background: #f8f6fc;
    border-radius: 16px;
    padding: 30px;
    border-left: 5px solid var(--primary-color);
}

.reliure-icon {
    font-size: 48px;
    flex-shrink: 0;
}

.reliure-content h3 {
    font-size: 20px;
    color: var(--text-color);
    margin: 0 0 8px 0;
}

.reliure-content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-color);
    margin: 0 0 12px 0;
}

.reliure-advantages {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.reliure-advantages span {
    background: #e8e0f0;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 500;
}

.braille-cta {
    text-align: center;
    background: linear-gradient(135deg, #f8f6fc 0%, #f0ebf8 100%);
    border-radius: 16px;
    padding: 40px 30px;
    margin-top: 20px;
    border: 1px solid var(--border-color);
}

.braille-cta h3 {
    font-size: 24px;
    color: var(--text-color);
    margin: 0 0 10px 0;
}

.braille-cta p {
    font-size: 16px;
    color: var(--text-color);
    margin: 0 0 20px 0;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.cta-btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn-primary {
    background: var(--primary-color);
    color: #ffffff;
    border: 2px solid var(--primary-color);
}

.cta-btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #ffffff;
    text-decoration: none;
}

.cta-btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-btn-secondary:hover {
    background: var(--primary-color);
    color: #ffffff;
    text-decoration: none;
}

/* =============================================
   PAGE PRÉSENTATION BRAILLE
   ============================================= */

.braille-presentation-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 15px 40px;
    font-family: inherit;
}

.braille-presentation-header {
    background: linear-gradient(135deg, #f8f6fc 0%, #f0ebf8 100%);
    border-radius: 16px;
    padding: 40px 30px;
    margin-bottom: 40px;
    border: 1px solid var(--border-color);
}

.braille-presentation-intro {
    background: #f8f6fc;
    border-radius: 12px;
    padding: 25px 30px;
    margin-bottom: 20px;
    border-left: 5px solid var(--primary-color);
}

.braille-presentation-intro p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    margin: 0;
}

.braille-section {
    margin-bottom: 20px;
}

.section-header {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 25px;
}

.section-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #ffffff;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
    padding: 0 4px;
}

.section-header h2 {
    font-size: 26px;
    color: var(--text-color);
    margin: 0;
    font-weight: 600;
}

.section-header h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin: 0 0 15px 0;
    font-weight: 600;
}

.section-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.section-text {
    flex: 1.8;
}

.section-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 15px;
}

.section-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

.section-image {
    flex: 1;
    text-align: center;
}

.section-image figure {
    margin: 0;
}

.section-image img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: auto;
}

.braille-grid {
    justify-content: center;
    margin: 20px auto;
    max-width: 120px;
    padding: 15px;
    background: #f8f6fc;
    border-radius: 12px;
    border: 2px solid var(--primary-color);
}

.braille-grid-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.braille-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #ffffff;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.braille-presentation-cta {
    text-align: center;
    background: linear-gradient(135deg, #f8f6fc 0%, #f0ebf8 100%);
    border-radius: 16px;
    padding: 40px 30px;
    margin-top: 20px;
    border: 1px solid var(--border-color);
}

.braille-presentation-cta h3 {
    font-size: 24px;
    color: var(--text-color);
    margin: 0 0 12px 0;
    font-weight: 600;
    line-height: 1.3;
}

.braille-presentation-cta p {
    font-size: 16px;
    color: var(--text-color);
    margin: 0 0 20px 0;
}

/* =============================================
   ALERTS - ACCESSIBLES
   ============================================= */

.alert {
    padding: 15px 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    border: 1px solid transparent;
}

.alert-success {
    background: #d4edda;
    color: #0a3d15;
    border-color: #b8d4c0;
}

.alert-warning {
    background: #fff3cd;
    color: #6b5500;
    border-color: #f0d99e;
}

.alert-danger {
    background: #f8d7da;
    color: #6b1a24;
    border-color: #f0b8be;
}

.alert-info {
    background: #cce5ff;
    color: #003366;
    border-color: #99ccff;
}

/* =============================================
   BADGES - ACCESSIBLES
   ============================================= */

.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.badge-attente { background: #e9ecef; color: var(--text-color); }
.badge-propose { background: #fff3cd; color: #6b5500; }
.badge-accepte { background: #d4edda; color: #0a3d15; }
.badge-cours { background: #cce5ff; color: #003366; }
.badge-termine { background: #d1ecf1; color: #00455a; }
.badge-success { background: #d4edda; color: #0a3d15; }

/* =============================================
   BOUTONS GÉNÉRIQUES - ACCESSIBLES
   ============================================= */

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: #ffffff;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(110, 85, 159, 0.35);
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--text-color);
}

.btn-secondary:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(251, 221, 116, 0.35);
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.4);
    color: #ffffff;
}

.btn-outline:hover {
    background: #ffffff;
    color: var(--dark-bg);
    border-color: #ffffff;
}

/* =============================================
   FOOTER - ACCESSIBLE
   ============================================= */

.site-footer {
    background: var(--dark-bg);
    color: rgba(255,255,255,0.85);
    padding: 40px 0;
   }

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}

.footer-info h3 {
    color: #ffffff;
    margin-bottom: 10px;
}

.footer-menu {
    list-style: none;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 8px;
}

.footer-menu li a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: var(--transition);
}

.footer-menu li a:hover {
    color: #ffffff;
}

.footer-contact p {
    margin-bottom: 8px;
}

.footer-contact a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
}

.footer-contact a:hover {
    color: #ffffff;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.footer-social a {
    color: rgba(255,255,255,0.6);
    font-size: 20px;
    transition: var(--transition);
}

.footer-social a:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

/* =============================================
   RÉDUCTION DE MOUVEMENT - WCAG 2.3.3
   ============================================= */

@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;
    }
    
    .service-card:hover,
    .btn:hover,
    .cta-btn:hover {
        transform: none !important;
    }
    
    .logo-container img:hover {
        transform: none !important;
    }
    
    .main-navigation .nav-menu li a::after {
        transition: none !important;
    }
}

/* =============================================
   RESPONSIVE - AUTRES ÉLÉMENTS
   ============================================= */

@media (max-width: 992px) {
    .braille-intro {
        flex-direction: column;
    }
    
    .service-content {
        flex-direction: column;
    }
    
    .section-content {
        flex-direction: column;
    }
    
    .service-image {
        width: 100%;
    }
    
    .service-image img {
        max-width: 400px;
    }
    
    .section-image {
        width: 100%;
    }
    
    .section-image img {
        max-width: 400px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .braille-header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .braille-header-text h1 {
        font-size: 26px;
    }
    
    .braille-header-text .subtitle {
        font-size: 16px;
    }
    
    .service-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .service-number {
        font-size: 30px;
    }
    
    .service-header h2 {
        font-size: 22px;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .section-number {
        font-size: 30px;
    }
    
    .section-header h2 {
        font-size: 22px;
    }
    
    .braille-reliure {
        flex-direction: column;
        text-align: center;
    }
    
    .reliure-advantages {
        justify-content: center;
    }
    
    .price-block {
        display: block;
        text-align: center;
    }
    
    .price-value {
        display: block;
        margin-left: 0;
        margin-top: 5px;
    }
    
    .braille-cta {
        padding: 30px 20px;
    }
    
    .braille-cta h3 {
        font-size: 20px;
    }
    
    .braille-presentation-cta {
        padding: 30px 20px;
    }
    
    .braille-presentation-cta h3 {
        font-size: 20px;
    }
    
    .braille-presentation-intro {
        padding: 20px;
    }
    
    .braille-presentation-intro p {
        font-size: 15px;
    }
    
    .intro-highlight {
        justify-content: center;
    }
    
    .braille-grid {
        gap: 6px;
        padding: 12px;
    }
    
    .braille-number {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .braille-page-wrapper {
        padding: 10px;
    }
    
    .braille-presentation-wrapper {
        padding: 10px;
    }
    
    .braille-page-header {
        padding: 25px 15px;
    }
    
    .braille-presentation-header {
        padding: 25px 15px;
    }
    
    .braille-header-text h1 {
        font-size: 22px;
    }
    
    .braille-header-icon img {
        width: 60px;
    }
    
    .service-desc p {
        font-size: 14px;
    }
    
    .section-text p {
        font-size: 14px;
    }
    
    .service-features-list {
        padding: 14px 16px;
    }
    
    .braille-presentation-intro {
        padding: 15px;
    }
    
    .braille-presentation-intro p {
        font-size: 14px;
    }
    
    .braille-grid {
        grid-template-columns: 40px 40px;
        gap: 5px;
        padding: 10px;
    }
    
    .braille-number {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    .cta-btn {
        display: block;
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
    
    .cta-btn:last-child {
        margin-bottom: 0;
    }
}
/* =============================================
   EXEMPLE DE TARIFICATION - TABLEAU
   ============================================= */

.braille-exemple-tarification {
    background: linear-gradient(135deg, #f8f6fc 0%, #f0ebf8 100%);
    border-radius: 16px;
    padding: 30px;
    margin: 20px 0;
    border: 1px solid var(--border-color);
}

.exemple-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.exemple-icon {
    font-size: 32px;
    line-height: 1;
}

.exemple-header h3 {
    font-size: 22px;
    color: var(--text-color);
    margin: 0;
    font-weight: 600;
}

.exemple-intro {
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 18px;
}

/* --- TABLEAU --- */
.exemple-table-wrapper {
    overflow-x: auto;
    margin: 15px 0;
}

.exemple-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.exemple-table thead th {
    background: var(--primary-color);
    color: #ffffff;
    padding: 12px 18px;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.exemple-table tbody td {
    padding: 12px 18px;
    font-size: 14px;
    color: var(--text-color);
    border-bottom: 1px solid #f0ebf8;
}

.exemple-table tbody tr:last-child td {
    border-bottom: none;
}

.exemple-table tbody tr:hover {
    background: #f8f6fc;
}

.exemple-table tfoot td {
    padding: 14px 18px;
    font-size: 16px;
    background: #f8f6fc;
    border-top: 2px solid var(--primary-color);
    font-weight: 600;
}

.exemple-table tfoot td:last-child {
    color: var(--primary-color);
    font-size: 18px;
}

/* --- NOTE --- */
.exemple-note {
    background: #f8f9fc;
    border-radius: 12px;
    padding: 16px 20px;
    border-left: 4px solid var(--primary-color);
    margin-top: 15px;
}

.exemple-note p {
    margin: 0 0 6px 0;
    font-size: 14px;
    color: var(--text-color);
}

.exemple-note p:last-child {
    margin-bottom: 0;
}

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

@media (max-width: 768px) {
    .braille-exemple-tarification {
        padding: 20px;
    }
    
    .exemple-header h3 {
        font-size: 20px;
    }
    
    .exemple-table thead th,
    .exemple-table tbody td,
    .exemple-table tfoot td {
        padding: 10px 14px;
        font-size: 13px;
    }
    
    .exemple-table tfoot td {
        font-size: 15px;
    }
    
    .exemple-table tfoot td:last-child {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .braille-exemple-tarification {
        padding: 16px;
    }
    
    .exemple-header h3 {
        font-size: 18px;
    }
    
    .exemple-table thead th,
    .exemple-table tbody td,
    .exemple-table tfoot td {
        padding: 8px 10px;
        font-size: 12px;
    }
    
    .exemple-table tfoot td {
        font-size: 14px;
    }
    
    .exemple-table tfoot td:last-child {
        font-size: 15px;
    }
    
    .exemple-note p {
        font-size: 13px;
    }
}