/* =========================================================================
   ABOUT US PAGE STYLES
   ========================================================================= */

/* ── HERO ──────────────────────────────────────────────────────────────── */
.nexar-about-hero {
  position: relative;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.nexar-about-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
}

.nexar-about-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 70%;
}

.nexar-about-hero__title {
  font-size: 92px;
  font-weight: 600;
  font-style: normal;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 30px;
  letter-spacing: -1px;
}

.nexar-about-hero__subtitle {
  font-size: 24px;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  max-width: 800px;
}

/* ── ANIMATED BARS — uses homepage keyframe nexar-line-enter ──────────── */

.nexar-about-hero__lines {
  position: absolute;
  bottom: 60px;
  right: 0;
  width: 100%;
  height: 90px;
  pointer-events: none;
  z-index: 4;
}

.nexar-about-hero__line {
  position: absolute;
  right: 0;
  display: block;
  height: auto;
  max-width: 100%;
  transform: translateX(110vw);
}

.nexar-about-hero__line--1 {
  top: 8px;
  right: 28.4%;
  width: 9.9%;
  max-width: 190px;
  min-width: 60px;
}

.nexar-about-hero__line--2 {
  top: 23px;
  width: 33.4%;
  max-width: 641px;
  min-width: 120px;
}

.nexar-about-hero__line--3 {
  top: 51px;
  width: 28.2%;
  max-width: 541px;
  min-width: 100px;
}

.nexar-about-hero__line--4 {
  top: 74px;
  width: 7.6%;
  max-width: 145px;
  min-width: 40px;
}

/* Staggered infinite loop — same as Corporate Meetings */
.lines-entered .nexar-about-hero__line--1 {
  animation: nexar-line-enter 4s infinite;
  animation-delay: 0s;
}
.lines-entered .nexar-about-hero__line--2 {
  animation: nexar-line-enter 4s infinite;
  animation-delay: 0.12s;
}
.lines-entered .nexar-about-hero__line--3 {
  animation: nexar-line-enter 4s infinite;
  animation-delay: 0.24s;
}
.lines-entered .nexar-about-hero__line--4 {
  animation: nexar-line-enter 4s infinite;
  animation-delay: 0.36s;
}

@media (prefers-reduced-motion: reduce) {
  .nexar-about-hero__line,
  .lines-entered .nexar-about-hero__line--1,
  .lines-entered .nexar-about-hero__line--2,
  .lines-entered .nexar-about-hero__line--3,
  .lines-entered .nexar-about-hero__line--4 {
    transform: translateX(0) !important;
    animation: none !important;
  }
}

/* ── GRADIENT LINE (after hero) ─────────────────────────────────────── */
.nexar-about-gradient-line {
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, #3699FD 0%, #1CD47F 100%);
  margin: 0;
  padding: 0;
}
@media (max-width: 768px) {
  .nexar-about-gradient-line {
    height: 6px;
  }
}
@media (max-width: 480px) {
  .nexar-about-gradient-line {
    height: 4px;
  }
}

/* ── ABOUT INTRO ───────────────────────────────────────────────────────── */
.nexar-about-intro {
  padding-top: 100px;
  padding-bottom: 100px;
  background: #fff;
}

.nexar-about-intro__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.nexar-about-intro__heading {
  font-size: 42px;
  font-weight: 400;
  color: #1a1a2e;
  line-height: 1.2;
  margin-bottom: 24px;
}

.nexar-about-intro__desc {
  font-size: 16px;
  color: #1A1A1A;
  line-height: 1.8;
}

.nexar-about-intro__images {
  position: relative;
  height: 480px;
}

.nexar-about-intro__img {
  position: absolute;
  overflow: hidden;
  border-radius: 0;
}

.nexar-about-intro__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nexar-about-intro__img--1 {
  top: 0;
  left: 50px;
  width: 230px;
  height: 200px;
  z-index: 1;
}

.nexar-about-intro__img--2 {
  top: 0;
  right: 0;
  width: 320px;
  height: 360px;
  z-index: 2;
}

.nexar-about-intro__img--3 {
  bottom: 0;
  left: 30px;
  width: 280px;
  height: 250px;
  z-index: 3;
}

/* ── OUR VISION ────────────────────────────────────────────────────────── */
.nexar-about-vision {
  background: #fff;
  padding-top: 100px;
  padding-bottom: 100px;
  overflow: hidden;
}

.nexar-about-vision__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin: 0 auto;
  align-items: start;
}

.nexar-about-vision__left {
  padding: 0;
}

.nexar-about-vision__icon {
  margin-bottom: 24px;
}

.nexar-about-vision__icon img {
  width: 72px;
  height: auto;
  display: block;
}

.nexar-about-vision__heading {
  font-size: 56px;
  font-weight: 500;
  color: #1a1a2e;
  line-height: 1.15;
  margin: 0 0 28px;
}

.nexar-about-vision__quote {
  font-size: 24px;
  font-weight: 600;
  color: #1a1a2e;
  line-height: 1.45;
  margin: 0 0 28px 0;
  border: none;
  padding: 0;
  font-style: normal;
}

.nexar-about-vision__desc {
  font-size: 20px;
  font-weight: 400;
  color: #1A1A1A;
  line-height: 1.7;
}

/* ── Our Mission (nested inside Vision left column) ───────────────────── */
.nexar-about-mission {
  margin-top: 40px;
}
.nexar-about-mission__icon {
  margin-bottom: 24px;
}
.nexar-about-mission__icon img {
  width: 72px;
  height: auto;
  display: block;
}
.nexar-about-mission__heading {
  font-size: 56px;
  font-weight: 500;
  color: #1a1a2e;
  line-height: 1.15;
  margin: 0 0 28px;
}
.nexar-about-mission__desc {
  font-size: 20px;
  font-weight: 400;
  color: #1A1A1A;
  line-height: 1.7;
  margin: 0 0 18px;
}
.nexar-about-mission__desc:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .nexar-about-mission { margin-top: 32px; }
  .nexar-about-mission__heading { font-size: 44px; }
  .nexar-about-mission__desc { font-size: 18px; }
  .nexar-about-mission__icon img { width: 64px; }
}
@media (max-width: 640px) {
  .nexar-about-mission { margin-top: 24px; }
  .nexar-about-mission__heading { font-size: 30px; margin-bottom: 16px; }
  .nexar-about-mission__desc { font-size: 16px; margin-bottom: 14px; }
  .nexar-about-mission__icon { margin-bottom: 16px; }
  .nexar-about-mission__icon img { width: 56px; }
}

/* Vision images — asymmetric layout */
.nexar-about-vision__right {
  position: relative;
  min-height: 550px;
  padding: 0;
}

.nexar-about-vision__img {
  position: absolute;
  overflow: hidden;
}

.nexar-about-vision__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Top-left small image */
.nexar-about-vision__img--1 {
  top: 0;
  left: 0;
  width: 45%;
  height: 38%;
  z-index: 1;
}

/* Right tall image */
.nexar-about-vision__img--2 {
  top: 40px;
  right: 0;
  width: 50%;
  height: 70%;
  z-index: 2;
}

/* Bottom-left image */
.nexar-about-vision__img--3 {
  bottom: 0;
  left: 10%;
  width: 55%;
  height: 50%;
  z-index: 3;
}

/* ── OUR APPROACH ──────────────────────────────────────────────────────── */
/* Full-width gradient bg — white card overlaid on left */
.nexar-about-approach {
  background: linear-gradient(135deg, #3699FD 0%, #1CD47F 100%);
  margin: 50px 200px !important;
  padding: 50px !important;
  overflow: visible;
}

.nexar-about-approach__inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  display: flex;
  gap: 60px;
  box-sizing: border-box;
}

/* Left — image */
.nexar-about-approach__left {
  width: 478px;
  min-width: 478px;
  /* height: 402px; */
  position: relative;
  overflow: hidden;
  z-index: 2;
  box-sizing: border-box;
}
.nexar-about-approach__image {
  width: 100%;
  /* height: 100%; */
  /* object-fit: cover; */
  display: block;
}

.nexar-about-approach__heading {
  font-size: 64px;
  font-weight: 500;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 16px;
}

/* Decorative bars — inside white card, bottom-right */
.nexar-about-approach__bars {
  position: absolute;
  right: -10px;
  bottom: 0;
  display: flex;
  gap: 4px;
  align-items: flex-end;
  z-index: 3;
}

.nexar-about-approach__bar {
  display: block;
  width: 20px;
}

/* Jumping / bouncing animation */
@keyframes nexar-bar-jump {
  0%, 100% { transform: translateY(0); }
  15%      { transform: translateY(-18px); }
  30%      { transform: translateY(0); }
  45%      { transform: translateY(-8px); }
  60%      { transform: translateY(0); }
}

.nexar-about-approach__bars.bars-animated .nexar-about-approach__bar--1 {
  animation: nexar-bar-jump 2.4s ease-in-out infinite;
  animation-delay: 0s;
}
.nexar-about-approach__bars.bars-animated .nexar-about-approach__bar--2 {
  animation: nexar-bar-jump 2.4s ease-in-out infinite;
  animation-delay: 0.15s;
}
.nexar-about-approach__bars.bars-animated .nexar-about-approach__bar--3 {
  animation: nexar-bar-jump 2.4s ease-in-out infinite;
  animation-delay: 0.3s;
}
.nexar-about-approach__bars.bars-animated .nexar-about-approach__bar--4 {
  animation: nexar-bar-jump 2.4s ease-in-out infinite;
  animation-delay: 0.45s;
}

@media (prefers-reduced-motion: reduce) {
  .nexar-about-approach__bars.bars-animated .nexar-about-approach__bar {
    animation: none !important;
  }
}

/* bar1 = green short, bar3 = gradient tall, bar2 = dark blue taller, bar4 = green medium */
.nexar-about-approach__bar--1 { height: 58px; margin-right: 8px; }
.nexar-about-approach__bar--2 { height: 159px; margin-right: 6px; }
.nexar-about-approach__bar--3 { height: 215px; margin-right: -4px; }
.nexar-about-approach__bar--4 { height: 76px; margin-right: 48px; position: relative; bottom: 200px; }

/* Right — text directly on gradient */
.nexar-about-approach__right {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.nexar-about-approach__title {
  font-size: 32px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 28px;
  padding: 0 !important;
  margin-top: 0;
}

.nexar-about-approach__right p {
  font-size: 20px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.7;
  margin-bottom: 24px;
}

.nexar-about-approach__right p:last-child {
  margin-bottom: 0;
}

/* ── GLOBAL NETWORK ────────────────────────────────────────────────────── */
.nexar-about-network {
  background: #0A0A5C;
  padding-top: 80px;
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
}

/* Decorative bars — horizontal, same as hero banner */
.nexar-about-network__lines {
  position: absolute;
  bottom: 40px;
  right: 0;
  width: 100%;
  height: 90px;
  pointer-events: none;
  z-index: 1;
}

.nexar-about-network__line {
  position: absolute;
  right: 0;
  display: block;
  height: auto;
  max-width: 100%;
  transform: translateX(110vw);
}

/* Bar 1 — green short */
.nexar-about-network__line--1 {
  top: 8px;
  right: 28.4%;
  width: 9.9%;
  max-width: 190px;
  min-width: 60px;
}

/* Bar 2 — gradient blue→green */
.nexar-about-network__line--2 {
  top: 23px;
  width: 33.4%;
  max-width: 641px;
  min-width: 120px;
}

/* Bar 3 — white */
.nexar-about-network__line--3 {
  top: 51px;
  width: 28.2%;
  max-width: 541px;
  min-width: 100px;
}

/* Bar 4 — green lowest */
.nexar-about-network__line--4 {
  top: 74px;
  width: 7.6%;
  max-width: 145px;
  min-width: 40px;
}

/* Staggered sliding animation — reuses hero keyframes */
.network-lines-entered .nexar-about-network__line--1 {
  animation: nexar-line-enter 4s infinite;
  animation-delay: 0s;
}
.network-lines-entered .nexar-about-network__line--2 {
  animation: nexar-line-enter 4s infinite;
  animation-delay: 0.12s;
}
.network-lines-entered .nexar-about-network__line--3 {
  animation: nexar-line-enter 4s infinite;
  animation-delay: 0.24s;
}
.network-lines-entered .nexar-about-network__line--4 {
  animation: nexar-line-enter 4s infinite;
  animation-delay: 0.36s;
}

@media (prefers-reduced-motion: reduce) {
  .nexar-about-network__line,
  .network-lines-entered .nexar-about-network__line--1,
  .network-lines-entered .nexar-about-network__line--2,
  .network-lines-entered .nexar-about-network__line--3,
  .network-lines-entered .nexar-about-network__line--4 {
    transform: translateX(0) !important;
    animation: none !important;
  }
}

/* Two-column layout: text left, map right */
.nexar-about-network__inner {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.nexar-about-network__content {
  text-align: left;
}

.nexar-about-network__heading {
  font-size: 56px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.15;
}

.nexar-about-network__subtitle {
  font-size: 36px;
  font-weight: 500;
  background: linear-gradient(90deg, #3699FD, #1CD47F);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
  margin-bottom: 28px;
  line-height: 1.3;
}

/* Hide the <br> on tablet/mobile so text flows naturally */
@media (max-width: 1024px) {
  .nexar-about-network__subtitle-br {
    display: none;
  }
}

.nexar-about-network__desc {
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  line-height: 1.8;
  margin-bottom: 24px;
}

.nexar-about-network__offices-label {
  font-size: 36px;
  font-weight: 500;
  background: linear-gradient(90deg, #3699FD 0%, #1CD47F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
  margin-bottom: 16px;
}

.nexar-about-network__locations {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.nexar-about-network__locations li {
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 20px;
}

.nexar-about-network__locations li h5 {
  margin: 0;
  color: #fff;
  font-weight: 600;
}

.nexar-about-network__locations li:not(:last-child)::after {
  content: '|';
  color: rgba(255, 255, 255, 0.3);
}

/* Map — right column */
.nexar-about-network__map-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nexar-about-network__map-img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.9;
}


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

/* ≤1522px */
@media (max-width: 1522px) {
  .nexar-about-hero {
  }
  .nexar-about-vision {
    padding-top: 90px;
    padding-bottom: 90px;
  }
  .nexar-about-hero__title {
    font-size: 80px;
  }
  .nexar-about-hero__subtitle {
    font-size: 22px;
  }
  .nexar-about-approach { padding: 70px !important; margin: 0 130px !important; }
  .nexar-about-approach__inner { padding: 0; gap: 50px; }
  .nexar-about-approach__left { width: 440px; min-width: 440px; height: 380px; padding: 0; }
  .nexar-about-approach__heading { font-size: 56px; }
  .nexar-about-approach__title { font-size: 28px; }
  .nexar-about-approach__right p { font-size: 18px; }
  .nexar-about-network { padding-top: 70px; padding-bottom: 90px; }
  .nexar-about-network__heading { font-size: 50px; }
  .nexar-about-network__subtitle { font-size: 32px; }
  .nexar-about-network__desc { font-size: 18px; }
  .nexar-about-network__offices-label { font-size: 32px; }
  .nexar-about-network__locations li { font-size: 28px; }
}

/* ≤1440px */
@media (max-width: 1440px) {
  .nexar-about-hero {
  }
  .nexar-about-hero__title {
    font-size: 74px;
  }
  .nexar-about-hero__subtitle {
    font-size: 19px;
  }
  .nexar-about-hero__inner {
  }
  .nexar-about-vision {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .nexar-about-vision__heading {
    font-size: 50px;
  }
  .nexar-about-approach { padding: 60px; }
  .nexar-about-approach__inner { padding: 0; gap: 45px; }
  .nexar-about-approach__left { width: 380px; min-width: 380px; height: 360px; padding: 0; }
  .nexar-about-approach__heading { font-size: 50px; }
  .nexar-about-approach__title { font-size: 26px; }
  .nexar-about-approach__right p { font-size: 17px; }
  .nexar-about-approach__bar--1 { height: 50px; margin-right: 7px; }
  .nexar-about-approach__bar--2 { height: 138px; margin-right: 5px; }
  .nexar-about-approach__bar--3 { height: 185px; margin-right: -4px; }
  .nexar-about-approach__bar--4 { height: 66px; margin-right: 42px; bottom: 175px; }
  .nexar-about-network { padding-top: 60px; padding-bottom: 80px; }
  .nexar-about-network__heading { font-size: 46px; }
  .nexar-about-network__subtitle { font-size: 30px; }
  .nexar-about-network__desc { font-size: 17px; }
  .nexar-about-network__offices-label { font-size: 30px; }
  .nexar-about-network__locations li { font-size: 26px; }
}

/* ≤1366px */
@media (max-width: 1366px) {
  .nexar-about-hero {
  }
  .nexar-about-hero__title {
    font-size: 66px;
  }
  .nexar-about-hero__subtitle {
    font-size: 18px;
  }
  .nexar-about-vision {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .nexar-about-vision__heading {
    font-size: 46px;
  }
  .nexar-about-vision__quote {
    font-size: 22px;
  }
  .nexar-about-vision__desc {
    font-size: 18px;
  }
  .nexar-about-approach { padding: 50px !important; margin-bottom: 80px !important; }
  .nexar-about-approach__inner { padding: 0; gap: 40px; }
  .nexar-about-approach__left { width: 340px; min-width: 340px; height: 330px; padding: 0; }
  .nexar-about-approach__heading { font-size: 46px; }
  .nexar-about-approach__title { font-size: 24px; }
  .nexar-about-approach__right p { font-size: 16px; }
  .nexar-about-approach__bar--1 { height: 42px; margin-right: 6px; }
  .nexar-about-approach__bar--2 { height: 120px; margin-right: 5px; }
  .nexar-about-approach__bar--3 { height: 160px; margin-right: -3px; }
  .nexar-about-approach__bar--4 { height: 56px; margin-right: 36px; bottom: 150px; }
  .nexar-about-network { padding-top: 80px; padding-bottom: 80px; }
  .nexar-about-network__heading { font-size: 42px; }
  .nexar-about-network__subtitle { font-size: 28px; }
  .nexar-about-network__desc { font-size: 16px; }
  .nexar-about-network__offices-label { font-size: 28px; }
  .nexar-about-network__locations li { font-size: 24px; }
}

/* ≤1200px */
@media (max-width: 1200px) {
  .nexar-about-hero {
  }
  .nexar-about-hero__title {
    font-size: 56px;
  }
  .nexar-about-hero__subtitle {
    font-size: 17px;
  }
  .nexar-about-hero__inner {
  }
  .nexar-about-vision {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .nexar-about-vision__heading {
    font-size: 42px;
  }
  .nexar-about-vision__quote {
    font-size: 20px;
  }
  .nexar-about-vision__desc {
    font-size: 17px;
  }
  .nexar-about-vision__right {
    min-height: 450px;
  }
  .nexar-about-approach { padding: 45px !important; margin: 60px !important; }
  .nexar-about-approach__inner { padding: 0; gap: 35px; }
  .nexar-about-approach__left { width: 300px; min-width: 300px; height: 300px; padding: 0; }
  .nexar-about-approach__heading { font-size: 40px; }
  .nexar-about-approach__title { font-size: 22px; margin-bottom: 20px; }
  .nexar-about-approach__right p { font-size: 15px; }
  .nexar-about-approach__bars { right: -8px; }
  .nexar-about-approach__bar--1 { height: 35px; margin-right: 5px; }
  .nexar-about-approach__bar--2 { height: 105px; margin-right: 4px; }
  .nexar-about-approach__bar--3 { height: 125px; margin-right: -3px; }
  .nexar-about-approach__bar--4 { height: 45px; margin-right: 30px; bottom: 130px; }
  .nexar-about-network { padding-top: 50px; padding-bottom: 60px; }
  .nexar-about-network__inner { gap: 40px; }
  .nexar-about-network__heading { font-size: 38px; }
  .nexar-about-network__subtitle { font-size: 26px; }
  .nexar-about-network__desc { font-size: 16px; }
  .nexar-about-network__offices-label { font-size: 26px; }
  .nexar-about-network__locations li { font-size: 22px; }
}

/* ≤1024px — Tablet landscape */
@media (max-width: 1024px) {
  .nexar-about-hero {
  }
  .nexar-about-hero__title {
    font-size: 46px;
    margin-bottom: 20px;
  }
  .nexar-about-hero__subtitle {
    font-size: 16px;
  }
  .nexar-about-hero__inner {
  }
  .nexar-about-hero__lines {
    height: 70px;
  }
  .nexar-about-hero__line--1 { top: 8px; right: 26.4%; width: 9.9%; max-width: 190px; min-width: 60px; }
  .nexar-about-hero__line--2 { top: 18px; }
  .nexar-about-hero__line--3 { top: 40px; }
  .nexar-about-hero__line--4 { top: 58px; }

  .nexar-about-intro {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .nexar-about-intro__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .nexar-about-intro__images {
    height: 380px;
  }
  .nexar-about-intro__heading {
    font-size: 32px;
  }

  .nexar-about-vision {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .nexar-about-vision__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .nexar-about-vision__heading {
    font-size: 40px;
  }
  .nexar-about-vision__quote {
    font-size: 20px;
  }
  .nexar-about-vision__desc {
    font-size: 17px;
  }
  .nexar-about-vision__right {
    min-height: 400px;
  }

  .nexar-about-approach { padding: 40px; }
  .nexar-about-approach__inner { padding: 0; flex-direction: column; gap: 30px; align-items: stretch; }
  .nexar-about-approach__left { width: 50%; min-width: unset; height: 240px; padding: 0; }
  .nexar-about-approach__heading { font-size: 36px; }
  .nexar-about-approach__right { padding: 0 10px 30px; }
  .nexar-about-approach__title { font-size: 24px; }
  .nexar-about-approach__right p { font-size: 16px; }
  .nexar-about-approach__bars { right: 30px; gap: 0px; }
  .nexar-about-approach__bar { width: 16px; }
  .nexar-about-approach__bar--1 { height: 28px; margin-right: 0; }
  .nexar-about-approach__bar--2 { height: 85px; margin-right: 0; }
  .nexar-about-approach__bar--3 { height: 100px; margin-right: 0; }
  .nexar-about-approach__bar--4 { height: 36px; margin-right: 0; bottom: 100px; }

  .nexar-about-network { padding-top: 48px; padding-bottom: 60px; }
  .nexar-about-network__inner { grid-template-columns: 1fr; gap: 40px; }
  .nexar-about-network__heading { font-size: 36px; }
  .nexar-about-network__subtitle { font-size: 24px; }
  .nexar-about-network__desc { font-size: 16px; }
  .nexar-about-network__offices-label { font-size: 24px; }
  .nexar-about-network__locations li { font-size: 20px; }
  .nexar-about-network__lines { height: 70px; }
}

/* ≤768px — Tablet portrait */
@media (max-width: 768px) {
  .nexar-about-hero {
    min-height: 620px;
  }
  .nexar-about-hero__title {
    font-size: 36px;
    margin-bottom: 16px;
  }
  .nexar-about-hero__subtitle {
    font-size: 15px;
    line-height: 1.55;
  }
  .nexar-about-hero__inner {
    max-width: 100%;
  }

  .nexar-about-intro {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .nexar-about-intro__heading {
    font-size: 26px;
  }
  .nexar-about-intro__images {
    height: 300px;
  }
  .nexar-about-intro__img--1 {
    left: 0;
    width: 150px;
    height: 140px;
  }
  .nexar-about-intro__img--2 {
    width: 200px;
    height: 240px;
  }
  .nexar-about-intro__img--3 {
    left: 0;
    width: 180px;
    height: 160px;
  }

  .nexar-about-vision {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .nexar-about-vision__heading {
    font-size: 32px;
    margin-bottom: 20px;
  }
  .nexar-about-vision__quote {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .nexar-about-vision__desc {
    font-size: 16px;
  }
  .nexar-about-vision__icon img {
    width: 56px;
  }
  .nexar-about-vision__right {
    min-height: 320px;
  }

  .nexar-about-approach { padding: 45px !important; margin: 16px !important; }
  .nexar-about-approach__inner { padding: 0; gap: 24px; }
  .nexar-about-approach__left { width: 55%; min-width: unset; height: 260px; padding: 0; }
  .nexar-about-approach__heading { font-size: 36px; }
  .nexar-about-approach__title { font-size: 20px; margin-bottom: 14px; }
  .nexar-about-approach__right p { font-size: 14px; line-height: 1.6; margin-bottom: 12px; }
  .nexar-about-approach__bars { right: 20px; gap: 0; }
  .nexar-about-approach__bar { width: 18px; }
  .nexar-about-approach__bar--1 { height: 30px; margin-right: 0; }
  .nexar-about-approach__bar--2 { height: 90px; margin-right: 0; }
  .nexar-about-approach__bar--3 { height: 110px; margin-right: 0; }
  .nexar-about-approach__bar--4 { height: 38px; margin-right: 0; bottom: 90px; }

  .nexar-about-network { padding-top: 40px; padding-bottom: 40px; }
  .nexar-about-network__heading { font-size: 28px; }
  .nexar-about-network__subtitle { font-size: 20px; margin-bottom: 20px; }
  .nexar-about-network__desc { font-size: 15px; }
  .nexar-about-network__offices-label { font-size: 20px; }
  .nexar-about-network__locations li { font-size: 18px; }
  .nexar-about-network__lines { height: 55px; bottom: 20px; }
}

/* ≤480px — Mobile */
@media (max-width: 480px) {
  .nexar-about-hero {
  }
  .nexar-about-hero__title {
    font-size: 30px;
    line-height: 1.1;
    margin-bottom: 14px;
  }
  .nexar-about-hero__subtitle {
    font-size: 14px;
    line-height: 1.5;
  }
  .nexar-about-hero__lines {
    height: 50px;
    bottom: 20px;
  }
  .nexar-about-hero__line--1 { top: 2px; }
  .nexar-about-hero__line--2 { top: 12px; }
  .nexar-about-hero__line--3 { top: 26px; }
  .nexar-about-hero__line--4 { top: 38px; }

  .nexar-about-vision {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .nexar-about-vision__heading {
    font-size: 26px;
    margin-bottom: 16px;
  }
  .nexar-about-vision__quote {
    font-size: 16px;
    margin-bottom: 16px;
  }
  .nexar-about-vision__desc {
    font-size: 14px;
  }
  .nexar-about-vision__icon img {
    width: 48px;
  }
  .nexar-about-vision__right {
    min-height: 260px;
  }
  .nexar-about-approach { padding: 20px; }
  .nexar-about-approach__inner { padding: 0; gap: 16px; }
  .nexar-about-approach__left { width: 100%; min-width: unset; height: 240px; padding: 0; }
  .nexar-about-approach__heading { font-size: 32px; }
  .nexar-about-approach__right { padding: 0 8px 20px; }
  .nexar-about-approach__title { font-size: 17px; margin-bottom: 12px; }
  .nexar-about-approach__right p { font-size: 13px; line-height: 1.6; margin-bottom: 10px; }
  .nexar-about-approach__bars { right: 16px; gap: 0; }
  .nexar-about-approach__bar { width: 16px; }
  .nexar-about-approach__bar--1 { height: 26px; margin-right: 0; }
  .nexar-about-approach__bar--2 { height: 75px; margin-right: 0; }
  .nexar-about-approach__bar--3 { height: 90px; margin-right: 0; }
  .nexar-about-approach__bar--4 { height: 32px; margin-right: 0; bottom: 75px; }
  .nexar-about-network { padding-top: 30px; padding-bottom: 30px; }
  .nexar-about-network__heading { font-size: 24px; }
  .nexar-about-network__subtitle { font-size: 18px; margin-bottom: 16px; }
  .nexar-about-network__desc { font-size: 14px; margin-bottom: 16px; }
  .nexar-about-network__offices-label { font-size: 18px; }
  .nexar-about-network__locations li { font-size: 16px; }
  .nexar-about-network__locations { gap: 12px; }
}
