/* NorthScale — Corporate Site */
:root {
  --ns-dark: #041e42;
  --ns-blue-deep: #0a2d5c;
  --ns-blue-mid: #1565b0;
  --ns-blue: #1e6fd9;
  --ns-text: #0d47a1;
  --ns-accent: #29b6f6;
  --ns-accent-hover: #039be5;
  --ns-accent-bright: #4fc3f7;
  --ns-white: #ffffff;
  --ns-gray: #78909c;
  --ns-light: #f0f6fc;
  --font: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --header-h: 80px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ns-text);
  background: var(--ns-white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--ns-accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--ns-accent-hover); }

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Header ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: var(--ns-dark);
  transition: box-shadow var(--transition), background var(--transition);
}

.header.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
  background: rgba(4, 30, 66, 0.97);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ns-white);
  text-decoration: none;
  transition: opacity var(--transition);
}

.logo:hover {
  color: var(--ns-white);
  opacity: 0.92;
}

.logo__mark {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 10px rgba(41, 182, 246, 0.3));
}

.logo__wordmark {
  display: flex;
  align-items: baseline;
  font-size: 1.65rem;
  line-height: 1;
  letter-spacing: -0.02em;
}

.logo__north {
  font-weight: 700;
  color: #ffffff;
  text-transform: lowercase;
}

.logo__scale {
  font-weight: 400;
  font-style: italic;
  color: #78c2f3;
  text-transform: lowercase;
}

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

.nav__list {
  display: flex;
  list-style: none;
  gap: 4px;
}

.nav__link {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 400;
  padding: 10px 18px;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}

.nav__link:hover,
.nav__link.active {
  color: var(--ns-white);
  background: rgba(255, 255, 255, 0.08);
}

.nav__cta {
  margin-left: 12px;
  padding: 12px 24px;
  background: var(--ns-accent);
  color: var(--ns-white) !important;
  border-radius: 6px;
  font-weight: 500;
  font-size: 14px;
  transition: background var(--transition), transform var(--transition);
}

.nav__cta:hover {
  background: var(--ns-accent-hover);
  transform: translateY(-1px);
  color: var(--ns-white) !important;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--ns-white);
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  margin: 5px 0;
  transition: var(--transition);
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, var(--ns-dark) 0%, var(--ns-blue-deep) 45%, var(--ns-blue-mid) 100%);
  overflow: hidden;
  padding-top: var(--header-h);
}

.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero__grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(41, 182, 246, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(41, 182, 246, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.hero__shapes { position: absolute; inset: 0; z-index: 1; pointer-events: none; }

.shape {
  position: absolute;
  border-radius: 50%;
}

.shape--ring {
  border: 2px solid rgba(79, 195, 247, 0.2);
  background: transparent;
}

.shape--1 { width: 120px; height: 120px; top: 15%; right: 10%; }
.shape--2 { width: 60px; height: 60px; bottom: 25%; left: 8%; border-color: rgba(41, 182, 246, 0.15); }
.shape--dot { background: var(--ns-accent); opacity: 0.4; }
.shape--3 { width: 8px; height: 8px; top: 30%; left: 20%; }
.shape--4 { width: 6px; height: 6px; bottom: 40%; right: 25%; }
.shape--line {
  width: 80px; height: 2px; border-radius: 0;
  background: linear-gradient(90deg, transparent, var(--ns-accent-bright), transparent);
  top: 50%; right: 15%;
  animation: linePulse 3s ease-in-out infinite;
}

@keyframes linePulse {
  0%, 100% { opacity: 0.3; transform: scaleX(0.8); }
  50% { opacity: 1; transform: scaleX(1.2); }
}

.hero__layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  width: 100%;
}

.hero__content { padding: 80px 0; }

.hero__badge {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(41, 182, 246, 0.15);
  border: 1px solid rgba(41, 182, 246, 0.35);
  border-radius: 50px;
  color: var(--ns-accent-bright);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero__title {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--ns-white);
  margin-bottom: 20px;
}

.hero__line { display: block; }

.hero__highlight {
  background: linear-gradient(90deg, var(--ns-accent-bright), var(--ns-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__typed-wrap {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.hero__typed {
  display: inline-block;
  color: var(--ns-accent-bright);
  font-weight: 600;
  transition: opacity 0.3s, transform 0.3s;
  min-width: 140px;
}

.hero__desc--secondary {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 32px;
  max-width: 520px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.hero__metrics {
  display: flex;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__metric-val {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--ns-accent-bright);
  line-height: 1;
}

.hero__metric-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero__graphic {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
}

.orbit-system {
  position: relative;
  width: 320px;
  height: 320px;
}

.orbit {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(79, 195, 247, 0.2);
  border-radius: 50%;
}

.orbit--outer { inset: 0; }
.orbit--mid { inset: 40px; border-color: rgba(41, 182, 246, 0.25); }
.orbit--inner { inset: 80px; border-color: rgba(41, 182, 246, 0.35); }

.orbit__node {
  position: absolute;
  top: -5px;
  left: 50%;
  width: 10px;
  height: 10px;
  margin-left: -5px;
  background: var(--ns-accent-bright);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--ns-accent);
}

.orbit-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 0 40px rgba(41, 182, 246, 0.45));
}

.orbit-core__logo {
  width: 72px;
  height: 72px;
  animation: corePulse 3s ease-in-out infinite;
}

@keyframes corePulse {
  0%, 100% { filter: drop-shadow(0 0 40px rgba(41, 182, 246, 0.4)); }
  50% { filter: drop-shadow(0 0 60px rgba(41, 182, 246, 0.65)); }
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.anim-bounce { animation: bounce 2s ease-in-out infinite; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

.anim-pulse { animation: pulse 2.5s ease-in-out infinite; }

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* ── Marquee ── */
.marquee {
  background: var(--ns-blue-deep);
  padding: 16px 0;
  overflow: hidden;
  border-top: 1px solid rgba(41, 182, 246, 0.15);
  border-bottom: 1px solid rgba(41, 182, 246, 0.15);
}

.marquee__track {
  display: flex;
  gap: 48px;
  width: max-content;
  white-space: nowrap;
}

.marquee__track span {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.marquee__track span::after {
  content: '◆';
  margin-left: 48px;
  color: var(--ns-accent);
  font-size: 8px;
  vertical-align: middle;
}

/* ── Section tags ── */
.section__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ns-accent);
  margin-bottom: 12px;
}

.section__tag--light { color: var(--ns-accent-bright); }

.section__header--left {
  text-align: left;
  max-width: 640px;
  margin: 0 0 48px;
}

/* ── Feature card icons ── */
.feature-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  color: var(--ns-accent-bright);
}

.feature-card__icon svg { width: 100%; height: 100%; }

/* ── Benefit bars ── */
.benefit-item__bar {
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  margin-bottom: 16px;
  overflow: hidden;
}

.benefit-item__fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--ns-accent), var(--ns-accent-bright));
  border-radius: 3px;
}

/* ── Timeline ── */
.timeline { position: relative; padding: 20px 0; }

.timeline__line {
  position: absolute;
  top: 24px;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(13, 71, 161, 0.12);
}

.timeline__progress {
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--ns-accent), var(--ns-blue));
  transform-origin: left;
  transform: scaleX(0);
}

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

.timeline__step {
  position: relative;
  text-align: center;
  padding-top: 40px;
}

.timeline__dot {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  background: var(--ns-white);
  border: 3px solid var(--ns-light);
  border-radius: 50%;
  transition: border-color 0.4s, box-shadow 0.4s;
}

.timeline__dot.active {
  border-color: var(--ns-accent);
  box-shadow: 0 0 12px rgba(41, 182, 246, 0.5);
}

.timeline__step h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ns-text);
  margin-bottom: 8px;
}

.timeline__step p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

/* ── Industry index ── */
.industry-card__idx {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--ns-accent);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 8px;
}

/* ── Data viz (about) ── */
.about__visual {
  position: relative;
  height: 400px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--ns-dark), var(--ns-blue-mid));
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 40px 32px 24px;
}

.data-viz {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 200px;
  width: 100%;
}

.data-viz__bar {
  flex: 1;
  height: 100%;
  display: flex;
  align-items: flex-end;
}

.data-viz__bar span {
  display: block;
  width: 100%;
  height: var(--h, 50%);
  background: linear-gradient(180deg, var(--ns-accent-bright), var(--ns-accent));
  border-radius: 4px 4px 0 0;
  opacity: 0.85;
  animation: barGlow 2s ease-in-out infinite alternate;
}

.data-viz__bar:nth-child(odd) span { animation-delay: 0.3s; }

@keyframes barGlow {
  from { opacity: 0.7; }
  to { opacity: 1; }
}

.data-viz__label {
  margin-top: 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

/* ── FAQ Accordion ── */
.faq-accordion { max-width: 720px; margin: 0 auto; }

.faq-accordion__item {
  border-bottom: 1px solid rgba(13, 71, 161, 0.1);
  overflow: hidden;
}

.faq-accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ns-text);
  text-align: left;
  transition: color var(--transition);
}

.faq-accordion__trigger:hover { color: var(--ns-accent); }

.faq-accordion__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--ns-accent);
  transition: transform 0.3s;
}

.faq-accordion__item.open .faq-accordion__icon {
  transform: rotate(45deg);
}

.faq-accordion__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-accordion__item.open .faq-accordion__panel {
  max-height: 200px;
  padding-bottom: 20px;
}

.faq-accordion__panel p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}

/* ── CTA waves ── */
.cta-banner__waves { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }

.wave {
  position: absolute;
  bottom: 0;
  left: -10%;
  width: 120%;
  height: 120px;
  background: rgba(41, 182, 246, 0.05);
  border-radius: 45%;
  animation: waveMove 8s ease-in-out infinite;
}

.wave--2 {
  bottom: -20px;
  opacity: 0.5;
  animation-delay: -4s;
  animation-duration: 10s;
}

@keyframes waveMove {
  0%, 100% { transform: translateX(0) rotate(0deg); }
  50% { transform: translateX(3%) rotate(2deg); }
}

.btn--glow {
  box-shadow: 0 0 24px rgba(41, 182, 246, 0.35);
  animation: btnGlow 2s ease-in-out infinite alternate;
}

@keyframes btnGlow {
  from { box-shadow: 0 0 20px rgba(41, 182, 246, 0.3); }
  to { box-shadow: 0 0 36px rgba(41, 182, 246, 0.55); }
}

/* ── Contact cards ── */
.contact-card {
  padding: 32px 24px;
  background: var(--ns-white);
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(13, 71, 161, 0.08);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(13, 71, 161, 0.12);
}

.contact-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  color: var(--ns-accent);
}

.contact-card__icon svg { width: 100%; height: 100%; }

.contact-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ns-text);
  margin-bottom: 10px;
}

.contact-card p { font-size: 14px; color: var(--ns-gray); }

.service-item__icon svg { width: 32px; height: 32px; color: var(--ns-accent); }

/* ── Hero (legacy cleanup) ── */
.hero__bg, .hero__particles, .hero__visual, .hero__orb, .about__visual-inner, .hero__desc:not(.hero__desc--secondary) { display: none; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 6px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}

.btn--primary {
  background: var(--ns-accent);
  color: var(--ns-white);
}

.btn--primary:hover {
  background: var(--ns-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(41, 182, 246, 0.4);
  color: var(--ns-white);
}

.btn--outline {
  background: transparent;
  color: var(--ns-white);
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.btn--outline:hover {
  border-color: var(--ns-white);
  background: rgba(255, 255, 255, 0.08);
  color: var(--ns-white);
}

/* ── Features strip ── */
.features-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: -1px;
}

.feature-card {
  padding: 60px 5%;
  text-align: center;
  color: var(--ns-white);
}

.feature-card:nth-child(1) { background: var(--ns-blue-deep); }
.feature-card:nth-child(2) { background: var(--ns-blue-mid); }
.feature-card:nth-child(3) { background: var(--ns-blue); }

.feature-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.feature-card p {
  font-size: 14px;
  opacity: 0.85;
  line-height: 1.65;
}

/* ── Sections ── */
.section {
  padding: 100px 0;
}

.section--light { background: var(--ns-light); }

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.section__title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--ns-text);
  margin-bottom: 16px;
}

.section__subtitle {
  color: var(--ns-gray);
  font-size: 1.05rem;
}

/* ── Services grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.service-item {
  text-align: center;
  padding: 32px 20px;
  border-radius: 12px;
  background: var(--ns-white);
  box-shadow: 0 4px 24px rgba(13, 71, 161, 0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(13, 71, 161, 0.14);
}

.service-item__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(41, 182, 246, 0.15), rgba(30, 111, 217, 0.08));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.service-item h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--ns-text);
}

.service-item p {
  font-size: 13px;
  color: var(--ns-gray);
  line-height: 1.65;
}

/* ── About ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about__text h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--ns-text);
}

.about__text p {
  margin-bottom: 16px;
  color: #555;
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.stat-box {
  padding: 24px;
  background: var(--ns-white);
  border-radius: 12px;
  border-left: 4px solid var(--ns-accent);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.stat-box__number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--ns-accent);
  line-height: 1;
}

.stat-box__label {
  font-size: 13px;
  color: var(--ns-gray);
  margin-top: 6px;
}

/* ── Intro / Pillars ── */
.section--intro { padding-top: 80px; }

.intro-block {
  max-width: 820px;
  margin: 0 auto 56px;
  text-align: center;
}

.intro-block__lead {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #444;
}

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

.pillar-card {
  padding: 36px 28px;
  background: var(--ns-white);
  border-radius: 14px;
  border: 1px solid rgba(13, 71, 161, 0.1);
  box-shadow: 0 4px 20px rgba(13, 71, 161, 0.06);
}

.pillar-card__num {
  display: inline-block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--ns-accent);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 16px;
}

.pillar-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ns-text);
  margin-bottom: 12px;
}

.pillar-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}

.pillar-card .consent-list {
  margin: 12px 0 16px 18px;
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}

.pillar-card .consent-list li { margin-bottom: 6px; }

/* ── Opt-In / Opt-Out single card ── */
.consent-card {
  max-width: 640px;
  margin: 0 auto;
}

.consent-card.industry-card {
  padding: 32px 28px;
}

.consent-form__heading {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ns-text);
  margin-bottom: 12px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.consent-card__hint {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
  margin: -8px 0 14px;
}

.consent-card__divider {
  height: 1px;
  margin: 28px 0;
  background: rgba(13, 71, 161, 0.12);
}

.consent-card__footer {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(13, 71, 161, 0.1);
  font-size: 13px;
  text-align: center;
  color: var(--ns-gray);
}

.consent-form__label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ns-text);
  margin-bottom: 8px;
}

.consent-form__input {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 18px;
  border: 1px solid rgba(13, 71, 161, 0.15);
  border-radius: 8px;
  font-family: var(--font);
  font-size: 14px;
  color: var(--ns-text);
  background: var(--ns-white);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.consent-form__input:focus {
  outline: none;
  border-color: var(--ns-accent);
  box-shadow: 0 0 0 3px rgba(41, 182, 246, 0.15);
}

.consent-form__check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.consent-form__check input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--ns-accent);
}

.consent-form__check label {
  font-size: 13px;
  line-height: 1.7;
  color: #666;
}

.consent-form__submit {
  width: 100%;
  margin-top: 8px;
}

.consent-form__status {
  min-height: 20px;
  margin-top: 14px;
  font-size: 13px;
  line-height: 1.5;
}

.consent-form__status--success { color: #2e7d32; }
.consent-form__status--error { color: #c62828; }

.section__text {
  max-width: 720px;
  margin: 20px auto 0;
  font-size: 15px;
  color: #666;
  line-height: 1.75;
}

/* ── Services extra ── */
.services-extra {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid rgba(13, 71, 161, 0.1);
}

.services-extra__item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ns-text);
  margin-bottom: 10px;
}

.services-extra__item p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

/* ── Dark section ── */
.section--dark {
  background: linear-gradient(160deg, var(--ns-dark), var(--ns-blue-deep));
  color: var(--ns-white);
}

.section__header--light .section__title { color: var(--ns-white); }
.section__header--light .section__subtitle { color: rgba(255, 255, 255, 0.65); }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.benefit-item {
  padding: 32px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  transition: background var(--transition);
}

.benefit-item:hover {
  background: rgba(255, 255, 255, 0.08);
}

.benefit-item h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ns-accent-bright);
  margin-bottom: 12px;
}

.benefit-item p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
}

/* ── Process ── */
.process-list {
  max-width: 760px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(13, 71, 161, 0.1);
}

.process-step:last-child { border-bottom: none; }

.process-step__marker {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--ns-accent);
  color: var(--ns-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.process-step__body h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ns-text);
  margin-bottom: 8px;
}

.process-step__body p {
  font-size: 14px;
  color: #555;
  line-height: 1.75;
}

/* ── Industries ── */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.industry-card {
  padding: 28px 24px;
  background: var(--ns-white);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(13, 71, 161, 0.08);
  border-left: 3px solid var(--ns-accent);
}

.industry-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ns-text);
  margin-bottom: 10px;
}

.industry-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.7;
}

/* ── FAQ ── */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  padding: 28px 0;
  border-bottom: 1px solid rgba(13, 71, 161, 0.1);
}

.faq-item:first-child { padding-top: 0; }
.faq-item:last-child { border-bottom: none; }

.faq-item h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ns-text);
  margin-bottom: 10px;
}

.faq-item p {
  font-size: 14px;
  color: #555;
  line-height: 1.75;
}

.cta-banner__extra {
  margin-top: 16px;
  font-size: 0.95rem !important;
  color: rgba(255, 255, 255, 0.55) !important;
}

.contact-note {
  font-size: 12px;
  color: var(--ns-gray);
}

.contact-grid p {
  line-height: 1.8;
}

/* ── CTA banner ── */
.cta-banner {
  position: relative;
  padding: 120px 0;
  background: var(--ns-dark);
  overflow: hidden;
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(41, 182, 246, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(30, 111, 217, 0.12) 0%, transparent 40%);
}

.cta-banner__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}

.cta-banner h2 {
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--ns-white);
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
}

/* ── Contact info ── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.contact-grid h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--ns-text);
}

.contact-grid p {
  font-size: 14px;
  color: var(--ns-gray);
}

/* ── Legal pages ── */
.page-hero {
  padding: 140px 0 60px;
  background: linear-gradient(160deg, var(--ns-dark), var(--ns-blue-mid));
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--ns-white);
  margin-bottom: 12px;
}

.page-hero__date {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px 100px;
}

.legal-content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ns-text);
  margin: 40px 0 16px;
}

.legal-content h2:first-of-type { margin-top: 0; }

.legal-content p {
  margin-bottom: 14px;
  color: #444;
}

.legal-content ul {
  margin: 12px 0 20px 24px;
  color: #444;
}

.legal-content li { margin-bottom: 8px; }

.legal-content .intro {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid #eee;
}

/* ── Footer ── */
.footer {
  background: var(--ns-white);
  border-top: 1px solid rgba(13, 71, 161, 0.1);
  padding: 40px 0;
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer__copy {
  font-size: 14px;
  color: var(--ns-text);
}

.footer__links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer__links a {
  font-size: 14px;
  color: var(--ns-text);
}

.footer__links a:hover { color: var(--ns-accent); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero__layout { grid-template-columns: 1fr; }
  .hero__graphic { min-height: 280px; order: -1; }
  .orbit-system { width: 260px; height: 260px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-extra { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline__steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .about-grid { grid-template-columns: 1fr; }
  .cta-banner__inner { grid-template-columns: 1fr; text-align: center; }
}

@media (max-width: 768px) {
  .menu-toggle { display: block; }

  .nav__list {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--ns-dark);
    flex-direction: column;
    padding: 20px;
    gap: 4px;
    transform: translateY(-120%);
    opacity: 0;
    transition: transform var(--transition), opacity var(--transition);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  }

  .nav__list.open {
    transform: translateY(0);
    opacity: 1;
  }

  .nav__cta { margin: 12px 0 0; text-align: center; }

  .features-strip { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .timeline__steps { grid-template-columns: 1fr; }
  .timeline__line { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero__metrics { flex-wrap: wrap; gap: 20px; }
  .hero__scroll { display: none; }
  .section { padding: 70px 0; }
  .about__visual { height: 280px; }
}
