:root {
  --navy: #071c28;
  --navy-2: #0f303d;
  --blue: #20596a;
  --orange: #f47721;
  --orange-2: #ff9b42;
  --teal: #2f6c6d;
  --green: #4e9a78;
  --white: #ffffff;
  --ink: #102632;
  --muted: #657783;
  --line: #d7e0e3;
  --bg: #eef3f4;
  --surface: #f7f9f9;
  --mist: #e8eef0;
  --mist-strong: #dfe9eb;
  --radius: 8px;
  --shadow: 0 20px 48px rgba(7, 28, 40, 0.14);
  --container: min(1280px, calc(100% - 64px));
  color: var(--ink);
  background: var(--bg);
  font-family: "Segoe UI", Arial, sans-serif;
}

* {
  letter-spacing: 0 !important;
}

html {
  scroll-padding-top: 88px;
}

body {
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

button,
input,
textarea {
  font-family: inherit;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(244, 119, 33, 0.42);
  outline-offset: 3px;
}

.container {
  width: var(--container);
}

.site-header {
  height: 78px;
  background: rgba(5, 24, 34, 0.84);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  height: 72px;
  background: rgba(5, 24, 34, 0.97);
  box-shadow: 0 12px 32px rgba(3, 16, 24, 0.18);
}

.header-row {
  gap: 28px;
}

.logo {
  width: 205px;
}

.main-nav {
  gap: 22px;
}

.main-nav > a,
.nav-dropdown > a {
  padding: 25px 0;
  font-size: 14px;
  font-weight: 700;
}

.main-nav a[aria-current="page"] {
  color: var(--orange-2);
}

.dropdown-panel {
  top: 62px;
  left: -20px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.dropdown-panel a {
  padding: 10px 12px;
  border-radius: 5px;
}

.header-contact {
  gap: 14px;
}

.header-phone strong {
  font-size: 15px;
}

.header-phone span {
  color: #b8c8cf;
}

.btn {
  min-height: 52px;
  padding: 0 21px;
  border-radius: 5px;
  font-weight: 750;
  box-shadow: none;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--accent {
  color: #fff;
  background: var(--orange);
  box-shadow: 0 12px 26px rgba(244, 119, 33, 0.24);
}

.btn--accent:hover {
  background: #dc6314;
}

.btn--ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.16);
}

.btn--outline {
  color: var(--ink);
  background: transparent;
  border-color: #aebdc3;
}

.btn--outline:hover {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.btn--light {
  color: var(--navy);
  background: #fff;
}

.btn--sm {
  min-height: 44px;
  padding: 0 16px;
}

.eyebrow,
.hero-kicker {
  color: var(--orange);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.section {
  padding: 104px 0;
}

.section--compact {
  padding: 70px 0;
}

.section--white {
  background: #fff;
}

.section--dark {
  color: #fff;
  background: var(--navy);
}

.section-head {
  align-items: flex-end;
  gap: 60px;
  margin-bottom: 46px;
}

.section-title {
  max-width: 780px;
  margin-top: 12px;
  font-size: 52px;
  line-height: 1.05;
}

.section-lead {
  max-width: 470px;
  color: var(--muted);
  font-size: 17px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
  border-bottom: 1px solid currentColor;
}

.text-link:hover {
  color: var(--orange);
}

.section-action {
  display: flex;
  justify-content: flex-end;
  margin-top: 28px;
}

/* Home hero */
.hero--redesign {
  min-height: 760px;
  padding-bottom: 104px;
  background: var(--navy);
}

.hero--redesign .section-bg {
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(0.82) contrast(1.04);
}

.hero--redesign::after {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(4, 20, 30, 0.96) 0%, rgba(4, 20, 30, 0.8) 45%, rgba(4, 20, 30, 0.12) 82%),
    linear-gradient(0deg, rgba(4, 20, 30, 0.74), transparent 42%);
}

.hero--redesign .hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  align-items: center;
  gap: 84px;
  min-height: 656px;
  padding: 112px 0 82px;
}

.hero--redesign .hero-copy {
  max-width: 740px;
}

.hero--redesign .hero-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #d4e0e4;
}

.hero--redesign .hero-kicker i {
  width: 34px;
  height: 2px;
  background: var(--orange);
}

.hero--redesign h1 {
  max-width: 740px;
  margin: 22px 0 24px;
  font-size: 72px;
  line-height: 0.98;
}

.hero--redesign h1 span {
  display: block;
  margin-top: 7px;
  color: var(--orange-2);
}

.hero--redesign .hero-copy > p {
  max-width: 650px;
  color: #d5e0e5;
  font-size: 19px;
  line-height: 1.55;
}

.hero-actions {
  gap: 12px;
  margin-top: 30px;
}

.hero-proof {
  gap: 34px;
  margin-top: 38px;
  padding-top: 22px;
  border-color: rgba(255, 255, 255, 0.22);
}

.hero-proof span {
  color: #bccbd1;
  font-size: 13px;
}

.hero-proof b {
  font-size: 25px;
}

.hero-route {
  align-self: end;
  margin-bottom: 30px;
  padding: 24px;
  color: #fff;
  background: rgba(7, 28, 40, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  backdrop-filter: blur(14px);
}

.hero-route-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-route-head small {
  color: #d4e0e5;
  font-weight: 750;
}

.hero-route-head span {
  padding: 5px 9px;
  color: #fff;
  background: var(--teal);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

.route-stack {
  padding: 12px 0 6px;
}

.route-stack > div {
  position: relative;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 13px;
  padding: 12px 0;
}

.route-stack > div:not(:last-child)::after {
  position: absolute;
  top: 42px;
  bottom: -7px;
  left: 16px;
  width: 1px;
  background: rgba(255, 255, 255, 0.22);
  content: "";
}

.route-stack i {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--orange-2);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

.route-stack small,
.route-stack b {
  display: block;
}

.route-stack small {
  color: #9fb3bc;
  font-size: 11px;
}

.route-stack b {
  margin-top: 1px;
  font-size: 15px;
}

.hero-route > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  padding-top: 17px;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 14px;
  font-weight: 800;
}

.hero-route > a:hover {
  color: var(--orange-2);
}

.status-dock {
  bottom: -54px;
  z-index: 3;
}

.status-panel--actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  min-height: 132px;
  padding: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  box-shadow: 0 24px 54px rgba(4, 22, 32, 0.22);
}

.home-action {
  position: relative;
  display: grid;
  grid-template-columns: 34px 1fr;
  grid-template-rows: auto auto auto;
  gap: 2px 14px;
  min-width: 0;
  padding: 25px 28px;
  color: var(--ink);
  text-align: left;
  background: #fff;
  border: 0;
  cursor: pointer;
}

.home-action:not(:last-child) {
  border-right: 1px solid var(--line);
}

.home-action > span {
  grid-row: 1 / 4;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--orange);
  background: #fff2e8;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 850;
}

.home-action small,
.home-action b,
.home-action em {
  display: block;
  min-width: 0;
}

.home-action small {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.home-action b {
  font-size: 18px;
  line-height: 1.25;
}

.home-action em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.home-action:hover {
  color: #fff;
  background: var(--navy-2);
}

.home-action:hover small,
.home-action:hover em {
  color: rgba(255, 255, 255, 0.72);
}

/* Service showcase */
.home-services {
  padding-top: 144px;
}

.service-showcase {
  display: grid;
  grid-template-columns: 45% 55%;
  min-height: 620px;
  overflow: hidden;
  background: var(--navy);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-index {
  background: #fff;
}

.service-index-item {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 28px;
  align-items: center;
  gap: 16px;
  min-height: 88px;
  padding: 13px 24px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  transition: color 180ms ease, background-color 180ms ease;
}

.service-index-item > span {
  color: #9aabb2;
  font-size: 12px;
  font-weight: 850;
}

.service-index-item small,
.service-index-item strong {
  display: block;
}

.service-index-item small {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.service-index-item strong {
  margin-top: 2px;
  font-size: 19px;
  line-height: 1.2;
}

.service-index-item > b {
  color: #9aabb2;
  font-size: 18px;
  font-weight: 500;
}

.service-index-item > img {
  display: none;
}

.service-index-item:hover,
.service-index-item.is-active {
  color: #fff;
  background: var(--navy-2);
  box-shadow: inset 4px 0 0 var(--orange);
}

.service-index-item:hover small,
.service-index-item:hover > span,
.service-index-item:hover > b,
.service-index-item.is-active small,
.service-index-item.is-active > span,
.service-index-item.is-active > b {
  color: rgba(255, 255, 255, 0.75);
}

.service-stage {
  position: relative;
  min-width: 0;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
}

.service-stage::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(4, 20, 29, 0.94), rgba(4, 20, 29, 0.06) 72%);
  content: "";
}

.service-stage > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.04);
  transition: opacity 180ms ease, transform 650ms ease;
}

.service-stage:hover > img {
  transform: scale(1.025);
}

.service-stage-copy {
  position: absolute;
  z-index: 2;
  right: 38px;
  bottom: 36px;
  left: 38px;
}

.service-stage-copy small,
.service-stage-copy strong,
.service-stage-copy em,
.service-stage-copy b {
  display: block;
}

.service-stage-copy small {
  color: var(--orange-2);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.service-stage-copy strong {
  max-width: 580px;
  margin-top: 8px;
  font-size: 36px;
  line-height: 1.08;
}

.service-stage-copy em {
  max-width: 540px;
  margin-top: 10px;
  color: #d4dfe4;
  font-size: 15px;
  font-style: normal;
}

.service-stage-copy b {
  margin-top: 20px;
  font-size: 14px;
}

/* Network coverage */
.network--visual {
  background: var(--mist);
}

.network--visual .network-layout {
  grid-template-columns: minmax(0, 0.8fr) minmax(600px, 1.2fr);
  gap: 70px;
}

.network-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 34px 0 28px;
  padding: 22px 0;
  border-top: 1px solid #c7d3d7;
  border-bottom: 1px solid #c7d3d7;
}

.network-facts span {
  color: var(--muted);
  font-size: 12px;
}

.network-facts b {
  display: block;
  color: var(--ink);
  font-size: 28px;
}

.network-visual {
  position: relative;
  min-height: 560px;
  margin: 0;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.network-visual::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 20, 30, 0.34) 0%, rgba(5, 20, 30, 0.03) 36%, rgba(5, 20, 30, 0.17) 54%, rgba(5, 20, 30, 0.94) 100%);
  content: "";
  pointer-events: none;
}

.network-visual::after {
  position: absolute;
  z-index: 3;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.network-visual > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.86) contrast(1.03);
}

.network-visual-head {
  position: absolute;
  z-index: 2;
  top: 22px;
  right: 22px;
  left: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.network-visual-head > span:first-child {
  padding: 9px 12px;
  background: rgba(7, 25, 36, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  font-weight: 800;
  font-size: 13px;
  backdrop-filter: blur(8px);
}

.network-visual-status {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  background: rgba(7, 25, 36, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.network-visual-status i {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(78, 154, 120, 0.17);
}

.network-visual-caption {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 26px;
  left: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 28px;
  align-items: end;
}

.network-visual-caption small {
  display: block;
  margin-bottom: 9px;
  color: #a9bdc6;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.network-primary-route p,
.network-reach p {
  margin: 0;
}

.network-primary-route p {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 18px;
}

.network-primary-route strong {
  white-space: nowrap;
}

.network-primary-route p span {
  color: var(--orange);
  font-size: 16px;
}

.network-reach {
  padding-left: 26px;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.network-reach p {
  color: #fff;
  font-size: 12px;
  line-height: 1.65;
}

/* Operating advantages */
.advantage-strip {
  grid-template-columns: 1.45fr repeat(4, 1fr);
  gap: 0;
}

.advantage-title {
  padding-right: 42px;
}

.advantage-title h2 {
  margin: 9px 0 0;
  font-size: 34px;
  line-height: 1.08;
}

.advantage {
  min-height: 190px;
  padding: 6px 24px 0;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.advantage > span {
  color: var(--orange-2);
  font-size: 12px;
  font-weight: 850;
}

.advantage h3 {
  margin: 28px 0 8px;
  font-size: 18px;
}

.advantage p {
  margin: 0;
  color: #9fb2ba;
  font-size: 13px;
}

/* Process */
.process-home {
  background: var(--surface);
}

.process-grid {
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  counter-reset: process;
}

.process-step {
  position: relative;
  min-height: 238px;
  padding: 28px 24px 20px 0;
  background: transparent;
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
  border-top: 2px solid #cbd7da;
  border-radius: 0;
  box-shadow: none;
}

.process-step:not(:last-child) {
  margin-right: 20px;
}

.process-step::before {
  position: absolute;
  top: -7px;
  left: 0;
  width: 12px;
  height: 12px;
  background: var(--orange);
  border: 3px solid var(--surface);
  border-radius: 50%;
  content: "";
}

.process-step > span {
  display: block;
  color: #91a4ab;
  font-size: 12px;
  font-weight: 850;
}

.process-step h3 {
  margin: 52px 0 8px;
  font-size: 23px;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

/* Client informer */
.informer-section .informer-wrap {
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
}

.tracking-console {
  padding: 28px;
  color: #fff;
  background: var(--navy);
  border: 1px solid #163b48;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.tracking-console-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.tracking-console-head span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 800;
}

.tracking-console-head i {
  width: 9px;
  height: 9px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(78, 154, 120, 0.17);
}

.tracking-console-head small {
  color: #8ca2ac;
}

.tracking-route {
  position: relative;
  padding: 28px 0 24px;
}

.tracking-route small,
.tracking-route strong {
  display: block;
}

.tracking-route small {
  color: #90a7b0;
  font-size: 11px;
  text-transform: uppercase;
}

.tracking-route strong {
  margin-top: 4px;
  font-size: 28px;
}

.tracking-route strong span {
  color: var(--orange-2);
}

.tracking-route em {
  position: absolute;
  top: 32px;
  right: 0;
  padding: 6px 10px;
  color: #fff;
  background: var(--teal);
  border-radius: 999px;
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

.tracking-progress {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 22px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.tracking-progress span {
  position: relative;
  min-width: 0;
  color: #78909a;
}

.tracking-progress span:not(:last-child)::after {
  position: absolute;
  top: 14px;
  right: -10px;
  left: 32px;
  height: 1px;
  background: #36515c;
  content: "";
}

.tracking-progress i {
  position: relative;
  z-index: 1;
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  background: var(--navy);
  border: 1px solid #49636d;
  border-radius: 50%;
  font-size: 10px;
  font-style: normal;
}

.tracking-progress b,
.tracking-progress small {
  display: block;
}

.tracking-progress b {
  margin-top: 13px;
  font-size: 11px;
}

.tracking-progress small {
  margin-top: 2px;
  font-size: 9px;
}

.tracking-progress .is-done,
.tracking-progress .is-active {
  color: #fff;
}

.tracking-progress .is-done i {
  background: var(--teal);
  border-color: var(--teal);
}

.tracking-progress .is-active i {
  color: var(--orange-2);
  border-color: var(--orange);
}

.tracking-console-foot {
  display: flex;
  gap: 52px;
  padding-top: 20px;
}

.tracking-console-foot small,
.tracking-console-foot b {
  display: block;
}

.tracking-console-foot small {
  color: #829aa4;
  font-size: 10px;
  text-transform: uppercase;
}

.tracking-console-foot b {
  margin-top: 2px;
  font-size: 13px;
}

.informer-copy h2 {
  margin: 10px 0 18px;
  font-size: 42px;
  line-height: 1.08;
}

.informer-copy > p {
  color: var(--muted);
  font-size: 17px;
}

.check-list li::before {
  color: var(--orange);
}

/* About and news */
.about-home {
  background: var(--mist-strong);
}

.about-home .about-layout {
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
}

.about-copy > p {
  max-width: 590px;
  color: #4f6570;
  font-size: 17px;
}

.about-stats {
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 34px 0 28px;
  padding: 22px 0;
  border-top: 1px solid #bac9ce;
  border-bottom: 1px solid #bac9ce;
}

.about-stats span {
  min-width: 0;
  padding: 0 18px;
  color: var(--muted);
  border: 0;
  border-left: 1px solid #bac9ce;
  border-radius: 0;
  font-size: 11px;
}

.about-stats span:first-child {
  padding-left: 0;
  border-left: 0;
}

.about-stats b {
  color: var(--ink);
  font-size: 29px;
}

.about-photo {
  position: relative;
  height: 540px;
  overflow: hidden;
  border-radius: 8px;
}

.about-photo img {
  position: static;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  box-shadow: none;
}

.about-photo > span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 10px 13px;
  color: #fff;
  background: rgba(7, 28, 40, 0.86);
  border-radius: 5px;
  font-size: 12px;
  font-weight: 800;
}

.news-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.news-card {
  min-height: 300px;
  padding: 24px 0 0;
  background: transparent;
  border: 0;
  border-top: 3px solid var(--ink);
  border-radius: 0;
  box-shadow: none;
}

.news-card:hover {
  border-color: var(--orange);
}

.news-card > span {
  color: var(--orange);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.news-card small {
  display: block;
  margin-top: 9px;
  color: var(--muted);
}

.news-card h3 {
  margin: 28px 0 10px;
  font-size: 25px;
  line-height: 1.16;
}

.news-card p {
  color: var(--muted);
}

.news-card > a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

/* Quote form */
.request-band {
  padding: 90px 0;
  color: #fff;
  background: #0b2e38;
  border-top: 6px solid var(--orange);
}

.request-layout {
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: 72px;
  align-items: start;
}

.request-copy h2 {
  margin: 10px 0 18px;
  font-size: 48px;
  line-height: 1.04;
}

.request-copy > p {
  max-width: 470px;
  color: #b9cbd1;
  font-size: 17px;
}

.request-notes {
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.request-notes span {
  display: flex;
  gap: 12px;
  padding: 13px 0;
  color: #d2dee2;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
}

.request-notes b {
  color: var(--orange-2);
}

.lead-form--band {
  padding: 30px;
  color: var(--ink);
  background: #fff;
  border: 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.lead-form--band .band-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.lead-form label {
  color: inherit;
  font-size: 12px;
  font-weight: 800;
}

.lead-form input,
.lead-form textarea,
.search-field input {
  width: 100%;
  min-height: 58px;
  margin-top: 7px;
  padding: 16px 17px;
  color: var(--ink);
  background: #f7f9f9;
  border: 1px solid #bdcbd0;
  border-radius: 5px;
  font-size: 16px;
  outline: none;
}

.lead-form textarea {
  min-height: 112px;
  resize: vertical;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: #86969d;
}

.lead-form input:focus,
.lead-form textarea:focus,
.search-field input:focus {
  background: #fff;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(244, 119, 33, 0.13);
}

.message-field {
  display: block;
  margin-top: 18px;
}

.form-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 20px;
}

.lead-form .consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.lead-form .consent input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  margin: 1px 0 0;
  padding: 0;
  accent-color: var(--orange);
}

.lead-form .consent span {
  font-size: 12px;
  line-height: 1.35;
}

.form-result {
  min-height: 20px;
  margin-top: 10px;
  color: var(--green);
  font-size: 13px;
}

/* Inner-page heroes */
.page-hero {
  min-height: 570px;
  padding-top: 78px;
  background: var(--navy);
}

.page-hero--short {
  min-height: 490px;
}

.page-hero .section-bg,
.status-hero .section-bg,
.image-band .section-bg {
  filter: saturate(0.82) contrast(1.03);
}

.page-hero::after {
  background: linear-gradient(90deg, rgba(4, 20, 29, 0.96) 0%, rgba(4, 20, 29, 0.75) 48%, rgba(4, 20, 29, 0.12) 84%);
}

.page-hero-inner {
  width: var(--container);
  max-width: none;
  margin: 0 auto;
  padding: 80px 0 68px;
}

.page-hero h1,
.status-hero h1 {
  max-width: 920px;
  margin: 18px 0 20px;
  font-size: 64px;
  line-height: 1.02;
}

.page-hero p {
  max-width: 720px;
  color: #d2dfe4;
  font-size: 18px;
}

.breadcrumbs {
  color: #a9bbc2;
  font-size: 12px;
}

.breadcrumbs a:hover {
  color: var(--orange-2);
}

/* Inner-page content */
.benefit-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.benefit-card {
  min-height: 240px;
  padding: 24px 0 0;
  background: transparent;
  border: 0;
  border-top: 3px solid #c4d0d4;
  border-radius: 0;
  box-shadow: none;
}

.benefit-card:hover {
  border-color: var(--orange);
}

.benefit-card > span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 850;
}

.benefit-card h3 {
  margin: 34px 0 10px;
  font-size: 22px;
  line-height: 1.18;
}

.benefit-card p {
  color: var(--muted);
  font-size: 14px;
}

.content-grid {
  grid-template-columns: minmax(0, 1fr) 370px;
  align-items: start;
  gap: 84px;
}

.prose h2 {
  margin: 10px 0 28px;
  font-size: 42px;
  line-height: 1.08;
}

.prose p,
.prose li {
  color: #4e6570;
}

.number-list li {
  gap: 18px;
  padding: 17px 0;
  border-color: #cbd6da;
}

.number-list li > span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: #fff;
  background: var(--navy-2);
  border-radius: 50%;
  font-size: 11px;
}

.sticky-card {
  top: 104px;
  padding: 28px;
  color: #fff;
  background: var(--navy);
  border: 1px solid #17404d;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.sticky-card h3 {
  margin-top: 0;
  font-size: 24px;
  line-height: 1.18;
}

.sticky-card .check-list li {
  color: #c6d4d9;
}

.sticky-card .micro {
  color: #8fa6af;
}

.image-band {
  min-height: 470px;
}

.image-band::after {
  background: linear-gradient(90deg, rgba(4, 20, 29, 0.9), rgba(4, 20, 29, 0.24));
}

.image-band-card {
  max-width: 580px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.image-band-card h2 {
  margin: 9px 0 14px;
  font-size: 42px;
  line-height: 1.08;
}

.image-band-card p {
  color: #d1dee3;
  font-size: 16px;
}

.related-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.related-grid > a {
  min-height: 260px;
  padding: 24px 0;
  background: transparent;
  border: 0;
  border-top: 3px solid #c7d2d6;
  border-radius: 0;
  box-shadow: none;
}

.related-grid > a:hover {
  border-color: var(--orange);
}

.related-grid h3 {
  font-size: 23px;
}

.related-grid p {
  color: var(--muted);
}

.service-contacts-section,
.managers-section {
  background: var(--mist);
}

.service-managers-grid,
.managers-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-managers-grid .manager-card--photo,
.manager-card--photo {
  grid-template-columns: 104px 1fr;
}

.manager-card {
  padding: 20px;
  background: #fff;
  border: 1px solid #d1dcdf;
  border-radius: 6px;
  box-shadow: none;
}

.manager-card:hover {
  border-color: #9eb4bc;
  box-shadow: 0 12px 26px rgba(7, 28, 40, 0.08);
}

.manager-card img,
.service-managers-grid .manager-card img {
  width: 104px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 5px;
}

.manager-card small {
  color: var(--orange);
  font-size: 10px;
}

.manager-card h3 {
  margin: 6px 0;
  font-size: 19px;
}

.manager-card p {
  color: #536a75;
  font-size: 13px;
}

.manager-card a,
.manager-card span {
  font-size: 13px;
}

.manager-card a {
  color: var(--blue);
}

/* Contacts and document-like grids */
.contact-toolbar {
  align-items: flex-end;
  gap: 28px;
}

.search-field input {
  min-height: 58px;
  margin-top: 0;
  background: #fff;
}

.contacts-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.contact-card {
  min-height: 320px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: none;
}

.contact-card:hover {
  border-color: #a8bac1;
  box-shadow: 0 12px 26px rgba(7, 28, 40, 0.07);
}

.contact-card small {
  color: var(--orange);
  font-weight: 850;
}

.contact-card h3 {
  font-size: 24px;
}

.contact-card p,
.contact-card > span {
  color: var(--muted);
}

.map-link {
  color: var(--blue);
  font-weight: 800;
}

.contact-main {
  padding: 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: none;
}

.facts-grid,
.docs-grid,
.service-list-grid,
.award-grid {
  gap: 20px;
}

.fact-card,
.doc-card,
.service-list-card,
.award-card,
.notice-box,
.split-callout {
  border-radius: 6px;
  box-shadow: none;
}

.service-list-card {
  grid-template-columns: 220px minmax(0, 1fr);
  min-width: 0;
  overflow: hidden;
}

.service-list-card > div:last-child {
  min-width: 0;
}

.service-list-card:last-child {
  grid-column: 1 / -1;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
}

.service-list-card:last-child > div:last-child {
  align-self: center;
}

.service-list-img {
  width: 100%;
  min-width: 0;
  aspect-ratio: auto;
  overflow: hidden;
}

.service-list-img img {
  min-width: 0;
}

.requisite-table,
.notice-box {
  border-color: var(--line);
}

/* Status page */
.status-hero {
  min-height: 660px;
  padding-top: 78px;
  background: var(--navy);
}

.status-hero-grid {
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 76px;
}

.status-login {
  padding: 30px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

/* Footer and modal */
.site-footer {
  padding-top: 68px;
  color: #c3d1d6;
  background: #051822;
}

.footer-grid {
  grid-template-columns: 1.35fr 0.8fr 0.8fr 1fr;
  gap: 48px;
}

.site-footer h3 {
  color: #fff;
  font-size: 13px;
}

.site-footer a:hover,
.text-button:hover {
  color: var(--orange-2);
}

.footer-bottom {
  margin-top: 48px;
  padding: 22px 0;
  border-color: rgba(255, 255, 255, 0.12);
}

.modal-card {
  width: min(620px, calc(100% - 32px));
  max-height: calc(100vh - 32px);
  padding: 34px;
  overflow: auto;
  border-radius: 8px;
}

.modal-card h2 {
  margin: 8px 0 10px;
  font-size: 36px;
  line-height: 1.08;
}

.modal-close {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
}

.toast {
  border-radius: 6px;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 520ms ease, transform 520ms ease;
}

@media (max-width: 1180px) {
  :root {
    --container: min(1120px, calc(100% - 48px));
  }

  .header-phone {
    display: none;
  }

  .hero--redesign .hero-inner {
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 44px;
  }

  .hero--redesign h1 {
    font-size: 62px;
  }

  .network--visual .network-layout {
    grid-template-columns: 0.72fr 1.28fr;
    gap: 44px;
  }

  .network-visual {
    min-height: 520px;
  }

  .advantage-strip {
    grid-template-columns: repeat(4, 1fr);
  }

  .advantage-title {
    grid-column: 1 / -1;
    padding: 0 0 34px;
  }

  .service-managers-grid,
  .managers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  :root {
    --container: min(920px, calc(100% - 40px));
  }

  .site-header,
  .site-header.is-scrolled {
    height: 72px;
  }

  .main-nav,
  .header-contact {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-nav {
    top: 72px;
    background: #061b26;
  }

  .section {
    padding: 84px 0;
  }

  .section-title {
    font-size: 46px;
  }

  .hero--redesign {
    min-height: 710px;
    padding-bottom: 0;
  }

  .hero--redesign .hero-inner {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 28px;
    min-height: 710px;
    padding: 112px 0 58px;
  }

  .hero--redesign .hero-copy {
    max-width: 700px;
  }

  .hero-route {
    display: none;
  }

  .hero--redesign .status-dock {
    display: none;
  }

  .status-panel--actions {
    grid-template-columns: 1fr;
  }

  .home-action {
    min-height: 84px;
    padding: 17px 22px;
  }

  .home-action:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .home-services {
    padding-top: 84px;
  }

  .service-showcase {
    display: block;
    min-height: 0;
    overflow: visible;
    background: transparent;
    box-shadow: none;
  }

  .service-index {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    background: transparent;
  }

  .service-index-item,
  .service-index-item.is-active,
  .service-index-item:hover {
    grid-template-columns: 84px minmax(0, 1fr) 20px;
    min-height: 100px;
    padding: 8px 12px 8px 8px;
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 6px;
  }

  .service-index-item:last-child {
    grid-column: 1 / -1;
  }

  .service-index-item > span {
    display: none;
  }

  .service-index-item > img {
    display: block;
    grid-column: 1;
    grid-row: 1;
    width: 84px;
    height: 82px;
    object-fit: cover;
    border-radius: 4px;
  }

  .service-index-item > div {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
  }

  .service-index-item > b,
  .service-index-item:hover > b,
  .service-index-item.is-active > b {
    grid-column: 3;
    grid-row: 1;
    color: var(--orange);
  }

  .service-index-item small,
  .service-index-item:hover small,
  .service-index-item.is-active small {
    color: var(--muted);
  }

  .service-stage {
    display: none;
  }

  .service-index-item strong {
    font-size: 17px;
  }

  .network--visual .network-layout,
  .informer-section .informer-wrap,
  .about-home .about-layout,
  .request-layout,
  .status-hero-grid,
  .company-intro,
  .project-case,
  .requisite-layout {
    grid-template-columns: 1fr;
  }

  .network-visual {
    min-height: 540px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .process-step {
    min-height: 0;
    margin: 0 !important;
    padding: 24px 0 26px 48px;
    border-top: 0;
    border-left: 2px solid #ccd7da;
  }

  .process-step::before {
    top: 28px;
    left: -7px;
  }

  .process-step h3 {
    margin: 8px 0 6px;
  }

  .about-photo {
    height: 480px;
  }

  .about-home .about-layout {
    gap: 48px;
  }

  .service-list-grid {
    grid-template-columns: 1fr;
  }

  .request-layout {
    gap: 42px;
  }

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

  .content-grid {
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 44px;
  }

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

  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }

  .footer-contacts {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  :root {
    --container: calc(100% - 32px);
  }

  body {
    font-size: 15px;
  }

  .logo {
    width: 174px;
  }

  .section {
    padding: 72px 0;
  }

  .section--compact {
    padding: 60px 0;
  }

  .section-head {
    display: block;
    margin-bottom: 34px;
  }

  .section-title {
    font-size: 36px;
    line-height: 1.08;
  }

  .section-lead {
    margin-top: 18px;
    font-size: 15px;
  }

  .hero--redesign {
    min-height: 720px;
    padding-bottom: 0;
  }

  .hero--redesign .section-bg {
    object-position: 67% center;
  }

  .hero--redesign::after {
    background: linear-gradient(90deg, rgba(4, 20, 30, 0.96), rgba(4, 20, 30, 0.52));
  }

  .hero--redesign .hero-inner {
    min-height: 720px;
    padding: 108px 0 56px;
  }

  .hero--redesign h1 {
    max-width: 540px;
    margin: 18px 0 20px;
    font-size: 46px;
    line-height: 1;
  }

  .hero--redesign .hero-copy > p {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 24px;
    padding-top: 18px;
  }

  .hero-proof span:last-child {
    grid-column: auto;
  }

  .hero-proof span {
    display: block;
    font-size: 10px;
    line-height: 1.25;
  }

  .hero-proof b {
    display: block;
    margin-bottom: 2px;
    font-size: 20px;
  }

  .home-services {
    padding-top: 72px;
  }

  .service-showcase {
    display: block;
    min-height: 0;
    overflow: visible;
    background: transparent;
    box-shadow: none;
  }

  .service-index {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    background: transparent;
  }

  .service-index-item:last-child {
    grid-column: auto;
  }

  .service-index-item,
  .service-index-item.is-active,
  .service-index-item:hover {
    grid-template-columns: 88px minmax(0, 1fr) 20px;
    min-height: 104px;
    padding: 8px 12px 8px 8px;
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 6px;
  }

  .service-index-item > span {
    display: none;
  }

  .service-index-item > img {
    display: block;
    grid-column: 1;
    grid-row: 1;
    width: 88px;
    height: 86px;
    object-fit: cover;
    border-radius: 4px;
  }

  .service-index-item > div {
    grid-column: 2;
    grid-row: 1;
  }

  .service-index-item > b,
  .service-index-item:hover > b,
  .service-index-item.is-active > b {
    grid-column: 3;
    grid-row: 1;
    color: var(--orange);
  }

  .service-index-item small,
  .service-index-item:hover small,
  .service-index-item.is-active small {
    color: var(--muted);
  }

  .service-index-item strong {
    font-size: 17px;
  }

  .service-stage {
    display: none;
  }

  .section-action {
    justify-content: stretch;
  }

  .section-action .btn {
    width: 100%;
  }

  .network--visual .network-layout {
    gap: 42px;
  }

  .network-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .network-facts span {
    display: block;
    font-size: 10px;
    line-height: 1.35;
  }

  .network-facts b {
    font-size: 24px;
  }

  .network-visual {
    min-height: 460px;
  }

  .network-visual > img {
    object-position: 62% center;
  }

  .network-visual-caption {
    right: 20px;
    bottom: 20px;
    left: 20px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .network-reach {
    padding-top: 16px;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.24);
    border-left: 0;
  }

  .advantage-strip {
    grid-template-columns: 1fr 1fr;
    row-gap: 34px;
  }

  .advantage-title {
    grid-column: 1 / -1;
  }

  .advantage-title h2 {
    font-size: 30px;
  }

  .advantage {
    min-height: 170px;
    padding: 4px 16px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .advantage:nth-child(even) {
    padding-left: 16px;
    border-left: 1px solid rgba(255, 255, 255, 0.16);
  }

  .advantage h3 {
    margin-top: 22px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .process-step {
    min-height: 0;
    margin: 0 !important;
    padding: 24px 0 26px 48px;
    border-top: 0;
    border-left: 2px solid #ccd7da;
  }

  .process-step::before {
    top: 28px;
    left: -7px;
  }

  .process-step h3 {
    margin: 8px 0 6px;
  }

  .tracking-console {
    padding: 20px;
    overflow: hidden;
  }

  .tracking-route strong {
    font-size: 22px;
  }

  .tracking-progress {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 12px 0;
  }

  .tracking-progress span {
    display: grid;
    grid-template-columns: 31px 1fr;
    gap: 0 12px;
    padding: 9px 0;
  }

  .tracking-progress span:not(:last-child)::after {
    top: 38px;
    bottom: -7px;
    left: 14px;
    width: 1px;
    height: auto;
  }

  .tracking-progress i {
    grid-row: 1 / 3;
  }

  .tracking-progress b,
  .tracking-progress small {
    margin-top: 0;
  }

  .tracking-console-foot {
    gap: 26px;
  }

  .informer-copy h2 {
    font-size: 34px;
  }

  .about-home .about-layout {
    gap: 42px;
  }

  .about-stats {
    grid-template-columns: 1fr 1fr;
    gap: 20px 0;
  }

  .about-stats span {
    padding: 0 16px;
  }

  .about-stats span:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }

  .service-list-card {
    grid-template-columns: 1fr;
  }

  .service-list-card:last-child {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .service-list-img {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .about-photo {
    height: 360px;
  }

  .news-grid,
  .related-grid,
  .benefit-grid,
  .service-managers-grid,
  .managers-grid,
  .contacts-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .news-card {
    min-height: 0;
    padding-bottom: 18px;
  }

  .request-band {
    padding: 72px 0;
  }

  .request-copy h2 {
    font-size: 38px;
  }

  .lead-form--band {
    padding: 20px;
  }

  .lead-form--band .band-fields,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-submit-row {
    align-items: stretch;
    flex-direction: column;
  }

  .form-submit-row .btn {
    width: 100%;
  }

  .page-hero {
    min-height: 500px;
    padding-top: 72px;
  }

  .page-hero--short {
    min-height: 440px;
  }

  .page-hero-inner {
    padding: 70px 0 58px;
  }

  .page-hero h1,
  .status-hero h1 {
    max-width: 100%;
    font-size: 42px;
    line-height: 1.04;
    overflow-wrap: break-word;
  }

  .page-hero p {
    font-size: 16px;
  }

  .content-grid {
    grid-template-columns: 1fr;
  }

  .prose h2,
  .image-band-card h2 {
    font-size: 34px;
  }

  .sticky-card {
    position: static;
  }

  .image-band {
    min-height: 460px;
  }

  .service-managers-grid .manager-card--photo,
  .manager-card--photo {
    grid-template-columns: 92px 1fr;
  }

  .manager-card img,
  .service-managers-grid .manager-card img {
    width: 92px;
  }

  .contact-toolbar {
    display: block;
  }

  .search-field {
    margin-top: 18px;
  }

  .contact-card {
    min-height: 0;
  }

  .status-hero {
    min-height: 720px;
  }

  .footer-contacts {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .modal-card {
    padding: 26px 20px;
  }

  .modal-card h2 {
    padding-right: 40px;
    font-size: 30px;
  }
}

@media (max-width: 430px) {
  :root {
    --container: calc(100% - 24px);
  }

  .hero--redesign h1 {
    font-size: 40px;
  }

  .hero-proof {
    gap: 8px;
  }

  .hero-proof b {
    font-size: 18px;
  }

  .service-index-item,
  .service-index-item.is-active,
  .service-index-item:hover {
    grid-template-columns: 78px minmax(0, 1fr) 18px;
  }

  .service-index-item > img {
    width: 78px;
    height: 82px;
  }

  .service-index-item strong {
    font-size: 15px;
  }

  .network-visual {
    min-height: 440px;
  }

  .network-visual-head {
    top: 14px;
    right: 14px;
    left: 14px;
  }

  .network-visual-head > span:first-child,
  .network-visual-status {
    padding: 8px 9px;
  }

  .network-visual-caption {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }

  .network-primary-route p {
    gap: 7px;
    font-size: 15px;
  }

  .network-reach p {
    font-size: 11px;
  }

  .page-hero h1,
  .status-hero h1 {
    font-size: 36px;
  }

  .manager-card--photo,
  .service-managers-grid .manager-card--photo {
    grid-template-columns: 78px 1fr;
    gap: 13px;
  }

  .manager-card img,
  .service-managers-grid .manager-card img {
    width: 78px;
  }
}

@media (max-width: 360px) {
  .hero--redesign h1 {
    font-size: 38px;
  }

  .section-title {
    font-size: 32px;
    overflow-wrap: anywhere;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
