/* pricing.css — pricing page (templates/pricing.html).
   Cards come from Bootstrap 5 / Syntrans app.css; this file styles the
   plan cards' internals and the FAQ grid. Palette matches landing.css. */

.pricing-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px 20px 40px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 44px;
}
.pricing-header .accent {
    color: #2ecc71;
}
.pricing-header p {
    color: #c3cbd1;
    margin-bottom: 0;
}

/* ── Plan cards ───────────────────────────────────────────────────────── */

/* Darker than the stock Syntrans card so the plans stand out against the
   bright regions of the bg-theme image */
.plan-card {
    position: relative;
    background-color: rgb(0 0 0 / 0.35);
}
.plan-card .card-body {
    padding: 28px 24px;
}
.plan-card-featured {
    border: 1px solid #2ea44f;
    box-shadow: 0 0 24px rgba(46, 164, 79, 0.25);
}
/* Give the featured plan the classic centre-card pop on desktop */
@media (min-width: 992px) {
    .plan-card-featured {
        transform: scale(1.04);
        z-index: 1;
    }
}
.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #2ea44f;
    color: #fff;
    padding: 3px 14px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.plan-name {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 14px;
}
.plan-price {
    color: #fff;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.1;
}
.plan-per {
    font-size: 1rem;
    font-weight: 400;
    color: #9aa4ad;
    margin-left: 2px;
}
.plan-note {
    color: #9aa4ad;
    font-size: 0.85rem;
    margin: 4px 0 18px;
}

.plan-features {
    margin-bottom: 22px;
}
.plan-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    font-size: 0.92rem;
    color: #c3cbd1;
}
.plan-features li i {
    font-size: 1.25rem;
    flex: 0 0 auto;
}
.plan-features .included i { color: #2ecc71; }
.plan-features .excluded { opacity: 0.65; }

/* ── FAQ ──────────────────────────────────────────────────────────────── */

.pricing-faq {
    max-width: 860px;
    margin: 40px auto 0;
}
.pricing-faq h3 {
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 28px;
}
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.faq-card {
    margin-bottom: 0;
    background-color: rgb(0 0 0 / 0.35);
}
.faq-card h4 {
    color: #2ecc71;
    font-size: 0.98rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.faq-card p {
    color: #c3cbd1;
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-grid { grid-template-columns: 1fr; }
}
