/* =========================================
   SECTION
========================================= */
.pricing-faq-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
}

/* GRID */
.pricing-faq-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

/* =========================================
   PRICING SIDE
========================================= */
.pricing-header h2 {
    font-size: 30px;
}

.pricing-header p {
    font-size: 14px;
    color: var(--grey-500);
}

/* GRID */
.pricing-grid {
    margin-top: 20px;
}

/* SINGLE PLAN (CENTERED LOOK) */
.pricing-card {
    background: white;
    padding: 28px;
    border-radius: 18px;
    border: 1px solid var(--grey-100);

    box-shadow: 0 18px 40px rgba(0,0,0,0.05);

    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* PLAN NAME */
.pricing-plan-name {
    font-size: 18px;
    font-weight: 600;
}

/* PRICE */
.pricing-price {
    font-size: 20px;
}

.pricing-price strong {
    font-size: 28px;
}

/* LIMITS */
.pricing-limits {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 13px;
    color: var(--grey-500);
}

/* CTA */
.pricing-cta {
    margin-top: 10px;
}

/* =========================================
   FAQ SIDE
========================================= */
.faq-header h2 {
    font-size: 28px;
}

/* FAQ GRID */
.faq-grid {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* ITEM */
.faq-item {
    border-radius: 14px;
    border: 1px solid var(--grey-100);
    background: white;
    overflow: hidden;
    transition: 0.25s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-sm);
}

/* QUESTION */
.faq-question {
    display: flex;
    justify-content: space-between;
    padding: 16px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
}

/* ICON */
.faq-icon {
    color: var(--primary-blue);
}

/* ANSWER */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 16px;
    font-size: 13px;
    color: var(--grey-500);
    transition: 0.3s ease;
}

/* ACTIVE */
.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 16px 14px;
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 1024px) {
    .pricing-faq-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .pricing-faq-section {
        padding: 60px 0;
    }

    .pricing-header h2,
    .faq-header h2 {
        font-size: 24px;
    }
}