/* Landing Page Styles */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.hero-section h1, .hero-section .lead {
    color: white;
}

.pricing-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 15px;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.price-display .currency {
    font-size: 24px;
    vertical-align: top;
}

.price-display .amount {
    font-size: 48px;
    font-weight: bold;
}

.price-display .period {
    font-size: 16px;
    color: #6c757d;
}

.payment-badges .badge {
    padding: 8px 15px;
    font-size: 14px;
}

.nav-tabs .nav-link {
    border: none;
    color: #6c757d;
    padding: 12px 20px;
}

.nav-tabs .nav-link.active {
    color: #007bff;
    border-bottom: 2px solid #007bff;
    background: transparent;
}

.nav-tabs .nav-link i {
    margin-right: 8px;
    font-size: 18px;
}

.order-summary {
    border-left: 4px solid #28a745;
}

@media (max-width: 768px) {
    .pricing-card {
        margin-bottom: 20px;
    }
    
    .price-display .amount {
        font-size: 36px;
    }
    
    .nav-tabs .nav-link {
        padding: 8px 12px;
        font-size: 12px;
    }
}
