
/* ─────────────────────────────────────────
   RESET & TOKENS
───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

:root {
  --white:       #ffffff;
  --snow:        #f8fafb;
  --mist:        #edf1f5;
  --sky:         #dde8f5;
  --blue:        #046bd2;
  --blue-dk:     #035ab8;
  --blue-pale:   #e8f1fc;
  --navy:        #0c1e40;
  --navy-mid:    #1a3260;
  --text:        #111827;
  --text-mid:    #4b5563;
  --text-muted:  #9ca3af;
  --border:      #e5e9ef;

  --sans:  'Outfit', system-ui, sans-serif;
  --serif: 'Lora', Georgia, serif;
  --ease:  cubic-bezier(.4,0,.2,1);
  --ease-out: cubic-bezier(0,.5,.5,1);
}

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ─────────────────────────────────────────
   TYPOGRAPHY HELPERS
───────────────────────────────────────── */
.eyebrow {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--blue);
}

.display {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.15;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: var(--sans);
  font-size: .84rem;
  font-weight: 600;
  letter-spacing: .03em;
  border-radius: 4px;
  transition: all .25s var(--ease);
  white-space: nowrap;
}
.btn--solid {
  background: var(--blue);
  color: var(--white);
}
.btn--solid:hover { background: var(--blue-dk); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(4,107,210,.28); }

.btn--outline {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--blue);
}
.btn--outline:hover { background: var(--blue); color: var(--white); }

.btn--ghost-white {
  background: transparent;
  color: rgba(255,255,255,.85);
  border: 1.5px solid rgba(255,255,255,.45);
}
.btn--ghost-white:hover { background: rgba(255,255,255,.12); color: #fff; border-color: #fff; }

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

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .84rem;
  font-weight: 600;
  color: var(--blue);
  transition: gap .2s;
}
.arrow-link:hover { gap: 10px; }
.arrow-link svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ─────────────────────────────────────────
   NAVIGATION — full-width, transparent→solid
───────────────────────────────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 900;
  height: 70px;
  display: flex;
  align-items: center;
  transition: background .35s, box-shadow .35s;
}
.nav.solid {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--border);
}
.nav__inner {
  width: 100%;
  padding: 0 48px;
  display: flex;
  align-items: center;
  gap: 0;
}
.nav__logo {
  margin-right: auto;
  display: flex;
  align-items: center;
}
.nav__logo img {
  height: 56px;
  width: auto;
  display: block;
  transition: filter .3s;
}
.nav.over-dark .nav__logo img { filter: brightness(0) invert(1); }
.nav.over-dark.solid .nav__logo img { filter: none; }

/* Safari-only: add top padding to prevent logo from sitting too close to top of window */
@media not all and (min-resolution:.001dpcm) {
  @supports (-webkit-appearance:none) {
    .nav__inner { padding-top: 8px; }
  }
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-right: 24px;
}
.nav__links a {
  font-size: .84rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 4px;
  color: var(--text-mid);
  transition: color .2s, background .2s;
}
.nav__links a:hover { color: var(--blue); background: var(--blue-pale); }
.nav.over-dark:not(.solid) .nav__links a { color: rgba(255,255,255,.75); }
.nav.over-dark:not(.solid) .nav__links a:hover { color: #fff; background: rgba(255,255,255,.1); }

/* Dropdown */
.nav__dropdown { position: relative; }
.nav__dropdown-menu {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  transform: translateY(-4px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  min-width: 160px;
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s, visibility .2s, transform .2s;
  z-index: 910;
}
.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.nav__dropdown-menu a {
  display: block;
  padding: 9px 18px;
  font-size: .84rem;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
  border-radius: 0;
  background: none;
  transition: color .15s, background .15s;
}
.nav__dropdown-menu a:hover { color: var(--blue); background: var(--blue-pale); }
.nav.over-dark:not(.solid) .nav__dropdown-menu a { color: var(--text); }
.nav.over-dark:not(.solid) .nav__dropdown-menu a:hover { color: var(--blue); background: var(--blue-pale); }

.nav__cta { flex-shrink: 0; }

.nav__burger {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 4px;
  transition: background .2s;
  margin-left: 12px;
}
.nav__burger:hover { background: rgba(0,0,0,.06); }
.nav__burger b {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
}
.nav.over-dark:not(.solid) .nav__burger b { background: #fff; }
.nav__burger.open b:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav__burger.open b:nth-child(2) { opacity: 0; }
.nav__burger.open b:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile drawer */
.nav__drawer {
  position: fixed;
  inset: 70px 0 0 0;
  background: var(--white);
  z-index: 850;
  overflow-y: auto;
  transform: translateY(-110%);
  transition: transform .4s var(--ease);
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.nav__drawer.open { transform: translateY(0); }
.nav__drawer-links {
  padding: 12px 0;
  flex: 1;
}
.nav__drawer-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: color .2s, background .2s;
}
.nav__drawer-links a:hover { color: var(--blue); background: var(--blue-pale); }
.nav__drawer-links a svg { width: 16px; height: 16px; opacity: .35; flex-shrink: 0; }
.nav__drawer-footer {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid var(--border);
}
.nav__drawer-footer .btn { justify-content: center; }

/* ─────────────────────────────────────────
   HERO — full-viewport, 100% wide
───────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--navy);
}
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .4;
  transition: transform 12s ease;
}
.hero:hover .hero__img { transform: scale(1.04); }
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(12,30,64,.88) 0%, rgba(12,30,64,.5) 55%, rgba(12,30,64,.15) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 48px;
  max-width: 760px;
  animation: heroIn 1.2s var(--ease-out) both;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 22px;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px; height: 2px;
  background: var(--blue);
  flex-shrink: 0;
}
.hero__heading {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  font-weight: 400;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 24px;
}
.hero__heading em { font-style: italic; color: rgba(120,180,255,1); }
.hero__sub {
  font-size: clamp(.95rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,.65);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 36px;
  font-weight: 300;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  animation: scrollBounce 2.4s ease infinite;
}
.hero__scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
}
@keyframes scrollBounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(7px); }
}

/* ─────────────────────────────────────────
   MISSION BAND — full width
───────────────────────────────────────── */
.mission-band {
  width: 100%;
  background: var(--blue);
  padding: 48px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.mission-band__quote {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.2vw, 1.6rem);
  font-weight: 400;
  font-style: italic;
  color: #fff;
  max-width: 900px;
  line-height: 1.55;
  flex: 1;
}
.mission-band__cta {
  flex-shrink: 0;
}

/* ─────────────────────────────────────────
   FULL-WIDTH SPLIT SECTION
───────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  min-height: 580px;
}
.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }

.split__image {
  position: relative;
  overflow: hidden;
  min-height: 440px;
}
.split__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.split__image:hover img { transform: scale(1.04); }

.split__content {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}
.split__content--snow { background: var(--snow); }
.split__content--mist { background: var(--mist); }
.split__content--navy { background: var(--navy); }
.split__content--navy .split__body { color: rgba(255,255,255,.6); }
.split__content--navy .eyebrow { color: rgba(120,180,255,.85); }
.split__eyebrow { margin-bottom: 14px; }
.split__heading {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.8vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 20px;
}
.split__content--navy .split__heading { color: #fff; }
.split__heading em { font-style: italic; color: var(--blue); }
.split__content--navy .split__heading em { color: rgba(120,180,255,1); }
.split__body {
  font-size: .97rem;
  color: var(--text-mid);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 16px;
  max-width: 440px;
}
.split__actions { margin-top: 24px; display: flex; gap: 14px; flex-wrap: wrap; }

/* Features list inside split */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 28px;
}
.feature-list__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.feature-list__icon {
  width: 36px; height: 36px;
  background: var(--blue-pale);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-list__icon svg { width: 18px; height: 18px; stroke: var(--blue); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.feature-list__text h4 { font-size: .9rem; font-weight: 600; margin-bottom: 3px; }
.feature-list__text p { font-size: .84rem; color: var(--text-muted); line-height: 1.55; }

/* ─────────────────────────────────────────
   4-COLUMN PILLARS BAND
───────────────────────────────────────── */
.pillars {
  width: 100%;
  background: var(--snow);
  padding: 80px 48px;
}
.pillars__header {
  text-align: center;
  margin-bottom: 56px;
}
.pillars__header .eyebrow { display: block; margin-bottom: 12px; }
.pillars__header h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
}
.pillars__header h2 em { font-style: italic; color: var(--blue); }
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  max-width: 1400px;
  margin: 0 auto;
}
.pillar {
  background: var(--white);
  padding: 44px 36px;
  transition: background .3s;
}
.pillar:hover { background: var(--blue-pale); }
.pillar__num {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--mist);
  line-height: 1;
  margin-bottom: 20px;
  transition: color .3s;
}
.pillar:hover .pillar__num { color: var(--sky); }
.pillar__icon {
  width: 44px; height: 44px;
  background: var(--blue-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: background .3s;
}
.pillar:hover .pillar__icon { background: rgba(4,107,210,.15); }
.pillar__icon svg { width: 22px; height: 22px; stroke: var(--blue); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.pillar h3 { font-size: 1rem; font-weight: 600; margin-bottom: 10px; }
.pillar p { font-size: .87rem; color: var(--text-mid); line-height: 1.65; font-weight: 300; }

/* ─────────────────────────────────────────
   PRODUCTS — full-width section
───────────────────────────────────────── */
.products {
  width: 100%;
  background: var(--white);
  padding: 96px 48px;
}
.products__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
  gap: 24px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  flex-wrap: wrap;
}
.products__heading {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
}
.products__heading em { font-style: italic; color: var(--blue); }

/* 4-col on large, 2-col medium, 1-col mobile */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,.1);
}
.product-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--mist);
  position: relative;
}
.product-card__img img {
  width: 100%; height: 100%;
  object-fit: contain;
  transition: transform .6s var(--ease);
}
.product-card:hover .product-card__img img { transform: scale(1.07); }
.product-card__badge {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--navy);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}
.product-card__body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.product-card__name-wrap { display: flex; align-items: baseline; gap: 8px; margin-bottom: 8px; }
.product-card__name {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
}
.product-card__name-sub {
  font-size: .74rem;
  color: var(--text-muted);
  font-style: italic;
}
.product-card__desc {
  font-size: .84rem;
  color: var(--text-mid);
  line-height: 1.6;
  flex: 1;
  font-weight: 300;
}
.product-card__footer {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product-card__spec {
  font-size: .74rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.product-card__spec strong { display: block; color: var(--text); font-size: .8rem; }

/* ─────────────────────────────────────────
   SPECS HIGHLIGHT BANNER
───────────────────────────────────────── */
.specs-band {
  width: 100%;
  background: var(--navy);
  padding: 72px 48px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 1px;
}
@media (max-width: 900px) { .specs-band { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .specs-band { grid-template-columns: 1fr; } }
@media (max-width: 900px) { .video-section { padding: 64px 24px; } }

.spec-item {
  padding: 32px 28px;
  border-right: 1px solid rgba(255,255,255,.07);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.spec-item:last-child { border-right: none; }
.spec-item__value {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: #fff;
  line-height: 1;
}
.spec-item__label {
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
.spec-item__note {
  font-size: .8rem;
  color: rgba(255,255,255,.25);
  margin-top: 4px;
  font-weight: 300;
}

/* ─────────────────────────────────────────
   VIDEO SECTION
───────────────────────────────────────── */
.video-section {
  background: var(--navy);
  padding: 32px 48px 96px;
}
.video-section__inner {
  max-width: 1000px;
  margin: 0 auto;
}
.video-section__header {
  text-align: center;
  margin-bottom: 48px;
}
.video-section__header h2 {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
}
.video-section__header h2 em { font-style: italic; color: #7db8f7; }
.video-section__header p { font-size: .95rem; color: #a0b3cc; max-width: 560px; margin: 0 auto; line-height: 1.7; }
.video-section__player {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 64px rgba(0,0,0,.5);
}
.video-section__player video {
  width: 100%;
  display: block;
}

/* ─────────────────────────────────────────
   FULL-BLEED APPLICATIONS GRID
───────────────────────────────────────── */
.applications {
  width: 100%;
  padding: 96px 48px;
  background: var(--snow);
}
.applications__header {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  margin-bottom: 52px;
}
.applications__header-left {
  flex: 0 0 auto;
  max-width: 480px;
}
.applications__header h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  margin-top: 12px;
  line-height: 1.2;
}
.applications__header h2 em { font-style: italic; color: var(--blue); }
#blurb {
  flex: 1 1 0;
  align-self: center;
  font-size: .97rem;
  line-height: 1.8;
  color: var(--text-mid);
  font-weight: 300;
  margin: 0;
}

.app-mosaic {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 340px 260px;
  gap: 10px;
}
.app-tile {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}
.app-tile--tall { grid-row: span 2; }
.app-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}
.app-tile:hover img { transform: scale(1.06); }
.app-tile__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,30,64,.75) 0%, transparent 55%);
  transition: background .35s;
}
.app-tile:hover .app-tile__overlay {
  background: linear-gradient(to top, rgba(12,30,64,.88) 0%, rgba(12,30,64,.2) 55%);
}
.app-tile__content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 22px;
}
.app-tile__cat {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(120,180,255,.9);
  margin-bottom: 6px;
}
.app-tile__title {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: #fff;
  font-weight: 400;
  line-height: 1.3;
}
.app-tile--tall .app-tile__title { font-size: 1.6rem; }
.app-tile__desc {
  font-size: .82rem;
  color: rgba(255,255,255,.65);
  margin-top: 8px;
  line-height: 1.5;
  max-width: 320px;
  transform: translateY(6px);
  opacity: 0;
  transition: opacity .3s, transform .3s;
}
.app-tile:hover .app-tile__desc { opacity: 1; transform: translateY(0); }

/* ─────────────────────────────────────────
   TESTIMONIAL — full width, clean
───────────────────────────────────────── */
.testimonial {
  width: 100%;
  background: var(--blue);
  padding: 88px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.testimonial::before {
  content: '\201C';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-size: 24rem;
  color: rgba(255,255,255,.04);
  line-height: 1;
  pointer-events: none;
}
.testimonial blockquote {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  font-weight: 400;
  font-style: italic;
  color: #fff;
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.55;
  position: relative;
}
.testimonial cite {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-top: 28px;
}

/* ─────────────────────────────────────────
   WHY NAKYMATONE — alternating rows
───────────────────────────────────────── */
.why {
  width: 100%;
  padding: 96px 48px;
  background: var(--white);
}
.why__header {
  text-align: center;
  margin-bottom: 72px;
}
.why__header h2 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3vw, 2.9rem);
  font-weight: 400;
  margin-top: 12px;
}
.why__header h2 em { font-style: italic; color: var(--blue); }

.why__rows { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; gap: 56px; }
.why__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why__row--flip { direction: rtl; }
.why__row--flip > * { direction: ltr; }
.why__row-img {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 16/10;
  box-shadow: 0 12px 40px rgba(0,0,0,.1);
}
.why__row-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.why__row:hover .why__row-img img { transform: scale(1.04); }
.why__row-content {}
.why__row-content .eyebrow { margin-bottom: 12px; }
.why__row-content h3 {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 16px;
}
.why__row-content h3 em { font-style: italic; color: var(--blue); }
.why__row-content p {
  font-size: .97rem;
  color: var(--text-mid);
  line-height: 1.8;
  font-weight: 300;
}

/* ─────────────────────────────────────────
   CONTACT / CTA — full-width split
───────────────────────────────────────── */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
}
.contact-info {
  background: var(--navy);
  padding: 88px 64px;
  color: #fff;
}
.contact-info .eyebrow { color: rgba(120,180,255,.8); margin-bottom: 16px; }
.contact-info h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.8vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 24px;
}
.contact-info h2 em { font-style: italic; color: rgba(120,180,255,1); }
.contact-info p {
  font-size: .97rem;
  color: rgba(255,255,255,.6);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 36px;
  max-width: 380px;
}
.contact-details { display: flex; flex-direction: column; gap: 18px; }
.contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.contact-detail__icon {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail__icon svg { width: 18px; height: 18px; stroke: rgba(120,180,255,.8); fill: none; stroke-width: 2; }
.contact-detail__text small {
  display: block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 4px;
}
.contact-detail__text a,
.contact-detail__text span {
  font-size: .97rem;
  color: rgba(255,255,255,.8);
  transition: color .2s;
}
.contact-detail__text a:hover { color: #fff; }
.contact-regions {
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.contact-regions small {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  display: block;
  margin-bottom: 14px;
}
.contact-regions__flags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.contact-regions__flag {
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  transition: all .2s;
}
.contact-regions__flag:hover { border-color: rgba(120,180,255,.4); color: rgba(120,180,255,.9); }

.contact-form {
  background: var(--snow);
  padding: 88px 64px;
}
.contact-form h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 32px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: .8rem; font-weight: 600; color: var(--text-mid); letter-spacing: .03em; }
.form-control {
  padding: 12px 16px;
  font-family: var(--sans);
  font-size: .9rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  outline: none;
  transition: border-color .2s;
}
.form-control:focus { border-color: var(--blue); }
.form-control::placeholder { color: var(--text-muted); }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { appearance: none; cursor: pointer; }
.form-submit { margin-top: 8px; width: 100%; justify-content: center; padding: 15px; font-size: .9rem; border-radius: 6px; }

/* ─────────────────────────────────────────
   DISTRIBUTOR MAP
───────────────────────────────────────── */
.distrib-map-section {
  width: 100%;
  background: var(--navy);
  padding: 80px 48px;
}
.distrib-map-section__header {
  text-align: center;
  margin-bottom: 48px;
}
.distrib-map-section__header h2 {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
}
.distrib-map-section__header h2 em { font-style: italic; color: #7db8f7; }
.distrib-map-section__header p {
  font-size: .95rem;
  color: #a0b3cc;
  max-width: 520px;
  margin: 0 auto;
}
.distrib-map-wrap {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,.45);
}
#distrib-map {
  width: 100%;
  height: 480px;
  background: #1a2e4a;
}
.distrib-popup h4 {
  font-family: var(--sans);
  font-size: .95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.distrib-popup p {
  font-size: .82rem;
  color: var(--text-mid);
  margin: 2px 0;
}
.distrib-popup a {
  display: inline-block;
  margin-top: 6px;
  font-size: .8rem;
  color: var(--blue);
  font-weight: 600;
}
.distrib-legend {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
}
.distrib-legend__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: #a0b3cc;
}
.distrib-legend__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}
.distrib-legend__dot--dealer { background: #046bd2; }
.distrib-legend__dot--dist   { background: #f59e0b; }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
footer {
  width: 100%;
  background: var(--navy);
  padding: 72px 48px 36px;
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer__logo {
  font-family: var(--sans);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 14px;
}
.footer__logo .dot { color: var(--blue); }
.footer__brand p {
  font-size: .87rem;
  color: rgba(255,255,255,.4);
  line-height: 1.7;
  font-weight: 300;
  max-width: 280px;
  margin-bottom: 24px;
}
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.4);
  font-size: .75rem;
  font-weight: 700;
  transition: all .25s;
}
.footer__social a:hover { border-color: rgba(120,180,255,.45); color: rgba(120,180,255,.9); background: rgba(120,180,255,.08); }
.footer__col h4 {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 20px;
}
.footer__col ul li { margin-bottom: 10px; }
.footer__col ul li a {
  font-size: .87rem;
  color: rgba(255,255,255,.38);
  font-weight: 300;
  transition: color .2s;
}
.footer__col ul li a:hover { color: rgba(255,255,255,.75); }
.footer__bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .78rem;
  color: rgba(255,255,255,.25);
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer__bottom-links a { color: rgba(255,255,255,.25); transition: color .2s; }
.footer__bottom-links a:hover { color: rgba(255,255,255,.55); }

/* ─────────────────────────────────────────
   SCROLL REVEAL
───────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-up.in { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */

/* Tablet */
@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars__grid { grid-template-columns: repeat(2, 1fr); }
  .why__rows { gap: 40px; }
  .why__row { gap: 40px; }
}

@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__inner { padding: 0 24px; }

  .split { grid-template-columns: 1fr; }
  .split--reverse { direction: ltr; }
  .split__image { min-height: 320px; }
  .split__content { padding: 56px 32px; }

  .mission-band { flex-direction: column; text-align: center; padding: 48px 32px; }
  .mission-band__cta { display: none; }

  .app-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .app-tile--tall { grid-row: auto; }

  .contact-split { grid-template-columns: 1fr; }
  .contact-info { padding: 64px 32px; }
  .contact-form { padding: 56px 32px; }
  .form-row { grid-template-columns: 1fr; }

  .why__row, .why__row--flip { grid-template-columns: 1fr; direction: ltr; gap: 28px; }
  .why__rows { gap: 56px; }

  .footer__top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 640px) {
  .hero__content { padding: 0 24px; }
  .hero__heading { font-size: 2.2rem; }

  .pillars { padding: 64px 24px; }
  .pillars__grid { grid-template-columns: 1fr; }
  .pillar { padding: 32px 24px; }

  .products { padding: 72px 24px; }
  .products__header { flex-direction: column; align-items: flex-start; }
  .product-grid { grid-template-columns: 1fr; }

  .applications { padding: 72px 24px; }
  .applications__header { flex-direction: column; gap: 24px; }
  .applications__header-left { max-width: 100%; }
  .app-mosaic { grid-template-columns: 1fr; }

  .why { padding: 72px 24px; }

  .distrib-map-section { padding: 56px 24px; }
  .distrib-map-section__header h2 { font-size: 1.7rem; }
  #distrib-map { height: 340px; }

  footer { padding: 56px 24px 28px; }
  .footer__top { grid-template-columns: 1fr; }

  .specs-band { padding: 56px 24px; }
  .spec-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); }

  .testimonial { padding: 64px 24px; }

  .hero__actions { flex-direction: column; }
  .hero__actions .btn { justify-content: center; }
}
