/* =========================================================
   NRSP OTOMOTİV — INDUSTRIAL / BOLD THEME
   Palette: Jet Black • Steel • Brand Yellow (CAT-style)
   Type:    Archivo Black + Barlow Condensed (display)
            Inter (body) • JetBrains Mono (technical)
   ========================================================= */

:root {
    /* Core palette */
    --nrsp-black: #0a0a0a;
    --nrsp-black-2: #141414;
    --nrsp-black-3: #1f1f1f;
    --nrsp-steel: #2a2a2a;
    --nrsp-steel-2: #3a3a3a;

    /* Accents — brand yellow primary, deeper gold on hover/dark */
    --nrsp-red: #fbca00;
    /* brand yellow — primary accent */
    --nrsp-red-dark: #e8b800;
    --nrsp-yellow: #fcd34d;
    /* hazard yellow — secondary */

    /* Neutrals */
    --nrsp-silver: #8a8d92;
    --nrsp-gray: #6b7075;
    --nrsp-gray-light: #f0efeb;
    /* warm concrete paper */
    --nrsp-paper: #f5f5f1;
    --nrsp-white: #ffffff;
    --nrsp-border: #d6d3cc;

    /* Status */
    --nrsp-success: #16a34a;
    --nrsp-danger: #dc2626;

    /* Effects */
    --nrsp-shadow: 0 14px 40px -16px rgba(0, 0, 0, .35);
    --nrsp-shadow-hard: 8px 8px 0 0 var(--nrsp-black);
    --radius: 0px;
    /* sharp / industrial */
    --radius-sm: 2px;
    --transition: .22s cubic-bezier(.2, .7, .2, 1);

    /* Type stacks */
    --font-display: 'Archivo Black', 'Barlow Condensed', 'Inter', sans-serif;
    --font-condensed: 'Barlow Condensed', 'Archivo Black', 'Inter', sans-serif;
    --font-body: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

    /* Hazard stripe (used in many places) */
    --hazard-stripe: repeating-linear-gradient(135deg,
            #fbca00 0 14px,
            #0a0a0a 14px 28px);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    color: #161616;
    background: var(--nrsp-paper);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--nrsp-black);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--nrsp-red);
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4 {
    font-family: var(--font-condensed);
    font-weight: 800;
    letter-spacing: -.005em;
    color: var(--nrsp-black);
    text-transform: uppercase;
    line-height: .98;
    margin: 0 0 .4em;
}

h1 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(2.6rem, 5vw, 4.8rem);
    letter-spacing: -.01em;
    line-height: .92;
}

h2 {
    font-size: clamp(2rem, 3.4vw, 3.2rem);
    letter-spacing: -.005em;
}

h3 {
    font-size: 1.45rem;
    letter-spacing: 0;
}

h4 {
    font-size: 1.1rem;
    letter-spacing: .01em;
}

p {
    color: #3b3b3b;
    margin: 0 0 1em;
}

::selection {
    background: var(--nrsp-red);
    color: var(--nrsp-black);
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ===== EYEBROW (engineering label) ===== */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: .22em;
    font-size: .72rem;
    font-weight: 700;
    color: var(--nrsp-red);
    margin: 0 0 14px;
}

.eyebrow::before {
    content: "";
    display: inline-block;
    width: 28px;
    height: 2px;
    background: var(--nrsp-red);
}

/* ===== BUTTONS ===== */
.btn-primary,
.btn-ghost,
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: var(--radius);
    font-weight: 800;
    font-size: .85rem;
    font-family: var(--font-condensed);
    letter-spacing: .12em;
    text-transform: uppercase;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
    line-height: 1;
}

.btn-primary {
    background: var(--nrsp-red);
    color: var(--nrsp-black);
    border-color: var(--nrsp-red);
    box-shadow: 6px 6px 0 0 var(--nrsp-black);
}

.btn-primary:hover {
    background: var(--nrsp-black);
    color: var(--nrsp-red);
    border-color: var(--nrsp-black);
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0 0 var(--nrsp-red);
}

.btn-ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, .55);
}

.btn-ghost:hover {
    background: #fff;
    color: var(--nrsp-black);
    border-color: #fff;
}

.btn-outline {
    background: transparent;
    color: var(--nrsp-black);
    border-color: var(--nrsp-black);
}

.btn-outline:hover {
    background: var(--nrsp-black);
    color: var(--nrsp-red);
}

.btn-outline.dark {
    color: #fff;
    border-color: #fff;
}

.btn-outline.dark:hover {
    background: var(--nrsp-red);
    border-color: var(--nrsp-red);
    color: var(--nrsp-black);
}

/* ===== TOPBAR (utility strip) ===== */
.site-topbar {
    background: var(--nrsp-black);
    color: #fff;
    font-family: var(--font-mono);
    font-size: .78rem;
    padding: 9px 0;
    border-bottom: 1px solid var(--nrsp-red);
    position: relative;
}

.site-topbar::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background: var(--hazard-stripe);
    opacity: .9;
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.topbar-contact {
    display: flex;
    gap: 26px;
    flex-wrap: wrap;
}

.topbar-contact a {
    color: rgba(255, 255, 255, .85);
    display: inline-flex;
    gap: 8px;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.topbar-contact a:hover {
    color: var(--nrsp-red);
}

.topbar-lang {
    display: flex;
    gap: 4px;
}

.topbar-lang .lang {
    color: rgba(255, 255, 255, .5);
    padding: 3px 9px;
    border-radius: 0;
    font-weight: 700;
    font-size: .72rem;
    letter-spacing: .12em;
    border: 1px solid transparent;
}

.topbar-lang .lang.active,
.topbar-lang .lang:hover {
    color: var(--nrsp-black);
    background: var(--nrsp-red);
    border-color: var(--nrsp-red);
}

/* ===== NAV ===== */
.site-nav {
    background: #fff;
    border-bottom: 4px solid var(--nrsp-black);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 0 var(--nrsp-red);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 0;
}

.brand {
    display: flex;
    align-items: center;
    line-height: 1;
}

.brand-logo {
    height: 56px;
    width: auto;
    display: block;
}

.brand-mark {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 2rem;
    letter-spacing: -.02em;
    color: var(--nrsp-black);
    text-transform: uppercase;
}

.brand-mark::after {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    background: var(--nrsp-red);
    margin-left: 5px;
    vertical-align: middle;
}

.brand-text {
    font-family: var(--font-mono);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .3em;
    color: var(--nrsp-gray);
    text-transform: uppercase;
}

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 0;
}

.nav-menu>li {
    position: relative;
}

.nav-menu a {
    display: block;
    padding: 12px 16px;
    color: var(--nrsp-black);
    font-family: var(--font-condensed);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    border-bottom: 3px solid transparent;
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    background: transparent;
    color: var(--nrsp-red);
    border-bottom-color: var(--nrsp-red);
}

.nav-menu .has-sub>a::after {
    content: "▾";
    font-size: .7em;
    margin-left: 6px;
    opacity: .6;
}

.nav-menu .has-sub>.sub {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: var(--nrsp-black);
    border: 0;
    border-top: 3px solid var(--nrsp-red);
    border-radius: 0;
    padding: 6px 0;
    box-shadow: 8px 8px 0 0 rgba(251, 202, 0, .25);
    list-style: none;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all var(--transition);
}

.nav-menu .has-sub:hover>.sub {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu .has-sub>.sub a {
    padding: 10px 18px;
    color: rgba(255, 255, 255, .85);
    border-bottom: 0;
    font-size: .9rem;
}

.nav-menu .has-sub>.sub a:hover {
    color: #fff;
    background: var(--nrsp-red);
}

.nav-actions .btn-outline {
    padding: 10px 18px;
    font-size: .78rem;
}

.nav-burger {
    display: none;
    background: var(--nrsp-black);
    border: 0;
    width: 44px;
    height: 44px;
    padding: 0;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.nav-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--nrsp-red);
}

.nav-scrim {
    display: none;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    background: var(--nrsp-black);
}

.hero-slides {
    position: relative;
    overflow: hidden;
}

.hero-slide {
    min-height: 680px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: #fff;
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.02);
    transition: opacity 1s ease-in-out, transform 8s linear;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
    transform: scale(1.06);
}

.hero-slide.active .hero-content {
    animation: hero-content-in .9s cubic-bezier(.2, .7, .2, 1) .15s backwards;
}

@keyframes hero-content-in {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-progress {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 4px;
    background: rgba(255, 255, 255, .12);
    z-index: 5;
    overflow: hidden;
}

.hero-progress-bar {
    display: block;
    height: 100%;
    width: 0;
    background: var(--nrsp-red);
    transform-origin: left center;
}

.hero-slide.active .hero-progress-bar.active {
    animation: hero-progress 6s linear forwards;
}

@keyframes hero-progress {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

.hero-content {
    max-width: 880px;
    padding: 100px 0;
}

.hero-content .eyebrow {
    color: var(--nrsp-red);
}

.hero-content h1 {
    color: #fff;
    margin: 12px 0 22px;
    text-shadow: 0 2px 24px rgba(0, 0, 0, .4);
}

.hero-content h1 .accent {
    color: var(--nrsp-red);
}

.hero-content p {
    color: rgba(255, 255, 255, .88);
    font-size: 1.1rem;
    max-width: 640px;
}

.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.hero-nav {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 0;
    background: rgba(0, 0, 0, .6);
    border: 2px solid #fff;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, transform .2s, color .2s;
    z-index: 5;
}

.hero-nav:hover {
    background: var(--nrsp-red);
    border-color: var(--nrsp-red);
    color: var(--nrsp-black);
}

.hero-nav.prev {
    left: 24px;
}

.hero-nav.next {
    right: 24px;
}

.hero-dots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 40px;
    display: flex;
    gap: 6px;
    z-index: 5;
}

.hero-dot {
    width: 36px;
    height: 4px;
    border-radius: 0;
    background: rgba(255, 255, 255, .35);
    border: 0;
    cursor: pointer;
    transition: background .2s, transform .2s;
}

.hero-dot.active {
    background: var(--nrsp-red);
    transform: scaleY(2);
}

/* ===== SECTIONS ===== */
.section {
    padding: 100px 0;
    background: var(--nrsp-paper);
}

.section.dark {
    background: var(--nrsp-black);
    color: #fff;
}

.section.dark h2,
.section.dark h3 {
    color: #fff;
}

.section.dark p {
    color: rgba(255, 255, 255, .78);
}

.section-head {
    margin-bottom: 56px;
    max-width: 720px;
}

.section-head h2 {
    margin: 4px 0 14px;
}

.section-head p {
    margin: 0;
    color: var(--nrsp-gray);
    font-size: 1.05rem;
}

/* ===== FEATURE CARDS ===== */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 0;
    border-top: 2px solid var(--nrsp-black);
    border-left: 2px solid var(--nrsp-black);
}

.feature {
    text-align: left;
    padding: 38px 28px;
    background: #fff;
    border-right: 2px solid var(--nrsp-black);
    border-bottom: 2px solid var(--nrsp-black);
    transition: var(--transition);
    position: relative;
}

.feature:hover {
    background: var(--nrsp-black);
    color: #fff;
}

.feature:hover h3,
.feature:hover p {
    color: #fff;
}

.feature:hover .feature-icon {
    background: var(--nrsp-red);
    color: var(--nrsp-black);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 0;
    background: var(--nrsp-black);
    color: var(--nrsp-red);
    font-size: 1.8rem;
    margin-bottom: 22px;
    transition: var(--transition);
}

.feature h3 {
    margin: 0 0 10px;
    font-size: 1.25rem;
}

.feature p {
    margin: 0;
    color: var(--nrsp-gray);
    font-size: .95rem;
}

/* ===== CATEGORIES ===== */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0;
}

.category-card {
    display: block;
    background: var(--nrsp-black-2);
    color: #fff;
    overflow: hidden;
    border: 2px solid var(--nrsp-steel);
    transition: all var(--transition);
    position: relative;
}

.category-card:hover {
    border-color: var(--nrsp-red);
    color: #fff;
}

.cat-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    background-color: var(--nrsp-black-3);
    filter: grayscale(.4) contrast(1.05);
    transition: filter var(--transition);
}

.category-card:hover .cat-img {
    filter: grayscale(0) contrast(1);
}

.cat-body {
    padding: 26px 24px;
    border-top: 2px solid var(--nrsp-steel);
    background: var(--nrsp-black);
}

.cat-body h3 {
    color: #fff;
    margin: 0 0 8px;
}

.cat-body p {
    color: rgba(255, 255, 255, .65);
    margin: 0 0 16px;
    font-size: .92rem;
}

.cat-body .arrow {
    color: var(--nrsp-red);
    font-family: var(--font-mono);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .8rem;
}

/* ===== PRODUCTS ===== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 18px;
}

.product-card {
    display: block;
    background: #fff;
    border: 2px solid var(--nrsp-black);
    overflow: hidden;
    transition: all var(--transition);
    color: inherit;
    position: relative;
}

.product-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--nrsp-red);
    transition: width var(--transition);
    z-index: 2;
}

.product-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 8px 8px 0 0 var(--nrsp-red);
    color: inherit;
}

.product-card:hover::before {
    width: 100%;
}

.prod-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: var(--nrsp-paper);
    border-bottom: 2px solid var(--nrsp-black);
}

.prod-body {
    padding: 20px;
}

.prod-code {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: .72rem;
    color: var(--nrsp-red);
    background: var(--nrsp-black);
    padding: 4px 8px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.prod-code.big {
    font-size: .85rem;
    margin-bottom: 10px;
    padding: 6px 10px;
}

.prod-body h4 {
    margin: 10px 0 8px;
    font-size: 1.1rem;
}

.prod-body p {
    font-size: .88rem;
    color: var(--nrsp-gray);
    margin: 0;
}

.chip {
    display: inline-block;
    padding: 4px 12px;
    font-family: var(--font-mono);
    font-size: .7rem;
    font-weight: 700;
    background: var(--nrsp-black);
    color: var(--nrsp-red);
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: .12em;
}

/* ===== CTA BAND ===== */
.cta-band {
    background: var(--nrsp-red);
    color: var(--nrsp-black);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 8px;
    background: var(--hazard-stripe);
}

.cta-band-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
}

.cta-band h2,
.cta-band p {
    color: var(--nrsp-black);
}

.cta-band p {
    margin: 6px 0 0;
    font-weight: 600;
}

.cta-band .btn-primary {
    background: var(--nrsp-black);
    color: #fff;
    border-color: var(--nrsp-black);
    box-shadow: 6px 6px 0 0 #fff;
}

.cta-band .btn-primary:hover {
    background: #fff;
    color: var(--nrsp-black);
    border-color: #fff;
    box-shadow: 8px 8px 0 0 var(--nrsp-black);
}

/* ===== NEWS ===== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 22px;
}

.news-card {
    display: block;
    background: #fff;
    border: 2px solid var(--nrsp-black);
    overflow: hidden;
    color: inherit;
    transition: var(--transition);
}

.news-card:hover {
    transform: translate(-3px, -3px);
    box-shadow: 6px 6px 0 0 var(--nrsp-black);
    color: inherit;
}

.news-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    background-color: var(--nrsp-paper);
    border-bottom: 2px solid var(--nrsp-black);
    filter: grayscale(.2);
}

.news-body {
    padding: 22px;
}

.news-date {
    font-family: var(--font-mono);
    font-size: .78rem;
    color: var(--nrsp-red);
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.news-body h4 {
    margin: 8px 0 8px;
    font-size: 1.15rem;
}

.news-body p {
    font-size: .92rem;
    color: var(--nrsp-gray);
    margin: 0;
}

/* ===== PAGE HERO ===== */
.page-hero {
    background: var(--nrsp-black);
    color: #fff;
    padding: 110px 0 60px;
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid var(--nrsp-red);
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 6px;
    background: var(--hazard-stripe);
}

.page-hero::after {
    content: "";
    position: absolute;
    right: -120px;
    top: 50%;
    transform: translateY(-50%);
    width: 480px;
    height: 480px;
    background:
        repeating-linear-gradient(45deg,
            transparent 0 11px,
            rgba(251, 202, 0, .05) 11px 12px);
    pointer-events: none;
}

.page-hero h1 {
    color: #fff;
    margin: 8px 0 14px;
    position: relative;
}

.page-hero .eyebrow {
    color: var(--nrsp-red);
    position: relative;
}

.page-hero .lead {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .8);
    max-width: 680px;
    position: relative;
}

.crumbs {
    color: rgba(255, 255, 255, .55);
    font-family: var(--font-mono);
    font-size: .78rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    position: relative;
    margin-bottom: 14px;
}

.crumbs a {
    color: rgba(255, 255, 255, .85);
}

.crumbs a:hover {
    color: var(--nrsp-red);
}

/* ===== ABOUT ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 0;
    box-shadow: 12px 12px 0 0 var(--nrsp-red);
    border: 3px solid var(--nrsp-black);
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 30px;
    border: 2px solid var(--nrsp-black);
}

.stat {
    padding: 22px 14px;
    background: #fff;
    text-align: center;
    border-right: 2px solid var(--nrsp-black);
}

.stat:last-child {
    border-right: 0;
}

.stat span {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    color: var(--nrsp-red);
    line-height: 1;
}

.stat small {
    color: var(--nrsp-black);
    font-family: var(--font-mono);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    display: block;
    margin-top: 6px;
}

/* ===== VISION/MISSION ===== */
.vm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0;
    border: 2px solid var(--nrsp-black);
}

.vm-card {
    padding: 40px 30px;
    background: #fff;
    border-right: 2px solid var(--nrsp-black);
    text-align: left;
    transition: var(--transition);
    position: relative;
}

.vm-card:last-child {
    border-right: 0;
}

.vm-card:hover {
    background: var(--nrsp-black);
    color: #fff;
}

.vm-card:hover h3 {
    color: var(--nrsp-red);
}

.vm-card:hover p,
.vm-card:hover li {
    color: rgba(255, 255, 255, .8);
}

.vm-card i {
    font-size: 2.6rem;
    color: var(--nrsp-red);
    margin-bottom: 18px;
    display: block;
}

.vm-card ul {
    text-align: left;
    padding-left: 18px;
    color: var(--nrsp-gray);
}

/* ===== PROCESS STEPS ===== */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 0;
    margin-top: 30px;
    border-top: 2px solid var(--nrsp-black);
    border-left: 2px solid var(--nrsp-black);
}

.step {
    padding: 26px 24px;
    background: #fff;
    border-right: 2px solid var(--nrsp-black);
    border-bottom: 2px solid var(--nrsp-black);
    position: relative;
    transition: var(--transition);
}

.step:hover {
    background: var(--nrsp-red);
    color: var(--nrsp-black);
}

.step:hover h4,
.step:hover p,
.step:hover span {
    color: var(--nrsp-black);
}

.step span {
    display: block;
    font-family: var(--font-display);
    font-weight: 400;
    color: var(--nrsp-red);
    font-size: 2.6rem;
    line-height: 1;
    margin-bottom: 12px;
}

.step h4 {
    margin: 6px 0 10px;
}

.step p {
    font-size: .9rem;
    color: var(--nrsp-gray);
    margin: 0;
}

/* ===== TWO-COL ===== */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.tick-list {
    list-style: none;
    padding: 0;
}

.tick-list li {
    padding: 10px 0 10px 36px;
    position: relative;
    border-bottom: 1px dashed var(--nrsp-border);
    font-weight: 500;
}

.tick-list li::before {
    content: "▶";
    position: absolute;
    left: 0;
    top: 11px;
    color: var(--nrsp-red);
    font-size: .8em;
    font-weight: 900;
}

.cert-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.cert-item {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 18px 20px;
    background: var(--nrsp-black);
    color: #fff;
    border-radius: 0;
    font-weight: 700;
    font-family: var(--font-condensed);
    text-transform: uppercase;
    letter-spacing: .06em;
    border-left: 4px solid var(--nrsp-red);
}

.cert-item i {
    color: var(--nrsp-red);
    font-size: 1.7rem;
}

/* ===== PRODUCTS PAGE ===== */
.products-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

.products-sidebar {
    background: #fff;
    padding: 26px 22px;
    border: 2px solid var(--nrsp-black);
    height: fit-content;
    position: sticky;
    top: 110px;
}

.products-sidebar h3 {
    font-size: 1rem;
    margin: 0 0 14px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--nrsp-red);
    text-transform: uppercase;
}

.products-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
}

.products-sidebar a {
    display: block;
    padding: 9px 12px;
    border-radius: 0;
    color: var(--nrsp-black);
    font-weight: 600;
    font-size: .9rem;
    border-left: 3px solid transparent;
    transition: var(--transition);
}

.products-sidebar a:hover,
.products-sidebar a.active {
    background: var(--nrsp-black);
    color: var(--nrsp-red);
    border-left-color: var(--nrsp-red);
}

.sidebar-search input {
    width: 100%;
    padding: 11px 14px;
    border: 2px solid var(--nrsp-black);
    border-radius: 0;
    font-size: .9rem;
    font-family: inherit;
}

.sidebar-search input:focus {
    outline: none;
    border-color: var(--nrsp-red);
    box-shadow: 4px 4px 0 0 var(--nrsp-black);
}

.empty {
    padding: 60px;
    text-align: center;
    color: var(--nrsp-gray);
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: .12em;
}

.loading-more {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 30px 0;
    color: var(--nrsp-gray);
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .82rem;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(251, 202, 0, .2);
    border-top-color: var(--nrsp-red);
    border-radius: 50%;
    animation: spin .8s linear infinite;
}

.load-sentinel {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nrsp-gray);
    font-size: .9rem;
    margin-top: 8px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ===== PRODUCT DETAIL ===== */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 56px;
    align-items: flex-start;
}

.pd-image img {
    width: 100%;
    border-radius: 0;
    background: #fff;
    border: 2px solid var(--nrsp-black);
    box-shadow: 10px 10px 0 0 var(--nrsp-red);
}

.pd-info h2 {
    margin: 8px 0 10px;
}

.pd-info .lead {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
}

.specs {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 0;
    background: var(--nrsp-black);
    color: #fff;
    padding: 0;
    border-radius: 0;
    margin: 26px 0;
    border: 2px solid var(--nrsp-black);
    overflow: hidden;
    font-family: var(--font-mono);
    font-size: .88rem;
}

.specs dt {
    font-weight: 700;
    color: var(--nrsp-red);
    padding: 12px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: .76rem;
    background: var(--nrsp-black-2);
}

.specs dd {
    margin: 0;
    color: #fff;
    padding: 12px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.specs dt:last-of-type,
.specs dd:last-of-type {
    border-bottom: 0;
}

.pd-description {
    margin: 24px 0;
    line-height: 1.8;
}

/* ===== ARTICLE / NEWS DETAIL ===== */
.article img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    border-radius: 0;
    border: 3px solid var(--nrsp-black);
    margin-bottom: 24px;
}

.article .content {
    font-size: 1.08rem;
    line-height: 1.85;
    color: #2a2a2a;
}

/* ===== GALLERY ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 12px;
}

.gallery-item {
    margin: 0;
    border-radius: 0;
    overflow: hidden;
    background: var(--nrsp-black);
    border: 2px solid var(--nrsp-black);
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform var(--transition), filter var(--transition);
    filter: grayscale(.3);
}

.gallery-item:hover img {
    transform: scale(1.06);
    filter: grayscale(0);
}

.gallery-item figcaption {
    padding: 12px 16px;
    background: var(--nrsp-black);
    color: #fff;
    font-family: var(--font-condensed);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    font-size: .9rem;
    border-top: 2px solid var(--nrsp-red);
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
}

.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 0;
    border-bottom: 2px solid var(--nrsp-border);
}

.contact-list i {
    font-size: 1.4rem;
    color: var(--nrsp-red);
}

.map {
    width: 100%;
    height: 320px;
    border: 3px solid var(--nrsp-black);
    border-radius: 0;
    margin-top: 24px;
}

.apply-card {
    background: var(--nrsp-black);
    color: #fff;
    padding: 36px 30px;
    border-radius: 0;
    text-align: left;
    border-top: 5px solid var(--nrsp-red);
}

.apply-card h3 {
    color: #fff;
}

.apply-card p {
    color: rgba(255, 255, 255, .75);
}

.apply-card .btn-primary {
    margin-top: 18px;
}

/* ===== FORMS ===== */
.form-row {
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-row label {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: .76rem;
    color: var(--nrsp-black);
    text-transform: uppercase;
    letter-spacing: .12em;
}

.form-control {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid var(--nrsp-black);
    border-radius: 0;
    font-size: .95rem;
    font-family: inherit;
    background: #fff;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--nrsp-red);
    box-shadow: 4px 4px 0 0 var(--nrsp-black);
}

.alert {
    padding: 14px 18px;
    border-radius: 0;
    margin-bottom: 14px;
    font-weight: 700;
    border-left: 5px solid;
}

.alert-success {
    background: #ecfdf5;
    color: #14532d;
    border-color: var(--nrsp-success);
}

.alert-error {
    background: #fef2f2;
    color: #7f1d1d;
    border-color: var(--nrsp-danger);
}

.validation-message {
    color: var(--nrsp-danger);
    font-size: .85rem;
    font-family: var(--font-mono);
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--nrsp-black);
    color: #d6d3cc;
    padding-top: 70px;
    position: relative;
    border-top: 6px solid var(--nrsp-red);
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 6px;
    background: var(--hazard-stripe);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 44px;
    padding-bottom: 50px;
}

.footer-grid h4 {
    color: #fff;
    font-family: var(--font-condensed);
    font-size: 1rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin: 0 0 18px;
    padding-bottom: 12px;
    position: relative;
    display: inline-block;
}

.footer-grid h4::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 3px;
    background: var(--nrsp-red);
    width: 40px;
}

.footer-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-grid ul li {
    padding: 5px 0;
}

.footer-grid a {
    color: rgba(255, 255, 255, .7);
    transition: var(--transition);
    position: relative;
    padding-left: 0;
}

.footer-grid a:hover {
    color: var(--nrsp-red);
    padding-left: 6px;
}

.footer-grid p {
    color: rgba(255, 255, 255, .7);
    font-size: .92rem;
    line-height: 1.7;
}

.footer-bar {
    background: #050505;
    padding: 22px 0;
    font-family: var(--font-mono);
    font-size: .78rem;
    color: rgba(255, 255, 255, .5);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .14em;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

/* =========================================================
   ADMIN PANEL  (kept industrial but readable)
   ========================================================= */
.admin-shell {
    display: grid;
    grid-template-columns: 280px 1fr;
    min-height: 100vh;
}

.admin-sidebar {
    background: var(--nrsp-black);
    color: #fff;
    padding: 20px 0;
    position: sticky;
    top: 0;
    max-height: 100vh;
    overflow-y: auto;
    border-right: 4px solid var(--nrsp-red);
}

.admin-brand {
    padding: 10px 24px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.admin-brand .brand-mark {
    color: #fff;
    font-size: 1.8rem;
}

.admin-brand .brand-sub {
    display: block;
    font-family: var(--font-mono);
    font-size: .68rem;
    color: var(--nrsp-red);
    letter-spacing: .22em;
    text-transform: uppercase;
    margin-top: 4px;
}

.admin-nav {
    padding: 12px 0;
}

.admin-nav .nav-group {
    padding: 18px 24px 6px;
    font-family: var(--font-mono);
    font-size: .68rem;
    color: rgba(255, 255, 255, .35);
    text-transform: uppercase;
    letter-spacing: .22em;
    font-weight: 700;
}

.admin-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    color: rgba(255, 255, 255, .75);
    font-weight: 600;
    font-size: .92rem;
    border-left: 3px solid transparent;
    transition: var(--transition);
}

.admin-nav a:hover {
    color: #fff;
    background: rgba(255, 255, 255, .04);
}

.admin-nav a.active {
    color: #fff;
    background: rgba(251, 202, 0, .15);
    border-left-color: var(--nrsp-red);
}

.admin-nav a i {
    color: var(--nrsp-red);
    width: 18px;
}

.admin-main {
    background: var(--nrsp-paper);
}

.admin-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 30px;
    background: #fff;
    border-bottom: 3px solid var(--nrsp-black);
    position: sticky;
    top: 0;
    z-index: 10;
}

.admin-topbar .topbar-lang {
    display: flex;
    align-items: center;
    gap: .35rem;
    margin-right: 12px;
}

.admin-topbar .topbar-lang a.lang {
    padding: .25rem .55rem;
    font-family: var(--font-mono);
    font-size: .7rem;
    color: #6b7075;
    background: transparent;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.admin-topbar .topbar-lang a.lang.active {
    background: var(--nrsp-red);
    color: var(--nrsp-black);
}

.admin-topbar .btn-link {
    color: var(--nrsp-black);
    font-weight: 700;
    display: inline-flex;
    gap: 6px;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .8rem;
}

.admin-user {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    font-weight: 700;
    margin-right: 12px;
    font-family: var(--font-condensed);
    text-transform: uppercase;
    letter-spacing: .08em;
}

.btn-outline-sm {
    padding: 7px 16px;
    background: transparent;
    border: 2px solid var(--nrsp-black);
    border-radius: 0;
    font-weight: 700;
    font-size: .8rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.btn-outline-sm:hover {
    background: var(--nrsp-red);
    color: var(--nrsp-black);
    border-color: var(--nrsp-red);
}

.admin-content {
    padding: 32px;
}

.admin-page .page-title {
    margin-bottom: 28px;
}

.admin-page .page-title h1 {
    font-size: 2rem;
    margin: 0;
}

.admin-page .page-title p {
    margin: 6px 0 0;
    color: var(--nrsp-gray);
    font-family: var(--font-mono);
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.admin-page .page-title.row-between {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    flex-wrap: wrap;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0;
    margin-bottom: 30px;
    border-top: 2px solid var(--nrsp-black);
    border-left: 2px solid var(--nrsp-black);
}

.stat-card {
    background: #fff;
    padding: 22px;
    border-radius: 0;
    border-right: 2px solid var(--nrsp-black);
    border-bottom: 2px solid var(--nrsp-black);
    display: flex;
    gap: 18px;
    align-items: center;
    border-top: 4px solid var(--nrsp-gray);
}

.stat-card.accent-red {
    border-top-color: var(--nrsp-red);
}

.stat-card i {
    font-size: 2.4rem;
    color: var(--nrsp-red);
}

.stat-card span {
    display: block;
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 2rem;
    color: var(--nrsp-black);
    line-height: 1;
}

.stat-card small {
    color: var(--nrsp-gray);
    font-family: var(--font-mono);
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-weight: 700;
}

.admin-grid-2 {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 22px;
}

.card {
    background: #fff;
    border: 2px solid var(--nrsp-black);
    border-radius: 0;
    overflow: hidden;
}

.card-head {
    padding: 16px 22px;
    border-bottom: 2px solid var(--nrsp-black);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--nrsp-paper);
}

.card-head h3 {
    margin: 0;
    font-size: 1.05rem;
}

.btn-link-sm {
    font-family: var(--font-mono);
    font-size: .78rem;
    color: var(--nrsp-red);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th {
    text-align: left;
    padding: 14px 18px;
    background: var(--nrsp-black);
    color: var(--nrsp-red);
    font-family: var(--font-mono);
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-weight: 700;
    border-bottom: 0;
}

.table td {
    padding: 14px 18px;
    border-bottom: 1px solid var(--nrsp-border);
    font-size: .92rem;
    vertical-align: middle;
}

.table tr:last-child td {
    border-bottom: 0;
}

.table tr.unread td {
    background: rgba(251, 202, 0, .06);
    font-weight: 600;
}

.table tr:hover td {
    background: var(--nrsp-paper);
}

.table .actions {
    white-space: nowrap;
    text-align: right;
}

.btn-icon {
    background: transparent;
    border: 2px solid var(--nrsp-black);
    width: 34px;
    height: 34px;
    border-radius: 0;
    cursor: pointer;
    margin-left: 4px;
    color: var(--nrsp-black);
    transition: var(--transition);
}

.btn-icon:hover {
    background: var(--nrsp-red);
    color: var(--nrsp-black);
    border-color: var(--nrsp-red);
}

.btn-icon.danger:hover {
    background: var(--nrsp-danger);
    color: #fff;
    border-color: var(--nrsp-danger);
}

.recent-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-list li {
    padding: 14px 22px;
    border-bottom: 1px solid var(--nrsp-border);
}

.recent-list li:last-child {
    border-bottom: 0;
}

.recent-list small {
    color: var(--nrsp-gray);
    font-family: var(--font-mono);
    display: block;
    font-size: .74rem;
    margin-top: 2px;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.filters {
    display: flex;
    gap: 10px;
    padding: 14px 18px;
    margin-bottom: 18px;
    background: #fff;
    border-radius: 0;
    border: 2px solid var(--nrsp-black);
    flex-wrap: wrap;
}

.filters input,
.filters select {
    padding: 9px 12px;
    border: 2px solid var(--nrsp-black);
    border-radius: 0;
    font-size: .9rem;
}

.filters input {
    flex: 1;
    min-width: 220px;
}

/* ===== MODAL ===== */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, .6);
    z-index: 900;
    backdrop-filter: blur(4px);
}

.modal-panel {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border: 3px solid var(--nrsp-black);
    border-radius: 0;
    padding: 32px;
    width: 90%;
    max-width: 540px;
    z-index: 910;
    box-shadow: 12px 12px 0 0 var(--nrsp-red);
    max-height: 92vh;
    overflow-y: auto;
}

.modal-panel.wide {
    max-width: 840px;
}

.modal-panel h3 {
    margin: 0 0 22px;
    padding-bottom: 14px;
    border-bottom: 3px solid var(--nrsp-red);
}

.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 18px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 18px;
}

.form-grid label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: .82rem;
    color: var(--nrsp-black);
    font-weight: 600;
}

.form-grid label.full {
    grid-column: 1 / -1;
}

.form-grid label>span {
    font-family: var(--font-mono, inherit);
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #6b7075;
}

.form-grid input[type="text"],
.form-grid input[type="number"],
.form-grid input[type="email"],
.form-grid input[type="url"],
.form-grid input[type="search"],
.form-grid select,
.form-grid textarea {
    width: 100%;
    padding: 10px 12px;
    font: inherit;
    color: var(--nrsp-black);
    background: #fff;
    border: 2px solid #d6d8dc;
    border-radius: 4px;
    transition: border-color .15s, box-shadow .15s;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
    outline: 0;
    border-color: var(--nrsp-red);
    box-shadow: 0 0 0 3px rgba(255, 196, 0, .25);
}

.form-grid textarea {
    resize: vertical;
    min-height: 70px;
    font-family: inherit;
}

.form-grid .col-2 {
    grid-column: span 2;
}

/* ====== Translation tabs (admin CRUD i18n editor) ====== */
.trans-tabs {
    background: #f7f8fa;
    border: 2px solid var(--nrsp-black);
    border-radius: 6px;
    padding: 0;
    margin: 18px 0 8px;
    overflow: hidden;
}

.trans-tab-headers {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    background: var(--nrsp-black);
    border-bottom: 3px solid var(--nrsp-red);
    padding: 0;
}

.trans-tab-headers .trans-tab {
    flex: 1 0 auto;
    min-width: 110px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 18px;
    background: transparent;
    color: rgba(255, 255, 255, .65);
    border: 0;
    border-right: 1px solid rgba(255, 255, 255, .08);
    cursor: pointer;
    font-family: var(--font-mono, inherit);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    transition: background .15s, color .15s, transform .1s;
    position: relative;
}

.trans-tab-headers .trans-tab:last-child {
    border-right: 0;
}

.trans-tab-headers .trans-tab:hover {
    background: rgba(255, 255, 255, .06);
    color: #fff;
}

.trans-tab-headers .trans-tab.active {
    background: var(--nrsp-red);
    color: var(--nrsp-black);
    box-shadow: inset 0 -3px 0 rgba(0, 0, 0, .25);
}

.trans-tab-headers .trans-tab .dot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    font-size: .65rem;
    line-height: 1;
    font-weight: 800;
}

.trans-tab-headers .trans-tab .dot.ok {
    background: #1f9d55;
    color: #fff;
}

.trans-tab-headers .trans-tab .dot.warn {
    background: #ffa400;
    color: #fff;
    animation: trans-tab-pulse 1.6s ease-in-out infinite;
}

.trans-tab-headers .trans-tab.missing:not(.active) {
    color: #ffd34d;
}

@keyframes trans-tab-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.18);
        opacity: .75;
    }
}

.trans-tab-body {
    padding: 18px 20px 20px;
    background: #fff;
}

.trans-tab-body .form-grid label.full {
    grid-column: 1 / -1;
}

@media (max-width: 720px) {
    .trans-tab-headers .trans-tab {
        flex: 1 0 50%;
        min-width: 0;
        font-size: .72rem;
        padding: 10px 8px;
        letter-spacing: .08em;
    }
}

/* ====== Image uploader (admin) ====== */
.image-uploader {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.image-uploader .iu-row {
    display: flex;
    gap: 8px;
    align-items: stretch;
}

.image-uploader .iu-url {
    flex: 1;
    padding: 10px 12px;
    font: inherit;
    border: 2px solid #d6d8dc;
    border-radius: 4px;
    background: #fff;
    color: var(--nrsp-black);
}

.image-uploader.has-error .iu-url {
    border-color: #d23a3a;
}

.image-uploader .iu-url:focus {
    outline: 0;
    border-color: var(--nrsp-red);
    box-shadow: 0 0 0 3px rgba(255, 196, 0, .25);
}

.image-uploader .iu-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0 14px;
    cursor: pointer;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .75rem;
    white-space: nowrap;
    border: 2px solid var(--nrsp-black);
    background: var(--nrsp-red);
    color: var(--nrsp-black);
    transition: filter .15s, transform .1s;
    position: relative;
    overflow: hidden;
}

.image-uploader .iu-btn:hover:not(.is-busy) {
    filter: brightness(.95);
}

.image-uploader .iu-btn:active:not(.is-busy) {
    transform: translateY(1px);
}

.image-uploader .iu-btn.is-busy {
    opacity: .7;
    cursor: progress;
}

.image-uploader .iu-btn.is-busy .bi-arrow-repeat {
    animation: iu-spin .9s linear infinite;
}

.image-uploader .iu-btn input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.image-uploader button.iu-btn {
    background: #fff;
    color: var(--nrsp-black);
    padding: 0 12px;
}

.image-uploader .iu-error {
    margin: 0;
    font-size: .8rem;
    color: #d23a3a;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.image-uploader .iu-preview {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background: #f7f8fa;
    border: 1px dashed #c8ccd2;
    border-radius: 4px;
}

.image-uploader .iu-preview img {
    width: 88px;
    height: 88px;
    object-fit: cover;
    border-radius: 4px;
    background: #fff;
    border: 1px solid #e1e3e7;
}

.image-uploader .iu-preview code {
    font-size: .72rem;
    color: #6b7075;
    word-break: break-all;
    background: transparent;
    padding: 0;
}

@keyframes iu-spin {
    to {
        transform: rotate(360deg);
    }
}

/* ====== Admin list: lang chips + thumbnails ====== */
.lang-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    padding: 3px 8px;
    margin-right: 4px;
    border-radius: 999px;
    font-family: var(--font-mono, inherit);
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    line-height: 1;
    border: 1.5px solid transparent;
    transition: transform .1s;
}

.lang-chip+.lang-chip {
    margin-left: 0;
}

.lang-chip.ok {
    background: #e6f6ec;
    color: #1f7a3f;
    border-color: #1f9d55;
}

.lang-chip.miss {
    background: #fdecec;
    color: #b81d1d;
    border-color: #d23a3a;
    position: relative;
}

.lang-chip.miss::before {
    content: "!";
    display: inline-block;
    margin-right: 4px;
    font-weight: 900;
    color: #d23a3a;
}

.lang-chip:hover {
    transform: translateY(-1px);
}

/* Generic admin thumbnail used in list tables. */
.admin-thumb {
    width: 56px;
    height: 56px;
    border-radius: 6px;
    background: #f1f3f6 center/cover no-repeat;
    border: 1px solid #d6d8dc;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .04);
    display: inline-block;
    vertical-align: middle;
}

.admin-thumb.empty {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #b3b7be;
    font-size: 1.3rem;
    background: repeating-linear-gradient(45deg, #f4f5f7, #f4f5f7 6px, #eceef2 6px, #eceef2 12px);
}

/* Larger preview shown on the slide edit modal etc. */
.slide-preview {
    width: 100%;
    height: 160px;
    margin-top: 8px;
    border: 1px solid #d6d8dc;
    border-radius: 6px;
    background: #f1f3f6 center/cover no-repeat;
}

.form-row.row2 {
    flex-direction: row;
    gap: 18px;
}

.form-row.row2>div {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-row.check {
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.gallery-admin {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}

.g-card {
    background: #fff;
    border: 2px solid var(--nrsp-black);
    border-radius: 0;
    overflow: hidden;
}

.g-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    background: #eee;
    border-bottom: 2px solid var(--nrsp-black);
}

.g-body {
    padding: 10px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.message-body {
    white-space: pre-wrap;
    padding: 18px;
    background: var(--nrsp-paper);
    border-radius: 0;
    border-left: 4px solid var(--nrsp-red);
    margin: 14px 0;
    font-family: var(--font-mono);
    font-size: .92rem;
    line-height: 1.7;
}

.muted {
    color: var(--nrsp-gray);
    font-family: var(--font-mono);
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.saved-note {
    margin-left: 14px;
    color: var(--nrsp-success);
    font-weight: 700;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: .82rem;
}

.dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--nrsp-red);
    border-radius: 50%;
}

/* ===== Blazor Error UI ===== */
#blazor-error-ui {
    background: var(--nrsp-red);
    color: var(--nrsp-black);
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px 22px;
    display: none;
    position: fixed;
    z-index: 1000;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: .85rem;
    border-top: 3px solid var(--nrsp-black);
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 18px;
    top: 12px;
}

#blazor-error-ui .reload {
    color: var(--nrsp-black);
    text-decoration: underline;
    margin-left: 10px;
    font-weight: 700;
}

/* =========================================================
   TRUST BAR
   ========================================================= */
.trust-bar {
    background: var(--nrsp-black);
    color: #fff;
    padding: 22px 0;
    border-bottom: 3px solid var(--nrsp-red);
    border-top: 1px solid rgba(255, 255, 255, .08);
    position: relative;
}

.trust-bar-inner {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 24px;
}

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-condensed);
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.trust-item i {
    color: var(--nrsp-red);
    font-size: 1.4rem;
}

/* =========================================================
   STATS BAND
   ========================================================= */
.stats-band {
    background: var(--nrsp-black);
    padding: 90px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
    border-top: 3px solid var(--nrsp-red);
    border-bottom: 3px solid var(--nrsp-red);
}

.stats-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(45deg,
            transparent 0 18px,
            rgba(251, 202, 0, .035) 18px 19px);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0;
    position: relative;
}

.stat-item {
    text-align: center;
    padding: 18px 12px;
    border-right: 1px dashed rgba(255, 255, 255, .15);
}

.stat-item:last-child {
    border-right: 0;
}

.stat-item h3 {
    color: var(--nrsp-red);
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 4.2rem;
    margin: 0;
    line-height: 1;
    letter-spacing: -.02em;
}

.stat-item h3 span {
    color: #fff;
    opacity: .7;
    font-size: 2.6rem;
    margin-left: 4px;
}

.stat-item p {
    color: #fff;
    margin: 14px 0 0;
    font-family: var(--font-mono);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: .76rem;
}

/* =========================================================
   WHY US
   ========================================================= */
.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-us-media {
    position: relative;
}

.why-us-media img {
    width: 100%;
    border-radius: 0;
    border: 4px solid var(--nrsp-black);
    box-shadow: 16px 16px 0 0 var(--nrsp-red);
    display: block;
    filter: grayscale(.2) contrast(1.04);
}

.why-us-badge {
    position: absolute;
    bottom: -34px;
    right: -24px;
    background: var(--nrsp-red);
    color: var(--nrsp-black);
    padding: 22px 26px;
    border-radius: 0;
    display: flex;
    align-items: center;
    gap: 14px;
    border: 3px solid var(--nrsp-black);
    max-width: 280px;
}

.why-us-badge .badge-num {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.7rem;
    line-height: 1;
}

.why-us-badge p {
    margin: 0;
    color: var(--nrsp-black);
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: .76rem;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.why-us-content h2 {
    margin: 10px 0 18px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }

    .nav-burger {
        display: flex;
    }

    body.nav-open .nav-menu {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 80vw;
        max-width: 360px;
        background: var(--nrsp-black);
        padding: 80px 20px 20px;
        z-index: 200;
        gap: 4px;
        overflow-y: auto;
        border-left: 4px solid var(--nrsp-red);
    }

    body.nav-open .nav-menu a {
        color: #fff;
        padding: 12px 14px;
        border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

    body.nav-open .nav-menu .has-sub>.sub {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(255, 255, 255, .03);
        margin: 0 0 8px 14px;
        box-shadow: none;
        border-top: 0;
        border-left: 2px solid var(--nrsp-red);
    }

    body.nav-open .nav-scrim {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, .65);
        z-index: 150;
    }
}

@media (max-width: 992px) {
    .admin-shell {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        position: static;
        max-height: none;
    }

    .about-grid,
    .two-col,
    .contact-grid,
    .product-detail,
    .products-layout,
    .admin-grid-2,
    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .why-us-grid {
        gap: 50px;
    }

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

    .stats .stat:nth-child(2) {
        border-right: 0;
    }

    .stats .stat:nth-child(1),
    .stats .stat:nth-child(2) {
        border-bottom: 2px solid var(--nrsp-black);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 20px;
    }

    .hero-slide {
        min-height: 540px;
    }

    .hero-content {
        padding: 70px 0;
    }

    .hero-nav {
        width: 42px;
        height: 42px;
    }

    .hero-nav.prev {
        left: 10px;
    }

    .hero-nav.next {
        right: 10px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-grid .col-2 {
        grid-column: span 1;
    }

    .stat-item h3 {
        font-size: 3rem;
    }

    .stat-item h3 span {
        font-size: 1.8rem;
    }

    .why-us-badge {
        bottom: -16px;
        right: 10px;
    }
}


/* ========================================================= 
   PAGER (admin lists)
   ========================================================= */
.pager-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding: 14px 16px;
    border-top: 1px solid #e5e7eb;
    background: #fafbfc;
}

.pager-info {
    font-size: .85rem;
    color: #5a6271;
    font-family: var(--font-mono, inherit);
}

.pager-info strong {
    color: var(--nrsp-black);
}

.pager {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.pager-btn {
    min-width: 34px;
    height: 34px;
    padding: 0 10px;
    border: 1px solid #d6d8dc;
    background: #fff;
    color: #2a2a2a;
    border-radius: 6px;
    font-weight: 600;
    font-size: .85rem;
    cursor: pointer;
    transition: all .12s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pager-btn:hover:not(:disabled):not(.active) {
    border-color: var(--nrsp-black);
    background: #f4f5f7;
}

.pager-btn.active {
    background: var(--nrsp-black);
    color: var(--nrsp-red, #ffd400);
    border-color: var(--nrsp-black);
    cursor: default;
}

.pager-btn:disabled {
    opacity: .4;
    cursor: not-allowed;
}

/* ========================================================= 
   AUTH PAGE (Login etc.)
   ========================================================= */
.auth-page {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 64px 16px;
    background:
        radial-gradient(circle at 20% 10%, rgba(255, 212, 0, 0.07), transparent 40%),
        radial-gradient(circle at 80% 90%, rgba(255, 212, 0, 0.05), transparent 40%),
        var(--nrsp-black, #0a0a0a);
    color: #fff;
}

.auth-page .container {
    width: 100%;
    max-width: 460px;
}

.auth-card {
    background: #ffffff;
    color: var(--nrsp-black, #0a0a0a);
    border-radius: 12px;
    padding: 40px 36px 32px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .45), 0 2px 8px rgba(0, 0, 0, .3);
    border-top: 4px solid var(--nrsp-red, #ffd400);
    position: relative;
    overflow: hidden;
}

.auth-card-header {
    text-align: center;
    margin-bottom: 28px;
}

.auth-logo {
    height: 48px;
    width: auto;
    margin-bottom: 14px;
    filter: brightness(0);
}

.auth-card-header h1 {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 0 6px;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.auth-sub {
    font-size: .9rem;
    color: #5a6271;
    margin: 0;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.auth-validation {
    background: #fdecec;
    border: 1px solid #d23a3a;
    color: #b81d1d;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: .85rem;
    margin: 0;
    list-style: none;
}

.auth-validation:empty {
    display: none;
}

.auth-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.auth-field label {
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #2a2a2a;
}

.auth-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.auth-input-wrap>i {
    position: absolute;
    left: 14px;
    color: #98a2b3;
    font-size: 1rem;
    pointer-events: none;
}

.auth-input {
    width: 100%;
    padding: 12px 14px 12px 42px;
    border: 1.5px solid #d6d8dc;
    border-radius: 6px;
    font-size: .95rem;
    background: #fafbfc;
    transition: border-color .15s, box-shadow .15s, background .15s;
    color: var(--nrsp-black, #0a0a0a);
}

.auth-input:focus {
    outline: none;
    border-color: var(--nrsp-black, #0a0a0a);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255, 212, 0, 0.25);
}

.auth-error {
    color: #b81d1d;
    font-size: .8rem;
}

.auth-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    font-size: .85rem;
    margin-top: -4px;
}

.auth-check {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
}

.auth-check input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--nrsp-black, #0a0a0a);
    cursor: pointer;
}

.auth-link {
    color: #2a2a2a;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px dashed transparent;
    transition: border-color .15s;
}

.auth-link:hover {
    border-bottom-color: currentColor;
}

.auth-submit {
    width: 100%;
    padding: 14px 18px;
    border: none;
    border-radius: 6px;
    background: var(--nrsp-black, #0a0a0a);
    color: var(--nrsp-red, #ffd400);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .9rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform .1s, background .15s;
    margin-top: 6px;
}

.auth-submit:hover {
    background: #1a1a1a;
    transform: translateY(-1px);
}

.auth-submit:active {
    transform: translateY(0);
}

.auth-meta {
    text-align: center;
    margin-top: 8px;
    font-size: .85rem;
}

.auth-meta a {
    color: #5a6271;
    text-decoration: none;
    font-weight: 500;
}

.auth-meta a:hover {
    color: var(--nrsp-black, #0a0a0a);
    text-decoration: underline;
}

@media (max-width: 520px) {
    .auth-card {
        padding: 28px 22px;
    }

    .auth-card-header h1 {
        font-size: 1.25rem;
    }
}