/* =========================================
   AfriCo — Professional Website Styles v2
   ========================================= */

:root {
    --color-primary: #0c1f3a;
    --color-primary-light: #1a3a5c;
    --color-primary-dark: #070f1e;
    --color-accent: #c8a94e;
    --color-accent-light: #e0c872;
    --color-accent-dark: #a8882e;
    --color-white: #ffffff;
    --color-bg: #fafbfc;
    --color-bg-alt: #f0f2f5;
    --color-text: #2c3e50;
    --color-text-light: #6c7a8d;
    --color-border: #e1e5ea;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --max-width: 1200px;
    --header-height: 72px;
    --radius: 8px;
    --radius-lg: 16px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
    --shadow: 0 4px 20px rgba(0,0,0,.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,.15);
    --transition: .3s cubic-bezier(.4,0,.2,1);
    --transition-slow: .6s cubic-bezier(.4,0,.2,1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

/* Compense la hauteur de l'en-tête fixe pour les ancres */
section[id], [id] {
    scroll-margin-top: calc(var(--header-height) + 16px);
}

body {
    font-family: var(--font-family);
    color: var(--color-text);
    background: var(--color-white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   ANIMATIONS KEYFRAMES
   ======================================== */

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-60px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(60px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes zoomIn {
    from { opacity: 0; transform: scale(.85); }
    to   { opacity: 1; transform: scale(1); }
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(200,169,78,.4); }
    50%      { box-shadow: 0 0 0 12px rgba(200,169,78,0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-12px); }
}

@keyframes shimmer {
    0%   { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes countUp {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes kenBurnsIn {
    0%   { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.12) translate(-10px, -6px); }
}

@keyframes kenBurnsOut {
    0%   { transform: scale(1.12) translate(8px, 4px); }
    100% { transform: scale(1) translate(0, 0); }
}

/* Reveal classes for JS */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .7s cubic-bezier(.4,0,.2,1),
                transform .7s cubic-bezier(.4,0,.2,1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-family);
    font-size: .9375rem;
    font-weight: 600;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all .35s cubic-bezier(.4,0,.2,1);
    border: 2px solid transparent;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: var(--color-accent);
    color: var(--color-primary-dark);
    border-color: var(--color-accent);
}
.btn--primary:hover {
    background: var(--color-accent-light);
    border-color: var(--color-accent-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(200,169,78,.35);
}
.btn--primary:active {
    transform: translateY(-1px);
}

.btn--outline {
    background: transparent;
    color: var(--color-white);
    border-color: rgba(255,255,255,.5);
}
.btn--outline:hover {
    background: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,.2);
}

.btn--full { width: 100%; }

/* ========================================
   SCROLL PROGRESS BAR
   ======================================== */

.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
    z-index: 1001;
    transition: width .1s linear;
    box-shadow: 0 0 10px rgba(200,169,78,.5);
}

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(245, 240, 230, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    transition: all .4s cubic-bezier(.4,0,.2,1);
}

.header.scrolled {
    background: rgba(235, 228, 215, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 2px 30px rgba(0,0,0,.08);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.header__logo-img {
    height: 46px;
    width: auto;
    filter: drop-shadow(0 1px 3px rgba(0,0,0,.08));
    transition: var(--transition);
}
.header__logo-img:hover {
    transform: scale(1.05);
}

/* Header Social Links */
.header__social {
    display: flex;
    gap: 12px;
    margin-left: 24px;
}

.footer__social {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 20px;
}

.header-social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(12, 31, 58, 0.08);
    border: 1px solid rgba(12, 31, 58, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    transition: all .3s cubic-bezier(.4,0,.2,1);
}

.header-social-link:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-primary-dark);
    transform: translateY(-2px);
}

.header-social-link svg {
    width: 18px;
    height: 18px;
}

/* ----- Navigation ----- */
.nav__list {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav__link {
    font-size: .875rem;
    font-weight: 500;
    color: rgba(44, 62, 80, .85);
    transition: all .3s ease;
    position: relative;
    padding: 4px 0;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width .3s cubic-bezier(.4,0,.2,1);
}

.nav__link:hover { color: var(--color-primary); }
.nav__link:hover::after { width: 100%; }

.nav__link.active { color: var(--color-accent-dark); }
.nav__link.active::after { width: 100%; }

.nav__link--cta {
    background: var(--color-accent);
    color: var(--color-primary-dark);
    padding: 10px 24px;
    border-radius: var(--radius);
    font-weight: 600;
}
.nav__link--cta::after { display: none; }
.nav__link--cta:hover {
    background: var(--color-accent-light);
    color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(200,169,78,.3);
}

/* ----- Hamburger ----- */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 100;
}
.hamburger span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--color-primary);
    border-radius: 2px;
    transition: all .3s ease;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

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

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: var(--header-height);
}

.hero__bg {
    position: absolute;
    inset: -40px;
    overflow: hidden;
}

/* ----- Diaporama de fond : images pleines + fondu enchaîné + Ken Burns ----- */
.hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    z-index: 0;
    transition: opacity 2.2s ease-in-out;
    will-change: opacity, transform;
    backface-visibility: hidden;
    overflow: hidden;
}

.hero__slide.is-active {
    opacity: 1;
    z-index: 1;
}

/* Zooms très lents, alternance in/out pour varier le rythme visuel.
   Appliqués à l'<img> interne (transform sur l'image, pas le conteneur).
   Durées volontairement différentes pour un rendu organique. */
.hero__slide:nth-child(odd) .hero__slide-img {
    animation: kenBurnsIn 22s ease-in-out infinite alternate;
}
.hero__slide:nth-child(even) .hero__slide-img {
    animation: kenBurnsOut 26s ease-in-out infinite alternate;
}

/* Les slides contiennent désormais une <img> fill (WebP responsive).
   Le zoom Ken Burns s'applique à l'image pour éviter de transformer
   le conteneur lui-même (compatibilité réduite du transform sur
   background). */
.hero__slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* ----- Voile de lisibilité -----
   Assombrit la zone du texte (à gauche et en bas) tout en laissant
   la photo respirer à droite : l'image reste bien visible, le texte
   est toujours sur fond sombre. */
.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        radial-gradient(ellipse at 50% 40%, transparent 55%, rgba(7,15,30,.35) 100%),
        linear-gradient(100deg, rgba(12,31,58,.94) 0%, rgba(12,31,58,.80) 32%, rgba(12,31,58,.42) 58%, rgba(12,31,58,.12) 100%),
        linear-gradient(180deg, rgba(12,31,58,.50) 0%, rgba(12,31,58,.15) 40%, rgba(12,31,58,.55) 100%);
    pointer-events: none;
}

.hero__particles {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
}

.hero__particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--color-accent);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 8s infinite;
}

@keyframes particleFloat {
    0%   { opacity: 0; transform: translateY(100vh) scale(0); }
    20%  { opacity: .6; }
    80%  { opacity: .6; }
    100% { opacity: 0; transform: translateY(-10vh) scale(1); }
}

.hero__inner {
    position: relative;
    z-index: 3;
    width: 100%;
    padding-top: 40px;
    padding-bottom: 60px;
    text-align: left;
}

.hero__content {
    max-width: 840px;
    margin-bottom: 60px;
}

/* Entrée en cascade : badge → titre → sous-titre → actions.
   `backwards` + retards décalés = le texte est VISIBLE par défaut
   (opacité 1) ; l'animation ne fait que l'habiller au chargement.
   Si l'animation est désactivée (reduced-motion) ou interrompue,
   le texte reste affiché — jamais masqué. */
.hero__content > * {
    opacity: 1;
    animation: heroFadeUp .9s cubic-bezier(.4,0,.2,1) backwards;
}
.hero__content > *:nth-child(1) { animation-delay: .10s; }
.hero__content > *:nth-child(2) { animation-delay: .24s; }
.hero__content > *:nth-child(3) { animation-delay: .38s; }
.hero__content > *:nth-child(4) { animation-delay: .52s; }

.hero__stats {
    opacity: 1;
    animation: heroFadeUp .9s cubic-bezier(.4,0,.2,1) .66s backwards;
}

@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(26px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero__badge {
    display: inline-block;
    font-size: .8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    background: rgba(200,169,78,.16);
    border: 1px solid rgba(200,169,78,.35);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.hero__title {
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.08;
    margin-bottom: 22px;
    letter-spacing: -1px;
    text-shadow: 0 1px 4px rgba(7,15,30,.35);
}

.hero__title-accent {
    background: linear-gradient(135deg, var(--color-accent-light), var(--color-accent), var(--color-accent-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    font-size: 1.15em;
    letter-spacing: 2px;
    filter: drop-shadow(0 1px 2px rgba(7,15,30,.30));
}

.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255,255,255,.95);
    max-width: 640px;
    margin: 0 0 36px;
    line-height: 1.7;
    font-weight: 300;
    text-shadow: 0 1px 3px rgba(7,15,30,.35);
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 900px;
}

.hero-stat {
    text-align: center;
    padding: 24px 16px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius);
    backdrop-filter: blur(8px);
    transition: all .4s cubic-bezier(.4,0,.2,1);
}

.hero-stat:hover {
    background: rgba(255,255,255,.12);
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0,0,0,.2);
}

.hero-stat__number {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-accent);
    margin-bottom: 4px;
}

.hero-stat__label {
    font-size: .75rem;
    color: rgba(255,255,255,.6);
    text-transform: uppercase;
    letter-spacing: .5px;
    font-weight: 500;
}

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

.section {
    padding: 100px 0;
    position: relative;
}

.section--alt {
    background: var(--color-bg-alt);
}

.section--alt::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    opacity: .3;
}

.section__header {
    text-align: center;
    margin-bottom: 60px;
}

.section__tag {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent-dark);
    background: rgba(200,169,78,.1);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 16px;
    letter-spacing: -.5px;
}

.section__divider {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
    margin: 0 auto;
    border-radius: 2px;
}

.section__desc {
    max-width: 650px;
    margin: 20px auto 0;
    color: var(--color-text-light);
    font-size: 1.0625rem;
}

/* ========================================
   PRESENTATION
   ======================================== */

.presentation__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
    align-items: start;
}

.presentation__text p {
    margin-bottom: 20px;
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--color-text);
}

.presentation__text strong {
    color: var(--color-primary);
}

/* Info Card */
.info-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.info-card:hover {
    box-shadow: var(--shadow);
}

.info-card__row {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
    font-size: .875rem;
}

.info-card__row:last-child { border-bottom: none; }

.info-card__label {
    font-weight: 600;
    color: var(--color-primary);
    min-width: 120px;
    flex-shrink: 0;
}

/* VMV Cards */
.vmv__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.vmv-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    transition: all .4s cubic-bezier(.4,0,.2,1);
    position: relative;
    overflow: hidden;
}

.vmv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .5s cubic-bezier(.4,0,.2,1);
}

.vmv-card:hover::before {
    transform: scaleX(1);
}

.vmv-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.vmv-card__icon {
    font-size: 1.75rem;
    color: var(--color-accent);
    margin-bottom: 16px;
}

.vmv-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 14px;
}

.vmv-card p {
    font-size: .9375rem;
    line-height: 1.7;
    color: var(--color-text-light);
}

.vmv-card__list li {
    font-size: .9375rem;
    color: var(--color-text-light);
    padding: 6px 0;
    padding-left: 18px;
    position: relative;
}
.vmv-card__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15px;
    width: 6px;
    height: 6px;
    background: var(--color-accent);
    border-radius: 50%;
    transition: var(--transition);
}
.vmv-card__list li:hover::before {
    transform: scale(1.5);
    background: var(--color-accent-light);
}

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

.parallax-section {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.parallax-section__bg {
    position: absolute;
    inset: -40px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    will-change: transform;
    transition: transform .05s linear;
    overflow: hidden;
}

.parallax-section__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

@media (max-width: 768px) {
    .parallax-section__bg {
        background-attachment: scroll;
    }
}

.parallax-section__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(12,31,58,.88) 0%, rgba(12,31,58,.75) 50%, rgba(26,58,92,.7) 100%);
}

.parallax-section__content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 80px 24px;
}

.parallax-section__tag {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    background: rgba(200,169,78,.15);
    border: 1px solid rgba(200,169,78,.3);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.parallax-section__title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -.5px;
}

.parallax-section__text {
    font-size: 1.1rem;
    color: rgba(255,255,255,.7);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

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

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    transition: all .4s cubic-bezier(.4,0,.2,1);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .5s cubic-bezier(.4,0,.2,1);
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(200,169,78,.3);
}

.service-card__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    color: var(--color-accent);
    transition: var(--transition);
}
.service-card:hover .service-card__icon {
    transform: scale(1.1) rotate(-5deg);
}
.service-card__icon svg { width: 100%; height: 100%; }

.service-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 14px;
}

.service-card__list li {
    font-size: .875rem;
    color: var(--color-text-light);
    padding: 5px 0;
    padding-left: 16px;
    position: relative;
    transition: var(--transition);
}
.service-card__list li:hover {
    color: var(--color-primary);
    padding-left: 22px;
}
.service-card__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 5px;
    height: 5px;
    background: var(--color-accent);
    border-radius: 50%;
    transition: var(--transition);
}
.service-card__list li:hover::before {
    background: var(--color-accent-light);
    transform: scale(1.3);
}

/* ========================================
   REFERENCES
   ======================================== */

.ref-tabs {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.ref-tab {
    padding: 10px 24px;
    font-family: var(--font-family);
    font-size: .875rem;
    font-weight: 600;
    border: 2px solid var(--color-border);
    background: var(--color-white);
    border-radius: 50px;
    cursor: pointer;
    transition: all .3s ease;
    color: var(--color-text-light);
}

.ref-tab:hover {
    border-color: var(--color-accent);
    color: var(--color-primary);
    transform: translateY(-2px);
}

.ref-tab.active {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
    border-color: var(--color-accent);
    color: var(--color-primary-dark);
    box-shadow: 0 4px 15px rgba(200,169,78,.3);
}

.ref-content { display: none; }
.ref-content.active { display: block; }

.ref-table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.ref-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .8125rem;
    min-width: 640px;
}

.ref-table th {
    background: var(--color-primary);
    color: var(--color-white);
    font-weight: 600;
    text-align: left;
    padding: 14px 16px;
    white-space: nowrap;
}

.ref-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--color-border);
    transition: background .2s ease;
}

.ref-table tbody tr:hover td {
    background: rgba(200,169,78,.08);
}

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

.ref-more {
    text-align: center;
    margin-top: 24px;
}

.link-more {
    color: var(--color-accent-dark);
    font-weight: 600;
    font-size: .9rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.link-more:hover {
    color: var(--color-primary);
    gap: 8px;
}

.hidden { display: none; }

/* ========================================
   PARTENAIRES — bandeau de logos défilant (marquee)
   ======================================== */

.logo-marquee {
    position: relative;
    overflow: hidden;
}

.logo-marquee__window {
    overflow: hidden;
    /* dégradés de fondu sur les bords */
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
            mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.logo-marquee__track {
    display: flex;
    width: max-content;
    animation: logoMarquee 36s linear infinite;
}

.logo-marquee__list {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
}

.logo-marquee__item {
    flex-shrink: 0;
    padding: 0 26px;
}

.logo-marquee__item img {
    display: block;
    height: 44px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    filter: grayscale(1) opacity(.72);
    transition: filter .3s ease, transform .3s ease;
}

/* au survol d'un logo : couleurs rétablies */
.logo-marquee__item:hover img {
    filter: grayscale(0) opacity(1);
    transform: scale(1.06);
}

/* pause au survol de l'ensemble du bandeau */
.logo-marquee__window:hover .logo-marquee__track {
    animation-play-state: paused;
}

@keyframes logoMarquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ========================================
   CONTACT
   ======================================== */

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
    transition: var(--transition);
}
.contact-item:hover {
    transform: translateX(6px);
}

.contact-item__icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: rgba(200,169,78,.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    transition: var(--transition);
}
.contact-item:hover .contact-item__icon {
    background: rgba(200,169,78,.2);
    transform: scale(1.05);
}
.contact-item__icon svg {
    width: 22px;
    height: 22px;
}

.contact-item h4 {
    font-size: .9375rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.contact-item p, .contact-item a {
    font-size: .9rem;
    color: var(--color-text-light);
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--color-accent-dark);
}

/* Form */
.contact__form {
    background: var(--color-white);
    padding: 36px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.contact__form:hover {
    box-shadow: var(--shadow);
}

/* Screen reader only text */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Honeypot anti-spam : masqué visuellement et aux lecteurs d'écran */
.form__honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
}

.form__group {
    margin-bottom: 18px;
    position: relative;
}

.form__input,
.form__textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-family);
    font-size: .9375rem;
    border: 2px solid var(--color-border);
    border-radius: var(--radius);
    transition: all .3s ease;
    background: var(--color-bg);
    color: var(--color-text);
    outline: none;
}

.form__input:focus,
.form__textarea:focus {
    border-color: var(--color-accent);
    background: var(--color-white);
    box-shadow: 0 0 0 4px rgba(200,169,78,.1);
}

.form__input::placeholder,
.form__textarea::placeholder {
    color: #b0b8c4;
}

/* Form Status Messages */
.form__status {
    padding: 12px 16px;
    border-radius: var(--radius);
    font-size: .875rem;
    margin-bottom: 18px;
    display: none;
    line-height: 1.6;
}
.form__status--success {
    display: block;
    background: rgba(76, 175, 80, .1);
    color: #2e7d32;
    border: 1px solid rgba(76, 175, 80, .3);
}
.form__status--error {
    display: block;
    background: rgba(244, 67, 54, .1);
    color: #c62828;
    border: 1px solid rgba(244, 67, 54, .3);
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
.spin {
    animation: spin 1s linear infinite;
}

/* ========================================
   BACK TO TOP
   ======================================== */

/* ========================================
   TESTIMONIALS CAROUSEL
   ======================================== */

.testimonials__wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonials__container {
    display: flex;
    transition: transform .5s cubic-bezier(.4,0,.2,1);
    will-change: transform;
}

.testimonial-card {
    flex: 0 0 100%;
    min-width: 0;
    padding: 44px 40px 40px;
    background:
        linear-gradient(180deg, rgba(200,169,78,.07), rgba(255,255,255,0) 42%),
        var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    border-top: 3px solid var(--color-accent);
    box-shadow: var(--shadow-sm);
    transition: box-shadow .4s cubic-bezier(.4,0,.2,1), border-color .4s;
    position: relative;
    overflow: hidden;
}

/* Grande citation décorative en filigrane */
.testimonial-card::before {
    content: "\201C";
    position: absolute;
    top: 6px;
    right: 26px;
    font-size: 7rem;
    line-height: 1;
    font-family: Georgia, "Times New Roman", serif;
    color: var(--color-accent);
    opacity: .12;
    pointer-events: none;
    user-select: none;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: rgba(200,169,78,.35);
}

/* Note en étoiles */
.testimonial-card__rating {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
    color: var(--color-accent);
}

.testimonial-card__rating svg {
    width: 18px;
    height: 18px;
}

.testimonial-card__quote {
    position: relative;
    padding: 0;
    margin-bottom: 28px;
}

.testimonial-card__quote-icon {
    position: absolute;
    top: -16px;
    left: -8px;
    width: 48px;
    height: 48px;
    color: var(--color-accent);
}

.testimonial-card__quote p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-text);
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid var(--color-border);
}

.testimonial-card__avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
    color: var(--color-primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: .875rem;
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(200,169,78,.18);
}

.testimonial-card__author strong {
    display: block;
    font-size: .9375rem;
    font-weight: 600;
    color: var(--color-primary);
}

.testimonial-card__author span {
    display: block;
    font-size: .8125rem;
    color: var(--color-text-light);
}

/* Controls */
.testimonials__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 32px;
}

.testimonials__btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--color-border);
    background: var(--color-white);
    color: var(--color-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
}

.testimonials__btn:hover {
    border-color: var(--color-accent);
    background: var(--color-accent);
    color: var(--color-primary-dark);
    transform: scale(1.05);
}

.testimonials__btn:active {
    transform: scale(.95);
}

.testimonials__btn svg {
    width: 20px;
    height: 20px;
}

.testimonials__dots {
    display: flex;
    gap: 10px;
}

.testimonials__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: var(--color-border);
    cursor: pointer;
    transition: all .3s ease;
    padding: 0;
}

.testimonials__dot.active {
    background: var(--color-accent);
    width: 26px;
    border-radius: 6px;
    box-shadow: 0 0 8px rgba(200,169,78,.4);
}

.testimonials__dot:hover {
    background: var(--color-accent-light);
}

@media (max-width: 768px) {
    .testimonial-card {
        padding: 32px 22px 30px;
    }
    .testimonial-card__quote p {
        font-size: 1rem;
    }
    .testimonial-card__quote-icon {
        width: 40px;
        height: 40px;
    }
    .testimonial-card__rating svg {
        width: 16px;
        height: 16px;
    }
    .testimonial-card::before {
        font-size: 5rem;
        right: 16px;
    }
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-accent);
    color: var(--color-primary-dark);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all .4s cubic-bezier(.4,0,.2,1);
    z-index: 999;
    box-shadow: 0 4px 15px rgba(200,169,78,.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ========================================
   WHATSAPP FLOATING BUTTON
   ======================================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all .4s cubic-bezier(.4,0,.2,1);
    text-decoration: none;
    animation: whatsappPulse 2.5s infinite;
}

.whatsapp-float.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 30px rgba(37, 211, 102, .5);
    background: #20bd5a;
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.whatsapp-float__tooltip {
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%);
    background: var(--color-primary-dark);
    color: var(--color-white);
    font-size: .75rem;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
    pointer-events: none;
}

.whatsapp-float__tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: var(--color-primary-dark);
}

.whatsapp-float:hover .whatsapp-float__tooltip {
    opacity: 1;
    visibility: visible;
    right: calc(100% + 16px);
}

@keyframes whatsappPulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, .5); }
    70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
    }
    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
    .whatsapp-float__tooltip {
        display: none;
    }
}

.back-to-top:hover {
    background: var(--color-accent-light);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(200,169,78,.4);
}

.back-to-top svg {
    width: 22px;
    height: 22px;
}

/* ========================================
   SOCIAL LINKS
   ======================================== */

.social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.social-links__title {
    font-size: .9375rem;
    font-weight: 600;
    color: var(--color-white);
    margin-right: 10px;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: all .3s cubic-bezier(.4,0,.2,1);
    position: relative;
    overflow: hidden;
}

.social-link:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(200, 169, 78, 0.3);
}

.social-link:hover::after {
    content: '';
    position: absolute;
    inset: -2px;
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    animation: pulseGlow 1.5s infinite;
}

.social-link svg {
    width: 20px;
    height: 20px;
    transition: transform .3s ease;
}

.social-link:hover svg {
    transform: scale(1.1);
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: var(--color-primary-dark);
    color: rgba(255,255,255,.7);
    padding: 60px 0 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

.footer__inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer__logo {
    height: 36px;
    width: auto;
    margin-bottom: 16px;
    opacity: .9;
}

.footer__brand p {
    font-size: .875rem;
    line-height: 1.7;
}

.footer h4 {
    font-size: .875rem;
    font-weight: 700;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

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

.footer a {
    font-size: .875rem;
    color: rgba(255,255,255,.5);
    transition: all .3s ease;
    position: relative;
    padding-left: 0;
}

.footer a:hover {
    color: var(--color-accent);
    padding-left: 4px;
}

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 20px 0;
    text-align: center;
    font-size: .8125rem;
}

.footer__bottom strong {
    color: var(--color-white);
}

.footer__legal-link {
    color: rgba(255,255,255,.4);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(255,255,255,.2);
    transition: all .3s ease;
}
.footer__legal-link:hover {
    color: var(--color-accent);
    text-decoration-color: var(--color-accent);
    padding-left: 0;
}

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

@media (max-width: 1024px) {
    .services__grid { grid-template-columns: repeat(2, 1fr); }
    .vmv__grid { grid-template-columns: 1fr; }
    .presentation__grid { grid-template-columns: 1fr; }
    .footer__inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .header__social {
        display: none;
    }

    .social-links {
        gap: 16px;
    }

    .social-link {
        width: 40px;
        height: 40px;
    }

    .social-link svg {
        width: 18px;
        height: 18px;
    }

    .nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: rgba(12,31,58,.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        padding: 24px;
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        visibility: hidden;
        transition: all .4s cubic-bezier(.4,0,.2,1);
        border-bottom: 1px solid rgba(200,169,78,.15);
        box-shadow: 0 20px 40px rgba(0,0,0,.25);
    }

    .nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
        visibility: visible;
    }

    .nav__list {
        flex-direction: column;
        gap: 20px;
    }

    .nav__link { font-size: 1.0625rem; color: rgba(255,255,255,.85); }
    .nav__link:hover { color: var(--color-white); }

    .hamburger { display: flex; }

    .hero__stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        max-width: 100%;
    }

    .hero__actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .services__grid { grid-template-columns: 1fr; }
    .contact__grid { grid-template-columns: 1fr; }

    .footer__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .section { padding: 64px 0; }
    .section__header { margin-bottom: 40px; }

    .parallax-section { min-height: 350px; }
    .parallax-section__content { padding: 60px 24px; }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 480px) {
    .hero-stat__number { font-size: 1.375rem; }
    .ref-tab { font-size: .8rem; padding: 8px 16px; }
    .contact__form { padding: 24px; }
    .chiffre-card__number { font-size: 2.25rem; }
}

/* ========================================
   ACCESSIBILITY — FOCUS VISIBLE
   ======================================== */
:focus-visible {
    outline: 3px solid var(--color-accent);
    outline-offset: 2px;
    border-radius: var(--radius);
}

/* ========================================
   ACCESSIBILITY — SKIP LINK
   ======================================== */
.skip-link {
    position: absolute;
    left: 16px;
    top: -60px;
    z-index: 2000;
    background: var(--color-accent);
    color: var(--color-primary-dark);
    font-weight: 600;
    font-size: .875rem;
    padding: 10px 18px;
    border-radius: var(--radius);
    transition: top .3s ease;
}
.skip-link:focus {
    top: 16px;
}

/* ========================================
   ACCESSIBILITY — REDUCED MOTION
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }

    /* Exception : le diaporama du hero est décoratif, très lent et
       explicitement souhaité — il conserve son fondu et son zoom. */
    .hero__slide {
        animation-duration: 22s !important;
        animation-iteration-count: infinite !important;
        transition-duration: 2s !important;
    }
    .hero__slide:nth-child(even) {
        animation-duration: 26s !important;
    }

    /* Texte du hero : TOUJOURS visible, aucune animation d'entrée. */
    .hero__content > *,
    .hero__stats {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    /* Exception : le bandeau de logos partenaires défile en continu
       (décoratif, explicitement souhaité). */
    .logo-marquee__track {
        animation-duration: 36s !important;
        animation-iteration-count: infinite !important;
    }
}

/* ========================================
   MODALES (partagées : candidature, code secret)
   ======================================== */

.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
}

.modal.is-open {
    opacity: 1;
    visibility: visible;
}

.modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7,15,30,.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.modal__panel {
    position: relative;
    width: 100%;
    max-width: 620px;
    max-height: 88vh;
    overflow-y: auto;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-lg);
    transform: translateY(24px);
    transition: transform .3s cubic-bezier(.4,0,.2,1);
}

.modal.is-open .modal__panel {
    transform: translateY(0);
}

.modal__panel--narrow {
    max-width: 400px;
}

.modal__close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    font-size: 1.75rem;
    line-height: 1;
    color: var(--color-text-light);
    cursor: pointer;
    transition: color .2s ease, transform .2s ease;
}

.modal__close:hover {
    color: var(--color-primary);
    transform: scale(1.1);
}

.modal__title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 6px;
}

.modal__ref {
    font-size: .875rem;
    color: var(--color-text-light);
    margin-bottom: 24px;
}

.modal__form .form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.modal__form .form__group {
    margin-bottom: 14px;
}

.modal__form label {
    display: block;
    font-size: .8125rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 5px;
}

.modal__form select.form__input {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236c7a8d' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.modal__note {
    margin-top: 14px;
    font-size: .78rem;
    color: var(--color-text-light);
    text-align: center;
}

/* ========================================
   ACCÈS ADMIN — déclencheur secret & bouton révélé
   ======================================== */

.admin-secret-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    margin-left: 10px;
    vertical-align: middle;
    background: none;
    border: none;
    color: rgba(255,255,255,.18);
    cursor: pointer;
    transition: color .3s ease;
}

.admin-secret-trigger:hover {
    color: rgba(255,255,255,.55);
}

.admin-secret-trigger svg {
    width: 14px;
    height: 14px;
}

.admin-reveal-link {
    display: inline-block;
    margin-left: 8px;
    font-size: .8125rem;
    font-weight: 600;
    color: var(--color-accent) !important;
    text-decoration: none !important;
    padding-left: 0 !important;
    animation: fadeIn .5s ease;
}

.admin-reveal-link:hover {
    color: var(--color-accent-light) !important;
    text-decoration: underline !important;
}

.secret-code-input {
    letter-spacing: 6px;
    text-align: center;
    font-weight: 700;
}
