/* ── Public pricing & purchase component (pairs with public-pricing.js) ───── */

.ntp-section { padding: 2.5rem 0 1.5rem; }

.ntp-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a2744;
    margin-bottom: .35rem;
}

.ntp-subtitle {
    color: #6b7280;
    font-size: .95rem;
    margin-bottom: 1.75rem;
}

/* ── Cards ── */
.ntp-card {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    background: #fff;
    border: 1px solid #e5e9f2;
    border-radius: 14px;
    padding: 1.4rem 1.25rem 1.25rem;
    box-shadow: 0 2px 10px rgba(18, 38, 74, .05);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.ntp-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(18, 38, 74, .12);
    border-color: #c7d5f2;
}

.ntp-popular { border-color: #2563eb; box-shadow: 0 8px 24px rgba(37, 99, 235, .14); }

.ntp-ribbon {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #2563eb, #4285f4);
    color: #fff;
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .04em;
    padding: .22rem .7rem;
    border-radius: 999px;
    white-space: nowrap;
}

.ntp-ribbon-green { background: linear-gradient(135deg, #059669, #10b981); }

.ntp-plan-product {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #2563eb;
    margin-bottom: .3rem;
}

.ntp-plan-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
    margin-bottom: .4rem;
}

.ntp-plan-name { font-weight: 700; color: #1a2744; font-size: 1.02rem; }

.ntp-badge {
    background: #eaf1fe;
    color: #2563eb;
    font-size: .64rem;
    font-weight: 600;
    padding: .2rem .55rem;
    border-radius: 999px;
    white-space: nowrap;
}

.ntp-badge-soft { align-self: flex-start; margin-bottom: .5rem; }

.ntp-plan-desc {
    color: #6b7280;
    font-size: .82rem;
    line-height: 1.45;
    margin-bottom: .6rem;
}

.ntp-specs {
    list-style: none;
    padding: 0;
    margin: 0 0 .75rem;
}

.ntp-specs li {
    font-size: .8rem;
    color: #4b5563;
    padding: .16rem 0;
}

.ntp-specs li i {
    color: #10b981;
    margin-right: .45rem;
    font-size: .78rem;
}

.ntp-price-row {
    display: flex;
    align-items: baseline;
    gap: .45rem;
    flex-wrap: wrap;
    margin: .35rem 0 .3rem;
    padding-top: .6rem;
    border-top: 1px dashed #e5e9f2;
}

.ntp-mrp { color: #9ca3af; font-size: .85rem; }
.ntp-price { color: #1a2744; font-weight: 800; font-size: 1.45rem; }
.ntp-price-sm { font-size: 1.05rem; }
.ntp-per { color: #6b7280; font-size: .78rem; }
.ntp-from { color: #6b7280; font-size: .78rem; }

.ntp-save {
    align-self: flex-start;
    background: #e7f8f1;
    color: #059669;
    font-size: .66rem;
    font-weight: 700;
    padding: .2rem .55rem;
    border-radius: 999px;
    margin-bottom: .75rem;
}

.ntp-btn { border-radius: 9px; font-size: .88rem; font-weight: 600; padding: .5rem 1rem; }

.ntp-svc-icon {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--c, #2563eb);
    background: color-mix(in srgb, var(--c, #2563eb) 12%, #fff);
    margin-bottom: .7rem;
}

/* ── Guest hint ── */
.ntp-guest-hint {
    text-align: center;
    color: #6b7280;
    font-size: .8rem;
    margin-top: 1.1rem;
}

.ntp-guest-hint i { color: #2563eb; margin-right: .3rem; }

/* ── Quote fallback band ── */
.ntp-quote-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    flex-wrap: wrap;
    background: linear-gradient(135deg, #f3f7ff, #eef4ff);
    border: 1px solid #dbe7fb;
    border-radius: 14px;
    padding: 1.4rem 1.6rem;
}

.ntp-quote-title { font-weight: 700; color: #1a2744; font-size: 1.05rem; margin-bottom: .25rem; }
.ntp-quote-title i { color: #f59e0b; margin-right: .3rem; }
.ntp-quote-text { color: #6b7280; font-size: .86rem; max-width: 640px; }
