/* =============================================================================
   NexArt Magnetic Mounting Page — Premium Design
   Scope : body.nexart-mounting-active + .nexart-mounting
   ============================================================================= */

/* OceanWP page chrome reset is centralized in assets/css/nexart.css. */

/* ── ROOT WRAPPER ────────────────────────────────────────────────────────────── */
.nexart-mounting {
    background: var(--nx-bg);
    color: var(--nx-text);
    font-family: var(--nx-font);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* ── CONTAINER ───────────────────────────────────────────────────────────────── */
.nxm-container {
    max-width: var(--nx-max);
    margin: 0 auto;
    padding: 0 40px;
}

/* ── TYPOGRAPHY ──────────────────────────────────────────────────────────────── */
.nxm-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--nx-gold);
    margin: 0 0 16px;
}

.nxm-eyebrow--center { text-align: center; }

.nxm-section-title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.13;
    color: var(--nx-text);
    margin: 0 0 24px;
    letter-spacing: -0.02em;
}

.nxm-section-title--center { text-align: center; }

.nxm-section-desc {
    font-size: 17px;
    line-height: 1.7;
    color: var(--nx-text-soft);
    max-width: 540px;
    margin: 0 auto;
    text-align: center;
}

.nxm-body-text {
    font-size: 16px;
    line-height: 1.75;
    color: var(--nx-text-soft);
    margin: 0 0 20px;
}

/* ── BUTTONS ─────────────────────────────────────────────────────────────────── */
.nxm-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 14px 28px;
    border-radius: var(--nx-radius);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: var(--nx-transition);
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.nxm-btn--gold {
    background: var(--nx-gold);
    color: #080808;
}

.nxm-btn--gold:hover {
    background: var(--nx-gold-light);
    color: #080808;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px var(--nx-gold-glow);
}

.nxm-btn--ghost {
    background: transparent;
    color: var(--nx-text);
    border: 1px solid var(--nx-border-bright);
}

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

/* ── SECTION HEAD ────────────────────────────────────────────────────────────── */
.nxm-section-head {
    text-align: center;
    margin-bottom: 64px;
}

/* ── IMAGE FALLBACK ──────────────────────────────────────────────────────────── */
.nxm-img-fallback {
    width: 100%;
    height: 100%;
    min-height: 440px;
    background:
        radial-gradient(ellipse at 60% 40%, rgba(217,164,65,0.08) 0%, transparent 65%),
        linear-gradient(160deg, #111 0%, #080808 100%);
    border-radius: var(--nx-radius-lg);
    border: 1px solid var(--nx-border-md);
}

/* ── FEATURE LIST ────────────────────────────────────────────────────────────── */
.nxm-feat-list {
    list-style: none;
    margin: 24px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.nxm-feat-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--nx-text-soft);
    line-height: 1.5;
}

.nxm-feat-list svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    stroke: var(--nx-gold);
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =============================================================================
   1. HERO
   ============================================================================= */

.nxm-hero {
    min-height: 88vh;
    padding-top: var(--nx-header-h);
    display: flex;
    align-items: center;
    background: var(--nx-bg-deep);
    position: relative;
    overflow: hidden;
}

/* Ligne dorée en haut */
.nxm-hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(217,164,65,0.45) 40%, rgba(217,164,65,0.45) 60%, transparent 100%);
    z-index: 10;
    pointer-events: none;
}

.nxm-hero-inner {
    display: block;
    max-width: none !important;
    margin: 0 !important;
    padding: 80px 80px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.nxm-hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 560px;
    position: relative;
    z-index: 2;
}

.nxm-hero-title {
    font-size: clamp(44px, 6vw, 76px);
    font-weight: 900;
    line-height: 1.06;
    letter-spacing: -0.03em;
    color: var(--nx-text);
    margin: 0 0 24px;
}

.nxm-hero-desc {
    font-size: 17px;
    line-height: 1.7;
    color: var(--nx-text-soft);
    max-width: 440px;
    margin: 0 0 36px;
}

/* Mini feature row */
.nxm-hero-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 44px;
    width: 100%;
}

.nxm-hero-feat {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--nx-border);
    border-radius: var(--nx-radius);
    transition: border-color var(--nx-transition);
}

.nxm-hero-feat:hover { border-color: var(--nx-border-gold); }

.nxm-feat-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: rgba(217,164,65,0.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nxm-feat-icon svg {
    width: 16px;
    height: 16px;
    stroke: var(--nx-gold);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.nxm-hero-feat strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--nx-text);
    line-height: 1.3;
}

.nxm-hero-feat span {
    display: block;
    font-size: 12px;
    color: rgba(245,245,245,0.45);
    line-height: 1.3;
    margin-top: 2px;
}

/* Hero image */
/* Image plein-écran : hors du flux, fond de section */
.nxm-hero-right {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.nxm-hero-img-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: 0;
    border: none;
    box-shadow: none;
    background: var(--nx-bg-deep);
}

.nxm-hero-img-wrap img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
}

/* Gradient cinématique gauche→droite */
.nxm-hero-img-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(4,4,4,0.97) 0%,
            rgba(4,4,4,0.91) 25%,
            rgba(4,4,4,0.70) 48%,
            rgba(4,4,4,0.28) 68%,
            transparent 100%
        ),
        linear-gradient(to top, rgba(4,4,4,0.82) 0%, transparent 35%);
    z-index: 1;
    pointer-events: none;
}

/* scroll-offset for fixed header */
#nxm-install {
    scroll-margin-top: calc(var(--nx-header-h) + 20px);
}


/* =============================================================================
   2. INSTALL IN MINUTES
   ============================================================================= */

.nxm-install {
    padding: 100px 0;
    background: var(--nx-bg-2);
}

.nxm-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.nxm-step-card {
    background: var(--nx-bg-card);
    border: 1px solid var(--nx-border);
    border-radius: var(--nx-radius-lg);
    overflow: hidden;
    transition: transform var(--nx-transition), border-color var(--nx-transition), box-shadow var(--nx-transition);
    display: flex;
    flex-direction: column;
}

.nxm-step-card:hover {
    transform: translateY(-4px);
    border-color: rgba(217,164,65,0.25);
    box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}

.nxm-step-img {
    height: 220px;
    overflow: hidden;
    background: var(--nx-bg-card-2);
    position: relative;
}

.nxm-step-img img,
.nxm-step-img .nxm-img-fallback {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
    min-height: unset;
    border: none;
    transition: transform 0.4s ease;
}

.nxm-step-card:hover .nxm-step-img img { transform: scale(1.04); }

.nxm-step-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.nxm-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--nx-gold);
    color: #080808;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    border-radius: 50%;
    margin-bottom: 14px;
    flex-shrink: 0;
}

.nxm-step-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--nx-text);
    margin: 0 0 10px;
    line-height: 1.3;
}

.nxm-step-desc {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(245,245,245,0.55);
    margin: 0;
}

.nxm-surfaces {
    padding: 94px 0;
    background: var(--nx-bg);
    border-top: 1px solid var(--nx-border);
}

.nxm-surfaces-head {
    max-width: 700px;
    margin-bottom: 42px;
}

.nxm-surfaces-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.nxm-surface-panel {
    padding: 30px;
    background: var(--nx-bg-card);
    border: 1px solid var(--nx-border);
    border-radius: var(--nx-radius-lg);
}

.nxm-surface-panel--best {
    border-color: rgba(217,164,65,0.28);
    background: rgba(217,164,65,0.055);
}

.nxm-surface-panel h3 {
    color: var(--nx-text);
    font-size: 20px;
    line-height: 1.25;
    margin: 0 0 18px;
}

.nxm-surface-panel ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nxm-surface-panel li {
    color: var(--nx-text-soft);
    font-size: 15px;
    line-height: 1.55;
    padding-left: 22px;
    position: relative;
}

.nxm-surface-panel li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.68em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--nx-gold);
}


/* =============================================================================
   3. INSIDE THE SYSTEM
   ============================================================================= */

.nxm-system {
    padding: 100px 0;
    background: var(--nx-bg-deep);
}

.nxm-system-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Image variant */
.nxm-system-img-wrap {
    border-radius: var(--nx-radius-lg);
    overflow: hidden;
    border: 1px solid var(--nx-border-md);
    box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}

.nxm-system-img-wrap img {
    width: 100%;
    display: block;
    object-fit: cover;
}

/* CSS diagram fallback */
.nxm-system-diagram {
    border-radius: var(--nx-radius-lg);
    border: 1px solid var(--nx-border-md);
    overflow: hidden;
    background: var(--nx-bg-card);
}

.nxm-diagram-layer {
    padding: 32px 36px;
    display: grid;
    grid-template-columns: 36px 1fr;
    grid-template-rows: auto auto;
    column-gap: 16px;
    row-gap: 2px;
    align-items: center;
}

.nxm-diagram-plate {
    background: rgba(255,255,255,0.05);
    border-bottom: 1px solid var(--nx-border);
}

.nxm-diagram-magnet {
    background: rgba(217,164,65,0.07);
    border-bottom: 1px solid var(--nx-border);
}

.nxm-diagram-protect {
    background: rgba(255,255,255,0.02);
}

.nxm-diagram-num {
    grid-row: 1 / 3;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--nx-gold);
    color: #080808;
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nxm-diagram-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--nx-text);
    align-self: end;
}

.nxm-diagram-sub {
    font-size: 12px;
    color: rgba(245,245,245,0.44);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    align-self: start;
}

.nxm-diagram-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--nx-gold-glow), transparent);
}

/* Components list */
.nxm-system-components {
    display: flex;
    flex-direction: column;
}

.nxm-comp-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid var(--nx-border);
}

.nxm-comp-item:first-child { padding-top: 0; }
.nxm-comp-item:last-child  { border-bottom: none; padding-bottom: 0; }

.nxm-comp-num {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: rgba(217,164,65,0.12);
    border: 1px solid rgba(217,164,65,0.28);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nx-gold);
    font-size: 16px;
    font-weight: 800;
}

.nxm-comp-title {
    display: block;
    font-size: 17px;
    font-weight: 700;
    color: var(--nx-text);
    margin-bottom: 8px;
}

.nxm-comp-desc {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(245,245,245,0.55);
    margin: 0;
}


/* =============================================================================
   4 & 5. EDITORIAL SECTIONS (Strong + Flush)
   ============================================================================= */

.nxm-strong {
    padding: 100px 0;
    background: var(--nx-bg);
}

.nxm-flush {
    padding: 100px 0;
    background: var(--nx-bg-2);
}

.nxm-editorial {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.nxm-editorial-img-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--nx-bg-card);
    border: 1px solid var(--nx-border-md);
    box-shadow:
        0 32px 64px rgba(0,0,0,0.5),
        0 0 0 1px rgba(255,255,255,0.04);
    aspect-ratio: 4 / 3;
}

.nxm-editorial-img-frame img,
.nxm-editorial-img-frame .nxm-img-fallback {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
    min-height: unset;
    border: none;
}


/* =============================================================================
   6. TRUST STRIP
   ============================================================================= */

.nxm-trust {
    padding: 80px 0;
    background: var(--nx-bg-deep);
    border-top: 1px solid var(--nx-border);
    border-bottom: 1px solid var(--nx-border);
}

.nxm-trust .nxm-section-title {
    margin-bottom: 52px;
}

.nxm-trust-grid {
    display: flex;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.nxm-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 40px;
    position: relative;
}

.nxm-trust-item + .nxm-trust-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 48px;
    width: 1px;
    background: var(--nx-border-md);
}

.nxm-trust-icon {
    width: 44px;
    height: 44px;
    color: var(--nx-gold);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nxm-trust-icon svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.nxm-trust-icon[fill] svg,
.nxm-trust-icon svg[fill="currentColor"] {
    fill: currentColor;
    stroke: none;
}

.nxm-trust-value {
    display: block;
    font-size: 16px;
    font-weight: 800;
    color: var(--nx-text);
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.nxm-trust-label {
    font-size: 13px;
    color: rgba(245,245,245,0.48);
    line-height: 1.4;
}


/* =============================================================================
   7. FAQ
   ============================================================================= */

.nxm-faq {
    padding: 100px 0;
    background: var(--nx-bg);
}

.nxm-faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: flex-start;
}

.nxm-faq-left {
    position: sticky;
    top: calc(var(--nx-header-h) + 40px);
}

.nxm-faq-left .nxm-btn {
    margin-top: 32px;
}

.nxm-faq-item {
    border-bottom: 1px solid var(--nx-border-md);
}

.nxm-faq-item:first-child {
    border-top: 1px solid var(--nx-border-md);
}

.nxm-faq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    background: none;
    border: none;
    color: var(--nx-text);
    padding: 22px 0;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--nx-font);
    text-align: left;
    line-height: 1.4;
    transition: color var(--nx-transition);
}

.nxm-faq-q:hover { color: var(--nx-gold); }
.nxm-faq-item--open .nxm-faq-q { color: var(--nx-gold); }

.nxm-faq-icon {
    flex-shrink: 0;
    font-size: 22px;
    font-weight: 300;
    color: var(--nx-gold);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.22s ease;
    line-height: 1;
}

.nxm-faq-item--open .nxm-faq-icon { transform: rotate(45deg); }

.nxm-faq-a {
    padding-bottom: 22px;
}

.nxm-faq-a p {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(245,245,245,0.62);
    margin: 0;
}

.nxm-final-cta {
    padding: 72px 0;
    background: var(--nx-bg-deep);
    border-top: 1px solid var(--nx-border);
}

.nxm-final-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    padding: 38px;
    background: rgba(217,164,65,0.07);
    border: 1px solid rgba(217,164,65,0.22);
    border-radius: var(--nx-radius-lg);
}

.nxm-final-cta .nxm-section-title {
    margin-bottom: 14px;
}

.nxm-final-cta .nxm-body-text {
    max-width: 620px;
    margin-bottom: 0;
}


/* =============================================================================
   RESPONSIVE
   ============================================================================= */

/* ── 1200px ── */
@media (max-width: 1200px) {
    .nxm-hero-title { font-size: clamp(40px, 5.5vw, 64px); }
    .nxm-system-layout { gap: 56px; }
    .nxm-editorial { gap: 56px; }
    .nxm-faq-layout { gap: 56px; }
}

/* ── 1024px ── */
@media (max-width: 1024px) {

    .nxm-hero { min-height: 88vh; }

    .nxm-hero-inner { padding: 72px 24px 64px; }

    .nxm-hero-left { max-width: 100%; align-items: flex-start; }
    .nxm-hero-title { font-size: clamp(38px, 7vw, 56px); }
    .nxm-hero-desc  { max-width: 100%; }

    /* Gradient renforcé en bas pour mobile */
    .nxm-hero-img-overlay {
        background:
            linear-gradient(180deg, rgba(4,4,4,0.60) 0%, rgba(4,4,4,0.97) 100%),
            linear-gradient(90deg, rgba(4,4,4,0.97) 0%, rgba(4,4,4,0.55) 60%, transparent 100%);
    }

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

    .nxm-system-layout { grid-template-columns: 1fr; gap: 48px; }

    .nxm-editorial { grid-template-columns: 1fr; gap: 48px; }

    .nxm-trust-item { padding: 20px 24px; }
    .nxm-trust-item + .nxm-trust-item::before { display: none; }

    .nxm-faq-layout { grid-template-columns: 1fr; gap: 48px; }
    .nxm-faq-left { position: static; }
}

/* ── 768px ── */
@media (max-width: 768px) {

    .nxm-container { padding: 0 20px; }

    .nxm-install,
    .nxm-surfaces,
    .nxm-system,
    .nxm-strong,
    .nxm-flush,
    .nxm-trust,
    .nxm-faq { padding: 72px 0; }

    .nxm-section-head { margin-bottom: 44px; }

    .nxm-hero-features { grid-template-columns: 1fr 1fr; }
    .nxm-hero-img-wrap { aspect-ratio: 3 / 2; }

    .nxm-steps-grid { gap: 16px; }
    .nxm-step-img   { height: 180px; }
    .nxm-surfaces-grid { grid-template-columns: 1fr; }

    .nxm-system-layout { gap: 40px; }
    .nxm-editorial { gap: 40px; }
    .nxm-editorial-img-frame { aspect-ratio: 3 / 2; }

    .nxm-trust-grid { gap: 0; flex-direction: row; flex-wrap: wrap; justify-content: center; }
    .nxm-trust-item { flex: 0 0 50%; padding: 20px 16px; }
    .nxm-trust-item + .nxm-trust-item::before { display: none; }

    .nxm-faq-layout { gap: 40px; }

    .nxm-btn {
        width: 100%;
        justify-content: center;
    }

    .nxm-final-cta-inner {
        align-items: stretch;
        flex-direction: column;
        padding: 28px;
    }
}

/* ── 480px ── */
@media (max-width: 480px) {

    .nxm-hero-features { grid-template-columns: 1fr; }
    .nxm-hero-img-wrap { aspect-ratio: 4 / 3; }

    .nxm-steps-grid { grid-template-columns: 1fr; }
    .nxm-step-img   { height: 200px; }

    .nxm-trust-item { flex: 0 0 100%; }

    .nxm-faq-q { font-size: 15px; }
}

/* =============================================================================
   MOUNTING UPGRADE: TECHNICAL CONFIDENCE
   ============================================================================= */
.nxm-tech {
    padding: 96px 0;
    background:
        radial-gradient(circle at 78% 12%, rgba(217,164,65,0.12), transparent 36%),
        #070707;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(217,164,65,0.14);
}

.nxm-tech-head {
    max-width: 780px;
    margin-bottom: 44px;
}

.nxm-tech-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.nxm-tech-card {
    min-height: 260px;
    padding: 30px 24px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--nx-border);
    display: flex;
    flex-direction: column;
}

.nxm-tech-card strong {
    color: var(--nx-text);
    font-size: 19px;
    line-height: 1.2;
    margin-bottom: 10px;
}

.nxm-tech-card span {
    color: var(--nx-gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: auto;
}

.nxm-tech-card p {
    color: rgba(245,245,245,0.62);
    font-size: 14px;
    line-height: 1.65;
    margin: 24px 0 0;
}

@media (max-width: 1024px) {
    .nxm-tech-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
    .nxm-tech { padding: 72px 0; }
}

@media (max-width: 480px) {
    .nxm-tech-grid { grid-template-columns: 1fr; }
    .nxm-tech-card { min-height: auto; }
}

/* =============================================================================
   MOBILE-FIRST HARDENING
   ============================================================================= */
.nexart-mounting,
.nexart-mounting * {
    min-width: 0;
}

.nexart-mounting img {
    max-width: 100%;
}

.nxm-btn,
.nxm-hero-feat,
.nxm-step-card,
.nxm-faq-item,
.nxm-tech-card {
    min-height: 44px;
}

@media (max-width: 768px) {
    .nxm-hero {
        min-height: 430px;
    }

    .nxm-hero-inner {
        padding-top: 54px;
        padding-bottom: 54px;
    }

    .nxm-hero-title {
        font-size: clamp(34px, 9vw, 50px);
    }

    .nxm-hero-features {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .nxm-container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .nxm-btn {
        width: 100%;
        justify-content: center;
    }
}
