/* ═══════════════════════════════════════════════════════════════════
   NMS — Services Page (Main Listing)
   /services — the most important page.
   All selectors scoped under .nmsh-sp-list to prevent global leaks.
   ═══════════════════════════════════════════════════════════════════ */

.elementor-widget-nmsh_services_page {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  overflow-x: clip !important;
}

.nmsh-sp-list {
  --spl-primary: var(--nms-accent, #057485);
  --spl-primary-deep: #045a66;
  --spl-ink: var(--nms-ink, #1a2332);
  --spl-muted: var(--nms-muted, #5a6b7d);
  --spl-bg: var(--nms-light, #f4f6f9);
  --spl-card: #ffffff;
  --spl-surface: var(--nms-light, #f4f6f9);
  --spl-border: var(--nms-border, #e2e8f0);
  --spl-accent: rgba(5,116,133,.06);
  --spl-radius: var(--nms-radius, 16px);
  --spl-radius-lg: 24px;
  --spl-shadow: var(--nms-shadow, 0 4px 24px rgba(0,0,0,.06));
  --spl-shadow-hover: var(--nms-shadow-hover, 0 12px 40px rgba(0,0,0,.1));
  font-family: var(--nms-font-sans, 'Nunito Sans', system-ui, sans-serif);
  color: var(--spl-ink);
  background: var(--spl-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

.nmsh-sp-list *,
.nmsh-sp-list *::before,
.nmsh-sp-list *::after { box-sizing: border-box; }

.nmsh-sp-list img { max-width: 100%; display: block; }
.nmsh-sp-list a { color: inherit; text-decoration: none; }

.nmsh-sp-list h1,
.nmsh-sp-list h2,
.nmsh-sp-list h3 {
  color: var(--spl-ink);
  letter-spacing: -.02em;
  line-height: 1.15;
  margin: 0;
}

.nmsh-sp-list p { margin: 0; color: var(--spl-muted); }
.nmsh-sp-list ul, .nmsh-sp-list ol { margin: 0; padding: 0; list-style: none; }

.nmsh-sp-list-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
@media(min-width:1024px) {
  .nmsh-sp-list-inner { padding: 0 40px; }
}

/* ── Eyebrow ── */
.nmsh-sp-list-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--spl-primary);
}
.nmsh-sp-list-eyebrow::before {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  background: rgba(5,116,133,.6);
}
.nmsh-sp-list-accent { color: var(--spl-primary); }

/* ── Buttons ── */
.nmsh-sp-list-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
  border: 1px solid transparent;
  text-decoration: none;
}
.nmsh-sp-list-btn--primary {
  background: var(--spl-primary);
  color: #fff;
  box-shadow: 0 6px 20px -10px rgba(5,116,133,.6);
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.nmsh-sp-list-btn--primary:hover {
  background: var(--spl-primary-deep);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px -8px rgba(5,116,133,.5);
}
.nmsh-sp-list-btn--secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.4);
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.nmsh-sp-list-btn--secondary:hover {
  border-color: #fff;
  background: rgba(255,255,255,.1);
  transform: translateY(-1px);
}
.nmsh-sp-list-btn--outline {
  background: transparent;
  color: var(--spl-ink);
  border-color: var(--spl-border);
  transition: border-color .2s ease, color .2s ease, transform .2s ease;
}
.nmsh-sp-list-btn--outline:hover {
  border-color: var(--spl-primary);
  color: var(--spl-primary);
  transform: translateY(-1px);
}


/* ═══════════════════════════════════════════════════════════════════
   1. BREADCRUMB
   ═══════════════════════════════════════════════════════════════════ */
.nmsh-sp-list-crumb {
  border-bottom: 1px solid var(--spl-border);
  background: var(--spl-bg);
  padding-top: 72px;
}
.nmsh-sp-list-crumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px 0;
  font-size: 14px;
  color: var(--spl-muted);
  list-style: none;
  margin: 0;
}
.nmsh-sp-list-crumb li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nmsh-sp-list-crumb li[aria-current] { color: var(--spl-ink); }
.nmsh-sp-list-crumb a {
  color: var(--spl-muted);
  text-decoration: none;
  transition: color .2s ease;
}
.nmsh-sp-list-crumb a:hover { color: var(--spl-ink); }


/* ═══════════════════════════════════════════════════════════════════
   2. HERO — Full-width with desktop + mobile images
   ═══════════════════════════════════════════════════════════════════ */
.nmsh-sp-list-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.nmsh-sp-list-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
.nmsh-sp-list-hero__bg--mobile { display: none; }

.nmsh-sp-list-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.nmsh-sp-list-hero__content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  width: 100%;
}
@media(min-width:1024px) {
  .nmsh-sp-list-hero__content { padding: 100px 40px; }
}
.nmsh-sp-list-hero__content .nmsh-sp-list-eyebrow { color: rgba(255,255,255,.85); }
.nmsh-sp-list-hero__content .nmsh-sp-list-eyebrow::before { background: rgba(255,255,255,.5); }

.nmsh-sp-list-hero h1 {
  margin-top: 20px;
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 600;
  font-family: var(--nms-font-display, 'Spartan', system-ui, sans-serif);
  color: #fff;
  max-width: 820px;
}
.nmsh-sp-list-hero h1 .nmsh-sp-list-accent { color: #5eead4; }

.nmsh-sp-list-hero__desc {
  margin-top: 20px;
  font-size: 18px;
  color: rgba(255,255,255,.85);
  max-width: 640px;
}
.nmsh-sp-list-hero__ctas {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Hero Stats Bar */
.nmsh-sp-list-hero-stats {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 560px;
}
@media(min-width:640px) {
  .nmsh-sp-list-hero-stats { grid-template-columns: repeat(4, 1fr); }
}
.nmsh-sp-list-hero-stats dt {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -.02em;
  color: #fff;
}
.nmsh-sp-list-hero-stats dd {
  margin: 4px 0 0;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.7);
}


/* ═══════════════════════════════════════════════════════════════════
   3. AUTHORITY STRIP
   ═══════════════════════════════════════════════════════════════════ */
.nmsh-sp-list-strip {
  background: var(--spl-surface);
  border-top: 1px solid var(--spl-border);
  border-bottom: 1px solid var(--spl-border);
}
.nmsh-sp-list-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px 48px;
  padding: 32px 0;
  align-items: center;
}
.nmsh-sp-list-strip-label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--spl-muted);
  margin: 0;
  flex-shrink: 0;
}
.nmsh-sp-list-strip ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 40px;
  font-size: 14px;
  font-weight: 500;
  color: var(--spl-ink);
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.nmsh-sp-list-strip li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nmsh-sp-list-strip li img {
  height: 40px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
}


/* ═══════════════════════════════════════════════════════════════════
   4. SERVICES GRID
   ═══════════════════════════════════════════════════════════════════ */
.nmsh-sp-list-section {
  padding: 96px 0;
  background: var(--spl-bg);
}
.nmsh-sp-list-section--alt {
  background: rgba(241,243,242,.6);
}
.nmsh-sp-list-section-head {
  max-width: 620px;
  margin-bottom: 48px;
}
.nmsh-sp-list-section-head--center {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.nmsh-sp-list-section-head--center .nmsh-sp-list-eyebrow {
  justify-content: center;
}
.nmsh-sp-list-section-head--center .nmsh-sp-list-eyebrow::before { display: none; }

.nmsh-sp-list-section-head h2 {
  margin-top: 20px;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  font-family: var(--nms-font-display, 'Spartan', system-ui, sans-serif);
}
.nmsh-sp-list-section-head p { margin-top: 16px; }

.nmsh-sp-list-svc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media(min-width:640px) {
  .nmsh-sp-list-svc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media(min-width:1024px) {
  .nmsh-sp-list-svc-grid { grid-template-columns: repeat(3, 1fr); }
}
.nmsh-sp-list-svc-card {
  background: var(--spl-card);
  border: 1px solid var(--spl-border);
  border-radius: var(--spl-radius);
  overflow: hidden;
  transition: border-color .3s ease, box-shadow .3s ease, transform .3s cubic-bezier(.22,.61,.36,1);
  position: relative;
  display: flex;
  flex-direction: column;
}
.nmsh-sp-list-svc-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5,116,133,.04), transparent);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
  border-radius: inherit;
}
.nmsh-sp-list-svc-card:hover {
  border-color: rgba(5,116,133,.4);
  box-shadow: var(--spl-shadow-hover);
  transform: translateY(-6px);
}
.nmsh-sp-list-svc-card:hover::after { opacity: 1; }

.nmsh-sp-list-svc-card__img {
  overflow: hidden;
  aspect-ratio: 16/10;
}
.nmsh-sp-list-svc-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.nmsh-sp-list-svc-card:hover .nmsh-sp-list-svc-card__img img { transform: scale(1.06); }

.nmsh-sp-list-svc-card__body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.nmsh-sp-list-svc-card__body h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  font-family: var(--nms-font-display, 'Spartan', system-ui, sans-serif);
}
.nmsh-sp-list-svc-card__body p {
  font-size: 14px;
  margin: 0;
  flex: 1;
}
.nmsh-sp-list-svc-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--spl-primary);
  transition: gap .2s ease;
}
.nmsh-sp-list-svc-card__link svg {
  width: 18px;
  height: 18px;
  transition: transform .2s ease;
}
.nmsh-sp-list-svc-card:hover .nmsh-sp-list-svc-card__link { gap: 12px; }
.nmsh-sp-list-svc-card:hover .nmsh-sp-list-svc-card__link svg { transform: translateX(3px); }
a.nmsh-sp-list-svc-card { color: inherit; }


/* ═══════════════════════════════════════════════════════════════════
   5. WHY CHOOSE US
   ═══════════════════════════════════════════════════════════════════ */
.nmsh-sp-list-split {
  display: grid;
  gap: 56px;
  grid-template-columns: 1fr;
}
@media(min-width:1024px) {
  .nmsh-sp-list-split { grid-template-columns: 5fr 7fr; gap: 64px; }
}
.nmsh-sp-list-text-lg { font-size: 18px; }

.nmsh-sp-list-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media(min-width:640px) {
  .nmsh-sp-list-features { grid-template-columns: 1fr 1fr; }
}
.nmsh-sp-list-feature {
  display: flex;
  gap: 16px;
}
.nmsh-sp-list-feature__icon {
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--spl-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--spl-primary);
}
.nmsh-sp-list-feature__icon svg {
  width: 22px;
  height: 22px;
}
.nmsh-sp-list-feature h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}
.nmsh-sp-list-feature p {
  font-size: 14px;
}


/* ═══════════════════════════════════════════════════════════════════
   6. PROCESS
   ═══════════════════════════════════════════════════════════════════ */
.nmsh-sp-list-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 56px;
}
@media(min-width:640px) {
  .nmsh-sp-list-steps { grid-template-columns: repeat(2, 1fr); }
}
@media(min-width:1024px) {
  .nmsh-sp-list-steps { grid-template-columns: repeat(5, 1fr); }
}
.nmsh-sp-list-step-num {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--spl-primary);
}
.nmsh-sp-list-step h3 { margin-top: 12px; font-size: 18px; font-weight: 600; }
.nmsh-sp-list-step p { margin-top: 8px; font-size: 14px; }
.nmsh-sp-list-step-rule {
  margin-top: 24px;
  height: 1px;
  background: linear-gradient(to right, rgba(5,116,133,.4), var(--spl-border), transparent);
}


/* ═══════════════════════════════════════════════════════════════════
   7. SEO CONTENT
   ═══════════════════════════════════════════════════════════════════ */
.nmsh-sp-list-seo {
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr;
}
@media(min-width:1024px) {
  .nmsh-sp-list-seo { grid-template-columns: 1fr 1fr; gap: 64px; }
}
.nmsh-sp-list-seo h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 16px;
  font-family: var(--nms-font-display, 'Spartan', system-ui, sans-serif);
}
.nmsh-sp-list-seo p {
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 16px;
}
.nmsh-sp-list-seo p:last-child { margin-bottom: 0; }
.nmsh-sp-list-seo a {
  color: var(--spl-primary);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .2s ease;
}
.nmsh-sp-list-seo a:hover { color: var(--spl-primary-deep); }
.nmsh-sp-list-seo ul {
  margin-top: 12px;
  display: grid;
  gap: 8px;
}
.nmsh-sp-list-seo ul li {
  font-size: 15px;
  color: var(--spl-muted);
  padding-left: 20px;
  position: relative;
}
.nmsh-sp-list-seo ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--spl-primary);
}


/* ═══════════════════════════════════════════════════════════════════
   8. STATS
   ═══════════════════════════════════════════════════════════════════ */
.nmsh-sp-list-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  text-align: center;
}
@media(min-width:768px) {
  .nmsh-sp-list-stats { grid-template-columns: repeat(4, 1fr); }
}
.nmsh-sp-list-stat__value {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  font-family: var(--nms-font-display, 'Spartan', system-ui, sans-serif);
  color: var(--spl-primary);
  line-height: 1;
}
.nmsh-sp-list-stat__label {
  margin-top: 8px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--spl-muted);
}


/* ═══════════════════════════════════════════════════════════════════
   9. INDUSTRIES
   ═══════════════════════════════════════════════════════════════════ */
.nmsh-sp-list-ind-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media(min-width:640px) {
  .nmsh-sp-list-ind-grid { grid-template-columns: repeat(2, 1fr); }
}
@media(min-width:1024px) {
  .nmsh-sp-list-ind-grid { grid-template-columns: repeat(3, 1fr); }
}
.nmsh-sp-list-ind-card {
  background: var(--spl-card);
  border: 1px solid var(--spl-border);
  border-radius: var(--spl-radius);
  padding: 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}
.nmsh-sp-list-ind-card:hover {
  border-color: rgba(5,116,133,.4);
  box-shadow: var(--spl-shadow);
  transform: translateY(-3px);
}
.nmsh-sp-list-ind-card__icon {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--spl-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--spl-primary);
}
.nmsh-sp-list-ind-card__icon svg {
  width: 20px;
  height: 20px;
}
.nmsh-sp-list-ind-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}
.nmsh-sp-list-ind-card p {
  font-size: 13px;
  margin: 0;
}
a.nmsh-sp-list-ind-card { color: inherit; }


/* ═══════════════════════════════════════════════════════════════════
   10. FAQ
   ═══════════════════════════════════════════════════════════════════ */
.nmsh-sp-list-faq {
  background: var(--spl-card);
  border: 1px solid var(--spl-border);
  border-radius: var(--spl-radius);
  overflow: hidden;
}
.nmsh-sp-list-faq details {
  border-top: 1px solid var(--spl-border);
}
.nmsh-sp-list-faq details:first-child {
  border-top: none;
}
.nmsh-sp-list-faq summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-weight: 500;
  color: var(--spl-ink);
  transition: background .2s ease, padding-left .2s ease;
}
.nmsh-sp-list-faq summary::-webkit-details-marker { display: none; }
.nmsh-sp-list-faq summary:hover {
  background: rgba(5,116,133,.04);
  padding-left: 28px;
}
.nmsh-sp-list-faq .nmsh-sp-list-faq-plus {
  flex: none;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid var(--spl-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--spl-primary);
  transition: transform .25s ease;
  font-size: 18px;
}
.nmsh-sp-list-faq details[open] .nmsh-sp-list-faq-plus { transform: rotate(45deg); }
.nmsh-sp-list-faq .nmsh-sp-list-faq-answer {
  padding: 0 24px 24px;
  font-size: 14px;
  color: var(--spl-muted);
  line-height: 1.7;
}


/* ═══════════════════════════════════════════════════════════════════
   11. CTA
   ═══════════════════════════════════════════════════════════════════ */
.nmsh-sp-list-cta {
  background: var(--spl-card);
  border: 1px solid var(--spl-border);
  border-radius: 28px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media(min-width:640px) {
  .nmsh-sp-list-cta { padding: 56px; }
}
@media(min-width:1024px) {
  .nmsh-sp-list-cta { grid-template-columns: 5fr 7fr; gap: 64px; padding: 64px; }
}
.nmsh-sp-list-cta h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  margin-top: 20px;
  font-family: var(--nms-font-display, 'Spartan', system-ui, sans-serif);
}
.nmsh-sp-list-cta dl {
  margin-top: 32px;
  display: grid;
  gap: 16px;
  font-size: 14px;
}
.nmsh-sp-list-cta dt { color: var(--spl-muted); }
.nmsh-sp-list-cta dd { margin: 0; }
.nmsh-sp-list-cta dd a {
  font-size: 16px;
  font-weight: 500;
  transition: color .2s ease;
}
.nmsh-sp-list-cta dd a:hover { color: var(--spl-primary); }

/* Form */
.nmsh-sp-list-form-note {
  font-size: 14px;
  color: var(--spl-muted);
  margin-bottom: 24px;
}
.nmsh-sp-list-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media(min-width:640px) {
  .nmsh-sp-list-form-grid { grid-template-columns: 1fr 1fr; }
}
.nmsh-sp-list-field label {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--spl-muted);
}
.nmsh-sp-list-field input,
.nmsh-sp-list-field select,
.nmsh-sp-list-field textarea {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 1px solid var(--spl-border);
  background: #fff;
  border-radius: 10px;
  font: inherit;
  color: var(--spl-ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.nmsh-sp-list-field textarea {
  height: auto;
  padding: 12px 16px;
  resize: vertical;
}
.nmsh-sp-list-field input:focus,
.nmsh-sp-list-field select:focus,
.nmsh-sp-list-field textarea:focus {
  outline: none;
  border-color: var(--spl-primary);
  box-shadow: 0 0 0 3px rgba(5,116,133,.15);
}
.nmsh-sp-list-field--full { grid-column: 1/ -1; }
.nmsh-sp-list-form-foot {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.nmsh-sp-list-form-privacy {
  font-size: 12px;
  color: var(--spl-muted);
  margin: 0;
}


/* ═══════════════════════════════════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════════════════════════════════ */
.nmsh-sp-list[data-sg-stagger] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s cubic-bezier(.22,.61,.36,1), transform .6s cubic-bezier(.22,.61,.36,1);
}
.nmsh-sp-list[data-sg-stagger].is-in {
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(var(--sg-i, 0) * 100ms);
}
.no-js.nmsh-sp-list[data-sg-stagger] {
  opacity: 1;
  transform: none;
  transition: none;
}

/* Reduced motion */
@media(prefers-reduced-motion:reduce) {
  .nmsh-sp-list * {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
  .nmsh-sp-list [data-sg-stagger] {
    opacity: 1 !important;
    transform: none !important;
  }
  .nmsh-sp-list-svc-card:hover { transform: none; }
}


/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════ */

/* Tablet */
@media(max-width:768px) {
  .nmsh-sp-list-strip-inner {
    gap: 16px 24px;
    padding: 24px 0;
  }
  .nmsh-sp-list-strip ul { gap: 12px 24px; }
  .nmsh-sp-list-strip li img {
    height: 34px;
    max-width: 100px;
  }
}

/* Mobile */
@media(max-width:600px) {
  .nmsh-sp-list-crumb { padding-top: 60px; }
  .nmsh-sp-list-section { padding: 56px 0; }
  .nmsh-sp-list-cta { padding: 28px; }
  .nmsh-sp-list-cta-grid { grid-template-columns: 1fr; }
  .nmsh-sp-list-form-foot { flex-direction: column; align-items: flex-start; }

  /* Hero mobile */
  .nmsh-sp-list-hero { min-height: 480px; }
  .nmsh-sp-list-hero__bg--desktop { display: none; }
  .nmsh-sp-list-hero__bg--mobile { display: block; }
  .nmsh-sp-list-hero__content { padding: 56px 20px; }
  .nmsh-sp-list-hero h1 { font-size: 30px; }
  .nmsh-sp-list-hero__desc { font-size: 16px; }
  .nmsh-sp-list-hero-stats { gap: 16px; }
  .nmsh-sp-list-hero-stats dt { font-size: 22px; }

  /* Strip */
  .nmsh-sp-list-strip-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 0;
  }
  .nmsh-sp-list-strip ul {
    gap: 12px 20px;
    width: 100%;
  }
  .nmsh-sp-list-strip li img {
    height: 32px;
    max-width: 100px;
  }

  /* Grids */
  .nmsh-sp-list-svc-grid { grid-template-columns: 1fr; }
  .nmsh-sp-list-ind-grid { grid-template-columns: 1fr; }
  .nmsh-sp-list-steps { grid-template-columns: 1fr; }
  .nmsh-sp-list-split { gap: 32px; }
  .nmsh-sp-list-seo { gap: 32px; }

  /* FAQ */
  .nmsh-sp-list-faq summary { padding: 16px 18px; font-size: 14px; }
  .nmsh-sp-list-faq .nmsh-sp-list-faq-answer { padding: 0 18px 18px; }

  /* CTA */
  .nmsh-sp-list-cta { grid-template-columns: 1fr; }
}
