.page-bg {
            content: '';
            inset: 0;
            background-color: #0d0d0e;
            width:100%;
            max-width:100vw;
            
        }

    .page-hero {
        position: relative;
        width: 100%;
        min-height: 450px;
        background: linear-gradient(180deg, #192761, #2f428b);
        color: #ffffff;
        font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
        padding: 50px 24px;
        box-sizing: border-box;
        overflow: hidden;
        isolation: isolate;
        border-bottom:1px solid #000000;
    }

    .page-hero-title {
        font-size: 4rem;
        font-weight: 800;
        line-height: 1.08;
        margin: 0 0 20px 0;
        letter-spacing: -0.03em;
        color: #ffffff;
    }

    .page-hero-title .page-hero-muted {
        color: #64748b;
        font-weight: 400;
    }

        .section h2 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #fff;
        }

        .section p {

            line-height: 1.7;
            opacity: 0.85;
            color: #ddd;
            margin-bottom: 1rem;
        }


        .center {
            text-align: center;
        }

        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .feature {
            background: rgba(255, 255, 255, 0.04);
            padding: 2rem;
            border-radius: 8px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .feature i {
            font-size: 2rem;
            color: #e63946;
            margin-bottom: 1rem;
        }

        .feature h3 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: #fff;
        }

        .feature p {
            font-size: 0.95rem;
            color: #ccc;
            line-height: 1.6;
            text-align: center;
        }