/* Pricing Page Specific Styles */

/* Pricing Page Body */
.pricing-page {
    background-color: var(--bg-light);
}

/* Pricing Hero Section */
.pricing-hero {
    background: var(--bg-white);
    padding: 160px 64px 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-hero-content {
    max-width: 884px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 56px;
}

.pricing-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 80px;
    font-weight: 500;
    line-height: 80px;
    text-align: center;
    color: var(--text-dark);
    font-variation-settings: 'opsz' 14, 'wdth' 100;
    margin: 0;
}

.pricing-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    text-align: center;
    color: var(--text-subdued);
    margin: 0;
}

.pricing-region-label {
    margin-top: 8px;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--bg-gray);
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    line-height: 16px;
    color: var(--text-secondary);
}

/* Billing Toggle */
.billing-toggle {
    display: flex;
    gap: 4px;
    background: var(--bg-gray);
    padding: 4px;
    border-radius: 12px;
    margin-top: 8px;
}

.toggle-btn {
    background: transparent;
    border: none;
    padding: 4px 8px;
    height: 32px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-subdued);
    cursor: pointer;
    transition: all 0.2s ease;
}

.toggle-btn:hover {
    color: var(--text-dark);
}

.toggle-btn.active {
    background: var(--bg-white);
    color: var(--primary-blue);
}

/* Pricing Cards Container */
.pricing-cards {
    display: flex;
    gap: 32px;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    max-width: 1055px;
}

/* Pricing Card */
.pricing-card {
    width: 329px;
    background: var(--bg-gray);
    border: 1px solid var(--border-default);
    border-radius: 12px;
    padding: 4px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.pricing-card.featured {
    position: relative;
}

/* Best Deal Badge */
.best-deal-badge {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    color: var(--text-dark);
    text-align: center;
    padding: 4px 0;
    width: 100%;
}

/* Card Plan Section */
.card-plan-section {
    background: var(--bg-white);
    border-radius: 8px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    border-bottom: 1px solid var(--border-default);
}

/* Plan Icon */
.plan-icon {
    width: 44px;
    height: 44px;
    background: var(--bg-white);
    border: 4px solid var(--border-default);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.plan-icon-img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* Plan Details */
.plan-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.plan-name-row {
    display: flex;
    align-items: center;
    gap: 4px;
}

.plan-name {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 32px;
    color: var(--text-secondary);
}

.popular-badge {
    background: #f4fce8;
    padding: 2px 4px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    color: #84bd2d;
}

.plan-price {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 40px;
    color: var(--text-dark);
    font-variation-settings: 'opsz' 14, 'wdth' 100;
}

.plan-description {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: var(--text-subdued);
    margin: 0;
}

/* Card Features Section */
.card-features-section {
    background: var(--bg-white);
    border-radius: 8px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.features-title {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: #595959;
    margin: 0 0 12px 0;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.check-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.features-list li span {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: var(--text-subdued);
}

/* Choose Plan Button */
.btn-choose-plan {
    width: 100%;
    height: 48px;
    padding: 12px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    min-width: 104px;
    transition: all 0.2s ease;
    background: var(--bg-gray);
    border: 1px solid #0f0f0f;
    color: var(--text-dark);
}

.btn-choose-plan:hover {
    background: var(--bg-pressed);
}

.btn-choose-plan.primary {
    background: linear-gradient(180deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    border: 1px solid var(--primary-blue-dark);
    color: white;
}

.btn-choose-plan.primary:hover {
    opacity: 0.9;
}

/* Pricing FAQs Section */
.pricing-faqs {
    background: #0f0f0f;
    padding: 88px 64px;
}

.faqs-container {
    max-width: 1312px;
    margin: 0 auto;
    display: flex;
    gap: 24px;
}

.faqs-header {
    width: 485px;
    flex-shrink: 0;
}

.faqs-header h2 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 96px;
    font-weight: 700;
    line-height: 96px;
    color: white;
    margin: 0 0 24px 0;
    font-variation-settings: 'opsz' 14, 'wdth' 100;
}

.faqs-header p {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    color: var(--text-subdued);
    margin: 0;
}

.faqs-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-card {
    background: var(--bg-gray);
    border: 1px solid var(--border-default);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.2s ease;
}

.faq-card:hover {
    background: white;
}

.faq-card h4 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    color: var(--text-dark);
    margin: 0;
    flex: 1;
}

.faq-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.faq-card.open .faq-toggle {
    transform: rotate(180deg);
}

/* Footer adjustments for pricing page */
.pricing-page .footer {
    background: var(--bg-white);
}

.footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Nav link active state */
.nav-links a.active {
    color: var(--primary-blue);
    font-weight: 500;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .pricing-hero {
        padding: 160px 40px 48px;
    }

    .pricing-title {
        font-size: 64px;
        line-height: 68px;
    }

    .pricing-cards {
        flex-wrap: wrap;
    }

    .faqs-container {
        flex-direction: column;
    }

    .faqs-header {
        width: 100%;
    }

    .faqs-header h2 {
        font-size: 64px;
        line-height: 68px;
    }

    .pricing-faqs {
        padding: 64px 40px;
    }
}

@media (max-width: 768px) {
    .pricing-hero {
        padding: 140px 20px 40px;
    }

    .pricing-title {
        font-size: 40px;
        line-height: 44px;
    }

    .pricing-subtitle {
        font-size: 16px;
        line-height: 24px;
    }

    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card {
        width: 100%;
        max-width: 329px;
    }

    .faqs-header h2 {
        font-size: 48px;
        line-height: 52px;
    }

    .pricing-faqs {
        padding: 48px 20px;
    }

    .footer-row {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }
}

