/* ── Reset & Base ─────────────────────────────── */

#navbar {
  background: linear-gradient(0deg, #ffffff05, #ffffff50);
}

.onscroll_back#navbar {
  background: var(--white);
}

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

.nw-page {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
}

.nw-page img {
  display: block;
  max-width: 100%;
}

.nw-page a {
  text-decoration: none;
  color: inherit;
  max-width: 90vw;
}

.nw-page button {
  cursor: pointer;
  /* border: none; */
  /* background: none; */
  font-family: inherit;
}

/* ── Layout Helpers ──────────────────────────── */
.nw-container {
  /* max-width: 1280px; */
  margin: 0 auto;
  padding: 0 6vw;
}

.extraPadding {
  padding-inline: 10vw;
}

.nw-tag {
  font-size: 15px;
  letter-spacing: .3em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
  display: block;
  margin-bottom: 20px;
}

.nw-tag--blue {
  color: var(--blue);
}

.nw-tag--yellow {
  color: var(--yellow);
}

.fw-400 {
  font-weight: 400 !important;
}

.fw-500 {
  font-weight: 500 !important;
}

.nw-h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 600;
  line-height: 1.05;
  color: var(--navy);
}

.nw-h2 {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--navy);
}

.nw-h3 {
  font-size: 28px;
  font-weight: 600;
  color: var(--navy);
}

.nw-h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
}

.nw-body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--muted);
}

.nw-body--lg {
  font-size: 22px;
}

.nw-body--sm {
  font-size: 13px;
}

.nw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .05em;
  padding: 14px 28px;
  border-radius: 8px;
  transition: all .25s ease;
  white-space: nowrap;
}

.nw-btn--yellow {
  background: var(--yellow);
  color: var(--navy);
}

.nw-btn--yellow:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(255, 212, 0, .35);
}

.nw-btn--navy {
  background: var(--navy);
  color: var(--white) !important;
}

.nw-btn--navy:hover {
  background: #0d2147;
}

.nw-btn--outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid rgba(10, 26, 58, .5);
}

.nw-btn--outline:hover {
  background: var(--navy);
  color: var(--white);
}

.nw-btn--lg {
  padding: 18px 40px;
  font-size: 19px;
}

.nw-btn--rounded {
  border-radius: 100px;
}

/* Reveal animation */
.nw-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s cubic-bezier(.16, 1, .3, 1), transform .8s cubic-bezier(.16, 1, .3, 1);
}

.nw-reveal.nw-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════
     1. HERO
  ═══════════════════════════════════════════════ */
.nw-hero {
  position: relative;
  padding: 140px 0 100px;
  overflow: hidden;
  background: var(--white);
}

.nw-hero__grid-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .045;
  background-image: linear-gradient(var(--navy) 1px, transparent 1px),
    linear-gradient(90deg, var(--navy) 1px, transparent 1px);
  background-size: 40px 40px;
}

.nw-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.nw-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.nw-hero__eyebrow-line {
  width: 60px;
  height: 2px;
}

.nw-hero__eyebrow-line:first-child {
  background: linear-gradient(90deg, #0A1A3A00 0%, #0A1A3A30 30%, #0A1A3A60 70%, #0A1A3A 100%);
}

.nw-hero__eyebrow-line:last-child {
  background: linear-gradient(90deg, #0A1A3A 0%, #0A1A3A60 30%, #0A1A3A30 70%, #0A1A3A00 100%);
}

.nw-hero__eyebrow-text {
  font-size: 14px;
  letter-spacing: .35em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--navy);
}

.nw-hero__title {
  margin-bottom: 28px;
}

.nw-hero__subtitle {
  /* max-width: 480px; */
  margin-bottom: 48px;
}

.nw-hero__ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.nw-hero__badge {
  display: inline-block;
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 4px;
  font-family: var(--font-body);
  font-size: 22px;
  color: var(--muted);
}

.nw-hero__footer-note {
  margin-top: 44px;
  text-align: center;
  font-size: 14px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(10, 26, 58, .5);
}

/* Sector Showcase */
.nw-showcase-wrap {
  position: relative;
}

.nw-showcase {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  border: 1px solid rgba(10, 26, 58, .1);
  box-shadow: 0 40px 80px -20px rgba(10, 26, 58, .18);
}

.nw-showcase__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .8s ease;
  background-size: cover;
  background-position: center;
}

.nw-showcase__slide.nw-active {
  opacity: 1;
}

.nw-showcase__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 26, 58, .2);
}

.nw-showcase__badge {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(10, 26, 58, .85);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, .1);
}

.nw-showcase__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  animation: nw-pulse 2s infinite;
}

.nw-showcase__badge-text {
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--white);
}

/* Detection boxes */
.nw-det-box {
  position: absolute;
  border: 1px solid transparent;
  box-sizing: border-box;
  animation: nw-fadeIn .5s ease forwards;
  opacity: 0;
}

.nw-det-box--yellow {
  border-color: var(--yellow);
}

.nw-det-box--blue {
  border-color: #60a5fa;
}

.nw-det-box--red {
  border-color: #ef4444;
}

.nw-det-box__corner {
  position: absolute;
  width: 8px;
  height: 8px;
}

.nw-det-box__corner--tl {
  top: 0;
  left: 0;
  border-top: 2px solid;
  border-left: 2px solid;
}

.nw-det-box__corner--tr {
  top: 0;
  right: 0;
  border-top: 2px solid;
  border-right: 2px solid;
}

.nw-det-box__corner--bl {
  bottom: 0;
  left: 0;
  border-bottom: 2px solid;
  border-left: 2px solid;
}

.nw-det-box__corner--br {
  bottom: 0;
  right: 0;
  border-bottom: 2px solid;
  border-right: 2px solid;
}

.nw-det-box--yellow .nw-det-box__corner {
  border-color: var(--yellow);
}

.nw-det-box--blue .nw-det-box__corner {
  border-color: #60a5fa;
}

.nw-det-box--red .nw-det-box__corner {
  border-color: #ef4444;
}

.nw-det-box__tag {
  position: absolute;
  top: -22px;
  left: 0;
  padding: 2px 6px;
  border-radius: 2px;
  font-size: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  white-space: nowrap;
}

.nw-det-box--yellow .nw-det-box__tag {
  background: var(--yellow);
  color: var(--navy);
}

.nw-det-box--blue .nw-det-box__tag {
  background: #60a5fa;
  color: var(--white);
}

.nw-det-box--red .nw-det-box__tag {
  background: #ef4444;
  color: var(--white);
}

.nw-showcase__info {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(10, 26, 58, .9);
  backdrop-filter: blur(8px);
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .1);
  /* max-width: 200px; */
}

.nw-showcase__info-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  display: inline-block;
  margin-right: 6px;
}

.nw-showcase__info-label {
  font-size: 8px;
  font-weight: 600;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: .15em;
  margin-bottom: 6px;
}

.nw-showcase__info-text {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--white);
  font-weight: 500;
}

.nw-showcase__dots {
  position: absolute;
  bottom: 24px;
  right: 24px;
  display: flex;
  gap: 6px;
  align-items: center;
}

.nw-showcase__dot {
  height: 4px;
  width: 6px;
  background: rgba(255, 255, 255, .3);
  border-radius: 100px;
  transition: width .5s ease;
  overflow: hidden;
}

.nw-showcase__dot.nw-active {
  width: 24px;
  background: rgba(255, 255, 255, .3);
}

.nw-showcase__dot-fill {
  height: 100%;
  background: var(--yellow);
  border-radius: 100px;
  width: 0;
  transition: width 5s linear;
}

.nw-showcase__dot.nw-active .nw-showcase__dot-fill {
  width: 100%;
}

/* System health accent */
.nw-showcase__health {
  position: absolute;
  bottom: -45px;
  right: -32px;
  background: var(--navy);
  padding: 20px 24px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 20px 50px rgba(10, 26, 58, .3);
  min-width: 200px;
}

.nw-showcase__health-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.nw-showcase__health-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nw-showcase__health-label {
  font-size: 9px;
  font-weight: 600;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: .15em;
}

.nw-showcase__health-val {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}

.nw-showcase__health-bar {
  height: 4px;
  background: rgba(255, 255, 255, .1);
  border-radius: 100px;
  overflow: hidden;
}

.nw-showcase__health-fill {
  height: 100%;
  background: var(--yellow);
  border-radius: 100px;
  animation: nw-bar 4s ease-in-out infinite;
}

@keyframes nw-bar {

  0%,
  100% {
    width: 40%
  }

  50% {
    width: 90%
  }
}

@keyframes nw-pulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .4
  }
}

@keyframes nw-fadeIn {
  to {
    opacity: 1
  }
}

@keyframes nw-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 25px));
  }
}

/* ═══════════════════════════════════════════════
     2. TRUST STRIP / LOGO BAR
  ═══════════════════════════════════════════════ */

.nw-logos {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 45px 0;
  overflow: hidden;
  position: relative;
}

.nw-logos::before,
.nw-logos::after {
  content: "";
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.nw-logos::before {
  left: 0;
  background: linear-gradient(to right, var(--off-white), transparent);
}

.nw-logos::after {
  right: 0;
  background: linear-gradient(to left, var(--off-white), transparent);
}

.nw-logos__track {
  display: flex;
  align-items: center;
  gap: 50px;
  width: max-content;
  animation: nw-scroll 120s linear infinite;
  will-change: transform;
}

.nw-logos__track:hover {
  animation-play-state: paused;
}

.nw-logos__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  padding: 10px;
  border-radius: 8px;
  min-width: 10vw;
}

.nw-logos__item img {
  height: 8vw;
  max-height: 5vw;
  width: 8vw;
  object-fit: contain;
  transition: opacity .3s;
  pointer-events: none;
}

.nw-logos__item span {
  font-size: 10px;
  letter-spacing: .2em;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
  /* display: none; */
}

/* ═══════════════════════════════════════════════
     3. PROBLEM SECTION
  ═══════════════════════════════════════════════ */
.nw-problem {
  padding: 96px 0;
  background: var(--white);
}

.nw-problem__header {
  text-align: center;
  margin-bottom: 64px;
}

.nw-problem__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 72px;
}

.nw-problem__stat {
  text-align: center;
}

.nw-problem__stat-num {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 8px;
}

.nw-problem__stat-label {

  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-weight: 500;
  color: var(--muted);
}

/* Before/After Slider */
.nw-slider {
  position: relative;
  aspect-ratio: 21/9;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: ew-resize;
  user-select: none;
  touch-action: none;
}

.nw-slider__layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.nw-slider__before {
  filter: grayscale(1);
}

.nw-slider__after {
  clip-path: inset(0 50% 0 0);
}

.nw-slider__before-tag,
.nw-slider__after-tag {
  position: absolute;
  top: 14px;
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .15em;
}

.nw-slider__before-tag {
  left: 14px;
  background: rgba(0, 0, 0, .5);
  backdrop-filter: blur(8px);
  color: var(--white);
}

.nw-slider__after-tag {
  right: 14px;
  background: var(--yellow);
  color: var(--navy);
}

.nw-slider__after-boxes {
  position: absolute;
  inset: 0;
}

.nw-slider__det {
  position: absolute;
  border-width: 4px;
  border-style: solid;
  animation: nw-pulse 3s infinite;
}

.nw-slider__det span {
  padding: 1px 4px;
  font-size: 0.7vw;
}

.nw-slider__det--yellow {
  border-color: var(--yellow);
}

.nw-slider__det--yellow span {
  color: var(--navy);
  background-color: var(--yellow);
}

.nw-slider__det--red {
  border-color: var(--red);
}

.nw-slider__det--red span {
  color: var(--white);
  background-color: var(--red);
}

.nw-slider__det--blue {
  border-color: var(--blue);
}

.nw-slider__det--green {
  border-color: var(--green);
}

.nw-slider__det--blue span {
  color: var(--white);
  background-color: var(--blue);
}

.nw-slider__det--green span {
  color: var(--white);
  background-color: var(--green);
}

.nw-slider__det1 {
  position: absolute;
  border: 2px solid var(--yellow);
  animation: nw-pulse 3s infinite;
}

.nw-slider__det1 span {
  position: absolute;
  bottom: -22px;
  left: 0;
  background: var(--yellow);
  color: var(--navy);

  font-size: 8px;
  font-weight: 600;
  padding: 2px 6px;
  text-transform: uppercase;
}

.nw-slider__det2 {
  position: absolute;
  border: 2px solid #ef4444;
  animation: nw-pulse 3s .5s infinite;
}

.nw-slider__det2 span {
  position: absolute;
  bottom: -22px;
  left: 0;
  background: #ef4444;
  color: var(--white);

  font-size: 8px;
  font-weight: 600;
  padding: 2px 6px;
  text-transform: uppercase;
}

.nw-slider__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--yellow);
  left: 50%;
  z-index: 10;
  pointer-events: none;
  transition: left 0s;
}

.nw-slider__knob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.nw-slider__knob-line {
  width: 2px;
  height: 12px;
  background: rgba(10, 26, 58, .4);
  border-radius: 1px;
}

/* ═══════════════════════════════════════════════
     4. PRODUCT SHOWCASE
  ═══════════════════════════════════════════════ */
.nw-pshowcase {
  padding: 100px 0 80px 0;
  background: var(--off-white);
}

.nw-pshowcase__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.nw-pshowcase__grid em {
  font-weight: 600 !important;
}

.nw-pshowcase__features {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.nw-pshowcase__feature {
  display: flex;
  gap: 20px;
}

.nw-pshowcase__feature-bar {
  width: 2px;
  background: var(--yellow);
  flex-shrink: 0;
  min-height: 44px;
  transition: min-height .5s ease;
}

.nw-pshowcase__feature-title {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.nw-pshowcase__feature-desc {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--muted);
  /* max-width: 300px; */
  line-height: 1.6;
}

.nw-pshowcase__img-wrap {
  position: relative;
  /* aspect-ratio: 4/5; */
  overflow: hidden;
  /* box-shadow: 0 40px 100px -20px rgba(10, 26, 58, .2); */
  border-radius: 12px;
}

.nw-pshowcase__img {
  width: 100%;
  /* height: 100%; */
  object-fit: contain;
}

.nw-pshowcase__img-overlay {
  position: absolute;
  inset: 0;
}

.nw-pshowcase__hud {
  position: absolute;
  inset: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  pointer-events: none;
}

.nw-pshowcase__hud-top {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.nw-pshowcase__hud-card {
  background: rgba(10, 26, 58, .9);
  backdrop-filter: blur(8px);
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
}

.nw-pshowcase__hud-card-label {

  font-size: 9px;
  font-weight: 600;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: .15em;
  margin-bottom: 4px;
}

.nw-pshowcase__hud-card-val {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
}

.nw-pshowcase__play-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(255, 212, 0, .4);
}

.nw-pshowcase__inference {
  background: rgba(10, 26, 58, .9);
  backdrop-filter: blur(8px);
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
}

.nw-pshowcase__inference-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.nw-pshowcase__inference-status {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nw-pshowcase__inference-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  animation: nw-pulse 2s infinite;
}

.nw-pshowcase__inference-label {

  font-size: 9px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .15em;
}

.nw-pshowcase__inference-ver {

  font-size: 9px;
  font-weight: 600;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: .15em;
}

.nw-pshowcase__bar-wrap {
  height: 6px;
  background: rgba(255, 255, 255, .1);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 12px;
}

.nw-pshowcase__bar-fill {
  height: 100%;
  background: var(--yellow);
  border-radius: 100px;
  animation: nw-bar 4s ease infinite;
}

.nw-pshowcase__inference-meta {
  display: flex;
  justify-content: space-between;
}

.nw-pshowcase__inference-mono {
  font-family: 'Courier New', monospace;
  font-size: 8px;
  color: rgba(255, 255, 255, .4);
  text-transform: uppercase;
}

.nw-pshowcase__inference-opt {

  font-size: 8px;
  font-weight: 600;
  color: var(--yellow);
  text-transform: uppercase;
}

.nw-pshowcase__caption {
  position: absolute;
  bottom: -32px;
  left: -32px;
  background: var(--white);
  padding: 24px 28px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 40px rgba(10, 26, 58, .08);
  /* max-width: 260px; */
}

.nw-pshowcase__caption-text {
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════
     5. DIFFERENTIATORS
  ═══════════════════════════════════════════════ */
.nw-diff {
  padding: 96px 0;
  background: var(--white);
}

.nw-diff__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.nw-diff__left {
  position: sticky;
  top: 120px;
}

.nw-diff__right {
  margin-top: 42px;
}

.nw-diff__orbit {
  aspect-ratio: 1;
  max-width: 380px;
  margin: 0 auto 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nw-diff__ring {
  width: 75%;
  height: 75%;
  border: 2px solid rgba(10, 26, 58, .3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: nw-spin 15s linear infinite;
}

.nw-diff__ring_outer {
  width: 68%;
  height: 68%;
  border: 2px solid rgba(10, 26, 58, .1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
}

@keyframes nw-spin {
  to {
    transform: rotate(360deg)
  }
}

.nw-diff__ring-icon {
  position: absolute;
  background: var(--white);
  padding: 8px;
  border-radius: 0;
  color: var(--navy);
}

.nw-diff__ring-icon--t {
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
}

.nw-diff__ring-icon--r {
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
}

.nw-diff__ring-icon--b {
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
}

.nw-diff__center {
  width: 65px;
  height: 65px;
  background: var(--navy);
  border-radius: 16px;
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0px 0px 200px 20px var(--yellow);
}

.nw-diff__center svg {
  transform: rotate(-45deg);
  color: var(--yellow);
}

.nw-proven-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.nw-diff__badge {
  /* position: absolute; */
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  box-shadow:
    0 2px 16px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  padding: 45px 36px;
  border-radius: 12px;
  z-index: 2;
  gap: 12px;
}

.nw-diff__badge--tl1 {
  top: 0px;
  right: -35px;
}

.nw-diff__badge--tl2 {
  top: -15px;
  left: -35px;
}

.nw-diff__badge--tl3 {
  bottom: 0;
  left: -35px;
}

.nw-diff__badge--tl4 {
  bottom: -20px;
  right: -35px;
}

.nw-diff__badge-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nw-diff__badge-icon--green {
  background: #f0fdf4;
}

.nw-diff__badge-icon--blue {
  background: #eff6ff;
}

.nw-diff__badge-text {
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--navy);
}

/* Checklist */
.nw-checklist__item {
  padding: 24px 20px;
  border-top: 2px solid var(--border);
  display: flex;
  gap: 16px;
}

.nw-checklist__item:last-of-type {
  border: 2px solid var(--yellow);
  border-radius: 12px;
  background-color: #febe0005;
}

.nw-checklist__icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 4px;
}

.nw-checklist__title {
  font-family: var(--font-body);
  font-size: 19px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.nw-checklist__desc {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--muted);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════
     6. INTEGRATION
  ═══════════════════════════════════════════════ */
.nw-integ {
  padding: 100px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.nw-integ__grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 72px;
  align-items: center;
  margin-bottom: 72px;
}

.nw-integ__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}

.nw-integ__pill {
  padding: 8px 18px;
  background: rgba(10, 26, 58, .05);
  border-radius: 100px;

  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
}

.nw-integ__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.nw-integ__card {
  border-radius: 20px;
  padding: 36px;
}

.nw-integ__card--dark {
  background: var(--navy);
  color: var(--white);
}

.nw-integ__card--light {
  background: var(--off-white);
  border: 1px solid var(--border);
}

.nw-integ__card-icon {
  margin-bottom: 28px;
}

.nw-integ__card-title {

  font-size: 18px;
  font-weight: 600;
  margin-bottom: 18px;
}

.nw-integ__card--dark .nw-integ__card-title {
  color: var(--white);
}

.nw-integ__card--light .nw-integ__card-title {
  color: var(--navy);
}

.nw-integ__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nw-integ__list-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

.nw-integ__list-item svg {
  flex-shrink: 0;
}

.nw-integ__card--dark .nw-integ__list-item {
  color: rgba(255, 255, 255, .6);
}

.nw-integ__card--light .nw-integ__list-item {
  color: var(--muted);
}

.nw-integ__card-footer {
  margin-top: 28px;

  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .15em;
}

.nw-integ__card--dark .nw-integ__card-footer {
  color: rgba(255, 255, 255, .3);
}

.nw-integ__card--light .nw-integ__card-footer {
  color: var(--muted);
}

.nw-integ__banner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  border: 1px solid rgba(10, 26, 58, .1);
  border-radius: 100px;
  padding: 8px 8px 8px 28px;
  box-shadow: 0 4px 24px rgba(10, 26, 58, .06);
}

.nw-integ__banner-text {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
}

/* ═══════════════════════════════════════════════
     7. HOW IT WORKS
  ═══════════════════════════════════════════════ */
.nw-how {
  padding: 120px 0;
  background: var(--white);
  overflow: hidden;
}

.nw-how__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
  position: relative;
  margin-top: 72px;
}

.nw-how__connector {
  display: none;
  position: absolute;
  top: 40px;
  left: 2%;
  right: 10%;
  height: 1px;
  background: var(--border);
}

.nw-how__step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.nw-how__step-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  margin-bottom: 36px;
  box-shadow: 0 2px 12px rgba(10, 26, 58, .06);
  transition: border-color .4s ease;
}

.nw-how__step:hover .nw-how__step-circle {
  border-color: var(--navy);
}

.nw-how__step-num {

  font-size: 10px;
  font-weight: 600;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .15em;
  margin-bottom: 16px;
}

.nw-how__step-title {
  font-size: 28px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 16px;
}

.nw-how__step-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 300px;
}

/* ═══════════════════════════════════════════════
     8. INDUSTRIES
  ═══════════════════════════════════════════════ */
.nw-industries {
  padding: 96px 0;
}

.nw-industries__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 56px;
}

.nw-ind-card {
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all .4s ease;
}

.nw-ind-card:hover {
  box-shadow: 0 24px 60px rgba(10, 26, 58, .1);
  border-color: var(--yellow);
}

.nw-ind-card__icon {
  margin-bottom: 20px;
  color: var(--navy);
  transition: color .3s;
}

.nw-ind-card:hover .nw-ind-card__icon {
  color: var(--blue);
}

.nw-ind-card__title {

  font-size: 20px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 10px;
}

.nw-ind-card__desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.nw-ind-card__link {
  display: flex;
  align-items: center;
  gap: 4px;

  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  transition: color .3s;
}

.nw-ind-card__link:hover {
  color: var(--yellow);
}

.nw-ind-card__link svg {
  transition: transform .3s;
}

.nw-ind-card__link:hover svg {
  transform: translateX(3px);
}

.nw-case-studies {
  padding: 96px 0;
  background: rgba(10, 26, 58, .03);
}

.nw-case-studies__grid {
  display: grid;
  /* max-width: 1500px; */
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 56px;
  margin-inline: auto;
}

.nw-study-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.nw-study-card:hover {
  border-color: rgba(10, 26, 58, .2);
  box-shadow: 0 12px 40px rgba(10, 26, 58, .1);
}

.nw-study-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #edf1f7;
}

.nw-study-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.nw-study-card:hover .nw-study-card__media img {
  transform: scale(1.04);
}

#station-f {
  scroll-margin-top: -80px;
}

.nw-study-card__body {
  padding: 8px 22px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, .72) 35%, rgba(0, 0, 0, .35) 90%, rgba(0, 0, 0, 0) 100%);
  transition: all .35s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 95%;
}

.nw-study-card__tags {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 5px;
}

.nw-study-card__tags span {
  padding: 15px 20px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  border: 1px solid rgba(255, 255, 255, .1);
}

.nw-study-card__tags i {
  color: var(--white);
  font-size: 16px;
}

.nw-study-card__title {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 1.25vw;
  font-weight: 600;
  line-height: 1.25;
  min-height: 80px;
}

.nw-study-card__desc {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════
     9. USE CASES
  ═══════════════════════════════════════════════ */
.nw-usecases {
  padding: 96px 0;
  background: rgba(10, 26, 58, .03);
}

.nw-usecases__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 56px;
}

.nw-uc-card {
  background: var(--white);
  padding: 36px 28px;
  border: 1px solid var(--border);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  transition: all .4s ease;
}

.nw-uc-card:hover {
  box-shadow: 0 28px 70px rgba(10, 26, 58, .12);
}

.nw-uc-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
  color: var(--white);
  transition: all .3s ease;
}

.nw-uc-card:hover .nw-uc-card__icon {
  background: var(--yellow);
  color: var(--navy);
}

.nw-uc-card__title {

  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}

.nw-uc-card__desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.nw-uc-card__cta {
  margin-top: auto;
  padding-top: 24px;
  display: flex;
  align-items: center;
  gap: 6px;

  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--navy);
  opacity: 0;
  transition: opacity .3s;
}

.nw-uc-card:hover .nw-uc-card__cta {
  opacity: 1;
}

/* ═══════════════════════════════════════════════
     10. WHY EUROPE
  ═══════════════════════════════════════════════ */
.nw-europe {
  padding: 120px 0;
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.nw-europe::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(31, 79, 168, .2), transparent 60%);
}

.nw-europe__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.nw-europe__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(255, 212, 0, .1);
  border: 1px solid rgba(255, 212, 0, .2);
  border-radius: 100px;
  margin-bottom: 28px;
}

.nw-europe__tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  animation: nw-pulse 2s infinite;
}

.nw-europe__tag-text {

  font-size: 10px;
  font-weight: 600;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: .25em;
}

.nw-europe__title {
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 24px;
  color: var(--white);
}

.nw-europe__title-hi {
  color: var(--yellow);
}

.nw-europe__desc {
  font-size: 18px;
  color: rgba(255, 255, 255, .7);
  line-height: 1.7;
  /* max-width: 480px; */
}

.nw-europe__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 44px;
  padding-top: 44px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.nw-europe__stat-val {
  font-size: 30px;
  font-weight: 600;
  color: var(--white);
}

.nw-europe__stat-label {

  font-size: 10px;
  font-weight: 600;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: .15em;
  margin-top: 8px;
}

.nw-europe__cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 90vw;
}

.nw-europe__card {
  padding: 28px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  gap: 20px;
  transition: background .4s;
}

.nw-europe__card:hover {
  background: rgba(255, 255, 255, .1);
}

.nw-europe__card--featured {
  background: var(--navy);
  border: 2px solid var(--yellow);
  box-shadow: 0 0 50px rgba(255, 212, 0, .1);
}

.nw-europe__card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--navy);
}

.nw-europe__card-title {

  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.nw-europe__card-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, .5);
  line-height: 1.65;
}

.nw-europe__card--featured .nw-europe__card-desc {
  color: rgba(255, 255, 255, .85);
}

/* ═══════════════════════════════════════════════
     11. PROVEN AT SCALE
  ═══════════════════════════════════════════════ */
.nw-proven {
  padding: 120px 0;
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
}

.nw-proven__intro {
  /* max-width: 560px; */
  margin-bottom: 80px;
}

.nw-proven-wrap {
  position: relative;
  /* overflow: hidden; */
  /* padding: 60px 6vw; */
}

.nw-glow-ball {
  position: absolute;
  width: 280px;
  height: 150px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  filter: blur(52px);
  background: radial-gradient(ellipse,
      rgba(255, 212, 0, 0.68) 0%,
      rgba(255, 212, 0, 0) 70%);
  will-change: transform;
}

.nw-proven__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px 0;
}

.nw-proven__cell {
  background: var(--off-white);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: background .4s ease;
}

.nw-proven__cell:hover {
  background: var(--white);
}

.nw-proven__stat-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .15em;
  margin-bottom: 16px;
}

.nw-proven__stat-val {
  font-size: clamp(33px, 4vw, 40px);
  /* font-style: italic; */
  color: var(--navy);
  line-height: 1;
  margin-top: 12px;
}

.nw-proven__stat-desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  /* max-width: 240px; */
}

/* ═══════════════════════════════════════════════
     12. CASE STUDIES / TESTIMONIALS
  ═══════════════════════════════════════════════ */
.nw-cases {
  padding: 96px 0;
  background: rgba(10, 26, 58, .03);
}

/* ── Testimonial Carousel ── */
.nw-cases__carousel-wrap {
  position: relative;
  margin-top: 56px;
}

.nw-cases__grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  padding-bottom: 8px;
  /* hide scrollbar */
  scrollbar-width: none;
}

.nw-cases__grid::-webkit-scrollbar {
  display: none;
}

.nw-case-card {
  flex: 0 0 calc(33.333% - 14px);
  max-width: calc(33.333% - 14px);
  scroll-snap-align: start;
}

/* Nav arrows */
.nw-cases__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}

.nw-cases__arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .25s ease;
  color: var(--navy);
  flex-shrink: 0;
}

.nw-cases__arrow:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.nw-cases__arrow:disabled {
  opacity: .3;
  cursor: default;
  pointer-events: none;
}

/* Dots */
.nw-cases__dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nw-cases__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(10, 26, 58, .18);
  transition: all .3s ease;
  cursor: pointer;
}

.nw-cases__dot.is-active {
  width: 22px;
  border-radius: 4px;
  background: var(--navy);
}

.nw-case-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all .4s ease;
  box-shadow: none;
  min-height: 220px;
}

.nw-case-card:hover {
  box-shadow: 0 24px 60px rgba(10, 26, 58, .1);
  border-color: rgba(10, 26, 58, .2);
}

.nw-case-card__quote-icon {
  margin-bottom: 16px;
  color: var(--yellow);
  opacity: .35;
  transition: opacity .3s;
}

.nw-case-card:hover .nw-case-card__quote-icon {
  opacity: 1;
}

.nw-case-card__text {
  font-size: 13px;
  color: rgba(10, 26, 58, .7);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 28px;
}

.nw-case-card__footer {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.nw-case-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(10, 26, 58, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nw-case-card__avatar span {

  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}

.nw-case-card__author {

  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}

.nw-case-card__role {

  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: 2px;
}

/* ═══════════════════════════════════════════════
   13. RECOGNITIONS
═══════════════════════════════════════════════ */
.nw-recognitions {
  padding: 100px 0 60px 0;
  background: var(--white);
}

.nw-recognitions__panel {
  margin: 0 auto;
  /* border: 1px dashed #cfd6e2; */
  text-align: center;
}

.nw-recognitions__title {
  margin: 0 0 28px;
  color: var(--navy);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
}

.nw-recognitions__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(210px, 1fr));
  gap: 60px 40px;
  align-items: center;
  margin-block: 50px;
  margin-inline: auto;
  padding: 28px 0;
  width: max-content;
  /* background: var(--white);
  border-radius: 40px;
  box-shadow: 0 22px 60px rgba(10, 26, 58, .08); */
}

.nw-recognitions__item {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nw-recognitions__item img {
  display: block;
  max-width: 160px;
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* ═══════════════════════════════════════════════
     13. LEAD MAGNET
  ═══════════════════════════════════════════════ */
.nw-lead {
  padding: 48px 0;
}

.nw-lead__box {
  background: var(--navy);
  border-radius: 20px;
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.nw-lead__glow {
  position: absolute;
  right: 0;
  top: 0;
  width: 256px;
  height: 256px;
  background: rgba(255, 212, 0, .1);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.nw-lead__title {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.25;
}

.nw-lead__desc {
  font-size: 14px;
  color: rgba(255, 255, 255, .6);
  /* max-width: 340px; */
  line-height: 1.65;
}

.nw-lead__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.nw-lead__row {
  display: flex;
  gap: 8px;
}

.nw-lead__input {
  flex: 1;
  height: 52px;
  padding: 0 16px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 4px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color .25s;
}

.nw-lead__input::placeholder {
  color: rgba(255, 255, 255, .4);
}

.nw-lead__input:focus {
  border-color: var(--yellow);
}

.nw-lead__gdpr {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.nw-lead__gdpr input[type=checkbox] {
  margin-top: 2px;
  accent-color: var(--yellow);
}

.nw-lead__gdpr label {
  font-size: 10px;
  color: rgba(255, 255, 255, .4);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════
     14. PARIS MEETING
  ═══════════════════════════════════════════════ */

.nw-location-toggle-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 24px;
  margin-bottom: 16px;
  position: relative;
  z-index: 10;
  width: 100%;
  z-index: 10;
}

.nw-location-toggle {
  position: relative;
  display: inline-flex;
  background: white;
  border-radius: 60px;
  padding: 6px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  border: 1px solid #e0e0e0;
  position: absolute;
  top: -10px;
}

.nw-location-toggle__btn {
  padding: 12px 32px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-weight: 600;
  border-radius: 60px;
  transition: all 0.3s ease;
  font-size: 15px;
  font-family: inherit;
}

.nw-location-toggle__btn--active {
  background: #0066cc;
  color: white;
  box-shadow: 0 2px 8px rgba(0,102,204,0.3);
}

.nw-location-toggle__btn:not(.nw-location-toggle__btn--active):hover {
  background: #f5f5f5;
}

.nw-location-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #0066cc;
  color: white;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  z-index: 5;
}

.nw-paris__card {
  position: relative;
  transition: all 0.3s ease;
}

/* Loading animation */
.nw-loading {
  opacity: 0.6;
  pointer-events: none;
}

.nw-paris {
  padding: 60px 0;
  background: var(--white);
  overflow: hidden;
}

.nw-paris__card {
  border-radius: 28px;
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  box-shadow: 0 40px 80px rgba(10, 26, 58, .1);
}

.nw-paris__left {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 30vw;
}

.nw-paris__badge {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid var(--yellow);
  margin-bottom: 24px;
}

.nw-paris__badge-text {

  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--navy);
}

.nw-paris__desc {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 36px;
}

.nw-paris__founder {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-block: 44px;
}

.nw-paris__founder-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--yellow);
}

.nw-paris__founder-name {
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
}

.nw-paris__founder-role {
  font-size: 16px;
  color: var(--muted);
}

.nw-paris__founder-links {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}

.nw-founder-carousel {
  width: 100%;
  margin-block: 4vw;
}

.nw-founder-carousel__viewport {
  width: 100%;
  overflow: hidden;
}

.nw-founder-carousel__track {
  display: flex;
  transition: transform 1s cubic-bezier(.16, 1, .3, 1);
  will-change: transform;
  gap: 5px;
}

.nw-founder-carousel__slide {
  flex: 0 0 100%;
  min-width: 100%;
}

.nw-founder-carousel__slide .nw-paris__founder {
  margin-top: 0;
}

.nw-founder-carousel__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.nw-founder-carousel__arrows {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 14px;
}

.nw-founder-carousel__arrow {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(10, 26, 58, .16);
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}

.nw-founder-carousel__arrow:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
}

.nw-founder-carousel__arrow:disabled {
  opacity: .45;
  cursor: not-allowed;
  transform: none;
}

.nw-founder-carousel__arrow:disabled:hover {
  background: var(--white);
  border-color: rgba(10, 26, 58, .16);
  color: var(--navy);
}

.nw-founder-carousel__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(10, 26, 58, .22);
  cursor: pointer;
  transition: width .25s ease, border-radius .25s ease, background .25s ease;
}

.nw-founder-carousel__dot.is-active {
  width: 26px;
  border-radius: 999px;
  background: var(--navy);
}

.nw-paris__meta {
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--navy);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nw-paris__right {
  background: rgba(10, 26, 58, .03);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
}

.nw-meeting-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100%;
  width: 100%;
}

.nw-meeting-form {
  padding: 40px;
}

.nw-meeting-head h3 {
  font-size: 28px;
  margin-bottom: 24px;
}

.nw-meeting-form-fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.nw-meeting-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nw-meeting-field label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #888;
}

.nw-meeting-field input,
.nw-meeting-field textarea,
.nw-meeting-field select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid #eee;
  background: #f8f8f8;
  font-size: 14px;
}

.nw-meeting-submit {
  height: 54px;
  border: 0;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  cursor: pointer;
}

.imageofStationF {
  width: 100%;
  height: auto;
  /* border-radius: 12px; */
  object-fit: cover;
  transition: filter .75s ease;
}

.imageofStationF:hover {
  filter: brightness(0.95);
}

.nw-meeting-map {
  position: relative;
  /* background: #111; */
}

.nw-meeting-map iframe {
  width: 100%;
  height: 60%;
  border: 0;
}

.nw-meeting-map-footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 32px;
  background: linear-gradient(to top, rgba(0, 0, 0, .8), transparent);
  color: white;
}

.nw-meeting-map-footer h4 {
  font-size: 24px;
  margin-bottom: 6px;
}

.nw-meeting-map-footer p {
  color: rgba(255, 255, 255, .7);
}

.nw-meeting-radio-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.nw-meeting-radio {
  position: relative;
  cursor: pointer;
}

.nw-meeting-radio input {
  display: none;
}

.nw-meeting-radio span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  border: 1px solid #e7e7e7;
  background: #f8f8f8;
  font-size: 14px;
  font-weight: 600;
  transition: .25s ease;
}

.nw-meeting-radio input:checked+span {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
  box-shadow: 0 8px 20px rgba(0, 16, 96, 0.05);
}

.nw-datetime-modal .modal-content {
  border: 0;
  border-radius: 8px;
  color: var(--navy);
  box-shadow: 0 24px 80px rgba(10, 26, 58, .28);
}

.nw-datetime-modal .modal-body {
  padding: 28px 34px 18px;
}

.nw-datetime-close {
  position: absolute;
  top: 14px;
  right: 18px;
  z-index: 2;
  border: 0;
  background: transparent;
  color: var(--navy);
  font-size: 28px;
  line-height: 1;
  opacity: .7;
}

.nw-datetime-close:hover {
  opacity: 1;
}

.nw-datetime-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 390px;
}

.nw-datetime-date,
.nw-datetime-time {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nw-datetime-date {
  border-right: 1px solid #dfe3ec;
}

.nw-datetime-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 700;
}

.nw-datetime-calendar {
  width: 100%;
  padding: 6px 22px 0;
}

.nw-datetime-calendar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  color: var(--navy);
  font-weight: 700;
}

.nw-datetime-nav {
  border: 0;
  background: transparent;
  color: var(--navy);
  width: 34px;
  height: 34px;
  border-radius: 6px;
}

.nw-datetime-nav:hover {
  background: rgba(31, 79, 168, .08);
}

.nw-datetime-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}

.nw-datetime-weekday,
.nw-datetime-day {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.nw-datetime-weekday {
  color: var(--muted);
  font-weight: 700;
}

.nw-datetime-day {
  border: 1px solid transparent;
  border-radius: 4px;
  background: transparent;
  color: var(--navy);
}

.nw-datetime-day:hover {
  background: rgba(31, 79, 168, .08);
  border-color: rgba(31, 79, 168, .18);
}

.nw-datetime-day.is-selected {
  background: var(--navy);
  color: var(--white);
}

.nw-datetime-day.is-disabled,
.nw-datetime-day.is-empty {
  color: #c1c6d0;
  cursor: default;
}

.nw-datetime-day.is-disabled:hover,
.nw-datetime-day.is-empty:hover {
  background: transparent;
  border-color: transparent;
}

.nw-datetime-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: calc(100% - 40px);
  margin: 0 20px 8px;
  padding: 3px;
  border: 1px solid #dfe6f1;
  border-radius: 6px;
  background: #EEF2F8;
}

.nw-datetime-zone {
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
  padding: 8px 10px;
}

.nw-datetime-zone.active {
  background: var(--navy);
  color: var(--white);
}

.nw-datetime-slots {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  padding: 4px 20px 0;
}

.nw-datetime-slot {
  width: 100%;
  min-height: 36px;
  border: 1px solid #cfd6e2;
  border-radius: 4px;
  background: var(--white);
  color: var(--navy);
  font-weight: 600;
  text-align: center;
  padding: 7px 10px;
}

.nw-datetime-slot:hover,
.nw-datetime-slot.is-selected {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.nw-datetime-slot.is-disabled,
.nw-datetime-slot:disabled {
  background: #f2f4f7;
  border-color: #e1e5ec;
  color: #98a2b3;
  cursor: not-allowed;
}

.nw-datetime-slot.is-disabled:hover,
.nw-datetime-slot:disabled:hover {
  background: #f2f4f7;
  border-color: #e1e5ec;
  color: #98a2b3;
}

.nw-datetime-modal .modal-footer {
  border: 0;
  justify-content: center;
  padding: 0 34px 16px;
}

.nw-datetime-submit {
  width: 40%;
  min-width: 240px;
  border: 0;
  border-radius: 4px;
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  padding: 12px 18px;
}

.nw-datetime-submit:hover {
  background: var(--blue);
}

@media (max-width: 991px) {
  .nw-datetime-grid {
    grid-template-columns: 1fr;
  }

  .nw-datetime-date {
    border-right: 0;
    border-bottom: 1px solid #dfe3ec;
    margin-bottom: 18px;
    padding-bottom: 18px;
  }

  .nw-datetime-modal .modal-body {
    padding: 26px 16px 12px;
  }

  .nw-datetime-submit {
    width: 100%;
    min-width: 0;
    max-width: 310px;
  }
}

.nw-paris__contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 16px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.nw-paris__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: .2s ease;
}

.nw-paris__contact-item:hover {
  color: var(--blue);
}

@media (max-width: 992px) {

  .nw-meeting-card {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .nw-meeting-grid {
    grid-template-columns: 1fr;
  }

  .nw-meeting-map iframe {
    min-height: 350px;
  }

  .nw-meeting-form {
    padding: 20px;
  }

}

.nw-paris__cal {
  width: 100%;
  height: 100%;
  background: var(--white);
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(10, 26, 58, .06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 32px;
  text-align: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.nw-paris__cal-text {
  font-size: 14px;
  color: var(--muted);
}

.nw-paris__cal-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.nw-paris__cal-btn {
  padding: 10px 20px;
  border: 1.5px solid var(--border);
  border-radius: 6px;

  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  transition: all .25s;
}

.nw-paris__cal-btn:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

/* ═══════════════════════════════════════════════
     15. FAQ
  ═══════════════════════════════════════════════ */
.nw-faq {
  padding: 96px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.nw-faq__list {
  /* max-width: 760px; */
  margin: 56px auto 0;
}

.nw-faq__item {
  border-bottom: 1px solid var(--border);
}

.nw-faq__q {
  width: 100%;
  padding: 22px 0;
  text-align: left;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 500;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: none;
  transition: color .25s;
}

.nw-faq__q:hover {
  color: var(--blue);
}

.nw-faq__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 300;
  color: var(--navy);
  transition: all .3s;
}

.nw-faq__item.nw-open .nw-faq__icon {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: rotate(45deg);
}

.nw-faq__a {
  max-height: 0;
  overflow: hidden;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  transition: max-height .4s ease, padding .4s ease;
}

.nw-faq__item.nw-open .nw-faq__a {
  max-height: 300px;
  padding-bottom: 22px;
}

/* ═══════════════════════════════════════════════
     16. NEWSLETTER
  ═══════════════════════════════════════════════ */
.nw-newsletter {
  background: var(--navy);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.nw-newsletter::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--yellow);
}

.nw-newsletter__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8vw;
  flex-wrap: wrap;
}

.nw-newsletter__title {
  font-size: clamp(24px, 3vw, 34px);
  color: var(--white);
  margin-bottom: 6px;
}

.nw-newsletter__sub {
  font-size: 14px;
  color: rgba(255, 255, 255, .6);
}

.nw-newsletter__form-wrap {
  width: 100%;
  max-width: 460px;
}

.nw-newsletter__row {
  display: flex;
  gap: 8px;
  margin-bottom: 5px;
  align-items: center;
}

.nw-newsletter__input {
  flex: 1;
  height: 48px;
  padding: 0 16px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 4px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color .25s;
}

.nw-newsletter__input::placeholder {
  color: rgba(255, 255, 255, .4);
}

.nw-newsletter__input:focus {
  border-color: var(--yellow);
}

.nw-newsletter__privacy {
  font-size: 10px;
  color: rgba(255, 255, 255, .3);
}

.input-error {
  border-color: #bc6161;
}

.nw-newsletter__input.input-error::placeholder {
  color: #997272 !important;
}

/* ═══════════════════════════════════════════════
     17. FINAL CTA
  ═══════════════════════════════════════════════ */
.nw-finalcta {
  padding: 120px 0;
  text-align: center;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.nw-finalcta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--yellow) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: .03;
}

.nw-finalcta__title {
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.05;
  margin-bottom: 44px;
}

.nw-finalcta__pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px 32px;

  font-size: 10px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(10, 26, 58, .55);
  margin-top: 44px;
}

/* ═══════════════════════════════════════════════
     RESPONSIVE
  ═══════════════════════════════════════════════ */
@media (max-width: 1440px) {
  .nw-case-studies__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nw-study-card__title {
    font-size: 2.25vw;
  }

  .nw-study-card__media {
    aspect-ratio: 16 / 9;
  }

  .nw-paris__card {
    flex-direction: column;
  }

  .nw-paris__left{
    max-width: unset;
  }

  .nw-recognitions__grid{
    grid-template-columns: repeat(3, minmax(200px, 1fr));
  }
}

@media (max-width: 1024px) {
  .nw-hero__inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .nw-showcase-wrap{
    display: none !important;
  }

  .nw-showcase-wrap-mobile{
    display: block !important;
  }

  .nw-hero__footer-note{
    margin-top: 10px;
  }

  .nw-pshowcase__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .nw-diff__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .nw-diff__left {
    position: static;
  }

  .nw-integ__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .nw-how__steps {
    grid-template-columns: 1fr;
    gap: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .nw-how__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .nw-how__connector {
    display: none !important;
  }

  .nw-europe__grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .nw-proven__grid {
    grid-template-columns: 1fr;
  }

  .nw-case-card {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
  }

  .nw-paris__right {
    min-height: 380px;
  }

  .nw-lead__box {
    grid-template-columns: 1fr;
    padding: 44px;
  }

  .nw-integ__banner {
    flex-direction: column;
    text-align: center;
    border-radius: 16px;
    padding: 20px;
    gap: 14px;
  }

  .nw-industries__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nw-usecases__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}



@media (max-width: 768px) {
  .nw-page {
    padding: 40px 0;
  }

  .nw-page section {
    padding: 8vw 0;
  }

  .nw-hero__eyebrow-text {
    font-size: 12px;
    letter-spacing: .3em;
  }

  .nw-problem__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .nw-integ__cards {
    grid-template-columns: 1fr;
  }

  .nw-industries__grid {
    grid-template-columns: 1fr 1fr;
  }

  .nw-case-studies__grid {
    grid-template-columns: 1fr;
  }

  .nw-usecases__grid {
    grid-template-columns: 1fr;
  }

  .nw-case-card {
    flex: 0 0 calc(85% - 10px);
    max-width: calc(85% - 10px);
  }

  .nw-recognitions__panel {
    padding: 24px 20px 28px;
  }

  .nw-recognitions__grid {
    grid-template-columns: repeat(2, minmax(110px, 1fr));
    gap: 50px;
    margin-block: 30px;
  }

  .nw-europe__stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .nw-proven__grid {
    grid-template-columns: 1fr;
  }

  .nw-lead__box {
    padding: 32px 24px;
  }

  .nw-lead__row {
    flex-direction: column;
  }

  .nw-paris__left {
    padding: 32px;
  }

  .nw-paris__contact-item {
    font-size: 12px;
  }

  .nw-meeting-radio span {
    height: 45px;
    padding: 0 16px;
    font-size: 12px;
  }

  .nw-newsletter__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nw-slider {
    aspect-ratio: 16/9;
  }

  .nw-pshowcase__caption {
    display: none;
  }

  .nw-showcase__health {
    display: none;
  }

  .nw-proven-grid {
    grid-template-columns: 1fr;
  }

  .nw-diff__badge--tl1 {
    right: 0;
  }

  .nw-diff__badge--tl2 {
    left: 0;
  }

  .nw-diff__badge--tl3 {
    left: 0;
  }

  .nw-diff__badge--tl4 {
    right: 0;
  }

  .nw-proven__intro {
    margin-bottom: 30px;
  }

  .nw-study-card__body {
    padding: 8px 16px;
    height: 80%;
  }

  .nw-study-card__tags span {
    padding: 10px 15px;
    font-size: 14px;
  }

  .nw-study-card__tags i {
    color: var(--white);
    font-size: 16px;
  }

  .nw-study-card__title {
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .nw-page section {
    padding: 8vw 0;
  }

  .nw-logos__track {
    gap: 30px;
  }

  .nw-logos__item {
    min-width: 25vw;
  }

  .nw-logos__item img {
    height: 15vw;
    max-height: 16vw;
    width: 24vw;
  }

  .nw-hero__ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .nw-problem__stats {
    grid-template-columns: 1fr 1fr;
  }

  .nw-industries__grid {
    grid-template-columns: 1fr;
  }

  .nw-finalcta__pills {
    gap: 16px;
  }

  .nw-recognitions__grid {
    grid-template-columns: 1fr;
    margin-block: 20px;
  }

  .nw-recognitions__item img {
    max-width: 170px;
  }

  .nw-study-card__body {
    padding: 6px 10px;
    height: 90%;
  }

  .nw-study-card__title {
    font-size: 22px;
  }

  .nw-paris__right {
    padding: 15px;
  }
}

.nw-faq__q {
  border: none;
}

.popup-content {
  position: relative;
  width: 90%;
  max-width: 1200px;
  aspect-ratio: 16/9;
  padding: 12px;
  border-radius: 15px;
  padding-top: 60px;
  background-color: #ffffff;
}

.close-btn-home-video {
  position: absolute;
  top: 0;
  right: 12px;
  color: rgb(0, 0, 0);
  font-size: 32px;
  cursor: pointer;
  font-weight: bold;
}

#popupVideo {
  width: 100%;
  height: 100%;
  border-radius: 15px;
}

/* Loading Overlay */
.nw-loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nw-loading-spinner {
  background: white;
  padding: 30px 40px;
  border-radius: 16px;
  text-align: center;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #e5e7eb;
  border-top-color: #f59e0b;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 16px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Success/Error Modal Styles */
.nw-success-content,
.nw-error-content {
  border-radius: 24px;
  border: none;
}

.nw-success-icon svg,
.nw-error-icon svg {
  stroke-width: 2;
}

.nw-success-title {
  color: #10b981;
  font-weight: 600;
}

.nw-error-title {
  color: #ef4444;
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════
   LOCATION TOGGLE
   ═══════════════════════════════════════════════════════════ */

/* Fade animations for card updates */
.nw-paris__card {
  transition: opacity 0.3s ease-out;
  opacity: 1;
}

.nw-fade-out {
  opacity: 0 !important;
  transition: opacity 0.3s ease-out !important;
}

.nw-fade-in {
  opacity: 1 !important;
  transition: opacity 0.4s ease-in !important;
}

/* Location badge smooth animation */
.nw-location-badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(15, 23, 42, 0.05);
  border-radius: 24px;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

/* Toggle button styling */
.nw-location-toggle-wrapper {
  display: flex;
  justify-content: center;
  margin: 24px 0;
}

.nw-location-toggle {
  display: flex;
  background: rgba(249, 250, 251, 1);
  padding: 6px;
  border-radius: 32px;
  border: 1px solid rgba(229, 231, 235, 0.5);
}

.nw-location-toggle__btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border: none;
  background: transparent;
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
  border-radius: 28px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.nw-location-toggle__btn:hover {
  background: rgba(255, 255, 255, 0.5);
  color: var(--navy);
}

.nw-location-toggle__btn--active {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 2px 12px rgba(10, 26, 58, 0.12);
  font-weight: 600;
}

/* Smooth transitions for meeting card content */
.nw-paris__badge,
.nw-paris__desc,
.nw-paris__meta,
.nw-founder-carousel,
.nw-meeting-card {
  transition: all 0.3s ease;
}

/* Text content updates with fade */
#meeting-tag,
#meeting-title,
#meeting-badge,
#meeting-description,
#meeting-availability,
#meeting-timezone,
#location-badge {
  transition: opacity 0.2s ease;
}

/* Founder carousel smooth animation */
.nw-founder-carousel__track {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nw-founder-carousel__slide {
  transition: opacity 0.3s ease;
}

.nw-founder-carousel__dots {
  transition: all 0.3s ease;
}

.nw-founder-carousel__dot {
  transition: all 0.3s ease;
}

/* Loading state for map iframe */
#meeting-map {
  transition: opacity 0.3s ease;
}

/* Location image smooth transition */
#location-image {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Form field smooth update */
#form-location {
  transition: all 0.2s ease;
}

/* Smooth transitions on button states */
.nw-location-toggle__btn {
  position: relative;
}

.nw-location-toggle__btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  border-radius: 28px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.nw-location-toggle__btn--active::before {
  opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .nw-location-toggle {
    gap: 8px;
    padding: 4px;
  }

  .nw-location-toggle__btn {
    padding: 8px 16px;
    font-size: 14px;
  }

  .nw-location-badge {
    font-size: 12px;
    padding: 6px 12px;
  }
}
