﻿
/* ═══════════════════════════════════════════
   pricing.css — Pricing page
   ═══════════════════════════════════════════ */

html, body {
    background: #fff;
}

.np {
    padding: 0 40px 0px;
}

.np-inner { 
    max-width: 1250px; 
    margin: 0 auto; 
}

/* ---------- cards row ---------- */
.np-cards {
    display: flex;
    gap: 24px;
    align-items: stretch;
}

.np-card {
    border-radius: 20px;
    padding: 30px 30px 14px;
    display: flex;
    flex-direction: column;
}

/* ---------- Free card ---------- */
.np-free {
  flex: 0 0 312px;
  background: white;
  border: 1px solid var(--border);
  box-shadow: 0 1px 2px rgba(20,22,28,0.04);
}

.plan-name {
    font-size: 17px;
    font-weight: 700; 
    letter-spacing: 0.15em;
    text-transform: uppercase; 
    color: var(--text-secondary);
}

.plan-name.is-accent {
    color: var(--text-primary);
}

.np-price-row { 
    display: flex; 
    align-items: baseline; 
    gap: 7px; 
    margin: 32px 0 16px; 
}
.np-price {
    font-size: 34px;
    line-height: 1;
    letter-spacing: -0.02em;
}
.np-sub { 
    margin: 12px 0 0; 
    color: var(--text-secondary); 
    line-height: 1.5; 
}

.np-sub.is-prem {
    max-width: 420px;
}

.trial-highlight {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    margin-top: 12px;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 600;
    background: var(--green-50);
    color: #425e2d;
}

    .trial-highlight i {
        font-size: 0.8rem;
        flex-shrink: 0;
    }

/* ---------- features ---------- */
.features-head {
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin: 4px 0 16px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.np-features {
    list-style: none;
    margin: 0;
    padding: 0;
    /*display: flex; 
    flex-direction: column; 
    gap: 13px; */
}

.np-features.is-grid {
    columns: 2;
    column-gap: 24px;
    margin-bottom: 12px;
    /*display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 24px;*/
}

.np-feat {
    break-inside: avoid; 
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.4;
    font-size: 1rem;
}
i.fa-check {
    margin-top: 2px;
    color: var(--green-500);
    font-size: 17px;
}

.is-grid .np-feat {
    margin-bottom: 20px;
}

/* ---------- buttons ---------- */
.np-btn {
  font-family: inherit; 
  border-radius: 12px; 
  padding: 0px 16px; 
  font-size: 1rem;
  height: 40px;
  cursor: pointer;
  border: 1px solid transparent; 
  width: 100%;
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s, color .12s;
}
.np-btn.free {
    background: #F7F7F9;
    border-color: var(--border);
    color: var(--text-primary);
    text-align: center;
    text-decoration: none;
    margin-bottom: 24px;
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.np-btn.free:hover { 
    border-color: var(--accent); 
}
    .np-btn.btn-premium {
        margin-top: 0;
        background: #4d5b7c;
        color: #fff;
    }
.np-btn.btn-premium:hover {
    background: var(--accent);
}

/* ---------- Premium card ---------- */
.np-premium { flex: 1 1 auto; }
.np-prem-head { margin-bottom: 23px; }

/* light premium (variant D) */
.mode-light .np-premium {
    background: #fff;
    background: linear-gradient(180deg, #e2e5ee 0%, #fff 130%);
    border: 1px solid var(--border);
    box-shadow: 0 15px 30px -30px color-mix(in oklab, var(--accent) 60%, black);
}

/* ---------- payment options ---------- */
.np-opts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
    margin-bottom: 25px;
}
.np-opt {
    position: relative;
    border-radius: 15px;
    padding: 24px 20px 20px;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    background: #f7f7f9;
}

.np-opt-label { 
    font-size: 14px; 
    font-weight: 700; 
    letter-spacing: 0.06em; 
    text-transform: uppercase; 
    color: var(--text-secondary); 
}
.np-opt-price-row {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin: 30px 0 34px;
    flex-wrap: wrap;
}
.opt-discounted-price {
    font-size: 1.4rem;
    margin-right: 2px;
    font-weight: 400;
    color: var(--text-secondary);
    text-decoration: line-through;
    text-decoration-thickness: 1px;
}
.np-opt-price { 
    font-size: 30px; 
    line-height: 1; 
    letter-spacing: -0.02em; 
}
.np-opt-unit {
    color: var(--text-primary);
    font-size: 1rem;
}
.np-opt-note {

    display: none; /*flex; */
    font-size: 15px; 
    color: var(--text-secondary); 
    margin: 9px 0 16px;
    align-items: center; 
    gap: 7px; 
    flex-wrap: wrap; 
    min-height: 20px;
}
.np-save {
    white-space: nowrap; 
    font-size: 14px;
    font-weight: 500;
    color: var(--accent); 
    background: color-mix(in oklab, var(--accent) 15%, transparent);
    padding: 3px 8px; 
    border-radius: 999px;
}

/* ── Section title ── */
.pricing-section-title {
    font-size: 2.75rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    letter-spacing: -0.02em;
    margin: 0 24px 48px
}

/* ── FAQ ── */
.pricing-faq {
    max-width: 1000px;
    margin: 120px auto 96px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 0 24px;
}

.faq-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(17, 23, 39, 0.06);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.6rem 1.25rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    transition: background 0.12s;
}

.faq-chevron {
    font-size: 20px;
    color: var(--text-primary);
    flex-shrink: 0;
    transition: transform 0.25s;
}

/*.faq-question:hover {
    color: var(--orange-600);
}
    .faq-question:hover .faq-chevron {
        color: var(--orange-600);
    }*/

    .faq-item.open .faq-chevron {
        transform: rotate(180deg);
    }

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    font-size: 1.05rem;
    white-space: pre-wrap;
    color: #495165;
    line-height: 1.7;
    padding: 0 1.25rem;
    transition: grid-template-rows 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    grid-template-rows: 1fr;
    padding-bottom: 1.25rem;
}

.faq-answer > div {
    overflow: hidden;
}

.contact-email {
    font-size: 17px;
    color: var(--text-primary);
    margin-top: 40px;
    text-align: center;
}

.contact-email-link {
    color: var(--link);
}

.contact-email-link:hover {
    color: var(--link-hover);
}

/* responsive: stack on narrow screens */
@media (max-width: 1150px) {

    .np-features.is-grid {
        columns: 1;
    }
}

@media (max-width: 910px) {
    
    .np-cards {
        flex-direction: column;
    }

    .np-free {
        flex-basis: auto;
    }
}

@media (max-width: 600px) {
    .np {
        padding: 0 24px;
    }

    .pricing-section-title {
        font-size: 2.25rem;
    }
}
