        :root {
            --pri: #667eea;
            --pri2: #764ba2;
            --dark: #0f0c29;
            --ink: #1f2937;
            --muted: #6b7280;
            --line: #e9ecf6;
            --soft: #f8f9ff;
            --warn: #ffedd5;
            --danger-soft: #fee2e2;
        }
        body { overflow-x: hidden; background: #fff; font-family: 'Segoe UI', system-ui, sans-serif; color: var(--ink); }
        a { text-decoration: none; }

        /* ── Page Hero ─────────────────────────────────────────────── */
        .page-hero {
            position: relative;
            background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
            padding: 92px 0 70px;
            overflow: hidden;
        }
        .page-hero::before {
            content: "";
            position: absolute;
            width: 460px;
            height: 460px;
            right: -130px;
            top: -180px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255,255,255,.2) 0%, rgba(255,255,255,0) 72%);
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: .5rem;
            background: rgba(255,255,255,.14);
            border: 1px solid rgba(255,255,255,.24);
            color: #fff;
            border-radius: 999px;
            padding: .45rem .95rem;
            font-size: .82rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }
        .hero-lead { color: rgba(255,255,255,.84); max-width: 760px; margin-inline: auto; }

        .disclaimer-section { padding: 84px 0; background: linear-gradient(180deg, #ffffff 0%, #fbfbff 100%); }
        .disclaimer-card {
            border: 1px solid var(--line);
            border-radius: 16px;
            background: #fff;
            box-shadow: 0 10px 24px rgba(15,12,41,.05);
            padding: 2rem;
        }
        .summary-box {
            border: 1px solid #f7c985;
            background: linear-gradient(135deg, #fff8eb 0%, #fff3dc 100%);
            border-radius: 14px;
            padding: 1rem 1rem;
            margin-bottom: 1.15rem;
        }
        .point-item {
            border: 1px solid var(--line);
            border-radius: 14px;
            background: #fff;
            padding: 1.15rem 1.15rem;
            margin-bottom: 1rem;
        }
        .point-item h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .55rem; }
        .point-item p { color: var(--muted); margin-bottom: 0; line-height: 1.72; }
        .point-index {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: .82rem;
            font-weight: 700;
            color: #fff;
            background: linear-gradient(135deg, var(--pri), var(--pri2));
            margin-right: .5rem;
        }

        .warning-soft {
            border: 1px solid #f4b47d;
            background: var(--warn);
            border-radius: 12px;
            padding: .9rem 1rem;
            margin-top: .75rem;
        }
        .final-warning {
            border: 1px solid #f1a7a7;
            background: var(--danger-soft);
            border-radius: 12px;
            padding: 1rem 1rem;
            margin-top: 1.2rem;
        }

        .disclaimer-cta {
            border-radius: 16px;
            background: linear-gradient(135deg, var(--pri), var(--pri2));
            color: #fff;
            padding: 1.8rem 1.3rem;
            text-align: center;
            margin-top: 1.2rem;
        }
        .disclaimer-cta .btn { border-radius: 999px; }

        @media (max-width: 991.98px) {
            .disclaimer-section { padding: 70px 0; }
            .disclaimer-card { padding: 1.2rem; }
            .page-hero { padding: 82px 0 62px; }
        }
