/* ================================
   XP PATHFINDER CTA (ISOLATED)
================================ */

.xpc-path-wrap {
    background: #050505;
    padding: 80px 20px;
    width: 100%;
    box-sizing: border-box;
}

.xpc-path-container {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.xpc-path-heading {
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 38px;
    font-weight: 400;
}

.xpc-path-heading span {
    color: #d4af37;
}

.xpc-path-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.xpc-path-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border-radius: 14px;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s ease;
}

.xpc-path-btn-primary {
    background: #d4af37;
    color: #000;
}

.xpc-path-btn-secondary {
    border: 1px solid rgba(139,92,246,0.35);
    color: #c4a3ff;
    background: rgba(139,92,246,0.08);
}

.xpc-path-btn:hover {
    transform: translateY(-2px);
}

.xpc-path-features {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.xpc-path-feature {
    background: rgba(255,255,255,0.05);
    border-radius: 999px;
    padding: 10px 16px;
    font-size: 14px;
    color: #c2c2c2;
}

.xpc-path-main-btn {
    display: inline-flex;
    width: 100%;
    max-width: 500px;
    justify-content: center;
    align-items: center;
    background: #8b5cf6;
    color: #fff;
    text-decoration: none;
    padding: 18px 24px;
    border-radius: 18px;
    transition: 0.3s ease;
}

.xpc-path-main-btn:hover {
    transform: translateY(-2px);
}

/* MOBILE */
@media (max-width: 767px) {

    .xpc-path-wrap {
        padding: 60px 16px;
    }

    .xpc-path-actions {
        flex-direction: column;
    }

    .xpc-path-btn {
        width: 100%;
    }

    .xpc-path-feature {
        width: 100%;
    }

}