/* ============================================================
   DESIGN TOKENS
============================================================ */
:root {
  /* E-Waste page content tokens */
  --teal:       #003637;
  --teal-deep:  #002425;
  --green:      #4eaf46;
  --gold:       #D4AF37;
  --white:      #FFFFFF;
  --neutral-200:#F8FAFC;
  --neutral-800:#1E293B;
  --body-text:  #475569;
  --border:     #E2E8F0;
  --shadow:     0 4px 24px rgba(0,54,55,0.08);
  --radius-card:12px;
  --radius-pill:999px;
  /* NLS Group shared nav/footer tokens */
  --nls-yellow:    #FFD100;
  --nls-green:     #005526;
  --nls-green-ink: #002912;
}

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--white);
  color: var(--neutral-800);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--green); color: white; }
img { display: block; max-width: 100%; }
a { text-decoration: none; }

/* ============================================================
   SECTION 01: NAVIGATION BAR (NLS Group style)
============================================================ */
.nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 1320px;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(0, 54, 55, 0.15);
  border-radius: 18px;
  padding: 12px 18px 12px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 8px 32px -8px rgba(0, 54, 55, 0.12);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-img {
  height: 38px;
  width: auto;
  filter: drop-shadow(0 4px 10px rgba(255, 209, 0, 0.35));
}

.nav-logo-text { display: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  color: var(--teal);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  padding: 9px 14px;
  border-radius: 10px;
  transition: all 0.25s ease;
  letter-spacing: -0.005em;
}

.nav-links a:hover {
  color: var(--green);
  background: rgba(78, 175, 70, 0.1);
}

.nav-cta {
  background: var(--nls-yellow);
  color: var(--nls-green-ink) !important;
  font-weight: 700 !important;
  padding: 10px 18px !important;
  border-radius: 10px !important;
  margin-left: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px -4px rgba(255, 209, 0, 0.5);
  background: var(--nls-yellow) !important;
  color: var(--nls-green-ink) !important;
}

.nav-mobile-toggle { display: none; }

/* ---- Subsidiaries Dropdown ---- */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--teal);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  padding: 9px 14px;
  border-radius: 10px;
  transition: all 0.25s ease;
  letter-spacing: -0.005em;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}

.nav-dropdown-toggle:hover {
  color: var(--green);
  background: rgba(78, 175, 70, 0.1);
}

.nav-dropdown-toggle svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.nav-dropdown.open .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 220px;
  background: rgba(0, 20, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 209, 0, 0.15);
  border-radius: 14px;
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 300;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}

.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  transition: all 0.18s ease;
  letter-spacing: -0.005em;
}

.nav-dropdown-menu a:hover {
  background: rgba(255, 209, 0, 0.1);
  color: var(--nls-yellow);
}

.nav-dropdown-menu a .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--nls-yellow);
  opacity: 0.5;
  flex-shrink: 0;
  transition: opacity 0.18s ease;
}

.nav-dropdown-menu a:hover .dot { opacity: 1; }

.nav-dropdown-menu a.current {
  color: var(--nls-yellow);
  background: rgba(255, 209, 0, 0.08);
}
.nav-dropdown-menu a.current .dot { opacity: 1; }

/* ============================================================
   SECTION 02: HERO — SPLIT-DEPTH
============================================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 140px 64px 80px;
  overflow: hidden;
  color: white;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/ewaste - hero.png');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(0, 54, 55, 0.94) 0%,
    rgba(0, 54, 55, 0.82) 45%,
    rgba(0, 54, 55, 0.60) 100%
  );
  z-index: 1;
}

/* Both grid children sit above the overlay */
.hero-left,
.hero-right { position: relative; z-index: 2; }

/* Left column — centered text */
.hero-left {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  color: var(--green);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

.hero-h1 {
  font-size: clamp(38px, 4.5vw, 58px);
  font-weight: 800;
  line-height: 1.08;
  color: white;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease 0.1s forwards;
  text-align: center;
}

.hero-h1 .accent { color: var(--green); }

.hero-sub {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
  max-width: 440px;
  margin-bottom: 36px;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease 0.2s forwards;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease 0.3s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 15px;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--green);
  color: white;
  box-shadow: 0 8px 24px rgba(78,175,70,0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(78,175,70,0.5);
  background: #3d9b36;
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.5);
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  opacity: 0;
  animation: fadeIn 0.8s ease 0.5s forwards;
}
.hero-trust svg { color: var(--green); flex-shrink: 0; }

/* Right column — floating recovery icons */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: fadeIn 1s ease 0.5s forwards;
}

.float-icons-wrap {
  position: relative;
  width: 380px;
  height: 340px;
}

/* SVG dashed connecting lines */
.connect-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
}

/* Individual icon items */
.float-icon-item {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.float-icon-item:nth-child(2) { /* Material Recovery — top left */
  top: 20px;
  left: 20px;
  animation: floatA 4s ease-in-out infinite;
}
.float-icon-item:nth-child(3) { /* Metal Reclamation — top right */
  top: 20px;
  right: 20px;
  animation: floatB 4s ease-in-out 0.8s infinite;
}
.float-icon-item:nth-child(4) { /* Plastic Recovery — bottom center */
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  animation: floatC 4s ease-in-out 1.6s infinite;
}

@keyframes floatA {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}
@keyframes floatB {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
@keyframes floatC {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-10px); }
}

.float-circle {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: rgba(0, 30, 30, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 24px rgba(212,175,55,0.18), inset 0 0 0 1px rgba(212,175,55,0.1);
  transition: box-shadow 0.3s ease;
}

.float-circle:hover {
  box-shadow: 0 0 36px rgba(212,175,55,0.35), inset 0 0 0 1px rgba(212,175,55,0.2);
}

.float-circle svg { width: 36px; height: 36px; }

.float-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  line-height: 1.3;
}


/* ============================================================
   SHARED LAYOUT HELPERS
============================================================ */
.container { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
.section-pad { padding: 100px 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  color: var(--green);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.eyebrow::before { content: '['; opacity: 0.5; }
.eyebrow::after  { content: ']'; opacity: 0.5; }

.section-h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--teal);
  margin-bottom: 20px;
}
.section-h2.white { color: white; }

.section-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--body-text);
  max-width: 680px;
}
.section-sub.white { color: rgba(255,255,255,0.65); }

/* ============================================================
   SECTION 04: ABOUT
============================================================ */
.about { background: white; }

.about-inner {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 72px;
  align-items: center;
}

.about-image {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}
.about-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.6s ease;
}
.about-image:hover img { transform: scale(1.03); }

.about-body {
  font-size: 16px;
  line-height: 1.75;
  color: var(--body-text);
  margin-bottom: 40px;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.mission-card {
  background: white;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.mission-card:hover {
  border-color: rgba(78,175,70,0.4);
  box-shadow: 0 4px 20px rgba(0,54,55,0.07);
}

.mission-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(78,175,70,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.mission-card-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--green);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mission-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.mission-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--body-text);
}

/* ============================================================
   SECTION 05: IMPACT DASHBOARD
============================================================ */
.impact {
  background: var(--teal);
  padding: 100px 0;
}

.impact-head {
  text-align: center;
  margin-bottom: 64px;
}
.impact-head .eyebrow { color: var(--green); }

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.metric-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.metric-card:hover {
  transform: translateY(-4px);
  border-color: rgba(78,175,70,0.4);
}

.metric-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(78,175,70,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.metric-icon svg { width: 24px; height: 24px; stroke: var(--green); }

.metric-number {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--green);
  line-height: 1;
  margin-bottom: 10px;
}

.metric-label {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
  font-weight: 500;
}

/* Circular progress for recovery rate */
.metric-ring {
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 80px;
  height: 80px;
  opacity: 0.12;
}

/* Pulsing ring for certified destructions */
@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0; }
}
.pulse-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border: 2px solid var(--green);
  border-radius: 50%;
  animation: ringPulse 2s ease-in-out infinite;
  pointer-events: none;
}

/* ============================================================
   SECTION 06: SERVICES — BENTO GRID
============================================================ */
.services { background: var(--neutral-200); }

.services-head { margin-bottom: 56px; }

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

/* Card base */
.s-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  border: 1.5px solid rgba(78,175,70,0.3);
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.s-card:hover {
  border-color: var(--green);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(78,175,70,0.14);
}

/* Bento layout */
.s-card.large   { grid-column: span 6; }
.s-card.medium  { grid-column: span 3; }
.s-card.wide    { grid-column: span 4; }

/* Dark first card */
.s-card.dark {
  background: var(--teal);
  border-color: rgba(78,175,70,0.5);
}
.s-card.dark:hover { border-color: var(--green); }

/* Watermark number */
.s-card-num {
  position: absolute;
  bottom: 10px;
  right: 20px;
  font-size: 80px;
  font-weight: 800;
  line-height: 1;
  font-family: 'Archivo', sans-serif;
  letter-spacing: -0.05em;
  color: rgba(78,175,70,0.11);
  pointer-events: none;
  user-select: none;
}
.s-card.dark .s-card-num { color: rgba(255,255,255,0.07); }

.s-card-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.s-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--teal);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 12px;
}
.s-card.large h3 { font-size: 24px; }
.s-card.dark h3  { color: #ffffff; }

.s-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--body-text);
}
.s-card.dark p { color: rgba(255,255,255,0.7); }

.s-card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.s-card-feature {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
  padding: 5px 12px;
  background: rgba(255,255,255,0.9);
  border-radius: var(--radius-pill);
}
.s-card-feature svg { width: 12px; height: 12px; stroke: var(--green); }

.s-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(78,175,70,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform 0.3s ease, background 0.3s ease;
}
.s-card-icon svg { width: 26px; height: 26px; stroke: var(--teal); transition: stroke 0.3s ease; }
.s-card:hover .s-card-icon { background: var(--teal); transform: rotate(6deg); }
.s-card:hover .s-card-icon svg { stroke: white; }

/* Shield icon for card 1 */
.shield-wrap {
  position: relative;
  display: inline-flex;
  margin-bottom: 20px;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(78,175,70,0.15);
  align-items: center;
  justify-content: center;
}
.shield-wrap svg.shield-main {
  width: 26px;
  height: 26px;
  stroke: white;
}
.shield-wrap .shield-lock { display: none; }

.gold-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(212,175,55,0.15);
  border: 1px solid rgba(212,175,55,0.45);
  border-radius: var(--radius-pill);
  color: #c8a227;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-top: 16px;
}
.gold-badge::before { content: '◆'; color: var(--gold); }

/* ============================================================
   SECTION 07: 5-STEP PROCESS — LIFECYCLE PROTOCOL
============================================================ */
.process { background: white; }

.process-head { text-align: center; margin-bottom: 64px; }
.process-head .section-h2 { text-align: center; }
.process-head .section-sub { text-align: center; margin: 0 auto; }

.process-track {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

/* ---- keyframes ---- */
@keyframes nodePop {
  0%   { transform: scale(0.45); }
  55%  { transform: scale(1.14); }
  75%  { transform: scale(0.93); }
  100% { transform: scale(1); }
}
@keyframes badgePop {
  0%   { transform: scale(0); opacity: 0; }
  65%  { transform: scale(1.3);  opacity: 1; }
  100% { transform: scale(1);   opacity: 1; }
}
@keyframes iconSpin {
  to { transform: rotate(360deg); }
}

/* ---- step container ---- */
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  max-width: 175px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.process-step.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ---- circle node ---- */
.step-node {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  box-shadow: 0 8px 28px rgba(0,54,55,0.22);
  transform: scale(0.45);
}
.step-node svg {
  width: 34px;
  height: 34px;
  stroke: white;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* node bounce in once */
.process-step.in-view .step-node {
  animation: nodePop 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) 0.05s both;
}

/* recycling icon spins once (one full rotation) */
.process-step[data-step="4"].in-view .step-node svg {
  animation: iconSpin 0.8s ease-out 0.5s both;
}
/* sun/sort icon spins once */
.process-step[data-step="3"].in-view .step-node svg {
  animation: iconSpin 0.7s ease-out 0.5s both;
}

/* ---- badge ---- */
.step-badge {
  position: absolute;
  top: 0;
  right: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-size: 11px;
  font-weight: 700;
  font-family: 'Archivo', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
  transform: scale(0);
  opacity: 0;
}
.process-step.in-view .step-badge {
  animation: badgePop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.45s both;
}

/* ---- gold final step ---- */
.process-step:last-child .step-node {
  background: var(--gold);
  box-shadow: 0 8px 28px rgba(212,175,55,0.35);
}
.process-step:last-child.in-view .step-node {
  animation: nodePop 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) 0.05s both;
}
.process-step:last-child .step-badge { background: #b8900e; }

/* ---- connector line grows left→right after preceding step appears ---- */
.step-connector {
  flex-shrink: 0;
  width: 56px;
  height: 2px;
  background: var(--teal);
  margin-top: 44px;
  opacity: 0.3;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1) 0.25s;
}
.step-connector.gold {
  background: var(--gold);
  opacity: 0.7;
}
.process-step.in-view + .step-connector {
  transform: scaleX(1);
}

.step-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--teal);
  text-align: center;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.step-desc {
  font-size: 13px;
  line-height: 1.55;
  color: var(--body-text);
  text-align: center;
  max-width: 140px;
}

/* ============================================================
   SECTION 08: COMPLIANCE
============================================================ */
.compliance {
  background: var(--neutral-200);
}

.compliance-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.compliance-inner .section-h2 { text-align: center; }
.compliance-inner .section-sub { margin: 0 auto 48px; text-align: center; }

.compliance-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  color: var(--teal);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  cursor: default;
}
.badge svg { width: 18px; height: 18px; stroke: var(--body-text); transition: stroke 0.25s ease; }
.badge:hover { border-color: var(--green); box-shadow: 0 4px 16px rgba(78,175,70,0.12); }
.badge:hover svg { stroke: var(--teal); }

/* ============================================================
   SECTION 09: CLIENTS — WHO WE SERVE
============================================================ */
.clients {
  background: var(--teal);
  padding: 100px 0;
}

.clients-head {
  text-align: center;
  margin-bottom: 56px;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.client-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 32px;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.client-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(78,175,70,0.4);
}

.client-category {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.client-category::before { content: ''; width: 24px; height: 2px; background: var(--green); }

.client-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.client-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  line-height: 1.4;
}
.client-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

/* ============================================================
   SECTION 10: FOOTER (NLS Group style)
============================================================ */
footer {
  background: var(--nls-green-ink);
  color: #FFFFFF;
  padding: 100px 32px 32px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--nls-yellow), transparent);
  opacity: 0.4;
}

.footer-top {
  max-width: 1320px;
  margin: 0 auto 64px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
}

.footer-brand .logo-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.footer-brand .logo-row img {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  object-fit: contain;
}

.footer-brand .logo-row .text {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.02em;
  line-height: 1;
}

.footer-brand .logo-row .text small {
  display: block;
  font-size: 10px;
  color: var(--nls-yellow);
  letter-spacing: 0.22em;
  margin-top: 4px;
  font-weight: 600;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 15px;
  line-height: 1.6;
  max-width: 360px;
  margin-bottom: 28px;
}

.socials {
  display: flex;
  gap: 10px;
}

.social {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--nls-yellow);
  text-decoration: none;
  transition: all 0.25s ease;
}

.social:hover {
  background: var(--nls-yellow);
  color: var(--nls-green-ink);
  border-color: var(--nls-yellow);
  transform: translateY(-2px);
}

.social svg { width: 18px; height: 18px; }

.footer-col h5 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--nls-yellow);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s ease;
}

.footer-col a:hover { color: var(--nls-yellow); }

.footer-bottom {
  max-width: 1320px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.footer-bottom .legal { display: flex; gap: 24px; }
.footer-bottom .legal a { color: rgba(255, 255, 255, 0.5); text-decoration: none; }
.footer-bottom .legal a:hover { color: var(--nls-yellow); }

.wordmark {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: clamp(80px, 18vw, 240px);
  line-height: 0.8;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 209, 0, 0.25);
  text-align: center;
  margin-top: 40px;
  margin-bottom: -30px;
  pointer-events: none;
  user-select: none;
}

/* ============================================================
   ANIMATIONS — UTILITY
============================================================ */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }
.reveal.d4 { transition-delay: 0.4s; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1200px) {
  .bento-grid { grid-template-columns: repeat(6, 1fr); }
  .s-card.large  { grid-column: span 6; }
  .s-card.medium { grid-column: span 3; }
  .s-card.wide   { grid-column: span 3; }
  .metrics-grid  { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--nls-yellow);
    border: none;
    cursor: pointer;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 130px 32px 60px;
    min-height: auto;
    text-align: center;
  }
  .hero-right { display: none; }

  .about-inner { grid-template-columns: 1fr; }
  .about-image { display: none; }
  .mission-grid { grid-template-columns: 1fr; }

  .clients-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }

  .process-track { flex-wrap: wrap; gap: 32px; justify-content: center; }
  .step-connector { display: none; }
  .process-step { max-width: 130px; }
}

@media (max-width: 600px) {
  .nav { padding: 10px 12px 10px 16px; }
  .nav-logo-text { font-size: 15px; }
  .nav-logo-text small { font-size: 8px; }
  .hero { padding: 100px 20px 48px; }
  .hero-h1 { font-size: 36px; }
  .section-pad { padding: 70px 0; }
  .bento-grid { grid-template-columns: 1fr; }
  .s-card.large, .s-card.medium, .s-card.wide { grid-column: span 1; }
  .metrics-grid { grid-template-columns: 1fr 1fr; }
  .compliance-badges { flex-direction: column; align-items: center; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

#back-to-top {
  position: fixed; bottom: 32px; right: 32px; z-index: 999;
  width: 48px; height: 48px; border-radius: 12px; border: none;
  background: #003637; color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px -4px rgba(0,54,55,0.4);
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.3s ease, transform 0.3s ease, filter 0.2s ease;
  pointer-events: none;
}
#back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
#back-to-top:hover { transform: translateY(-3px); filter: brightness(1.15); }

