/* ════════════════════════════════
   PRICING PAGE — Prodelium
════════════════════════════════ */

/* ── Mapped to design system ── */
:root {
    --violet-deep: var(--color-primary);
    --violet-mid: var(--color-primary-light);
    --violet-light: #9B92EC;
    --violet-pale: #D4D0F4;
    --violet-wash: #EDEBFA;
    --violet-glow: rgba(91, 75, 219, 0.25);
    --indigo: var(--color-primary-dark);
    --fuchsia: #9B6FE8;
}

/* No base overrides needed — standard page layout */

/* ── Gradient text utility ── */
.text-gradient {
    display: inline;
    background: linear-gradient(135deg, #5B4BDB, #7B6FE8, #9B92EC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: var(--color-primary); /* fallback */
}

/* ── Shared ── */
.pr-section { position: relative; z-index: 1; padding: 64px 24px; }
.pr-container { max-width: 1140px; margin: 0 auto; }
.pr-pill {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 14px; font-size: 13px; font-weight: 500;
    color: var(--color-primary); background: rgba(91, 75, 219, 0.08);
    border: 1px solid rgba(91, 75, 219, 0.15); border-radius: 100px;
    letter-spacing: 0.02em; margin-bottom: 20px;
}
.pr-pill svg { width: 14px; height: 14px; stroke: var(--color-primary); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

/* ════════════════════════════════
   SECTION 1 — HERO
════════════════════════════════ */
.pr-hero {
    position: relative; overflow: hidden;
    padding: 140px 24px 80px; text-align: center;
    background: #fff; max-height: 60vh;
    display: flex; align-items: center; justify-content: center;
    min-height: 400px;
}
.pr-hero-mesh {
    position: absolute; inset: 0; z-index: 0; overflow: hidden;
}
.pr-hero-mesh::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 20%, rgba(91, 75, 219, 0.10) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 80% 10%, rgba(123, 111, 232, 0.08) 0%, transparent 55%),
        radial-gradient(ellipse 70% 50% at 50% 80%, rgba(155, 146, 236, 0.06) 0%, transparent 50%);
    animation: prMeshMove 12s ease-in-out infinite alternate;
}
@keyframes prMeshMove {
    0%   { opacity: 0.8; transform: scale(1) translate(0, 0); }
    50%  { opacity: 1; transform: scale(1.05) translate(-1%, 1%); }
    100% { opacity: 0.9; transform: scale(1.02) translate(1%, -1%); }
}

.pr-hero-content { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.pr-hero h1 {
    font-family: var(--font-display); font-size: clamp(40px, 5vw, 64px);
    font-weight: 800; line-height: 1.05; letter-spacing: -0.03em;
    color: var(--color-text-primary); margin-bottom: 18px;
}
.pr-hero-sub {
    font-size: 1.1rem; color: var(--muted); line-height: 1.7;
    max-width: 560px; margin: 0 auto 28px;
}
.pr-hero-reassurance {
    display: flex; align-items: center; justify-content: center;
    gap: 20px; flex-wrap: wrap;
}
.pr-hero-reassurance span {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.82rem; color: var(--muted);
}
.pr-hero-reassurance span::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%;
    background: var(--violet-pale);
}

/* ════════════════════════════════
   SECTION 2 — FORMULES
════════════════════════════════ */
.pr-plans { padding: 64px 24px; background: var(--bg); }
.pr-plans-header { text-align: center; margin-bottom: 36px; }
.pr-plans-header h2 {
    font-family: var(--font-display); font-size: clamp(32px, 4vw, 52px);
    font-weight: 700; line-height: 1.1; letter-spacing: -0.02em;
    color: var(--text); margin-bottom: 12px;
}

/* Toggle */
.pr-toggle {
    display: flex; align-items: center; justify-content: center;
    gap: 14px; margin-bottom: 48px;
}
.pr-toggle-label {
    font-size: 0.88rem; font-weight: 500; color: var(--muted);
    cursor: pointer; transition: color 0.2s;
}
.pr-toggle-label.active { color: var(--text); }
.pr-toggle-switch {
    position: relative; width: 52px; height: 28px;
    background: var(--violet-pale); border-radius: 50px;
    cursor: pointer; transition: background 0.3s; border: none; padding: 0;
}
.pr-toggle-switch::after {
    content: ''; position: absolute; top: 3px; left: 3px;
    width: 22px; height: 22px; background: #fff; border-radius: 50%;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}
.pr-toggle-switch.annual::after { transform: translateX(24px); }
.pr-toggle-switch.annual { background: var(--violet-deep); }
.pr-toggle-badge {
    font-size: 0.72rem; font-weight: 600; color: var(--violet-deep);
    background: var(--violet-wash); padding: 3px 10px; border-radius: 50px;
    border: 1px solid var(--violet-pale);
}

/* Cards grid */
.pr-cards {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px; max-width: 1060px; margin: 0 auto;
}

/* Card base */
.pr-card {
    position: relative; padding: 36px 28px 32px;
    border-radius: 16px; border: 1px solid var(--color-border);
    background: #fff; transition: transform 0.3s, box-shadow 0.3s;
    display: flex; flex-direction: column;
}
.pr-card:hover { transform: translateY(-4px); }
.pr-card-features { flex: 1; }
.pr-card .pr-btn-primary,
.pr-card .pr-btn-outline,
.pr-card .pr-btn-white-outline { margin-top: auto; }

/* Pro — popular */
.pr-card--pro {
    background: linear-gradient(165deg, var(--violet-wash), #fff 40%);
    border-color: var(--violet-pale);
    box-shadow: 0 12px 40px rgba(108,58,237,0.12);
    transform: scale(1.02); z-index: 1;
}
.pr-card--pro:hover {
    transform: scale(1.02) translateY(-4px);
    box-shadow: 0 16px 50px rgba(108,58,237,0.18);
}
.pr-popular-badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    display: inline-flex; align-items: center; gap: 4px;
    padding: 5px 16px; font-size: 0.74rem; font-weight: 600; color: #fff;
    background: linear-gradient(135deg, var(--violet-deep), var(--violet-mid));
    border-radius: 50px; box-shadow: 0 4px 12px var(--violet-glow); white-space: nowrap;
}

/* Enterprise */
.pr-card--enterprise {
    background: var(--text); border-color: rgba(255,255,255,0.08); color: #fff;
}
.pr-card--enterprise .pr-card-name,
.pr-card--enterprise .pr-card-tagline,
.pr-card--enterprise .pr-card-price { color: #fff; }
.pr-card--enterprise .pr-card-tagline { color: rgba(255,255,255,0.55); }
.pr-card--enterprise .pr-card-price span { color: rgba(255,255,255,0.5); }

.pr-card-name {
    font-size: 1.15rem; font-weight: 600; color: var(--text); margin-bottom: 4px;
}
.pr-card-tagline {
    font-size: 0.85rem; color: var(--muted); margin-bottom: 20px; line-height: 1.5;
}

/* Price — BIG */
.pr-card-price {
    font-family: var(--font-display);
    font-size: 3.4rem; font-weight: 800; color: var(--color-text-primary);
    letter-spacing: -0.03em; line-height: 1; margin-bottom: 4px;
}
.pr-card--enterprise .pr-card-price {
    font-size: 2rem; color: #fff;
}
.pr-card-price span {
    font-size: 0.95rem; font-weight: 400; color: var(--muted);
}
.pr-card-price .price-value {
    display: inline-block;
    font-size: inherit; font-weight: inherit; color: inherit;
    transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), opacity 0.2s;
}
.pr-card-price .price-value.switching {
    transform: translateY(-8px); opacity: 0;
}
.pr-card-interval {
    font-size: 0.78rem; color: var(--muted); margin-bottom: 24px;
}
.pr-card--enterprise .pr-card-interval { color: rgba(255,255,255,0.45); }

/* Feature lines */
.pr-card-features {
    list-style: none; display: flex; flex-direction: column;
    gap: 12px; margin-bottom: 28px;
}
.pr-feat {
    display: flex; align-items: center; gap: 12px;
    font-size: 0.9rem; color: var(--color-text-primary);
}
.pr-feat--no {
    color: var(--color-text-secondary); opacity: 0.5;
}
.pr-card--enterprise .pr-feat {
    color: rgba(255,255,255,0.9);
}
.pr-card--enterprise .pr-feat--no {
    color: rgba(255,255,255,0.35);
}

/* Check circle */
.pr-feat-check {
    width: 22px; height: 22px; flex-shrink: 0;
    border-radius: 50%;
    background: var(--color-bg-subtle);
    display: flex; align-items: center; justify-content: center;
    position: relative;
}
.pr-feat-check::after {
    content: '';
    width: 10px; height: 6px;
    border-left: 2px solid var(--color-primary);
    border-bottom: 2px solid var(--color-primary);
    transform: rotate(-45deg);
    margin-top: -2px;
}
.pr-card--enterprise .pr-feat-check {
    background: rgba(255,255,255,0.1);
}
.pr-card--enterprise .pr-feat-check::after {
    border-color: var(--violet-light);
}

/* Cross circle */
.pr-feat-cross {
    width: 22px; height: 22px; flex-shrink: 0;
    border-radius: 50%;
    background: rgba(0,0,0,0.03);
    display: flex; align-items: center; justify-content: center;
    position: relative;
}
.pr-feat-cross::before,
.pr-feat-cross::after {
    content: '';
    position: absolute;
    width: 9px; height: 1.5px;
    background: var(--color-text-secondary);
    opacity: 0.4;
}
.pr-feat-cross::before { transform: rotate(45deg); }
.pr-feat-cross::after { transform: rotate(-45deg); }
.pr-card--enterprise .pr-feat-cross { background: rgba(255,255,255,0.06); }
.pr-card--enterprise .pr-feat-cross::before,
.pr-card--enterprise .pr-feat-cross::after { background: rgba(255,255,255,0.3); }

/* Card buttons */
.pr-btn-primary {
    display: flex; align-items: center; justify-content: center;
    width: 100%; padding: 14px 24px; gap: 8px;
    font-family: var(--font-body); font-size: 0.95rem; font-weight: 500;
    color: #fff; background: var(--color-primary);
    border: none; border-radius: 10px; cursor: pointer;
    box-shadow: 0 4px 20px rgba(91, 75, 219, 0.25);
    transition: transform 0.2s, box-shadow 0.2s; text-decoration: none;
}
.pr-btn-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 28px rgba(91, 75, 219, 0.35);
}

.pr-btn-outline {
    display: flex; align-items: center; justify-content: center;
    width: 100%; padding: 14px 24px; gap: 8px;
    font-family: var(--font-body); font-size: 0.95rem; font-weight: 500;
    color: var(--violet-deep); background: transparent;
    border: 1.5px solid var(--violet-pale); border-radius: 10px; cursor: pointer;
    transition: background 0.2s, border-color 0.2s, transform 0.2s; text-decoration: none;
}
.pr-btn-outline:hover {
    background: var(--violet-wash); border-color: var(--violet-light);
    transform: translateY(-2px);
}

.pr-btn-white-outline {
    display: flex; align-items: center; justify-content: center;
    width: 100%; padding: 14px 24px; gap: 8px;
    font-family: var(--font-body); font-size: 0.95rem; font-weight: 500;
    color: #fff; background: transparent;
    border: 1.5px solid rgba(255,255,255,0.25); border-radius: 10px; cursor: pointer;
    transition: background 0.2s, border-color 0.2s; text-decoration: none;
}
.pr-btn-white-outline:hover {
    background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.4);
}

/* ════════════════════════════════
   SECTION 3 — TABLEAU COMPARATIF
════════════════════════════════ */
.pr-compare { padding: 64px 24px; background: #fff; }
.pr-compare-header { text-align: center; margin-bottom: 36px; }
.pr-compare-header h2 {
    font-family: var(--font-display); font-size: clamp(32px, 4vw, 52px);
    font-weight: 700; line-height: 1.1; letter-spacing: -0.02em;
    color: var(--text);
}

.pr-table-mobile-tabs { display: none; }

.pr-table-wrap {
    max-width: 900px; margin: 0 auto;
    border-radius: 16px; overflow: hidden;
    border: 1px solid var(--color-border);
}
.pr-table {
    width: 100%; border-collapse: collapse;
    background: #fff;
}
.pr-table th {
    padding: 18px 20px; font-size: 0.88rem; font-weight: 600;
    color: var(--color-text-primary); background: #fff;
    border-bottom: 1px solid var(--color-border);
    text-align: center;
}
.pr-table th:first-child {
    text-align: left;
    font-size: 11px; color: var(--color-text-secondary);
    font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.08em;
}
.pr-table th.pr-th-pro {
    color: var(--color-primary);
    background: rgba(91, 75, 219, 0.04);
}
.pr-th-badge {
    display: inline-flex; align-items: center; gap: 3px;
    font-size: 11px; font-weight: 600;
    color: var(--color-text-secondary);
    margin-left: 6px;
    vertical-align: middle;
}

.pr-table td {
    padding: 14px 20px; font-size: 0.9rem;
    color: var(--color-text-primary);
    border-bottom: 1px solid var(--color-border);
    text-align: center;
    vertical-align: middle;
}
.pr-table tr:last-child td { border-bottom: none; }
.pr-table td:first-child {
    text-align: left; font-weight: 500;
}
.pr-table td.pr-td-pro { background: rgba(91, 75, 219, 0.03); }
.pr-table td.pr-td-text { font-weight: 600; }

/* Center checks/crosses in table cells */
.pr-table td .pr-feat-check,
.pr-table td .pr-feat-cross { margin: 0 auto; }

/* ════════════════════════════════
   SECTION 4 — FAQ
════════════════════════════════ */
.pr-faq { padding: 64px 24px; background: var(--bg); }
.pr-faq-header { text-align: center; margin-bottom: 36px; }
.pr-faq-header h2 {
    font-family: var(--font-display); font-size: clamp(32px, 4vw, 52px);
    font-weight: 700; line-height: 1.1; letter-spacing: -0.02em;
    color: var(--text);
}

.pr-faq-list {
    max-width: 750px; margin: 0 auto;
    display: flex; flex-direction: column; gap: 8px;
}
.pr-faq-item {
    border: 1px solid rgba(200,210,240,0.4); border-radius: 10px;
    overflow: hidden; background: #fff;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.pr-faq-item.open {
    border-color: var(--violet-pale);
    box-shadow: 0 4px 16px rgba(108,58,237,0.06);
}
.pr-faq-question {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; padding: 20px 24px;
    font-family: var(--font-body); font-size: 0.95rem; font-weight: 500;
    color: var(--text); background: none; border: none;
    cursor: pointer; text-align: left; transition: color 0.2s;
}
.pr-faq-question:hover { color: var(--violet-deep); }
.pr-faq-icon {
    width: 24px; height: 24px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; color: var(--muted);
    transition: transform 0.3s, color 0.3s; flex-shrink: 0;
}
.pr-faq-item.open .pr-faq-icon {
    transform: rotate(45deg); color: var(--violet-deep);
}
.pr-faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25,0.1,0.25,1);
}
.pr-faq-answer-inner {
    padding: 0 24px 20px; font-size: 0.88rem;
    color: var(--muted); line-height: 1.7;
}

/* ════════════════════════════════
   SECTION 5 — CTA FINAL
════════════════════════════════ */
.pr-cta {
    position: relative; padding: 80px 24px;
    text-align: center; overflow: hidden;
    background: url('/img/mesh-bg.webp') center center / cover no-repeat;
}

.pr-cta-content { position: relative; z-index: 1; max-width: 650px; margin: 0 auto; }
.pr-cta h2 {
    font-family: var(--font-display); font-size: clamp(32px, 4vw, 52px);
    font-weight: 800; line-height: 1.05; letter-spacing: -0.03em;
    color: var(--color-text-primary); margin-bottom: 16px;
}
.pr-cta-sub {
    font-size: 1.05rem; color: var(--color-text-secondary);
    line-height: 1.7; margin-bottom: 32px;
}
.pr-cta-btns {
    display: flex; align-items: center; justify-content: center;
    gap: 14px; margin-bottom: 20px; flex-wrap: wrap;
}
.pr-cta-btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; font-family: var(--font-body);
    font-size: 15px; font-weight: 600;
    color: #fff; background: var(--color-text-primary);
    border: none; border-radius: 10px; cursor: pointer;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    transition: all 0.2s ease; text-decoration: none;
}
.pr-cta-btn-primary:hover {
    background: #000; transform: translateY(-1px);
    box-shadow: 0 6px 28px rgba(0,0,0,0.18);
}
.pr-cta-btn-outline {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; font-family: var(--font-body);
    font-size: 15px; font-weight: 600;
    color: var(--color-text-primary); background: transparent;
    border: 1.5px solid rgba(0,0,0,0.15); border-radius: 10px; cursor: pointer;
    transition: all 0.2s ease; text-decoration: none;
}
.pr-cta-btn-outline:hover {
    border-color: var(--color-text-primary); transform: translateY(-1px);
}
.pr-cta-reassurance {
    font-size: 0.82rem; color: var(--color-text-secondary);
}
.pr-cta-reassurance span { margin: 0 8px; opacity: 0.4; }

/* ════════════════════════════════
   LOGIN MODAL (preserved from existing)
════════════════════════════════ */
.pricing-login-overlay {
    display: none; position: fixed; inset: 0; z-index: 1000;
    background: rgba(20,20,40,.35); backdrop-filter: blur(4px);
    align-items: center; justify-content: center;
}
.pricing-login-overlay.open {
    display: flex; animation: pricingFadeIn .2s ease both;
}
@keyframes pricingFadeIn { from { opacity: 0; } to { opacity: 1; } }

.pricing-login-modal {
    position: relative; width: 420px;
    max-width: calc(100% - 32px); max-height: calc(100vh - 40px);
    overflow-y: auto; padding: 44px 40px 36px;
    background: var(--glass-bg); border: 1.5px solid var(--glass-border);
    border-radius: var(--radius); backdrop-filter: var(--blur);
    box-shadow: 0 16px 64px rgba(120,130,160,.22);
    animation: pricingSlideUp .3s cubic-bezier(.22,.68,0,1.2) both;
}
@keyframes pricingSlideUp {
    from { opacity: 0; transform: translateY(20px) scale(.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
.pricing-login-close {
    position: absolute; top: 16px; right: 16px;
    background: none; border: none; cursor: pointer; padding: 4px;
    border-radius: 8px; transition: background .15s;
}
.pricing-login-close:hover { background: rgba(124,158,255,.1); }
.pricing-login-close svg { width: 18px; height: 18px; stroke: var(--muted); fill: none; stroke-width: 2; }

.pricing-login-title {
    font-family: var(--font-display); font-size: 1.6rem;
    font-weight: 400; color: var(--text); margin-bottom: 4px;
}
.pricing-login-subtitle {
    font-size: .85rem; color: var(--muted); font-weight: 300; margin-bottom: 28px;
}
.pricing-login-modal .login-field { margin-bottom: 16px; }
.pricing-login-modal .login-field label {
    display: block; font-size: .72rem; font-weight: 500;
    color: var(--muted); letter-spacing: .08em;
    text-transform: uppercase; margin-bottom: 6px;
}
.pricing-login-modal .login-input-wrap { position: relative; }
.pricing-login-modal .login-input-wrap > svg {
    position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
    width: 16px; height: 16px; stroke: var(--muted); fill: none;
    stroke-width: 1.8; pointer-events: none; transition: stroke .2s;
}
.pricing-login-modal .login-input-wrap input {
    width: 100%; padding: 12px 14px 12px 42px;
    background: rgba(255,255,255,.6); border: 1.5px solid var(--input-border);
    border-radius: var(--input-radius); font-family: var(--font-body);
    font-size: .88rem; color: var(--text); outline: none;
    transition: border .25s, background .25s, box-shadow .25s;
}
.pricing-login-modal .login-input-wrap input:focus {
    border-color: var(--accent); background: rgba(255,255,255,.82);
    box-shadow: 0 0 0 3px rgba(124,158,255,.12);
}
.pricing-login-modal .login-input-wrap:focus-within > svg { stroke: var(--accent); }
.pricing-login-modal .login-input-wrap.has-eye input { padding-right: 42px; }
.pricing-login-modal .pwd-toggle {
    position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
    background: none; border: none; cursor: pointer; padding: 4px;
    display: flex; align-items: center; justify-content: center;
    color: var(--muted); transition: color .2s;
}
.pricing-login-modal .pwd-toggle:hover { color: var(--accent); }
.pricing-login-modal .pwd-toggle svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.8; display: block; }
.pricing-login-modal .pwd-toggle .eye-off { display: none; }
.pricing-login-modal .pwd-toggle.visible .eye-on { display: none; }
.pricing-login-modal .pwd-toggle.visible .eye-off { display: block; }
.pricing-login-modal .login-btn {
    width: 100%; padding: 13px; background: var(--gradient-accent);
    color: #fff; border: none; border-radius: var(--input-radius);
    font-family: var(--font-body); font-size: .9rem; font-weight: 500;
    cursor: pointer; box-shadow: 0 4px 16px rgba(124,158,255,.35);
    transition: transform .18s, box-shadow .18s; margin-bottom: 16px;
}
.pricing-login-modal .login-btn:hover {
    transform: translateY(-2px); box-shadow: 0 8px 24px rgba(124,158,255,.42);
}
.pricing-login-modal .login-divider {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 14px; color: var(--muted); font-size: .78rem;
}
.pricing-login-modal .login-divider::before,
.pricing-login-modal .login-divider::after {
    content: ''; flex: 1; height: 1px; background: rgba(180,190,220,.45);
}
.pricing-login-modal .login-btn-social {
    width: 100%; padding: 11px; background: rgba(255,255,255,.6);
    border: 1.5px solid var(--input-border); border-radius: var(--input-radius);
    font-family: var(--font-body); font-size: .86rem; color: var(--text);
    cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px;
    transition: background .2s, border .2s; text-decoration: none; margin-bottom: 8px;
}
.pricing-login-modal .login-btn-social:hover {
    background: rgba(255,255,255,.92); border-color: var(--accent);
}
.pricing-login-modal .login-footer-link {
    text-align: center; margin-top: 16px; font-size: .82rem; color: var(--muted);
}
.pricing-login-modal .login-footer-link a {
    color: var(--accent); text-decoration: none; font-weight: 500;
}

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */
@media (max-width: 1024px) {
    .pr-cards { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .pr-card--pro { transform: none; }
    .pr-card--pro:hover { transform: translateY(-4px); }
}
@media (max-width: 768px) {
    .pr-hero { padding: 110px 20px 60px; min-height: 300px; }
    .pr-hero h1 { font-size: 2.4rem; }
    .pr-section { padding: 40px 20px; }
    .pr-plans-header h2,
    .pr-compare-header h2,
    .pr-faq-header h2 { font-size: 2.1rem; }
    .pr-cta h2 { font-size: 2.2rem; }
    /* Mobile plan tabs */
    .pr-table-mobile-tabs {
        display: flex !important;
        max-width: 450px;
        margin: 0 auto 20px;
        background: var(--color-bg-subtle);
        border-radius: 10px;
        padding: 4px;
        gap: 2px;
    }
    .pr-table-tab {
        flex: 1; padding: 9px 12px;
        font-family: var(--font-body); font-size: 13px; font-weight: 600;
        color: var(--color-text-secondary);
        background: transparent; border: none;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.2s ease;
    }
    .pr-table-tab.active {
        background: #fff;
        color: var(--color-text-primary);
        box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    }

    /* Hide non-active columns on mobile */
    .pr-table-wrap[data-active-plan="1"] th:nth-child(3),
    .pr-table-wrap[data-active-plan="1"] td:nth-child(3),
    .pr-table-wrap[data-active-plan="1"] th:nth-child(4),
    .pr-table-wrap[data-active-plan="1"] td:nth-child(4) { display: none; }

    .pr-table-wrap[data-active-plan="2"] th:nth-child(2),
    .pr-table-wrap[data-active-plan="2"] td:nth-child(2),
    .pr-table-wrap[data-active-plan="2"] th:nth-child(4),
    .pr-table-wrap[data-active-plan="2"] td:nth-child(4) { display: none; }

    .pr-table-wrap[data-active-plan="3"] th:nth-child(2),
    .pr-table-wrap[data-active-plan="3"] td:nth-child(2),
    .pr-table-wrap[data-active-plan="3"] th:nth-child(3),
    .pr-table-wrap[data-active-plan="3"] td:nth-child(3) { display: none; }

    .pr-table th, .pr-table td { padding: 14px 12px; }
    .pr-cta-btns {
        flex-direction: column; align-items: stretch; max-width: 320px;
        margin-left: auto; margin-right: auto;
    }
    .pr-cta .btn-white,
    .pr-cta .btn-outline-white { justify-content: center; }
    .pricing-login-modal { padding: 32px 24px 28px; }
}
