:root {
    --bs-primary: #1DA1F2;
    --primary-gradient: linear-gradient(135deg, #1DA1F2 0%, #7B2FF7 100%);
    --header-blue: #0F172A;
    --light-blue-bg: #f4f9f8;
}

.hero-section {
    background: var(--primary-gradient);
    padding: 50px 0 80px; /* Reduced for AuraHost V2 Header + Spacer */
    color: white;
    border-radius: 0 0 40px 40px;
    text-align: center;
}

.tabs-container { 
    margin: 40px auto 0; 
    width: fit-content; 
}

.pricing-tabs {
    display: flex;
    background: rgba(255,255,255,0.1);
    padding: 8px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.2);
    gap: 5px;
}

.tab-btn {
    border: none;
    background: none;
    padding: 12px 25px;
    font-weight: 700;
    color: white;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
}

.tab-btn.active {
    background: white;
    color: var(--bs-primary);
}

.pricing-section { 
    display: none; 
    padding: 60px 0; 
}

.pricing-section.active { 
    display: block; 
}

.pricing-card {
    background: white;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    transition: transform 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover { 
    transform: translateY(-10px); 
    border-color: var(--bs-primary); 
}

.pricing-card.popular { 
    border: 2px solid var(--bs-primary); 
    transform: scale(1.05); 
    z-index: 2; 
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bs-primary);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 800;
}

.plan-price { 
    font-size: 2rem; 
    font-weight: 900; 
    color: var(--header-blue); 
    margin: 20px 0; 
}

.feature-list { 
    list-style: none; 
    padding: 0; 
    margin: 0 0 30px 0; 
    flex-grow: 1; 
}

.feature-list li { 
    margin-bottom: 12px; 
    display: flex; 
    align-items: center; 
    gap: 10px; 
}

.feature-list i { 
    color: #28a745; 
}

.btn-order {
    background: var(--bs-primary);
    color: white;
    text-decoration: none;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    font-weight: 700;
    transition: opacity 0.3s;
}

.btn-order:hover { 
    opacity: 0.9; 
    color: white; 
}

.faq-section { 
    background: #f8fafc; 
    padding: 80px 0; 
}

@media (max-width: 991px) {
    .pricing-card.popular {
        transform: none;
        margin: 20px 0;
    }
}
