.hosting-section {
    padding: 80px 0;
}
.hosting-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 32px 24px;
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
.hosting-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateY(-4px);
}
.hosting-card-icon {
    font-size: 2.2rem;
    color: #667eea;
    margin-bottom: 16px;
}
.hosting-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}
.hosting-card-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    margin-bottom: 14px;
    flex-grow: 1;
}
.hosting-card-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    margin-bottom: 16px;
}
.hp-feature {
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 50px;
    padding: 3px 10px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
}
.hosting-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 20px;
    border: 1px solid rgba(102, 126, 234, 0.4);
    border-radius: 8px;
    transition: all 0.3s ease;
}
.hosting-card-btn:hover {
    background: #667eea;
    border-color: #667eea;
    color: #ffffff;
}
.hosting-card-wrapper {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}
.hosting-card-wrapper:hover .hosting-card {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(102, 126, 234, 0.5);
    transform: translateY(-4px);
}
.hosting-features-bar {
    padding: 20px 0;
}
.feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50px;
    padding: 8px 18px;
    color: rgba(255,255,255,0.65);
    font-size: 0.85rem;
}
.feature-pill i {
    color: #667eea;
}
