:root {
    --probpr-platform-bg: #f6f8fc;
    --probpr-platform-card: #ffffff;
    --probpr-platform-ink: #0f172a;
    --probpr-platform-muted: #64748b;
    --probpr-platform-soft: #e2e8f0;
    --probpr-platform-blue: #2563eb;
    --probpr-platform-blue-dark: #1d4ed8;
    --probpr-platform-teal: #0f766e;
    --probpr-platform-green: #047857;
    --probpr-platform-radius: 24px;
    --probpr-platform-shadow: 0 24px 70px rgba(15, 23, 42, .10);
    --probpr-platform-shadow-soft: 0 14px 36px rgba(15, 23, 42, .07);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.probpr-platform-body {
    margin: 0;
    background: var(--probpr-platform-bg);
    color: var(--probpr-platform-ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.probpr-platform {
    min-height: 100vh;
    overflow: hidden;
    background:
        radial-gradient(circle at 4% 2%, rgba(37, 99, 235, .12), transparent 32rem),
        radial-gradient(circle at 96% 0%, rgba(15, 118, 110, .11), transparent 34rem),
        linear-gradient(180deg, #f8fbff 0%, #f6f8fc 44%, #ffffff 100%);
}

.probpr-platform a {
    color: inherit;
}

.probpr-skip-link {
    position: fixed;
    left: 16px;
    top: -80px;
    z-index: 1000;
    padding: 10px 14px;
    border-radius: 12px;
    background: #0f172a;
    color: #fff !important;
    text-decoration: none;
    transition: top .2s ease;
}

.probpr-skip-link:focus {
    top: 16px;
}

.probpr-platform-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.probpr-platform-header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(18px);
    background: rgba(248, 251, 255, .78);
    border-bottom: 1px solid rgba(226, 232, 240, .7);
}

.probpr-header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.probpr-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    min-width: max-content;
}

.probpr-brand-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background:
        radial-gradient(circle at 30% 20%, rgba(255,255,255,.8), transparent 38%),
        linear-gradient(135deg, #2563eb, #0f766e);
    color: #fff;
    font-size: 22px;
    font-weight: 900;
    box-shadow: 0 12px 24px rgba(37, 99, 235, .24);
}

.probpr-brand strong {
    display: block;
    font-size: 19px;
    line-height: 1.05;
    letter-spacing: -.04em;
}

.probpr-brand small {
    display: block;
    margin-top: 3px;
    color: var(--probpr-platform-muted);
    font-size: 11px;
    line-height: 1.15;
    font-weight: 700;
}

.probpr-platform-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px;
    border: 1px solid rgba(226, 232, 240, .9);
    border-radius: 999px;
    background: rgba(255,255,255,.74);
}

.probpr-platform-nav a {
    padding: 9px 12px;
    border-radius: 999px;
    color: #334155;
    text-decoration: none;
    font-size: 13px;
    line-height: 1;
    font-weight: 800;
    transition: background .2s ease, color .2s ease;
}

.probpr-platform-nav a:hover {
    background: #eff6ff;
    color: var(--probpr-platform-blue-dark);
}

.probpr-header-actions,
.probpr-hero-actions,
.probpr-doctors-actions,
.probpr-final-cta div {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.probpr-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 16px;
    border: 1px solid transparent;
    border-radius: 999px;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.15;
    font-weight: 900;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.probpr-btn:hover {
    transform: translateY(-1px);
}

.probpr-btn-primary {
    background: linear-gradient(135deg, var(--probpr-platform-blue), #0f766e);
    color: #fff !important;
    box-shadow: 0 16px 32px rgba(37, 99, 235, .22);
}

.probpr-btn-primary:hover {
    box-shadow: 0 20px 38px rgba(37, 99, 235, .28);
}

.probpr-btn-secondary {
    background: #fff;
    color: #0f172a !important;
    border-color: #dbe4f0;
    box-shadow: 0 12px 24px rgba(15, 23, 42, .06);
}

.probpr-btn-ghost {
    background: rgba(255,255,255,.72);
    color: #1e293b !important;
    border-color: rgba(226, 232, 240, .84);
}

.probpr-btn-lg {
    min-height: 50px;
    padding: 13px 21px;
    font-size: 15px;
}

.probpr-mobile-toggle {
    display: none;
    width: 46px;
    height: 42px;
    border: 1px solid #dbe4f0;
    border-radius: 14px;
    background: #fff;
    padding: 8px;
}

.probpr-mobile-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    border-radius: 2px;
    background: #0f172a;
}

.probpr-mobile-toggle em {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
}

.probpr-hero {
    padding: 78px 0 70px;
}

.probpr-hero-grid,
.probpr-two-col,
.probpr-application-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr);
    align-items: center;
    gap: 44px;
}

.probpr-two-col.is-reversed {
    grid-template-columns: minmax(360px, .98fr) minmax(0, 1.02fr);
}

.probpr-eyebrow,
.probpr-section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 14px;
    color: var(--probpr-platform-blue-dark);
    font-size: 12px;
    line-height: 1;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.probpr-eyebrow span {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: var(--probpr-platform-teal);
    box-shadow: 0 0 0 6px rgba(15, 118, 110, .10);
}

.probpr-hero h1,
.probpr-section h2,
.probpr-final-cta h2 {
    margin: 0;
    color: #0b1220;
    letter-spacing: -.055em;
}

.probpr-hero h1 {
    max-width: 760px;
    font-size: clamp(42px, 6vw, 76px);
    line-height: .94;
}

.probpr-hero-lead {
    max-width: 680px;
    margin: 24px 0 0;
    color: #334155;
    font-size: 19px;
    line-height: 1.65;
    font-weight: 650;
}

.probpr-hero-actions {
    margin-top: 30px;
}

.probpr-quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.probpr-quick-links a {
    padding: 8px 11px;
    border-radius: 999px;
    background: rgba(255,255,255,.75);
    border: 1px solid rgba(226,232,240,.9);
    color: #334155;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.probpr-hero-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 680px;
    margin-top: 30px;
}

.probpr-hero-proof div {
    padding: 16px;
    border-radius: 18px;
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(226,232,240,.88);
    box-shadow: 0 12px 28px rgba(15, 23, 42, .05);
}

.probpr-hero-proof strong {
    display: block;
    color: #0f172a;
    font-size: 24px;
    letter-spacing: -.04em;
}

.probpr-hero-proof span {
    display: block;
    margin-top: 4px;
    color: var(--probpr-platform-muted);
    font-size: 12px;
    line-height: 1.35;
    font-weight: 800;
}

.probpr-hero-visual {
    position: relative;
}

.probpr-hero-visual::before {
    content: "";
    position: absolute;
    inset: 42px -26px -22px 38px;
    border-radius: 36px;
    background: linear-gradient(135deg, rgba(37, 99, 235, .20), rgba(15, 118, 110, .18));
    filter: blur(10px);
}

.probpr-dashboard-mockup,
.probpr-site-mockup,
.probpr-registry-mockup,
.probpr-demo-card,
.probpr-lead-form {
    position: relative;
    border: 1px solid rgba(226, 232, 240, .92);
    border-radius: 30px;
    background: rgba(255,255,255,.86);
    box-shadow: var(--probpr-platform-shadow);
    backdrop-filter: blur(14px);
}

.probpr-dashboard-mockup {
    padding: 22px;
    transform: rotate(1deg);
}

.probpr-mockup-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e2e8f0;
}

.probpr-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    margin-right: 5px;
    background: #cbd5e1;
}

.probpr-dot.is-blue { background: #2563eb; }
.probpr-dot.is-teal { background: #0f766e; }
.probpr-dot.is-gray { background: #94a3b8; }

.probpr-mockup-top strong {
    font-size: 13px;
    color: #475569;
}

.probpr-mockup-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 18px 0;
}

.probpr-mockup-stats div,
.probpr-certificate-mini,
.probpr-site-event-card,
.probpr-registry-summary {
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    background: #f8fafc;
}

.probpr-mockup-stats div {
    padding: 14px;
}

.probpr-mockup-stats span,
.probpr-certificate-mini span {
    display: block;
    color: #64748b;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.probpr-mockup-stats strong {
    display: block;
    margin-top: 5px;
    font-size: 24px;
    letter-spacing: -.04em;
}

.probpr-mockup-table {
    display: grid;
    gap: 8px;
}

.probpr-mockup-row,
.probpr-registry-row {
    display: grid;
    grid-template-columns: 1.2fr .75fr .75fr;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 9px 11px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid #e2e8f0;
    font-size: 13px;
    font-weight: 800;
}

.probpr-mockup-row.is-head,
.probpr-registry-row.is-head {
    background: transparent;
    border-color: transparent;
    color: #64748b;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.probpr-platform mark {
    display: inline-flex;
    justify-content: center;
    padding: 6px 8px;
    border-radius: 999px;
    background: #eef2ff;
    color: #3730a3;
    font-size: 11px;
    font-weight: 950;
}

.probpr-platform mark.is-success {
    background: #ecfdf5;
    color: #047857;
}

.probpr-platform mark.is-warning {
    background: #fffbeb;
    color: #b45309;
}

.probpr-platform mark.is-info {
    background: #eff6ff;
    color: #1d4ed8;
}

.probpr-certificate-mini {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-top: 16px;
    padding: 16px;
    background: linear-gradient(135deg, #fff, #f7fbff);
}

.probpr-certificate-mini strong {
    display: block;
    margin-top: 7px;
    font-size: 18px;
}

.probpr-certificate-mini em {
    display: inline-flex;
    margin-top: 10px;
    padding: 7px 10px;
    border-radius: 999px;
    background: #2563eb;
    color: #fff;
    font-size: 12px;
    font-style: normal;
    font-weight: 900;
}

.probpr-certificate-mini i,
.probpr-certificate-bottom i {
    width: 70px;
    height: 70px;
    display: block;
    border-radius: 12px;
    background:
        linear-gradient(90deg, #0f172a 10%, transparent 10% 30%, #0f172a 30% 42%, transparent 42% 58%, #0f172a 58% 70%, transparent 70%),
        linear-gradient(#0f172a 10%, transparent 10% 30%, #0f172a 30% 42%, transparent 42% 58%, #0f172a 58% 70%, transparent 70%),
        #fff;
    border: 6px solid #fff;
    box-shadow: inset 0 0 0 1px #cbd5e1, 0 8px 18px rgba(15,23,42,.09);
}

.probpr-section {
    padding: 74px 0;
}

.probpr-section-head {
    max-width: 760px;
    margin-bottom: 34px;
}

.probpr-section-head.is-centered {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.probpr-section h2,
.probpr-final-cta h2 {
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1;
}

.probpr-section-head p,
.probpr-two-col p,
.probpr-doctors-card p,
.probpr-final-cta p,
.probpr-demo-card p,
.probpr-lead-form label,
.probpr-faq-item p {
    color: #475569;
    font-size: 16px;
    line-height: 1.68;
    font-weight: 600;
}

.probpr-pain-grid,
.probpr-feature-grid,
.probpr-steps,
.probpr-pricing-grid {
    display: grid;
    gap: 18px;
}

.probpr-pain-grid {
    grid-template-columns: repeat(4, 1fr);
}

.probpr-feature-grid {
    grid-template-columns: repeat(3, 1fr);
}

.probpr-pain-grid article,
.probpr-feature-card,
.probpr-steps article,
.probpr-pricing-grid article,
.probpr-doctors-card,
.probpr-faq-item {
    border: 1px solid rgba(226,232,240,.95);
    border-radius: var(--probpr-platform-radius);
    background: rgba(255,255,255,.82);
    box-shadow: var(--probpr-platform-shadow-soft);
}

.probpr-pain-grid article,
.probpr-feature-card,
.probpr-steps article,
.probpr-pricing-grid article {
    padding: 24px;
}

.probpr-pain-grid article span,
.probpr-feature-card span,
.probpr-steps article span,
.probpr-pricing-grid article span {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--probpr-platform-blue-dark);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.probpr-feature-card span {
    width: 42px;
    height: 42px;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(37,99,235,.12), rgba(15,118,110,.10));
}

.probpr-pain-grid h3,
.probpr-feature-card h3,
.probpr-steps h3,
.probpr-pricing-grid h3,
.probpr-site-event-card strong {
    margin: 0;
    color: #0f172a;
    font-size: 19px;
    line-height: 1.16;
    letter-spacing: -.03em;
}

.probpr-pain-grid p,
.probpr-feature-card p,
.probpr-steps p,
.probpr-pricing-grid p {
    margin: 12px 0 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.58;
    font-weight: 650;
}

.probpr-flow {
    background: #fff;
}

.probpr-flow-line {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 10px;
}

.probpr-flow-line article {
    position: relative;
    min-height: 184px;
    padding: 18px;
    border-radius: 22px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.probpr-flow-line span {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: #2563eb;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
}

.probpr-flow-line h3 {
    margin: 0;
    font-size: 16px;
}

.probpr-flow-line p {
    margin: 9px 0 0;
    color: #64748b;
    font-size: 12.5px;
    line-height: 1.45;
    font-weight: 650;
}

.probpr-showcase,
.probpr-registry-section,
.probpr-pricing-section {
    background: linear-gradient(180deg, #f8fafc, #ffffff);
}

.probpr-two-col h2,
.probpr-application-grid h2 {
    margin: 0;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.02;
    letter-spacing: -.05em;
}

.probpr-two-col p,
.probpr-application-grid p {
    margin: 18px 0 0;
}

.probpr-check-list {
    display: grid;
    gap: 10px;
    margin: 22px 0 26px;
    padding: 0;
    list-style: none;
}

.probpr-check-list li {
    position: relative;
    padding-left: 28px;
    color: #334155;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 750;
}

.probpr-check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: #dcfce7;
    box-shadow: inset 0 0 0 5px #047857;
}

.probpr-site-mockup {
    padding: 22px;
}

.probpr-site-mockup-head {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 16px;
}

.probpr-site-mockup-head strong {
    font-size: 18px;
}

.probpr-site-mockup-head span,
.probpr-site-event-card small {
    color: #64748b;
    font-size: 12px;
    font-weight: 900;
}

.probpr-site-event-card {
    display: grid;
    gap: 10px;
    padding: 18px;
    margin-top: 12px;
}

.probpr-site-event-card button {
    width: max-content;
    border: 0;
    border-radius: 999px;
    background: #2563eb;
    color: #fff;
    padding: 8px 12px;
    font-weight: 900;
}

.probpr-site-event-card.is-muted {
    opacity: .72;
}

.probpr-certificate-mockup {
    padding: 20px;
    border-radius: 34px;
    background:
        radial-gradient(circle at 10% 0%, rgba(37,99,235,.10), transparent 22rem),
        #ffffff;
    box-shadow: var(--probpr-platform-shadow);
}

.probpr-certificate-paper {
    min-height: 460px;
    padding: 26px;
    border: 3px solid #1f2a7a;
    border-radius: 22px;
    background:
        radial-gradient(circle at 92% 92%, rgba(37,99,235,.10) 0 0, rgba(37,99,235,.10) 90px, transparent 91px),
        linear-gradient(135deg, #fff 0%, #fff 68%, #f7f9ff 100%);
}

.probpr-certificate-top,
.probpr-certificate-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.probpr-certificate-top span {
    color: #1f2a7a;
    font-size: 13px;
    font-weight: 950;
    letter-spacing: .16em;
}

.probpr-certificate-top em {
    color: #1f2a7a;
    font-size: 11px;
    font-style: normal;
    font-weight: 900;
}

.probpr-certificate-paper h3 {
    margin: 44px 0 6px;
    color: #1f2a7a;
    font-size: 44px;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -.05em;
}

.probpr-certificate-paper p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    font-weight: 800;
}

.probpr-certificate-paper > strong {
    display: block;
    margin: 34px 0 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid #cbd5e1;
    font-size: 24px;
    line-height: 1.15;
}

.probpr-certificate-topic {
    padding: 14px;
    border-radius: 16px;
    background: rgba(255,255,255,.76);
    color: #0f172a;
    font-size: 16px;
    font-weight: 900;
}

.probpr-certificate-bottom {
    margin-top: 34px;
}

.probpr-certificate-bottom span {
    display: inline-flex;
    padding: 10px 16px;
    border-radius: 999px;
    background: #1f2a7a;
    color: #fff;
    font-size: 14px;
    font-weight: 950;
}

.probpr-registry-mockup {
    padding: 20px;
}

.probpr-registry-row {
    grid-template-columns: 1fr .75fr .7fr;
    margin-bottom: 9px;
}

.probpr-registry-summary {
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: #f8fafc;
}

.probpr-registry-summary strong {
    font-size: 18px;
}

.probpr-registry-summary span {
    color: #64748b;
    font-size: 13px;
    font-weight: 800;
}

.probpr-doctors-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 30px;
    background:
        radial-gradient(circle at 100% 0%, rgba(15,118,110,.12), transparent 26rem),
        #ffffff;
}

.probpr-doctors-card h2 {
    max-width: 760px;
}

.probpr-doctors-card p {
    max-width: 760px;
    margin-bottom: 0;
}

.probpr-demo-card {
    padding: 26px;
}

.probpr-demo-card span {
    color: #2563eb;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 12px;
}

.probpr-demo-card h3 {
    margin: 12px 0 18px;
    font-size: 28px;
    line-height: 1.06;
    letter-spacing: -.04em;
}

.probpr-demo-bars {
    display: grid;
    gap: 11px;
    margin: 24px 0;
}

.probpr-demo-bars i {
    display: block;
    height: 14px;
    border-radius: 999px;
    background: linear-gradient(90deg, #2563eb, #0f766e);
}

.probpr-steps {
    grid-template-columns: repeat(4, 1fr);
}

.probpr-pricing-grid {
    grid-template-columns: repeat(3, 1fr);
}

.probpr-pricing-grid article.is-featured {
    border-color: rgba(37,99,235,.35);
    box-shadow: 0 24px 60px rgba(37,99,235,.14);
    transform: translateY(-8px);
}

.probpr-application-section {
    background: #0f172a;
    color: #fff;
}

.probpr-application-section .probpr-section-kicker,
.probpr-application-section h2,
.probpr-final-cta h2 {
    color: #fff;
}

.probpr-application-section p {
    color: #cbd5e1;
}

.probpr-application-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.probpr-application-benefits span {
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    color: #e2e8f0;
    font-size: 13px;
    font-weight: 850;
}

.probpr-lead-form {
    padding: 24px;
    background: #ffffff;
    color: #0f172a;
}

.probpr-lead-form label {
    display: grid;
    gap: 7px;
    margin-bottom: 14px;
    font-size: 13px;
    font-weight: 900;
}

.probpr-lead-form input,
.probpr-lead-form textarea {
    width: 100%;
    border: 1px solid #dbe4f0;
    border-radius: 14px;
    background: #f8fafc;
    color: #0f172a;
    padding: 13px 14px;
    font: inherit;
    font-size: 15px;
    outline: none;
}

.probpr-lead-form input:focus,
.probpr-lead-form textarea:focus {
    border-color: rgba(37,99,235,.65);
    box-shadow: 0 0 0 4px rgba(37,99,235,.10);
    background: #fff;
}

.probpr-form-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.probpr-hp-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.probpr-form-message {
    margin-bottom: 14px;
    padding: 12px 14px;
    border-radius: 14px;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 850;
}

.probpr-form-message.is-success {
    background: #ecfdf5;
    color: #047857;
}

.probpr-form-message.is-error {
    background: #fef2f2;
    color: #b91c1c;
}

.probpr-faq-list {
    display: grid;
    gap: 12px;
    max-width: 860px;
    margin: 0 auto;
}

.probpr-faq-item {
    overflow: hidden;
}

.probpr-faq-item button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border: 0;
    background: transparent;
    padding: 21px 22px;
    color: #0f172a;
    text-align: left;
    font: inherit;
    font-size: 17px;
    font-weight: 950;
    cursor: pointer;
}

.probpr-faq-item i {
    flex: 0 0 auto;
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background: #eff6ff;
    position: relative;
}

.probpr-faq-item i::before,
.probpr-faq-item i::after {
    content: "";
    position: absolute;
    left: 8px;
    right: 8px;
    top: 12px;
    height: 2px;
    background: #2563eb;
}

.probpr-faq-item i::after {
    transform: rotate(90deg);
    transition: transform .2s ease;
}

.probpr-faq-item button[aria-expanded="true"] i::after {
    transform: rotate(0deg);
}

.probpr-faq-item div {
    padding: 0 22px 22px;
}

.probpr-faq-item p {
    margin: 0;
}

.probpr-final-cta {
    padding: 76px 0;
    text-align: center;
    color: #fff;
    background:
        radial-gradient(circle at 15% 0%, rgba(37,99,235,.50), transparent 32rem),
        radial-gradient(circle at 88% 20%, rgba(15,118,110,.42), transparent 32rem),
        #0f172a;
}

.probpr-final-cta .probpr-platform-container {
    max-width: 880px;
}

.probpr-final-cta p {
    margin: 18px auto 26px;
    max-width: 680px;
    color: #cbd5e1;
}

.probpr-final-cta div {
    justify-content: center;
}

.probpr-platform-footer {
    padding: 42px 0;
    background: #020617;
    color: #cbd5e1;
}

.probpr-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr .8fr .8fr;
    gap: 32px;
}

.probpr-platform-footer .probpr-brand strong {
    color: #fff;
}

.probpr-platform-footer p {
    max-width: 420px;
    color: #94a3b8;
    line-height: 1.55;
    font-weight: 650;
}

.probpr-platform-footer nav {
    display: grid;
    gap: 10px;
}

.probpr-platform-footer nav a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 14px;
    font-weight: 750;
}

.probpr-platform-footer nav a:hover {
    color: #fff;
}

@media (max-width: 1100px) {
    .probpr-platform-nav {
        display: none;
        position: absolute;
        left: 20px;
        right: 20px;
        top: 76px;
        padding: 14px;
        border-radius: 22px;
        background: #fff;
        box-shadow: var(--probpr-platform-shadow-soft);
    }

    .probpr-platform-nav.is-open {
        display: grid;
        gap: 4px;
    }

    .probpr-platform-nav a {
        padding: 13px 14px;
        border-radius: 14px;
    }

    .probpr-mobile-toggle {
        display: inline-block;
    }

    .probpr-header-actions {
        margin-left: auto;
    }

    .probpr-hero-grid,
    .probpr-two-col,
    .probpr-two-col.is-reversed,
    .probpr-application-grid {
        grid-template-columns: 1fr;
    }

    .probpr-flow-line {
        grid-template-columns: repeat(2, 1fr);
    }

    .probpr-pain-grid,
    .probpr-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .probpr-feature-grid,
    .probpr-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .probpr-hero-visual {
        max-width: 680px;
    }
}

@media (max-width: 720px) {
    .probpr-platform-container {
        width: min(100% - 24px, 1180px);
    }

    .probpr-header-inner {
        min-height: 66px;
    }

    .probpr-brand small {
        display: none;
    }

    .probpr-header-actions .probpr-btn-ghost {
        display: none;
    }

    .probpr-header-actions .probpr-btn-primary {
        min-height: 38px;
        padding: 9px 12px;
        font-size: 12px;
    }

    .probpr-hero {
        padding: 44px 0 54px;
    }

    .probpr-hero h1 {
        font-size: 40px;
        line-height: .96;
    }

    .probpr-hero-lead {
        font-size: 16px;
        line-height: 1.55;
    }

    .probpr-hero-proof,
    .probpr-mockup-stats,
    .probpr-pain-grid,
    .probpr-feature-grid,
    .probpr-flow-line,
    .probpr-steps,
    .probpr-pricing-grid,
    .probpr-footer-grid,
    .probpr-form-two {
        grid-template-columns: 1fr;
    }

    .probpr-section {
        padding: 52px 0;
    }

    .probpr-section h2,
    .probpr-two-col h2,
    .probpr-application-grid h2,
    .probpr-final-cta h2 {
        font-size: 32px;
        line-height: 1.03;
    }

    .probpr-dashboard-mockup {
        padding: 14px;
        border-radius: 22px;
        transform: none;
    }

    .probpr-mockup-row,
    .probpr-registry-row {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .probpr-doctors-card {
        display: grid;
        padding: 22px;
    }

    .probpr-doctors-actions,
    .probpr-hero-actions,
    .probpr-final-cta div {
        align-items: stretch;
    }

    .probpr-doctors-actions .probpr-btn,
    .probpr-hero-actions .probpr-btn,
    .probpr-final-cta .probpr-btn,
    .probpr-lead-form .probpr-btn {
        width: 100%;
    }

    .probpr-certificate-paper {
        min-height: 420px;
        padding: 18px;
    }

    .probpr-certificate-paper h3 {
        font-size: 34px;
    }

    .probpr-certificate-paper > strong {
        font-size: 20px;
    }

    .probpr-pricing-grid article.is-featured {
        transform: none;
    }
}


/* ProBPR v55.0 — global catalog */
.probpr-platform-nav a.is-active {
    background: #eff6ff;
    color: var(--probpr-platform-blue-dark);
}

.probpr-catalog-hero {
    padding: 64px 0 42px;
}

.probpr-catalog-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 440px);
    gap: 34px;
    align-items: center;
}

.probpr-catalog-hero h1 {
    margin: 0;
    max-width: 780px;
    font-size: clamp(42px, 6vw, 76px);
    line-height: .94;
    letter-spacing: -.07em;
}

.probpr-catalog-hero p {
    max-width: 700px;
    margin: 18px 0 0;
    color: var(--probpr-platform-muted);
    font-size: 18px;
    line-height: 1.65;
}

.probpr-catalog-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.probpr-catalog-search-card {
    position: relative;
    z-index: 2;
    padding: 22px;
    border: 1px solid rgba(226, 232, 240, .9);
    border-radius: 28px;
    background: rgba(255, 255, 255, .92);
    box-shadow: var(--probpr-platform-shadow-soft);
}

.probpr-catalog-search-card strong {
    display: block;
    margin-bottom: 14px;
    font-size: 20px;
    letter-spacing: -.03em;
}

.probpr-catalog-search-card label {
    display: block;
    margin-bottom: 12px;
}

.probpr-catalog-search-card label span {
    display: block;
    margin-bottom: 6px;
    color: #475569;
    font-size: 12px;
    font-weight: 900;
}

.probpr-catalog-search-card input,
.probpr-catalog-search-card select {
    width: 100%;
    min-height: 44px;
    border: 1px solid #dbe4f0;
    border-radius: 14px;
    background: #fff;
    color: #0f172a;
    padding: 10px 12px;
    font-size: 14px;
}

.probpr-catalog-search-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.probpr-catalog-search-card .probpr-btn {
    width: 100%;
}

.probpr-catalog-reset {
    display: inline-flex;
    justify-content: center;
    width: 100%;
    margin-top: 10px;
    color: var(--probpr-platform-blue-dark) !important;
    text-decoration: none;
    font-size: 13px;
    font-weight: 900;
}

.probpr-catalog-featured,
.probpr-catalog-pinned,
.probpr-catalog-list {
    padding: 34px 0;
}

.probpr-catalog-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 20px;
}

.probpr-catalog-section-head h2 {
    margin: 0;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.04;
    letter-spacing: -.055em;
}

.probpr-catalog-section-head p {
    max-width: 440px;
    margin: 0;
    color: var(--probpr-platform-muted);
    font-size: 14px;
    line-height: 1.55;
}

.probpr-catalog-featured-grid,
.probpr-catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.probpr-catalog-featured-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.probpr-global-event-card {
    position: relative;
    display: grid;
    grid-template-columns: 164px minmax(0, 1fr);
    min-height: 218px;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, .94);
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(15, 23, 42, .07);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.probpr-global-event-card:hover {
    transform: translateY(-2px);
    border-color: rgba(37, 99, 235, .28);
    box-shadow: 0 20px 44px rgba(15, 23, 42, .11);
}

.probpr-global-event-card-link {
    position: absolute;
    inset: 0;
    z-index: 5;
    text-decoration: none;
}

.probpr-global-event-poster {
    position: relative;
    min-height: 218px;
    background: linear-gradient(135deg, #e0f2fe, #ecfeff);
}

.probpr-global-event-poster img {
    width: 100%;
    height: 100%;
    min-height: 218px;
    object-fit: cover;
    display: block;
}

.probpr-global-event-no-poster {
    display: grid;
    place-items: center;
    height: 100%;
    min-height: 218px;
    color: rgba(15, 23, 42, .36);
    font-size: 30px;
    font-weight: 950;
    letter-spacing: -.08em;
}

.probpr-global-event-type {
    position: absolute;
    left: 10px;
    top: 10px;
    z-index: 3;
    max-width: calc(100% - 20px);
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(15, 23, 42, .82);
    color: #fff;
    font-size: 11px;
    line-height: 1.15;
    font-weight: 900;
    backdrop-filter: blur(8px);
}

.probpr-global-event-content {
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: 18px;
}

.probpr-global-provider {
    color: var(--probpr-platform-blue-dark);
    font-size: 12px;
    font-weight: 950;
}

.probpr-global-event-content h3 {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 8px 0 12px;
    font-size: 20px;
    line-height: 1.12;
    letter-spacing: -.04em;
}

.probpr-global-event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 14px;
}

.probpr-global-event-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 5px 9px;
    border-radius: 999px;
    background: #f8fafc;
    color: #475569;
    font-size: 11px;
    font-weight: 850;
}

.probpr-global-event-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
}

.probpr-global-event-footer strong {
    display: inline-flex;
    padding: 8px 11px;
    border-radius: 999px;
    background: #eff6ff;
    color: var(--probpr-platform-blue-dark);
    font-size: 13px;
    font-weight: 950;
}

.probpr-global-event-footer strong.is-free {
    background: #ecfdf5;
    color: #047857;
}

.probpr-global-event-footer em {
    color: #0f172a;
    font-size: 13px;
    font-style: normal;
    font-weight: 950;
}

.probpr-catalog-ad-card,
.probpr-catalog-empty {
    padding: 24px;
    border: 1px dashed rgba(37, 99, 235, .36);
    border-radius: 26px;
    background: linear-gradient(135deg, rgba(239, 246, 255, .86), rgba(240, 253, 250, .86));
}

.probpr-catalog-ad-card span {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 7px 10px;
    border-radius: 999px;
    background: #fff;
    color: var(--probpr-platform-blue-dark);
    font-size: 11px;
    font-weight: 950;
}

.probpr-catalog-ad-card h3,
.probpr-catalog-empty h3 {
    margin: 0 0 8px;
    font-size: 23px;
    line-height: 1.1;
    letter-spacing: -.04em;
}

.probpr-catalog-ad-card p,
.probpr-catalog-empty p {
    margin: 0 0 14px;
    color: #475569;
    line-height: 1.55;
}

.probpr-catalog-ad-card a {
    color: var(--probpr-platform-blue-dark);
    text-decoration: none;
    font-weight: 950;
}

.probpr-catalog-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 26px;
}

.probpr-catalog-pagination a {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid #dbe4f0;
    border-radius: 999px;
    background: #fff;
    text-decoration: none;
    font-weight: 900;
}

.probpr-catalog-pagination a.is-active {
    background: var(--probpr-platform-blue);
    color: #fff;
    border-color: var(--probpr-platform-blue);
}

@media (max-width: 1040px) {
    .probpr-catalog-hero-grid,
    .probpr-catalog-featured-grid,
    .probpr-catalog-grid {
        grid-template-columns: 1fr 1fr;
    }

    .probpr-catalog-search-card {
        grid-column: 1 / -1;
    }
}

@media (max-width: 720px) {
    .probpr-catalog-hero-grid,
    .probpr-catalog-featured-grid,
    .probpr-catalog-grid,
    .probpr-catalog-search-row {
        grid-template-columns: 1fr;
    }

    .probpr-catalog-hero {
        padding: 42px 0 22px;
    }

    .probpr-catalog-hero h1 {
        font-size: 40px;
    }

    .probpr-catalog-section-head {
        display: grid;
        align-items: start;
    }

    .probpr-global-event-card {
        grid-template-columns: 126px minmax(0, 1fr);
        min-height: 190px;
        border-radius: 22px;
    }

    .probpr-global-event-poster,
    .probpr-global-event-poster img,
    .probpr-global-event-no-poster {
        min-height: 190px;
    }

    .probpr-global-event-content {
        padding: 14px;
    }

    .probpr-global-event-content h3 {
        -webkit-line-clamp: 5;
        font-size: 17px;
    }

    .probpr-global-event-footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }
}

/* ProBPR v55.1 — premium catalog and showcase slider */
.probpr-catalog-premium {
    background:
        radial-gradient(circle at 14% -6%, rgba(37, 99, 235, .18), transparent 34rem),
        radial-gradient(circle at 96% 4%, rgba(14, 165, 233, .13), transparent 31rem),
        linear-gradient(180deg, #f8fbff 0%, #f6f8fc 44%, #ffffff 100%);
}

.probpr-catalog-premium-hero {
    padding: 54px 0 24px;
}

.probpr-catalog-premium-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
    gap: 28px;
    align-items: end;
}

.probpr-catalog-premium-head h1 {
    max-width: 880px;
    margin: 0;
    font-size: clamp(42px, 6.5vw, 82px);
    line-height: .92;
    letter-spacing: -.075em;
}

.probpr-catalog-premium-head p {
    max-width: 760px;
    margin: 18px 0 0;
    color: var(--probpr-platform-muted);
    font-size: 18px;
    line-height: 1.65;
}

.probpr-catalog-premium-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.probpr-catalog-premium-stats article {
    padding: 18px;
    border: 1px solid rgba(226, 232, 240, .95);
    border-radius: 24px;
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 14px 32px rgba(15, 23, 42, .06);
}

.probpr-catalog-premium-stats strong {
    display: block;
    color: var(--probpr-platform-blue-dark);
    font-size: 34px;
    line-height: 1;
    letter-spacing: -.06em;
}

.probpr-catalog-premium-stats span {
    display: block;
    margin-top: 8px;
    color: #64748b;
    font-size: 12px;
    line-height: 1.35;
    font-weight: 850;
}

.probpr-catalog-showcase {
    padding: 18px 0 34px;
}

.probpr-catalog-showcase-shell {
    position: relative;
    overflow: hidden;
    padding: 28px 26px 30px;
    border: 1px solid rgba(191, 219, 254, .64);
    border-radius: 34px;
    background:
        radial-gradient(circle at 0% 0%, rgba(59, 130, 246, .22), transparent 34rem),
        radial-gradient(circle at 100% 100%, rgba(20, 184, 166, .20), transparent 30rem),
        linear-gradient(135deg, rgba(15, 23, 42, .98), rgba(30, 41, 59, .95));
    box-shadow: 0 28px 80px rgba(15, 23, 42, .18);
}

.probpr-catalog-showcase-shell:before {
    content: "";
    position: absolute;
    inset: -1px;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255,255,255,.06) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(180deg, rgba(0,0,0,.35), transparent 70%);
}

.probpr-catalog-showcase-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 22px;
}

.probpr-catalog-showcase-top h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(28px, 4.3vw, 48px);
    line-height: 1;
    letter-spacing: -.06em;
}

.probpr-catalog-showcase-top p {
    max-width: 620px;
    margin: 10px 0 0;
    color: rgba(226, 232, 240, .80);
    font-size: 14px;
    line-height: 1.55;
}

.probpr-catalog-showcase .probpr-section-kicker {
    color: #bfdbfe;
}

.probpr-catalog-slider-controls {
    display: inline-flex;
    gap: 10px;
}

.probpr-catalog-slider-controls button {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .20);
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.probpr-catalog-slider-controls button:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, .20);
    border-color: rgba(255, 255, 255, .36);
}

.probpr-catalog-slider-viewport {
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.probpr-catalog-slider-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: clamp(168px, 15vw, 216px);
    gap: 18px;
    overflow-x: auto;
    padding: 4px 2px 10px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.probpr-catalog-slider-track::-webkit-scrollbar {
    display: none;
}

.probpr-global-event-card.is-showcase {
    display: flex;
    flex-direction: column;
    min-height: 0;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 24px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .18);
    scroll-snap-align: start;
}

.probpr-global-event-card.is-showcase:hover {
    transform: translateY(-5px);
    border-color: rgba(147, 197, 253, .70);
    box-shadow: 0 28px 62px rgba(0, 0, 0, .28);
}

.probpr-global-event-card.is-showcase .probpr-global-event-poster {
    height: 274px;
    min-height: 274px;
    overflow: hidden;
    border-radius: 24px 24px 0 0;
}

.probpr-global-event-card.is-showcase .probpr-global-event-poster:before,
.probpr-global-event-card.is-list-card.has-poster .probpr-global-event-poster:before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--probpr-card-poster);
    background-size: cover;
    background-position: center;
    filter: blur(16px);
    transform: scale(1.08);
    opacity: .34;
}

.probpr-global-event-card.is-showcase .probpr-global-event-poster:after,
.probpr-global-event-card.is-list-card.has-poster .probpr-global-event-poster:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, .04), rgba(15, 23, 42, .12));
    pointer-events: none;
}

.probpr-global-event-card.is-showcase .probpr-global-event-poster img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: contain;
    object-position: center;
    padding: 12px;
}

.probpr-global-event-card.is-showcase .probpr-global-event-type {
    left: 12px;
    top: 12px;
    z-index: 4;
    background: rgba(37, 99, 235, .92);
}

.probpr-global-event-card.is-showcase .probpr-global-event-content {
    padding: 14px 14px 16px;
}

.probpr-global-event-card.is-showcase .probpr-global-provider {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 11px;
}

.probpr-global-event-card.is-showcase .probpr-global-event-content h3 {
    -webkit-line-clamp: 3;
    min-height: 58px;
    margin: 7px 0 10px;
    font-size: 17px;
    line-height: 1.12;
}

.probpr-global-event-card.is-showcase .probpr-global-event-meta {
    gap: 6px;
    margin-bottom: 12px;
}

.probpr-global-event-card.is-showcase .probpr-global-event-meta span {
    min-height: 24px;
    padding: 5px 8px;
    font-size: 10px;
}

.probpr-global-event-card.is-showcase .probpr-global-event-footer {
    gap: 8px;
}

.probpr-global-event-card.is-showcase .probpr-global-event-footer strong {
    padding: 7px 10px;
    font-size: 12px;
}

.probpr-global-event-card.is-showcase .probpr-global-event-footer em {
    color: var(--probpr-platform-blue-dark);
    font-size: 12px;
}

.probpr-catalog-tools {
    padding: 28px 0 16px;
}

.probpr-catalog-quick-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
}

.probpr-catalog-quick-filters a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 10px 15px;
    border: 1px solid rgba(226, 232, 240, .95);
    border-radius: 999px;
    background: rgba(255, 255, 255, .86);
    color: #334155;
    text-decoration: none;
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .045);
}

.probpr-catalog-quick-filters a.is-active,
.probpr-catalog-quick-filters a:hover {
    background: var(--probpr-platform-blue);
    border-color: var(--probpr-platform-blue);
    color: #fff;
}

.probpr-catalog-filter-bar {
    display: grid;
    grid-template-columns: minmax(240px, 1.4fr) minmax(150px, .8fr) minmax(140px, .7fr) minmax(180px, 1fr) auto auto;
    gap: 10px;
    align-items: end;
    padding: 16px;
    border: 1px solid rgba(226, 232, 240, .95);
    border-radius: 26px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 18px 46px rgba(15, 23, 42, .07);
}

.probpr-catalog-filter-bar label span {
    display: block;
    margin-bottom: 6px;
    color: #475569;
    font-size: 11px;
    font-weight: 950;
}

.probpr-catalog-filter-bar input,
.probpr-catalog-filter-bar select {
    width: 100%;
    min-height: 44px;
    border: 1px solid #dbe4f0;
    border-radius: 15px;
    background: #fff;
    color: #0f172a;
    padding: 10px 12px;
    font-size: 14px;
}

.probpr-catalog-filter-bar .probpr-btn {
    min-height: 44px;
}

.probpr-catalog-filter-bar .probpr-catalog-reset {
    width: auto;
    min-height: 44px;
    align-items: center;
    margin-top: 0;
    padding: 0 10px;
}

.probpr-catalog-featured {
    display: none;
}

.probpr-catalog-pinned,
.probpr-catalog-list {
    padding: 28px 0;
}

.probpr-global-event-card.is-list-card {
    grid-template-columns: 48% minmax(0, 1fr);
}

.probpr-global-event-card.is-list-card .probpr-global-event-poster {
    overflow: hidden;
}

.probpr-global-event-card.is-list-card.has-poster .probpr-global-event-poster img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    min-height: 218px;
    object-fit: contain;
    object-position: center;
    padding: 12px;
}

@media (max-width: 1120px) {
    .probpr-catalog-premium-head,
    .probpr-catalog-filter-bar {
        grid-template-columns: 1fr;
    }

    .probpr-catalog-premium-stats {
        max-width: 520px;
    }
}

@media (max-width: 720px) {
    .probpr-catalog-premium-hero {
        padding: 38px 0 16px;
    }

    .probpr-catalog-premium-head h1 {
        font-size: 40px;
    }

    .probpr-catalog-premium-stats {
        grid-template-columns: 1fr 1fr;
    }

    .probpr-catalog-showcase-shell {
        width: calc(100% + 22px);
        margin-left: -11px;
        padding: 22px 16px 22px;
        border-radius: 28px;
    }

    .probpr-catalog-showcase-top {
        align-items: start;
        flex-direction: column;
    }

    .probpr-catalog-slider-track {
        grid-auto-columns: minmax(166px, 72vw);
        gap: 14px;
    }

    .probpr-catalog-slider-controls {
        align-self: flex-end;
    }

    .probpr-global-event-card.is-showcase .probpr-global-event-poster {
        height: 260px;
        min-height: 260px;
    }

    .probpr-global-event-card.is-list-card {
        grid-template-columns: 42% minmax(0, 1fr);
    }

    .probpr-global-event-card.is-list-card.has-poster .probpr-global-event-poster img {
        min-height: 190px;
        padding: 9px;
    }
}

@media (max-width: 480px) {
    .probpr-catalog-premium-stats {
        grid-template-columns: 1fr;
    }

    .probpr-global-event-card.is-list-card {
        grid-template-columns: 1fr;
    }

    .probpr-global-event-card.is-list-card .probpr-global-event-poster,
    .probpr-global-event-card.is-list-card .probpr-global-event-poster img,
    .probpr-global-event-card.is-list-card .probpr-global-event-no-poster {
        min-height: 260px;
    }
}

/* ProBPR v55.2 — sponsored cards and compact pagination */
.probpr-global-event-card.is-sponsored-card {
    border: 1px solid rgba(124, 58, 237, .34);
    background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(245,243,255,.94));
    box-shadow: 0 20px 48px rgba(79, 70, 229, .16);
    position: relative;
}

.probpr-global-event-card.is-sponsored-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    pointer-events: none;
    box-shadow: inset 0 0 0 1px rgba(99, 102, 241, .22);
}

.probpr-global-event-card.is-sponsored-card .probpr-global-event-type {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: #fff;
    box-shadow: 0 10px 24px rgba(79, 70, 229, .25);
}

.probpr-global-event-card.is-sponsored-card .probpr-global-event-footer em {
    color: #4f46e5;
}

.probpr-catalog-pagination {
    flex-wrap: wrap;
    gap: 8px;
}

.probpr-catalog-pagination .probpr-catalog-pagination-dots {
    min-width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-weight: 800;
}

.probpr-catalog-pagination a.is-prev-next {
    padding-inline: 14px;
    min-width: auto;
}


/* ProBPR v61.7 — stable capability icons on platform home */
.probpr-feature-card .probpr-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(37,99,235,.12), rgba(15,118,110,.10));
    color: var(--probpr-platform-blue-dark);
}

.probpr-feature-card .probpr-feature-icon svg {
    display: block;
    width: 22px;
    height: 22px;
    color: currentColor;
}

.probpr-feature-card .probpr-feature-icon svg * {
    vector-effect: non-scaling-stroke;
}
