/*
Theme Name: Blocksy Child - WaterLifeHighTech
Template: blocksy
Description: Child theme WLHT — Light Mode 2026
Version: 3.0.0
Author: Team WaterLifeHighTech | Jean-Charles Baudoin
Text Domain: blocksy-child
*/

/* ═══════════════════════════════════════ */
/* DESIGN SYSTEM — LIGHT MODE WLHT 2026  */
/* ═══════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    /* Couleurs principales */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F7FAFE;
    --text-primary: #1A2B3C;
    --text-secondary: #5A6B7C;
    --accent: #0D7377;
    --accent-hover: #14FFEC;
    --accent-warm: #E8893C;
    --border: #E2E8F0;
    --card-bg: #FFFFFF;
    --card-shadow: 0 2px 12px rgba(0,0,0,0.06);
    --footer-bg: #0A1628;
    --footer-text: #CBD5E1;

    /* Typographie */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Outfit', sans-serif;

    /* Espacements */
    --section-padding: 80px 0;
    --container-max: 1200px;
    --border-radius: 12px;
}

/* Reset typographique global */
body {
    font-family: var(--font-body) !important;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading) !important;
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-hover);
}

/* ═══════════════════════════════════════ */
/* COMPOSANTS RÉUTILISABLES              */
/* ═══════════════════════════════════════ */

/* Container */
.wlht-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

/* Section alternée */
.wlht-section {
    padding: var(--section-padding);
}

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

/* Cards */
.wlht-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    padding: 40px 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border);
}

.wlht-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

/* Boutons */
.wlht-btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.wlht-btn--primary {
    background-color: var(--accent);
    color: #FFFFFF;
}

.wlht-btn--primary:hover {
    background-color: #0a5c5f;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.wlht-btn--warm {
    background-color: var(--accent-warm);
    color: #FFFFFF;
}

.wlht-btn--warm:hover {
    background-color: #d07832;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.wlht-btn--outline {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.wlht-btn--outline:hover {
    background: var(--accent);
    color: #FFFFFF;
}

/* Badge certification */
.wlht-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-secondary);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-primary);
    border: 1px solid var(--border);
}

/* Scroll Reveal Animation */
.wlht-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.wlht-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════ */
/* HEADER UNIFIÉ — TRANSPARENT / OPAQUE  */
/* ═══════════════════════════════════════ */

/* Cacher le header Blocksy sur TOUTES les pages */
header[data-id="type-1"],
.ct-header { display: none !important; }

/* ─── Header : base ─── */
.wlht-custom-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 9999;
    height: 72px;
    background: transparent;
    transition: all 0.3s ease;
}

.wlht-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    height: 100%;
}

/* Logo */
.wlht-header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.wlht-header__logo img {
    height: 40px;
    width: auto;
    transition: filter 0.3s;
}

.wlht-header__sitename {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #FFFFFF;
    transition: color 0.3s;
}

/* Menu desktop */
.wlht-menu {
    display: flex;
    list-style: none;
    gap: 4px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.wlht-menu li a {
    color: rgba(255,255,255,0.9) !important;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.875rem;
    padding: 8px 16px;
    text-decoration: none;
    position: relative;
    transition: color 0.3s;
    letter-spacing: 0.3px;
}

.wlht-menu li a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: #14ffec;
    transform: scaleX(0);
    transition: transform 0.2s ease;
    transform-origin: center;
}

.wlht-menu li a:hover { color: #FFFFFF !important; }
.wlht-menu li a:hover::after { transform: scaleX(1); }

/* Page courante */
.wlht-menu li.current-menu-item a { color: #14ffec !important; }
.wlht-menu li.current-menu-item a::after { transform: scaleX(1); background: #14ffec; }

/* Bouton CTA menu — état transparent */
.wlht-menu .menu-cta a {
    background: transparent !important;
    border: 2px solid rgba(255,255,255,0.7) !important;
    color: #FFFFFF !important;
    padding: 10px 24px !important;
    border-radius: 999px !important;
    font-size: 0.875rem !important;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.3s;
}

.wlht-menu .menu-cta a::after { display: none; }
.wlht-menu .menu-cta a:hover { background: rgba(255,255,255,0.12) !important; }

/* Burger mobile */
.wlht-header__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 10000;
}

.wlht-header__burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #FFFFFF;
    border-radius: 2px;
    transition: all 0.3s;
}

/* ─── ÉTAT OPAQUE (après scroll ou page claire) ─── */
.wlht-custom-header.is-scrolled {
    height: 64px;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px) saturate(1.5);
    -webkit-backdrop-filter: blur(12px) saturate(1.5);
    border-bottom: 1px solid rgba(13,115,119,0.15);
    box-shadow: 0 2px 20px rgba(13,61,74,0.08);
}

.wlht-custom-header.is-scrolled .wlht-header__sitename { color: #0d3d4a; }
.wlht-custom-header.is-scrolled .wlht-header__logo img { filter: none; }

.wlht-custom-header.is-scrolled .wlht-menu li a {
    color: #0d3d4a !important;
}

.wlht-custom-header.is-scrolled .wlht-menu li a::after {
    background: #0d7377;
}

.wlht-custom-header.is-scrolled .wlht-menu li a:hover {
    color: #0d7377 !important;
}

.wlht-custom-header.is-scrolled .wlht-menu li.current-menu-item a {
    color: #0d7377 !important;
}

.wlht-custom-header.is-scrolled .wlht-menu li.current-menu-item a::after {
    background: #0d7377;
}

.wlht-custom-header.is-scrolled .wlht-menu .menu-cta a {
    background: #0d7377 !important;
    border-color: #0d7377 !important;
    color: #FFFFFF !important;
}

.wlht-custom-header.is-scrolled .wlht-menu .menu-cta a:hover {
    background: #0a5c5f !important;
    transform: scale(1.02);
}

.wlht-custom-header.is-scrolled .wlht-header__burger span {
    background: #0d3d4a;
}

/* Pages claires → état opaque par défaut */
.wlht-page-light .wlht-custom-header { height: 64px; background: rgba(255,255,255,0.97); backdrop-filter: blur(12px) saturate(1.5); -webkit-backdrop-filter: blur(12px) saturate(1.5); border-bottom: 1px solid rgba(13,115,119,0.15); box-shadow: 0 2px 20px rgba(13,61,74,0.08); }
.wlht-page-light .wlht-header__sitename { color: #0d3d4a; }
.wlht-page-light .wlht-menu li a { color: #0d3d4a !important; }
.wlht-page-light .wlht-menu li a::after { background: #0d7377; }
.wlht-page-light .wlht-menu li a:hover { color: #0d7377 !important; }
.wlht-page-light .wlht-menu li.current-menu-item a { color: #0d7377 !important; }
.wlht-page-light .wlht-menu .menu-cta a { background: #0d7377 !important; border-color: #0d7377 !important; color: #FFFFFF !important; }
.wlht-page-light .wlht-menu .menu-cta a:hover { background: #0a5c5f !important; }
.wlht-page-light .wlht-header__burger span { background: #0d3d4a; }

/* Admin bar offset */
body.admin-bar .wlht-custom-header { top: 32px; }
@media (max-width: 782px) { body.admin-bar .wlht-custom-header { top: 46px; } }

/* Mobile header + menu */
@media (max-width: 768px) {
    .wlht-custom-header { padding: 0 16px; }
    .wlht-header__inner { padding: 0; }
    .wlht-header__sitename { display: none; }
    .wlht-header__burger { display: flex; }

    /* Menu mobile premium — plein écran dégradé */
    .wlht-header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: linear-gradient(160deg, rgba(10,22,40,0.98), rgba(13,115,119,0.96));
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        z-index: 9998;
        transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 40px;
    }

    .wlht-header__nav::before {
        content: "";
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(20,255,236,0.12) 0%, transparent 60%);
        pointer-events: none;
    }

    .wlht-header__nav.is-open { right: 0; }

    .wlht-header__nav .wlht-menu {
        flex-direction: column;
        gap: 0;
        position: relative;
        z-index: 1;
    }

    .wlht-header__nav .wlht-menu li {
        opacity: 0;
        transform: translateX(40px);
        transition: all 0.5s ease;
    }

    .wlht-header__nav.is-open .wlht-menu li { opacity: 1; transform: translateX(0); }
    .wlht-header__nav.is-open .wlht-menu li:nth-child(1) { transition-delay: 0.15s; }
    .wlht-header__nav.is-open .wlht-menu li:nth-child(2) { transition-delay: 0.22s; }
    .wlht-header__nav.is-open .wlht-menu li:nth-child(3) { transition-delay: 0.29s; }
    .wlht-header__nav.is-open .wlht-menu li:nth-child(4) { transition-delay: 0.36s; }
    .wlht-header__nav.is-open .wlht-menu li:nth-child(5) { transition-delay: 0.43s; }
    .wlht-header__nav.is-open .wlht-menu li:nth-child(6) { transition-delay: 0.50s; }

    .wlht-header__nav .wlht-menu li a {
        color: #FFFFFF !important;
        font-size: 1.4rem;
        font-family: var(--font-heading) !important;
        font-weight: 500;
        padding: 16px 0;
        display: block;
        text-align: center;
        position: relative;
    }

    .wlht-header__nav .wlht-menu li a::after {
        content: "";
        position: absolute;
        bottom: 8px;
        left: 50%;
        width: 0;
        height: 1px;
        background: #14ffec;
        transition: width 0.3s;
        transform: translateX(-50%);
    }

    .wlht-header__nav .wlht-menu li a:hover {
        color: #14ffec !important;
    }

    .wlht-header__nav .wlht-menu li a:hover::after {
        width: 40px;
    }

    .wlht-header__nav .wlht-menu .menu-cta a {
        margin-top: 30px;
        text-align: center;
        display: block;
        background: linear-gradient(135deg, #E8893C, #d07832) !important;
        border: none !important;
        border-radius: 12px !important;
        padding: 18px !important;
        font-size: 1.1rem !important;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 2px;
        box-shadow: 0 8px 25px rgba(232,137,60,0.3);
    }

    .wlht-header__nav .wlht-menu .menu-cta a::after { display: none; }

    /* Cache le header fixe quand menu ouvert */
    body.wlht-menu-open { overflow: hidden; }
    body.wlht-menu-open::after {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.5);
        z-index: 998;
    }
}

/* (Bouton CTA menu intégré dans le bloc header unifié ci-dessus) */

/* ═══════════════════════════════════════ */
/* MASQUER LE FOOTER PAR DÉFAUT BLOCKSY  */
/* ═══════════════════════════════════════ */

footer.ct-footer {
    display: none !important;
}

/* ═══════════════════════════════════════ */
/* HERO SECTION — VIDÉO PLEIN ÉCRAN      */
/* ═══════════════════════════════════════ */

.wlht-hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 40px;
    background: #0A1628;
}

.wlht-hero__video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    filter: brightness(1.3) contrast(1.1) saturate(1.4);
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.wlht-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0) 0%,
        rgba(0,0,0,0) 55%,
        rgba(0,0,0,0.25) 75%,
        rgba(0,0,0,0.65) 100%
    );
    z-index: 1;
}

.wlht-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #FFFFFF;
    max-width: 900px;
    padding: 0 30px;
    margin-bottom: 20px;
}

/* ═══════════════════════════════════════ */
/* SECTIONS AVEC ARRIÈRE-PLAN IMAGE      */
/* ═══════════════════════════════════════ */

/* Section Promesse / Philosophie */
.wlht-section--philosophie {
    background: linear-gradient(rgba(255,255,255,0.85), rgba(255,255,255,0.85)),
                url('/wp-content/uploads/2026/04/philosophie-bg-scaled.jpg') center/cover no-repeat;
}

/* Section CTA Final */
.wlht-section--cta {
    background: linear-gradient(rgba(13,115,119,0.88), rgba(13,115,119,0.88)),
                url('/wp-content/uploads/2026/04/wave-business-bg-scaled.jpg') center/cover no-repeat;
}

/* Mobile hero : vidéo visible + texte en bas cinématique */
@media (max-width: 768px) {
    .wlht-hero {
        height: 100vh;
        height: 100dvh;
        padding-bottom: 50px;
        align-items: flex-end;
    }
    .wlht-hero__content {
        margin-bottom: 10px;
        padding: 0 24px;
    }
    .wlht-hero__content h1 {
        font-size: 1.9rem !important;
        line-height: 1.25;
        font-weight: 600;
        margin-bottom: 18px;
        text-shadow: 0 2px 12px rgba(0,0,0,0.75), 0 4px 25px rgba(0,0,0,0.55);
    }
    .wlht-hero__content p {
        font-size: 1rem !important;
        line-height: 1.6;
        margin-bottom: 28px;
        text-shadow: 0 2px 10px rgba(0,0,0,0.7), 0 3px 20px rgba(0,0,0,0.5);
    }
    .wlht-hero__cta-secondary {
        text-shadow: 0 2px 8px rgba(0,0,0,0.7);
    }
    .wlht-hero__overlay {
        background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 45%, rgba(0,0,0,0.35) 70%, rgba(0,0,0,0.75) 100%) !important;
    }
}

.wlht-hero__content h1 {
    color: #FFFFFF;
    font-family: var(--font-heading) !important;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
}

.wlht-hero__content p {
    color: #FFFFFF;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.wlht-hero__cta-secondary {
    display: inline-block;
    margin-top: 1rem;
    color: #FFFFFF;
    opacity: 0.8;
    font-size: 0.95rem;
    transition: opacity 0.3s ease;
}

.wlht-hero__cta-secondary:hover {
    opacity: 1;
    color: #FFFFFF;
}

/* ═══════════════════════════════════════ */
/* PROMESSE / 3 CARDS GRID               */
/* ═══════════════════════════════════════ */

.wlht-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 3rem;
}

.wlht-card__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.wlht-card__icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

/* ═══════════════════════════════════════ */
/* COMPTEURS ANIMÉS                      */
/* ═══════════════════════════════════════ */

.wlht-counters {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
    margin: 3rem 0;
}

.wlht-counter {
    padding: 20px;
}

.wlht-counter-value {
    font-family: var(--font-heading) !important;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--accent);
    display: block;
}

.wlht-counter-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

/* ═══════════════════════════════════════ */
/* BADGES CERTIFICATIONS (anciens pills) */
/* ═══════════════════════════════════════ */

.wlht-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin: 2rem 0;
}

/* ═══════════════════════════════════════ */
/* CERTIFICATIONS — GRILLE PREMIUM       */
/* ═══════════════════════════════════════ */

.wlht-certs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    max-width: 960px;
    margin: 2.5rem auto;
}

.wlht-certs-card {
    background: #FFFFFF;
    border: 1px solid #e0eeee;
    border-radius: 16px;
    padding: 24px 16px 18px;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 2px 16px rgba(13,115,119,0.07);
    transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-family: var(--font-body);
}

.wlht-certs-card:hover {
    border-color: #0d7377;
    box-shadow: 0 6px 24px rgba(13,115,119,0.15);
    transform: translateY(-4px);
}

.wlht-certs-card__img {
    width: 96px;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.wlht-certs-card__img img {
    width: 96px;
    height: 96px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(13,115,119,0.2));
    transition: filter 0.2s, transform 0.2s;
}

.wlht-certs-card:hover .wlht-certs-card__img img {
    filter: drop-shadow(0 2px 8px rgba(13,115,119,0.2)) brightness(1.05);
    transform: scale(1.05);
}

.wlht-certs-card__fallback {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: #f0f8f8;
    border: 2px solid #0d7377;
    color: #0d7377;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
    line-height: 1.2;
}

.wlht-certs-card__label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #0d3d4a;
    line-height: 1.3;
}

.wlht-certs-card__sub {
    font-size: 0.68rem;
    color: #6b9ea0;
    line-height: 1.3;
}

/* Modal certification */
.wlht-certs-modal {
    position: fixed;
    inset: 0;
    z-index: 100000;
    background: rgba(13,61,74,0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: wlht-certs-fadeIn 0.22s ease;
}

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

.wlht-certs-modal__box {
    background: #FFFFFF;
    border-radius: 20px;
    max-width: 480px;
    width: 90%;
    padding: 40px;
    position: relative;
    box-shadow: 0 24px 64px rgba(13,61,74,0.18);
    text-align: center;
    animation: wlht-certs-slideUp 0.22s ease;
}

@keyframes wlht-certs-slideUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

.wlht-certs-modal__close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.15rem;
    cursor: pointer;
    color: #0d7377;
    line-height: 1;
    padding: 4px;
}

.wlht-certs-modal__close:hover {
    color: #0d3d4a;
}

.wlht-certs-modal__img {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.wlht-certs-modal__img img {
    width: 72px;
    height: 72px;
    object-fit: contain;
}

.wlht-certs-modal__img .wlht-certs-card__fallback {
    width: 72px;
    height: 72px;
    font-size: 0.6rem;
}

.wlht-certs-modal__eyebrow {
    display: block;
    font-size: 0.68rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #0d7377;
    margin-bottom: 8px;
    font-weight: 600;
}

.wlht-certs-modal__box h3 {
    font-family: var(--font-heading) !important;
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #0d3d4a;
}

.wlht-certs-modal__sep {
    width: 32px;
    height: 2px;
    background: #0d7377;
    margin: 0 auto 16px;
}

.wlht-certs-modal__box > p {
    font-size: 0.95rem;
    font-family: var(--font-body);
    color: #4a6a70;
    line-height: 1.8;
    margin-bottom: 16px;
    text-align: left;
}

.wlht-certs-modal__why {
    background: #f0f8f8;
    padding: 14px 16px;
    border-radius: 10px;
    border-left: 3px solid #0d7377;
    font-size: 0.85rem;
    font-style: italic;
    color: #0d3d4a;
    text-align: left;
    line-height: 1.7;
    margin-bottom: 16px;
}

.wlht-certs-modal__disclaimer {
    font-size: 0.68rem !important;
    color: #aab8b9 !important;
    margin-top: 16px;
    margin-bottom: 0;
    text-align: center;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .wlht-certs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
}

@media (max-width: 480px) {
    .wlht-certs-card__img,
    .wlht-certs-card__img img {
        width: 72px;
        height: 72px;
    }
    .wlht-certs-card {
        padding: 18px 12px 14px;
    }
    .wlht-certs-modal__box {
        padding: 28px 24px;
    }
}

/* ═══════════════════════════════════════ */
/* SECTION K8 — 2 COLONNES + CARROUSEL  */
/* ═══════════════════════════════════════ */

.wlht-two-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.wlht-two-cols img {
    width: 100%;
    border-radius: var(--border-radius);
}

/* Carrousel K8 */
.wlht-k8-carousel {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    aspect-ratio: 4/3;
    background: var(--bg-secondary);
}

.wlht-k8-carousel__track {
    position: relative;
    width: 100%;
    height: 100%;
}

.wlht-k8-carousel__slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.wlht-k8-carousel__slide.is-active {
    opacity: 1;
}

.wlht-k8-carousel__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.85);
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 2;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.wlht-k8-carousel__btn:hover {
    background: #FFFFFF;
}

.wlht-k8-carousel__btn--prev { left: 12px; }
.wlht-k8-carousel__btn--next { right: 12px; }

.wlht-k8-carousel__dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.wlht-k8-carousel__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.wlht-k8-carousel__dot.is-active {
    background: #FFFFFF;
    box-shadow: 0 0 4px rgba(0,0,0,0.3);
}

/* ═══════════════════════════════════════ */
/* SECTION SCIENCE — CITATIONS PREMIUM   */
/* ═══════════════════════════════════════ */

.wlht-section--science {
    background: linear-gradient(rgba(247,250,254,0.92), rgba(247,250,254,0.92)),
                url('/wp-content/uploads/2026/04/philosophie-bg-scaled.jpg') center/cover no-repeat;
    padding: var(--section-padding);
}

.wlht-science-counter {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--accent);
}

.wlht-quotes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}

.wlht-quote-card {
    position: relative;
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 36px 28px 28px;
    text-align: left;
    border: 1px solid var(--border);
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.wlht-quote-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.wlht-quote-card--teal  { border-left: 4px solid #0D7377; }
.wlht-quote-card--blue  { border-left: 4px solid #185FA5; }
.wlht-quote-card--gold  { border-left: 4px solid #D4820A; }

.wlht-quote-card__mark {
    position: absolute;
    top: 8px;
    left: 16px;
    font-size: 80px;
    line-height: 1;
    font-family: var(--font-heading);
    pointer-events: none;
}

.wlht-quote-card--teal .wlht-quote-card__mark { color: rgba(13,115,119,0.1); }
.wlht-quote-card--blue .wlht-quote-card__mark { color: rgba(24,95,165,0.1); }
.wlht-quote-card--gold .wlht-quote-card__mark { color: rgba(212,130,10,0.1); }

.wlht-quote-card blockquote {
    font-family: var(--font-heading) !important;
    font-style: italic;
    font-size: 1.05rem;
    color: var(--text-primary);
    line-height: 1.6;
    margin: 0 0 1rem 0;
    position: relative;
    z-index: 1;
}

.wlht-quote-card cite {
    font-family: var(--font-body);
    font-style: normal;
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: block;
    margin-bottom: 1rem;
}

.wlht-quote-card__link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent) !important;
    display: inline-block;
}

.wlht-quote-card__link:hover {
    color: var(--accent-hover) !important;
}

/* ═══════════════════════════════════════ */
/* CTA FINAL — PREMIUM AVEC IMAGE FOND  */
/* ═══════════════════════════════════════ */

.wlht-section--cta-premium {
    background: linear-gradient(135deg, rgba(10,22,40,0.85), rgba(13,115,119,0.75)),
                url('/wp-content/uploads/2026/04/wave-business-bg-scaled.jpg') center/cover no-repeat;
    color: #FFFFFF;
    text-align: center;
    padding: 100px 20px;
}

.wlht-section--cta-premium h2 {
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.wlht-section--cta-premium p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

.wlht-section--cta-premium a {
    color: rgba(255,255,255,0.8);
}

.wlht-section--cta-premium a:hover {
    color: #FFFFFF;
}

/* ═══════════════════════════════════════ */
/* PAGE HERO (sous-pages)                */
/* ═══════════════════════════════════════ */

.wlht-page-hero {
    padding: 140px 0 80px;
    text-align: center;
    color: #FFFFFF;
}

.wlht-page-hero h1 {
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

/* ═══════════════════════════════════════ */
/* PRODUCT CARDS (Équipements)           */
/* ═══════════════════════════════════════ */

.wlht-product-card {
    background: var(--card-bg);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wlht-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 40px rgba(0,0,0,0.1);
}

.wlht-product-card--reverse {
    direction: rtl;
}

.wlht-product-card--reverse > * {
    direction: ltr;
}

.wlht-product-content {
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.wlht-product-badge {
    display: inline-block;
    background: linear-gradient(135deg, #D4A843, #B8902E);
    color: #FFFFFF;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    width: fit-content;
}

.wlht-feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.wlht-feature-list li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.wlht-feature-list li::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: var(--accent);
}

/* ═══════════════════════════════════════ */
/* BO OFFICE MOCKUP                      */
/* ═══════════════════════════════════════ */

.wlht-bo-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 1.5rem 0;
}

.wlht-bo-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: var(--bg-secondary);
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid var(--border);
}

.wlht-bo-feature__icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.wlht-bo-mockup {
    display: grid;
    grid-template-columns: 180px 1fr;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(10,22,40,0.2);
    font-size: 0.85rem;
    min-height: 420px;
}

.wlht-bo-mockup__sidebar {
    background: #0f1729;
    color: #94a3b8;
    padding: 20px 0;
}

.wlht-bo-mockup__logo {
    text-align: center;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--accent);
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 12px;
}

.wlht-bo-mockup__nav-item {
    padding: 10px 20px;
    cursor: default;
    transition: background 0.2s;
    font-size: 0.8rem;
}

.wlht-bo-mockup__nav-item.is-active {
    background: rgba(13,115,119,0.2);
    color: #FFFFFF;
    border-left: 3px solid var(--accent);
}

.wlht-bo-mockup__main {
    background: #1a2332;
    color: #e2e8f0;
    padding: 24px;
}

.wlht-bo-mockup__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.wlht-bo-mockup__badge-pro {
    background: linear-gradient(135deg, #D4A843, #B8902E);
    color: #FFFFFF;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
}

.wlht-bo-mockup__stats {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.wlht-bo-mockup__stat {
    flex: 1;
    background: rgba(255,255,255,0.06);
    border-radius: 10px;
    padding: 14px;
    text-align: center;
}

.wlht-bo-mockup__stat-val {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent);
}

.wlht-bo-mockup__stat span:last-child {
    font-size: 0.75rem;
    color: #94a3b8;
}

.wlht-bo-mockup__progress {
    height: 8px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    margin-bottom: 20px;
    overflow: hidden;
}

.wlht-bo-mockup__progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), #14FFEC);
    border-radius: 4px;
}

.wlht-bo-mockup__modules {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wlht-bo-mockup__module {
    padding: 8px 12px;
    background: rgba(255,255,255,0.04);
    border-radius: 6px;
    font-size: 0.8rem;
}

/* ═══════════════════════════════════════ */
/* TAGS (tâches présentiel)              */
/* ═══════════════════════════════════════ */

.wlht-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.wlht-tag {
    display: inline-block;
    padding: 8px 18px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.2s ease;
}

.wlht-tag:hover {
    background: var(--accent);
    color: #FFFFFF;
    border-color: var(--accent);
}

.wlht-cta-glass {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 16px;
    padding: 32px;
    max-width: 640px;
    margin: 0 auto;
}

.wlht-cta-glass .wlht-form {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.wlht-cta-glass .wlht-form input {
    padding: 14px 20px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    flex: 1;
    min-width: 180px;
    background: rgba(255,255,255,0.15);
    color: #FFFFFF;
}

.wlht-cta-glass .wlht-form input::placeholder {
    color: rgba(255,255,255,0.6);
}

.wlht-cta-glass .wlht-form input:focus {
    outline: 2px solid var(--accent-warm);
    background: rgba(255,255,255,0.2);
}

/* Ancien CTA (utilisé par d'autres pages) */
.wlht-cta-final {
    background: var(--accent);
    color: #FFFFFF;
    text-align: center;
    padding: 80px 20px;
}

.wlht-cta-final h2 {
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.wlht-cta-final p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

.wlht-cta-final a {
    color: rgba(255,255,255,0.8);
}

.wlht-cta-final a:hover {
    color: #FFFFFF;
}

/* ═══════════════════════════════════════ */
/* FOOTER                                 */
/* ═══════════════════════════════════════ */

.wlht-footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 60px 0 30px;
}

.wlht-footer__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.wlht-footer h4 {
    color: #FFFFFF;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.wlht-footer p,
.wlht-footer li {
    color: var(--footer-text);
    font-size: 0.95rem;
    line-height: 1.8;
}

.wlht-footer a {
    color: #FFFFFF;
    transition: color 0.3s ease;
}

.wlht-footer a:hover {
    color: var(--accent);
}

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

.wlht-footer ul li {
    margin-bottom: 0.5rem;
}

.wlht-footer__social {
    display: flex;
    gap: 16px;
    margin-top: 1rem;
}

.wlht-footer__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: background 0.3s ease;
}

.wlht-footer__social a:hover {
    background: var(--accent);
}

.wlht-footer__social svg {
    width: 20px;
    height: 20px;
    fill: #FFFFFF;
}

.wlht-footer__bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.wlht-footer__bottom p {
    font-size: 0.85rem;
    color: var(--footer-text);
    opacity: 0.7;
}

/* ═══════════════════════════════════════ */
/* FORMATIONS GRID                       */
/* ═══════════════════════════════════════ */

.wlht-formations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 3rem;
}

.wlht-formation-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    padding: 30px;
    border: 1px solid var(--border);
    border-top: 4px solid var(--accent);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wlht-formation-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.wlht-formation-card[data-color="bleu"]   { border-top-color: #185FA5; }
.wlht-formation-card[data-color="vert"]   { border-top-color: #0D7377; }
.wlht-formation-card[data-color="violet"] { border-top-color: #7C3AED; }
.wlht-formation-card[data-color="orange"] { border-top-color: #E8893C; }
.wlht-formation-card[data-color="dore"]   { border-top-color: #D4820A; }
.wlht-formation-card[data-color="rouge"]  { border-top-color: #DC2626; }

.wlht-formation-card__num {
    font-family: var(--font-heading) !important;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.wlht-formation-card__meta {
    display: flex;
    gap: 12px;
    margin-top: 1rem;
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════ */
/* CONTACT PAGE — REFONTE                */
/* ═══════════════════════════════════════ */

/* Hero contact */
.wlht-contact-hero {
    position: relative;
    min-height: 380px;
    padding: 80px 40px;
    overflow: hidden;
    background: linear-gradient(135deg, #020d1a, #051e3e 50%, #0d7377);
    background-size: 200% 200%;
    animation: wlht-hero-shift 8s ease infinite alternate;
    color: #FFFFFF;
}

.wlht-contact-hero__bubbles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.wlht-contact-hero__grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
}

.wlht-contact-hero__eyebrow {
    display: block;
    font-size: 0.75rem;
    color: #14ffec;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 12px;
}

.wlht-contact-hero__title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #FFFFFF !important;
    margin: 0 0 1rem;
    line-height: 1.2;
}

.wlht-contact-hero__text {
    color: rgba(255,255,255,0.8) !important;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    max-width: 520px;
}

.wlht-contact-hero__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.wlht-contact-hero__pills span {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 0.75rem;
    color: #FFFFFF;
}

.wlht-contact-hero__avatar-wrap {
    text-align: center;
}

.wlht-contact-hero__avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0d7377, #14ffec);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 auto 14px;
    box-shadow: 0 8px 32px rgba(13,115,119,0.3);
}

.wlht-contact-hero__name {
    display: block;
    font-size: 0.95rem;
    color: #FFFFFF;
    margin-bottom: 4px;
}

.wlht-contact-hero__role {
    display: block;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 8px;
}

.wlht-contact-hero__status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
}

.wlht-contact-hero__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    display: inline-block;
}

/* 3 cards contact */
.wlht-contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 2rem;
}

.wlht-contact-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 36px 28px;
    border-top: 4px solid #0d7377;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    transition: transform 0.25s, box-shadow 0.25s;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.wlht-contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.wlht-contact-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wlht-contact-card h3 {
    font-size: 1.3rem;
    color: #0d3d4a;
    margin: 0;
}

.wlht-contact-card p {
    font-size: 0.9rem;
    color: #6b9ea0;
    line-height: 1.7;
    margin: 0;
    flex: 1;
}

.wlht-contact-card__badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.wlht-contact-card__btn {
    display: inline-block;
    color: #FFFFFF !important;
    padding: 12px 24px;
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, opacity 0.2s;
    margin-top: auto;
}

.wlht-contact-card__btn:hover {
    transform: scale(1.03);
    color: #FFFFFF !important;
}

/* Newsletter form */
.wlht-contact-newsletter {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.wlht-contact-newsletter input {
    padding: 14px 18px;
    border: 1px solid #e0eeee;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #0d3d4a;
    transition: border-color 0.2s;
}

.wlht-contact-newsletter input:focus {
    border-color: #0d7377;
    outline: none;
}

.wlht-contact-newsletter input[name="prenom"] { width: 180px; }
.wlht-contact-newsletter input[name="email"] { width: 240px; }

.wlht-contact-newsletter button {
    padding: 14px 24px;
    background: linear-gradient(90deg, #0d7377, #14a8ac);
    color: #FFFFFF;
    border: none;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
    white-space: nowrap;
}

.wlht-contact-newsletter button:hover {
    transform: scale(1.02);
}

/* Coordonnées card */
.wlht-contact-info {
    background: #FFFFFF;
    border-radius: 16px;
    border: 1px solid #e0eeee;
    padding: 32px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.wlht-contact-info h3 {
    font-size: 1.3rem;
    color: #0d3d4a;
    margin: 0 0 1.25rem;
}

.wlht-contact-info__grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 8px 16px;
    font-size: 0.9rem;
}

.wlht-contact-info__grid span:nth-child(odd) {
    color: #6b9ea0;
    font-weight: 500;
}

.wlht-contact-info__grid span:nth-child(even) {
    color: #0d3d4a;
}

/* Contact responsive */
@media (max-width: 768px) {
    .wlht-contact-hero { padding: 56px 20px; }
    .wlht-contact-hero__grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
    .wlht-contact-hero__text { max-width: none; }
    .wlht-contact-hero__pills { justify-content: center; }
    .wlht-contact-hero__avatar-wrap { order: -1; }
    .wlht-contact-cards { grid-template-columns: 1fr; }
    .wlht-contact-newsletter { flex-direction: column; }
    .wlht-contact-newsletter input { width: 100% !important; }
    .wlht-contact-newsletter button { width: 100%; }
}

/* ═══════════════════════════════════════ */
/* FORMULAIRE — MESSAGE ERREUR           */
/* ═══════════════════════════════════════ */

.wlht-form-error {
    margin-top: 12px;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #fcd4d4;
    background: rgba(231,76,60,0.25);
    text-align: center;
}

/* ═══════════════════════════════════════ */
/* BOUTON WHATSAPP FLOTTANT              */
/* ═══════════════════════════════════════ */

.wlht-wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9998;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.wlht-wa-float.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.wlht-wa-float__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    box-shadow: 0 4px 14px rgba(37,211,102,0.45);
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: wlht-pulse 2s infinite;
    text-decoration: none;
}

.wlht-wa-float__btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37,211,102,0.6);
    animation: none;
}

.wlht-wa-float__btn svg {
    width: 32px;
    height: 32px;
    fill: #FFFFFF;
}

@keyframes wlht-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.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) {
    .wlht-wa-float { bottom: 80px; right: 16px; }
    .wlht-wa-float__btn { width: 52px; height: 52px; }
    .wlht-wa-float__btn svg { width: 28px; height: 28px; }
}

/* ═══════════════════════════════════════ */
/* POPUP WHATSAPP INTELLIGENT            */
/* ═══════════════════════════════════════ */

.wlht-wa-overlay {
    position: fixed; inset: 0; z-index: 100000;
    background: rgba(13,61,74,0.6);
    backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
    animation: wlht-fadeIn 0.2s ease;
}

.wlht-wa-popup {
    background: #FFFFFF; border-radius: 20px;
    max-width: 460px; width: 92%;
    padding: 36px 32px; position: relative;
    border-top: 4px solid #0d7377;
    box-shadow: 0 24px 60px rgba(13,61,74,0.2);
    max-height: 90vh; overflow-y: auto;
    animation: wlht-slideUp 0.22s ease;
}

.wlht-wa-popup__close {
    position: absolute; top: 14px; right: 16px;
    background: none; border: none; font-size: 1.3rem;
    cursor: pointer; color: #6b9ea0; line-height: 1;
}
.wlht-wa-popup__close:hover { color: #0d3d4a; }

.wlht-wa-popup__header {
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 16px;
}

.wlht-wa-popup__avatar {
    width: 52px; height: 52px; border-radius: 50%;
    background: #0d7377; color: #FFFFFF;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.15rem; font-weight: 700;
    font-family: var(--font-body); flex-shrink: 0;
    position: relative;
}

.wlht-wa-popup__online {
    position: absolute; bottom: 1px; right: 1px;
    width: 12px; height: 12px; border-radius: 50%;
    background: #25D366; border: 2px solid #FFFFFF;
}

.wlht-wa-popup__name {
    display: block; font-size: 0.95rem; color: #0d3d4a;
}

.wlht-wa-popup__status {
    display: block; font-size: 0.75rem; color: #6b9ea0;
}

.wlht-wa-popup__sep {
    border: none; border-top: 1px solid #e8f0f0; margin: 0 0 16px;
}

.wlht-wa-popup__bubble {
    background: #dcf8c6; border-radius: 0 12px 12px 12px;
    padding: 12px 16px; max-width: 88%;
    font-size: 0.9rem; color: #0d3d4a; line-height: 1.6;
    margin-bottom: 20px; position: relative;
}

.wlht-wa-popup__time {
    display: block; text-align: right;
    font-size: 0.68rem; color: #7a9a7a; margin-top: 6px;
}

.wlht-wa-popup__form { margin-bottom: 16px; }

.wlht-wa-popup__label {
    display: block; font-size: 0.75rem; color: #6b9ea0;
    margin: 14px 0 6px; font-weight: 500;
}

.wlht-wa-popup__input,
.wlht-wa-popup__textarea {
    width: 100%; padding: 10px 14px;
    border: 1px solid #e8f0f0; border-radius: 8px;
    font-family: var(--font-body); font-size: 0.95rem;
    color: #0d3d4a; transition: border-color 0.2s;
    background: #FFFFFF;
}

.wlht-wa-popup__input:focus,
.wlht-wa-popup__textarea:focus {
    border-color: #0d7377; outline: none;
}

.wlht-wa-popup__textarea { resize: none; }

.wlht-wa-popup__pills {
    display: flex; flex-wrap: wrap; gap: 8px;
}

.wlht-wa-popup__pills button {
    padding: 7px 14px; border-radius: 999px;
    border: 1px solid #e0eeee; background: #f0f8f8;
    font-family: var(--font-body); font-size: 0.8rem;
    color: #0d3d4a; cursor: pointer;
    transition: all 0.15s; white-space: nowrap;
}

.wlht-wa-popup__pills button:hover {
    border-color: #0d7377;
}

.wlht-wa-popup__pills button.is-selected {
    background: #0d7377; border-color: #0d7377;
    color: #FFFFFF; font-weight: 600;
}

.wlht-wa-popup__preview {
    background: #f0f8f8; border-radius: 12px;
    padding: 14px; border-left: 3px solid #0d7377;
    margin-bottom: 16px;
    animation: wlht-fadeIn 0.3s ease;
}

.wlht-wa-popup__preview-label {
    display: block; font-size: 0.75rem; color: #0d7377;
    font-weight: 600; margin-bottom: 8px;
}

.wlht-wa-popup__preview p {
    font-size: 0.82rem; color: #4a6a70;
    line-height: 1.7; white-space: pre-line; margin: 0;
}

.wlht-wa-popup__send {
    display: flex; align-items: center; justify-content: center;
    gap: 8px; width: 100%; padding: 14px;
    background: #25D366; color: #FFFFFF;
    border: none; border-radius: 12px;
    font-family: var(--font-body); font-size: 1rem;
    font-weight: 600; cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.wlht-wa-popup__send:hover:not(:disabled) {
    background: #1ea952; transform: scale(1.01);
}

.wlht-wa-popup__send:disabled {
    opacity: 0.45; cursor: not-allowed;
}

.wlht-wa-popup__send svg { width: 18px; height: 18px; fill: #FFFFFF; }

.wlht-wa-popup__hint {
    font-size: 0.75rem;
    color: #6b9ea0;
    font-style: italic;
    margin: 0 0 12px;
    text-align: center;
}

.wlht-wa-popup__legal {
    font-size: 0.68rem; color: #aab8b9;
    text-align: center; margin-top: 14px; line-height: 1.5;
}

@media (max-width: 767px) {
    .wlht-wa-popup {
        width: 100%; max-width: none;
        border-radius: 20px 20px 0 0;
        position: fixed; bottom: 0; left: 0; right: 0;
        max-height: 85vh; padding: 28px 20px 32px;
        animation: wlht-wa-slideUp 0.25s ease;
    }
    @keyframes wlht-wa-slideUp {
        from { transform: translateY(100%); }
        to { transform: translateY(0); }
    }
    .wlht-wa-overlay { align-items: flex-end; }
    .wlht-wa-popup__pills { display: grid; grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════════════ */
/* EXIT-INTENT POPUP — PREMIUM          */
/* ═══════════════════════════════════════ */

.wlht-exit-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10,22,40,0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: wlht-fadeIn 0.4s ease;
}

.wlht-exit-popup {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 0;
    max-width: 520px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: 0 30px 80px rgba(0,0,0,0.35);
    overflow: hidden;
    animation: wlht-slideUp 0.5s ease;
}

.wlht-exit-popup::before {
    content: "";
    display: block;
    height: 140px;
    background: linear-gradient(135deg, rgba(10,22,40,0.4), rgba(13,115,119,0.5)),
                url('/wp-content/uploads/2026/04/capture-bg-scaled.jpg') center/cover;
}

.wlht-exit-popup::after {
    content: "\1F381";
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.5rem;
    background: white;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.wlht-exit-body {
    padding: 55px 42px 42px;
}

.wlht-exit-close {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 1.6rem;
    background: rgba(255,255,255,0.9);
    border: none;
    cursor: pointer;
    color: #1A2B3C;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
    z-index: 10;
    line-height: 1;
}

.wlht-exit-close:hover {
    transform: rotate(90deg);
}

.wlht-exit-popup h2 {
    font-family: var(--font-heading) !important;
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.wlht-exit-subtitle {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 24px;
    line-height: 1.6;
}

.wlht-exit-benefits {
    text-align: left;
    margin: 0 0 24px;
    padding: 18px 22px;
    background: var(--bg-secondary);
    border-radius: 12px;
    border-left: 3px solid var(--accent);
    list-style: none;
}

.wlht-exit-benefits li {
    padding: 5px 0 5px 24px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    position: relative;
}

.wlht-exit-benefits li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.wlht-exit-form input[type="email"] {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 1rem;
    font-family: var(--font-body);
    margin-bottom: 12px;
    transition: border-color 0.3s;
}

.wlht-exit-form input[type="email"]:focus {
    border-color: var(--accent);
    outline: none;
}

.wlht-exit-form button[type="submit"] {
    width: 100%;
    background: #E8893C;
    color: #FFFFFF;
    border: none;
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.wlht-exit-form button[type="submit"]:hover {
    background: #d07832;
    transform: translateY(-2px);
}

.wlht-exit-separator {
    margin: 20px 0 16px;
    color: var(--text-secondary);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
}

.wlht-exit-separator::before,
.wlht-exit-separator::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 30%;
    height: 1px;
    background: var(--border);
}

.wlht-exit-separator::before { left: 0; }
.wlht-exit-separator::after { right: 0; }

.wlht-exit-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #FFFFFF !important;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: transform 0.2s, box-shadow 0.3s;
}

.wlht-exit-wa-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37,211,102,0.3);
    color: #FFFFFF !important;
}

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

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

/* ═══════════════════════════════════════ */
/* FORMATIONS — CARDS ENRICHIES          */
/* ═══════════════════════════════════════ */

.wlht-formation-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.wlht-formation-card__icon svg {
    width: 28px;
    height: 28px;
    fill: #FFFFFF;
}

.wlht-formation-card[data-color="bleu"]   .wlht-formation-card__icon { background: #185FA5; }
.wlht-formation-card[data-color="vert"]   .wlht-formation-card__icon { background: #0D7377; }
.wlht-formation-card[data-color="violet"] .wlht-formation-card__icon { background: #7C3AED; }
.wlht-formation-card[data-color="orange"] .wlht-formation-card__icon { background: #E8893C; }
.wlht-formation-card[data-color="dore"]   .wlht-formation-card__icon { background: #D4820A; }
.wlht-formation-card[data-color="rouge"]  .wlht-formation-card__icon { background: #DC2626; }

.wlht-formation-card__cert {
    display: inline-block;
    margin-top: 1rem;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.wlht-formation-card .wlht-btn {
    margin-top: 1.25rem;
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* ═══════════════════════════════════════ */
/* PAGE SCIENCE — REFONTE VISUELLE       */
/* ═══════════════════════════════════════ */

/* ─── HERO SCIENCE IMMERSIF ─── */

.wlht-hero-science {
    position: relative;
    min-height: 420px;
    padding: 100px 40px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #020d1a, #051e3e 30%, #0a4a5c 70%, #0d7377);
    background-size: 200% 200%;
    animation: wlht-hero-shift 8s ease infinite alternate;
}

@keyframes wlht-hero-shift {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

.wlht-hero-science__title {
    color: #FFFFFF !important;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    text-shadow: 0 2px 20px rgba(20,255,236,0.2);
    animation: wlht-fadeUp 0.8s ease both;
    margin: 0;
}

.wlht-hero-science__line {
    width: 0;
    height: 2px;
    background: linear-gradient(to right, #0d7377, #14ffec);
    margin: 16px auto;
    animation: wlht-line-grow 0.8s 0.4s ease both;
}

@keyframes wlht-line-grow { to { width: 60px; } }

.wlht-hero-science__sub {
    color: rgba(255,255,255,0.75) !important;
    font-size: 1.15rem;
    max-width: 620px;
    margin: 0 auto;
    animation: wlht-fadeUp 1s 0.2s ease both;
}

@keyframes wlht-fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Bulles SVG */
.wlht-hero-science__bubbles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.wlht-bubble {
    fill: rgba(255,255,255,0.08);
    animation: wlht-bubble-rise var(--d, 8s) var(--delay, 0s) ease-in-out infinite;
    will-change: transform;
}

@keyframes wlht-bubble-rise {
    0%   { transform: translateY(0) translateX(0); opacity: 0.06; }
    50%  { transform: translateY(-20px) translateX(var(--dx, 3px)); opacity: 0.12; }
    100% { transform: translateY(0) translateX(0); opacity: 0.06; }
}

/* Cercles géométriques */
.wlht-hero-science__ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
    z-index: 1;
    pointer-events: none;
    will-change: transform;
}

.wlht-hero-science__ring--1 {
    width: 400px; height: 400px;
    right: -120px; top: -80px;
    border-color: rgba(13,115,119,0.08);
    animation: wlht-ring-spin 30s linear infinite;
}

.wlht-hero-science__ring--2 {
    width: 250px; height: 250px;
    left: -60px; bottom: -40px;
    border-color: rgba(20,255,236,0.05);
    animation: wlht-ring-spin 20s linear infinite reverse;
}

@keyframes wlht-ring-spin { to { transform: rotate(360deg); } }

/* Particules lumineuses */
.wlht-hero-science__spark {
    position: absolute;
    width: 3px; height: 3px;
    border-radius: 50%;
    background: #14ffec;
    z-index: 1;
    pointer-events: none;
    animation: wlht-spark var(--sd, 3s) var(--sdelay, 0s) ease-in-out infinite alternate;
    will-change: opacity;
}

@keyframes wlht-spark {
    0% { opacity: 0.1; }
    100% { opacity: 0.4; }
}

/* ─── CTA SCIENCE SPECTACULAIRE ─── */

.wlht-cta-science {
    position: relative;
    padding: 100px 40px;
    overflow: hidden;
    text-align: center;
    color: #FFFFFF;
    background: linear-gradient(135deg, #c45c1a, #e07b2a 30%, #f59e0b 70%, #0d7377);
    background-size: 200% 200%;
    animation: wlht-cta-shift 6s ease infinite alternate;
}

@keyframes wlht-cta-shift {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

.wlht-cta-science__glow {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,200,50,0.15) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.wlht-cta-science__diamond {
    position: absolute;
    left: 8%;
    top: 50%;
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.06);
    transform: translateY(-50%) rotate(45deg);
    animation: wlht-float 4s ease-in-out infinite alternate;
    z-index: 1;
}

@keyframes wlht-float {
    0%, 100% { transform: translateY(-50%) rotate(45deg) translateY(0); }
    50% { transform: translateY(-50%) rotate(45deg) translateY(-8px); }
}

.wlht-cta-science__drop {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    width: 120px;
    height: 160px;
    z-index: 1;
    animation: wlht-drop-float 3s ease-in-out infinite alternate;
    will-change: transform;
}

@keyframes wlht-drop-float {
    0% { transform: translateY(-50%) translateY(0); }
    100% { transform: translateY(-50%) translateY(-8px); }
}

.wlht-cta-science h2 {
    color: #FFFFFF !important;
    font-size: clamp(2rem, 4vw, 3.2rem);
    text-shadow: 0 2px 16px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
}

.wlht-cta-science h2::after { display: none; }

.wlht-cta-science__sep {
    width: 40px;
    height: 2px;
    background: rgba(255,255,255,0.5);
    margin: 16px auto;
}

.wlht-cta-science p {
    color: rgba(255,255,255,0.85) !important;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 1rem;
}

.wlht-cta-science__badge {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 999px;
    padding: 6px 16px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 0.5rem;
}

.wlht-cta-science__btn-primary {
    display: inline-block;
    background: #FFFFFF;
    color: #c45c1a !important;
    font-weight: 700;
    border-radius: 999px;
    padding: 16px 36px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    font-size: 1rem;
}

.wlht-cta-science__btn-primary:hover {
    transform: scale(1.04);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
    color: #c45c1a !important;
}

.wlht-cta-science__btn-secondary {
    display: inline-block;
    background: transparent;
    border: 2px solid rgba(255,255,255,0.7);
    color: #FFFFFF !important;
    border-radius: 999px;
    padding: 16px 36px;
    transition: background 0.2s, border-color 0.2s;
    text-decoration: none;
    font-size: 1rem;
}

.wlht-cta-science__btn-secondary:hover {
    background: rgba(255,255,255,0.12);
    border-color: #FFFFFF;
    color: #FFFFFF !important;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .wlht-hero-science,
    .wlht-cta-science { animation: none; background-size: 100% 100%; }
    .wlht-bubble, .wlht-hero-science__ring,
    .wlht-hero-science__spark, .wlht-cta-science__diamond,
    .wlht-cta-science__drop, .wlht-hero-science__line { animation: none; }
    .wlht-hero-science__line { width: 60px; }
}

/* Mobile */
@media (max-width: 768px) {
    .wlht-hero-science { padding: 64px 20px; min-height: 320px; }
    .wlht-cta-science { padding: 64px 20px; }
    .wlht-hero-science__ring--1 { width: 200px; height: 200px; }
    .wlht-hero-science__ring--2 { display: none; }
    .wlht-bubble:nth-child(n+6) { display: none; }
    .wlht-hero-science__spark:nth-child(n+5) { display: none; }
    .wlht-cta-science__diamond, .wlht-cta-science__drop { display: none; }
}

/* Titres H2 — ligne décorative */
.page-template-page-science h2 {
    position: relative;
    padding-bottom: 18px;
}

.page-template-page-science h2::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, #0d7377, transparent);
    margin: 12px auto 0;
    border-radius: 2px;
}

.page-template-page-science h2[style*="text-align: center"]::after,
.page-template-page-science h2[style*="text-align:center"]::after {
    margin-left: auto;
    margin-right: auto;
}

/* Sections alternées plus marquées */
.page-template-page-science .wlht-section--alt {
    background: linear-gradient(180deg, #f0f9f9, #e6f4f4) !important;
}

/* Section citations — fond bleu nuit */
.page-template-page-science .wlht-section--science {
    background: linear-gradient(180deg, #f0f9f9, #e6f4f4) !important;
}

.page-template-page-science .wlht-science-citations .wlht-science-cite {
    border: 1px solid #e0eeee;
}

/* Cards H₂ — dégradés colorés */
.page-template-page-science .wlht-cards-grid .wlht-card:nth-child(1) {
    background: linear-gradient(135deg, #0d7377, #0a5c5f) !important;
    border: none;
}

.page-template-page-science .wlht-cards-grid .wlht-card:nth-child(2) {
    background: linear-gradient(135deg, #1a6fa8, #0d4a7a) !important;
    border: none;
}

.page-template-page-science .wlht-cards-grid .wlht-card:nth-child(3) {
    background: linear-gradient(135deg, #2e3d8a, #1a2660) !important;
    border: none;
}

.page-template-page-science .wlht-cards-grid .wlht-card {
    color: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(13,115,119,0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
}

.page-template-page-science .wlht-cards-grid .wlht-card:hover {
    transform: scale(1.03) !important;
    box-shadow: 0 16px 48px rgba(13,115,119,0.35);
}

.page-template-page-science .wlht-cards-grid .wlht-card h3 { color: #FFFFFF !important; }
.page-template-page-science .wlht-cards-grid .wlht-card p { color: rgba(255,255,255,0.9) !important; }

/* Compteurs stats — bordures couleur unique */
.page-template-page-science .wlht-science-stat {
    box-shadow: 0 8px 32px rgba(13,115,119,0.15);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.page-template-page-science .wlht-science-stat:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(13,115,119,0.22);
}

.page-template-page-science .wlht-science-stat:nth-child(1) { border-top: 4px solid #0d7377; }
.page-template-page-science .wlht-science-stat:nth-child(2) { border-top: 4px solid #2e7d9e; }
.page-template-page-science .wlht-science-stat:nth-child(3) { border-top: 4px solid #0a5c5f; }
.page-template-page-science .wlht-science-stat:nth-child(4) { border-top: 4px solid #1a4a6b; }

.page-template-page-science .wlht-science-stat__val {
    font-size: clamp(2.5rem, 5vw, 3.8rem) !important;
}

/* Comparateur — en-tête Kangen enrichi */
.page-template-page-science .wlht-science-compare__table tr:nth-child(even) td {
    background: #f0f9f9;
}

/* FAQ — hover + icône améliorée */
.page-template-page-science .wlht-science-faq__q:hover {
    background: #f0f9f9;
    border-radius: 8px;
    padding-left: 8px;
    padding-right: 8px;
}

.page-template-page-science .wlht-science-faq__icon {
    width: 28px;
    height: 28px;
    background: #0d7377;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 300;
}

.page-template-page-science .wlht-science-faq__item.is-open {
    background: #f0f9f9;
    border-left: 4px solid #0d7377;
    border-radius: 8px;
    padding: 0 12px;
    margin: 4px 0;
}

/* CTA final — remplacé par .wlht-cta-science (voir plus haut) */

/* Transitions globales */
.page-template-page-science .wlht-card,
.page-template-page-science .wlht-science-stat,
.page-template-page-science .wlht-science-cite,
.page-template-page-science .wlht-quote-card {
    transition: all 0.25s ease;
}

/* ═══════════════════════════════════════ */
/* QUIZ — THÈME BLEU NUIT (MISSION 3)   */
/* ═══════════════════════════════════════ */

.wlht-science-quiz {
    background: linear-gradient(135deg, #051e3e, #0d2d4a) !important;
    border-radius: 24px !important;
    padding: 40px !important;
    box-shadow: 0 20px 60px rgba(5,30,62,0.4) !important;
    border: none !important;
    color: #FFFFFF;
}

.wlht-science-quiz__progress {
    background: rgba(255,255,255,0.15) !important;
}

.wlht-science-quiz__progress-bar {
    background: linear-gradient(90deg, #0d7377, #14ffec) !important;
}

.wlht-science-quiz__step {
    color: #14ffec !important;
    font-weight: 600;
}

.wlht-science-quiz__question {
    color: #FFFFFF !important;
    font-family: var(--font-heading) !important;
    font-size: 1.3rem !important;
}

.wlht-science-quiz__option {
    background: rgba(255,255,255,0.08) !important;
    border: 1px solid rgba(255,255,255,0.15) !important;
    color: #FFFFFF !important;
    border-radius: 12px !important;
    padding: 16px 20px !important;
}

.wlht-science-quiz__option:hover {
    background: rgba(20,255,236,0.12) !important;
    border-color: #14ffec !important;
    color: #14ffec !important;
}

.wlht-science-quiz__option.is-correct {
    background: rgba(34,197,94,0.2) !important;
    border: 2px solid #22c55e !important;
    color: #4ade80 !important;
}

.wlht-science-quiz__option.is-wrong {
    background: rgba(239,68,68,0.15) !important;
    border: 2px solid #ef4444 !important;
    color: #f87171 !important;
}

.wlht-science-quiz__feedback {
    background: rgba(255,255,255,0.05) !important;
    color: #94a3b8 !important;
    border-left: 3px solid #0d7377;
    border-radius: 8px;
    padding: 14px 16px;
}

.wlht-science-quiz__next {
    background: linear-gradient(90deg, #0d7377, #14ffec) !important;
    color: #051e3e !important;
    font-weight: 700 !important;
    border-radius: 999px !important;
    padding: 14px 32px !important;
    transition: transform 0.2s !important;
}

.wlht-science-quiz__next:hover {
    transform: scale(1.04);
}

.wlht-science-quiz__score {
    font-size: 4.5rem !important;
}

.wlht-science-quiz__result {
    color: #FFFFFF;
}

.wlht-science-quiz__result p {
    color: rgba(255,255,255,0.8) !important;
}

/* Quiz actions post-résultat */
.wlht-science-quiz__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 24px;
}

.wlht-science-quiz__action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 16px;
    border: none;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    color: #FFFFFF;
    transition: transform 0.2s, opacity 0.2s;
    text-decoration: none;
}

.wlht-science-quiz__action:hover {
    transform: scale(1.03);
    color: #FFFFFF;
}

.wlht-science-quiz__action svg {
    width: 18px;
    height: 18px;
    fill: #FFFFFF;
    flex-shrink: 0;
}

.wlht-science-quiz__action--wa { background: #25D366; }
.wlht-science-quiz__action--share { background: #1a6fa8; }
.wlht-science-quiz__action--email { background: #6b4fbb; }
.wlht-science-quiz__action--cta { background: #0d7377; }
.wlht-science-quiz__action--cta-amber { background: #f59e0b; color: #051e3e; }

.wlht-science-quiz__recap {
    margin-top: 20px;
    text-align: left;
}

.wlht-science-quiz__recap-toggle {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: #94a3b8;
    padding: 10px 16px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    cursor: pointer;
    width: 100%;
    text-align: left;
}

.wlht-science-quiz__recap-list {
    display: none;
    margin-top: 12px;
    font-size: 0.85rem;
    line-height: 1.8;
    color: #94a3b8;
}

.wlht-science-quiz__recap-list.is-open {
    display: block;
}

.wlht-science-quiz__restart {
    display: inline-block;
    margin-top: 16px;
    font-size: 0.8rem;
    color: #6b9ea0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
}

.wlht-science-quiz__restart:hover {
    color: #14ffec;
}

.wlht-science-quiz__email-inline {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.wlht-science-quiz__email-inline input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    background: rgba(255,255,255,0.08);
    color: #FFFFFF;
    font-family: var(--font-body);
    font-size: 0.9rem;
}

.wlht-science-quiz__email-inline button {
    padding: 10px 18px;
    background: #6b4fbb;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

@media (max-width: 480px) {
    .wlht-science-quiz__actions { grid-template-columns: 1fr; }
    .wlht-science-quiz { padding: 28px 20px !important; }
}

/* ═══════════════════════════════════════ */
/* PAGE SCIENCE — 6 WIDGETS INTERACTIFS  */
/* ═══════════════════════════════════════ */

/* W1 — Compteurs stats */
.wlht-science-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.wlht-science-stat {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 30px 16px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(13,115,119,0.08);
    border: 1px solid #e0eeee;
}

.wlht-science-stat__val {
    font-family: var(--font-heading) !important;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: #0d7377;
    display: block;
}

.wlht-science-stat__label {
    font-size: 0.85rem;
    color: #6b9ea0;
    margin-top: 6px;
    display: block;
}

/* W3 — pH Spectrum */
.wlht-science-ph {
    max-width: 700px;
    margin: 0 auto;
}

.wlht-science-ph__bar {
    position: relative;
    height: 80px;
    margin-bottom: 1.5rem;
}

.wlht-science-ph__gradient {
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    height: 14px;
    border-radius: 7px;
    background: linear-gradient(to right, #c0392b, #e67e22, #f1c40f, #27ae60, #2980b9, #1a3a6a);
}

.wlht-science-ph__marker {
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 0;
    z-index: 2;
}

.wlht-science-ph__dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--marker-color);
    border: 3px solid #FFFFFF;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    transition: transform 0.2s;
}

.wlht-science-ph__marker.is-active .wlht-science-ph__dot,
.wlht-science-ph__marker:hover .wlht-science-ph__dot {
    transform: scale(1.3);
}

.wlht-science-ph__ph {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 22px;
}

.wlht-science-ph__desc {
    display: none;
    text-align: center;
    padding: 16px 20px;
    background: #FFFFFF;
    border-radius: 12px;
    border: 1px solid #e0eeee;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.wlht-science-ph__desc.is-active {
    display: block;
}

.wlht-science-ph__desc p {
    margin: 6px 0 0;
    font-size: 0.95rem;
}

/* W4 — Comparateur toggle */
.wlht-science-compare__toggle {
    display: inline-flex;
    border: 2px solid #0d7377;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.wlht-science-compare__btn {
    padding: 10px 28px;
    border: none;
    background: #FFFFFF;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: #0d7377;
    cursor: pointer;
    transition: all 0.2s;
}

.wlht-science-compare__btn.is-active {
    background: #0d7377;
    color: #FFFFFF;
}

.wlht-science-compare__table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.9rem;
}

.wlht-science-compare__table th {
    padding: 12px 16px;
    background: var(--bg-secondary);
    font-weight: 600;
    color: var(--text-primary);
    border-bottom: 2px solid var(--border);
}

.wlht-science-compare__table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    color: var(--text-secondary);
}

.wlht-science-compare__col-kan {
    color: #0d7377 !important;
    font-weight: 600;
}

.wlht-science-compare__table th.wlht-science-compare__col-kan {
    background: #0d7377;
    color: #FFFFFF;
}

.wlht-science-compare__table td.wlht-science-compare__col-kan {
    background: #f0f8f8;
}

/* Highlight toggling */
.wlht-science-compare[data-active="kangen"] .wlht-science-compare__col-kan {
    font-weight: 700;
}

/* W2 — Process électrolyse */
.wlht-science-process {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.wlht-science-process__step {
    text-align: center;
    flex: 0 0 auto;
}

.wlht-science-process__icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    transition: transform 0.3s;
}

.wlht-science-process__step:hover .wlht-science-process__icon {
    transform: scale(1.08);
}

.wlht-science-process__label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    display: block;
}

.wlht-science-process__label small {
    font-weight: 400;
    color: var(--text-secondary);
    font-size: 0.75rem;
}

.wlht-science-process__arrow {
    font-size: 1.6rem;
    color: #0d7377;
    font-weight: 300;
}

.wlht-science-process__results {
    display: flex;
    gap: 16px;
    flex: 0 0 auto;
}

.wlht-science-process__result {
    padding: 16px 20px;
    border-radius: 12px;
    text-align: center;
    font-size: 0.85rem;
}

.wlht-science-process__result strong {
    display: block;
    margin-bottom: 4px;
}

.wlht-science-process__result small {
    font-size: 0.75rem;
}

.wlht-science-process__result--kangen {
    background: #d4ede8;
    color: #0d7377;
    border: 1px solid #0d7377;
}

.wlht-science-process__result--acide {
    background: #fef0e0;
    color: #b87333;
    border: 1px solid #e6b87a;
}

/* W5 — Citations */
.wlht-science-citations {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 2rem;
}

.wlht-science-cite {
    background: #FFFFFF;
    border-radius: 14px;
    padding: 28px 24px;
    border-top: 3px solid #0d7377;
    box-shadow: 0 2px 16px rgba(13,115,119,0.07);
    text-align: left;
    transition: transform 0.2s, box-shadow 0.2s;
}

.wlht-science-cite:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(13,115,119,0.12);
}

.wlht-science-cite__badge {
    display: inline-block;
    background: #0d7377;
    color: #FFFFFF;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}

.wlht-science-cite blockquote {
    font-family: var(--font-heading) !important;
    font-style: italic;
    font-size: 1.05rem;
    color: var(--text-primary);
    line-height: 1.6;
    margin: 0 0 14px;
}

.wlht-science-cite cite {
    font-family: var(--font-body);
    font-style: normal;
    font-size: 0.8rem;
    color: #6b9ea0;
}

/* W6 — VS Concurrence */
.wlht-science-vs {
    overflow-x: auto;
}

.wlht-science-vs table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    min-width: 500px;
}

.wlht-science-vs th,
.wlht-science-vs td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    text-align: left;
}

.wlht-science-vs thead th {
    font-weight: 600;
}

.wlht-science-vs th:first-child,
.wlht-science-vs td:first-child {
    color: var(--text-primary);
    font-weight: 500;
}

.wlht-science-vs__other {
    color: var(--text-secondary);
    text-align: center !important;
}

.wlht-science-vs__enagic {
    background: #f0f8f8;
    color: #0d7377 !important;
    font-weight: 600;
    text-align: center !important;
}

.wlht-science-vs thead .wlht-science-vs__enagic {
    background: #0d7377;
    color: #FFFFFF !important;
    border-radius: 8px 8px 0 0;
}

/* W11 — Barre de progression lecture */
.wlht-science-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: #0d7377;
    z-index: 99999;
    transition: width 0.1s linear;
}

/* W10 — Molécule H₂ animée */
.wlht-science-h2-intro {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.wlht-science-molecule {
    flex: 0 0 160px;
    text-align: center;
}

.wlht-science-molecule__svg {
    width: 140px;
    height: 80px;
    animation: wlht-mol-spin 8s linear infinite;
}

@keyframes wlht-mol-spin {
    from { transform: rotateY(0deg); }
    to { transform: rotateY(360deg); }
}

.wlht-science-molecule__text {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #0d7377;
    margin-top: 8px;
}

.wlht-science-molecule__sub {
    display: block;
    font-size: 0.7rem;
    color: #6b9ea0;
}

/* W7 — Calculateur */
.wlht-science-calc {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 36px 32px;
    box-shadow: 0 2px 16px rgba(13,115,119,0.07);
    border: 1px solid #e0eeee;
}

.wlht-science-calc__label {
    display: block;
    font-size: 1rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.wlht-science-calc__slider {
    width: 100%;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: #e0eeee;
    border-radius: 3px;
    outline: none;
    margin-bottom: 24px;
}

.wlht-science-calc__slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #0d7377;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(13,115,119,0.3);
}

.wlht-science-calc__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.wlht-science-calc__card {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 20px 16px;
    text-align: center;
    border: 1px solid #e0eeee;
}

.wlht-science-calc__card--highlight {
    background: #d4ede8;
    border-color: #0d7377;
}

.wlht-science-calc__num {
    font-family: var(--font-heading) !important;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    color: #0d7377;
    display: block;
}

.wlht-science-calc__txt {
    font-size: 0.8rem;
    color: #6b9ea0;
    margin-top: 4px;
    display: block;
}

.wlht-science-calc__msg {
    margin-top: 18px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* W8 — Quiz */
.wlht-science-quiz {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 36px 32px;
    box-shadow: 0 2px 16px rgba(13,115,119,0.07);
    border: 1px solid #e0eeee;
    text-align: left;
}

.wlht-science-quiz__progress {
    height: 6px;
    background: #e0eeee;
    border-radius: 3px;
    margin-bottom: 8px;
    overflow: hidden;
}

.wlht-science-quiz__progress-bar {
    height: 100%;
    background: #0d7377;
    border-radius: 3px;
    transition: width 0.3s;
}

.wlht-science-quiz__step {
    font-size: 0.8rem;
    color: #6b9ea0;
    margin-bottom: 16px;
}

.wlht-science-quiz__question {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0d3d4a;
    margin-bottom: 18px;
    line-height: 1.5;
}

.wlht-science-quiz__option {
    display: block;
    width: 100%;
    text-align: left;
    padding: 14px 18px;
    border: 2px solid #e0eeee;
    border-radius: 10px;
    background: #FFFFFF;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #0d3d4a;
    cursor: pointer;
    margin-bottom: 10px;
    transition: border-color 0.2s, background 0.2s;
}

.wlht-science-quiz__option:hover {
    border-color: #0d7377;
}

.wlht-science-quiz__option.is-correct {
    border-color: #27ae60;
    background: #eafaf1;
    color: #1a7a42;
}

.wlht-science-quiz__option.is-wrong {
    border-color: #c0392b;
    background: #fdf0ef;
    color: #922b21;
}

.wlht-science-quiz__feedback {
    padding: 14px 18px;
    border-radius: 10px;
    margin: 12px 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

.wlht-science-quiz__next {
    display: inline-block;
    padding: 10px 24px;
    background: #0d7377;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 8px;
}

.wlht-science-quiz__result {
    text-align: center;
}

.wlht-science-quiz__score {
    font-family: var(--font-heading) !important;
    font-size: 3rem;
    font-weight: 700;
    color: #0d7377;
    display: block;
    margin-bottom: 12px;
}

/* W9 — FAQ Accordion */
.wlht-science-faq__item {
    border-bottom: 1px solid #e8f0f0;
}

.wlht-science-faq__q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 18px 0;
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: #0d3d4a;
    cursor: pointer;
    text-align: left;
    gap: 16px;
}

.wlht-science-faq__icon {
    flex-shrink: 0;
    font-size: 1.3rem;
    color: #0d7377;
    font-weight: 300;
    transition: transform 0.3s;
}

.wlht-science-faq__item.is-open .wlht-science-faq__icon {
    transform: rotate(45deg);
}

.wlht-science-faq__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.wlht-science-faq__item.is-open .wlht-science-faq__a {
    max-height: 400px;
    padding-bottom: 18px;
}

.wlht-science-faq__a p {
    font-size: 0.95rem;
    color: #6b9ea0;
    line-height: 1.8;
    margin: 0;
}

/* W12 — CTA flottant mobile */
.wlht-science-cta-mobile {
    display: none;
}

@media (max-width: 767px) {
    .wlht-science-cta-mobile {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        height: 56px;
        background: #0d7377;
        z-index: 9998;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 0 24px;
        box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
    }

    .wlht-science-cta-mobile a {
        color: #FFFFFF !important;
        font-family: var(--font-body);
        font-size: 0.95rem;
        font-weight: 600;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .wlht-science-cta-mobile svg {
        width: 22px;
        height: 22px;
        fill: #FFFFFF;
    }
}

/* Science responsive */
@media (max-width: 768px) {
    .wlht-science-stats { grid-template-columns: repeat(2, 1fr); }
    .wlht-science-citations { grid-template-columns: 1fr; gap: 16px; }
    .wlht-science-process { flex-direction: column; }
    .wlht-science-process__arrow { transform: rotate(90deg); }
    .wlht-science-process__results { flex-direction: column; width: 100%; }
    .wlht-science-compare__btn { padding: 10px 18px; font-size: 0.8rem; }
    .wlht-science-h2-intro { flex-direction: column; align-items: center; }
    .wlht-science-molecule { flex: none; }
    .wlht-science-calc__grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════ */
/* RESPONSIVE                            */
/* ═══════════════════════════════════════ */

@media (max-width: 1024px) {
    .wlht-cards-grid,
    .wlht-formations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .wlht-two-cols {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .wlht-product-card,
    .wlht-product-card--reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .wlht-bo-mockup {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .wlht-bo-mockup__sidebar {
        display: flex;
        overflow-x: auto;
        padding: 12px;
        gap: 4px;
    }

    .wlht-bo-mockup__logo { display: none; }
    .wlht-bo-mockup__nav-item { white-space: nowrap; padding: 8px 12px; }
}

@media (max-width: 768px) {
    .wlht-cards-grid,
    .wlht-formations-grid,
    .wlht-quotes-grid,
    .wlht-footer__grid {
        grid-template-columns: 1fr;
    }

    .wlht-counters {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .wlht-section {
        padding: 60px 0;
    }

    .wlht-hero__content h1 {
        font-size: 2.2rem;
    }

    .wlht-cta-glass .wlht-form {
        flex-direction: column;
    }

    .wlht-cta-glass .wlht-form input {
        min-width: auto;
    }

    .wlht-section--cta-premium {
        padding: 60px 20px;
    }
}

@media (max-width: 480px) {
    .wlht-counters {
        grid-template-columns: 1fr 1fr;
    }

    .wlht-hero__content h1 {
        font-size: 1.8rem;
    }

    .wlht-card {
        padding: 30px 20px;
    }
}
