@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --sun: #E8A020;
  --sun-light: #FDF3E0;
  --forest: #2D6A4F;
  --slate: #2C2C2A;
  --muted: #888780;
  --bg: #F9F7F2;
  --white: #FFFFFF;
  --border: rgba(44, 44, 42, 0.1);
  --monitor: #0D2D4A;
}

.nd-page { font-family: 'DM Sans', sans-serif; background: var(--bg); color: var(--slate); overflow-x: hidden; }

/* NAV */
.nd-nav { display: flex; align-items: center; justify-content: space-between; padding: 20px 40px; background: var(--white); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; }
.nd-logo { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 800; color: var(--slate); letter-spacing: -0.5px; }
.nd-logo span { color: var(--sun); }
.nd-nav-links { display: flex; gap: 32px; list-style: none; margin: 0; padding: 0; }
.nd-nav-links a { font-size: 14px; color: var(--muted); text-decoration: none; font-weight: 400; transition: color .2s; }
.nd-nav-links a:hover { color: var(--slate); }
.nd-nav-cta { background: var(--sun); color: var(--white); border: none; padding: 10px 22px; border-radius: 8px; font-size: 14px; font-weight: 500; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: background .2s; white-space: nowrap; text-decoration: none; }
.nd-nav-cta:hover { background: #C8871A; }
.nd-nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; border-radius: 6px; transition: background .2s; }
.nd-nav-toggle:hover { background: var(--sun-light); }
.nd-nav-toggle span { display: block; width: 22px; height: 2px; background: var(--slate); border-radius: 2px; transition: transform .25s ease, opacity .25s ease; }
.nd-nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nd-nav-toggle.active span:nth-child(2) { opacity: 0; }
.nd-nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* HERO */
.nd-hero { display: grid; grid-template-columns: 1fr 420px; min-height: 560px; overflow: hidden; }
.nd-hero-left { background: var(--white); padding: 60px 40px; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid var(--border); }
.nd-badge { display: inline-flex; align-items: center; gap: 6px; background: var(--sun-light); color: #A06010; font-size: 12px; font-weight: 500; padding: 6px 12px; border-radius: 100px; margin-bottom: 24px; width: fit-content; }
.nd-badge-dot { width: 6px; height: 6px; background: var(--sun); border-radius: 50%; }
.nd-hero-h1 { font-family: 'Syne', sans-serif; font-size: 46px; font-weight: 800; line-height: 1.05; letter-spacing: -1.5px; color: var(--slate); margin-bottom: 20px; }
.nd-hero-h1 em { font-style: normal; color: var(--forest); }
.nd-hero-sub { font-size: 16px; color: var(--muted); line-height: 1.6; max-width: 380px; margin-bottom: 36px; font-weight: 300; }
.nd-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.nd-btn-primary { background: var(--forest); color: var(--white); border: none; padding: 14px 28px; border-radius: 10px; font-size: 15px; font-weight: 500; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: background .2s; }
.nd-btn-primary:hover { background: #1E4D38; }
.nd-btn-secondary { background: transparent; color: var(--slate); border: 1px solid var(--border); padding: 14px 28px; border-radius: 10px; font-size: 15px; font-weight: 400; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: border-color .2s; }
.nd-btn-secondary:hover { border-color: var(--muted); }
.nd-hero-right { background: linear-gradient(160deg, #1A3D2B 0%, #0D2619 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 40px; position: relative; overflow: hidden; }
.nd-house-svg { position: absolute; top: 30px; left: 50%; transform: translateX(-50%); width: 240px; opacity: .9; }
.nd-hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 180px; }
.nd-stat { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: 10px; padding: 16px; }
.nd-stat-num { font-family: 'Syne', sans-serif; font-size: 26px; font-weight: 700; color: var(--sun); display: block; }
.nd-stat-label { font-size: 12px; color: rgba(255,255,255,.5); margin-top: 2px; display: block; line-height: 1.4; }

/* SERVICES */
.nd-section { padding: 72px 40px; }
.nd-section-tag { font-size: 12px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.nd-section-h2 { font-family: 'Syne', sans-serif; font-size: 32px; font-weight: 700; color: var(--slate); letter-spacing: -.8px; margin-bottom: 48px; max-width: 480px; line-height: 1.15; }
.nd-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.nd-service-card { background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 28px; position: relative; overflow: hidden; cursor: pointer; transition: border-color .2s, transform .2s, box-shadow .2s; width: 100%; min-width: 0; }
.nd-service-card:hover { border-color: rgba(44,44,42,.25); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.06); }
.nd-service-card.featured { background: var(--forest); border-color: transparent; color: white; }
.nd-service-card.monitor-card { background: var(--monitor); border-color: transparent; }
.nd-service-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 18px; flex-shrink: 0; }
.nd-service-card:not(.featured):not(.monitor-card) .nd-service-icon { background: var(--sun-light); }
.nd-service-card.featured .nd-service-icon { background: rgba(255,255,255,.15); }
.nd-service-card.monitor-card .nd-service-icon { background: rgba(255,255,255,.08); }
.nd-service-title { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700; margin-bottom: 8px; letter-spacing: -.3px; }
.nd-service-card.featured .nd-service-title, .nd-service-card.monitor-card .nd-service-title { color: white; }
.nd-service-desc { font-size: 13px; color: var(--muted); line-height: 1.6; font-weight: 300; word-wrap: break-word; overflow-wrap: break-word; }
.nd-service-card.featured .nd-service-desc { color: rgba(255,255,255,.65); }
.nd-service-card.monitor-card .nd-service-desc { color: rgba(255,255,255,.5); }
.nd-service-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-size: 13px; font-weight: 500; color: var(--forest); text-decoration: none; transition: gap .2s; }
.nd-service-card.featured .nd-service-link { color: var(--sun); }
.nd-service-card.monitor-card .nd-service-link { color: #5BB8FF; }
.nd-service-link:hover { gap: 10px; }

/* MONITOR MINI CHART */
.nd-mini-chart { margin-top: 14px; display: flex; align-items: flex-end; gap: 3px; height: 36px; }
.nd-bar { border-radius: 3px 3px 0 0; flex: 1; background: rgba(91,184,255,.25); transition: background .2s; }
.nd-bar.active { background: rgba(91,184,255,.8); }
.nd-monitor-live { display: inline-flex; align-items: center; gap: 5px; margin-bottom: 10px; }
.nd-live-dot { width: 6px; height: 6px; background: #4AE58A; border-radius: 50%; animation: pulse 1.5s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .3; } }
.nd-live-text { font-size: 11px; color: #4AE58A; font-weight: 500; letter-spacing: .5px; }

/* MONITORING SECTION */
.nd-monitoring { background: var(--monitor); padding: 72px 40px; }
.nd-monitoring .nd-section-tag { color: rgba(255,255,255,.35); }
.nd-monitoring .nd-section-h2 { color: white; max-width: 520px; }
.nd-monitoring-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.nd-monitor-panel { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: 14px; padding: 24px; }
.nd-monitor-panel-title { font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 600; color: rgba(255,255,255,.5); letter-spacing: .5px; text-transform: uppercase; margin-bottom: 20px; }
.nd-kpi-row { display: flex; gap: 12px; margin-bottom: 20px; }
.nd-kpi { flex: 1; background: rgba(255,255,255,.06); border-radius: 10px; padding: 14px; }
.nd-kpi-val { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 700; color: var(--sun); }
.nd-kpi-lbl { font-size: 11px; color: rgba(255,255,255,.4); margin-top: 3px; }
.nd-chart-area { height: 80px; display: flex; align-items: flex-end; gap: 4px; }
.nd-chart-bar { border-radius: 4px 4px 0 0; flex: 1; }
.nd-monitor-feature-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.nd-monitor-feature { display: flex; align-items: flex-start; gap: 12px; }
.nd-monitor-feature-icon { width: 32px; height: 32px; border-radius: 8px; background: rgba(91,184,255,.12); display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; margin-top: 1px; }
.nd-monitor-feature-text strong { display: block; font-size: 14px; font-weight: 500; color: rgba(255,255,255,.85); margin-bottom: 2px; }
.nd-monitor-feature-text span { font-size: 12px; color: rgba(255,255,255,.4); line-height: 1.5; }
.nd-app-preview { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 14px; padding: 20px; display: flex; gap: 16px; align-items: center; }
.nd-app-icon { width: 56px; height: 56px; background: var(--forest); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 26px; flex-shrink: 0; }
.nd-app-info strong { font-size: 15px; font-weight: 600; color: white; display: block; margin-bottom: 4px; }
.nd-app-info span { font-size: 12px; color: rgba(255,255,255,.4); }
.nd-app-badges { display: flex; gap: 8px; margin-top: 10px; }
.nd-app-badge { font-size: 11px; padding: 4px 10px; border-radius: 100px; border: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.5); }

/* WHY */
.nd-why { background: var(--slate); padding: 72px 40px; }
.nd-why .nd-section-tag { color: rgba(255,255,255,.4); }
.nd-why .nd-section-h2 { color: white; }
.nd-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.nd-pillar { border-top: 2px solid rgba(255,255,255,.12); padding-top: 24px; }
.nd-pillar-num { font-family: 'Syne', sans-serif; font-size: 40px; font-weight: 800; color: var(--sun); opacity: .4; line-height: 1; margin-bottom: 12px; }
.nd-pillar-title { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 600; color: white; margin-bottom: 8px; }
.nd-pillar-text { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.7; font-weight: 300; }

/* PROCESS */
.nd-process { background: var(--white); padding: 72px 40px; }
.nd-steps { display: flex; gap: 0; position: relative; }
.nd-steps::before { content: ''; position: absolute; top: 24px; left: 48px; right: 48px; height: 1px; background: var(--border); z-index: 0; }
.nd-step { flex: 1; text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.nd-step-circle { width: 48px; height: 48px; border-radius: 50%; background: var(--bg); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700; color: var(--forest); }
.nd-step-title { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 600; color: var(--slate); margin-bottom: 8px; }
.nd-step-text { font-size: 12px; color: var(--muted); line-height: 1.6; font-weight: 300; }

/* CTA */
.nd-cta { background: var(--sun); padding: 72px 40px; text-align: center; }
.nd-cta-h2 { font-family: 'Syne', sans-serif; font-size: 36px; font-weight: 800; color: var(--slate); letter-spacing: -1px; margin-bottom: 12px; }
.nd-cta-sub { font-size: 16px; color: rgba(44,44,42,.65); margin-bottom: 32px; font-weight: 300; }
.nd-cta-form { display: flex; gap: 10px; max-width: 440px; margin: 0 auto; }
.nd-cta-input { flex: 1; padding: 14px 18px; border-radius: 10px; border: none; font-size: 15px; font-family: 'DM Sans', sans-serif; outline: none; background: white; color: var(--slate); }
.nd-cta-submit { background: var(--slate); color: white; border: none; padding: 14px 24px; border-radius: 10px; font-size: 14px; font-weight: 500; cursor: pointer; font-family: 'DM Sans', sans-serif; white-space: nowrap; transition: background .2s, opacity .2s; }
.nd-cta-submit:hover { background: #444; }
.nd-cta-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.nd-cta-status { margin-top: 16px; font-size: 14px; font-weight: 500; min-height: 20px; }
.nd-cta-status.success { color: #1a5c3a; }
.nd-cta-status.error { color: #8b2020; }

/* FOOTER */
.nd-footer { background: var(--slate); padding: 32px 40px; display: flex; align-items: center; justify-content: space-between; }
.nd-footer-logo { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 800; color: white; }
.nd-footer-logo span { color: var(--sun); }
.nd-footer-text { font-size: 12px; color: rgba(255,255,255,.35); }
.nd-footer-links { display: flex; gap: 20px; list-style: none; }
.nd-footer-links a { font-size: 12px; color: rgba(255,255,255,.35); text-decoration: none; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .nd-hero { grid-template-columns: 1fr; }
  .nd-hero-right { min-height: 300px; }
  .nd-hero-stats { margin-top: 180px; }
  .nd-services-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .nd-service-card.monitor-card { grid-column: span 2; }
  .nd-monitoring-grid { grid-template-columns: 1fr; }
  .nd-monitor-panel { grid-column: auto !important; }
  .nd-app-preview { flex-direction: column; text-align: center; }
  .nd-app-info { text-align: center; }
  .nd-app-badges { justify-content: center; }
}

@media (max-width: 768px) {
  .nd-nav { padding: 12px 20px; }
  .nd-nav-links { gap: 16px; }
  .nd-nav-links a { font-size: 13px; }
  .nd-nav-cta { padding: 8px 16px; font-size: 13px; }
  .nd-section { padding: 48px 20px; }
  .nd-section-tag { font-size: 11px; letter-spacing: 1.2px; }
  .nd-section-h2 { font-size: 26px; max-width: 100%; margin-bottom: 32px; letter-spacing: -0.5px; }
  .nd-services-grid { grid-template-columns: 1fr !important; gap: 12px; }
  .nd-service-card { padding: 22px; border-radius: 12px; grid-column: auto !important; width: 100%; }
  .nd-service-card:hover { transform: none; box-shadow: none; }
  .nd-service-icon { width: 40px; height: 40px; font-size: 18px; margin-bottom: 14px; border-radius: 10px; }
  .nd-service-title { font-size: 15px; margin-bottom: 6px; }
  .nd-service-desc { font-size: 13px; line-height: 1.55; }
  .nd-service-link { font-size: 13px; margin-top: 14px; }
  .nd-mini-chart { height: 32px; margin-top: 12px; }
  .nd-hero-left { padding: 32px 20px; }
  .nd-hero-h1 { font-size: 32px; }
  .nd-hero-sub { font-size: 14px; max-width: 100%; }
  .nd-why { padding: 48px 20px; }
  .nd-pillars { grid-template-columns: 1fr; gap: 32px; }
  .nd-process { padding: 48px 20px; }
  .nd-steps { flex-direction: column; gap: 24px; }
  .nd-steps::before { display: none; }
  .nd-step { text-align: left; padding: 0; display: flex; gap: 16px; align-items: flex-start; }
  .nd-step-circle { margin: 0; flex-shrink: 0; }
  .nd-step-title { margin-bottom: 4px; }
  .nd-cta { padding: 48px 20px; }
  .nd-cta-h2 { font-size: 28px; }
  .nd-cta-form { flex-direction: column; max-width: 100%; }
  .nd-cta-submit { width: 100%; }
  .nd-footer { padding: 24px 20px; flex-direction: column; gap: 16px; text-align: center; }
  .nd-footer-links { justify-content: center; flex-wrap: wrap; }
  .nd-monitoring { padding: 48px 20px; }
  .nd-kpi-row { flex-direction: column; }
  .nd-hero-right { padding: 24px; min-height: 280px; }
  .nd-house-svg { width: 140px; top: 16px; }
  .nd-hero-stats { margin-top: 130px; }
  .nd-monitoring-grid { gap: 16px; }
  .nd-monitor-panel { padding: 16px; }
  .nd-monitor-panel-title { font-size: 12px; margin-bottom: 14px; }
  .nd-kpi-val { font-size: 18px; }
  .nd-kpi-lbl { font-size: 10px; }
  .nd-app-preview { padding: 14px; gap: 12px; }
  .nd-app-icon { width: 44px; height: 44px; font-size: 20px; }
  .nd-app-info strong { font-size: 13px; }
  .nd-app-info span { font-size: 11px; }
  .nd-app-badge { font-size: 10px; padding: 3px 8px; }
  .nd-monitor-feature-icon { width: 28px; height: 28px; font-size: 13px; }
  .nd-monitor-feature-text strong { font-size: 13px; }
  .nd-monitor-feature-text span { font-size: 11px; }
  .nd-monitor-feature { gap: 10px; }
  .nd-chart-area { height: 60px; }
  .nd-pillar-num { font-size: 32px; }
  .nd-pillar-title { font-size: 15px; }
  .nd-pillar-text { font-size: 12px; }
  .nd-step-circle { width: 40px; height: 40px; font-size: 14px; }
  .nd-step-title { font-size: 13px; }
  .nd-step-text { font-size: 11px; }
  .nd-cta-sub { font-size: 14px; }
  .nd-cta-input { padding: 12px 14px; font-size: 14px; }
  .nd-cta-submit { padding: 12px 20px; font-size: 13px; }
}

@media (max-width: 480px) {
  .nd-nav { padding: 12px 16px; }
  .nd-logo { font-size: 16px; }
  .nd-nav-toggle { display: flex; order: 2; }
  .nd-nav-cta { order: 3; font-size: 12px; padding: 8px 14px; }
  .nd-nav-links { display: none; position: fixed; top: 57px; left: 0; right: 0; bottom: 0; background: var(--white); flex-direction: column; padding: 24px 20px; gap: 0; z-index: 99; overflow-y: auto; }
  .nd-nav-links.nd-nav-open { display: flex; animation: navSlideIn .2s ease; }
  @keyframes navSlideIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
  .nd-nav-links li { border-bottom: 1px solid var(--border); }
  .nd-nav-links li:last-child { border-bottom: none; }
  .nd-nav-links a { display: block; padding: 16px 0; font-size: 16px; color: var(--slate); font-weight: 500; }
  .nd-nav-links a:hover { color: var(--sun); }
  .nd-hero { min-height: auto; }
  .nd-hero-left { padding: 28px 16px; }
  .nd-hero-h1 { font-size: 26px; letter-spacing: -0.8px; }
  .nd-hero-sub { font-size: 13px; line-height: 1.5; margin-bottom: 24px; }
  .nd-badge { font-size: 11px; padding: 5px 10px; margin-bottom: 18px; }
  .nd-hero-btns { flex-direction: column; gap: 8px; }
  .nd-btn-primary, .nd-btn-secondary { width: 100%; text-align: center; padding: 12px 20px; font-size: 14px; }
  .nd-hero-right { min-height: 240px; padding: 20px 16px; }
  .nd-house-svg { width: 120px; top: 12px; }
  .nd-hero-stats { margin-top: 110px; gap: 8px; }
  .nd-stat { padding: 12px; }
  .nd-stat-num { font-size: 18px; }
  .nd-stat-label { font-size: 10px; }
  .nd-section { padding: 32px 16px; }
  .nd-section-tag { font-size: 10px; letter-spacing: 1px; margin-bottom: 6px; }
  .nd-section-h2 { font-size: 20px; margin-bottom: 24px; letter-spacing: -0.3px; line-height: 1.2; }
  .nd-service-card { padding: 16px; border-radius: 10px; }
  .nd-service-icon { width: 34px; height: 34px; font-size: 15px; margin-bottom: 10px; border-radius: 8px; }
  .nd-service-title { font-size: 14px; margin-bottom: 4px; letter-spacing: -0.2px; }
  .nd-service-desc { font-size: 12px; line-height: 1.5; }
  .nd-service-link { font-size: 12px; margin-top: 10px; }
  .nd-mini-chart { height: 24px; margin-top: 8px; gap: 2px; }
  .nd-why { padding: 36px 16px; }
  .nd-pillar { padding-top: 18px; }
  .nd-pillar-num { font-size: 28px; margin-bottom: 8px; }
  .nd-pillar-title { font-size: 14px; margin-bottom: 6px; }
  .nd-pillar-text { font-size: 12px; line-height: 1.6; }
  .nd-process { padding: 36px 16px; }
  .nd-step { gap: 12px; }
  .nd-step-circle { width: 36px; height: 36px; font-size: 13px; }
  .nd-step-title { font-size: 13px; margin-bottom: 2px; }
  .nd-step-text { font-size: 11px; }
  .nd-monitoring { padding: 36px 16px; }
  .nd-monitor-panel { padding: 14px; border-radius: 12px; }
  .nd-monitor-panel-title { font-size: 11px; margin-bottom: 12px; }
  .nd-kpi { padding: 10px; border-radius: 8px; }
  .nd-kpi-val { font-size: 16px; }
  .nd-kpi-lbl { font-size: 9px; }
  .nd-chart-area { height: 50px; gap: 3px; }
  .nd-monitor-feature { gap: 8px; }
  .nd-monitor-feature-icon { width: 24px; height: 24px; font-size: 12px; border-radius: 6px; }
  .nd-monitor-feature-text strong { font-size: 12px; margin-bottom: 1px; }
  .nd-monitor-feature-text span { font-size: 10px; }
  .nd-monitor-feature-list { gap: 10px; }
  .nd-app-preview { padding: 12px; gap: 10px; border-radius: 12px; }
  .nd-app-icon { width: 40px; height: 40px; font-size: 18px; border-radius: 10px; }
  .nd-app-info strong { font-size: 13px; }
  .nd-app-info span { font-size: 10px; }
  .nd-app-badges { gap: 6px; margin-top: 8px; }
  .nd-app-badge { font-size: 9px; padding: 2px 6px; }
  .nd-cta { padding: 36px 16px; }
  .nd-cta-h2 { font-size: 22px; letter-spacing: -0.5px; margin-bottom: 8px; }
  .nd-cta-sub { font-size: 13px; margin-bottom: 20px; line-height: 1.5; }
  .nd-cta-form { gap: 8px; }
  .nd-cta-input { padding: 12px 14px; font-size: 14px; border-radius: 8px; }
  .nd-cta-submit { padding: 12px 18px; font-size: 13px; border-radius: 8px; }
  .nd-footer { padding: 20px 16px; gap: 12px; }
  .nd-footer-logo { font-size: 14px; }
  .nd-footer-text { font-size: 10px; }
  .nd-footer-links { gap: 12px; }
  .nd-footer-links a { font-size: 11px; }
}
