/* NightShift Fleet Services — Marketing Website Styles */

:root {
  --ns-black:       #050609;
  --ns-dark:        #0d0f14;
  --ns-dark-2:      #141720;
  --ns-dark-3:      #1a1e2a;
  --ns-blue:        #0f2850;
  --ns-blue-mid:    #163572;
  --ns-blue-light:  #1d56d4;
  --ns-accent:      #3b7bff;
  --ns-silver:      #b0bdd0;
  --ns-silver-dark: #6b7a96;
  --ns-steel:       #8fa3c0;
  --ns-white:       #ffffff;
  --ns-off-white:   #eef2f8;
  --ns-text:        #dce6f5;
  --ns-text-muted:  #7e90ac;
  --ns-gold:        #e8a020;
  --ns-border:      rgba(255,255,255,0.07);
  --ns-border-blue: rgba(61,123,255,0.2);
  --ns-radius:      6px;
  --ns-radius-lg:   12px;
  --ns-shadow:      0 8px 32px rgba(0,0,0,0.55);
  --ns-shadow-sm:   0 2px 10px rgba(0,0,0,0.4);
  --ns-transition:  all 0.2s ease;
}

/* ── RESET ── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}

/* ── BASE ── */
.ns-body {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  background: var(--ns-black);
  color: var(--ns-text);
  line-height: 1.6;
  padding-top: 130px; /* nav + ribbon */
}

a { color: var(--ns-accent); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; }
ul { list-style: none; }

/* ── CONTAINER ── */
.ns-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── NAV ── */
.ns-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10, 11, 15, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ns-border);
  height: 64px;
}
.ns-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.ns-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.ns-logo-img {
  height: 46px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: brightness(1.05) contrast(1.05);
}

.ns-nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
.ns-nav-links li a {
  color: var(--ns-silver);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.4rem 0.6rem;
  border-radius: var(--ns-radius);
  transition: var(--ns-transition);
  text-decoration: none;
  white-space: nowrap;
}
.ns-nav-links li a:hover,
.ns-nav-links li a.active {
  color: var(--ns-white);
  background: rgba(255,255,255,0.06);
}
.ns-nav-cta {
  background: var(--ns-blue-light) !important;
  color: var(--ns-white) !important;
  padding: 0.4rem 1rem !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
}
.ns-nav-cta:hover {
  background: #1648b8 !important;
}
.ns-nav-download {
  color: var(--ns-steel) !important;
  border: 1px solid rgba(143,163,192,0.25) !important;
  border-radius: 5px !important;
  padding: 0.35rem 0.75rem !important;
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.03em !important;
  transition: var(--ns-transition) !important;
}
.ns-nav-download:hover {
  background: rgba(143,163,192,0.1) !important;
  color: var(--ns-white) !important;
  border-color: rgba(143,163,192,0.5) !important;
  text-decoration: none !important;
}
.ns-hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--ns-white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
  flex-shrink: 0;
}

/* ── VETERAN RIBBON ── */
.vet-ribbon {
  position: fixed;
  top: 64px;
  left: 0; right: 0;
  z-index: 999;
  background: linear-gradient(90deg, #1a3a6b, #1e4a8a, #1a3a6b);
  color: var(--ns-white);
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  letter-spacing: 0.05em;
}

/* ── MOBILE CTA BAR ── */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1001;
  background: var(--ns-dark);
  border-top: 1px solid var(--ns-border);
}
.mobile-cta-call,
.mobile-cta-quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  padding: 0.875rem;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
}
.mobile-cta-call {
  background: var(--ns-dark-2);
  color: var(--ns-white);
  border-right: 1px solid var(--ns-border);
}
.mobile-cta-quote {
  background: var(--ns-blue-light);
  color: var(--ns-white);
}

/* ── STICKY QUOTE BTN ── */
.sticky-quote-btn {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 990;
  background: var(--ns-blue-light);
  color: var(--ns-white);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 20px rgba(37,99,235,0.5);
  text-decoration: none;
  transition: var(--ns-transition);
}
.sticky-quote-btn:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  text-decoration: none;
}

/* ── HERO ── */
.ns-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, #02040a 0%, #060d1f 30%, #0b1a38 60%, #050608 100%);
  overflow: hidden;
}
.ns-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 15% 55%, rgba(15,40,80,0.55) 0%, transparent 65%),
    radial-gradient(ellipse 50% 60% at 85% 15%, rgba(29,86,212,0.12) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 60% 80%, rgba(61,123,255,0.06) 0%, transparent 50%);
}
.ns-hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232563eb' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.ns-hero-content {
  position: relative;
  z-index: 1;
  padding: 4rem 1.5rem;
  max-width: 800px;
}
.ns-hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245,158,11,0.15);
  border: 1px solid rgba(245,158,11,0.4);
  color: var(--ns-gold);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}
.ns-hero-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  color: var(--ns-white);
  line-height: 1.05;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}
.ns-hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--ns-silver);
  margin-bottom: 2rem;
  max-width: 640px;
  line-height: 1.7;
}
.ns-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.ns-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.ns-trust-badges span {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--ns-silver);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.3rem 0.7rem;
  border-radius: 50px;
}
.ns-trust-badges-centered {
  justify-content: center;
  margin-top: 1.5rem;
}

/* ── BUTTONS ── */
.ns-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.4rem;
  border-radius: var(--ns-radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  transition: var(--ns-transition);
  border: none;
  white-space: nowrap;
}
.ns-btn-lg { padding: 0.85rem 1.75rem; font-size: 1rem; }
.ns-btn-full { width: 100%; }
.ns-btn-primary {
  background: var(--ns-blue-light);
  color: var(--ns-white);
}
.ns-btn-primary:hover {
  background: #1d4ed8;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37,99,235,0.4);
}
.ns-btn-white {
  background: rgba(255,255,255,0.12);
  color: var(--ns-white);
  border: 1px solid rgba(255,255,255,0.2);
}
.ns-btn-white:hover {
  background: rgba(255,255,255,0.2);
  text-decoration: none;
}
.ns-btn-call {
  background: linear-gradient(135deg, #059669, #047857);
  color: var(--ns-white);
}
.ns-btn-call:hover {
  background: linear-gradient(135deg, #047857, #065f46);
  text-decoration: none;
  transform: translateY(-1px);
}
.ns-btn-outline {
  background: transparent;
  color: var(--ns-accent);
  border: 1.5px solid var(--ns-accent);
}
.ns-btn-outline:hover {
  background: rgba(61,123,255,0.1);
  text-decoration: none;
}
/* Silver/steel download button */
.ns-btn-silver {
  background: rgba(176,189,208,0.1);
  color: var(--ns-silver);
  border: 1.5px solid rgba(176,189,208,0.35);
  font-size: 0.9rem !important;
}
.ns-btn-silver:hover {
  background: rgba(176,189,208,0.18);
  color: var(--ns-white);
  border-color: rgba(176,189,208,0.6);
  text-decoration: none;
}
/* Footer logo image */
.ns-footer-logo-img {
  height: 38px;
  width: auto;
  display: block;
  margin-bottom: 0.75rem;
  filter: brightness(0.95);
}
/* PDF download section */
.ns-brochure-section {
  background: linear-gradient(135deg, #0a1020 0%, #101828 100%);
  border-top: 1px solid var(--ns-border);
  border-bottom: 1px solid var(--ns-border);
}
.ns-brochure-cards {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.ns-brochure-card {
  background: var(--ns-dark-2);
  border: 1px solid var(--ns-border);
  border-radius: var(--ns-radius-lg);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-width: 280px;
  transition: var(--ns-transition);
}
.ns-brochure-card:hover {
  border-color: var(--ns-border-blue);
  transform: translateY(-2px);
  box-shadow: var(--ns-shadow);
}
.ns-brochure-icon {
  font-size: 2.25rem;
  flex-shrink: 0;
}
.ns-brochure-info h4 {
  color: var(--ns-white);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}
.ns-brochure-info p {
  color: var(--ns-text-muted);
  font-size: 0.8rem;
  margin-bottom: 0.6rem;
}

/* ── ALERT BAR ── */
.ns-alert-bar {
  background: linear-gradient(90deg, #1a3a6b, #1e4a8a);
  color: var(--ns-white);
  padding: 1rem 0;
  font-size: 0.9rem;
  line-height: 1.5;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.ns-alert-bar-inline {
  background: rgba(37,99,235,0.1);
  border: 1px solid rgba(37,99,235,0.3);
  border-radius: var(--ns-radius);
  padding: 1rem 1.25rem;
  color: var(--ns-text);
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

/* ── SECTIONS ── */
.ns-section {
  padding: 5rem 0;
}
.ns-section-dark {
  background: var(--ns-dark);
}
.ns-section-accent {
  background: linear-gradient(155deg, #080f20 0%, #0d1f3c 50%, #152e5a 100%);
}
.ns-cta-section {
  background: linear-gradient(155deg, #060c1c 0%, #0d1e3a 45%, #091528 100%);
}
.ns-section-divider {
  height: 1px;
  background: var(--ns-border);
}
.ns-section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.ns-section-header h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--ns-white);
  margin-bottom: 0.75rem;
}
.ns-section-header p {
  color: var(--ns-text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}
.ns-section-header-left {
  text-align: left;
  margin-bottom: 2rem;
}
.ns-section-tag {
  display: inline-block;
  background: rgba(37,99,235,0.15);
  border: 1px solid rgba(37,99,235,0.3);
  color: var(--ns-accent);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

/* ── GRID ── */
.ns-grid { display: grid; gap: 1.5rem; }
.ns-grid-2 { grid-template-columns: repeat(2, 1fr); }
.ns-grid-3 { grid-template-columns: repeat(3, 1fr); }
.ns-text-center { text-align: center; }

/* ── CARDS ── */
.ns-card {
  background: var(--ns-dark-2);
  border: 1px solid var(--ns-border);
  border-radius: var(--ns-radius-lg);
  padding: 1.75rem;
  transition: var(--ns-transition);
}
.ns-card:hover {
  border-color: rgba(37,99,235,0.3);
  transform: translateY(-2px);
  box-shadow: var(--ns-shadow);
}
.ns-card-highlight {
  background: linear-gradient(135deg, #0d1f3c, #1a3a6b);
  border-color: rgba(37,99,235,0.4);
}
.ns-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ns-white);
  margin-bottom: 0.5rem;
}
.ns-card p {
  color: var(--ns-text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.ns-card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.ns-link {
  color: var(--ns-accent);
  font-size: 0.875rem;
  font-weight: 600;
}
.ns-link:hover { text-decoration: underline; }

/* ── INFO CARDS ── */
.ns-info-card {
  background: var(--ns-dark-2);
  border: 1px solid var(--ns-border);
  border-radius: var(--ns-radius-lg);
  padding: 1.75rem;
}
.ns-info-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ns-white);
  margin-bottom: 0.5rem;
}
.ns-info-card p {
  color: var(--ns-text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

/* ── VALUE CARDS ── */
.ns-value-card {
  background: var(--ns-dark-2);
  border: 1px solid var(--ns-border);
  border-radius: var(--ns-radius-lg);
  padding: 1.75rem;
}
.ns-value-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ns-white);
  margin-bottom: 0.5rem;
}
.ns-value-card p { color: var(--ns-text-muted); font-size: 0.9rem; line-height: 1.6; }

/* ── QUOTE HEADLINE ── */
.ns-quote-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--ns-white);
  margin-bottom: 1rem;
}
.ns-lead {
  font-size: 1.1rem;
  color: var(--ns-silver);
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto 1.5rem;
}

/* ── STATS ── */
.ns-stats-row {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}
.ns-stat { text-align: center; }
.ns-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--ns-white);
  display: block;
  line-height: 1;
}
.ns-stat-label {
  font-size: 0.8rem;
  color: var(--ns-text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

/* ── INDUSTRIES ROW ── */
.ns-industries-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.ns-industry-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--ns-dark-2);
  border: 1px solid var(--ns-border);
  color: var(--ns-text);
  padding: 0.6rem 1.1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: var(--ns-transition);
}
.ns-industry-chip:hover {
  background: rgba(37,99,235,0.15);
  border-color: rgba(37,99,235,0.4);
  color: var(--ns-white);
  text-decoration: none;
}

/* ── TESTIMONIALS ── */
.ns-testimonial {
  background: var(--ns-dark-2);
  border: 1px solid var(--ns-border);
  border-radius: var(--ns-radius-lg);
  padding: 1.75rem;
}
.ns-testimonial p {
  color: var(--ns-silver);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}
.ns-stars {
  color: var(--ns-gold);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}
.ns-testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.ns-testimonial-avatar {
  width: 40px;
  height: 40px;
  background: var(--ns-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ns-white);
  flex-shrink: 0;
}
.ns-testimonial-author strong { display: block; color: var(--ns-white); font-size: 0.9rem; }
.ns-testimonial-author span { color: var(--ns-text-muted); font-size: 0.8rem; }

/* ── PROJECT RESULTS ── */
.ns-result-card {
  background: var(--ns-dark-2);
  border: 1px solid var(--ns-border);
  border-radius: var(--ns-radius-lg);
  padding: 1.75rem;
  transition: var(--ns-transition);
}
.ns-result-card:hover {
  border-color: rgba(37,99,235,0.4);
  transform: translateY(-2px);
}
.ns-result-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.ns-result-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  color: var(--ns-white);
  margin-bottom: 0.75rem;
  font-weight: 600;
}
.ns-result-card p {
  color: var(--ns-silver);
  font-size: 0.95rem;
  line-height: 1.7;
}
.ns-result-cta {
  margin-top: 2rem;
  text-align: center;
  color: var(--ns-silver);
  font-size: 0.95rem;
}
.ns-result-cta a {
  color: var(--ns-blue-light);
  text-decoration: underline;
}
.ns-result-cta a:hover {
  color: var(--ns-white);
}

/* ── PAGE HERO ── */
.ns-page-hero {
  background: linear-gradient(135deg, #040608, #0a1628, #0d1f3c);
  padding: 4rem 0 3rem;
  border-bottom: 1px solid var(--ns-border);
}
.ns-page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--ns-white);
  margin-bottom: 0.75rem;
}
.ns-page-hero p {
  color: var(--ns-silver);
  font-size: 1.1rem;
  max-width: 600px;
}

/* ── SERVICE BLOCKS ── */
.ns-service-block,
.ns-industry-block {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: start;
}
.ns-service-block-reverse,
.ns-industry-block-reverse {
  grid-template-columns: 1fr auto;
}
.ns-service-block-reverse .ns-service-icon-lg,
.ns-industry-block-reverse .ns-industry-icon {
  order: 2;
}
.ns-service-icon-lg {
  font-size: 5rem;
  width: 120px;
  height: 120px;
  background: var(--ns-dark-2);
  border: 1px solid var(--ns-border);
  border-radius: var(--ns-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ns-industry-icon {
  font-size: 4rem;
  width: 100px;
  height: 100px;
  background: var(--ns-dark-2);
  border: 1px solid var(--ns-border);
  border-radius: var(--ns-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ns-service-content h2,
.ns-industry-content h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--ns-white);
  margin-bottom: 0.75rem;
}
.ns-service-content p,
.ns-industry-content p {
  color: var(--ns-text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.ns-service-list {
  list-style: none;
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.ns-service-list li {
  color: var(--ns-text);
  font-size: 0.9rem;
}
.ns-pricing-pill {
  display: inline-block;
  background: rgba(37,99,235,0.1);
  border: 1px solid rgba(37,99,235,0.25);
  color: var(--ns-accent);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

/* ── PRICING ── */
.ns-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.ns-pricing-card {
  background: var(--ns-dark-2);
  border: 1px solid var(--ns-border);
  border-radius: var(--ns-radius-lg);
  padding: 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.ns-pricing-card-featured {
  border-color: var(--ns-blue-light);
  background: linear-gradient(135deg, #0d1f3c, #152b52);
}
.ns-pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ns-blue-light);
  color: var(--ns-white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.8rem;
  border-radius: 50px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.ns-pricing-header { text-align: center; }
.ns-pricing-header h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ns-white);
  margin-bottom: 0.25rem;
}
.ns-pricing-header p { color: var(--ns-text-muted); font-size: 0.85rem; }
.ns-pricing-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.ns-pricing-price {
  text-align: center;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.2rem;
  padding: 1rem 0;
  border-top: 1px solid var(--ns-border);
  border-bottom: 1px solid var(--ns-border);
}
.ns-price-from { color: var(--ns-text-muted); font-size: 0.85rem; }
.ns-price-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--ns-white);
  line-height: 1;
}
.ns-price-unit { color: var(--ns-text-muted); font-size: 0.9rem; }
.ns-pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.ns-pricing-features li { color: var(--ns-text); font-size: 0.875rem; }

/* ── PRICE TABLE ── */
.ns-price-table-wrap { overflow-x: auto; }
.ns-price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.ns-price-table th {
  background: var(--ns-dark-3);
  color: var(--ns-silver);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.75rem 1rem;
  text-align: left;
}
.ns-price-table td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--ns-border);
  color: var(--ns-text);
}
.ns-price-table tr:last-child td { border-bottom: none; }
.ns-price-table tr:hover td { background: rgba(255,255,255,0.02); }
.ns-price-table strong { color: var(--ns-white); }

/* ── GALLERY ── */
.ns-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.ns-gallery-intro { text-align: center; margin-bottom: 3rem; }
.ns-gallery-card {
  background: var(--ns-dark-2);
  border: 1px solid var(--ns-border);
  border-radius: var(--ns-radius-lg);
  overflow: hidden;
}
.ns-gallery-before-after {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: var(--ns-dark-3);
}
.ns-gallery-arrow {
  color: var(--ns-accent);
  font-size: 1.5rem;
  font-weight: 700;
}
.ns-gallery-placeholder {
  border-radius: var(--ns-radius);
  padding: 1rem;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  overflow: hidden;
}
.ns-gallery-placeholder-before {
  background: linear-gradient(135deg, #1a1007, #2a1a0a);
  border: 1px solid rgba(161,85,0,0.3);
}
.ns-gallery-placeholder-after {
  background: linear-gradient(135deg, #071a0d, #0d2e18);
  border: 1px solid rgba(16,185,129,0.3);
}
.ns-gallery-label {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}
.ns-gallery-placeholder-before .ns-gallery-label {
  background: rgba(161,85,0,0.3);
  color: #f59e0b;
}
.ns-gallery-placeholder-after .ns-gallery-label {
  background: rgba(16,185,129,0.3);
  color: #10b981;
}
.ns-gallery-mock-img {
  width: 100%;
  height: 80px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.ns-mock-dirty { background: #3d2008; }
.ns-mock-very-dirty { background: #2a1505; }
.ns-mock-clean { background: #0d2416; }
.ns-mock-debris, .ns-mock-debris-2, .ns-mock-debris-3 {
  position: absolute;
  background: rgba(0,0,0,0.6);
  border-radius: 2px;
}
.ns-mock-debris { width: 40%; height: 12px; top: 20%; left: 15%; }
.ns-mock-debris-2 { width: 25%; height: 8px; top: 55%; left: 40%; }
.ns-mock-debris-3 { width: 35%; height: 10px; top: 35%; right: 15%; }
.ns-mock-grime {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 4px, rgba(0,0,0,0.2) 4px, rgba(0,0,0,0.2) 5px);
}
.ns-mock-stain {
  position: absolute;
  width: 50%; height: 40%;
  background: rgba(90,30,0,0.4);
  border-radius: 50%;
  top: 30%; left: 25%;
}
.ns-mock-grease {
  position: absolute;
  width: 60%; height: 30%;
  background: rgba(30,20,0,0.5);
  bottom: 0; left: 20%;
  border-radius: 4px;
}
.ns-mock-shine {
  position: absolute;
  width: 30%; height: 60%;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
  top: 10%; right: 10%;
  border-radius: 50%;
}
.ns-mock-shine-2 { top: 15%; left: 20%; }
.ns-mock-roach-icon {
  position: absolute;
  font-size: 1.2rem;
  top: 30%; left: 30%;
}
.ns-mock-check {
  position: absolute;
  color: #10b981;
  font-size: 1.75rem;
  font-weight: 900;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.ns-gallery-caption {
  padding: 1.25rem 1.5rem;
}
.ns-gallery-caption h4 {
  font-weight: 700;
  color: var(--ns-white);
  font-size: 1rem;
  margin-bottom: 0.4rem;
}
.ns-gallery-caption p {
  color: var(--ns-text-muted);
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}
.ns-gallery-tag {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--ns-accent);
  background: rgba(37,99,235,0.1);
  border: 1px solid rgba(37,99,235,0.2);
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
}

/* ── ABOUT ── */
.ns-about-block {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: start;
}
.ns-founder-card {
  background: var(--ns-dark-2);
  border: 1px solid var(--ns-border);
  border-radius: var(--ns-radius-lg);
  padding: 2rem;
  text-align: center;
}
.ns-founder-avatar {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--ns-blue), var(--ns-blue-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ns-white);
  margin: 0 auto 1rem;
}
.ns-founder-badge {
  display: inline-block;
  background: rgba(245,158,11,0.15);
  border: 1px solid rgba(245,158,11,0.3);
  color: var(--ns-gold);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}
.ns-founder-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ns-white);
  margin-bottom: 0.25rem;
}
.ns-founder-card p {
  color: var(--ns-text-muted);
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
}
.ns-about-content h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--ns-white);
  margin-bottom: 1rem;
}
.ns-about-content p {
  color: var(--ns-text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.ns-about-content .ns-lead { color: var(--ns-silver); margin-bottom: 1rem; }

/* ── SERVICE AREA GRID ── */
.ns-service-area-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-top: 1rem;
}
.ns-service-area-sm { justify-content: flex-start; }
.ns-area-pill {
  background: var(--ns-dark-3);
  border: 1px solid var(--ns-border);
  color: var(--ns-text);
  font-size: 0.85rem;
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
}

/* ── FAQ ── */
.ns-faq-wrap {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.ns-faq-item {
  background: var(--ns-dark-2);
  border: 1px solid var(--ns-border);
  border-radius: var(--ns-radius-lg);
  overflow: hidden;
}
.ns-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--ns-white);
  font-size: 1rem;
  font-weight: 600;
  transition: var(--ns-transition);
}
.ns-faq-q:hover { background: rgba(255,255,255,0.03); }
.ns-faq-icon {
  color: var(--ns-accent);
  font-size: 1.25rem;
  font-weight: 700;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}
.ns-faq-a {
  display: none;
  padding: 0 1.5rem 1.5rem;
}
.ns-faq-a p {
  color: var(--ns-text-muted);
  line-height: 1.7;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}
.ns-faq-a p:last-child { margin-bottom: 0; }
.ns-faq-list {
  list-style: none;
  margin: 0.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.ns-faq-list li { color: var(--ns-text-muted); font-size: 0.9rem; }
.ns-faq-item.open .ns-faq-a { display: block; }

/* ── CONTACT ── */
.ns-contact-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 3rem;
  align-items: start;
}
.ns-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.ns-contact-card {
  background: var(--ns-dark-2);
  border: 1px solid var(--ns-border);
  border-radius: var(--ns-radius-lg);
  padding: 1.5rem;
}
.ns-contact-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ns-white);
  margin-bottom: 0.4rem;
}
.ns-contact-card p { color: var(--ns-text-muted); font-size: 0.85rem; margin-bottom: 0.75rem; }
.ns-contact-phone {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ns-white);
  margin-bottom: 0.5rem;
}
.ns-contact-email {
  display: block;
  font-size: 0.85rem;
  color: var(--ns-accent);
  margin-bottom: 0.5rem;
  word-break: break-all;
}
.ns-hours-table { width: 100%; font-size: 0.82rem; }
.ns-hours-table td { padding: 0.25rem 0; color: var(--ns-text-muted); }
.ns-hours-table td:last-child { text-align: right; }
.ns-hours-table strong { color: var(--ns-white); }
.ns-map-container { border-radius: var(--ns-radius-lg); overflow: hidden; }

/* ── CONTACT FORM ── */
.ns-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.ns-form-wrap { max-width: 700px; }
.ns-form-wrap-center { margin: 0 auto; }
.ns-form-row { display: grid; gap: 1rem; }
.ns-form-row-2 { grid-template-columns: repeat(2, 1fr); }
.ns-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.ns-form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ns-silver);
  letter-spacing: 0.03em;
}
.ns-form-group input,
.ns-form-group select,
.ns-form-group textarea {
  background: var(--ns-dark-2);
  border: 1.5px solid var(--ns-border);
  border-radius: var(--ns-radius);
  color: var(--ns-white);
  font-size: 0.95rem;
  padding: 0.7rem 0.9rem;
  font-family: inherit;
  transition: var(--ns-transition);
  -webkit-appearance: none;
}
.ns-form-group input::placeholder,
.ns-form-group textarea::placeholder { color: var(--ns-silver-dark); }
.ns-form-group input:focus,
.ns-form-group select:focus,
.ns-form-group textarea:focus {
  outline: none;
  border-color: var(--ns-blue-light);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
}
.ns-form-group select option { background: var(--ns-dark); }
.ns-form-note {
  text-align: center;
  color: var(--ns-text-muted);
  font-size: 0.82rem;
  margin-top: 0.25rem;
}
.ns-form-msg {
  padding: 0.875rem 1rem;
  border-radius: var(--ns-radius);
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
}
.ns-form-msg-success {
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.3);
  color: #34d399;
}
.ns-form-msg-error {
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.25);
  color: #f87171;
}

/* ── BADGES ── */
.ns-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.ns-badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--ns-silver);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.6rem;
  border-radius: 50px;
}

/* ── FOOTER ── */
.ns-footer {
  background: var(--ns-dark);
  border-top: 1px solid var(--ns-border);
  padding: 4rem 0 2rem;
  margin-bottom: 0;
}
.ns-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.ns-footer-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ns-white);
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}
.ns-footer-brand p {
  color: var(--ns-text-muted);
  font-size: 0.875rem;
  line-height: 1.6;
}
.ns-footer-links h4,
.ns-footer-contact h4 {
  color: var(--ns-white);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.ns-footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.ns-footer-links ul li a {
  color: var(--ns-text-muted);
  font-size: 0.875rem;
  text-decoration: none;
}
.ns-footer-links ul li a:hover { color: var(--ns-white); text-decoration: underline; }
.ns-footer-contact p {
  color: var(--ns-text-muted);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}
.ns-footer-contact a { color: var(--ns-accent); }
.ns-service-areas { font-size: 0.8rem !important; }
.ns-footer-cta { margin-top: 1rem; display: inline-block; }
.ns-footer-bottom {
  border-top: 1px solid var(--ns-border);
  padding-top: 1.5rem;
  text-align: center;
}
.ns-footer-bottom p { color: var(--ns-text-muted); font-size: 0.8rem; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .ns-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .ns-pricing-grid { grid-template-columns: 1fr; }
  .ns-about-block { grid-template-columns: 1fr; }
  .ns-contact-layout { grid-template-columns: 1fr; }
  .ns-footer-grid { grid-template-columns: 1fr 1fr; }
  .ns-service-block,
  .ns-industry-block,
  .ns-service-block-reverse,
  .ns-industry-block-reverse {
    grid-template-columns: 1fr;
  }
  .ns-service-block-reverse .ns-service-icon-lg,
  .ns-industry-block-reverse .ns-industry-icon { order: 0; }
}

@media (max-width: 680px) {
  .ns-body { padding-top: 110px; }
  .ns-hamburger { display: block; }
  .ns-nav-links {
    display: none;
    position: fixed;
    top: 102px; left: 0; right: 0;
    background: rgba(10,11,15,0.99);
    flex-direction: column;
    padding: 1rem 0;
    border-bottom: 1px solid var(--ns-border);
    gap: 0;
  }
  .ns-nav-links.open { display: flex; }
  .ns-nav-links li { width: 100%; }
  .ns-nav-links li a {
    display: block;
    padding: 0.75rem 1.5rem;
    border-radius: 0;
  }
  .mobile-cta-bar { display: flex; }
  .ns-body { padding-bottom: 64px; }
  .sticky-quote-btn { display: none; }
  .ns-grid-2, .ns-grid-3 { grid-template-columns: 1fr; }
  .ns-gallery-grid { grid-template-columns: 1fr; }
  .ns-form-row-2 { grid-template-columns: 1fr; }
  .ns-footer-grid { grid-template-columns: 1fr; }
  .ns-stats-row { gap: 1.5rem; }
  .ns-hero-ctas { flex-direction: column; }
  .ns-hero-ctas .ns-btn { width: 100%; justify-content: center; }
}

/* ── Contact Page CTA ── */
.ns-cta-hero {
  display: flex;
  justify-content: center;
  margin: 2rem 0 0;
}

.ns-cta-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  color: #fff;
  padding: 1.25rem 2.5rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(5, 150, 105, 0.45);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.ns-cta-call-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(5, 150, 105, 0.55);
  text-decoration: none;
  color: #fff;
}

.ns-cta-call-icon {
  font-size: 1.6rem;
  line-height: 1;
}

.ns-cta-call-text {
  display: flex;
  flex-direction: column;
}

.ns-cta-call-label {
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.ns-cta-call-number {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

/* OR separator */
.ns-or-separator {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.ns-or-line {
  flex: 1;
  height: 1px;
  background: rgba(176, 189, 208, 0.3);
}

.ns-or-text {
  color: rgba(176, 189, 208, 0.7);
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* CTA form wrapper */
.ns-cta-form-wrap {
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* Larger form on CTA section */
.ns-cta-form-wrap .ns-contact-form {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(176, 189, 208, 0.15);
  border-radius: 12px;
}

/* Mobile: stack CTA and form, full width */
@media (max-width: 640px) {
  .ns-cta-call-btn {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
  }
  .ns-cta-call-number { font-size: 1.1rem; }
  .ns-cta-form-wrap { max-width: 100%; }
  .ns-or-separator { max-width: 100%; }
}
