/* Nied Reactor Product Page Styles
   ============================================================================ */

/* ---- Hero ---- */

.nr-hero {
    background-color: var(--portalThemeColor1, #2E456B);
    padding: 100px 0 80px 0;
    text-align: center;
    color: #ffffff;
}

.nr-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 20px;
    padding: 5px 16px;
    font-size: 0.75em;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
}

.nr-hero h1 {
    font-size: 3em;
    font-weight: 700;
    margin: 0 0 20px 0;
    color: #ffffff;
}

.nr-hero .nr-tagline {
    font-size: 1.15em;
    color: rgba(255, 255, 255, 0.82);
    max-width: 580px;
    margin: 0 auto 40px auto;
    line-height: 1.7;
}

.btn-nr-primary {
    background-color: var(--portalThemeColor2, #FFCA4B);
    color: var(--portalThemeColor1, #2E456B);
    font-weight: 700;
    font-size: 1em;
    padding: 13px 36px;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.2s, transform 0.1s;
}

.btn-nr-primary:hover {
    background-color: var(--portalThemeColor4, #FEA002);
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-1px);
}

/* ---- Content sections ---- */

.nr-section {
    padding: 68px 0;
}

.nr-section.alt-bg {
    background-color: #f4f5f7;
}

.nr-section h2 {
    font-size: 1.85em;
    font-weight: 700;
    color: var(--portalThemeColor1, #2E456B);
    margin-bottom: 16px;
}

.nr-section .nr-lead {
    font-size: 1.08em;
    color: #555555;
    max-width: 660px;
    line-height: 1.75;
    margin-bottom: 0;
}

/* ---- Feature cards ---- */

.nr-feature-card {
    background: #ffffff;
    border-radius: 6px;
    padding: 32px 28px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
    margin-bottom: 24px;
    border-top: 3px solid var(--portalThemeColor3, #277493);
    height: 100%;
}

.nr-feature-card h3 {
    font-size: 1.1em;
    font-weight: 700;
    color: var(--portalThemeColor1, #2E456B);
    margin-top: 0;
    margin-bottom: 12px;
}

.nr-feature-card p {
    color: #555555;
    font-size: 0.95em;
    line-height: 1.7;
    margin: 0;
}

/* ---- CTA section ---- */

.nr-cta {
    background-color: var(--portalThemeColor8, #2A2C2E);
    text-align: center;
    padding: 84px 0;
    color: #ffffff;
}

.nr-cta h2 {
    font-size: 2em;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.nr-cta p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.05em;
    max-width: 540px;
    margin: 0 auto 34px auto;
    line-height: 1.7;
}

.btn-nr-cta {
    background-color: var(--portalThemeColor2, #FFCA4B);
    color: var(--portalThemeColor8, #2A2C2E);
    font-weight: 700;
    font-size: 1em;
    padding: 14px 42px;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.2s;
}

.btn-nr-cta:hover {
    background-color: var(--portalThemeColor4, #FEA002);
    color: #ffffff;
    text-decoration: none;
}

/* ---- Responsive ---- */

@media (max-width: 768px) {
    .nr-hero {
        padding: 72px 0 60px 0;
    }

    .nr-hero h1 {
        font-size: 2.1em;
    }

    .nr-section {
        padding: 48px 0;
    }

    .nr-cta {
        padding: 60px 0;
    }

    .nr-cta h2 {
        font-size: 1.6em;
    }
}
