/* Pricing Page Styles */
.pricing-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.pricing-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e0e0e0;
    margin-bottom: 0.5rem;
}

.pricing-header p {
    font-size: 1.1rem;
    color: #94a3b8;
}

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

.pricing-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.5) 0%, rgba(15, 23, 42, 0.5) 100%);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    border-color: rgba(102, 126, 234, 0.5);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
}

.pricing-card.featured {
    border: 2px solid #667eea;
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.25);
}

.pricing-card.featured:hover {
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.35);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-badge.featured-badge {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #e0e0e0;
    margin: 1rem 0 0.5rem 0;
}

.pricing-description {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 2rem;
}

.pricing-amount .currency {
    font-size: 1rem;
    color: #94a3b8;
}

.pricing-amount .price {
    font-size: 3rem;
    font-weight: 700;
    color: #667eea;
}

.pricing-amount .period {
    color: #64748b;
    font-size: 0.9rem;
}

.pricing-amount.custom-price {
    margin-bottom: 2rem;
    justify-content: center;
}

.custom-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: #667eea;
}

/* Pricing Buttons */
.btn-pricing {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
}

.btn-pricing:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    color: white;
    text-decoration: none;
}

.btn-pricing-featured {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border: none;
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
}

.btn-pricing-featured:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 87, 108, 0.3);
    color: white;
    text-decoration: none;
}

/* Pricing Features */
.pricing-features {
    flex: 1;
}

.feature {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #cbd5e1;
    font-size: 0.9rem;
}

.feature-icon {
    width: 20px;
    height: 20px;
    color: #667eea;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.feature:last-child {
    margin-bottom: 0;
}

/* FAQ Section */
.faq-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
}

.faq-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #e0e0e0;
    text-align: center;
    margin-bottom: 3rem;
}

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

.faq-item {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.5) 0%, rgba(15, 23, 42, 0.5) 100%);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
}

.faq-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #e0e0e0;
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: #94a3b8;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .pricing-header h1 {
        font-size: 1.75rem;
    }

    .pricing-header p {
        font-size: 1rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-amount .price {
        font-size: 2.25rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-section h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .pricing-header {
        margin-bottom: 2rem;
        padding: 1rem 0;
    }

    .pricing-header h1 {
        font-size: 1.5rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .pricing-badge {
        font-size: 0.65rem;
        padding: 0.4rem 0.8rem;
    }

    .pricing-title {
        font-size: 1.25rem;
    }

    .pricing-amount .price {
        font-size: 1.875rem;
    }

    .btn-pricing,
    .btn-pricing-featured {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .feature {
        font-size: 0.85rem;
    }

    .faq-section h2 {
        font-size: 1.25rem;
    }

    .faq-item {
        padding: 1.25rem;
    }

    .faq-item h4 {
        font-size: 0.95rem;
    }

    .faq-item p {
        font-size: 0.85rem;
    }
}
