        /* ===== GLOBAL THEME ===== */
        :root {
            --mypuls-dark-bg: #121418;
            --mypuls-card-bg: rgba(30, 34, 40, 0.6);
            --mypuls-border: rgba(255, 255, 255, 0.08);
            --mypuls-primary: #0d6efd;
            --mypuls-purple: #6f42c1;
        }

        body {
            background-color: var(--mypuls-dark-bg);
            color: #e9ecef;
            font-family: 'Inter', sans-serif;
        }

        /* ===== NAVBAR ===== */
        /* Reprise du style qu'on a défini précédemment */
        .navbar-landing {
            background: rgba(18,20,24,0.9);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--mypuls-border);
        }

        /* ===== HEADER ===== */
        .page-header {
            padding: 140px 0 60px 0;
            background: radial-gradient(circle at 50% -20%, rgba(13,110,253,0.15), transparent 50%);
            text-align: center;
        }

        .text-gradient {
            background: linear-gradient(135deg, #20e3b2 0%, #29ffc6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* ===== GLASS CARD ===== */
        .legal-card {
            background: var(--mypuls-card-bg);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid var(--mypuls-border);
            border-radius: 16px;
            padding: 3rem;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
        }

        /* ===== TYPOGRAPHY ===== */
        .legal-section {
            margin-bottom: 2.5rem;
            padding-bottom: 2.5rem;
            border-bottom: 1px solid var(--mypuls-border);
        }
        .legal-section:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .legal-title {
            color: #fff;
            font-weight: 600;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .legal-icon {
            width: 32px; height: 32px;
            background: rgba(13, 110, 253, 0.1);
            color: var(--mypuls-primary);
            border-radius: 8px;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.1rem;
        }

        .legal-text {
            color: #adb5bd;
            line-height: 1.7;
            font-size: 0.95rem;
        }

        /* Back to top */
        .landing-back-top { bottom: 30px; right: 30px; }
