﻿/* Pricing page styles - uses your existing :root mp variables */

/* ===== Pricing Hero (clean & pricing-friendly) ===== */
.mp-pr-hero2 {
    padding: 56px 0 26px;
    background: radial-gradient(900px 420px at 18% 10%, rgba(10,75,217,.16), transparent 55%), radial-gradient(760px 360px at 86% 22%, rgba(11,102,255,.10), transparent 58%), linear-gradient(180deg, var(--mp-soft2), #fff 62%);
}

.mp-pr-hero2-inner {
    position: relative;
    text-align: center;
    padding: 18px 0 6px;
}

    /* subtle premium blob */
    .mp-pr-hero2-inner::before {
        content: "";
        position: absolute;
        left: 50%;
        top: -18px;
        width: min(720px, 92%);
        height: 220px;
        transform: translateX(-50%);
        background: radial-gradient(240px 120px at 30% 40%, rgba(10,75,217,.18), transparent 70%), radial-gradient(260px 140px at 70% 50%, rgba(11,102,255,.12), transparent 72%);
        filter: blur(12px);
        opacity: .9;
        pointer-events: none;
    }

.mp-pr-hero2-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid rgba(10,75,217,.16);
    background: rgba(255,255,255,.75);
    color: rgba(10,75,217,.95);
    font-weight: 1100;
    font-size: 12px;
    position: relative;
    z-index: 1;
}

.mp-pr-hero2-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(16,185,129,.95);
    box-shadow: 0 0 0 5px rgba(16,185,129,.12);
}

.mp-pr-hero2-title {
    margin: 14px 0 10px;
    font-size: clamp(30px, 4.2vw, 52px);
    line-height: 1.08;
    letter-spacing: -1px;
    color: var(--mp-ink);
    font-weight: 1200;
    position: relative;
    z-index: 1;
}

.mp-pr-hero2-sub {
    margin: 0 auto;
    max-width: 70ch;
    color: var(--mp-muted);
    font-weight: 900;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.mp-pr-hero2-chips {
    margin-top: 14px;
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.mp-pr-chip {
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(15,23,42,.10);
    background: rgba(255,255,255,.72);
    color: rgba(11,18,32,.70);
    font-weight: 1000;
    font-size: 12.5px;
}

.mp-pr-hero2-actions {
    margin-top: 16px;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

@media (max-width: 520px) {
    .mp-pr-hero2 {
        padding: 44px 0 18px;
    }
}

/* Plans head */
.mp-pr-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.mp-pr-toggle {
    display: flex;
    gap: 8px;
    padding: 6px;
    border-radius: 999px;
    border: 1px solid var(--mp-border);
    background: rgba(255,255,255,.75);
    box-shadow: 0 10px 26px rgba(2,10,25,.05);
}

.mp-pr-toggle-btn {
    appearance: none;
    border: 0;
    background: transparent;
    padding: 10px 12px;
    border-radius: 999px;
    font-weight: 1100;
    color: rgba(11,18,32,.70);
    cursor: pointer;
    transition: .16s ease;
}

    .mp-pr-toggle-btn.is-active {
        background: linear-gradient(135deg, var(--mp-brand), var(--mp-brand2));
        color: #fff;
        box-shadow: 0 14px 28px rgba(10,75,217,.18);
    }

.mp-pr-save {
    margin-left: 6px;
    padding: 3px 8px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 1100;
    color: rgba(16,185,129,.98);
    background: rgba(16,185,129,.12);
    border: 1px solid rgba(16,185,129,.18);
}

/* Pricing grid */
.mp-pr-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 14px;
}

.mp-pr-card {
    background: #fff;
    border: 1px solid var(--mp-border);
    border-radius: 20px;
    padding: 18px;
    box-shadow: 0 10px 26px rgba(2,10,25,.06);
    position: relative;
}

.mp-pr-card-top {
    margin-bottom: 10px;
}

.mp-pr-name {
    font-weight: 1200;
    color: var(--mp-ink);
}

.mp-pr-price {
    margin-top: 10px;
    display: flex;
    align-items: baseline;
    gap: 6px;
    color: var(--mp-ink);
}

.mp-pr-currency {
    font-weight: 1100;
    opacity: .9;
}

.mp-pr-amount {
    font-weight: 1300;
    font-size: 30px;
    letter-spacing: -.6px;
}

.mp-pr-period {
    font-size: 12.5px;
    color: var(--mp-muted);
    font-weight: 1000;
}

.mp-pr-desc {
    margin-top: 8px;
    color: var(--mp-muted);
    font-weight: 900;
    line-height: 1.55;
    font-size: 13px;
}

.mp-pr-list {
    list-style: none;
    padding: 0;
    margin: 14px 0 12px;
    display: grid;
    gap: 8px;
}

    .mp-pr-list li {
        position: relative;
        padding-left: 22px;
        color: var(--mp-text);
        font-weight: 900;
        font-size: 13px;
    }

        .mp-pr-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 0;
            color: rgba(10,75,217,.95);
            font-weight: 1200;
        }

.mp-pr-note {
    margin-top: 10px;
    font-size: 12px;
    color: rgba(100,116,139,.95);
    font-weight: 900;
    text-align: center;
}

/* featured */
.mp-pr-featured {
    border-color: rgba(10,75,217,.35);
    box-shadow: 0 18px 44px rgba(10,75,217,.16);
    transform: translateY(-4px);
}

.mp-pr-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(10,75,217,.12);
    border: 1px solid rgba(10,75,217,.20);
    color: rgba(10,75,217,.95);
    font-weight: 1100;
    font-size: 12px;
}

/* enterprise dark-ish card */
.mp-pr-dark {
    background: radial-gradient(260px 120px at 30% 20%, rgba(10,75,217,.12), transparent 60%), linear-gradient(180deg, rgba(244,247,255,.8), #fff 60%);
}

.mp-pr-mini-box {
    border-radius: 16px;
    border: 1px solid rgba(15,23,42,.08);
    background: rgba(2,10,25,.02);
    padding: 12px;
    margin: 12px 0;
}

.mp-pr-mini-title {
    font-weight: 1100;
    color: rgba(11,18,32,.86);
}

.mp-pr-mini-text {
    margin-top: 6px;
    color: rgba(100,116,139,.95);
    font-weight: 900;
    line-height: 1.6;
    font-size: 13px;
}

/* CTA band */
.mp-pr-band {
    padding: 18px 0 42px;
}

.mp-pr-band-inner {
    border-radius: 22px;
    border: 1px solid rgba(10,75,217,.14);
    background: linear-gradient(135deg, rgba(10,75,217,.18), rgba(11,102,255,.10));
    box-shadow: 0 20px 60px rgba(2,10,25,.10);
    padding: 18px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.mp-pr-band-title {
    font-weight: 1200;
    color: var(--mp-ink);
    font-size: 16px;
}

.mp-pr-band-sub {
    margin-top: 4px;
    color: var(--mp-muted);
    font-weight: 900;
}

/* logos */
.mp-pr-logos {
    padding: 12px 0 40px;
}

.mp-pr-logos-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.mp-pr-logo {
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid rgba(15,23,42,.10);
    background: rgba(255,255,255,.65);
    font-weight: 1100;
    color: rgba(11,18,32,.60);
    letter-spacing: .6px;
    font-size: 12px;
}

/* compare */
.mp-pr-compare {
    background: linear-gradient(180deg, var(--mp-soft2), #fff 55%);
    border-top: 1px solid var(--mp-border);
    border-bottom: 1px solid var(--mp-border);
}

.mp-cmpr-head {
    display: grid;
    grid-template-columns: 1.4fr repeat(4, minmax(0,1fr));
    gap: 10px;
    position: sticky;
    top: 0;
    z-index: 5;
    margin-top: 10px;
    background: rgba(244,247,255,.92);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(15,23,42,.08);
    border-radius: 16px;
    padding: 10px;
}

.mp-cmpr-col {
    font-weight: 1100;
    color: rgba(11,18,32,.74);
    font-size: 12.5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mp-cmpr-col--feature {
    justify-content: flex-start;
    padding-left: 6px;
}

.mp-cmpr-col--hit {
    color: rgba(10,75,217,.95);
}

.mp-cmpr {
    margin-top: 12px;
    display: grid;
    gap: 10px;
}

.mp-cmpr-group {
    border: 1px solid rgba(15,23,42,.08);
    background: rgba(255,255,255,.78);
    border-radius: 16px;
    overflow: hidden;
}

.mp-cmpr-sum {
    cursor: pointer;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-weight: 1100;
    color: rgba(11,18,32,.86);
    background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(244,247,255,.62));
}

.mp-cmpr-hint {
    font-size: 12px;
    color: rgba(100,116,139,.95);
    font-weight: 1000;
}

.mp-cmpr-row {
    display: grid;
    grid-template-columns: 1.4fr repeat(4, minmax(0,1fr));
    gap: 10px;
    padding: 10px 14px;
    border-top: 1px solid rgba(15,23,42,.06);
}

.mp-cmpr-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(11,18,32,.74);
    font-weight: 900;
    font-size: 13px;
}

.mp-cmpr-cell--feature {
    justify-content: flex-start;
    color: rgba(11,18,32,.86);
    font-weight: 1000;
}

.mp-check {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(16,185,129,.12);
    border: 1px solid rgba(16,185,129,.18);
    color: rgba(16,185,129,.98);
    font-weight: 1200;
}

.mp-x {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(2,10,25,.04);
    border: 1px solid rgba(15,23,42,.10);
    color: rgba(100,116,139,.95);
    font-weight: 1100;
}

/* bottom lead bar */
.mp-pr-lead {
    padding: 28px 0 62px;
}

.mp-pr-lead-inner {
    border-radius: 22px;
    border: 1px solid rgba(15,23,42,.10);
    background: rgba(255,255,255,.78);
    backdrop-filter: blur(10px);
    box-shadow: 0 22px 70px rgba(2,10,25,.10);
    padding: 16px;
}

.mp-pr-lead-title {
    font-weight: 1100;
    color: rgba(11,18,32,.86);
    margin-bottom: 12px;
}

.mp-pr-lead-form {
    display: grid;
    grid-template-columns: 1.2fr 1.2fr 1.2fr auto;
    gap: 10px;
    align-items: center;
}

    .mp-pr-lead-form select,
    .mp-pr-lead-form input {
        width: 100%;
        padding: 12px 12px;
        border-radius: 12px;
        border: 1px solid rgba(15,23,42,.10);
        outline: none;
        font: inherit;
        color: var(--mp-text);
        background: #fff;
    }

        .mp-pr-lead-form select:focus,
        .mp-pr-lead-form input:focus {
            border-color: rgba(10,75,217,.35);
            box-shadow: 0 0 0 4px rgba(10,75,217,.12);
        }

.mp-pr-lead-mini {
    margin-top: 10px;
    color: rgba(100,116,139,.95);
    font-weight: 900;
    font-size: 12.5px;
}

/* responsive */
@media (max-width: 980px) {
    .mp-pr-hero-inner {
        grid-template-columns: 1fr;
    }

    .mp-pr-hero-deco {
        min-height: 240px;
    }

    .mp-pr-grid {
        grid-template-columns: 1fr;
    }

    .mp-pr-featured {
        transform: none;
    }

    .mp-cmpr-head,
    .mp-cmpr-row {
        grid-template-columns: 1.2fr repeat(4, 120px);
    }

    .mp-pr-lead-form {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mp-pr-orbits,
    .mp-pr-pill-1, .mp-pr-pill-2, .mp-pr-pill-3, .mp-pr-pill-4 {
        animation: none !important;
    }
}
