/* ==============================================
   FAQ Page Styles
   ============================================== */

.faq-hero {
    margin-bottom: 2rem;
}

.faq-sub {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 700px;
    line-height: 1.6;
}

.faq-sub a {
    color: #2563eb;
    text-decoration: none;
}

.faq-sub a:hover {
    text-decoration: underline;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    border-left: 3px solid #e2e8f0;
    padding-left: 1.5rem;
    transition: border-color 0.2s;
}

.faq-item:hover {
    border-left-color: #2563eb;
}

.faq-q {
    font-weight: 600;
    font-size: 1.05rem;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.faq-a {
    color: #475569;
    line-height: 1.7;
}

.faq-a strong {
    color: #1e293b;
    font-weight: 600;
}

.faq-a a {
    color: #2563eb;
    text-decoration: none;
}

.faq-a a:hover {
    text-decoration: underline;
}

.faq-cta {
    margin-top: 2rem;
}

.cta-row {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 0;
}

.cta-copy {
    flex: 1;
    color: #475569;
    font-size: 1.05rem;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .cta-row {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
    }

    .cta-actions {
        flex-direction: column;
    }

    .faq-item {
        padding-left: 1rem;
    }
}

/* ==============================================
   Pricing Page Styles
   ============================================== */

.pricing-hero {
    margin-bottom: 2rem;
}

.pricing-sub {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 700px;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.pricing-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

/* Pricing Grid (Cards) */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.price-card {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 1.5rem;
    position: relative;
    transition: all 0.3s;
}

.price-card:hover {
    border-color: #cbd5e1;
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.price-card--featured {
    border-color: #2563eb;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.price-badge {
    position: absolute;
    top: -12px;
    right: 1rem;
    background: #2563eb;
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-head {
    margin-bottom: 1rem;
}

.price-title {
    font-weight: 600;
    font-size: 1.25rem;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.price-desc {
    color: #64748b;
    font-size: 0.9rem;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1.5rem;
}

.price-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #475569;
    font-size: 0.95rem;
}

.feature .checkmark {
    color: #22c55e;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Pricing List (Items) */
.pricing-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding: 1.25rem;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: all 0.2s;
}

.pricing-item:hover {
    border-color: #cbd5e1;
    background: white;
}

.pricing-item__left {
    flex: 1;
}

.pricing-item__title {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.pricing-item__desc {
    color: #64748b;
    font-size: 0.9rem;
}

.pricing-item__right {
    flex-shrink: 0;
}

.pricing-item__price {
    font-weight: 700;
    color: #2563eb;
    font-size: 1.1rem;
    text-align: right;
}

/* Pricing Factors */
.pricing-factors {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: #eff6ff;
    border-radius: 8px;
    border: 1px solid #bfdbfe;
}

.factor-title {
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 1rem;
}

.pricing-factors .checklist {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.75rem;
}

/* Pricing Split */
.pricing-split {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.pricing-includes {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.payment-block {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Factors Grid */
.factors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.factor-box {
    padding: 1.25rem;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.factor-box__title {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.factor-box__text {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Value Grid */
.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.value-item {
    text-align: center;
    padding: 1.5rem;
}

.value-title {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.value-text {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

.pricing-note {
    margin-top: 1.5rem;
}

.pricing-cta {
    margin-top: 2rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .pricing-actions {
        flex-direction: column;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .pricing-item__price {
        text-align: left;
    }

    .pricing-split {
        grid-template-columns: 1fr;
    }

    .pricing-factors .checklist {
        grid-template-columns: 1fr;
    }

    .factors-grid,
    .value-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .price-amount {
        font-size: 1.75rem;
    }

    .cta-actions {
        width: 100%;
    }

    .cta-actions .btn {
        width: 100%;
    }
}