/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Product Toggle */
.product-toggle {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 8px;
    display: inline-flex;
    align-items: center;
    margin: 30px 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.product-toggle .toggle-option {
    padding: 15px 30px;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    min-width: 180px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.product-toggle .toggle-option.active {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.product-toggle .toggle-option.streaming.active {
    color: var(--streaming-color);
}

.product-toggle .toggle-option.conference.active {
    color: var(--conference-color);
}

/* Pricing Cards */
.pricing-section {
    padding: 80px 0;
    position: relative;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-card.featured .card-header {
    margin-top: 20px;
}

.pricing-card .plan-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.pricing-card .plan-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 20px 0 10px;
}

.pricing-card .plan-price .currency {
    font-size: 1.5rem;
    vertical-align: top;
}

.pricing-card .plan-description {
    color: #64748b;
    margin-bottom: 30px;
    line-height: 1.6;
}

.pricing-card .features-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.pricing-card .features-list li {
    padding: 8px 0;
    display: flex;
    align-items: flex-start;
    color: #374151;
}

.pricing-card .features-list li i {
    color: var(--success-color);
    margin-right: 12px;
    font-size: 1.1rem;
    margin-top: 2px;
    min-width: 16px;
}

.pricing-card .features-list li.unavailable {
    color: #9ca3af;
}

.pricing-card .features-list li.unavailable i {
    color: #d1d5db;
}

.btn-pricing {
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
}

.btn-pricing.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.btn-pricing.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-pricing.btn-streaming {
    background: linear-gradient(45deg, var(--streaming-color), #dc2626);
    color: white;
}

.btn-pricing.btn-conference {
    background: linear-gradient(45deg, var(--conference-color), #059669);
    color: white;
}

.btn-pricing:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

/* Product Sections */
.product-section {
    display: none;
}

.product-section.active {
    display: block;
}

/* Enterprise Section */
.enterprise-section {
    background: linear-gradient(135deg, #1e293b, #334155);
    padding: 80px 0;
    color: white;
}

.enterprise-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: white;
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    background: #f8fafc;
    border: none;
    padding: 20px 25px;
    font-weight: 600;
    color: var(--dark-color);
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: white;
}

.accordion-body {
    padding: 25px;
    background: white;
}

.competitive-badge {
    background: linear-gradient(45deg, #f59e0b, #d97706);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-left: 10px;
}

/* Animation Effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive */
@media (max-width: 768px) {
    .pricing-card.featured {
        transform: none;
        margin-top: 20px;
    }

    .hero-section {
        padding: 120px 0 60px;
    }

    .pricing-card .plan-price {
        font-size: 2.5rem;
    }

    .product-toggle .toggle-option {
        min-width: 140px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}
