/* =========================
   ACCENT
========================= */
.nm-gold {
    background: linear-gradient(135deg, #eab308, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-aos] {
    opacity: 0;
    transform: translateY(28px);
    transition: all 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-aos].visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================
   CHIP
========================= */
.nm-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(234, 179, 8, 0.08);
    border: 1px solid rgba(234, 179, 8, 0.2);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: #eab308;
    margin-bottom: 18px;
}

.nm-chip svg { stroke: #eab308; }

/* =========================
   SECTION HEAD
========================= */
.nm-head {
    text-align: center;
    margin-bottom: 55px;
}

.nm-section-title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 14px;
}

.nm-section-desc {
    font-size: 15px;
    color: #9ca3af;
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}

/* =========================
   BUTTONS
========================= */
.nm-btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #eab308, #f59e0b);
    color: #000;
    font-weight: 600;
    border: none;
}

.nm-btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(234, 179, 8, 0.25);
}

.nm-btn-gold svg {
    stroke: #000;
    transition: transform 0.3s;
}

.nm-btn-gold:hover svg { transform: translateX(4px); }

.nm-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    border: 1px solid #333;
}

.nm-btn-ghost:hover {
    border-color: #eab308;
    color: #eab308;
}

.nm-btn-ghost:hover svg { stroke: #eab308; }

/* =========================
   HERO
========================= */
.nm-hero {
    position: relative;
    padding: 130px 0 80px;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.nm-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.nm-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(130px);
    opacity: 0.12;
}

.nm-glow-1 {
    width: 500px;
    height: 500px;
    background: #eab308;
    top: -120px;
    right: -100px;
}

.nm-glow-2 {
    width: 400px;
    height: 400px;
    background: #f59e0b;
    bottom: -100px;
    left: -100px;
}

.nm-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 60px 60px;
}

.nm-hero-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.nm-hero-title {
    font-size: 46px;
    font-weight: 700;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 20px;
}

.nm-hero-desc {
    font-size: 15px;
    color: #9ca3af;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 520px;
}

.nm-hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.nm-stats-row {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nm-stat-item strong {
    display: block;
    font-size: 26px;
    font-weight: 700;
    color: #eab308;
}

.nm-stat-item span {
    font-size: 13px;
    color: #9ca3af;
}

.nm-stat-line {
    width: 1px;
    height: 38px;
    background: #222;
}

/* terminal */
.nm-terminal {
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.nm-terminal-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 22px;
    border-bottom: 1px solid #1a1a1a;
}

.nm-dots { display: flex; gap: 7px; }

.nm-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.nm-dots span:nth-child(1) { background: #ef4444; }
.nm-dots span:nth-child(2) { background: #eab308; }
.nm-dots span:nth-child(3) { background: #22c55e; }

.nm-terminal-label {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
}

.nm-terminal-body { padding: 8px 10px; }

.nm-feed-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border-radius: 12px;
    transition: background 0.3s;
}

.nm-feed-row:hover { background: rgba(255, 255, 255, 0.025); }

.nm-feed-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(234, 179, 8, 0.08);
    border: 1px solid rgba(234, 179, 8, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nm-feed-icon svg { stroke: #eab308; }
.nm-feed-info { flex: 1; }

.nm-feed-name {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 2px;
}

.nm-feed-status { font-size: 11px; font-weight: 500; }
.nm-live { color: #22c55e; }
.nm-sync { color: #eab308; }
.nm-ok { color: #14b8a6; }

.nm-feed-val {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

/* =========================
   SERVICES
========================= */
.nm-srv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.nm-srv-card {
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-radius: 18px;
    padding: 34px 28px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.nm-srv-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #eab308, transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.nm-srv-card:hover {
    border-color: rgba(234, 179, 8, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 18px 50px rgba(234, 179, 8, 0.05);
}

.nm-srv-card:hover::before { opacity: 1; }

.nm-srv-num {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 46px;
    font-weight: 800;
    color: rgba(234, 179, 8, 0.04);
    line-height: 1;
    transition: color 0.3s;
}

.nm-srv-card:hover .nm-srv-num { color: rgba(234, 179, 8, 0.1); }

.nm-srv-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(234, 179, 8, 0.08);
    border: 1px solid rgba(234, 179, 8, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.35s;
}

.nm-srv-icon svg {
    stroke: #eab308;
    transition: transform 0.3s;
}

.nm-srv-card:hover .nm-srv-icon {
    background: rgba(234, 179, 8, 0.14);
    border-color: rgba(234, 179, 8, 0.3);
}

.nm-srv-card:hover .nm-srv-icon svg { transform: scale(1.1); }

.nm-srv-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.nm-srv-card:hover h3 { color: #eab308; }

.nm-srv-card > p {
    font-size: 13.5px;
    color: #9ca3af;
    line-height: 1.75;
    margin-bottom: 16px;
}

.nm-srv-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nm-srv-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #9ca3af;
}

.nm-srv-list li svg { stroke: #eab308; flex-shrink: 0; }

/* =========================
   WHY CHOOSE
========================= */
.nm-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.nm-why-card {
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-radius: 16px;
    padding: 28px 24px;
    transition: all 0.4s ease;
}

.nm-why-card:hover {
    border-color: rgba(234, 179, 8, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(234, 179, 8, 0.04);
}

.nm-why-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 18px;
}

.nm-why-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(234, 179, 8, 0.08);
    border: 1px solid rgba(234, 179, 8, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s;
}

.nm-why-icon svg { stroke: #eab308; }

.nm-why-card:hover .nm-why-icon {
    background: rgba(234, 179, 8, 0.14);
    border-color: rgba(234, 179, 8, 0.3);
}

.nm-why-num {
    font-size: 13px;
    font-weight: 700;
    color: rgba(234, 179, 8, 0.15);
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nm-why-card:hover .nm-why-num { color: rgba(234, 179, 8, 0.35); }

.nm-why-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.nm-why-card:hover h3 { color: #eab308; }

.nm-why-card p {
    font-size: 13.5px;
    color: #9ca3af;
    line-height: 1.7;
}

/* =========================
   TABLE
========================= */
.nm-table-wrap {
    max-width: 900px;
    margin: 0 auto;
}

.nm-table {
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-radius: 18px;
    overflow: hidden;
}

.nm-table-header {
    display: flex;
    padding: 18px 28px;
    background: rgba(234, 179, 8, 0.04);
    border-bottom: 1px solid #1a1a1a;
}

.nm-table-header .nm-table-col {
    font-size: 13px;
    font-weight: 600;
    color: #eab308;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nm-table-row {
    display: flex;
    padding: 20px 28px;
    border-bottom: 1px solid #111;
    transition: background 0.3s;
}

.nm-table-row:last-child { border-bottom: none; }
.nm-table-row:hover { background: rgba(234, 179, 8, 0.02); }

.nm-col-case {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
}

.nm-col-benefit {
    flex: 1.2;
    font-size: 14px;
    color: #9ca3af;
    line-height: 1.6;
    display: flex;
    align-items: center;
}

.nm-col-case strong {
    font-size: 14px;
    color: #fff;
}

.nm-table-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(234, 179, 8, 0.08);
    border: 1px solid rgba(234, 179, 8, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nm-table-icon svg { stroke: #eab308; }

/* scenario */
.nm-scenario {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-top: 30px;
    padding: 30px;
    background: #0a0a0a;
    border: 1px solid rgba(234, 179, 8, 0.15);
    border-radius: 16px;
}

.nm-scenario-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(234, 179, 8, 0.1);
    border: 1px solid rgba(234, 179, 8, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nm-scenario-icon svg { stroke: #eab308; }

.nm-scenario h3 {
    font-size: 16px;
    font-weight: 600;
    color: #eab308;
    margin-bottom: 8px;
}

.nm-scenario p {
    font-size: 14px;
    color: #9ca3af;
    line-height: 1.7;
}

/* =========================
   TECHNICAL
========================= */
.nm-tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.nm-tech-card {
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-radius: 16px;
    padding: 28px 24px;
    transition: all 0.4s ease;
}

.nm-tech-card:hover {
    border-color: rgba(234, 179, 8, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(234, 179, 8, 0.04);
}

.nm-tech-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.nm-tech-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(234, 179, 8, 0.08);
    border: 1px solid rgba(234, 179, 8, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s;
}

.nm-tech-icon svg { stroke: #eab308; }

.nm-tech-card:hover .nm-tech-icon {
    background: rgba(234, 179, 8, 0.14);
    border-color: rgba(234, 179, 8, 0.3);
}

.nm-tech-label {
    font-size: 11px;
    font-weight: 600;
    color: rgba(234, 179, 8, 0.4);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.nm-tech-card:hover .nm-tech-label { color: rgba(234, 179, 8, 0.7); }

.nm-tech-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.nm-tech-card:hover h3 { color: #eab308; }

.nm-tech-card > p {
    font-size: 13.5px;
    color: #9ca3af;
    line-height: 1.7;
    margin-bottom: 14px;
}

.nm-tech-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nm-tech-list li {
    font-size: 12.5px;
    color: #6b7280;
    padding-left: 16px;
    position: relative;
}

.nm-tech-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(234, 179, 8, 0.4);
}

/* =========================
   SEO CARDS
========================= */
.nm-seo-card {
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
    transition: all 0.4s;
}

.nm-seo-card:hover {
    border-color: rgba(234, 179, 8, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(234, 179, 8, 0.04);
}

.nm-seo-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: rgba(234, 179, 8, 0.08);
    border: 1px solid rgba(234, 179, 8, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    transition: all 0.35s;
}

.nm-seo-icon svg { stroke: #eab308; }

.nm-seo-card:hover .nm-seo-icon {
    background: rgba(234, 179, 8, 0.14);
    border-color: rgba(234, 179, 8, 0.3);
}

.nm-seo-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.nm-seo-card:hover h3 { color: #eab308; }

.nm-seo-card p {
    font-size: 13px;
    color: #9ca3af;
    line-height: 1.7;
}

/* =========================
   TIMELINE
========================= */
.nm-timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    padding-left: 40px;
}

.nm-timeline::before {
    content: "";
    position: absolute;
    left: 14px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, rgba(234, 179, 8, 0.3), rgba(234, 179, 8, 0.05));
}

.nm-tl-item {
    position: relative;
    padding-bottom: 36px;
}

.nm-tl-item:last-child { padding-bottom: 0; }

.nm-tl-dot {
    position: absolute;
    left: -33px;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #000;
    border: 2px solid rgba(234, 179, 8, 0.4);
    transition: all 0.3s;
    z-index: 1;
}

.nm-tl-item:hover .nm-tl-dot {
    background: #eab308;
    border-color: #eab308;
    box-shadow: 0 0 12px rgba(234, 179, 8, 0.3);
}

.nm-tl-content {
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-radius: 14px;
    padding: 22px 26px;
    transition: all 0.35s;
}

.nm-tl-item:hover .nm-tl-content {
    border-color: rgba(234, 179, 8, 0.2);
}

.nm-tl-badge {
    display: inline-block;
    padding: 3px 12px;
    background: rgba(234, 179, 8, 0.08);
    border: 1px solid rgba(234, 179, 8, 0.15);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    color: #eab308;
    margin-bottom: 10px;
}

.nm-tl-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
    transition: color 0.3s;
}

.nm-tl-item:hover .nm-tl-content h3 { color: #eab308; }

.nm-tl-content p {
    font-size: 13.5px;
    color: #9ca3af;
    line-height: 1.6;
}

/* =========================
   FAQ
========================= */
.nm-faq-wrap {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nm-faq {
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.35s;
}

.nm-faq:hover,
.nm-faq.active {
    border-color: rgba(234, 179, 8, 0.25);
}

.nm-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    gap: 14px;
    transition: background 0.3s;
}

.nm-faq-q:hover { background: rgba(255, 255, 255, 0.015); }

.nm-faq-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nm-faq-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #eab308;
    flex-shrink: 0;
    opacity: 0.4;
    transition: opacity 0.3s;
}

.nm-faq.active .nm-faq-dot { opacity: 1; }

.nm-faq-left span {
    font-size: 15px;
    font-weight: 500;
    color: #fff;
}

.nm-faq-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: rgba(234, 179, 8, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.35s;
}

.nm-faq-icon svg {
    stroke: #eab308;
    transition: transform 0.35s;
}

.nm-faq.active .nm-faq-icon { background: rgba(234, 179, 8, 0.12); }
.nm-faq.active .nm-faq-icon svg { transform: rotate(45deg); }

.nm-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                padding 0.45s ease;
}

.nm-faq.active .nm-faq-a {
    max-height: 280px;
    padding: 0 24px 20px 44px;
}

.nm-faq-a p {
    font-size: 14px;
    color: #9ca3af;
    line-height: 1.8;
}

/* =========================
   CTA
========================= */
.nm-cta {
    background: linear-gradient(135deg, #0a0a0a, #111);
    border: 1px solid #1a1a1a;
    border-radius: 22px;
    padding: 55px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.nm-cta-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: #eab308;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.05;
    top: -80px;
    left: -80px;
    pointer-events: none;
}

.nm-cta-content {
    position: relative;
    z-index: 1;
    flex: 1;
}

.nm-cta-content h2 {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
}

.nm-cta-content p {
    font-size: 15px;
    color: #9ca3af;
    line-height: 1.7;
    margin-bottom: 26px;
    max-width: 480px;
}

.nm-cta-rings {
    position: relative;
    width: 170px;
    height: 170px;
    flex-shrink: 0;
}

.nm-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(234, 179, 8, 0.1);
}

.nm-ring-1 {
    width: 170px;
    height: 170px;
    top: 0;
    left: 0;
    animation: nmPulse 3s ease-in-out infinite;
}

.nm-ring-2 {
    width: 120px;
    height: 120px;
    top: 25px;
    left: 25px;
    border-color: rgba(234, 179, 8, 0.15);
    animation: nmPulse 3s ease-in-out 0.5s infinite;
}

.nm-ring-3 {
    width: 70px;
    height: 70px;
    top: 50px;
    left: 50px;
    border-color: rgba(234, 179, 8, 0.2);
    animation: nmPulse 3s ease-in-out 1s infinite;
}

.nm-ring-center {
    position: absolute;
    width: 52px;
    height: 52px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(234, 179, 8, 0.1);
    border: 1px solid rgba(234, 179, 8, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nm-ring-center svg { stroke: #eab308; }

@keyframes nmPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.08); opacity: 0.5; }
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
    .nm-hero-wrap {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .nm-hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .nm-hero-title { font-size: 34px; }
    .nm-hero-left { text-align: center; }
    .nm-hero-desc { max-width: 100%; }
    .nm-hero-btns { justify-content: center; }
    .nm-stats-row { justify-content: center; }

    .nm-terminal {
        max-width: 460px;
        margin: 0 auto;
    }

    .nm-srv-grid { grid-template-columns: 1fr; }
    .nm-why-grid { grid-template-columns: repeat(2, 1fr); }
    .nm-tech-grid { grid-template-columns: repeat(2, 1fr); }
    .nm-section-title { font-size: 28px; }

    .nm-cta {
        flex-direction: column;
        text-align: center;
        padding: 40px 28px;
    }

    .nm-cta-content p { max-width: 100%; }

    .nm-table-row { flex-direction: column; gap: 8px; }
    .nm-table-header { display: none; }
    .nm-col-benefit { padding-left: 48px; }

    .nm-scenario { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
    .nm-hero { padding: 90px 0 50px; }
    .nm-hero-title { font-size: 26px; }
    .nm-hero-desc { font-size: 14px; }

    .nm-stats-row { flex-direction: column; gap: 14px; }
    .nm-stat-line { width: 40px; height: 1px; }
    .nm-hero-btns { flex-direction: column; align-items: center; }

    .nm-section-title { font-size: 22px; }
    .nm-section-desc { font-size: 13px; }

    .nm-why-grid { grid-template-columns: 1fr; }
    .nm-tech-grid { grid-template-columns: 1fr; }
    .nm-srv-card { padding: 26px 20px; }

    .nm-cta { padding: 34px 20px; }
    .nm-cta-content h2 { font-size: 22px; }

    .nm-cta-rings { width: 130px; height: 130px; }
    .nm-ring-1 { width: 130px; height: 130px; }
    .nm-ring-2 { width: 90px; height: 90px; top: 20px; left: 20px; }
    .nm-ring-3 { width: 50px; height: 50px; top: 40px; left: 40px; }

    .nm-faq-q { padding: 16px 18px; }
    .nm-faq-left span { font-size: 13.5px; }
    .nm-faq.active .nm-faq-a { padding: 0 18px 16px 34px; }

    .nm-timeline { padding-left: 34px; }
    .nm-tl-dot { left: -27px; }
}