/* Pricing Page Styles */
.pricing-hero {
    text-align: center;
    padding: 4rem 2rem 3rem;
}

.pricing-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
}

.pricing-subtitle {
    font-size: 1.2rem;
    color: #718096;
}

.pricing-cards {
    padding: 0 0 4rem;
}

.pricing-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.15);
}

.pricing-card-featured {
    border: 2px solid #667eea;
    transform: scale(1.02);
}

.pricing-card-featured:hover {
    transform: scale(1.02) translateY(-8px);
}

.featured-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 0 0 0 12px;
}

.pricing-card-header {
    padding: 2rem 1.5rem;
    text-align: center;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    border-bottom: 1px solid #e2e8f0;
}

.pricing-card-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
}

.price {
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: #667eea;
}

.price-period {
    font-size: 1rem;
    color: #718096;
}

.price-description {
    font-size: 0.95rem;
    color: #718096;
    margin-bottom: 0;
}

.savings-badge {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.25rem 0.75rem;
    background: #d1fae5;
    color: #065f46;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
}

.pricing-card-body {
    padding: 2rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.pricing-features li {
    padding: 0.6rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #4a5568;
}

.pricing-features .check {
    color: #10b981;
    font-weight: bold;
}

.btn-pricing {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    margin-top: auto;
}

@media (max-width: 768px) {
    .pricing-card-featured {
        transform: none;
    }

    .pricing-card-featured:hover {
        transform: translateY(-8px);
    }
}

/* FAQ Section */
.pricing-faq {
    padding: 4rem 0;
    background: #f8f9fa;
    margin: 0 -2rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

.faq-item {
    background: #ffffff;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.faq-item h4 {
    font-size: 1.1rem;
    color: #2d3748;
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: #718096;
    margin: 0;
    line-height: 1.6;
}
