

.page-hero {
    position: relative;
    padding: 112px 0 48px !important; 
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
    overflow: hidden;
    text-align: center;
}


.page-hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.page-hero-orb-1 {
    width: 420px;
    height: 420px;
    top: -160px;
    left: -110px;
    background: radial-gradient(circle, rgba(99,102,241,.18) 0%, transparent 70%);
}

.page-hero-orb-2 {
    width: 320px;
    height: 320px;
    bottom: -90px;
    right: -70px;
    background: radial-gradient(circle, rgba(139,92,246,.15) 0%, transparent 70%);
}

.page-hero-content {
    position: relative;
    z-index: 1;
}


.page-hero .breadcrumb-nav {
    margin-bottom: 14px; 
}

.page-hero .breadcrumb {
    background: transparent;
    justify-content: center;
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.page-hero .breadcrumb-item {
    color: rgba(255,255,255,.5);
    font-size: 13px;
    display: flex;
    align-items: center;
}

.page-hero .breadcrumb-item a {
    color: rgba(255,255,255,.65);
    text-decoration: none;
    transition: color .2s;
}

.page-hero .breadcrumb-item a:hover { color: #a5b4fc; }

.page-hero .breadcrumb-item.active { color: rgba(255,255,255,.8); }

.page-hero .breadcrumb-item + .breadcrumb-item::before {
    content: '›';
    color: rgba(255,255,255,.3);
    padding: 0 8px;
}


.page-hero-icon-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.page-hero-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    box-shadow: 0 12px 32px rgba(99,102,241,.35);
}


.page-hero .page-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    background: rgba(99,102,241,.15);
    border: 1px solid rgba(99,102,241,.3);
    border-radius: 50px;
    color: #a5b4fc;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 18px;
}


.page-hero-title {
    font-size: clamp(24px, 4vw, 44px);
    font-weight: 800;
    color: #f8fafc;
    margin: 0 0 14px;
    letter-spacing: -1px;
    line-height: 1.15;
}


.page-hero-subtitle {
    font-size: 16px;
    color: rgba(255,255,255,.6);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}


@media (max-width: 768px) {
    .page-hero { padding: 90px 0 36px !important; } 
    .page-hero-title { font-size: 24px; }
    .page-hero-icon { width: 54px; height: 54px; font-size: 24px; border-radius: 14px; }
}

@media (max-width: 480px) {
    .page-hero { padding: 80px 0 28px !important; } 
    .page-hero-title { font-size: 22px; }
    .page-hero .breadcrumb-nav { margin-bottom: 10px; }
}