/* ==========================================================================
   NIPRO WEITEK — Design Tokens
   Palette: deep industrial navy + steel + safety orange, on a cool grey field.
   Type: Oswald (display / technical), Inter (body), JetBrains Mono (data / readouts).
   Motif: technical-drawing blueprint lines + a digital weighbridge-indicator
   readout reused as the site's signature component.
   ========================================================================== */

:root {
  --nw-navy:        #0B1826;
  --nw-navy-2:      #16273A;
  --nw-navy-3:      #1F3348;
  --nw-steel:       #4A5C6E;
  --nw-steel-light: #8B9AA8;
  --nw-primary:     #0278C2;
  --nw-accent:      #FA922F;
  --nw-accent-dark: #DD7A18;
  --nw-accent-2:    #FFEB21;
  --nw-quality:     #589F0B;
  --nw-bg:          #F2F4F6;
  --nw-surface:     #FFFFFF;
  --nw-ink:         #101820;
  --nw-line:        #DCE2E7;
  --nw-success:     #2E8B57;
  --nw-danger:      #C0392B;

  --nw-font-display: 'Oswald', sans-serif;
  --nw-font-body:    'Inter', sans-serif;
  --nw-font-mono:    'JetBrains Mono', monospace;

  --nw-radius: 3px;
  --nw-shadow: 0 8px 24px rgba(11, 24, 38, 0.10);
  --nw-shadow-lg: 0 20px 50px rgba(11, 24, 38, 0.18);
  --nw-container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  font-family: var(--nw-font-body);
  color: var(--nw-ink);
  background: var(--nw-bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }

.nw-container {
  max-width: var(--nw-container);
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--nw-font-display);
  color: var(--nw-primary);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0;
  line-height: 1.15;
}

.nw-eyebrow {
  font-family: var(--nw-font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--nw-accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.nw-eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--nw-accent);
  display: inline-block;
}

.nw-section-head { max-width: 640px; margin-bottom: 44px; }
.nw-section-head h2 { font-size: clamp(26px, 3.4vw, 38px); margin-bottom: 12px; }
.nw-section-head p { color: var(--nw-steel); font-size: 16px; line-height: 1.6; margin: 0; }
.nw-section-head--center { margin-left: auto; margin-right: auto; text-align: center; }

section { padding: 76px 0; }

/* Blueprint grid texture for light sections (subject: engineering drawings) */
.nw-blueprint {
  background-image:
    linear-gradient(rgba(75, 104, 130, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(75, 104, 130, 0.07) 1px, transparent 1px);
  background-size: 34px 34px;
  background-color: var(--nw-surface);
}

/* Corner bracket marks, echoing technical-drawing registration marks */
.nw-bracketed { position: relative; }
.nw-bracketed::before, .nw-bracketed::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid var(--nw-accent);
  opacity: 0.85;
}
.nw-bracketed::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.nw-bracketed::after { bottom: -1px; right: -1px; border-left: none; border-top: none; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.nw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  font-family: var(--nw-font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--nw-radius);
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.nw-btn--accent { background: var(--nw-accent); color: #fff; }
.nw-btn--accent:hover { background: var(--nw-accent-dark); transform: translateY(-1px); box-shadow: 0 10px 22px rgba(232, 121, 12, 0.35); }
.nw-btn--dark { background: var(--nw-navy); color: #fff; }
.nw-btn--dark:hover { background: var(--nw-navy-2); transform: translateY(-1px); }
.nw-btn--light { background: #fff; color: var(--nw-navy); }
.nw-btn--light:hover { background: var(--nw-accent-2); transform: translateY(-1px); }
.nw-btn--outline { background: transparent; color: var(--nw-navy); border-color: var(--nw-line); }
.nw-btn--outline:hover { border-color: var(--nw-navy); }
.nw-btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.nw-btn--ghost-light:hover { border-color: #fff; }
.nw-btn--sm { padding: 9px 18px; font-size: 12px; }
.nw-btn--block { width: 100%; }

/* ==========================================================================
   Top Bar
   ========================================================================== */
.nw-topbar { background: var(--nw-navy); color: #cfd8e0; font-size: 12.5px; }
.nw-topbar__inner { display: flex; align-items: center; justify-content: space-between; height: 36px; }
.nw-topbar__left { display: flex; gap: 20px; }
.nw-topbar__item { display: inline-flex; align-items: center; gap: 6px; color: #cfd8e0; }
.nw-topbar__item:hover { color: var(--nw-accent-2); }
.nw-topbar__right { display: flex; align-items: center; gap: 18px; }
.nw-topbar__badge {
  font-family: var(--nw-font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--nw-accent-2);
  border-left: 1px solid rgba(255,255,255,0.2);
  padding-left: 18px;
}
.nw-topbar__social { display: flex; gap: 10px; }
.nw-topbar__social a {
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(255,255,255,0.08); color: #C3CDD6;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s ease, color 0.15s ease;
}
.nw-topbar__social a:hover { background: var(--nw-accent); color: #fff; }

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.nw-header {
  background: #fff;
  border-bottom: 1px solid var(--nw-line);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 1px 0 rgba(11,24,38,0.03);
}
.nw-header__inner { display: flex; align-items: center; justify-content: space-between; height: 78px; gap: 24px; }

.nw-logo { display: flex; align-items: center; gap: 10px; color: var(--nw-primary); }
.nw-logo__mark { color: var(--nw-accent); flex-shrink: 0; }
.nw-logo__text { display: flex; flex-direction: column; line-height: 1.1; }
.nw-logo__name { font-family: var(--nw-font-display); font-size: 21px; font-weight: 700; letter-spacing: 0.03em; }
.nw-logo__sub { font-family: var(--nw-font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--nw-steel); }

.nw-nav { flex: 1; }
.nw-nav__list { display: flex; align-items: center; gap: 4px; justify-content: center; }
.nw-nav__list > li { position: relative; }
.nw-nav__list > li > a {
  display: flex; align-items: center; gap: 5px;
  padding: 12px 14px;
  font-family: var(--nw-font-display);
  font-size: 13.5px; font-weight: 500; letter-spacing: 0.03em; text-transform: uppercase;
  color: var(--nw-navy);
  background: none; border: none;
}
.nw-nav__list > li > a:hover { color: var(--nw-accent); }
.nw-nav__list > li > a.nw-active-link { color: var(--nw-accent); }
.nw-nav__list > li > a.nw-active-link::after {
  content: ''; position: absolute; left: 14px; right: 14px; bottom: 6px; height: 2px; background: var(--nw-accent);
}

.nw-header__actions { display: flex; align-items: center; gap: 10px; }
.nw-icon-btn {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--nw-bg); color: var(--nw-navy);
}
.nw-hamburger { display: none; flex-direction: column; gap: 5px; width: 40px; height: 40px; align-items: center; justify-content: center; background: none; border: none; }
.nw-hamburger span { width: 22px; height: 2px; background: var(--nw-navy); transition: 0.2s; }
.nw-hamburger.nw-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nw-hamburger.nw-open span:nth-child(2) { opacity: 0; }
.nw-hamburger.nw-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nw-mobile-menu { display: none; }

/* ==========================================================================
   Hero — split layout with background slideshow (left content stable,
   right side is the quote-request form) + the digital readout component
   ========================================================================== */
.nw-hero {
  position: relative;
  background: var(--nw-navy);
  color: #fff;
  overflow: hidden;
  padding: 64px 0 72px;
}

/* Cross-fading background slides — the only animated element in the hero */
.nw-hero__bg-slides { position: absolute; inset: 0; }
.nw-hero__bg-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.6s ease;
  background-size: cover;
  background-position: center;
}
.nw-hero__bg-slide.nw-active { opacity: 1; }
.nw-hero__bg-slide--1 { background-image: linear-gradient(135deg, #0B1826 0%, #16273A 55%, #1F3348 100%), repeating-linear-gradient(120deg, rgba(255,255,255,0.05) 0 2px, transparent 2px 30px); }
.nw-hero__bg-slide--2 { background-image: linear-gradient(135deg, #0B1826 0%, #1a2f22 55%, #16273A 100%), repeating-linear-gradient(60deg, rgba(88,159,11,0.10) 0 2px, transparent 2px 34px); }
.nw-hero__bg-slide--3 { background-image: linear-gradient(135deg, #0B1826 0%, #2a1f16 55%, #16273A 100%), repeating-linear-gradient(150deg, rgba(250,146,47,0.10) 0 2px, transparent 2px 30px); }
.nw-hero__bg-slide--4 { background-image: linear-gradient(135deg, #0B1826 0%, #142334 55%, #0278C2 140%), repeating-linear-gradient(90deg, rgba(2,120,194,0.12) 0 2px, transparent 2px 36px); }
.nw-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(11,24,38,0.92) 0%, rgba(11,24,38,0.80) 45%, rgba(11,24,38,0.55) 100%);
}

.nw-hero__split {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: start;
}

.nw-hero__eyebrow {
  font-family: var(--nw-font-mono); font-size: 12.5px; letter-spacing: 0.14em;
  color: var(--nw-accent-2); text-transform: uppercase; margin-bottom: 16px; display: block;
}
.nw-hero h1 {
  color: #fff; font-size: clamp(30px, 4.2vw, 48px); line-height: 1.1; margin-bottom: 18px;
}
.nw-hero p { color: #C3CDD6; font-size: 16.5px; line-height: 1.65; max-width: 520px; margin-bottom: 30px; }
.nw-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

.nw-hero__quote-card {
  background: #fff; color: var(--nw-ink); border-radius: 8px; padding: 30px;
  box-shadow: var(--nw-shadow-lg);
}
.nw-hero__quote-card h2 {
  font-size: 20px; color: var(--nw-navy); text-transform: none; letter-spacing: 0; margin-bottom: 18px;
}
.nw-hero__quote-card .nw-form-row { grid-template-columns: 1fr 1fr; }

/* The digital weighbridge readout — reused as a supporting visual (About section) */
.nw-readout {
  background: #0C1116;
  border: 10px solid #23303D;
  border-radius: 8px;
  padding: 28px 26px;
  box-shadow: var(--nw-shadow-lg), inset 0 0 0 1px rgba(255,255,255,0.03);
  position: relative;
}
.nw-readout__label {
  font-family: var(--nw-font-mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: #6C8A9E; display: flex; justify-content: space-between; margin-bottom: 14px;
}
.nw-readout__digits {
  font-family: var(--nw-font-mono);
  font-size: clamp(38px, 5.5vw, 58px);
  font-weight: 700;
  color: #39E07A;
  text-shadow: 0 0 14px rgba(57, 224, 122, 0.55);
  letter-spacing: 0.02em;
  line-height: 1;
  display: flex; align-items: baseline; gap: 8px;
}
.nw-readout__digits span.nw-readout__unit { font-size: 0.35em; color: #6C8A9E; text-shadow: none; }
.nw-readout__foot {
  margin-top: 18px; padding-top: 14px; border-top: 1px dashed #23303D;
  display: flex; justify-content: space-between;
  font-family: var(--nw-font-mono); font-size: 11px; color: #6C8A9E; text-transform: uppercase; letter-spacing: 0.06em;
}
.nw-readout__status { color: var(--nw-accent-2); }

/* Trust strip */
.nw-trust-strip { background: var(--nw-navy-3); padding: 18px 0; }
.nw-trust-strip__inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px 34px;
  font-family: var(--nw-font-mono); font-size: 12.5px; letter-spacing: 0.05em; text-transform: uppercase; color: #C3CDD6;
}
.nw-trust-strip__inner strong { color: var(--nw-accent-2); }

/* ==========================================================================
   About Section
   ========================================================================== */
.nw-about__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.nw-about__visual {
  background: var(--nw-navy);
  border-radius: 6px;
  aspect-ratio: 4/3.2;
  position: relative;
  overflow: hidden;
}
.nw-about__visual .nw-readout { position: absolute; bottom: -20px; right: -20px; width: 68%; }
.nw-about__list { display: grid; gap: 12px; margin: 26px 0 30px; }
.nw-about__list li { display: flex; gap: 10px; font-size: 15px; color: var(--nw-navy); align-items: flex-start; }
.nw-about__list li::before {
  content: ''; width: 8px; height: 8px; background: var(--nw-accent); margin-top: 7px; flex-shrink: 0;
}

/* ==========================================================================
   Product Cards + Filters
   ========================================================================== */
.nw-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.nw-filter-btn {
  padding: 9px 18px; border-radius: 999px; border: 1px solid var(--nw-line);
  background: #fff; font-family: var(--nw-font-display); font-size: 12.5px; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--nw-steel);
}
.nw-filter-btn.nw-active, .nw-filter-btn:hover { background: var(--nw-navy); border-color: var(--nw-navy); color: #fff; }

.nw-product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 26px; }
.nw-product-card {
  background: #fff; border: 1px solid var(--nw-line); border-radius: 6px; overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.nw-product-card:hover { box-shadow: var(--nw-shadow); transform: translateY(-3px); }
.nw-product-card__media {
  background: var(--nw-navy-2); aspect-ratio: 16/11; position: relative;
  display: flex; align-items: flex-end; padding: 14px;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0 2px, transparent 2px 14px);
}
.nw-product-card__cap {
  font-family: var(--nw-font-mono); background: #0C1116; border: 2px solid var(--nw-accent);
  color: var(--nw-accent-2); font-weight: 700; font-size: 13px; padding: 5px 10px; border-radius: 4px;
}
.nw-product-card__body { padding: 20px; }
.nw-product-card__kw {
  font-family: var(--nw-font-mono); font-size: 10.5px; color: var(--nw-accent); text-transform: uppercase; letter-spacing: 0.08em;
}
.nw-product-card__body h3 { font-size: 17px; margin: 8px 0 10px; text-transform: none; letter-spacing: 0; }
.nw-product-card__body p { font-size: 14px; color: var(--nw-steel); line-height: 1.55; margin: 0 0 18px; }
.nw-product-card__actions { display: flex; gap: 10px; }

/* ==========================================================================
   Industries / Why Choose / Services — card grids
   ========================================================================== */
.nw-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.nw-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.nw-grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }

.nw-industry-card {
  background: #fff; border: 1px solid var(--nw-line); border-radius: 6px; padding: 26px;
  border-top: 3px solid transparent; transition: border-color 0.2s ease, transform 0.2s ease;
}
.nw-industry-card:hover { border-top-color: var(--nw-accent); transform: translateY(-3px); }
.nw-industry-card__icon {
  width: 80px; height: 80px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(88, 159, 11, 0.10);
  color: var(--nw-quality);
  margin-bottom: 16px;
  transition: background 0.2s ease, color 0.2s ease;
}
.nw-industry-card__icon svg { width: 64px; height: 64px; }
.nw-industry-card:hover .nw-industry-card__icon { background: rgba(250, 146, 47, 0.12); color: var(--nw-accent); }
.nw-industry-card h3 { font-size: 16px; text-transform: none; letter-spacing: 0; margin-bottom: 10px; }
.nw-industry-card p { font-size: 14px; color: var(--nw-steel); line-height: 1.55; margin: 0; }

.nw-feature-card { text-align: left; }
.nw-feature-card__icon {
  width: 52px; height: 52px; border-radius: 6px; background: var(--nw-navy); color: var(--nw-accent-2);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.nw-feature-card h3 { font-size: 16px; text-transform: none; letter-spacing: 0; margin-bottom: 8px; }
.nw-feature-card p { font-size: 14px; color: var(--nw-steel); line-height: 1.55; margin: 0; }

.nw-service-card {
  background: #fff; border: 1px solid var(--nw-line); border-radius: 6px; padding: 22px;
  display: flex; align-items: center; gap: 14px;
}
.nw-service-card__num { font-family: var(--nw-font-mono); color: var(--nw-accent); font-weight: 700; font-size: 13px; }
.nw-service-card span.nw-service-card__label { font-size: 14.5px; font-weight: 500; color: var(--nw-navy); }

/* Dark section wrapper (Why Choose Us / Technology) */
.nw-dark-section { background: var(--nw-navy); color: #fff; }
.nw-dark-section h2, .nw-dark-section h3 { color: #fff; }
.nw-dark-section .nw-section-head p { color: #A9B7C3; }
.nw-dark-section .nw-feature-card { background: var(--nw-navy-2); border-radius: 6px; padding: 26px; }
.nw-dark-section .nw-feature-card p { color: #A9B7C3; }
.nw-dark-section .nw-feature-card__icon { background: rgba(255,255,255,0.06); }

/* Stat strip */
.nw-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 50px; }
.nw-stat { text-align: center; border-left: 1px solid rgba(255,255,255,0.12); padding: 0 10px; }
.nw-stat:first-child { border-left: none; }
.nw-stat__num { font-family: var(--nw-font-mono); font-size: clamp(28px, 3.2vw, 40px); font-weight: 700; color: var(--nw-accent-2); }
.nw-stat__label { font-size: 12.5px; color: #A9B7C3; text-transform: uppercase; letter-spacing: 0.06em; margin-top: 6px; }

/* ==========================================================================
   Form fields (used inside the hero quote card)
   ========================================================================== */
.nw-form-card { background: #fff; border-radius: 8px; padding: 34px; box-shadow: var(--nw-shadow-lg); color: var(--nw-ink); }
.nw-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.nw-field { margin-bottom: 16px; }
.nw-field label { display: block; font-size: 12.5px; font-weight: 600; margin-bottom: 6px; color: var(--nw-navy); text-transform: uppercase; letter-spacing: 0.03em; }
.nw-field input, .nw-field select, .nw-field textarea {
  width: 100%; padding: 11px 13px; border: 1px solid var(--nw-line); border-radius: 4px;
  font-family: var(--nw-font-body); font-size: 14.5px; color: var(--nw-ink); background: #fbfcfd;
}
.nw-field input:focus, .nw-field select:focus, .nw-field textarea:focus {
  outline: 2px solid var(--nw-accent); outline-offset: 1px; border-color: var(--nw-accent);
}
.nw-field textarea { resize: vertical; min-height: 90px; }
.nw-field__error { color: var(--nw-danger); font-size: 12.5px; margin-top: 5px; display: none; }
.nw-req { color: var(--nw-danger); margin-left: 2px; }
.nw-field.nw-has-error input, .nw-field.nw-has-error select, .nw-field.nw-has-error textarea { border-color: var(--nw-danger); }
.nw-field.nw-has-error .nw-field__error { display: block; }

.nw-radio-group { display: flex; gap: 16px; flex-wrap: wrap; }
.nw-radio-group label { display: flex; align-items: center; gap: 6px; font-size: 13.5px; font-weight: 500; text-transform: none; color: var(--nw-ink); }

.nw-consent { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--nw-steel); margin: 8px 0 22px; }
.nw-consent input { width: auto; margin-top: 3px; }

.nw-honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.nw-faq { max-width: 820px; margin: 0 auto; }
.nw-faq-item { border-bottom: 1px solid var(--nw-line); }
.nw-faq-item__q {
  width: 100%; background: none; border: none; text-align: left; padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--nw-font-display); font-size: 16px; color: var(--nw-navy); text-transform: none; letter-spacing: 0;
}
.nw-faq-item__q svg { flex-shrink: 0; transition: transform 0.2s ease; color: var(--nw-accent); }
.nw-faq-item.nw-open .nw-faq-item__q svg { transform: rotate(45deg); }
.nw-faq-item__a { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; }
.nw-faq-item.nw-open .nw-faq-item__a { max-height: 260px; }
.nw-faq-item__a p { padding: 0 0 20px; color: var(--nw-steel); font-size: 14.5px; line-height: 1.6; margin: 0; }

/* ==========================================================================
   Final CTA band
   ========================================================================== */
.nw-cta-band {
  background: linear-gradient(120deg, var(--nw-accent) 0%, var(--nw-accent-dark) 100%);
  color: #fff; text-align: center;
}
.nw-cta-band h2 { color: #fff; font-size: clamp(24px, 3.2vw, 34px); margin-bottom: 14px; }
.nw-cta-band p { color: rgba(255,255,255,0.9); margin-bottom: 28px; }
.nw-cta-band__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ==========================================================================
   Footer
   ========================================================================== */
.nw-footer-cta { background: var(--nw-navy-3); }
.nw-footer-cta__inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 34px 0; flex-wrap: wrap; }
.nw-footer-cta h3 { color: #fff; font-size: 20px; margin-bottom: 6px; }
.nw-footer-cta p { color: #A9B7C3; margin: 0; font-size: 14px; }

.nw-footer { background: var(--nw-navy); color: #A9B7C3; padding-top: 56px; font-size: 14px; }
.nw-footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.1fr; gap: 36px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.nw-footer__about p { line-height: 1.65; margin: 14px 0 18px; }
.nw-footer__brand { color: #fff; font-size: 19px; }
.nw-footer__social { display: flex; gap: 10px; }
.nw-footer__social a { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; color: #C3CDD6; transition: background 0.15s ease, color 0.15s ease; }
.nw-footer__social a:hover { background: var(--nw-accent); color: #fff; }
.nw-footer__col h5 { color: #fff; font-size: 13px; letter-spacing: 0.06em; margin-bottom: 16px; }
.nw-footer__col li { margin-bottom: 10px; }
.nw-footer__col a:hover { color: var(--nw-accent-2); }
.nw-footer__contact li { line-height: 1.5; }

.nw-footer__products { padding: 32px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.nw-footer__pgroup { margin-bottom: 16px; }
.nw-footer__pgroup h6 { color: #fff; font-size: 11.5px; letter-spacing: 0.08em; margin-bottom: 8px; }
.nw-footer__pgroup p { font-size: 12.5px; line-height: 2.1; color: #7E8FA0; margin: 0; }
.nw-footer__pgroup a { color: #93A3B3; }
.nw-footer__pgroup a:hover { color: var(--nw-accent-2); }
.nw-footer__pgroup span { color: #445062; margin: 0 2px; }

.nw-footer__bottom { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; font-size: 12.5px; flex-wrap: wrap; gap: 10px; }
.nw-footer__bottom ul { display: flex; gap: 18px; }
.nw-footer__bottom a:hover { color: var(--nw-accent-2); }

/* ==========================================================================
   Modal
   ========================================================================== */
.nw-modal { position: fixed; inset: 0; z-index: 999; display: none; align-items: center; justify-content: center; padding: 20px; }
.nw-modal.nw-open { display: flex; }
.nw-modal__backdrop { position: absolute; inset: 0; background: rgba(11,24,38,0.6); }
.nw-modal__box {
  position: relative; background: #fff; border-radius: 8px; padding: 40px 34px; max-width: 420px; width: 100%;
  text-align: center; box-shadow: var(--nw-shadow-lg); animation: nwPop 0.2s ease;
}
@keyframes nwPop { from { transform: scale(0.94); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.nw-modal__icon { width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 18px; display: flex; align-items: center; justify-content: center; }
.nw-modal__icon--success { background: rgba(46,139,87,0.12); color: var(--nw-success); }
.nw-modal__icon--error { background: rgba(192,57,43,0.12); color: var(--nw-danger); }
.nw-modal__box h3 { font-size: 21px; margin-bottom: 10px; }
.nw-modal__box p { color: var(--nw-steel); font-size: 14.5px; line-height: 1.6; margin: 0 0 6px; }
.nw-modal__ref { font-family: var(--nw-font-mono); color: var(--nw-navy); font-weight: 700; font-size: 15px; }
.nw-modal__actions { display: flex; gap: 12px; margin-top: 24px; justify-content: center; }
.nw-modal__actions #nwModalRetry { display: none; }

/* ==========================================================================
   Utility
   ========================================================================== */
.nw-hide-sm, .nw-hide-xs { }
.nw-js-hidden { display: none !important; }

/* ==========================================================================
   Quality Assurance checklist
   ========================================================================== */
.nw-qa-section { position: relative; overflow: hidden; }
.nw-qa-section__bg {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 88% 30%, rgba(2,120,194,0.14), transparent 45%),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 42px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 42px);
}
.nw-qa-section__grid {
  position: relative; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: center;
}
.nw-qa-visual { display: flex; align-items: center; justify-content: center; }
.nw-qa-visual svg { width: 100%; max-width: 320px; height: auto; }

.nw-qa-list { display: grid; gap: 18px; max-width: 720px; }
.nw-qa-item { display: flex; gap: 16px; align-items: flex-start; }
.nw-qa-item__check {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  background: rgba(255,255,255,0.08); color: var(--nw-accent-2);
  display: flex; align-items: center; justify-content: center;
}
.nw-qa-item h3 { font-size: 15.5px; text-transform: none; letter-spacing: 0; color: #fff; margin-bottom: 4px; }
.nw-qa-item p { font-size: 14px; color: #A9B7C3; line-height: 1.55; margin: 0; }

/* ==========================================================================
   Contact section
   ========================================================================== */
.nw-contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.nw-contact__list { display: grid; gap: 16px; margin: 24px 0 28px; }
.nw-contact__list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--nw-ink); }
.nw-contact__list li strong { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--nw-steel-light); margin-bottom: 2px; }
.nw-contact__icon {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  background: rgba(2, 120, 194, 0.10); color: var(--nw-primary);
  display: flex; align-items: center; justify-content: center;
}
.nw-contact__map { border-radius: 8px; overflow: hidden; border: 1px solid var(--nw-line); box-shadow: var(--nw-shadow); min-height: 320px; }
.nw-contact__map iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .nw-grid-4 { grid-template-columns: repeat(3, 1fr); }
  .nw-grid-5 { grid-template-columns: repeat(3, 1fr); }
  .nw-footer__top { grid-template-columns: 1fr 1fr; }
  .nw-stats { grid-template-columns: repeat(2, 1fr); gap: 30px 20px; }
  .nw-stat { border-left: none; }
}

@media (max-width: 900px) {
  .nw-nav, .nw-header__actions .nw-btn { display: none; }
  .nw-hamburger { display: flex; }
  .nw-hero__split, .nw-about__grid, .nw-contact__grid { grid-template-columns: 1fr; }
  .nw-about__visual { aspect-ratio: 16/10; margin-bottom: 20px; }
  .nw-grid-3 { grid-template-columns: 1fr 1fr; }
  .nw-grid-4 { grid-template-columns: 1fr 1fr; }
  .nw-grid-5 { grid-template-columns: 1fr 1fr; }
  .nw-topbar { display: none; }

  .nw-mobile-menu {
    display: block; position: fixed; top: 0; right: -100%; width: min(340px, 86vw); height: 100%;
    background: var(--nw-navy); z-index: 200; padding: 84px 26px 26px; overflow-y: auto;
    transition: right 0.25s ease; box-shadow: -10px 0 40px rgba(0,0,0,0.3);
  }
  .nw-mobile-menu.nw-open { right: 0; }
  .nw-mobile-menu__close {
    position: absolute; top: 20px; right: 20px; width: 38px; height: 38px; border-radius: 50%;
    background: rgba(255,255,255,0.08); color: #fff; border: none; display: flex; align-items: center; justify-content: center;
  }
  .nw-mobile-menu__close:hover { background: var(--nw-accent); }
  .nw-mobile-menu ul { display: flex; flex-direction: column; gap: 4px; }
  .nw-mobile-menu > ul > li > a {
    display: flex; justify-content: space-between; align-items: center; width: 100%;
    padding: 14px 4px; color: #fff; background: none; border: none; border-bottom: 1px solid rgba(255,255,255,0.08);
    font-family: var(--nw-font-display); font-size: 14px; letter-spacing: 0.03em; text-transform: uppercase;
  }
  .nw-mobile-menu > ul > li > a.nw-active-link { color: var(--nw-accent); }
  .nw-mobile-cta { margin-top: 16px; text-align: center; border-bottom: none !important; justify-content: center !important; }
}

@media (max-width: 700px) {
  .nw-grid-3, .nw-grid-4, .nw-grid-5 { grid-template-columns: 1fr; }
  .nw-hero__quote-card { padding: 24px; }
  .nw-hero__quote-card .nw-form-row { grid-template-columns: 1fr; }
  .nw-qa-visual { display: none; }
  .nw-qa-section__grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 640px) {
  section { padding: 52px 0; }
  .nw-form-row { grid-template-columns: 1fr; }
  .nw-footer__top { grid-template-columns: 1fr; }
  .nw-footer-cta__inner { flex-direction: column; text-align: center; }
  .nw-form-card { padding: 24px; }
  .nw-stats { grid-template-columns: 1fr 1fr; }
}
