
    /* ── TOKENS ── */
:root {
    --primary: #563AFF;
    --primary-dark: #3d20e0;
    --title: #211F54;
    --para: #5A5F96;
    --light: #F7F7FC;
    --gray: #D8D4EB;
    --warning: #FF813A;
    --accent: #A78BFA;
    --pill-bg: #EDE9FF;
    --hero-grad: linear-gradient(135deg, #1a1240 0%, #2a1a6e 55%, #1a1240 100%);
}

* { box-sizing: border-box; }
.pr-page { font-family: "Jost", sans-serif; overflow-x: hidden; }

/* ── REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.20s; }
.reveal-delay-3 { transition-delay: 0.30s; }
.reveal-delay-4 { transition-delay: 0.40s; }

/* ════════════════════════════════
   SHARED HELPERS
════════════════════════════════ */
.pr-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.pr-section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
}
.pr-section-label--light { color: var(--accent); }
.pr-section-title {
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 800;
    color: var(--title);
    line-height: 1.2;
    margin: 0 0 14px;
}
.pr-section-title--white { color: #fff; }
.pr-section-title span { color: var(--primary); }
.pr-section-title span.accent { color: var(--accent); }
.pr-section-desc {
    font-size: 16px;
    color: var(--para);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto;
}
.pr-section-desc--white { color: rgba(255,255,255,0.68); margin: 0; }
.pr-center { text-align: center; }

/* ════════════════════════════════
   SECTION 1 — HERO
════════════════════════════════ */
.pr-hero {
    background: var(--hero-grad);
    padding: 96px 0 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.pr-hero::before,
.pr-hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.pr-hero::before {
    width: 500px; height: 500px;
    background: rgba(86,58,255,0.12);
    top: -200px; right: -100px;
}
.pr-hero::after {
    width: 360px; height: 360px;
    background: rgba(167,139,250,0.07);
    bottom: -120px; left: -80px;
}
.pr-hero__breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    margin-bottom: 22px;
}
.pr-hero__breadcrumb a { color: rgba(255,255,255,0.45); text-decoration: none; }
.pr-hero__breadcrumb a:hover { color: #fff; }
.pr-hero__breadcrumb span { color: rgba(255,255,255,0.25); }
.pr-hero__tag {
    display: inline-block;
    background: rgba(167,139,250,0.18);
    border: 1px solid rgba(167,139,250,0.35);
    color: var(--accent);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 22px;
}
.pr-hero__h1 {
    font-size: clamp(34px, 5vw, 60px);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin: 0 0 20px;
}
.pr-hero__h1 span { color: var(--accent); }
.pr-hero__sub {
    font-size: 17px;
    color: rgba(255,255,255,0.68);
    line-height: 1.7;
    max-width: 580px;
    margin: 0 auto 36px;
}
/* trust strip */
.pr-hero__trust {
    display: inline-flex;
    align-items: center;
    gap: 0;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 40px;
    padding: 10px 6px;
    flex-wrap: wrap;
    justify-content: center;
}
.pr-trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 4px 18px;
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
    border-right: 1px solid rgba(255,255,255,0.12);
}
.pr-trust-item:last-child { border-right: none; }
.pr-trust-item i { font-size: 15px; color: var(--accent); }

/* ════════════════════════════════
   SECTION 2 — BILLING TOGGLE + PLANS
════════════════════════════════ */
.pr-plans {
    background: var(--light);
    padding: 90px 0;
}
.pr-plans__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: start;
    margin-top: 52px;
}
.pr-plan {
    background: #fff;
    border: 1.5px solid var(--gray);
    border-radius: 20px;
    padding: 36px 30px 32px;
    position: relative;
    transition: box-shadow 0.25s, transform 0.25s;
}
.pr-plan:hover {
    box-shadow: 0 14px 48px rgba(86,58,255,0.1);
    transform: translateY(-5px);
}
.pr-plan--featured {
    border-color: var(--primary);
    box-shadow: 0 8px 36px rgba(86,58,255,0.16);
}
.pr-plan--featured:hover {
    box-shadow: 0 18px 56px rgba(86,58,255,0.22);
}
.pr-plan__badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 5px 18px;
    border-radius: 20px;
    white-space: nowrap;
}
.pr-plan__tier {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: var(--para);
    margin-bottom: 6px;
}
.pr-plan__name {
    font-size: 22px;
    font-weight: 800;
    color: var(--title);
    margin: 0 0 4px;
}
.pr-plan__tagline {
    font-size: 13px;
    color: var(--para);
    line-height: 1.5;
    margin-bottom: 22px;
    min-height: 40px;
}
.pr-plan__price-row {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    margin-bottom: 6px;
}
.pr-plan__from {
    font-size: 12px;
    color: var(--para);
    margin-bottom: 5px;
    font-weight: 500;
}
.pr-plan__amount {
    font-size: 44px;
    font-weight: 800;
    color: var(--title);
    line-height: 1;
}
.pr-plan__amount sup {
    font-size: 22px;
    font-weight: 700;
    vertical-align: top;
    margin-top: 27px;
    display: inline-block;
}
.pr-plan__plus {
    font-size: 18px;
    color: var(--para);
    font-weight: 500;
    margin-bottom: 4px;
}
.pr-plan__timeline {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
    background: var(--pill-bg);
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 24px;
}
.pr-plan__timeline i { font-size: 14px; }
.pr-plan__divider {
    height: 1px;
    background: var(--gray);
    margin-bottom: 22px;
}
.pr-plan__features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}
.pr-plan__features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--para);
    padding: 8px 0;
    border-bottom: 1px solid var(--light);
    line-height: 1.45;
}
.pr-plan__features li:last-child { border-bottom: none; }
.pr-plan__features li i.check { font-size: 16px; color: var(--primary); flex-shrink: 0; margin-top: 1px; }
.pr-plan__features li i.dash { font-size: 16px; color: var(--gray); flex-shrink: 0; margin-top: 1px; }
.pr-plan__cta {
    display: block;
    text-align: center;
    padding: 14px 20px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    font-family: "Jost", sans-serif;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s, border-color 0.2s;
    cursor: pointer;
}
.pr-plan__cta--outline {
    border: 1.5px solid var(--primary);
    color: var(--primary);
    background: transparent;
}
.pr-plan__cta--outline:hover {
    background: var(--primary);
    color: #fff;
    text-decoration: none;
}
.pr-plan__cta--fill {
    background: var(--primary);
    color: #fff;
    border: 1.5px solid var(--primary);
}
.pr-plan__cta--fill:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    text-decoration: none;
    color: #fff;
}

/* ════════════════════════════════
   SECTION 3 — CUSTOM / ENTERPRISE
════════════════════════════════ */
.pr-enterprise {
    background: #fff;
    padding: 80px 0;
}
.pr-enterprise__card {
    background: var(--hero-grad);
    border-radius: 24px;
    padding: 56px 60px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.pr-enterprise__card::before {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: rgba(86,58,255,0.14);
    right: -100px; top: -150px;
    pointer-events: none;
}
.pr-enterprise__label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}
.pr-enterprise__title {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin: 0 0 16px;
}
.pr-enterprise__desc {
    font-size: 16px;
    color: rgba(255,255,255,0.68);
    line-height: 1.7;
    max-width: 540px;
    margin-bottom: 28px;
}
.pr-enterprise__points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.pr-enterprise__point {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    color: rgba(255,255,255,0.82);
    font-size: 13px;
    font-weight: 500;
    padding: 7px 14px;
    border-radius: 20px;
}
.pr-enterprise__point i { font-size: 15px; color: var(--accent); }
.pr-enterprise__right { text-align: center; flex-shrink: 0; }
.pr-enterprise__badge-circle {
    width: 140px; height: 140px;
    border-radius: 50%;
    background: rgba(167,139,250,0.15);
    border: 2px solid rgba(167,139,250,0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.pr-enterprise__badge-circle span:first-child {
    font-size: 30px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}
.pr-enterprise__badge-circle span:last-child {
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    text-align: center;
    margin-top: 4px;
}
.pr-enterprise__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--primary);
    font-size: 15px;
    font-weight: 700;
    font-family: "Jost", sans-serif;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    border: none;
    cursor: pointer;
}
.pr-enterprise__btn:hover {
    background: var(--pill-bg);
    transform: translateY(-2px);
    text-decoration: none;
    color: var(--primary);
}

/* ════════════════════════════════
   SECTION 4 — WHAT'S ALWAYS INCLUDED
════════════════════════════════ */
.pr-included {
    background: var(--light);
    padding: 90px 0;
}
.pr-included__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 52px;
}
.pr-included__card {
    background: #fff;
    border: 1.5px solid var(--gray);
    border-radius: 16px;
    padding: 28px 22px;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    position: relative;
    overflow: hidden;
}
.pr-included__card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), #8B6FFF);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.pr-included__card:hover::before { transform: scaleX(1); }
.pr-included__card:hover {
    border-color: rgba(86,58,255,0.25);
    box-shadow: 0 6px 24px rgba(86,58,255,0.08);
    transform: translateY(-3px);
}
.pr-included__icon {
    width: 46px; height: 46px;
    background: var(--pill-bg);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
}
.pr-included__icon i { font-size: 22px; color: var(--primary); }
.pr-included__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--title);
    margin: 0 0 8px;
}
.pr-included__desc {
    font-size: 15px;
    color: var(--para);
    line-height: 1.6;
    margin: 0;
}

/* ════════════════════════════════
   SECTION 5 — HOW PRICING WORKS
════════════════════════════════ */
.pr-process {
    background: #fff;
    padding: 90px 0;
}
.pr-process__timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 56px;
    position: relative;
}
.pr-process__timeline::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(12.5% + 14px);
    right: calc(12.5% + 14px);
    height: 2px;
    background: var(--gray);
    z-index: 0;
}
.pr-process__step {
    text-align: center;
    padding: 0 16px;
    position: relative;
    z-index: 1;
}
.pr-process__circle {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--pill-bg);
    border: 2px solid var(--gray);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
    transition: background 0.25s, border-color 0.25s, box-shadow 0.25s;
    cursor: default;
}
.pr-process__step:hover .pr-process__circle {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 0 0 6px rgba(86,58,255,0.12);
}
.pr-process__step-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--title);
    margin-bottom: 8px;
}
.pr-process__step-desc {
    font-size: 13px;
    color: var(--para);
    line-height: 1.6;
    max-width: 200px;
    margin: 0 auto;
}

/* ════════════════════════════════
   SECTION 6 — FAQ
════════════════════════════════ */
.pr-faq {
    background: var(--light);
    padding: 90px 0;
}
.pr-faq__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 52px;
}
.pr-faq__item {
    background: #fff;
    border: 1.5px solid var(--gray);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.2s;
}
.pr-faq__item.open { border-color: rgba(86,58,255,0.3); }
.pr-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    cursor: pointer;
    user-select: none;
}
.pr-faq__q-text {
    font-size: 15px;
    font-weight: 600;
    color: var(--title);
    line-height: 1.4;
}
.pr-faq__chevron {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--pill-bg);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.3s;
}
.pr-faq__chevron i { font-size: 18px; color: var(--primary); }
.pr-faq__item.open .pr-faq__chevron { background: var(--primary); transform: rotate(180deg); }
.pr-faq__item.open .pr-faq__chevron i { color: #fff; }
.pr-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.25s ease;
    padding: 0 24px;
}
.pr-faq__answer-inner {
    font-size: 14px;
    color: var(--para);
    line-height: 1.7;
    padding-bottom: 20px;
    border-top: 1px solid var(--gray);
    padding-top: 16px;
}
.pr-faq__item.open .pr-faq__answer { max-height: 300px; }

/* ════════════════════════════════
   SECTION 7 — FINAL CTA
════════════════════════════════ */
.pr-cta {
    background: var(--title);
    padding: 90px 0;
}
.pr-cta__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.pr-cta__label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
}
.pr-cta__title {
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin: 0 0 16px;
}
.pr-cta__desc {
    font-size: 16px;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin-bottom: 32px;
}
.pr-cta__checks {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 24px;
}
.pr-cta__check {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255,255,255,0.65);
}
.pr-cta__check i { font-size: 16px; color: var(--accent); flex-shrink: 0; }
/* right panel */
.pr-cta__panel {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 36px 32px;
    backdrop-filter: blur(8px);
}
.pr-cta__panel-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.45);
    margin-bottom: 22px;
}
.pr-cta__compare {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.pr-cta__compare-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-radius: 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
}
.pr-cta__compare-row span:first-child {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
}
.pr-cta__compare-row span:last-child {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
}

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */
@media (max-width: 1100px) {
    .pr-included__grid { grid-template-columns: repeat(2, 1fr); }
    .pr-process__timeline { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .pr-process__timeline::before { display: none; }
}
@media (max-width: 991px) {
    .pr-plans__grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
    .pr-enterprise__card { grid-template-columns: 1fr; padding: 36px 28px; }
    .pr-enterprise__right { display: none; }
    .pr-faq__grid { grid-template-columns: 1fr; }
    .pr-cta__inner { grid-template-columns: 1fr; }
    .pr-cta__panel { display: none; }
    .pr-hero__trust { gap: 0; }
    .pr-trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); width: 100%; justify-content: center; }
    .pr-trust-item:last-child { border-bottom: none; }
}
@media (max-width: 700px) {
    .pr-hero { padding: 70px 0 56px; }
    .pr-included__grid { grid-template-columns: 1fr; }
    .pr-process__timeline { grid-template-columns: 1fr; }
    .pr-plans__grid { max-width: 100%; }
}