/* NX — Homepage lower sections (below Featured Products)
   Black #0B0B0B · Dark Red #E60000 · Gold #C9A227 · White #FFFFFF */

.nx-landing {
    --nx-black: #0B0B0B;
    --nx-red: #E60000;
    --nx-red-dark: #C40000;
    --nx-gold: #C9A227;
    --nx-white: #FFFFFF;
    --nx-card: #121212;
    --nx-line: rgba(201, 162, 39, 0.25);
    --nx-wrap: min(1180px, calc(100% - 40px));
    background: var(--nx-black);
    color: var(--nx-white);
    font-family: var(--font-body, 'Inter', sans-serif);
    overflow: hidden;
}

.nx-wrap { width: var(--nx-wrap); margin-inline: auto; }

.nx-section { padding: clamp(64px, 8vw, 96px) 0; }

.nx-eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    font-family: var(--font-heading, 'Inter', sans-serif);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--nx-red);
}

.nx-eyebrow--gold { color: var(--nx-gold); }

.nx-display {
    margin: 0 0 16px;
    font-family: var(--font-heading, 'Inter', sans-serif);
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.nx-display em {
    font-style: normal;
    color: var(--nx-gold);
}

.nx-heading {
    margin: 0 0 12px;
    font-family: var(--font-heading, 'Inter', sans-serif);
    font-size: clamp(1.75rem, 3.5vw, 2.6rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.nx-copy {
    margin: 0;
    font-size: clamp(0.92rem, 1.3vw, 1.02rem);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.62);
    max-width: 52ch;
}

.nx-copy--center { margin-inline: auto; text-align: center; }

.nx-section-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 32px;
}

.nx-section-top--center {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.nx-section-top--split {
    align-items: flex-end;
}

.nx-section-top--split .nx-copy { max-width: 48ch; }

.nx-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: 4px;
    font-family: var(--font-heading, 'Inter', sans-serif);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.nx-btn--fill {
    color: var(--nx-white);
    background: var(--nx-red);
    border-color: var(--nx-red-dark);
}

.nx-btn--fill:hover { transform: translateY(-2px); background: var(--nx-red-dark); }

.nx-btn--line {
    color: var(--nx-white);
    background: transparent;
    border-color: rgba(255, 255, 255, 0.3);
}

.nx-btn--line:hover { border-color: var(--nx-gold); color: var(--nx-gold); }

.nx-btn--wa {
    color: var(--nx-white);
    background: var(--nx-red);
    border-color: var(--nx-red-dark);
}

.nx-btn--wa:hover { background: var(--nx-red-dark); transform: translateY(-2px); }

.nx-btn--block { width: 100%; }

.nx-icon-btn {
    width: 48px;
    height: 48px;
    border: 1px solid var(--nx-line);
    border-radius: 4px;
    background: var(--nx-card);
    color: var(--nx-white);
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

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

/* Reveal */
[data-nx-reveal],
[data-nx-item] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: calc(var(--i, 0) * 60ms);
}

[data-nx-reveal].is-in,
[data-nx-item].is-in {
    opacity: 1;
    transform: translateY(0);
}

/* Marquee */
.nx-marquee {
    border-block: 1px solid var(--nx-line);
    background: var(--nx-red);
    padding: 14px 0;
    overflow: hidden;
}

.nx-marquee-track {
    display: flex;
    width: max-content;
    animation: nx-marquee 32s linear infinite;
}

.nx-marquee-group {
    display: flex;
    align-items: center;
    gap: 28px;
    padding-right: 28px;
    white-space: nowrap;
}

.nx-marquee-group span {
    font-family: var(--font-heading, 'Inter', sans-serif);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
}

.nx-marquee-group strong { color: var(--nx-gold); font-weight: 800; }

.nx-marquee-dot { color: var(--nx-gold) !important; font-size: 8px !important; }

@keyframes nx-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* OEM cinematic */
.nx-oem {
    position: relative;
    min-height: clamp(520px, 70vh, 680px);
    display: flex;
    align-items: center;
    padding: 0;
}

.nx-oem-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.nx-oem-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.nx-oem-bg-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(11, 11, 11, 0.97) 0%, rgba(11, 11, 11, 0.75) 42%, rgba(11, 11, 11, 0.35) 100%);
}

.nx-oem-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(24px, 4vw, 48px);
    align-items: center;
    padding-block: clamp(64px, 8vw, 96px);
}

.nx-oem-panel {
    max-width: 520px;
}

.nx-oem-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.nx-oem-steps {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.nx-oem-step {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 14px;
    align-items: start;
    padding: 16px 18px;
    background: rgba(11, 11, 11, 0.72);
    border: 1px solid var(--nx-line);
    border-left: 3px solid var(--nx-gold);
    backdrop-filter: blur(8px);
}

.nx-oem-step-num {
    font-family: var(--font-heading, 'Inter', sans-serif);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--nx-gold);
}

.nx-oem-step strong {
    display: block;
    margin-bottom: 4px;
    font-size: 0.88rem;
}

.nx-oem-step p {
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.55);
}

/* FAQ cinematic */
.nx-section.nx-faq {
    padding: 0;
}

.nx-faq--prefooter {
    padding-bottom: clamp(32px, 4vw, 44px);
}

.nx-faq {
    position: relative;
    min-height: clamp(420px, 52vh, 560px);
    display: flex;
    align-items: center;
    padding: 0;
}

.nx-faq-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.nx-faq-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.nx-faq-bg-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.9) 40%, rgba(255, 255, 255, 0.78) 100%);
}

.nx-faq-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: clamp(20px, 3vw, 32px);
    align-items: start;
    padding-block: clamp(32px, 4vw, 48px);
}

.nx-faq-intro {
    max-width: 480px;
    padding-top: 0;
}

.nx-faq-intro .nx-display {
    color: var(--nx-black);
    margin-bottom: 12px;
    font-size: clamp(1.85rem, 3.8vw, 2.75rem);
}

.nx-faq-intro .nx-eyebrow {
    margin-bottom: 10px;
}

.nx-copy--faq {
    color: rgba(11, 11, 11, 0.62);
    max-width: 42ch;
    margin-bottom: 20px;
    line-height: 1.6;
}

.nx-faq-accordion {
    display: grid;
    gap: 8px;
}

.nx-faq-item {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(201, 162, 39, 0.28);
    border-left: 3px solid var(--nx-gold);
    border-radius: 4px;
    box-shadow: 0 4px 16px rgba(11, 11, 11, 0.05);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.nx-faq-item.is-open {
    border-color: rgba(230, 0, 0, 0.25);
    box-shadow: 0 12px 36px rgba(11, 11, 11, 0.1);
}

.nx-faq-intro .nx-display em {
    color: var(--nx-red);
}

.nx-faq-trigger {
    display: grid;
    grid-template-columns: 42px 1fr 26px;
    gap: 11px;
    align-items: center;
    width: 100%;
    padding: 14px 16px;
    border: none;
    background: transparent;
    text-align: left;
    cursor: pointer;
    color: var(--nx-black);
    font-family: inherit;
}

.nx-faq-num {
    font-family: var(--font-heading, 'Inter', sans-serif);
    font-size: 1rem;
    font-weight: 800;
    color: var(--nx-red);
    line-height: 1;
}

.nx-faq-q {
    font-family: var(--font-heading, 'Inter', sans-serif);
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.38;
    color: var(--nx-black);
}

.nx-faq-icon {
    position: relative;
    width: 18px;
    height: 18px;
    justify-self: end;
}

.nx-faq-icon::before,
.nx-faq-icon::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 14px;
    height: 2px;
    margin: -1px 0 0 -7px;
    background: var(--nx-red);
    border-radius: 1px;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease;
}

.nx-faq-icon::after {
    transform: rotate(90deg);
}

.nx-faq-item.is-open .nx-faq-icon::after {
    transform: rotate(90deg) scaleX(0);
    opacity: 0;
}

.nx-faq-body-wrap {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    visibility: hidden;
    transition: grid-template-rows 0.35s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.35s ease;
}

.nx-faq-item.is-open .nx-faq-body-wrap {
    grid-template-rows: 1fr;
    visibility: visible;
}

.nx-faq-body-inner {
    min-height: 0;
    overflow: hidden;
    padding: 0;
}

.nx-faq-body-inner p {
    margin: 0;
    padding: 0 16px 16px 69px;
    font-size: 0.84rem;
    line-height: 1.6;
    color: rgba(11, 11, 11, 0.68);
}

/* Why Choose Us — timeline rings */
.nx-section.nx-why {
    padding: clamp(18px, 2.5vw, 28px) 0 clamp(18px, 2.5vw, 24px);
}

.nx-why {
    position: relative;
    overflow: hidden;
    background: var(--nx-white);
    border-block: 1px solid rgba(201, 162, 39, 0.18);
}

.nx-why-deco {
    position: absolute;
    width: clamp(200px, 22vw, 320px);
    height: clamp(200px, 22vw, 320px);
    opacity: 0.06;
    pointer-events: none;
    background-repeat: no-repeat;
    background-size: contain;
}

.nx-why-deco--left {
    top: 8%;
    left: -40px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120' fill='none'%3E%3Cpath d='M25 85c20-40 50-55 70-35s5 45-25 50-50-5-45-15z' stroke='%23E60000' stroke-width='2'/%3E%3Ccircle cx='60' cy='45' r='28' stroke='%23E60000' stroke-width='2'/%3E%3C/svg%3E");
}

.nx-why-deco--right {
    bottom: 5%;
    right: -30px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120' fill='none'%3E%3Crect x='30' y='25' width='60' height='70' rx='6' stroke='%23E60000' stroke-width='2'/%3E%3Cpath d='M40 45h40M40 60h40M40 75h28' stroke='%23E60000' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.nx-why-head {
    text-align: center;
    margin-bottom: clamp(14px, 2vw, 20px);
}

.nx-why-head .nx-copy--center {
    color: rgba(11, 11, 11, 0.58);
    margin-top: -2px;
}

.nx-why-kicker {
    display: inline-block;
    margin-bottom: 4px;
    font-family: var(--font-heading, 'Inter', sans-serif);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--nx-gold);
}

.nx-why-title {
    margin: 0 0 6px;
    font-family: var(--font-heading, 'Inter', sans-serif);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--nx-black);
}

.nx-why-timeline {
    position: relative;
    padding-top: 0;
}

.nx-why-line {
    position: absolute;
    top: clamp(82px, 10vw, 108px);
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(90deg, rgba(201, 162, 39, 0.2) 0%, var(--nx-red) 50%, rgba(201, 162, 39, 0.2) 100%);
    opacity: 0.55;
    z-index: 0;
    pointer-events: none;
}

.nx-why-track {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    gap: clamp(12px, 2vw, 20px);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 4px 8px;
    scrollbar-width: thin;
    scrollbar-color: var(--nx-red) transparent;
}

.nx-why-node {
    flex: 1 1 0;
    min-width: min(200px, 42vw);
    min-height: 248px;
    scroll-snap-align: center;
    text-align: center;
    padding: 0 6px 6px;
}

.nx-why-ring {
    position: relative;
    width: clamp(132px, 15vw, 172px);
    height: clamp(132px, 15vw, 172px);
    margin: 0 auto 14px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--nx-red);
    box-shadow: 0 0 0 4px rgba(230, 0, 0, 0.15);
    transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.nx-why-ring img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.4s ease;
}

.nx-why-digit {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-family: var(--font-heading, 'Inter', sans-serif);
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1;
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.nx-why-hover {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background: rgba(11, 11, 11, 0.88);
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
}

.nx-why-hover p {
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
}

.nx-why-node:hover .nx-why-ring,
.nx-why-node:focus-within .nx-why-ring {
    border-color: var(--nx-gold);
    box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.2);
    transform: translateY(-6px);
}

.nx-why-node:hover .nx-why-ring img,
.nx-why-node:focus-within .nx-why-ring img {
    transform: scale(1.08);
    filter: brightness(0.55);
}

.nx-why-node:hover .nx-why-digit,
.nx-why-node:focus-within .nx-why-digit {
    opacity: 0;
    transform: scale(0.85);
}

.nx-why-node:hover .nx-why-hover,
.nx-why-node:focus-within .nx-why-hover {
    opacity: 1;
    transform: scale(1);
}

.nx-why-node h3 {
    margin: 0 0 6px;
    font-family: var(--font-heading, 'Inter', sans-serif);
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    font-weight: 700;
    color: var(--nx-black);
    transition: color 0.3s ease;
}

.nx-why-node:hover h3,
.nx-why-node:focus-within h3 {
    color: var(--nx-red);
}

.nx-why-node > p {
    margin: 0 auto;
    max-width: 22ch;
    font-size: 0.82rem;
    line-height: 1.6;
    color: rgba(11, 11, 11, 0.52);
    transition: color 0.3s ease;
}

.nx-why-node:hover > p,
.nx-why-node:focus-within > p {
    color: rgba(11, 11, 11, 0.72);
}

/* Latest blogs */
.nx-section.nx-blogs {
    padding: 8px 0 28px;
}

.nx-blogs {
    background:
        radial-gradient(ellipse 70% 55% at 0% 100%, rgba(230, 0, 0, 0.14), transparent 58%),
        var(--nx-black);
    border-top: 1px solid rgba(201, 162, 39, 0.12);
}

.nx-blogs-head {
    display: grid;
    justify-items: center;
    gap: 2px;
    margin-bottom: 10px;
    text-align: center;
}

.nx-blogs-head__top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 2px;
    min-height: 24px;
}

.nx-blogs-head__top .nx-eyebrow {
    margin-bottom: 0;
}

.nx-blogs-head__top .nx-blogs-more {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.nx-blogs-head .nx-eyebrow {
    margin-bottom: 0;
}

.nx-blogs-head .nx-heading {
    margin-bottom: 0;
    font-size: clamp(1.35rem, 2.2vw, 1.75rem);
    line-height: 1.1;
}

.nx-blogs-head .nx-copy {
    margin-top: -6px;
    max-width: 40ch;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.58);
    text-align: center;
}

.nx-blogs-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.3s ease, gap 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.nx-blogs-more__text {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.nx-blogs-more__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nx-gold);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), color 0.3s ease;
}

.nx-blogs-more:hover,
.nx-blogs-more:focus-visible {
    color: var(--nx-white);
    gap: 12px;
    outline: none;
}

.nx-blogs-more:hover .nx-blogs-more__text,
.nx-blogs-more:focus-visible .nx-blogs-more__text {
    color: var(--nx-gold);
}

.nx-blogs-more:hover .nx-blogs-more__arrow,
.nx-blogs-more:focus-visible .nx-blogs-more__arrow {
    color: var(--nx-white);
    transform: translateX(4px);
}

.nx-blogs-head__top .nx-blogs-more:hover .nx-blogs-more__arrow,
.nx-blogs-head__top .nx-blogs-more:focus-visible .nx-blogs-more__arrow {
    transform: translateY(-50%) translateX(4px);
}

.nx-blogs .nx-wrap {
    width: min(1060px, calc(100% - 48px));
}

.nx-blogs-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
}

.nx-blog-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--nx-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    overflow: hidden;
    transition:
        opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.35s ease,
        box-shadow 0.45s ease;
}

.nx-blogs-grid [data-nx-item] {
    opacity: 0;
    transform: translateY(36px) scale(0.97);
    transition-delay: calc(var(--i, 0) * 130ms);
}

.nx-blogs-grid [data-nx-item].is-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.nx-blog-card.is-in:hover,
.nx-blog-card:focus-within {
    transform: translateY(-8px) scale(1);
    border-color: rgba(201, 162, 39, 0.45);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(201, 162, 39, 0.1);
}

.nx-blog-card__media {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    flex-shrink: 0;
}

.nx-blog-card__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 25%, rgba(201, 162, 39, 0.18) 50%, transparent 75%);
    transform: translateX(-120%);
    transition: transform 0.75s ease;
    pointer-events: none;
}

.nx-blog-card:hover .nx-blog-card__media::after {
    transform: translateX(120%);
}

.nx-blog-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s ease;
}

.nx-blog-card:hover .nx-blog-card__media img {
    transform: scale(1.07);
    filter: brightness(0.78);
}

.nx-blog-card__cat {
    position: absolute;
    left: 14px;
    top: 14px;
    padding: 6px 10px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--nx-black);
    background: var(--nx-gold);
    border-radius: 3px;
}

.nx-blog-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 18px 20px 20px;
}

.nx-blog-card__body time {
    margin-bottom: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.42);
}

.nx-blog-card__body h3 {
    margin: 0 0 8px;
    font-family: var(--font-heading, 'Inter', sans-serif);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
}

.nx-blog-card__body h3 a {
    color: var(--nx-white);
    text-decoration: none;
    transition: color 0.25s ease;
}

.nx-blog-card__body h3 a:hover { color: var(--nx-gold); }

.nx-blog-card__body p {
    margin: 0 0 14px;
    font-size: 0.84rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.58);
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.nx-blog-card__link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--nx-gold);
    text-decoration: none;
    transition: gap 0.3s ease, color 0.25s ease;
}

.nx-blog-card__link:hover {
    color: var(--nx-white);
    gap: 10px;
}

/* Factory video showcase */
.nx-factory {
    position: relative;
    padding: clamp(18px, 2.5vw, 28px) 0 clamp(18px, 2.5vw, 24px);
    background: var(--nx-white);
    border-top: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
    overflow: hidden;
}

.nx-factory__glow {
    display: none;
}

.nx-factory__head {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto clamp(14px, 2vw, 20px);
    text-align: center;
}

.nx-factory__head .nx-eyebrow {
    margin-bottom: 4px;
}

.nx-factory__head .nx-heading {
    color: var(--nx-black);
    margin-bottom: 6px;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}

.nx-factory__head .nx-copy {
    color: #5a5a5a;
    margin-top: -2px;
    line-height: 1.55;
}

.nx-factory__head .nx-heading em {
    font-style: normal;
    color: var(--nx-red);
}

.nx-factory__split {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(16px, 2.5vw, 28px);
    align-items: stretch;
}

.nx-factory__media {
    position: sticky;
    top: calc(var(--site-header-height, 56px) + 16px);
    display: flex;
    align-items: stretch;
    align-self: stretch;
    min-height: 0;
    height: 100%;
}

.nx-factory__frame {
    position: relative;
    flex: 1;
    width: 100%;
    min-height: 0;
    height: 100%;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(201, 162, 39, 0.22);
    box-shadow:
        0 18px 44px rgba(11, 11, 11, 0.1),
        0 0 0 1px rgba(230, 0, 0, 0.06);
    background: #0a0a0a;
    isolation: isolate;
}

.nx-factory__frame::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    border-radius: inherit;
    box-shadow: inset 0 0 0 3px rgba(230, 0, 0, 0.35);
}

.nx-factory__video {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    object-position: center;
    background: #0a0a0a;
}

.nx-factory__frame.is-playing .nx-factory__video {
    object-fit: cover;
}

.nx-factory__shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(11, 11, 11, 0.15) 0%, rgba(11, 11, 11, 0.55) 100%);
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.nx-factory__frame.is-playing .nx-factory__shade {
    opacity: 0;
}

.nx-factory__play {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    display: grid;
    place-items: center;
    width: 62px;
    height: 62px;
    padding: 0;
    border: none;
    border-radius: 50%;
    color: var(--nx-white);
    background: var(--nx-red);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
    cursor: pointer;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease, background 0.25s ease, opacity 0.35s ease, visibility 0.35s ease;
}

.nx-factory__play-ring {
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 1px solid rgba(201, 162, 39, 0.55);
    animation: nx-factory-pulse 2.4s ease infinite;
}

@keyframes nx-factory-pulse {
    0%, 100% { transform: scale(1); opacity: 0.85; }
    50% { transform: scale(1.08); opacity: 0.35; }
}

.nx-factory__play:hover {
    transform: translate(-50%, -50%) scale(1.06);
    background: var(--nx-red-dark);
}

.nx-factory__frame.is-playing .nx-factory__play {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.nx-factory__panel {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: clamp(16px, 2vw, 22px);
    border-radius: 14px;
    border: 1px solid #ececec;
    background:
        linear-gradient(145deg, rgba(201, 162, 39, 0.06) 0%, transparent 42%),
        #fafafa;
    box-shadow: 0 10px 28px rgba(11, 11, 11, 0.05);
}

.nx-factory__panel-head {
    display: grid;
    gap: 6px;
}

.nx-factory__panel-kicker {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--nx-gold);
}

.nx-factory__lead {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.55;
    color: #444;
}

.nx-factory__flow {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nx-factory__flow li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: start;
    padding: 0 0 14px 0;
}

.nx-factory__flow li:last-child {
    padding-bottom: 0;
}

.nx-factory__flow-num {
    display: grid;
    place-items: center;
    min-width: 36px;
    height: 36px;
    border-radius: 50%;
    font-family: var(--font-heading, 'Inter', sans-serif);
    font-size: 11px;
    font-weight: 800;
    color: var(--nx-white);
    background: var(--nx-red);
    box-shadow: 0 0 0 4px rgba(230, 0, 0, 0.12);
}

.nx-factory__flow-body {
    padding-top: 2px;
}

.nx-factory__flow strong {
    display: block;
    margin-bottom: 3px;
    font-family: var(--font-heading, 'Inter', sans-serif);
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--nx-black);
}

.nx-factory__flow p {
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.55;
    color: #666;
}

.nx-factory__foot {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid #e8e8e8;
}

.nx-factory__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.nx-factory__stat {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 88px;
    padding: 8px 12px;
    border-radius: 8px;
    background: var(--nx-black);
    text-align: center;
}

.nx-factory__stat-value {
    font-family: var(--font-heading, 'Inter', sans-serif);
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--nx-gold);
}

.nx-factory__stat-label {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.62);
}

.nx-factory__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 0;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--nx-red);
    transition: gap 0.3s ease, color 0.25s ease;
}

.nx-factory__cta:hover {
    color: var(--nx-black);
    gap: 12px;
}

/* Contact */
.nx-section.nx-connect {
    padding: clamp(24px, 3vw, 36px) 0;
}

.nx-connect {
    background:
        radial-gradient(ellipse 55% 45% at 100% 0%, rgba(230, 0, 0, 0.16), transparent 52%),
        radial-gradient(ellipse 40% 35% at 0% 100%, rgba(201, 162, 39, 0.06), transparent 50%),
        var(--nx-black);
}

.nx-connect-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: clamp(18px, 2.5vw, 28px);
    align-items: stretch;
}

.nx-connect-form-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: clamp(26px, 3vw, 34px);
    background: linear-gradient(165deg, #181818 0%, #101010 100%);
    color: var(--nx-white);
    border: 1px solid rgba(201, 162, 39, 0.24);
    border-radius: 14px;
    box-shadow:
        0 22px 48px rgba(0, 0, 0, 0.48),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.nx-connect-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--nx-red), var(--nx-gold), var(--nx-red));
    background-size: 200% 100%;
    animation: nx-form-accent 6s ease infinite;
}

@keyframes nx-form-accent {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.nx-form {
    display: grid;
    gap: 16px;
    flex: 1;
}

.nx-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.nx-form-stack {
    display: grid;
    gap: 16px;
}

.nx-field {
    display: grid;
    gap: 8px;
    align-content: start;
}

.nx-field label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--nx-gold);
}

.nx-form input,
.nx-form textarea {
    width: 100%;
    min-height: 48px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%),
        rgba(8, 8, 8, 0.92);
    color: var(--nx-white);
    font-family: inherit;
    font-size: 0.92rem;
    line-height: 1.45;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease,
        transform 0.2s ease;
}

.nx-form input:hover,
.nx-form textarea:hover {
    border-color: rgba(201, 162, 39, 0.35);
}

.nx-form input::placeholder,
.nx-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.34);
}

.nx-form input:focus,
.nx-form textarea:focus {
    outline: none;
    border-color: rgba(201, 162, 39, 0.75);
    box-shadow:
        0 0 0 3px rgba(201, 162, 39, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    background:
        linear-gradient(180deg, rgba(201, 162, 39, 0.05) 0%, transparent 100%),
        rgba(8, 8, 8, 0.98);
}

.nx-form textarea {
    resize: vertical;
    min-height: 120px;
}

.nx-form .nx-btn--fill {
    margin-top: 6px;
    padding: 16px 24px;
    font-size: 12px;
    letter-spacing: 0.14em;
    border-radius: 10px;
}

.nx-flash {
    margin-bottom: 10px;
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 0.82rem;
}

.nx-flash--success {
    background: rgba(37, 211, 102, 0.1);
    color: #6ee7a0;
    border: 1px solid rgba(37, 211, 102, 0.35);
}

.nx-flash--error {
    background: rgba(230, 0, 0, 0.15);
    color: #f0a0a0;
    border: 1px solid rgba(230, 0, 0, 0.45);
}

.nx-connect-side {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
    padding: clamp(22px, 2.5vw, 28px);
    background: linear-gradient(165deg, #141414 0%, #101010 100%);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 12px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.nx-connect-side__top {
    display: grid;
    justify-items: center;
    text-align: center;
    gap: 12px;
}

.nx-connect-side__kicker {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--nx-gold);
}

.nx-connect-side__qr {
    padding: 10px;
    background: var(--nx-white);
    border-radius: 8px;
    line-height: 0;
}

.nx-connect-side__qr img {
    display: block;
    width: 158px;
    height: 158px;
}

.nx-connect-side__top p {
    margin: 0;
    max-width: 28ch;
    font-size: 0.82rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.55);
}

.nx-connect-side .nx-btn--wa {
    padding: 13px 18px;
    font-size: 11px;
}

.nx-connect-side__meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.nx-connect-side__item {
    padding: 12px 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.nx-connect-side__item span {
    display: block;
    margin-bottom: 3px;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--nx-gold);
}

.nx-connect-side__item a,
.nx-connect-side__item em {
    display: block;
    font-style: normal;
    font-size: 0.78rem;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    word-break: break-word;
}

.nx-connect-side__item a:hover {
    color: var(--nx-white);
}

/* Responsive */
@media (max-width: 1024px) {
    .nx-oem-layout,
    .nx-faq-layout,
    .nx-connect-grid,
    .nx-factory__split {
        grid-template-columns: 1fr;
    }

    .nx-factory__media {
        position: static;
        min-height: 0;
    }

    .nx-factory__frame {
        flex: none;
        width: 100%;
        height: auto;
        min-height: 0;
        aspect-ratio: 16 / 10;
    }

    .nx-factory__video {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .nx-faq-body-inner p {
        padding-left: 18px;
    }

    .nx-why-line { display: none; }

    .nx-why-track {
        justify-content: flex-start;
        gap: 16px;
        padding-bottom: 12px;
    }

    .nx-why-node {
        flex: 0 0 min(220px, 70vw);
    }

    .nx-blogs-grid { grid-template-columns: 1fr; }

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

    .nx-connect-side__meta {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nx-wrap { width: calc(100% - 28px); }

    .nx-factory__play { width: 56px; height: 56px; }

    .nx-factory__foot {
        flex-direction: column;
        align-items: stretch;
    }

    .nx-factory__stats {
        justify-content: center;
    }

    .nx-factory__cta {
        justify-content: center;
    }

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

    .nx-section-top { flex-direction: column; align-items: flex-start; }

    .nx-section-top--split .nx-btn { align-self: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
    .nx-marquee-track { animation: none; }

    .nx-connect-form-card::before { animation: none; }

    .nx-factory__play-ring { animation: none; }

    [data-nx-reveal],
    [data-nx-item] {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .nx-blog-card__media::after { display: none; }

    .nx-faq-body-wrap { transition: none; }
    .nx-faq-icon::before,
    .nx-faq-icon::after { transition: none; }
}

/* ==========================================================================
   NX — SEO Authority & Manufacturing Capabilities Section
   ========================================================================== */
.nx-seo-section {
    position: relative;
    background: linear-gradient(180deg, rgba(11, 11, 11, 1) 0%, rgba(18, 18, 18, 0.6) 50%, rgba(11, 11, 11, 1) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nx-seo-head {
    text-align: center;
    max-width: 820px;
    margin: 0 auto clamp(36px, 5vw, 56px);
}

.nx-seo-head .nx-heading {
    font-size: clamp(1.85rem, 3.8vw, 2.75rem);
    letter-spacing: -0.025em;
    margin-bottom: 16px;
}

.nx-seo-head .nx-heading em {
    font-style: normal;
    color: var(--nx-gold);
}

.nx-seo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: clamp(18px, 2.5vw, 28px);
    margin-bottom: clamp(36px, 5vw, 52px);
}

.nx-seo-card {
    background: var(--nx-card, #121212);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: clamp(24px, 3vw, 32px);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.nx-seo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--nx-gold), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nx-seo-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 162, 39, 0.4);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45);
}

.nx-seo-card:hover::before {
    opacity: 1;
}

.nx-seo-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 20px;
}

.nx-seo-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 6px;
    background: rgba(230, 0, 0, 0.1);
    border: 1px solid rgba(230, 0, 0, 0.25);
    color: var(--nx-red);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.nx-seo-card:hover .nx-seo-card__icon {
    background: var(--nx-red);
    color: var(--nx-white);
    transform: scale(1.05);
}

.nx-seo-card__badge {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--nx-gold);
    background: rgba(201, 162, 39, 0.12);
    border: 1px solid rgba(201, 162, 39, 0.25);
    padding: 4px 10px;
    border-radius: 999px;
}

.nx-seo-card__title {
    font-family: var(--font-heading, 'Inter', sans-serif);
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--nx-white);
    margin: 0 0 12px;
}

.nx-seo-card__desc {
    font-size: 0.9rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.65);
    margin: 0 0 20px;
    flex-grow: 1;
}

.nx-seo-card__specs {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 16px;
}

.nx-seo-card__specs li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.82);
}

.nx-seo-card__specs li svg {
    color: var(--nx-gold);
    flex-shrink: 0;
}

.nx-seo-card__foot {
    margin-top: auto;
}

.nx-seo-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--nx-white);
    text-decoration: none;
    transition: color 0.25s ease, gap 0.25s ease;
}

.nx-seo-card__link svg {
    transition: transform 0.25s ease;
}

.nx-seo-card__link:hover {
    color: var(--nx-gold);
}

.nx-seo-card__link:hover svg {
    transform: translateX(4px);
}

/* Technical Specs Strip */
.nx-seo-specs {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 8px;
    padding: clamp(20px, 3vw, 32px);
    margin-bottom: clamp(28px, 4vw, 40px);
}

.nx-seo-specs__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(16px, 2.5vw, 32px);
}

.nx-seo-spec-item {
    display: flex;
    flex-direction: column;
}

.nx-seo-spec-item__label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--nx-red);
    margin-bottom: 6px;
}

.nx-seo-spec-item__val {
    font-family: var(--font-heading, 'Inter', sans-serif);
    font-size: clamp(1.05rem, 1.6vw, 1.25rem);
    font-weight: 700;
    color: var(--nx-white);
    margin-bottom: 6px;
}

.nx-seo-spec-item__desc {
    font-size: 0.84rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.58);
    margin: 0;
}

/* Keyword Tags Mesh */
.nx-seo-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding-top: 8px;
}

.nx-seo-tags__title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-right: 4px;
}

.nx-seo-tag {
    display: inline-block;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.78);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.nx-seo-tag:hover {
    background: rgba(201, 162, 39, 0.12);
    border-color: var(--nx-gold);
    color: var(--nx-gold);
}

@media (max-width: 1024px) {
    .nx-seo-specs__inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .nx-seo-specs__inner {
        grid-template-columns: 1fr;
    }

    .nx-seo-tags {
        justify-content: flex-start;
    }
}

