/* Pricing Page Styles */

.pricing-section {
    min-height: 100vh;
    padding: 6rem 2rem 4rem 2rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.pricing-page-container {
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-title {
    text-align: center;
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.pricing-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: #999;
    margin-bottom: 2rem;
}

/* Login Prompt for Non-Authenticated Users */
.login-prompt {
    text-align: center;
    background: linear-gradient(135deg, 
        rgba(31, 157, 39, 0.15) 0%, 
        rgba(31, 157, 39, 0.05) 100%);
    border: 2px solid rgba(31, 157, 39, 0.3);
    border-radius: 16px;
    padding: 2rem;
    margin: 0 auto 3rem auto;
    max-width: 600px;
}

.login-prompt p {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.btn-login {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--bs-primary);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
}

.btn-login:hover {
    background: color-mix(in srgb, var(--bs-primary), white 15%);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(31, 157, 39, 0.4);
    color: white;
}

/* Tab Navigation */
.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.tab-button {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.3);
    color: #c0c0c0;
    border: 1px solid rgba(153, 153, 153, 0.3);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.tab-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(31, 157, 39, 0.1) 0%, 
        transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tab-button:hover {
    background: rgba(31, 157, 39, 0.05);
    border-color: rgba(31, 157, 39, 0.4);
    color: white;
    transform: translateY(-2px);
}

.tab-button:hover::before {
    opacity: 1;
}

.tab-button.active {
    background: var(--bs-primary);
    color: white;
    border-color: var(--bs-primary);
    box-shadow: 0 0 30px rgba(31, 157, 39, 0.3);
}

.tab-button.active:hover {
    background: color-mix(in srgb, var(--bs-primary), white 10%);
    transform: translateY(-2px);
}

/* Pricing Content */
.pricing-content {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-content.active {
    display: block;
    opacity: 1;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.lifetime-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto 4rem auto;
}

/* Pricing Cards */
.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(31, 157, 39, 0.4);
    box-shadow: 0 20px 60px rgba(31, 157, 39, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.lifetime-card {
    background: linear-gradient(135deg, 
        rgba(31, 157, 39, 0.1) 0%, 
        rgba(0, 0, 0, 0.3) 100%);
    border: 2px solid rgba(31, 157, 39, 0.3);
}

.lifetime-card:hover {
    border-color: rgba(31, 157, 39, 0.6);
    box-shadow: 0 20px 60px rgba(31, 157, 39, 0.25);
}

/* Pricing Header */
.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-header h3 {
    font-size: 1.75rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--bs-primary);
    line-height: 1;
}

.price-period {
    font-size: 1rem;
    color: #999;
    font-weight: 400;
}

/* Pricing Features */
.pricing-features {
    flex: 1;
    margin-bottom: 2rem;
}

.pricing-features h4 {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    color: #ccc;
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
    font-size: 0.95rem;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--bs-primary);
    font-weight: bold;
    font-size: 1.1rem;
}

.lifetime-description {
    color: #ddd;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.lifetime-note {
    color: #999;
    font-size: 0.95rem;
    font-style: italic;
    line-height: 1.6;
}

/* Pricing Footer */
.pricing-footer {
    text-align: center;
}

.btn-pricing {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--bs-primary);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
}

.btn-pricing:hover {
    background: color-mix(in srgb, var(--bs-primary), white 15%);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(31, 157, 39, 0.3);
    color: white;
}

/* FAQ Section */
.pricing-faq {
    margin-top: 6rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-faq h2 {
    text-align: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 3rem;
    font-weight: 700;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(31, 157, 39, 0.3);
}

.faq-item h4 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.faq-item p {
    color: #ccc;
    line-height: 1.7;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 4rem 1.5rem 3rem 1.5rem;
    }
    
    .pricing-title {
        font-size: 2.25rem;
        margin-bottom: 0.75rem;
    }
    
    .pricing-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .pricing-tabs {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 2.5rem;
    }
    
    .tab-button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        width: 100%;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card {
        padding: 2rem;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .pricing-faq {
        margin-top: 4rem;
        padding-top: 3rem;
    }
    
    .pricing-faq h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .pricing-title {
        font-size: 1.875rem;
    }
    
    .pricing-subtitle {
        font-size: 1rem;
    }
    
    .tab-button {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .pricing-header h3 {
        font-size: 1.5rem;
    }
    
    .price-amount {
        font-size: 2rem;
    }
    
    .btn-pricing {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}
