/* ==========================================================================
   UNMANAGED VPS FEATURES STYLES
   ========================================================================== */

.vps-features-section {
    background: #ffffff !important;
    padding-top: 90px;
    padding-bottom: 90px;
}

.section-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #ff7b2c !important;
    background: rgba(255, 123, 44, 0.08);
    border: 1px solid rgba(255, 123, 44, 0.2);
    padding: 6px 16px;
    border-radius: 999px;
}

.section-title {
    font-size: 38px;
    font-weight: 800;
    color: #071a52 !important;
    letter-spacing: -0.5px;
    margin-top: 10px;
    margin-bottom: 14px;
}

.section-subtitle {
    color: #475569 !important;
    font-size: 16px;
    line-height: 1.7;
}

.role-cards-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.role-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.35s ease;
}

.role-card.client-role {
    border-left: 4px solid #ff7b2c;
}

.role-card.admin-role {
    border-left: 4px solid #16a34a;
}

.role-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.role-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px dashed #e2e8f0;
}

.role-avatar {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.user-avatar {
    background: rgba(255, 123, 44, 0.1);
    color: #ff7b2c;
}

.admin-avatar {
    background: rgba(22, 163, 74, 0.1);
    color: #16a34a;
}

.role-title-tag {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 2px;
}

.role-title {
    font-size: 18px;
    font-weight: 800;
    color: #071a52;
    margin: 0;
}

.role-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 10px;
}

.role-feature-list li {
    font-size: 13.5px;
    font-weight: 600;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 10px;
}

.stack-card {
    background: linear-gradient(145deg, #071a52 0%, #040e2d 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    padding: 32px 28px;
    color: #ffffff;
    box-shadow: 0 20px 45px rgba(7, 26, 82, 0.25);
    position: relative;
    overflow: hidden;
}

.stack-card-glow {
    position: absolute;
    top: -30%;
    right: -30%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 123, 44, 0.15) 0%, rgba(7, 26, 82, 0) 70%);
    pointer-events: none;
}

.stack-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stack-header-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(255, 123, 44, 0.12);
    border: 1px solid rgba(255, 123, 44, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.stack-card-header h4 {
    font-size: 21px;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
}

.stack-card-header small {
    color: #94a3b8;
    font-size: 13px;
}

.stack-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.stack-grid-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    transition: all 0.3s ease;
}

.stack-grid-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 123, 44, 0.4);
    transform: translateY(-2px);
}

.stack-item-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(255, 123, 44, 0.1);
    color: #ff7b2c;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.stack-item-info {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.stack-item-info strong {
    font-size: 12.5px;
    font-weight: 700;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.stack-item-info span {
    font-size: 10.5px;
    color: #94a3b8;
}

.status-indicator {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    right: 10px;
}

.status-indicator.active {
    background: #22c55e;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.8);
}

.text-orange { color: #ff7b2c !important; }
.text-success { color: #16a34a !important; }

@media (max-width: 991px) {
    .vps-features-section { padding-top: 70px; padding-bottom: 70px; }
    .section-title { font-size: 32px; }
}

@media (max-width: 575px) {
    .section-title { font-size: 26px; }
    .role-feature-list, .stack-grid { grid-template-columns: 1fr; }
    .stack-card { padding: 22px 18px; }
}