/**
 * Pricing route — scoped to body ui-view only (no global leaks).
 * Loaded once from index.html; marketing-routes.css provides shared marketing overrides.
 */

body.mm-marketing-route [ui-view="body"] .mm-pricing-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px 16px 48px;
    color: #1a1a1a;
    font-size: 16px;
    line-height: 1.5;
}

body.mm-marketing-route [ui-view="body"] .mm-pricing-page .mm-pricing-hero-card {
    background: #fff;
    box-shadow: 2px 2px 4px #14589d;
    border-radius: 15px;
    padding: 28px 20px 32px;
    margin-bottom: 28px;
}

body.mm-marketing-route [ui-view="body"] .mm-pricing-page .mm-pricing-title-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 12px 24px;
    margin-bottom: 20px;
}

body.mm-marketing-route [ui-view="body"] .mm-pricing-page .mm-pricing-title {
    margin: 0;
    color: #0000f5;
    font-size: clamp(28px, 5vw, 36px);
    font-weight: 700;
    line-height: 1.1;
}

body.mm-marketing-route [ui-view="body"] .mm-pricing-page .mm-pricing-subtitle {
    margin: 0;
    font-size: clamp(15px, 2vw, 20px);
    font-weight: 600;
    line-height: 1.3;
    color: #1a1a1a;
}

body.mm-marketing-route [ui-view="body"] .mm-pricing-page .mm-pricing-region-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    list-style: none;
    margin: 0 auto 24px;
    padding: 8px;
    max-width: 700px;
    border: 1px solid rgba(0, 0, 245, 0.35);
    border-radius: 10px;
}

body.mm-marketing-route [ui-view="body"] .mm-pricing-page .mm-pricing-region-tabs > li {
    list-style: none;
    margin: 0;
    padding: 0;
    float: none;
}

body.mm-marketing-route [ui-view="body"] .mm-pricing-page .mm-pricing-region-tabs > li > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    min-width: 140px;
    padding: 8px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #000 !important;
    text-decoration: none;
    cursor: pointer;
}

body.mm-marketing-route [ui-view="body"] .mm-pricing-page .mm-pricing-region-tabs > li.active > a,
body.mm-marketing-route [ui-view="body"] .mm-pricing-page .mm-pricing-region-tabs > li > a.active {
    color: #0000f5 !important;
    background: #fff;
    box-shadow: 0 0 3px 0 #0000f5;
}

body.mm-marketing-route [ui-view="body"] .mm-pricing-page .mm-pricing-panel {
    display: block;
    opacity: 1;
    visibility: visible;
}

body.mm-marketing-route [ui-view="body"] .mm-pricing-page .mm-pricing-card {
    text-align: center;
    padding: 12px 8px 20px;
}

body.mm-marketing-route [ui-view="body"] .mm-pricing-page .mm-pricing-card h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 12px 0 8px;
}

body.mm-marketing-route [ui-view="body"] .mm-pricing-page .mm-pricing-price-new {
    font-size: 32px;
    font-weight: 700;
    margin: 8px 0;
    color: #1a1a1a;
}

body.mm-marketing-route [ui-view="body"] .mm-pricing-page .mm-pricing-card h6 {
    color: #8c8c8c;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
}

body.mm-marketing-route [ui-view="body"] .mm-pricing-page .mm-pricing-card p {
    opacity: 0.85;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 6px;
}

body.mm-marketing-route [ui-view="body"] .mm-pricing-page .mm-pricing-highlights {
    margin: 20px 0 28px;
}

body.mm-marketing-route [ui-view="body"] .mm-pricing-page .mm-pricing-highlights p {
    margin: 0 0 8px;
    font-weight: 600;
}

body.mm-marketing-route [ui-view="body"] .mm-pricing-page .mm-pricing-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}

body.mm-marketing-route [ui-view="body"] .mm-pricing-page .mm-pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 15px;
    line-height: 1.45;
}

body.mm-marketing-route [ui-view="body"] .mm-pricing-page .mm-pricing-features .fa-check {
    color: #006600;
    margin-top: 3px;
    flex-shrink: 0;
}

body.mm-marketing-route [ui-view="body"] .mm-pricing-page .mm-pricing-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 28px;
}

body.mm-marketing-route [ui-view="body"] .mm-pricing-page .mm-pricing-cta-row .btn {
    min-height: 48px;
    min-width: 160px;
    font-size: 15px;
    font-weight: 700;
    padding: 12px 22px;
}

body.mm-marketing-route [ui-view="body"] .mm-pricing-page .mm-pricing-cta-trial {
    background-color: coral;
    border-color: coral;
    color: #fff;
}

body.mm-marketing-route [ui-view="body"] .mm-pricing-page .mm-pricing-cta-buy {
    background-color: #337ab7;
    border-color: #2e6da4;
    color: #fff;
}

@media (min-width: 768px) {
    body.mm-marketing-route [ui-view="body"] .mm-pricing-page {
        padding: 32px 24px 56px;
    }

    body.mm-marketing-route [ui-view="body"] .mm-pricing-page .mm-pricing-features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.mm-marketing-route [ui-view="body"] .mm-pricing-page .mm-pricing-region-tabs > li > a {
        min-width: 300px;
    }
}
