/* ============================================
   Pricing, FAQ, CTA Final, Footer
   Warm terracotta + cream + espresso
   ============================================ */

/* ============================================
   PRICING — off-white bg
   ============================================ */
.section-pricing {
    padding: var(--section-padding) 0;
    background: var(--off-white);
}

.section-pricing .section-title {
    text-align: center;
    margin-bottom: 12px;
}

.pricing-subtitle {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 52px;
    font-weight: 400;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 960px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    padding: 36px 28px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.pricing-card.featured {
    border-color: var(--terracotta);
    box-shadow: 0 0 0 1px var(--terracotta), var(--shadow-lg);
    transform: scale(1.03);
}

.pricing-card.featured:hover {
    transform: scale(1.03) translateY(-4px);
}

.pricing-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 18px;
    background: var(--terracotta);
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: var(--radius);
    white-space: nowrap;
}

.pricing-plan-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 6px;
    margin-top: 6px;
    letter-spacing: -0.02em;
}

.pricing-plan-img {
    width: 100%;
    max-width: 210px;
    height: 140px;
    margin: 0 auto 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-plan-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply; /* removes any faint off-white edge against the white card */
}

.pricing-plan-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.5;
}

.pricing-amount {
    margin-bottom: 4px;
}

.pricing-currency {
    font-size: 1.1rem;
    font-weight: 700;
    vertical-align: top;
}

.pricing-value {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
}

.pricing-period {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.pricing-original {
    font-size: 0.88rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-bottom: 4px;
}

.pricing-saving {
    display: inline-block;
    padding: 4px 14px;
    background: var(--green-soft);
    color: var(--green);
    font-size: 0.72rem;
    font-weight: 800;
    border-radius: var(--radius);
    margin-bottom: 20px;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 28px;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.84rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-light);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-check {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--terracotta-soft);
    color: var(--terracotta);
    border-radius: 50%;
    font-size: 0.6rem;
    font-weight: 800;
}

.pricing-cta {
    display: block;
    width: 100%;
    padding: 13px;
    font-size: 0.88rem;
    font-weight: 700;
    border-radius: var(--radius);
    text-align: center;
    transition: all 0.3s ease;
    letter-spacing: 0.01em;
}

.pricing-cta-primary {
    background: var(--terracotta);
    color: var(--white);
}

.pricing-cta-primary:hover {
    background: var(--terracotta-hover);
    color: var(--white);
    transform: translateY(-1px);
}

.pricing-cta-outline {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-light);
}

.pricing-cta-outline:hover {
    border-color: var(--terracotta);
    color: var(--terracotta);
}

.pricing-renewal {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 18px;
    line-height: 1.5;
}

.pricing-footer {
    text-align: center;
    margin-top: 28px;
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ============================================
   FAQ — cream bg
   ============================================ */
.section-faq {
    padding: var(--section-padding) 0;
    background: var(--cream);
}

.section-faq .section-title {
    text-align: center;
    margin-bottom: 52px;
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-light);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: left;
    cursor: pointer;
    transition: color 0.3s ease;
    background: none;
    border: none;
    font-family: var(--font-body);
    letter-spacing: -0.01em;
}

.faq-question:hover {
    color: var(--terracotta-hover);
}

.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    color: var(--terracotta);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.open .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.8;
    padding-bottom: 20px;
}

/* ============================================
   CTA FINAL — removed, replaced by form section
   ============================================ */

/* ============================================
   FOOTER — dark espresso
   ============================================ */
.footer {
    padding: 0 0 36px;
    background: var(--ink);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
    }

    .pricing-card.featured {
        transform: none;
        order: -1;
    }

    .pricing-card.featured:hover {
        transform: translateY(-4px);
    }
}

/* ============================================
   Promo pricing (Full card)
   ============================================ */

.pricing-promo {
    margin-bottom: 16px;
}

.pricing-promo .pricing-value {
    font-size: 3.6rem;
}

.pricing-promo-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 2px;
}

.pricing-promo-after {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.pricing-comparison {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 18px;
    padding: 10px 12px;
    background: var(--cream);
    border-radius: var(--radius);
    border-left: 3px solid var(--terracotta);
}

