:root {
            --bg-dark: #050816;
            --bg-darker: #030711;
            --bg-card: #0b1020;
            --primary: #4f46e5;
            --primary-soft: rgba(79, 70, 229, 0.15);
            --accent: #22c55e;
            --text-main: #f9fafb;
            --text-muted: #9ca3af;
            --border-soft: rgba(148, 163, 184, 0.25);
            --radius-xl: 1.5rem;
            --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.65);
            --transition-fast: 0.2s ease-out;
            --transition-slow: 0.45s ease;
            --nav-height: 72px;
        }

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

        /* ======================
   FULL OXANIUM THEME
   ====================== */

html, body {
    scroll-behavior: smooth;
    background: radial-gradient(circle at top, #111827 0, #020617 55%);
    color: var(--text-main);
    font-family: "Oxanium", sans-serif !important;
    font-weight: 400;
    font-optical-sizing: auto;
}



h1, h2, h3,
.section-title,
.hero-h1,
.card-title,
.demo-stats-title,
.demo-form h3 {
    font-family: "Oxanium", sans-serif !important;
    font-weight: 600;
    letter-spacing: .8px;
}


.nav-links a,
.btn,
.btn-primary,
.btn-ghost,
label,
input,
textarea,
.pill,
.role-chip {
    font-family: "Oxanium", sans-serif !important;
    font-weight: 500;
    letter-spacing: .4px;
}





        body {
            min-height: 100vh;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        ul {
            list-style: none;
        }

        .page {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem 4rem;
        }

        /* ======================================================
           =============== HEADER STYLE APPLE/LINEAR =============
           ====================================================== */

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: var(--nav-height);
            backdrop-filter: blur(18px);
            background: rgba(2, 6, 23, 0.25);
            transition: background 0.35s ease, border-bottom 0.35s ease;
            display: flex;
            align-items: center;
            z-index: 50;
        }

        header.scrolled {
            background: rgba(2, 6, 23, 0.90);
            border-bottom: 1px solid rgba(255,255,255,0.06);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            height: var(--nav-height);
            width: 100%;
            padding: 0 1.5rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            height: 32px;
            gap: .55rem;
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--text-main);
            text-transform: uppercase;
            letter-spacing: .06em;
            white-space: nowrap;
        }

        .logo-dot {
            width: 22px;
            height: 22px;
            border-radius: 999px;
            background: radial-gradient(circle at 10% 0%, var(--accent), var(--primary));
            box-shadow: 0 0 14px rgba(79, 70, 229, .6);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .nav-links a {
            font-size: .95rem;
            color: var(--text-muted);
            transition: .25s ease;
        }

        .nav-links a:hover {
            color: var(--text-main);
        }

        .nav-cta {
            display: flex;
            gap: .85rem;
        }

        /* ====== Nouveau Logo Geopm (minuscule) ====== */

.nav-logo {
    display: flex;
    align-items: center;
    gap: .6rem;
    text-decoration: none;
}

.logo-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    opacity: 0.9;
    transition: 0.3s ease;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
    stroke-linecap: round;
}

/* LOGO exclusivement en Oxanium */
.logo-text {
    font-family: "Oxanium", sans-serif !important;
    font-weight: 700;
    font-size: 2.5rem;
    letter-spacing: .02em;
    text-transform: none;
    background: linear-gradient(135deg, #a855f7, #4f46e5, #22c55e);
    -webkit-background-clip: text;
    color: transparent;
}



.nav-logo:hover .logo-text {
    letter-spacing: .02em;
    opacity: 0.95;
}


.nav-logo:hover .logo-text {
    letter-spacing: .02em;
}


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

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: .45rem;

            padding: .6rem 1.35rem;
            font-size: .9rem;
            font-weight: 500;

            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.18);

            background: rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(14px) saturate(180%);
            -webkit-backdrop-filter: blur(14px) saturate(180%);
            
            color: var(--text-main);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-primary {
            background: linear-gradient(
                135deg,
                rgba(79, 70, 229, 0.40),
                rgba(34, 197, 94, 0.40)
            );

            border: 1px solid rgba(255, 255, 255, 0.28);
            box-shadow:
                0 4px 10px rgba(0, 0, 0, 0.25),
                0 0 18px rgba(79, 70, 229, 0.35);
            color: #f9fafb;
        }

        .btn-primary:hover {
            background: linear-gradient(
                135deg,
                rgba(79, 70, 229, 0.55),
                rgba(34, 197, 94, 0.55)
            );
            
            transform: translateY(-2px);
            box-shadow:
                0 6px 16px rgba(0, 0, 0, 0.3),
                0 0 22px rgba(79, 70, 229, 0.45);
        }

        .btn-ghost {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.12);
            color: rgba(255, 255, 255, 0.85);
            box-shadow:
                inset 0 0 0 0 rgba(255, 255, 255, 0.35),
                0 3px 10px rgba(0, 0, 0, 0.25);
        }

        .btn-ghost:hover {
            background: rgba(255, 255, 255, 0.07);
            border-color: rgba(255, 255, 255, 0.25);
            transform: translateY(-2px);
            box-shadow:
                inset 0 0 0 0 rgba(255, 255, 255, 0.35),
                0 6px 16px rgba(0, 0, 0, 0.35);
        }

        /* -------- Theme Toggle -------- */
        .theme-toggle {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: 1px solid rgba(255,255,255,0.25);
            background: rgba(255,255,255,0.08);
            backdrop-filter: blur(10px);
            color: var(--text-main);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: .25s ease;
            flex-shrink: 0;
        }

        .theme-toggle:hover {
            transform: translateY(-1px);
            box-shadow: 0 6px 14px rgba(0,0,0,0.35);
        }

        /* -------- Burger -------- */
        .burger {
            display: none;
            width: 36px;
            height: 36px;
            border-radius: 999px;
            border: 1px solid rgba(255,255,255,0.18);
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }

        .burger span,
        .burger span::before,
        .burger span::after {
            content: "";
            width: 20px;
            height: 2px;
            background: var(--text-main);
            display: block;
            border-radius: 999px;
            position: relative;
            transition: .25s ease;
        }

        .burger span::before {
            position: absolute;
            top: -6px;
        }

        .burger span::after {
            position: absolute;
            top: 6px;
        }

        .burger.active span {
            transform: rotate(45deg);
        }

        .burger.active span::before {
            transform: rotate(-90deg);
            top: 0;
        }

        .burger.active span::after {
            opacity: 0;
        }

        /* -------- Mobile Menu -------- */
        .mobile-menu {
            position: fixed;
            inset: 0;
            background: rgba(2, 6, 23, 0.97);
            -webkit-backdrop-filter: blur(18px);
            backdrop-filter: blur(18px);
            z-index: 9999;
            padding: 6rem 2rem 2rem;
            display: flex;
            flex-direction: column;
            gap: 2rem;
            transform: translateX(100%);
            transition: transform .35s ease;
        }

        .mobile-menu.open {
            transform: translateX(0);
        }

        .mobile-menu nav {
            display: flex;
            flex-direction: column;
            gap: 1.8rem;
        }

        .mobile-menu nav a {
            font-size: 1.35rem;
            color: var(--text-main);
            font-weight: 500;
        }

        .mobile-cta {
            margin-top: auto;
        }

        .mobile-cta .btn-primary {
            width: 100%;
            padding: .85rem 1rem;
            font-size: 1rem;
        }

        @media(max-width: 960px) {
            .nav-links,
            .nav-cta {
                display: none;
            }

            .burger {
                display: flex;
            }
        }

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

        main {
            padding-top: calc(var(--nav-height) + 32px);
        }

        section {
            padding: 3.5rem 0 1rem;
        }

        .section-header {
            margin-bottom: 2rem;
        }

        .eyebrow {
            text-transform: uppercase;
            font-size: .75rem;
            letter-spacing: .16em;
            color: #818cf8;
            margin-bottom: .4rem;
        }

        .section-title {
            font-size: clamp(1.6rem, 2vw, 2rem);
            font-weight: 700;
            margin-bottom: .5rem;
        }

        .section-subtitle {
            color: var(--text-muted);
            max-width: 650px;
        }

        .reveal {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity var(--transition-slow), transform var(--transition-slow);
        }

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

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

        .hero {
            display: grid;
            grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
            gap: 2.5rem;
            align-items: center;
            padding-top: 2.5rem;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: .35rem;
            padding: .2rem .55rem;
            border-radius: 999px;
            border: 1px solid rgba(148, 163, 184, 0.35);
            background: rgba(15, 23, 42, 0.8);
            font-size: 0.75rem;
            color: #e5e7eb;
            margin-bottom: 1.3rem;
        }

        .hero-badge-dot {
            width: 7px;
            height: 7px;
            border-radius: 999px;
            background: #22c55e;
            box-shadow: 0 0 10px rgba(34, 197, 94, 0.7);
        }

        .hero-h1 {
            font-size: clamp(2.3rem, 3.3vw, 3rem);
            line-height: 1.1;
            margin-bottom: 1rem;
        }

        .hero-h1 span {
            background: linear-gradient(135deg, #a855f7, #4f46e5, #22c55e);
            -webkit-background-clip: text;
            color: transparent;
        }

        .hero-lead {
            color: var(--text-muted);
            max-width: 580px;
            margin-bottom: 1.5rem;
            font-size: 0.98rem;
        }

        .hero-bullets {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: .8rem 1.2rem;
            margin-bottom: 2rem;
            font-size: .9rem;
        }

        .hero-bullets li {
            display: flex;
            align-items: flex-start;
            gap: .35rem;
            color: var(--text-muted);
        }

        .hero-bullets li::before {
            content: "●";
            font-size: .6rem;
            color: #22c55e;
            margin-top: .25rem;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: .75rem;
            align-items: center;
        }

        .hero-note {
            font-size: .8rem;
            color: var(--text-muted);
        }

        .hero-visual {
            position: relative;
        }

        .hero-orbit {
            position: absolute;
            inset: -5%;
            background:
                radial-gradient(circle at 10% 5%, rgba(34, 197, 94, 0.20), transparent 55%),
                radial-gradient(circle at 90% 80%, rgba(79, 70, 229, 0.20), transparent 55%);
            filter: blur(18px);
            opacity: .9;
            pointer-events: none;
        }

        .hero-card {
            position: relative;
            border-radius: var(--radius-xl);
            border: 1px solid var(--border-soft);
            background: radial-gradient(circle at top, rgba(15, 23, 42, 0.95), #020617);
            padding: 1.25rem;
            box-shadow: var(--shadow-soft);
            overflow: hidden;
        }

        .hero-card-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
            font-size: .8rem;
        }

        .hero-card-header span {
            color: var(--text-muted);
        }

        .hero-status-dot {
            width: 8px;
            height: 8px;
            border-radius: 999px;
            background: #22c55e;
            box-shadow: 0 0 12px rgba(34, 197, 94, 0.8);
        }

        .hero-dash {
            display: grid;
            grid-template-columns: 1.25fr 1fr;
            gap: 1rem;
            align-items: flex-start;
        }

        .hero-list {
            font-size: .78rem;
        }

        .hero-list-row {
            display: flex;
            justify-content: space-between;
            padding: .4rem .55rem;
            border-radius: 0.75rem;
            background: rgba(15, 23, 42, 0.9);
            border: 1px solid rgba(30, 64, 175, 0.45);
            margin-bottom: .35rem;
        }

        .hero-list-row-label {
            color: var(--text-muted);
        }

        .hero-list-row-value {
            font-weight: 600;
        }

        .hero-map {
            border-radius: 1rem;
            border: 1px solid rgba(55, 65, 81, 0.8);
            background: conic-gradient(from 210deg, #0f172a, #020617, #0f172a);
            padding: .55rem;
            position: relative;
            overflow: hidden;
        }

        .hero-map-inner {
            position: relative;
            padding: 1.4rem .9rem .9rem;
            font-size: .72rem;
            color: var(--text-muted);
        }

        .hero-map-ping {
            position: absolute;
            width: 10px;
            height: 10px;
            border-radius: 999px;
            background: #22c55e;
            top: 32%;
            left: 64%;
            box-shadow: 0 0 12px rgba(34, 197, 94, 0.9);
            animation: ping 1.8s infinite;
        }

        .hero-map-ping:nth-child(2) {
            top: 58%;
            left: 30%;
            animation-delay: .4s;
        }

        .hero-map-ping:nth-child(3) {
            top: 70%;
            left: 78%;
            animation-delay: .9s;
        }

        .hero-tag {
            display: inline-flex;
            align-items: center;
            gap: .35rem;
            padding: .2rem .55rem;
            border-radius: 999px;
            background: rgba(15, 23, 42, 0.95);
            border: 1px solid rgba(55, 65, 81, 0.9);
            margin-bottom: .5rem;
        }

        .hero-tag-badge {
            width: 8px;
            height: 8px;
            border-radius: 999px;
            background: #38bdf8;
        }

        .hero-float-card {
            position: absolute;
            right: 8%;
            bottom: -20px;
            transform: translateY(-40%);
            border-radius: 1rem;
            border: 1px solid rgba(55, 65, 81, 0.9);
            background: rgba(15, 23, 42, 0.96);
            padding: .6rem .8rem;
            font-size: .75rem;
            display: flex;
            gap: .6rem;
            align-items: center;
            backdrop-filter: blur(10px);
            animation: float 4s ease-in-out infinite;
        }

        .hero-float-dot {
            width: 18px;
            height: 18px;
            border-radius: 999px;
            background: radial-gradient(circle at 30% 0, #22c55e, #4ade80);
        }

        /* ===================== FEATURE GRID ===================== */

        .grid-3 {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 1.4rem;
        }

        .card {
            border-radius: var(--radius-xl);
            border: 1px solid var(--border-soft);
            background: radial-gradient(circle at top left, rgba(79, 70, 229, 0.18), rgba(15, 23, 42, 0.95));
            padding: 1.3rem 1.3rem 1.4rem;
            box-shadow: 0 12px 35px rgba(15, 23, 42, 0.75);
            position: relative;
            overflow: hidden;
        }

        .card::before {
            content: "";
            position: absolute;
            inset: -40%;
            opacity: 0;
            background:
                radial-gradient(circle at 10% 0%, rgba(96, 165, 250, 0.35), transparent 55%),
                radial-gradient(circle at 90% 100%, rgba(52, 211, 153, 0.35), transparent 55%);
            transition: opacity var(--transition-slow);
        }

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

        .card-title {
            font-size: 1rem;
            margin-bottom: .4rem;
        }

        .card-pill {
            font-size: .75rem;
            color: #a5b4fc;
            margin-bottom: .3rem;
        }

        .card p {
            font-size: .86rem;
            color: var(--text-muted);
            margin-bottom: .75rem;
        }

        .card ul {
            font-size: .83rem;
            color: var(--text-muted);
        }

        .card ul li {
            position: relative;
            padding-left: 1rem;
            margin-bottom: .3rem;
        }

        .card ul li::before {
            content: "▹";
            position: absolute;
            left: 0;
            top: 0;
            color: #22c55e;
            font-size: .75rem;
        }

        /* ===================== ROLES ===================== */

        .roles-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 1.1rem;
        }

        .role-card {
            border-radius: 1.1rem;
            border: 1px solid var(--border-soft);
            padding: 1.05rem 1.1rem;
            background: radial-gradient(circle at top, rgba(15, 23, 42, 0.96), #020617);
            font-size: .86rem;
        }

        .role-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: .5rem;
        }

        .role-name {
            font-weight: 600;
        }

        .role-chip {
            font-size: .7rem;
            padding: .2rem .45rem;
            border-radius: 999px;
            border: 1px solid rgba(148, 163, 184, 0.6);
            color: #e5e7eb;
        }

        .role-card ul {
            color: var(--text-muted);
        }

        .role-card ul li {
            padding-left: .85rem;
            position: relative;
            margin-bottom: .2rem;
        }

        .role-card ul li::before {
            content: "–";
            position: absolute;
            left: 0;
            top: 0;
        }

        /* ===================== USE CASES ===================== */

        .pill-row {
            display: flex;
            flex-wrap: wrap;
            gap: .5rem;
            margin-top: 1rem;
        }

        .pill {
            padding: .35rem .7rem;
            border-radius: 999px;
            border: 1px solid rgba(148, 163, 184, 0.5);
            font-size: .78rem;
            color: var(--text-muted);
            background: rgba(15, 23, 42, 0.96);
        }

        /* ===================== DEMO / STATS ===================== */

        .demo-grid {
            display: grid;
            grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
            gap: 1.5rem;
            align-items: flex-start;
        }

        .demo-form {
            border-radius: 1.3rem;
            border: 1px solid var(--border-soft);
            background: radial-gradient(circle at top, rgba(79, 70, 229, .18), rgba(15, 23, 42, .96));
            padding: 1.2rem 1.3rem 1.5rem;
            box-shadow: var(--shadow-soft);
            font-size: .88rem;
        }

        .demo-form h3 {
            font-size: .98rem;
            margin-bottom: .8rem;
        }

        .demo-form .field {
            margin-bottom: .6rem;
        }

        .demo-form .field-label {
            display: block;
            font-size: .8rem;
            color: var(--text-muted);
            margin-bottom: .15rem;
        }

        .demo-form .field-input {
            width: 100%;
            border-radius: .75rem;
            border: 1px solid rgba(55, 65, 81, 0.9);
            padding: .35rem .55rem;
            font-size: .82rem;
            background: rgba(15, 23, 42, 0.95);
            color: #f9fafb;
        }

        .demo-stats {
            border-radius: 1.3rem;
            border: 1px solid var(--border-soft);
            background: radial-gradient(circle at bottom left, rgba(34, 197, 94, .16), rgba(15, 23, 42, .96));
            padding: 1rem 1.1rem 1.2rem;
            box-shadow: var(--shadow-soft);
            font-size: .85rem;
        }

        .demo-stats-title {
            font-size: .92rem;
            margin-bottom: .4rem;
        }

        .stat-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: .35rem;
            color: var(--text-muted);
        }

        .stat-value {
            font-weight: 600;
            color: #e5e7eb;
        }

        .demo-map {
            margin-top: .75rem;
            border-radius: 1rem;
            border: 1px dashed rgba(148, 163, 184, .5);
            padding: .5rem;
            font-size: .78rem;
            color: var(--text-muted);
        }

        /* ===================== ABOUT & CONTACT ===================== */

        .about-grid {
            display: grid;
            grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
            gap: 1.5rem;
            align-items: flex-start;
        }

        .contact-card {
            border-radius: 1.3rem;
            border: 1px solid var(--border-soft);
            background: radial-gradient(circle at top right, rgba(79, 70, 229, 0.2), rgba(15, 23, 42, 0.96));
            padding: 1.2rem 1.3rem;
            box-shadow: var(--shadow-soft);
            font-size: .86rem;
        }

        .contact-form-group {
            margin-bottom: .7rem;
        }

        .contact-label {
            font-size: .8rem;
            color: var(--text-muted);
            margin-bottom: .15rem;
            display: block;
        }

        .contact-input,
        .contact-textarea {
            width: 100%;
            border-radius: .8rem;
            border: 1px solid rgba(55, 65, 81, 0.9);
            padding: .4rem .55rem;
            font-size: .85rem;
            background: rgba(15, 23, 42, 0.95);
            color: #f9fafb;
            resize: vertical;
            min-height: 40px;
        }

        .contact-small {
            font-size: .76rem;
            color: var(--text-muted);
            margin-top: .35rem;
        }

        footer {
            padding: 2.5rem 0 0;
            font-size: .78rem;
            color: var(--text-muted);
        }

        footer .footer-inner {
            border-top: 1px solid rgba(15, 23, 42, 0.85);
            padding: 1rem 0 2rem;
            display: flex;
            justify-content: space-between;
            gap: 1rem;
            flex-wrap: wrap;
        }

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

        @keyframes ping {
            0% { transform: scale(1); opacity: 1; }
            70% { transform: scale(2.4); opacity: 0; }
            100% { opacity: 0; }
        }

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

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

        @media (max-width: 960px) {
            .hero {
                grid-template-columns: minmax(0, 1fr);
            }

            .hero-visual {
                order: -1;
            }

            .grid-3,
            .roles-grid,
            .demo-grid,
            .about-grid {
                grid-template-columns: minmax(0, 1fr);
            }
        }

        @media (max-width: 768px) {
            .page {
                padding-inline: 1rem;
            }

            .hero-bullets {
                grid-template-columns: minmax(0, 1fr);
            }
        }

        /* ======================================================
           =============== LIGHT MODE OVERRIDES (APPLE STYLE) ====
           ====================================================== */

        :root[data-theme="light"] {
            --bg-dark: #ffffff;
            --bg-darker: #f5f6f8;
            --bg-card: #ffffff;
            --text-main: #111827;
            --text-muted: #4b5563;
            --border-soft: rgba(0,0,0,0.12);
            --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.12);
        }

        :root[data-theme="light"] html,
        :root[data-theme="light"] body {
            background: radial-gradient(circle at top, #ffffff 0, #e5e7eb 55%);
            color: var(--text-main);
        }

        :root[data-theme="light"] header {
            background: rgba(255, 255, 255, 0.85);
            border-bottom: 1px solid rgba(0,0,0,0.06);
            backdrop-filter: blur(16px);
        }

        :root[data-theme="light"] header.scrolled {
            background: rgba(255, 255, 255, 0.96);
        }

        :root[data-theme="light"] .nav-links a {
            color: #4b5563;
        }

        :root[data-theme="light"] .nav-links a:hover {
            color: #111827;
        }

        :root[data-theme="light"] .theme-toggle {
            border-color: rgba(0,0,0,0.10);
            background: rgba(255,255,255,0.9);
            box-shadow: 0 4px 10px rgba(15,23,42,0.12);
        }

        :root[data-theme="light"] .mobile-menu {
            background: rgba(255, 255, 255, 0.96);
            color: #111827;
        }

        :root[data-theme="light"] .mobile-menu nav a {
            color: #111827;
        }

        :root[data-theme="light"] .hero-card,
        :root[data-theme="light"] .card,
        :root[data-theme="light"] .role-card,
        :root[data-theme="light"] .demo-form,
        :root[data-theme="light"] .demo-stats,
        :root[data-theme="light"] .contact-card {
            background: #ffffff;
            border-color: rgba(0,0,0,0.10);
            box-shadow: 0 18px 40px rgba(15,23,42,0.12);
        }

        :root[data-theme="light"] .hero-list-row,
        :root[data-theme="light"] .demo-form .field-input,
        :root[data-theme="light"] .contact-input,
        :root[data-theme="light"] .contact-textarea {
            background: #f9fafb;
            border-color: rgba(148,163,184,0.6);
            color: #111827;
        }

        :root[data-theme="light"] .hero-map {
            background: #f9fafb;
            border-color: rgba(148,163,184,0.6);
        }

        :root[data-theme="light"] .pill {
            background: #ffffff;
            color: #4b5563;
            border-color: rgba(148,163,184,0.55);
        }

        :root[data-theme="light"] .hero-badge {
            background: rgba(255,255,255,0.95);
            border-color: rgba(148,163,184,0.5);
            color: #111827;
        }

        :root[data-theme="light"] .btn {
            border-color: rgba(0,0,0,0.12);
            background: rgba(255,255,255,0.7);
            color: #111827;
            box-shadow: 0 8px 22px rgba(15, 23, 42, 0.16);
        }

        :root[data-theme="light"] .btn-ghost {
            background: #ffffff;
            color: #111827;
            border-color: rgba(0,0,0,0.12);
            box-shadow: 0 8px 22px rgba(15, 23, 42, 0.12);
        }

        :root[data-theme="light"] .btn-primary {
            background: linear-gradient(135deg, #4f46e5, #22c55e);
            color: #ffffff;
        }

        :root[data-theme="light"] footer .footer-inner {
            border-top-color: rgba(148,163,184,0.5);
        }
        /* =========================
   FIX MODE LIGHT HERO CARD
   ========================= */
:root[data-theme="light"] .hero-card {
    background: #ffffff !important;
    border-color: rgba(0,0,0,0.12) !important;
    box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}

/* map container */
:root[data-theme="light"] .hero-map {
    background: #ffffff !important;
    border-color: rgba(0,0,0,0.12) !important;
}

/* map inner text */
:root[data-theme="light"] .hero-map-inner {
    color: #111827 !important;
}

/* badge (“Carte des équipes – Live”) */
:root[data-theme="light"] .hero-tag {
    background: #ffffff !important;
    border-color: rgba(0,0,0,0.12) !important;
    color: #111827 !important;
}

/* floating card at bottom */
:root[data-theme="light"] .hero-float-card {
    background: #ffffff !important;
    border-color: rgba(0,0,0,0.12) !important;
    color: #111827 !important;
    box-shadow: 0 10px 28px rgba(0,0,0,0.10);
}

/* text inside */
:root[data-theme="light"] .hero-float-card div,
:root[data-theme="light"] .hero-card-header span {
    color: #111827 !important;
}
:root[data-theme="light"] .logo-text {
    background: linear-gradient(135deg, #4f46e5, #22c55e);
    -webkit-background-clip: text;
    color: transparent;
}

:root[data-theme="light"] .logo-icon {
    color: #4f46e5;
}
