/* ==========================================================
   TRÉSORS DE SNACKS
   STYLE PRINCIPAL
   Version : 2.0
========================================================== */


/* ==========================================================
   1. VARIABLES
========================================================== */

:root {

    /* Charte graphique */
    --primary: #D94B3D;
    --primary-dark: #B93A30;
    --primary-light: #EF6A5B;

    --accent: #E5A84B;
    --accent-light: #F3DFC0;

    --green: #6E9B55;

    /* Couleurs sombres */
    --dark: #171515;
    --dark-soft: #292626;
    --dark-muted: #D6CCC5;

    /* Couleurs claires */
    --white: #FFFFFF;
    --light: #FAF7F3;
    --light-soft: #F5EFE8;
    --gray: #E8E0D8;

    /* Texte */
    --text: #342F2D;
    --text-light: #746B66;

    /* Layout */
    --container: 1280px;

    /* Arrondis */
    --radius: 22px;
    --radius-small: 14px;
    --radius-large: 30px;

    /* Ombres */
    --shadow:
        0 12px 35px
        rgba(40, 30, 25, .09);

    --shadow-hover:
        0 22px 50px
        rgba(40, 30, 25, .15);

    /* Animation */
    --transition: .3s ease;
}


/* ==========================================================
   2. RESET
========================================================== */

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


html {
    scroll-behavior: smooth;
}


body {
    min-height: 100vh;

    font-family: "Poppins", sans-serif;

    background: var(--white);

    color: var(--text);

    line-height: 1.7;

    overflow-x: hidden;
}


img {
    max-width: 100%;
    height: auto;

    display: block;
}


a {
    color: inherit;

    text-decoration: none;
}


ul {
    list-style: none;
}


button,
input,
select,
textarea {
    font: inherit;
}


button {
    border: none;

    cursor: pointer;
}


/* ==========================================================
   3. TYPOGRAPHIE
========================================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Bebas Neue", sans-serif;

    color: var(--dark);

    line-height: 1.1;

    letter-spacing: 1px;
}


h1 {
    font-size: clamp(3rem, 7vw, 5.5rem);
}


h2 {
    font-size: clamp(2.2rem, 4vw, 3.3rem);
}


h3 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
}


p {
    margin-bottom: 1rem;

    color: var(--text-light);
}


/* ==========================================================
   4. CONTAINER
========================================================== */

.container {
    width: min(92%, var(--container));

    margin-left: auto;
    margin-right: auto;
}


/* ==========================================================
   5. SECTIONS
========================================================== */

.section {
    position: relative;

    padding: 100px 0;
}


.section-light {
    background:
        linear-gradient(
            180deg,
            var(--light),
            var(--light-soft)
        );
}


.text-center {
    text-align: center;
}


/* ==========================================================
   6. TITRES DE SECTIONS
========================================================== */

.section h2 {
    position: relative;

    margin-bottom: 35px;
}


.section h2::after {
    content: "";

    display: block;

    width: 70px;
    height: 4px;

    margin-top: 14px;

    border-radius: 20px;

    background:
        linear-gradient(
            90deg,
            var(--primary),
            var(--accent)
        );
}


.text-center h2::after {
    margin-left: auto;
    margin-right: auto;
}


/* ==========================================================
   7. GRILLES
========================================================== */

.grid-2 {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    align-items: center;

    gap: 60px;
}


.cards {
    display: grid;

    grid-template-columns:
        repeat(
            auto-fit,
            minmax(260px, 1fr)
        );

    gap: 30px;
}


/* ==========================================================
   8. HEADER - CONTENEUR STICKY
========================================================== */

.header-container-wrapper {
    position: sticky;

    top: 0;

    z-index: 10000;

    width: 100%;

    padding: 14px 20px 0;

    pointer-events: none;
}


/* ==========================================================
   9. HEADER
========================================================== */

.header {
    width: min(100%, 1450px);

    margin: 0 auto;

    pointer-events: auto;

    background:
        rgba(30, 27, 26, .96);

    border:
        1px solid
        rgba(243, 223, 192, .12);

    border-radius: 24px;

    box-shadow:
        0 12px 40px
        rgba(0, 0, 0, .22);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    transition:
        box-shadow .3s ease,
        background .3s ease,
        transform .3s ease;
}


.header.scrolled {
    background:
        rgba(23, 21, 21, .98);

    box-shadow:
        0 15px 45px
        rgba(0, 0, 0, .32);
}


/* ==========================================================
   10. STRUCTURE DU HEADER

   NAVIGATION | LOGO | BUSINESS PLAN
========================================================== */

.header-layout {
    position: relative;

    width: 100%;

    min-height: 115px;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        auto
        minmax(0, 1fr);

    align-items: center;

    gap: 25px;

    padding: 8px 30px;
}


/* ==========================================================
   11. PARTIE GAUCHE
========================================================== */

.header-left {
    min-width: 0;

    display: flex;

    align-items: center;

    justify-content: flex-start;
}


/* ==========================================================
   12. NAVIGATION
========================================================== */

.header .navbar {
    position: static;

    display: block;

    width: auto;
    height: auto;

    margin: 0;
    padding: 0;

    background: transparent;

    border: 0;

    box-shadow: none;

    transform: none;

    opacity: 1;

    visibility: visible;

    overflow: visible;
}


/* ==========================================================
   13. MENU
========================================================== */

.header .nav-menu {
    display: flex !important;

    align-items: center;

    justify-content: flex-start;

    flex-direction: row;

    flex-wrap: nowrap;

    gap: 3px;

    width: auto;

    margin: 0;
    padding: 0;

    opacity: 1;

    visibility: visible;

    transform: none;

    list-style: none;
}


.header .nav-menu li {
    position: relative;

    display: block;

    margin: 0;
    padding: 0;
}


/* ==========================================================
   14. LIENS DU MENU
========================================================== */

.header .nav-menu li a {
    position: relative;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 10px 8px;

    border-radius: 10px;

    color: #F3DFC0;

    font-size: .79rem;

    font-weight: 500;

    white-space: nowrap;

    transition:
        color .25s ease,
        background .25s ease,
        transform .25s ease;
}


.header .nav-menu li a:hover {
    color: #FFFFFF;

    background:
        rgba(217, 75, 61, .12);
}


/* ==========================================================
   15. TRAIT DES LIENS
========================================================== */

.header .nav-menu li a::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 3px;

    width: 0;
    height: 2px;

    transform:
        translateX(-50%);

    border-radius: 10px;

    background:
        linear-gradient(
            90deg,
            var(--primary),
            var(--accent)
        );

    transition:
        width .25s ease;
}


.header .nav-menu li a:hover::after {
    width: 45%;
}


/* ==========================================================
   16. PAGE ACTIVE
========================================================== */

.header .nav-menu li.active a {
    color: #FFFFFF;

    background:
        rgba(217, 75, 61, .12);
}


.header .nav-menu li.active a::after {
    width: 45%;
}


/* ==========================================================
   17. LOGO CENTRAL
========================================================== */

.header-central-logo {
    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 0 12px;
}


.header-central-logo img {
    display: block;

    width: auto;
    height: 105px;

    max-width: 220px;

    object-fit: contain;

    transition:
        transform .3s ease,
        filter .3s ease;
}


.header-central-logo:hover img {
    transform:
        scale(1.04);

    filter:
        drop-shadow(
            0 8px 20px
            rgba(217, 75, 61, .25)
        );
}


/* ==========================================================
   18. PARTIE DROITE
========================================================== */

.header-right,
.header-actions {
    display: flex;

    align-items: center;

    justify-content: flex-end;

    min-width: 0;
}


/* ==========================================================
   19. BUSINESS PLAN
========================================================== */

.header-business-btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    min-height: 48px;

    padding: 11px 22px;

    border-radius: 999px;

    color: #FFFFFF;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--primary-dark)
        );

    box-shadow:
        0 8px 24px
        rgba(217, 75, 61, .28);

    font-size: .9rem;

    font-weight: 600;

    white-space: nowrap;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        filter .25s ease;
}


.header-business-btn:hover {
    transform:
        translateY(-2px);

    box-shadow:
        0 12px 30px
        rgba(217, 75, 61, .38);

    filter:
        brightness(1.05);
}


.header-business-btn i {
    font-size: 1rem;
}


/* ==========================================================
   20. BOUTONS GÉNÉRAUX
========================================================== */

.btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 14px 28px;

    border-radius: 999px;

    font-weight: 600;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        background .3s ease,
        color .3s ease;
}


.btn:hover {
    transform:
        translateY(-3px);
}


.btn-primary {
    color: #FFFFFF;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--primary-dark)
        );

    box-shadow:
        0 10px 25px
        rgba(217, 75, 61, .25);
}


.btn-primary:hover {
    box-shadow:
        0 15px 32px
        rgba(217, 75, 61, .35);
}


.btn-outline {
    color: var(--primary);

    border:
        2px solid
        var(--primary);

    background: transparent;
}


.btn-outline:hover {
    color: #FFFFFF;

    background:
        var(--primary);
}


/* ==========================================================
   21. BOUTON OUTLINE DANS LE HERO
========================================================== */

.hero .btn-outline {
    color: #FFFFFF;

    border-color:
        rgba(255, 255, 255, .75);
}


.hero .btn-outline:hover {
    color: var(--dark);

    background: #FFFFFF;

    border-color: #FFFFFF;
}


/* ==========================================================
   22. BADGES
========================================================== */

.badge {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 9px 18px;

    margin-bottom: 18px;

    border:
        1px solid
        rgba(217, 75, 61, .22);

    border-radius: 999px;

    background:
        rgba(217, 75, 61, .09);

    color: var(--primary);

    font-size: .85rem;

    font-weight: 600;

    letter-spacing: .5px;
}


.hero .badge {
    color: #FFFFFF;

    border-color:
        rgba(243, 223, 192, .22);

    background:
        rgba(255, 255, 255, .08);

    backdrop-filter:
        blur(10px);
}


/* ==========================================================
   23. HERO
========================================================== */

.hero {
    position: relative;

    min-height: 100vh;

    padding:
        150px 0
        100px;

    display: flex;

    align-items: center;

    overflow: hidden;

    text-align: center;

    color: #FFFFFF;

    background:
        radial-gradient(
            circle at 18% 20%,
            rgba(217, 75, 61, .18),
            transparent 28%
        ),

        radial-gradient(
            circle at 82% 70%,
            rgba(229, 168, 75, .12),
            transparent 28%
        ),

        radial-gradient(
            circle at 50% 100%,
            rgba(110, 155, 85, .07),
            transparent 25%
        ),

        linear-gradient(
            135deg,
            #171515,
            #292626 55%,
            #1C1918
        );
}


.hero::before {
    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    background-image:
        linear-gradient(
            rgba(243, 223, 192, .025) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(243, 223, 192, .025) 1px,
            transparent 1px
        );

    background-size:
        60px 60px;
}


.hero::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: -430px;

    width: 600px;
    height: 600px;

    transform:
        translateX(-50%);

    border-radius: 50%;

    background:
        rgba(217, 75, 61, .20);

    filter:
        blur(120px);
}


.hero .container {
    position: relative;

    z-index: 2;
}


.hero h1 {
    margin:
        20px 0;

    color: #FFFFFF;

    text-shadow:
        0 12px 40px
        rgba(0, 0, 0, .35);
}


.hero p {
    max-width: 850px;

    margin:
        0 auto
        1rem;

    color: var(--dark-muted);

    font-size: 1.08rem;
}


/* ==========================================================
   24. HERO BUTTONS
========================================================== */

.hero-buttons {
    margin-top: 40px;

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 16px;

    flex-wrap: wrap;
}


/* ==========================================================
   25. CARTES
========================================================== */

.card {
    position: relative;

    overflow: hidden;

    height: 100%;

    padding: 35px;

    border:
        1px solid
        rgba(217, 75, 61, .08);

    border-radius:
        var(--radius);

    background:
        rgba(255, 255, 255, .96);

    box-shadow:
        var(--shadow);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}


.card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background:
        linear-gradient(
            90deg,
            var(--primary),
            var(--accent)
        );

    opacity: 0;

    transition:
        opacity .3s ease;
}


.card:hover {
    transform:
        translateY(-8px);

    box-shadow:
        var(--shadow-hover);

    border-color:
        rgba(217, 75, 61, .16);
}


.card:hover::before {
    opacity: 1;
}


.card i {
    margin-bottom: 20px;

    color:
        var(--primary);

    font-size:
        2.4rem;
}


.card h3 {
    margin-bottom:
        14px;
}


/* ==========================================================
   26. IMAGES
========================================================== */

.img-rounded {
    width: 100%;

    display: block;

    border-radius:
        var(--radius);

    object-fit: cover;
}


.shadow {
    box-shadow:
        0 20px 45px
        rgba(40, 30, 25, .14);
}


/* ==========================================================
   27. CHECK LIST
========================================================== */

.check-list {
    display: flex;

    flex-direction: column;

    gap: 14px;

    margin-top: 28px;
}


.check-list li {
    position: relative;

    display: flex;

    align-items: flex-start;

    gap: 12px;

    color:
        var(--text-light);
}


.check-list li::before {
    content: "✓";

    flex-shrink: 0;

    width: 25px;
    height: 25px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    color: #FFFFFF;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--accent)
        );

    font-size: .8rem;

    font-weight: 700;
}


/* ==========================================================
   28. STATISTIQUES
========================================================== */

.stats-grid {
    display: grid;

    grid-template-columns:
        repeat(
            4,
            minmax(0, 1fr)
        );

    gap: 25px;
}


.stats-card {
    padding: 35px 25px;

    text-align: center;

    border:
        1px solid
        rgba(217, 75, 61, .09);

    border-radius:
        var(--radius);

    background:
        #FFFFFF;

    box-shadow:
        var(--shadow);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


.stats-card:hover {
    transform:
        translateY(-6px);

    box-shadow:
        var(--shadow-hover);
}


.stats-card h2 {
    margin-bottom: 10px;

    color:
        var(--primary);
}


.stats-card h2::after {
    display: none;
}


.stats-card p {
    margin: 0;
}


/* ==========================================================
   29. TIMELINE
========================================================== */

.timeline {
    display: grid;

    grid-template-columns:
        repeat(
            auto-fit,
            minmax(220px, 1fr)
        );

    gap: 30px;

    margin-top: 50px;
}


.timeline-item {
    position: relative;

    padding: 35px 25px;

    text-align: center;

    border:
        1px solid
        rgba(217, 75, 61, .08);

    border-radius:
        var(--radius);

    background: #FFFFFF;

    box-shadow:
        var(--shadow);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


.timeline-item:hover {
    transform:
        translateY(-8px);

    box-shadow:
        var(--shadow-hover);
}


.timeline-icon {
    width: 70px;
    height: 70px;

    margin:
        0 auto
        25px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    color: #FFFFFF;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--accent)
        );

    font-size: 28px;
}


/* ==========================================================
   30. FORMULAIRES
========================================================== */

.contact-form,
.form {
    display: flex;

    flex-direction: column;

    gap: 24px;
}


.form-group {
    display: flex;

    flex-direction: column;

    gap: 9px;
}


.form-group label {
    color:
        var(--dark);

    font-weight: 600;
}


.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding:
        14px
        17px;

    border:
        1px solid
        #DDD4CC;

    border-radius:
        14px;

    color:
        var(--text);

    background:
        #FFFFFF;

    transition:
        border-color .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}


.form-group textarea {
    min-height: 180px;

    resize: vertical;
}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;

    border-color:
        var(--primary);

    box-shadow:
        0 0 0 4px
        rgba(217, 75, 61, .10);
}


.form-group small {
    color:
        var(--text-light);

    font-size:
        .86rem;
}


/* ==========================================================
   31. INPUT FILE
========================================================== */

input[type="file"] {
    padding: 10px;

    cursor: pointer;

    background:
        var(--light);
}


input[type="file"]::file-selector-button {
    margin-right: 15px;

    padding:
        10px
        17px;

    border: none;

    border-radius:
        10px;

    color:
        #FFFFFF;

    background:
        var(--primary);

    font-weight:
        600;

    cursor:
        pointer;

    transition:
        background .25s ease;
}


input[type="file"]::file-selector-button:hover {
    background:
        var(--primary-dark);
}


/* ==========================================================
   32. CHECKBOX
========================================================== */

.checkbox {
    display: flex;

    align-items: flex-start;

    gap: 13px;

    cursor: pointer;

    line-height: 1.6;
}


.checkbox input {
    flex-shrink: 0;

    width: 18px;
    height: 18px;

    margin-top: 4px;

    accent-color:
        var(--primary);
}


.checkbox a {
    color:
        var(--primary);

    font-weight:
        600;
}


.checkbox a:hover {
    text-decoration:
        underline;
}


/* ==========================================================
   33. ALERTES
========================================================== */

.alert {
    margin-bottom: 35px;

    padding: 20px 22px;

    border-radius:
        16px;
}


.alert-success {
    color: #276137;

    border:
        1px solid
        #B9D9C0;

    background:
        #EEF8F0;
}


.alert-danger {
    color: #9D3028;

    border:
        1px solid
        #F0BDB8;

    background:
        #FFF1EF;
}


.alert ul {
    padding-left: 20px;

    list-style:
        disc;
}


/* ==========================================================
   34. PAGES LÉGALES
========================================================== */

.legal-card {
    margin-bottom: 30px;

    padding: 40px;

    border:
        1px solid
        rgba(217, 75, 61, .08);

    border-radius:
        var(--radius);

    background:
        #FFFFFF;

    box-shadow:
        var(--shadow);
}


.legal-card h2 {
    color:
        var(--primary);
}


.legal-card h3 {
    margin-bottom:
        18px;
}


.legal-card ul {
    margin:
        20px 0;

    padding-left:
        20px;
}


.legal-card a {
    color:
        var(--primary);

    font-weight:
        600;
}


.legal-card a:hover {
    text-decoration:
        underline;
}


/* ==========================================================
   35. TABLE COOKIES
========================================================== */

.cookies-table {
    width: 100%;

    margin-top: 20px;

    border-collapse:
        collapse;

    overflow: hidden;
}


.cookies-table th {
    padding: 15px;

    text-align: left;

    color: #FFFFFF;

    background:
        var(--primary);
}


.cookies-table td {
    padding: 15px;

    border:
        1px solid
        var(--gray);
}


.cookies-table tr:nth-child(even) {
    background:
        var(--light);
}


/* ==========================================================
   36. FAQ
========================================================== */

.faq-item {
    border:
        1px solid
        var(--gray);

    border-radius:
        var(--radius-small);

    background:
        #FFFFFF;

    overflow:
        hidden;
}


.faq-item h3 {
    padding: 20px;

    cursor: pointer;
}


/* ==========================================================
   37. COOKIE MODAL
========================================================== */

.cookie-modal {
    position: fixed;

    inset: 0;

    z-index: 99999;

    display: none;

    align-items: center;

    justify-content: center;

    padding: 20px;

    background:
        rgba(23, 21, 21, .72);

    backdrop-filter:
        blur(10px);
}


.cookie-modal.show {
    display: flex;
}


.cookie-popup {
    width:
        min(100%, 650px);

    padding:
        42px;

    border:
        1px solid
        rgba(217, 75, 61, .10);

    border-radius:
        26px;

    background:
        #FFFFFF;

    box-shadow:
        0 30px 80px
        rgba(0, 0, 0, .30);

    animation:
        cookiePopup .35s ease;
}


@keyframes cookiePopup {

    from {
        opacity: 0;

        transform:
            translateY(20px)
            scale(.96);
    }

    to {
        opacity: 1;

        transform:
            translateY(0)
            scale(1);
    }

}


.cookie-header {
    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 25px;
}


.cookie-header i {
    color:
        var(--primary);

    font-size:
        38px;
}


.cookie-header h2 {
    margin: 0;
}


.cookie-options {
    display: flex;

    flex-direction: column;

    gap: 18px;

    margin:
        30px 0;
}


.cookie-options label {
    display: flex;

    align-items: center;

    gap: 12px;
}


.cookie-options input {
    width: 20px;
    height: 20px;

    accent-color:
        var(--primary);
}


.cookie-actions {
    display: flex;

    justify-content: flex-end;

    gap: 15px;

    flex-wrap: wrap;

    margin-top: 30px;
}


.cookie-links {
    margin-top: 30px;

    text-align: center;

    font-size: .88rem;
}


.cookie-links a {
    color:
        var(--primary);
}


/* ==========================================================
   38. FOOTER
========================================================== */

.footer-10 {
    position: relative;

    margin-top: 80px;

    padding-bottom: 30px;

    color:
        #B8AAA1;

    background:
        #171515;
}


/* ==========================================================
   39. VAGUE DU FOOTER
========================================================== */

.footer-top-decoration {
    position: relative;

    width: 100%;

    margin-bottom: 55px;
}


.footer-wave-bg {
    width: 100%;

    line-height: 0;
}


.footer-wave-bg svg {
    display: block;

    width: 100%;
    height: 90px;
}


/* ==========================================================
   40. LOGO FOOTER
========================================================== */

.footer-central-logo {
    position: absolute;

    top: 50%;
    left: 50%;

    z-index: 2;

    width: 150px;
    height: 150px;

    display: flex;

    align-items: center;

    justify-content: center;

    transform:
        translate(-50%, -50%);

    border:
        3px solid
        var(--primary);

    border-radius:
        50%;

    background:
        #171515;

    box-shadow:
        0 12px 35px
        rgba(0, 0, 0, .45);
}


.footer-central-logo a {
    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;

    justify-content: center;
}


.footer-central-logo img {
    width: 115px;
    height: 115px;

    object-fit: contain;
}


/* ==========================================================
   41. GRILLE FOOTER
========================================================== */

.footer-grid-10 {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 45px;

    padding:
        15px 0
        35px;

    border-bottom:
        1px solid
        rgba(255, 255, 255, .08);
}


.footer-col h4 {
    margin-bottom: 18px;

    color:
        #FFFFFF;

    font-size:
        1.35rem;
}


.footer-col p,
.footer-col ul {
    margin: 0;

    color:
        #B8AAA1;

    font-size:
        .96rem;

    line-height:
        1.8;
}


.footer-col ul {
    padding: 0;
}


.footer-col ul li {
    margin-bottom:
        10px;
}


.footer-col a {
    color:
        #B8AAA1;

    transition:
        color .25s ease;
}


.footer-col a:hover {
    color:
        #FFFFFF;
}


.footer-col i {
    width: 22px;

    margin-right: 8px;

    color:
        var(--primary);

    text-align: center;
}


/* ==========================================================
   42. RÉSEAUX SOCIAUX
========================================================== */

.footer-social-title {
    margin-top:
        22px;
}


.footer-socials-10 {
    display: flex;

    gap: 12px;

    margin-top:
        15px;
}


.footer-socials-10 a {
    width: 46px;
    height: 46px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid
        rgba(255, 255, 255, .08);

    border-radius:
        50%;

    color:
        #FFFFFF;

    background:
        #292626;

    transition:
        transform .25s ease,
        background .25s ease,
        border-color .25s ease;
}


.footer-socials-10 a:hover {
    transform:
        translateY(-4px);

    border-color:
        var(--primary);

    background:
        var(--primary);
}


.footer-socials-10 a i {
    width: auto;

    margin: 0;

    color:
        #FFFFFF;

    font-size:
        1.1rem;
}


/* ==========================================================
   43. BAS DU FOOTER
========================================================== */

.footer-bottom-10 {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    padding-top:
        28px;

    color:
        #8F8178;

    font-size:
        .88rem;
}


.footer-bottom-10 p {
    margin: 0;

    color:
        #8F8178;
}


.footer-legal-10 {
    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 10px;

    flex-wrap: wrap;
}


.footer-legal-10 a {
    color:
        #8F8178;

    transition:
        color .25s ease;
}


.footer-legal-10 a:hover {
    color:
        #FFFFFF;
}


.footer-legal-10 span {
    color:
        #4D4541;
}


/* ==========================================================
   44. ANIMATIONS
========================================================== */

.fade-up {
    animation:
        fadeUp .75s ease
        forwards;
}


@keyframes fadeUp {

    from {
        opacity: 0;

        transform:
            translateY(30px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }

}


/* ==========================================================
   45. ACCESSIBILITÉ
========================================================== */

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline:
        3px solid
        rgba(229, 168, 75, .65);

    outline-offset:
        3px;
}


/* ==========================================================
   46. TABLETTE / PETIT DESKTOP
========================================================== */

@media (max-width: 1250px) {

    .header-layout {
        gap: 12px;

        padding:
            8px 18px;
    }


    .header .nav-menu {
        gap: 0;
    }


    .header .nav-menu li a {
        padding:
            9px 5px;

        font-size:
            .70rem;
    }


    .header-central-logo {
        padding:
            0 7px;
    }


    .header-central-logo img {
        height:
            88px;

        max-width:
            180px;
    }


    .header-business-btn {
        padding:
            10px 14px;

        font-size:
            .76rem;
    }


    .stats-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* ==========================================================
   47. TABLETTE & MOBILE
========================================================== */

@media (max-width: 992px) {

    .section {
        padding:
            75px 0;
    }


    .grid-2 {
        grid-template-columns:
            1fr;

        gap:
            40px;
    }


    .header-container-wrapper {
        padding:
            8px 8px 0;
    }


    .header {
        border-radius:
            18px;
    }


    .header-layout {
        min-height:
            auto;

        grid-template-columns:
            1fr;

        justify-items: center;

        gap: 18px;

        padding: 15px 20px;
    }


    .header-left {
        width: 100%;
        justify-content: center;
    }


    .header .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px;
    }


    .header .nav-menu li a {
        font-size: .82rem;
        padding: 8px 10px;
    }


    .header-central-logo {
        order: -1;
    }


    .header-central-logo img {
        height: 75px;
    }


    .header-right {
        width: 100%;
        justify-content: center;
    }


    .footer-grid-10 {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 30px;
    }

}


@media (max-width: 576px) {

    .footer-grid-10 {
        grid-template-columns:
            1fr;

        gap: 30px;
    }


    .footer-bottom-10 {
        flex-direction:
            column;

        text-align:
            center;

        gap: 15px;
    }


    .footer-legal-10 {
        justify-content:
            center;
    }

}

/* ==========================================================
   OUTIL D'ACCESSIBILITÉ
========================================================== */

.accessibility-tool {
    position: relative;
    z-index: 50000;
}


/* ==========================================================
   BOUTON FLOTTANT
========================================================== */

.accessibility-toggle {
    position: fixed;

    right: 22px;
    bottom: 22px;

    z-index: 50001;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    min-height: 52px;

    padding: 12px 20px;

    border: 2px solid rgba(255, 255, 255, .15);

    border-radius: 999px;

    color: #FFFFFF;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--primary-dark)
        );

    box-shadow:
        0 12px 35px
        rgba(0, 0, 0, .25);

    font-weight: 600;

    cursor: pointer;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.accessibility-toggle:hover {
    transform: translateY(-3px);

    box-shadow:
        0 16px 40px
        rgba(0, 0, 0, .32);
}


.accessibility-toggle i {
    font-size: 1.35rem;
}


/* ==========================================================
   PANNEAU
========================================================== */

.accessibility-panel {
    position: fixed;

    right: 22px;
    bottom: 90px;

    z-index: 50000;

    width: min(420px, calc(100vw - 30px));

    max-height: calc(100vh - 120px);

    padding: 25px;

    overflow-y: auto;

    border:
        1px solid
        rgba(217, 75, 61, .15);

    border-radius: 24px;

    background: #FFFFFF;

    box-shadow:
        0 25px 70px
        rgba(0, 0, 0, .28);

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(20px)
        scale(.97);

    transition:
        opacity .25s ease,
        visibility .25s ease,
        transform .25s ease;
}


.accessibility-panel.open {
    opacity: 1;

    visibility: visible;

    transform:
        translateY(0)
        scale(1);
}


/* ==========================================================
   HEADER ACCESSIBILITÉ
========================================================== */

.accessibility-header {
    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    gap: 20px;

    margin-bottom: 25px;
}


.accessibility-eyebrow {
    display: block;

    margin-bottom: 4px;

    color: var(--primary);

    font-size: .75rem;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1px;
}


.accessibility-header h2 {
    margin: 0 0 6px;

    font-size: 2rem;
}


.accessibility-header p {
    margin: 0;

    font-size: .88rem;
}


.accessibility-close {
    flex-shrink: 0;

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: var(--dark);

    background: var(--light);

    cursor: pointer;
}


/* ==========================================================
   SECTIONS
========================================================== */

.accessibility-section {
    padding: 20px 0;

    border-top:
        1px solid
        var(--gray);
}


.accessibility-section h3 {
    display: flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 15px;

    font-family: "Poppins", sans-serif;

    font-size: .95rem;

    font-weight: 700;

    letter-spacing: 0;

    text-transform: none;
}


.accessibility-section h3 i {
    color: var(--primary);
}


/* ==========================================================
   OPTIONS
========================================================== */

.accessibility-options {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 10px;
}


.accessibility-option {
    min-height: 80px;

    padding: 14px 10px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 8px;

    text-align: center;

    border:
        1px solid
        var(--gray);

    border-radius: 14px;

    color: var(--text);

    background: var(--light);

    cursor: pointer;

    transition:
        border-color .2s ease,
        background .2s ease,
        color .2s ease,
        transform .2s ease;
}


.accessibility-option:hover {
    transform: translateY(-2px);

    border-color: var(--primary);
}


.accessibility-option i {
    color: var(--primary);

    font-size: 1.25rem;
}


.accessibility-option span {
    font-size: .78rem;

    font-weight: 600;
}


/* OPTION ACTIVE */

.accessibility-option.active,
.accessibility-option[aria-pressed="true"] {
    color: #FFFFFF;

    border-color: var(--primary);

    background: var(--primary);
}


.accessibility-option.active i,
.accessibility-option[aria-pressed="true"] i {
    color: #FFFFFF;
}


/* ==========================================================
   RESET
========================================================== */

.accessibility-reset {
    width: 100%;

    margin-top: 20px;

    padding: 13px 18px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    border:
        1px solid
        var(--gray);

    border-radius: 12px;

    color: var(--text);

    background: var(--light);

    font-weight: 600;

    cursor: pointer;
}


.accessibility-reset:hover {
    border-color: var(--primary);

    color: var(--primary);
}


/* ==========================================================
   NOTE
========================================================== */

.accessibility-note {
    margin: 16px 0 0;

    text-align: center;

    color: var(--text-light);

    font-size: .72rem;
}


.accessibility-note i {
    margin-right: 5px;

    color: var(--green);
}


/* ==========================================================
   MODE : TEXTE AGRANDI
========================================================== */

html.accessibility-large-text {
    font-size: 118%;
}


/* ==========================================================
   MODE : DYSLEXIE / DYS
========================================================== */

html.accessibility-dyslexia body,
html.accessibility-dyslexia button,
html.accessibility-dyslexia input,
html.accessibility-dyslexia select,
html.accessibility-dyslexia textarea {
    font-family:
        Arial,
        Verdana,
        sans-serif !important;
}


html.accessibility-dyslexia body {
    line-height: 1.9;
}


html.accessibility-dyslexia p,
html.accessibility-dyslexia li {
    letter-spacing: .04em;

    word-spacing: .12em;
}


/*
 * On désactive également Bebas Neue :
 * elle peut être moins confortable pour certaines personnes.
 */

html.accessibility-dyslexia h1,
html.accessibility-dyslexia h2,
html.accessibility-dyslexia h3,
html.accessibility-dyslexia h4,
html.accessibility-dyslexia h5,
html.accessibility-dyslexia h6 {
    font-family:
        Arial,
        Verdana,
        sans-serif !important;

    font-weight: 700;

    letter-spacing: .04em;
}


/* ==========================================================
   MODE : ESPACEMENT RENFORCÉ
========================================================== */

html.accessibility-spacing p,
html.accessibility-spacing li,
html.accessibility-spacing a,
html.accessibility-spacing button {
    letter-spacing: .08em;

    word-spacing: .14em;

    line-height: 2;
}


/* ==========================================================
   MODE : CONTRASTE ÉLEVÉ
========================================================== */

html.accessibility-contrast body {
    color: #FFFFFF;

    background: #000000;
}


html.accessibility-contrast .section,
html.accessibility-contrast .section-light {
    color: #FFFFFF;

    background: #000000;
}


html.accessibility-contrast .card,
html.accessibility-contrast .legal-card,
html.accessibility-contrast .stats-card,
html.accessibility-contrast .timeline-item {
    color: #FFFFFF;

    border:
        2px solid
        #FFFFFF;

    background: #000000;
}


html.accessibility-contrast p,
html.accessibility-contrast li {
    color: #FFFFFF;
}


html.accessibility-contrast h1,
html.accessibility-contrast h2,
html.accessibility-contrast h3,
html.accessibility-contrast h4 {
    color: #FFFFFF;
}


html.accessibility-contrast a {
    color: #FFFF00;
}


html.accessibility-contrast .accessibility-panel {
    color: #FFFFFF;

    border:
        2px solid
        #FFFFFF;

    background: #000000;
}


html.accessibility-contrast .accessibility-option,
html.accessibility-contrast .accessibility-reset,
html.accessibility-contrast .accessibility-close {
    color: #FFFFFF;

    border-color: #FFFFFF;

    background: #000000;
}


/* ==========================================================
   MODE : NIVEAUX DE GRIS
========================================================== */

html.accessibility-grayscale {
    filter: grayscale(100%);
}


/* ==========================================================
   MODE : LIENS SOULIGNÉS
========================================================== */

html.accessibility-links a {
    text-decoration: underline !important;

    text-decoration-thickness: 2px !important;

    text-underline-offset: 3px !important;
}


/* ==========================================================
   MODE : GRAND CURSEUR
========================================================== */

html.accessibility-cursor,
html.accessibility-cursor * {
    cursor: default !important;
}


html.accessibility-cursor a,
html.accessibility-cursor button,
html.accessibility-cursor label,
html.accessibility-cursor input,
html.accessibility-cursor select {
    cursor: pointer !important;
}


/* ==========================================================
   MODE : RÉDUCTION DES ANIMATIONS
========================================================== */

html.accessibility-animations *,
html.accessibility-animations *::before,
html.accessibility-animations *::after {
    animation: none !important;

    transition: none !important;

    scroll-behavior: auto !important;
}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 600px) {

    .accessibility-toggle {
        right: 12px;
        bottom: 12px;

        width: 52px;
        height: 52px;

        padding: 0;
    }


    .accessibility-toggle span {
        display: none;
    }


    .accessibility-panel {
        right: 10px;
        bottom: 75px;

        width:
            calc(100vw - 20px);

        max-height:
            calc(100vh - 95px);

        padding: 20px;
    }


    .accessibility-options {
        grid-template-columns:
            repeat(2, 1fr);
    }

}