.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 SPECIFIC ── */
.page-main p {
    line-height: 1.75;
    margin-bottom: 16px;
}

/* ── HERO OVERRIDE ── */
.nai-hero {
    padding: 110px 5% 80px;
}

.nai-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;
}

.nai-hero-text .module-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(251, 201, 3, .15);
    border: 1px solid rgba(251, 201, 3, .4);
    color: var(--secondary);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 18px;
    animation: fadeUp .5s .1s both;
}

.nai-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;
}

.nai-hero-text h1 span {
    color: var(--secondary);
}

.nai-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;
}

.nai-hero-text .hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeUp .6s .4s both;
}

.nai-hero-visual {
    animation: fadeUp .8s .3s both;
}

/* Hero browser mockup */
.hero-mockup,
.nai-how-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: 260px;
}

.hero-mockup img,
.nai-how-mockup img {
    width: 100%;
    height: auto;
    display: block;
}

/* ── PIPELINE SECTION ── */
.pipeline {
    background: var(--surface-1);
    position: relative;
    overflow: hidden;
}

.pipeline::before {
    content: '';
    position: absolute;
    left: -120px;
    bottom: -120px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(19, 65, 150, .06), transparent 70%);
    pointer-events: none;
}

.pipe-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 0;
    align-items: start;
    margin-top: 52px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.pipe-card {
    text-align: center;
}

.pipe-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--secondary);
    color: var(--pdark);
    font-size: .78rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.pipe-icon-wrap {
    width: 100%;
    aspect-ratio: 1.1;
    max-width: 220px;
    margin: 0 auto 20px;
    background: var(--primary);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: transform .35s, box-shadow .35s;
}

.pipe-icon-wrap:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(19, 65, 150, .28);
}

.pipe-icon-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: none;
    pointer-events: none;
}

.pipe-icon-wrap svg {
    width: 56px;
    height: 56px;
    stroke: #fbc903;
    stroke-width: 1.6;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    position: relative;
    z-index: 1;
}

.pipe-icon-wrap img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    mix-blend-mode: lighten;
}

.pipe-card h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--pdark);
    margin-bottom: 6px;
}

.pipe-card .pipe-sub {
    font-size: .72rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.pipe-card ul {
    list-style: none;
    text-align: left;
    max-width: 240px;
    margin: 0 auto;
}

.pipe-card ul li {
    font-size: .84rem;
    color: var(--g500);
    line-height: 1.65;
    padding: 4px 0 4px 18px;
    position: relative;
}

.pipe-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--secondary);
    opacity: .6;
}

.pipe-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
}

.pipe-arrow svg {
    width: 36px;
    height: 36px;
    stroke: var(--primary);
    stroke-width: 2;
    fill: none;
    opacity: .35;
    animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {

    0%,
    100% {
        opacity: .35;
        transform: translateX(0)
    }

    50% {
        opacity: .7;
        transform: translateX(4px)
    }
}

/* ── TRANSFORMATION VISUAL ── */
.transform-band {
    background: var(--surface-0);
    padding-top: 0;
}

.transform-img-wrap {
    margin-top: 40px;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 60px rgba(19, 65, 150, .12);
    border: 1px solid var(--g200);
    transition: transform .35s, box-shadow .35s;
}

.transform-img-wrap:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 70px rgba(19, 65, 150, .18);
}

.transform-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

/* ── PAIN POINTS ── */
.pain {
    background: var(--surface-0);
}

.pain-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-top: 48px;
}

.pain-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.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;
}

.pain-card:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(19, 65, 150, .18);
}

.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;
}

.pain-card:hover .pain-icon {
    transform: scale(1.1) rotate(-4deg);
}

.pain-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--secondary);
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.pain-card h4 {
    font-size: .9rem;
    font-weight: 700;
    color: var(--pdark);
    margin-bottom: 4px;
}

.pain-card p {
    font-size: .82rem;
    color: var(--g500);
    line-height: 1.6;
    margin: 0;
}

.pain-visual {
    background: linear-gradient(135deg, var(--primary), #1a4fb0);
    border-radius: 20px;
    padding: 36px;
    position: relative;
    overflow: hidden;
}

.pain-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(251, 201, 3, .1), transparent 60%);
    pointer-events: none;
}

.pain-stat {
    text-align: center;
    position: relative;
    z-index: 1;
    margin-bottom: 28px;
}

.pain-stat:last-child {
    margin-bottom: 0;
}

.pain-stat .big {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--secondary);
    line-height: 1;
}

.pain-stat .sm {
    color: rgba(255, 255, 255, .7);
    font-size: .85rem;
    margin-top: 6px;
    line-height: 1.5;
}

/* ── HOW IT WORKS DETAIL ── */
.nai-how {
    background: var(--surface-1);
}

.nai-how-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: start;
    margin-top: 48px;
}

.nai-how-cards-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.nai-how-img-col {
    position: sticky;
    top: 90px;
}

.nai-how-mockup {
    animation: none;
    box-shadow: 0 20px 60px rgba(19, 65, 150, .18);
}

.nai-how-caption {
    margin-top: 16px;
    font-size: .82rem;
    color: var(--g500);
    text-align: center;
    line-height: 1.55;
    font-style: italic;
}

.nai-how-card {
    background: var(--surface-0);
    border-radius: 16px;
    padding: 28px;
    border: 1px solid var(--g200);
    position: relative;
    overflow: hidden;
    transition: all .35s;
}

.nai-how-card::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;
}

.nai-how-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(19, 65, 150, .2);
}

.nai-how-card:hover::after {
    transform: scaleX(1);
}

.nai-how-card .step-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 900;
    color: rgba(19, 65, 150, .08);
    line-height: 1;
    margin-bottom: 10px;
}

.nai-how-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--pdark);
    margin-bottom: 8px;
}

.nai-how-card p {
    font-size: .84rem;
    color: var(--g500);
    line-height: 1.65;
    margin: 0;
}

/* ── RESULTS BAND ── */
.results-band {
    background: linear-gradient(135deg, var(--pdark), var(--primary));
    padding: 70px 5%;
    position: relative;
    overflow: hidden;
}

.results-band::after {
    content: '';
    position: absolute;
    right: -60px;
    top: -50%;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(251, 201, 3, .16), transparent 70%);
    pointer-events: none;
}

.results-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.result-item {
    text-align: center;
}

.result-num {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 900;
    color: var(--secondary);
    line-height: 1;
}

.result-label {
    color: rgba(255, 255, 255, .65);
    font-size: .82rem;
    margin-top: 8px;
    line-height: 1.45;
}

/* ── SUPPORTED FORMATS ── */
.formats {
    background: var(--surface-0);
}

.fmt-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.fmt-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;
}

.fmt-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);
}

.fmt-chip svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

/* ── CTA ── */
.nai-cta {
    background: linear-gradient(135deg, var(--pdark), var(--primary));
    padding: 80px 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.nai-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;
}

.nai-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;
}

.nai-cta h2 span {
    color: var(--secondary);
}

.nai-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;
}

.nai-cta .cta-btns {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* ── RESPONSIVE ── */
@media(max-width:900px) {
    .nai-hero-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .nai-hero-visual {
        order: 2;
        max-width: 480px;
        margin: 0 auto;
    }

    .pipe-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .pipe-arrow {
        padding-top: 0;
        transform: rotate(90deg);
    }

    .pain-grid {
        grid-template-columns: 1fr;
    }

    .nai-how-split {
        grid-template-columns: 1fr;
    }

    .nai-how-cards-col {
        grid-template-columns: 1fr 1fr;
    }

    .nai-how-img-col {
        position: static;
        max-width: 500px;
        margin: 0 auto;
    }

    .results-row {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
}

@media(max-width:680px) {
    .nai-how-cards-col {
        grid-template-columns: 1fr;
    }
}

@media(max-width:600px) {
    .nai-hero {
        padding: 90px 18px 60px;
    }

    .hero-btns {
        flex-direction: column;
    }

    .hero-btns a {
        text-align: center;
        width: 100%;
    }

    .results-row {
        grid-template-columns: 1fr 1fr;
    }

    .fmt-grid {
        gap: 8px;
    }
}