/* ==========================================================================
   Pricing – Sept 2026
   Typography aligned to the site homepage (Poppins + homepage size scale:
   section headings ~36px, body ~16-18px, card text ~14px). Layout/structure
   follows the Adobe XD "Pricing Page – Sept 2026" artboard.
   All rules scoped under #pricing-sept-2026 so nothing leaks site-wide.
   ========================================================================== */
#pricing-sept-2026 {
    --ps-font:      'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --ps-navy:      #0C2137;
    --ps-indigo:    #4B5CA5;
    --ps-periwinkle:#8695E8;
    --ps-orange:    #FF8900;
    --ps-orange-dk: #F2761E;
    --ps-green:     #32CC8C;
    --ps-green-dk:  #24b579;
    --ps-blue-100:  #C9D5FC;
    --ps-blue-050:  #F2F5FE;
    --ps-line:      #DEDEDE;
    --ps-muted:     #505050;
    --ps-dash:      #ADADAD;
    --ps-bg:        #FFFFFF;
    --ps-card-line: #EAEDF7;
    --ps-chip-dark: #171717;

    font-family: var(--ps-font);
    color: var(--ps-navy);
    background: #fff;
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
}
#pricing-sept-2026 *,
#pricing-sept-2026 *::before,
#pricing-sept-2026 *::after { box-sizing: border-box; }

#pricing-sept-2026 .ps-container {
    max-width: 1190px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons ---------------------------------------------------------------- */
#pricing-sept-2026 .ps-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    padding: 13px 26px;
    border-radius: 6px;
    border: 2px solid transparent;
    text-decoration: none;
    cursor: pointer;
    transition: background-color .25s ease, color .25s ease, border-color .25s ease;
}
#pricing-sept-2026 .ps-btn--orange { background: var(--ps-orange); border-color: var(--ps-orange); color: #fff; }
#pricing-sept-2026 .ps-btn--orange:hover { background: var(--ps-orange-dk); border-color: var(--ps-orange-dk); color:#fff; }
#pricing-sept-2026 .ps-btn--green { background: var(--ps-green); border-color: var(--ps-green); color: #fff; font-size:15px; }
#pricing-sept-2026 .ps-btn--green:hover { background: var(--ps-green-dk); border-color: var(--ps-green-dk); color:#fff; }
#pricing-sept-2026 .ps-btn--block { width: 100%; }

/* ===================== BANNER (hero + cards + trust) =================== */
#pricing-sept-2026 .ps-banner {
    background-color: var(--ps-bg);
    background-image: linear-gradient(180deg, #F2F5FE 0%, #FFFFFF 62%);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
}

/* ============================ HERO ====================================== */
#pricing-sept-2026 .ps-hero {
    background: transparent;
    padding: 11em 0 3em;
    text-align: center;
}
#pricing-sept-2026 .ps-hero__title {
    margin: 0 auto;
    font-size: 44px;
    font-weight: 600;
    line-height: 1.18;
    color: var(--ps-navy);
}
#pricing-sept-2026 .ps-hero__title .ps-accent { color: var(--ps-periwinkle); display: block; }
#pricing-sept-2026 .ps-hero__subtitle {
    max-width: 760px;
    margin: 16px auto 0;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.55;
    color: var(--ps-navy);
}

/* Billing toggle */
#pricing-sept-2026 .ps-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 30px;
    padding: 5px;
    background: var(--ps-blue-050);
    border-radius: 26px;
}
#pricing-sept-2026 .ps-toggle__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--ps-navy);
    background: transparent;
    border: 0;
    padding: 11px 24px;
    border-radius: 22px;
    cursor: pointer;
    transition: background-color .25s ease, color .25s ease;
}
#pricing-sept-2026 .ps-toggle__btn.is-active { background: var(--ps-orange); color: #fff; }
#pricing-sept-2026 .ps-toggle__save {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .3px;
    background: var(--ps-chip-dark);
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
}

/* ============================ CARDS ==================================== */
#pricing-sept-2026 .ps-cards { background: transparent; padding: 26px 0 72px; }
#pricing-sept-2026 .ps-cards__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: start;
}
#pricing-sept-2026 .ps-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--ps-card-line);
    border-radius: 14px;
    box-shadow: 0 10px 20px rgba(12,33,55,.08);
    overflow: hidden;
}
/* Fixed head height so the price block + divider line up across all four cards
   (the popular card's dark header bottom lands on the same line). */
#pricing-sept-2026 .ps-card__head { padding: 32px 28px 0; min-height: 150px; }
#pricing-sept-2026 .ps-card__body {
    padding: 0 28px 26px;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}
#pricing-sept-2026 .ps-card__label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 1.4;
    text-transform: uppercase;
    color: var(--ps-indigo);
    margin: 0 0 8px;
}
#pricing-sept-2026 .ps-card__price {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.1;
    color: var(--ps-navy);
    display: flex;
    align-items: baseline;
    gap: 5px;
    min-height: 48px;
}
#pricing-sept-2026 .ps-card__price.is-text { font-size: 34px; font-weight: 700; white-space: nowrap; }
#pricing-sept-2026 .ps-card__price .ps-card__per {
    font-size: 15px;
    font-weight: 500;
    color: #8A97A6;
}
#pricing-sept-2026 .ps-card__billed {
    font-size: 12px;
    font-weight: 400;
    color: var(--ps-navy);
    margin: 8px 0 0;
    min-height: 16px;
}
#pricing-sept-2026 .ps-card__divider {
    height: 1px;
    background: var(--ps-line);
    margin: 0;
}
#pricing-sept-2026 .ps-card__tier {
    font-size: 16px;
    font-weight: 600;
    color: var(--ps-navy);
    margin: 22px 0 16px;
}
#pricing-sept-2026 .ps-card__features {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    flex: 1 1 auto;
    min-height: 132px;
}
#pricing-sept-2026 .ps-card__features li {
    position: relative;
    padding-left: 28px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--ps-navy);
    margin-bottom: 12px;
}
#pricing-sept-2026 .ps-card__features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 17px;
    height: 17px;
    background: no-repeat center / contain;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='10' fill='%2332CC8C'/%3E%3Cpath d='M5.5 10.2l3 3 6-6.4' fill='none' stroke='%23fff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
#pricing-sept-2026 .ps-card__desc {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--ps-navy);
    margin: 0 0 24px;
    flex: 1 1 auto;
    min-height: 132px;
}
#pricing-sept-2026 .ps-card__foot {
    margin-top: 16px;
    min-height: 48px;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--ps-muted);
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
#pricing-sept-2026 .ps-card__foot svg { flex: 0 0 auto; margin-top: 2px; }

/* Popular card: white body with a dark navy header block. */
#pricing-sept-2026 .ps-card--popular {
    border: 2px solid var(--ps-blue-100);
    box-shadow: 0 24px 44px rgba(12,33,55,.20);
    margin-top: -46px;
}
#pricing-sept-2026 .ps-card--popular .ps-card__head {
    background: var(--ps-navy);
    padding: 32px 28px 0;
    min-height: 196px;
}
#pricing-sept-2026 .ps-card--popular .ps-card__divider { background: transparent; }
#pricing-sept-2026 .ps-card--popular .ps-card__label { color: var(--ps-periwinkle); }
#pricing-sept-2026 .ps-card--popular .ps-card__price { color: #fff; }
#pricing-sept-2026 .ps-card--popular .ps-card__price .ps-card__per { color: #AAB6C6; }
#pricing-sept-2026 .ps-card--popular .ps-card__billed { color: #fff; opacity: .85; }
#pricing-sept-2026 .ps-card__badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(95deg, #32CC8C 0%, #5665B8 60%, #8695E8 100%);
    border-radius: 20px;
    padding: 7px 16px;
    margin-bottom: 16px;
}

/* ========================= TRUST BAR =================================== */
/* A rounded white card floating on the banner background. */
#pricing-sept-2026 .ps-trust { background: transparent; padding: 6px 0 80px; }
#pricing-sept-2026 .ps-trust__row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1190px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 12px 34px rgba(12,33,55,.08);
    padding: 20px 24px;
}
#pricing-sept-2026 .ps-trust__item {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
    padding: 8px 24px;
}
#pricing-sept-2026 .ps-trust__item:not(:last-child) { border-right: 1px solid var(--ps-line); }
#pricing-sept-2026 .ps-trust__icon {
    flex: 0 0 auto;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--ps-blue-050);
    display: grid;
    place-items: center;
    color: var(--ps-periwinkle);
}
#pricing-sept-2026 .ps-trust__text { min-width: 0; }
#pricing-sept-2026 .ps-trust__label {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .2px;
    color: var(--ps-muted);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
#pricing-sept-2026 .ps-trust__value {
    font-size: 16px;
    font-weight: 600;
    color: var(--ps-navy);
    margin: 3px 0 0;
}
#pricing-sept-2026 .ps-stars { color: var(--ps-periwinkle); letter-spacing: 2px; font-size: 12px; }

/* ========================= COMPARE ==================================== */
#pricing-sept-2026 .ps-compare { padding: 72px 0 30px; background: #fff; }
#pricing-sept-2026 .ps-compare .ps-container { max-width: 1190px; }
#pricing-sept-2026 .ps-compare__head { text-align: center; margin-bottom: 40px; }
#pricing-sept-2026 .ps-h2 {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.25;
    color: var(--ps-navy);
    margin: 0;
}
#pricing-sept-2026 .ps-compare__sub {
    max-width: 720px;
    margin: 14px auto 0;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.55;
    color: var(--ps-navy);
}
#pricing-sept-2026 .ps-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
#pricing-sept-2026 .ps-table {
    width: 100%;
    min-width: 860px;
    border-collapse: separate;
    border-spacing: 0;
}
#pricing-sept-2026 .ps-table col.ps-col-feature { width: 34%; }
#pricing-sept-2026 .ps-table col.ps-col-plan { width: 16.5%; }
#pricing-sept-2026 .ps-table thead th {
    font-size: 18px;
    font-weight: 600;
    color: var(--ps-navy);
    text-align: center;
    padding: 14px 12px 22px;
    vertical-align: bottom;
}
#pricing-sept-2026 .ps-table thead th.ps-th-feature { text-align: left; }
#pricing-sept-2026 .ps-table thead th.ps-th-standard {
    color: var(--ps-indigo);
    background: var(--ps-blue-050);
    border-radius: 14px 14px 0 0;
}
#pricing-sept-2026 .ps-table td.ps-cell-standard { background: var(--ps-blue-050); }
#pricing-sept-2026 .ps-table tbody td {
    text-align: center;
    padding: 18px 12px;
    border-bottom: 1px solid #EEF1F8;
    font-size: 14px;
    color: var(--ps-navy);
}
#pricing-sept-2026 .ps-table td.ps-cell-feature { text-align: left; font-weight: 400; }
#pricing-sept-2026 .ps-table tr.ps-group td {
    background: var(--ps-navy);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    padding: 18px 22px;
    border: 0;
}
#pricing-sept-2026 .ps-badge-new {
    display: inline-block;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: #fff;
    background: var(--ps-periwinkle);
    border-radius: 10px;
    padding: 2px 8px;
    margin-left: 8px;
    vertical-align: middle;
}
#pricing-sept-2026 .ps-check {
    display: inline-block;
    width: 22px; height: 22px;
    background: no-repeat center / contain;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 12.5l5 5L20 6' fill='none' stroke='%2332CC8C' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
#pricing-sept-2026 .ps-dash {
    display: inline-block;
    width: 18px; height: 2px;
    background: var(--ps-dash);
    border-radius: 2px;
    vertical-align: middle;
}
#pricing-sept-2026 .ps-table tbody tr:last-child td.ps-cell-standard { border-radius: 0 0 14px 14px; }

/* Collapsed compare table: hide the extra groups until expanded */
#pricing-sept-2026 .ps-table--collapsible .ps-row--extra { display: none; }
#pricing-sept-2026 .ps-table--collapsible.is-expanded .ps-row--extra { display: table-row; }
#pricing-sept-2026 .ps-compare__more-wrap { text-align: center; margin-top: 28px; }
#pricing-sept-2026 .ps-compare__more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    color: var(--ps-indigo);
    background: #fff;
    border: 1px solid var(--ps-blue-100);
    border-radius: 8px;
    padding: 12px 24px;
    cursor: pointer;
    transition: background-color .2s ease, border-color .2s ease;
}
#pricing-sept-2026 .ps-compare__more:hover { background: var(--ps-blue-050); border-color: var(--ps-indigo); }
#pricing-sept-2026 .ps-compare__more-icon { transition: transform .25s ease; }
#pricing-sept-2026 .ps-compare__more.is-open .ps-compare__more-icon { transform: rotate(180deg); }

/* ========================= CTA BAND =================================== */
#pricing-sept-2026 .ps-cta-wrap { padding: 50px 0; background: #fff; }
#pricing-sept-2026 .ps-cta {
    position: relative;
    overflow: hidden;
    background: linear-gradient(115deg, #0C2137 0%, #1B3E6B 55%, #0C2137 100%);
    border-radius: 20px;
    padding: 48px 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    color: #fff;
}
#pricing-sept-2026 .ps-cta__body { position: relative; z-index: 1; }
#pricing-sept-2026 .ps-cta__title { font-size: 30px; font-weight: 600; line-height: 1.3; margin: 0; color:#fff; }
#pricing-sept-2026 .ps-cta__text { font-size: 18px; font-weight: 400; line-height: 1.5; margin: 8px 0 0; color: var(--ps-blue-100); max-width: 760px; }
#pricing-sept-2026 .ps-cta__trust {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 22px;
}
#pricing-sept-2026 .ps-cta__trust-img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 34px;
}
#pricing-sept-2026 .ps-cta__trust-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1.3;
    text-transform: uppercase;
    color: #8FA0B5;
}
#pricing-sept-2026 .ps-cta__rating {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #E6ECF4;
}
#pricing-sept-2026 .ps-cta__rating .ps-badge-score {
    background: var(--ps-green);
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    border-radius: 6px;
    padding: 2px 8px;
}
#pricing-sept-2026 .ps-cta__btn { flex: 0 0 auto; position: relative; z-index: 1; }
#pricing-sept-2026 .ps-cta .ps-btn--green { border-radius: 30px; padding: 15px 30px; }

/* ============================ FAQ ===================================== */
#pricing-sept-2026 .ps-faq { padding: 60px 0 30px; background: #fff; }
#pricing-sept-2026 .ps-faq__head { text-align: center; margin-bottom: 36px; }
#pricing-sept-2026 .ps-faq .ps-h2 { font-size: 36px; }
#pricing-sept-2026 .ps-faq__list { max-width: 940px; margin: 0 auto; }
#pricing-sept-2026 .ps-faq__item { border-bottom: 1px solid var(--ps-line); }
#pricing-sept-2026 .ps-faq__item:first-child { border-top: 1px solid var(--ps-line); }
#pricing-sept-2026 .ps-faq__q {
    width: 100%;
    text-align: left;
    background: transparent;
    border: 0;
    cursor: pointer;
    font-family: inherit;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--ps-navy);
    padding: 22px 44px 22px 40px;
    position: relative;
    display: block;
}
#pricing-sept-2026 .ps-faq__q::before {
    content: "";
    position: absolute;
    left: 0;
    top: 24px;
    width: 20px; height: 20px;
    background: no-repeat center / contain;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 5v14M5 12h14' fill='none' stroke='%234B5CA5' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}
#pricing-sept-2026 .ps-faq__item.is-open .ps-faq__q { color: var(--ps-indigo); font-weight: 600; }
#pricing-sept-2026 .ps-faq__item.is-open .ps-faq__q::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 12h14' fill='none' stroke='%234B5CA5' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}
#pricing-sept-2026 .ps-faq__a {
    display: none;
    padding: 0 44px 24px 40px;
}
#pricing-sept-2026 .ps-faq__item.is-open .ps-faq__a { display: block; }
#pricing-sept-2026 .ps-faq__a p {
    margin: 0;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--ps-navy);
}

/* ====================== QUESTIONS / CLOSING =========================== */
#pricing-sept-2026 .ps-questions { padding: 40px 0 76px; background: #fff; text-align: center; }
#pricing-sept-2026 .ps-questions__title { font-size: 18px; font-weight: 600; margin: 0; color: var(--ps-navy); }
#pricing-sept-2026 .ps-questions__text { font-size: 15px; font-weight: 400; margin: 6px 0 22px; color: var(--ps-navy); }
#pricing-sept-2026 .ps-questions__text a { color: var(--ps-indigo); text-decoration: none; font-weight: 600; }

/* ============================ RESPONSIVE ============================== */
@media (max-width: 1180px) {
    #pricing-sept-2026 .ps-hero__title { font-size: 40px; }
    #pricing-sept-2026 .ps-hero__subtitle { font-size: 17px; }
    #pricing-sept-2026 .ps-h2 { font-size: 32px; }
    #pricing-sept-2026 .ps-faq .ps-h2 { font-size: 32px; }
    #pricing-sept-2026 .ps-card__price { font-size: 36px; }
    #pricing-sept-2026 .ps-cta__title { font-size: 28px; }
    #pricing-sept-2026 .ps-cta__text { font-size: 17px; }
}
@media (max-width: 1024px) {
    #pricing-sept-2026 .ps-cards__grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    #pricing-sept-2026 .ps-card--popular { margin-top: 0; }
    #pricing-sept-2026 .ps-compare__sub { font-size: 16px; }
    #pricing-sept-2026 .ps-table thead th { font-size: 16px; }
    #pricing-sept-2026 .ps-table tr.ps-group td { font-size: 15px; }
    #pricing-sept-2026 .ps-table tbody td { font-size: 13px; }
}
@media (max-width: 760px) {
    #pricing-sept-2026 .ps-hero { padding: 48px 0 26px; }
    #pricing-sept-2026 .ps-hero__title { font-size: 29px; }
    #pricing-sept-2026 .ps-hero__subtitle { font-size: 15px; }
    #pricing-sept-2026 .ps-toggle__btn { font-size: 13px; padding: 10px 18px; }
    #pricing-sept-2026 .ps-cards__grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    #pricing-sept-2026 .ps-card__price { font-size: 36px; }
    #pricing-sept-2026 .ps-trust__row { grid-template-columns: 1fr; padding: 8px 20px; }
    #pricing-sept-2026 .ps-trust__item { justify-content: flex-start; padding: 18px 4px; }
    #pricing-sept-2026 .ps-trust__item:not(:last-child) { border-right: 0; border-bottom: 1px solid var(--ps-line); }
    #pricing-sept-2026 .ps-h2 { font-size: 25px; }
    #pricing-sept-2026 .ps-faq .ps-h2 { font-size: 25px; }
    #pricing-sept-2026 .ps-compare__sub { font-size: 15px; }
    #pricing-sept-2026 .ps-cta { flex-direction: column; align-items: flex-start; padding: 32px 24px; }
    #pricing-sept-2026 .ps-cta__title { font-size: 23px; }
    #pricing-sept-2026 .ps-cta__text { font-size: 16px; }
    #pricing-sept-2026 .ps-cta__btn { width: 100%; }
    #pricing-sept-2026 .ps-cta .ps-btn { width: 100%; }
    #pricing-sept-2026 .ps-faq__q { font-size: 16px; padding: 20px 36px 20px 34px; }
    #pricing-sept-2026 .ps-faq__q::before { top: 22px; width: 18px; height: 18px; }
    #pricing-sept-2026 .ps-faq__a { padding: 0 0 22px 34px; }
    #pricing-sept-2026 .ps-faq__a p { font-size: 14px; }
    #pricing-sept-2026 .ps-questions__title { font-size: 17px; }
}
@media (max-width: 420px) {
    #pricing-sept-2026 .ps-hero__title { font-size: 25px; }
    #pricing-sept-2026 .ps-card__price { font-size: 32px; }
}
