/* Pricing Page Specific Styles */
/* Global styles are in maya-global.css */

.pricing-hero {
    text-align: center;
    padding: 1rem 5% 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1rem;
}

.pricing-hero p {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.pricing-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 5% 4rem;
}

.pricing-card {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.pricing-card:hover {
    border-color: var(--primary);
    box-shadow: 0 25px 60px rgba(220, 59, 38, 0.1);
    transform: translateY(-5px);
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.price {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.price span {
    font-size: 1.5rem;
    color: #6b7280;
    font-weight: 500;
}

.billing-note {
    color: #6b7280;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.trial-badge {
    background: #fef3f2;
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 2rem;
}

.features-list {
    list-style: none;
    text-align: left;
    margin: 2rem 0;
}

.features-list li {
    padding: 0.75rem 0;
    color: #111827;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.features-list li:before {
    content: "✓";
    color: var(--success);
    font-weight: 700;
    font-size: 1.3rem;
}

.pricing-cta {
    background: var(--primary);
    color: white;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    display: inline-block;
    margin-top: 1.5rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    width: auto;
    box-shadow: 0 4px 12px rgba(220, 59, 38, 0.2);
}

.pricing-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(220, 59, 38, 0.3);
}

.no-card {
    color: #6b7280;
    font-size: 0.95rem;
    margin-top: 1rem;
}

.faq-section {
    max-width: 800px;
    margin: 4rem auto;
    padding: 0 5% 4rem;
}

.faq-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111827;
    text-align: center;
    margin-bottom: 3rem;
}

.faq-item {
    margin-bottom: 2rem;
}

.faq-question {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.faq-answer {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.7;
}

.footer-cta {
    background: #fef3f2;
    padding: 4rem 5%;
    text-align: center;
    margin-top: 4rem;
}

.footer-cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1rem;
}

.footer-cta p {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

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

    .pricing-hero p {
        font-size: 1.1rem;
    }

    .price {
        font-size: 3rem;
    }

    .pricing-card {
        padding: 2rem;
    }

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

    .footer-cta h2 {
        font-size: 2rem;
    }
}