.nrequestDemo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white !important;
    font-weight: 600 !important;
    border: 1.5px solid rgb(29 57 129) !important;
    padding: 8px 18px !important;
    border-radius: var(--radius-sm) !important;
    transition: all var(--transition-fast) !important;
    background: #1b377e;
}

.page-main p {
    line-height: 1.75;
    margin-bottom: 16px;
}

.mmenu .mmenu-label {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ── HERO ── */
.bpr-hero {
    padding: 110px 5% 80px;
}

.bpr-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.bpr-hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 3.4vw, 2.8rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 16px;
    animation: fadeUp .6s .2s both;
}

.bpr-hero-text h1 span {
    color: var(--secondary);
}

.bpr-hero-text .hero-desc {
    color: rgba(255, 255, 255, .75);
    font-size: 1.02rem;
    line-height: 1.72;
    margin-bottom: 28px;
    animation: fadeUp .6s .3s both;
}

.bpr-hero-text .hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeUp .6s .4s both;
}

.bpr-hero-visual {
    animation: fadeUp .8s .3s both;
}

.hero-mockup {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, .4);
    animation: float 7s 1.2s ease-in-out infinite;
}

.hero-mockup-bar {
    background: var(--pdark);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.hero-mockup-bar .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: block;
}

.hero-mockup-bar .dot.r {
    background: #ff5f57;
}

.hero-mockup-bar .dot.y {
    background: #ffbd2e;
}

.hero-mockup-bar .dot.g {
    background: #28c940;
}

.hero-mockup-url {
    margin-left: 12px;
    font-size: .65rem;
    color: rgba(255, 255, 255, .45);
    background: rgba(255, 255, 255, .08);
    padding: 4px 12px;
    border-radius: 6px;
    flex: 1;
    max-width: 280px;
}

.hero-mockup img {
    width: 100%;
    height: auto;
    display: block;
}

/* ── DATA SOURCES + ANOMALY SPLIT ── */
.recon-flow {
    background: var(--surface-1);
    overflow: hidden;
}

.recon-split {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 28px;
    align-items: start;
    margin-top: 48px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.recon-col-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.recon-col-header h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--pdark);
}

.recon-badge {
    display: inline-block;
    background: #16a34a;
    color: #fff;
    font-size: .68rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
}

.recon-badge.amber {
    background: #d97706;
}

.src-card {
    background: linear-gradient(135deg, var(--primary), #1a4fb0);
    border-radius: 14px;
    padding: 18px 20px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: transform .3s, box-shadow .3s;
}

.src-card:hover {
    transform: translateX(6px);
    box-shadow: 0 8px 28px rgba(19, 65, 150, .3);
}

.src-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, .12);
    display: flex;
    align-items: center;
    justify-content: center;
}

.src-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--secondary);
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.src-card h4 {
    font-size: .9rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}

.src-card p {
    font-size: .76rem;
    color: rgba(255, 255, 255, .6);
    margin: 0;
}

.recon-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 120px;
}

.recon-arrow svg {
    width: 40px;
    height: 40px;
    stroke: var(--secondary);
    stroke-width: 2.5;
    fill: none;
    animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {

    0%,
    100% {
        opacity: .5;
        transform: translateX(0)
    }

    50% {
        opacity: 1;
        transform: translateX(5px)
    }
}

.anomaly-panel {
    background: linear-gradient(135deg, #1e1e3a, #2d1b4e);
    border-radius: 18px;
    padding: 24px;
    overflow: hidden;
    position: relative;
}

.anomaly-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 90% 10%, rgba(251, 201, 3, .08), transparent 60%);
    pointer-events: none;
}

.anomaly-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.anomaly-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .76rem;
    font-weight: 600;
    color: #4ade80;
}

.anomaly-status::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    animation: statusPulse 2s infinite;
}

@keyframes statusPulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .4
    }
}

.alert-card {
    border-radius: 12px;
    padding: 16px 18px;
    margin-bottom: 10px;
    border-left: 4px solid;
    position: relative;
    z-index: 1;
    transition: transform .25s;
}

.alert-card:hover {
    transform: translateX(4px);
}

.alert-card:last-child {
    margin-bottom: 0;
}

.alert-card.red {
    background: rgba(220, 38, 38, .12);
    border-color: #ef4444;
}

.alert-card.blue {
    background: rgba(59, 130, 246, .12);
    border-color: #3b82f6;
}

.alert-card.amber {
    background: rgba(245, 158, 11, .12);
    border-color: #f59e0b;
}

.alert-card h4 {
    font-size: .88rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.alert-card h4 .alert-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .6rem;
    font-weight: 800;
    flex-shrink: 0;
}

.alert-card.red .alert-dot {
    background: #ef4444;
    color: #fff;
}

.alert-card.blue .alert-dot {
    background: #3b82f6;
    color: #fff;
}

.alert-card.amber .alert-dot {
    background: #f59e0b;
    color: #fff;
}

.alert-card p {
    font-size: .78rem;
    color: rgba(255, 255, 255, .6);
    margin: 0;
    line-height: 1.55;
}

/* ── KEY VALUE BANNER ── */
.key-value-banner {
    margin: 42px auto 0;
    max-width: 900px;
    text-align: center;
    padding: 24px 36px;
    background: var(--secondary);
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(251, 201, 3, .3);
}

.key-value-banner p {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 900;
    color: var(--pdark);
    line-height: 1.4;
}

.key-value-banner p span {
    color: #c53030;
    font-style: italic;
}

/* ── PAIN POINTS ── */
.bpr-pain {
    background: var(--surface-0);
}

.bpr-pain-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-top: 48px;
}

.bpr-pain-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.bpr-pain-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--surface-1);
    border: 1px solid var(--g200);
    border-radius: 14px;
    padding: 20px;
    transition: all .3s;
}

.bpr-pain-card:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(19, 65, 150, .18);
}

.bpr-pain-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary), var(--plight));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(19, 65, 150, .22);
    transition: transform .3s;
}

.bpr-pain-card:hover .bpr-pain-icon {
    transform: scale(1.1) rotate(-4deg);
}

.bpr-pain-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--secondary);
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bpr-pain-card h4 {
    font-size: .9rem;
    font-weight: 700;
    color: var(--pdark);
    margin-bottom: 4px;
}

.bpr-pain-card p {
    font-size: .82rem;
    color: var(--g500);
    line-height: 1.6;
    margin: 0;
}

.bpr-anomaly-img {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
    transition: transform .35s;
}

.bpr-anomaly-img:hover {
    transform: translateY(-5px);
}

.bpr-anomaly-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* ── HOW IT WORKS ── */
.bpr-how {
    background: var(--surface-1);
}

.bpr-how-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.bpr-step {
    background: var(--surface-0);
    border-radius: 16px;
    padding: 28px 22px;
    border: 1px solid var(--g200);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all .35s;
}

.bpr-step::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), var(--slight));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s;
}

.bpr-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(19, 65, 150, .2);
}

.bpr-step:hover::after {
    transform: scaleX(1);
}

.bpr-step-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin: 0 auto 14px;
    background: linear-gradient(135deg, var(--primary), var(--plight));
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(19, 65, 150, .25);
    transition: all .35s;
}

.bpr-step:hover .bpr-step-num {
    background: var(--secondary);
    color: var(--pdark);
    transform: scale(1.12);
}

.bpr-step h3 {
    font-size: .95rem;
    font-weight: 700;
    color: var(--pdark);
    margin-bottom: 8px;
}

.bpr-step p {
    font-size: .82rem;
    color: var(--g500);
    line-height: 1.6;
    margin: 0;
}

/* ── RESULTS BAND ── */
.bpr-results {
    background: linear-gradient(135deg, var(--pdark), var(--primary));
    padding: 70px 5%;
    position: relative;
    overflow: hidden;
}

.bpr-results::after {
    content: '';
    position: absolute;
    left: -60px;
    top: -50%;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(251, 201, 3, .16), transparent 70%);
    pointer-events: none;
}

.bpr-results-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.bpr-result {
    text-align: center;
}

.bpr-result-num {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 900;
    color: var(--secondary);
    line-height: 1;
}

.bpr-result-label {
    color: rgba(255, 255, 255, .65);
    font-size: .82rem;
    margin-top: 8px;
    line-height: 1.45;
}

/* ── SOURCES SUPPORTED ── */
.bpr-sources {
    background: var(--surface-0);
}

.bpr-src-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.bpr-src-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--surface-1);
    border: 1px solid var(--g200);
    border-radius: 100px;
    padding: 10px 22px;
    font-size: .85rem;
    font-weight: 600;
    color: var(--pdark);
    transition: all .25s;
    cursor: default;
}

.bpr-src-chip:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: scale(1.06);
    box-shadow: 0 6px 20px rgba(19, 65, 150, .2);
}

/* ── CTA ── */
.bpr-cta {
    background: linear-gradient(135deg, var(--pdark), var(--primary));
    padding: 80px 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bpr-cta::before {
    content: '';
    position: absolute;
    left: 50%;
    top: -100px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(251, 201, 3, .1), transparent 70%);
    transform: translateX(-50%);
    pointer-events: none;
}

.bpr-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.bpr-cta h2 span {
    color: var(--secondary);
}

.bpr-cta p {
    color: rgba(255, 255, 255, .7);
    font-size: 1rem;
    margin-bottom: 32px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.bpr-cta .cta-btns {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* ── RESPONSIVE ── */
@media(max-width:1000px) {
    .bpr-how-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:900px) {
    .bpr-hero-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .bpr-hero-visual {
        order: 2;
        max-width: 480px;
        margin: 0 auto;
    }

    .recon-split {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .recon-arrow {
        padding-top: 0;
        transform: rotate(90deg);
    }

    .bpr-pain-grid {
        grid-template-columns: 1fr;
    }

    .bpr-results-row {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
}

@media(max-width:600px) {
    .bpr-hero {
        padding: 90px 18px 60px;
    }

    .hero-btns {
        flex-direction: column;
    }

    .hero-btns a {
        text-align: center;
        width: 100%;
    }

    .bpr-how-grid {
        grid-template-columns: 1fr;
    }

    .bpr-results-row {
        grid-template-columns: 1fr 1fr;
    }
}