        /* Navbar intro animation state — only when JS is loaded */
        body.js-loaded #navbar {
            opacity: 0;
            transform: translateY(-20px);
        }

        /* Hero elements: visible by default, hidden only when JS will animate them */
        body.js-loaded .hero-badge,
        body.js-loaded .hero-title-1 .word,
        body.js-loaded .hero-title-2 .word,
        body.js-loaded .hero-subtext,
        body.js-loaded .hero-cta {
            opacity: 0;
        }

        /* ================= 2. HERO SECTION ================= */
        #hero {
            position: relative;
            min-height: 100vh;
            padding-top: 160px;
            padding-bottom: 160px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            top: -50px;
            left: -50px;
            right: -50px;
            bottom: -50px;
            background-image: radial-gradient(circle, #D8D5CF 1px, transparent 1px);
            background-size: 40px 40px;
            z-index: -1;
            opacity: 0.6;
            transition: transform 0.1s ease-out;
        }

        .hero-badge {
            border: 1px solid rgba(0, 87, 255, 0.25);
            background: rgba(0, 87, 255, 0.08);
            color: var(--accent-primary);
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 500;
            margin-bottom: 30px;
        }

        .hero-title {
            font-family: var(--font-head);
            margin-bottom: 24px;
        }

        .hero-title-1 {
            font-size: 96px;
            font-weight: 800;
            color: #0F0F0F;
            letter-spacing: -3px;
            line-height: 1;
        }

        .hero-title-2 {
            font-size: 28px;
            font-weight: 400;
            color: #8A8A8A;
            margin-top: 20px;
        }

        .word-wrap {
            display: inline-block;
            overflow: hidden;
            vertical-align: top;
        }

        .word {
            display: inline-block;
        }

        .hero-subtext {
            font-size: 16px;
            color: #767676;
            margin-top: 12px;
            margin-bottom: 0;
        }

        .btn-hero {
            background: transparent;
            border: 1px solid var(--accent-primary);
            color: var(--accent-primary);
            margin-top: 48px;
            padding: 16px 48px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 500;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .btn-hero:hover {
            background: var(--accent-primary);
            color: #FFFFFF;
            box-shadow: 0 0 24px rgba(0, 87, 255, 0.2);
        }

        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 2s infinite;
            opacity: 0.6;
        }

        @keyframes bounce {

            0%,
            20%,
            50%,
            80%,
            100% {
                transform: translateY(0) translateX(-50%);
            }

            40% {
                transform: translateY(-10px) translateX(-50%);
            }

            60% {
                transform: translateY(-5px) translateX(-50%);
            }
        }

        /* ================= 3. SOCIAL PROOF ================= */
        #social-proof {
            background: #F2F0EC;
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
            padding: 24px 0;
        }

        .proof-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .proof-label {
            color: var(--text-muted);
            font-size: 13px;
            font-weight: 500;
        }

        .proof-logos {
            display: flex;
            gap: 16px;
        }

        .proof-pill {
            border: 1px solid #D8D5CF;
            background: var(--surface-color);
            color: var(--text-muted);
            font-size: 12px;
            padding: 6px 16px;
            border-radius: 4px;
            font-weight: 500;
        }

        /* ================= 4. STATS ROW ================= */
        #stats {
            padding: 80px 0;
        }

        .stats-grid {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 60px;
        }

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

        .stat-num {
            font-family: var(--font-head);
            font-size: 36px;
            font-weight: 700;
            color: var(--text-primary);
        }

        .stat-label {
            font-size: 13px;
            color: var(--text-muted);
            margin-top: 4px;
        }

        .stat-divider {
            width: 1px;
            height: 40px;
            background: var(--border-color);
        }

        /* ================= 5. SERVICES BENTO GRID ================= */
        #services {
            padding-top: 40px;
        }

        .section-tag {
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--text-muted);
            margin-bottom: 16px;
            font-weight: 500;
        }

        .section-title {
            font-family: var(--font-head);
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 60px;
            color: var(--text-primary);
        }

        .bento-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            grid-template-rows: 1fr 1fr;
            gap: 16px;
        }

        .bento-card {
            background: var(--surface-color);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 24px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .bento-card:not(.card-a):hover {
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
            transform: translateY(-4px);
        }

        .card-a {
            grid-column: 1;
            grid-row: span 2;
            background: var(--accent-primary);
            border: none;
            border-radius: 16px;
        }

        .card-a::before {
            content: '';
            position: absolute;
            top: 24px;
            right: 24px;
            width: 44px;
            height: 44px;
            background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 2px, transparent 2px);
            background-size: 20px 20px;
            z-index: 0;
        }

        .card-a * {
            position: relative;
            z-index: 1;
            color: #FFFFFF !important;
        }

        .card-a svg {
            stroke: #FFFFFF !important;
        }

        .card-a:hover {
            box-shadow: 0 8px 32px rgba(0, 87, 255, 0.25);
            transform: translateY(-4px);
        }

        .card-b {
            grid-column: 2;
            grid-row: 1;
            border-top: 3px solid var(--accent-glow);
            min-height: 160px;
        }

        .card-c {
            grid-column: 3;
            grid-row: 1;
            border-top: 3px solid var(--accent-primary);
            min-height: 160px;
        }

        .card-d {
            grid-column: 2;
            grid-row: 2;
            border-top: 3px solid #FF6B35;
            min-height: 160px;
        }

        .card-e {
            grid-column: 3;
            grid-row: 2;
            border-top: 3px solid #7C3AED;
            min-height: 160px;
        }

        .card-icon {
            width: 40px;
            height: 40px;
            margin-bottom: 20px;
        }

        .bento-card h3 {
            font-family: var(--font-head);
            font-size: 20px;
            margin-bottom: 12px;
            color: var(--text-primary);
        }

        .bento-card p {
            font-size: 14px;
            color: var(--text-muted);
        }

        /* ================= 6. TRUST SECTION ================= */
        #trust {
            background: #F5F3EF;
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
        }

        .trust-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 40px;
        }

        .trust-block {
            background: var(--surface-color);
            border: 1px solid var(--border-color);
            border-radius: 0 12px 12px 0;
            padding: 32px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
            position: relative;
        }

        .tb-1 {
            border-left: 3px solid var(--accent-primary);
        }

        .tb-2 {
            border-left: 3px solid var(--accent-glow);
        }

        .tb-3 {
            border-left: 3px solid #A855F7;
        }

        .trust-icon {
            width: 40px;
            height: 40px;
            margin-bottom: 16px;
        }

        .tb-1 .trust-icon {
            color: var(--accent-primary);
        }

        .tb-2 .trust-icon {
            color: var(--accent-glow);
        }

        .tb-3 .trust-icon {
            color: #A855F7;
        }

        .trust-block h4 {
            font-family: var(--font-head);
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--text-primary);
        }

        .trust-block p {
            font-size: 15px;
            line-height: 1.7;
            color: var(--text-muted);
        }

        /* ================= 7. TEAM SECTION ================= */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            margin-top: 40px;
        }

        .team-card {
            background: var(--surface-color);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 36px;
            display: block;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
            transition: box-shadow 0.3s ease, transform 0.3s ease;
        }

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

        .avatar {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            display: block;
            line-height: 72px;
            text-align: center;
            font-family: var(--font-head);
            font-weight: 700;
            font-size: 22px;
            margin-bottom: 16px;
        }

        .tc-1 .avatar {
            color: var(--accent-primary);
            background: rgba(0, 87, 255, 0.08);
            border: 1px solid rgba(0, 87, 255, 0.2);
        }

        .tc-2 .avatar {
            color: var(--accent-glow);
            background: rgba(0, 166, 126, 0.08);
            border: 1px solid rgba(0, 166, 126, 0.2);
        }

        .team-info h4 {
            font-family: var(--font-head);
            font-size: 22px;
            font-weight: 700;
            color: #0F0F0F;
            margin-bottom: 6px;
        }

        .team-info p {
            font-size: 14px;
            color: #6B6B6B;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .team-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .team-tag {
            font-size: 12px;
            padding: 4px 12px;
            background: #F2F0EC;
            border: 1px solid #E0DDD8;
            border-radius: 20px;
            color: #6B6B6B;
        }

        /* ================= 8. DIAGNOSTIC GRATUIT ================= */
        #diagnostic {
            background: var(--bg-color);
            text-align: center;
            padding: 120px 0;
            border-top: 1px solid var(--border-color);
        }

        .diag-badge {
            display: inline-block;
            border: 1px solid var(--border-color);
            background: var(--surface-color);
            padding: 4px 12px;
            border-radius: 50px;
            font-size: 12px;
            color: var(--text-muted);
            font-weight: 500;
            margin-bottom: 24px;
        }

        .diag-form-wrapper {
            max-width: 500px;
            margin: 40px auto 0;
            text-align: left;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            font-size: 13px;
            color: var(--text-muted);
            font-weight: 500;
            margin-bottom: 8px;
        }

        .form-control {
            width: 100%;
            background: var(--surface-color);
            border: 1px solid #D8D5CF;
            color: var(--text-primary);
            padding: 14px 16px;
            border-radius: 6px;
            font-family: var(--font-body);
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--accent-primary);
            box-shadow: 0 0 8px rgba(0, 87, 255, 0.2);
        }

        .btn-submit {
            width: 100%;
            background: transparent;
            border: 1px solid var(--accent-primary);
            color: var(--accent-primary);
            padding: 16px;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 500;
            transition: all 0.3s ease;
            margin-top: 10px;
        }

        .btn-submit:hover {
            background: var(--accent-primary);
            color: #FFFFFF;
            box-shadow: 0 0 24px rgba(0, 87, 255, 0.2);
        }

        .success-msg {
            display: none;
            padding: 30px;
            background: rgba(0, 166, 126, 0.05);
            border: 1px solid rgba(0, 166, 126, 0.2);
            border-radius: 8px;
            color: var(--accent-glow);
            text-align: center;
            font-weight: 500;
        }

        @media (max-width: 900px) {
            .hero-title-1 {
                font-size: 60px;
            }

            .hero-title-2 {
                font-size: 32px;
            }

            .bento-grid,
            .trust-grid,
            .team-grid {
                grid-template-columns: 1fr;
            }

            .card-a,
            .card-b,
            .card-c,
            .card-d,
            .card-e {
                grid-column: span 1;
                grid-row: auto;
                min-height: auto;
            }

            .proof-container {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }

            .proof-logos {
                flex-wrap: wrap;
                justify-content: center;
            }
        }

        @media (max-width: 600px) {
            #hero {
                padding-top: 100px;
                padding-bottom: 80px;
            }

            .stats-grid {
                flex-direction: column;
                gap: 30px;
            }

            .stat-divider {
                width: 40px;
                height: 1px;
            }

            .hero-title-1 {
                font-size: 48px;
            }

            .hero-title-2 {
                font-size: 24px;
            }

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

            .avatar {
                margin-left: auto;
                margin-right: auto;
            }

            .team-tags {
                justify-content: center;
            }

            #diagnostic {
                padding: 80px 0;
            }

            .diag-form-wrapper {
                padding: 0 8px;
            }
        }