/* ============================================= */
/* NIMEDIX MEDICAL — Page Urgence & Appels d'Offres */
/* CHARTE STRICTE : #009999 + #003333 uniquement  */
/* ============================================= */

/* --- RESET & BASE --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* CHARTE GRAPHIQUE STRICTE */
    --primary: #009999;
    --primary-light: #00b3b3;
    --primary-dark: #007a7a;
    --primary-glass: rgba(0, 153, 153, 0.07);
    --primary-bg: rgba(0, 153, 153, 0.05);
    --primary-border: rgba(0, 153, 153, 0.18);
    --secondary: #003333;
    /* Fonds */
    --white: #FFFFFF;
    --gray-50: #F8F9FA;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    /* Texte */
    --text: #333333;
    --text-light: #4A5568;
    --text-muted: #6B7280;
    /* Ombres */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 25px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 50px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    /* Arrondis (comme sur le site NIMEDIX) */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-pill: 50px;
    /* Transitions */
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* --- UTILITY --- */
.text--accent {
    color: var(--primary);
}

.text--accent-light {
    color: var(--primary-light);
}

.section__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section__header {
    text-align: center;
    margin-bottom: 56px;
}

.section__title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.25;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section__subtitle {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
}

/* --- BOUTONS (style NIMEDIX) --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius-pill);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    letter-spacing: 0.01em;
    line-height: 1.4;
    text-decoration: none !important;
}

.btn:hover,
.btn:focus {
    text-decoration: none !important;
}

.btn i {
    font-size: 1rem;
}

/* Bouton principal : fond turquoise, texte blanc */
.btn--urgence {
    background: var(--primary) !important;
    color: var(--white) !important;
    box-shadow: 0 4px 14px rgba(0, 153, 153, 0.25);
}

.btn--urgence:hover {
    background: var(--primary-dark) !important;
    color: var(--white) !important;
    box-shadow: 0 6px 20px rgba(0, 153, 153, 0.35);
    transform: translateY(-2px);
}

/* Bouton secondaire : fond #003333, texte blanc */
.btn--offres {
    background: var(--secondary) !important;
    color: var(--white) !important;
    box-shadow: 0 4px 14px rgba(0, 51, 51, 0.2);
}

.btn--offres:hover {
    background: #004d4d !important;
    color: var(--white) !important;
    box-shadow: 0 6px 20px rgba(0, 51, 51, 0.3);
    transform: translateY(-2px);
}

/* Bouton outline turquoise */
.btn--outline {
    background: transparent !important;
    color: var(--primary) !important;
    border: 2px solid var(--primary) !important;
    padding: 12px 28px;
}

.btn--outline:hover {
    background: var(--primary) !important;
    color: var(--white) !important;
    transform: translateY(-2px);
}

.btn--small {
    padding: 10px 22px;
    font-size: 0.85rem;
    background: var(--primary) !important;
    color: var(--white) !important;
}

.btn--small:hover {
    background: var(--primary-dark) !important;
    color: var(--white) !important;
}

.btn--full {
    width: 100%;
    justify-content: center;
    padding: 16px 32px;
    font-size: 1rem;
}

/* ============================================= */
/* SECTION 1 : HERO                              */
/* ============================================= */
.hero {
    background: var(--white);
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 153, 153, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 520px;
}

.hero__eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary);
    background: var(--primary-glass);
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    margin-bottom: 20px;
    border: 1px solid var(--primary-border);
}

.hero__title {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.hero__title--accent {
    color: var(--primary);
}

.hero__subtitle {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 32px;
    max-width: 520px;
}

.hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero__visual {
    position: relative;
}

.hero__image-wrapper {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
    border: 1px solid var(--primary-border);
}

.hero__image-wrapper img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.hero__image-wrapper:hover img {
    transform: scale(1.03);
}

/* ============================================= */
/* SECTION 2 : TRUST BAR                         */
/* Fond turquoise #009999 (jamais #003333 en fond)*/
/* ============================================= */
.trust-bar {
    background: var(--primary);
    padding: 24px 0;
    position: relative;
}

.trust-bar__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.trust-bar__item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--white);
    position: relative;
}

.trust-bar__item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -16px;
    top: 50%;
    transform: translateY(-50%);
    height: 40px;
    width: 1px;
    background: rgba(255, 255, 255, 0.25);
}

.trust-bar__item i {
    font-size: 1.5rem;
    color: var(--white);
    flex-shrink: 0;
    opacity: 0.9;
}

.trust-bar__value {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1.3;
}

.trust-bar__label {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

/* ============================================= */
/* SECTION 3 : ENJEUX                            */
/* ============================================= */
.enjeux {
    padding: 100px 0;
    background: var(--gray-50);
}

.enjeux__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.enjeux__card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 40px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

/* Barre superieure turquoise pour les deux cartes */
.enjeux__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
}

.enjeux__card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--primary-border);
}

.enjeux__card-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.4rem;
    background: var(--primary-glass);
    color: var(--primary);
    border: 1px solid var(--primary-border);
}

.enjeux__card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 12px;
}

.enjeux__card-text {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.enjeux__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.enjeux__list li {
    display: flex;
    align-items: baseline;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

.enjeux__list li i {
    color: var(--primary);
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ============================================= */
/* SECTION 4 : SOLUTION                          */
/* ============================================= */
.solution {
    padding: 100px 0;
    background: var(--white);
}

.solution__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.solution__card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition);
}

.solution__card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.solution__icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--primary-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.6rem;
    color: var(--primary);
    border: 1px solid var(--primary-border);
    transition: var(--transition);
}

.solution__card:hover .solution__icon {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.solution__card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 12px;
}

.solution__card p {
    color: var(--text-light);
    font-size: 0.93rem;
    line-height: 1.7;
}

.solution__hotline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 10px 20px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
}

.solution__hotline:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 153, 153, 0.3);
}

.solution__hotline i {
    font-size: 1.1rem;
}

/* ============================================= */
/* SECTION 5 : CATÉGORIES                        */
/* ============================================= */
.categories {
    padding: 100px 0;
    background: var(--gray-50);
}

.categories__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.categories__card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.categories__card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
    border-color: var(--primary-border);
}

.categories__image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.categories__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.categories__card:hover .categories__image img {
    transform: scale(1.05);

}

.categories__info {
    padding: 28px;
}

.categories__info h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
}

.categories__info p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.categories__cta {
    text-align: center;
    margin-top: 40px;
}

/* ============================================= */
/* SECTION 6 : PROCESSUS                         */
/* ============================================= */
.processus {
    padding: 100px 0;
    background: var(--white);
}

.processus__dual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.processus__track {
    border-radius: var(--radius-md);
    padding: 40px;
    background: var(--primary-bg);
    border: 1px solid var(--primary-border);
    position: relative;
    overflow: hidden;
}

.processus__track-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--primary-border);
}

.processus__track-header i {
    color: var(--primary);
    font-size: 1.3rem;
}

.processus__track-header h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--secondary);
}

.processus__timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.processus__step {
    display: flex;
    gap: 20px;
    position: relative;
    padding-bottom: 28px;
}

.processus__step:last-child {
    padding-bottom: 0;
}

.processus__step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 20px;
    top: 44px;
    bottom: 0;
    width: 2px;
    background: var(--primary-border);
}

.processus__step-number {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    background: var(--primary);
    color: var(--white);
}

.processus__step-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 4px;
    margin-top: 2px;
}

.processus__step-content p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================= */
/* SECTION 7 : LOGISTIQUE                        */
/* Fond turquoise (jamais #003333)               */
/* ============================================= */
.logistique {
    padding: 100px 0;
    background: var(--primary);
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.logistique__bg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.15;
}

.logistique__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logistique__content {
    position: relative;
    z-index: 2;
}

.section__header--light {
    text-align: center;
}

.section__title--light {
    color: var(--white);
}

.section__subtitle--light {
    color: rgba(255, 255, 255, 0.8);
    max-width: 680px;
    margin: 0 auto;
}

.logistique__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 50px;
}

.logistique__card {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    padding: 36px;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    transition: var(--transition);
}

.logistique__card:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-4px);
}

.logistique__card-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.3rem;
    color: var(--white);
}

.logistique__card h3 {
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.logistique__card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ============================================= */
/* SECTION 8 : RÉFÉRENCES                       */
/* ============================================= */
.references {
    padding: 80px 0;
    background: var(--white);
}

.references__logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.references__logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 36px 20px;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.references__logo-item:hover {
    border-color: var(--primary);
    background: var(--primary-glass);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.references__logo-item i {
    font-size: 2rem;
    color: var(--gray-400);
    transition: var(--transition);
}

.references__logo-item:hover i {
    color: var(--primary);
}

.references__logo-item span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    text-align: center;
    transition: var(--transition);
}

.references__logo-item:hover span {
    color: var(--primary-dark);
}

/* ============================================= */
/* SECTION 8b : ZONES D'INTERVENTION             */
/* ============================================= */
.zones {
    padding: 80px 0;
    background: var(--gray-50);
}

.zones__layout {
    display: flex;
    gap: 48px;
    align-items: center;
}

.zones__visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.zones__image-wrapper {
    width: 100%;
    max-width: 500px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--primary-border);
}

.zones__image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.zones__content {
    flex: 1;
}

.zones__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.zones__region {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: var(--transition);
}

.zones__region:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.zones__region i {
    color: var(--primary);
    font-size: 1.5rem;
    margin-top: 2px;
}

.zones__region h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 6px;
}

.zones__region p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.4;
}

/* ============================================= */
/* SECTION 9 : CERTIFICATIONS                   */
/* ============================================= */
.certifications {
    padding: 80px 0;
    background: var(--gray-50);
}

.certifications__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.certifications__badge {
    text-align: center;
    padding: 40px 28px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.certifications__badge:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.certifications__icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 2px solid var(--primary-border);
}

.certifications__icon i {
    font-size: 2rem;
    color: var(--primary);
}

.certifications__ce {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 0.05em;
}

.certifications__badge h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
}

.certifications__badge p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.65;
}

/* ============================================= */
/* SECTION 10 : ÉTUDES DE CAS                    */
/* ============================================= */
.etudes-de-cas {
    padding: 100px 0;
    background: var(--white);
}

.etudes__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.etude__card {
    border-radius: var(--radius-md);
    padding: 40px;
    background: var(--primary-bg);
    border: 1px solid var(--primary-border);
    transition: var(--transition);
}

.etude__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.etude__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 24px;
    background: var(--primary);
    color: var(--white);
}

.etude__badge--offres {
    background: var(--secondary);
}

.etude__block {
    margin-bottom: 20px;
}

.etude__block:last-child {
    margin-bottom: 0;
}

.etude__label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.etude__block p {
    font-size: 0.93rem;
    color: var(--text-light);
    line-height: 1.65;
}

.etude__block--result {
    padding: 16px;
    background: rgba(0, 153, 153, 0.06);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--primary);
}

.etude__block--result p {
    color: var(--secondary);
}

/* ============================================= */
/* SECTION 11 : FORMULAIRE                       */
/* ============================================= */
.formulaire {
    padding: 100px 0;
    background: var(--gray-50);
}

.formulaire__dual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.formulaire__block {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 40px;
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

/* Barre superieure turquoise pour les deux formulaires */
.formulaire__block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
}

.formulaire__block-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.formulaire__block-header i {
    font-size: 1.4rem;
    color: var(--primary);
}

.formulaire__block-header h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--secondary);
}

.formulaire__block-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 28px;
    line-height: 1.65;
}

.formulaire__form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form__group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form__group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--secondary);
    letter-spacing: 0.01em;
}

.form__group input,
.form__group textarea,
.form__group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: var(--text);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}

.form__group input:focus,
.form__group textarea:focus,
.form__group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 153, 153, 0.1);
}

.form__group input::placeholder,
.form__group textarea::placeholder {
    color: var(--gray-400);
}

.form__group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%236B7280'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.form__dropzone {
    border: 2px dashed var(--gray-300);
    border-radius: var(--radius-sm);
    padding: 32px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    background: var(--gray-50);
}

.form__dropzone:hover,
.form__dropzone.dragover {
    border-color: var(--primary);
    background: var(--primary-glass);
}

.form__dropzone i {
    font-size: 2rem;
    color: var(--gray-400);
    margin-bottom: 10px;
    transition: var(--transition);
}

.form__dropzone:hover i {
    color: var(--primary);
}

.form__dropzone p {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 4px;
}

.form__dropzone span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.form__file-info {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: var(--primary-glass);
    border-radius: var(--radius-sm);
    border: 1px solid var(--primary-border);
    margin-top: 8px;
}

.form__file-info i {
    color: var(--primary);
}

.form__file-info span {
    font-size: 0.85rem;
    color: var(--text);
    flex: 1;
}

.form__file-remove {
    background: none;
    border: none;
    color: var(--gray-500);
    cursor: pointer;
    padding: 4px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.form__file-remove:hover {
    color: var(--secondary);
}

.formulaire__hotline {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-200);
    text-align: center;
}

.formulaire__hotline p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.formulaire__whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.formulaire__whatsapp:hover {
    color: var(--primary-dark);
}

.formulaire__whatsapp i {
    font-size: 1.2rem;
}

/* ============================================= */
/* SECTION 12 : FAQ                              */
/* ============================================= */
.faq {
    padding: 80px 0;
    background: var(--white);
}

.faq__list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq__item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition);
}

.faq__item.active {
    border-color: var(--primary);
}

.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: var(--white);
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    text-align: left;
    transition: var(--transition);
}

.faq__question span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--secondary);
    line-height: 1.4;
}

.faq__question i {
    font-size: 0.8rem;
    color: var(--gray-400);
    transition: var(--transition);
    flex-shrink: 0;
}

.faq__item.active .faq__question i {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq__item.active .faq__question {
    background: var(--primary-glass);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq__item.active .faq__answer {
    max-height: 300px;
}

.faq__answer p {
    padding: 0 24px 20px;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ============================================= */
/* ANIMATIONS                                    */
/* ============================================= */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================= */
/* RESPONSIVE                                    */
/* ============================================= */
@media (max-width: 1024px) {
    .hero__container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero__subtitle {
        margin: 0 auto 32px;
    }

    .hero__ctas {
        justify-content: center;
    }

    .hero__image-wrapper img {
        height: 320px;
    }

    .trust-bar__container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .trust-bar__item:nth-child(2)::after {
        display: none;
    }

    .processus__dual {
        grid-template-columns: 1fr;
    }

    .logistique__cards {
        grid-template-columns: 1fr;
    }

    .zones__layout {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0 30px;
    }

    .hero__ctas {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        font-size: 0.88rem;
        padding: 13px 24px;
    }

    .trust-bar__container {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .trust-bar__item::after {
        display: none !important;
    }

    .enjeux__grid,
    .categories__grid,
    .solution__grid,
    .certifications__grid,
    .references__logos,
    .etudes__grid,
    .formulaire__dual {
        grid-template-columns: 1fr;
    }

    .zones__grid {
        grid-template-columns: 1fr;
    }

    .enjeux,
    .solution,
    .categories,
    .processus,
    .logistique,
    .etudes-de-cas,
    .formulaire {
        padding: 60px 0;
    }

    .references,
    .certifications,
    .faq {
        padding: 50px 0;
    }

    .section__header {
        margin-bottom: 36px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 15px;
    }

    .section__container {
        padding: 0 16px;
    }

    .enjeux__card,
    .solution__card,
    .formulaire__block,
    .processus__track {
        padding: 28px 20px;
    }

    .categories__image {
        height: 180px;
    }
}

/* ============================================= */
/* SECTION HEADER VARIANTES                       */
/* ============================================= */
.section__header--left {
    text-align: left;
}

.section__header--left .section__title {
    text-align: left;
}

.section__header--left .section__subtitle {
    margin: 0;
    text-align: left;
}

.section__header--light .section__title,
.section__title--light {
    color: var(--white);
}

.section__header--light .section__subtitle {
    color: rgba(255, 255, 255, 0.75);
}

/* ============================================= */
/* SECTION "QUI SOMMES-NOUS / A PROPOS"          */
/* Partagee entre urgence et espace-revendeur    */
/* ============================================= */
.a-propos {
    padding: 100px 0;
    background: var(--gray-50);
}

.a-propos__layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.a-propos__text {
    font-size: clamp(0.93rem, 1.2vw, 1.02rem);
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 16px;
}

.a-propos__modes {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 28px;
}

.a-propos__mode {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.a-propos__mode:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.a-propos__mode-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
    font-size: 1.1rem;
    border: 1px solid var(--primary-border);
}

.a-propos__mode h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 4px;
}

.a-propos__mode p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.6;
}

.a-propos__visual {
    position: relative;
}

.a-propos__image-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--primary-border);
}

.a-propos__image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-slow);
}

.a-propos__image-wrapper:hover img {
    transform: scale(1.03);
}

@media (max-width: 1024px) {
    .a-propos__layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .a-propos__visual {
        order: -1;
    }
}

@media (max-width: 768px) {
    .a-propos {
        padding: 60px 0;
    }
}