:root {
  --ink: #071525;
  --ink-2: #0b2036;
  --blue: #2f67cf;
  --blue-soft: #4f61a2;
  --orange: #ff6422;
  --white: #f7f9fc;
  --muted: #aebaca;
  --line: rgba(255, 255, 255, 0.16);
  --header-height: 92px;
  --container: 1320px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  color: var(--white);
  font-family: Inter, Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--ink);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

button,
input,
textarea {
  font: inherit;
}

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

a {
  color: inherit;
}

button {
  color: inherit;
}

::selection {
  color: white;
  background: var(--orange);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: white;
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 128px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  padding: 12px 18px 0;
  pointer-events: none;
}

.header-shell {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(390px, 1fr);
  align-items: center;
  width: min(100%, 1540px);
  height: 72px;
  margin: 0 auto;
  padding: 0 10px 0 20px;
  color: var(--ink);
  background: rgba(249, 251, 254, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 14px;
  box-shadow: 0 14px 44px rgba(4, 15, 27, 0.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  pointer-events: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 230px;
  text-decoration: none;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 34px;
}

.desktop-nav a {
  position: relative;
  color: #324157;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--ease);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.phone-link {
  display: grid;
  color: var(--ink);
  line-height: 1.15;
  text-align: right;
  text-decoration: none;
}

.phone-link strong {
  font-size: 16px;
  letter-spacing: -.01em;
}

.phone-label {
  margin-bottom: 5px;
  color: #79869a;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 750;
  letter-spacing: .01em;
  text-decoration: none;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}

.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transition: transform .25s var(--ease);
}

.button:hover svg {
  transform: translateX(3px);
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0);
}

.button--accent {
  color: white;
  background: var(--orange);
  box-shadow: 0 10px 26px rgba(255, 100, 34, .2);
}

.button--accent:hover {
  background: #ff763e;
  box-shadow: 0 14px 30px rgba(255, 100, 34, .3);
}

.button--ghost {
  color: white;
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.35);
  backdrop-filter: blur(10px);
}

.button--ghost:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.65);
}

.button--large {
  min-height: 58px;
  padding: 0 28px;
  font-size: 15px;
}

.button--full {
  width: 100%;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.section-nav {
  position: fixed;
  z-index: 60;
  top: 50%;
  right: 24px;
  display: grid;
  gap: 12px;
  transform: translateY(-50%);
}

.section-nav__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 34px;
  height: 18px;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
}

.section-nav__item::after {
  content: "";
  width: 14px;
  height: 2px;
  background: rgba(255,255,255,.46);
  transition: width .25s var(--ease), background .25s var(--ease);
}

.section-nav__item:hover::after,
.section-nav__item.is-active::after {
  width: 30px;
  background: var(--orange);
}

.panel {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
}

.panel-media,
.panel-shade,
.hero-grid {
  position: absolute;
  inset: 0;
}

.panel-media {
  z-index: -3;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.panel-shade {
  z-index: -2;
}

.hero .panel-media {
  background-image: url("assets/hero.jpg");
  background-position: center;
}

.hero .panel-shade {
  background:
    linear-gradient(90deg, rgba(5, 17, 30, .93) 0%, rgba(5, 17, 30, .8) 39%, rgba(5, 17, 30, .18) 75%, rgba(5, 17, 30, .28) 100%),
    linear-gradient(180deg, rgba(5,17,30,.3), rgba(5,17,30,.68));
}

.hero-grid {
  z-index: -1;
  opacity: .08;
  background-image:
    linear-gradient(rgba(255,255,255,.6) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.6) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, black, transparent 62%);
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100svh;
  padding-top: calc(var(--header-height) + 54px);
  padding-bottom: 34px;
}

.hero-copy {
  width: min(780px, 68%);
  margin: auto 0;
  padding-top: 36px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 26px;
  color: #d5dfeb;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 2px;
  background: var(--orange);
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 560;
  letter-spacing: -.045em;
  line-height: 1.01;
}

h1 {
  max-width: 800px;
  font-size: clamp(52px, 6vw, 96px);
}

h1 em,
h2 em {
  color: #9fbbea;
  font-style: normal;
  font-weight: 380;
}

.hero-lead {
  max-width: 660px;
  margin: 30px 0 0;
  color: #c5cfdb;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.55;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.hero-process {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #bdc8d5;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-process i {
  width: 22px;
  height: 1px;
  background: rgba(255,255,255,.24);
}

.scroll-cue {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #bdc8d5;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

.scroll-cue svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--orange);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  animation: nudge 2s ease-in-out infinite;
}

@keyframes nudge {
  0%, 100% { transform: translateY(-2px); }
  50% { transform: translateY(4px); }
}

.service-panel .panel-shade {
  background: linear-gradient(90deg, rgba(4, 15, 26, .92) 0%, rgba(4, 15, 26, .76) 42%, rgba(4, 15, 26, .18) 72%, rgba(4, 15, 26, .25) 100%);
}

.service-panel--cellular .panel-media {
  background-image: url("assets/cellular.jpg");
  background-position: center;
}

.service-panel--wifi .panel-media {
  background-image: url("assets/wifi.jpg");
  background-position: center;
}

.service-panel--cctv .panel-media {
  background-image: url("assets/cctv.jpg");
  background-position: center;
}

.service-panel--office .panel-media {
  background-image: url("assets/office.jpg");
  background-position: center;
}

.service-panel--wifi .panel-shade,
.service-panel--office .panel-shade {
  background: linear-gradient(270deg, rgba(4, 15, 26, .93) 0%, rgba(4, 15, 26, .8) 42%, rgba(4, 15, 26, .14) 74%, rgba(4, 15, 26, .22) 100%);
}

.service-layout {
  display: flex;
  align-items: center;
  min-height: 100svh;
  padding-top: calc(var(--header-height) + 36px);
  padding-bottom: 54px;
}

.service-layout--right {
  justify-content: flex-end;
}

.service-copy {
  width: min(650px, 53%);
}

.service-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
  color: #b8c5d4;
  font-size: 11px;
  font-weight: 760;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.service-meta::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--orange);
}

.service-copy h2,
.about-copy h2 {
  font-size: clamp(42px, 4.7vw, 74px);
}

.service-copy > p {
  max-width: 610px;
  margin: 27px 0 0;
  color: #c4ceda;
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.6;
}

.service-list {
  display: grid;
  gap: 11px;
  margin: 26px 0 30px;
  padding: 0;
  list-style: none;
}

.service-list li {
  position: relative;
  padding-left: 22px;
  color: #e1e7ee;
  font-size: 14px;
}

.service-list li::before {
  content: "";
  position: absolute;
  top: .65em;
  left: 0;
  width: 6px;
  height: 6px;
  border: 1px solid var(--orange);
  transform: rotate(45deg);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 0 0 7px;
  color: white;
  background: none;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.45);
  font-size: 14px;
  font-weight: 760;
  cursor: pointer;
  transition: color .25s var(--ease), border-color .25s var(--ease);
}

.text-link span {
  color: var(--orange);
  font-size: 20px;
  transition: transform .25s var(--ease);
}

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

.text-link:hover span {
  transform: translate(3px, -3px);
}

.about-panel {
  display: flex;
  flex-direction: column;
  color: var(--ink);
  background: #eef2f7;
}

.about-panel::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .38;
  background-image:
    linear-gradient(rgba(7,21,37,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7,21,37,.08) 1px, transparent 1px);
  background-size: 68px 68px;
}

.about-glow {
  position: absolute;
  z-index: -1;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(10px);
}

.about-glow--one {
  top: 3%;
  left: -10%;
  background: radial-gradient(circle, rgba(47,103,207,.2), transparent 68%);
}

.about-glow--two {
  right: -15%;
  bottom: -15%;
  background: radial-gradient(circle, rgba(255,100,34,.16), transparent 68%);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .78fr);
  gap: clamp(50px, 7vw, 120px);
  align-items: center;
  flex: 1;
  padding-top: calc(var(--header-height) + 48px);
  padding-bottom: 50px;
}

.service-meta--dark {
  color: #66768b;
}

.about-copy h2 em {
  color: var(--blue);
}

.about-copy > p {
  max-width: 670px;
  margin: 30px 0 0;
  color: #506076;
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.65;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 42px;
}

.principles > div {
  min-height: 132px;
  padding: 18px;
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(7,21,37,.1);
  border-radius: 10px;
}

.principles strong {
  display: block;
  margin-bottom: 24px;
  color: var(--orange);
  font-size: 11px;
  letter-spacing: .1em;
}

.principles span {
  color: #34445a;
  font-size: 13px;
  font-weight: 660;
  line-height: 1.35;
}

.contact-card {
  overflow: hidden;
  color: var(--ink);
  background: white;
  border: 1px solid rgba(7,21,37,.08);
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(17, 40, 68, .13);
}

.contact-card__top {
  padding: 30px 34px 22px;
  border-bottom: 1px solid #e4e9ef;
}

.eyebrow--dark {
  margin-bottom: 15px;
  color: #65758a;
}

.contact-card h3 {
  font-size: clamp(34px, 3vw, 48px);
}

.contact-card__top > p:last-child,
.dialog-head > p:last-child {
  margin: 16px 0 0;
  color: #647387;
  font-size: 14px;
  line-height: 1.5;
}

.contact-form,
.dialog-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 24px 34px 20px;
}

.contact-form label,
.dialog-form label {
  display: grid;
  gap: 7px;
}

.contact-form .form-wide,
.contact-form .button,
.contact-form .form-note,
.contact-form .form-status,
.dialog-form .form-wide,
.dialog-form label,
.dialog-form .button,
.dialog-form .form-note,
.dialog-form .form-status {
  grid-column: 1 / -1;
}

.contact-form label > span,
.dialog-form label > span {
  color: #718095;
  font-size: 10px;
  font-weight: 780;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.contact-form input:not([type="checkbox"]),
.contact-form textarea,
.dialog-form input:not([type="checkbox"]),
.dialog-form textarea {
  width: 100%;
  padding: 12px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid #cfd7e2;
  border-radius: 0;
  outline: none;
  transition: border-color .2s ease;
  resize: none;
}

.contact-form input:not([type="checkbox"]):focus,
.contact-form textarea:focus,
.dialog-form input:not([type="checkbox"]):focus,
.dialog-form textarea:focus {
  border-color: var(--blue);
}

.contact-form input:not([type="checkbox"])::placeholder,
.contact-form textarea::placeholder,
.dialog-form input:not([type="checkbox"])::placeholder,
.dialog-form textarea::placeholder {
  color: #a9b4c1;
}

.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.contact-form .consent,
.dialog-form .consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.contact-form .consent input,
.dialog-form .consent input {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  margin: 1px 0 0;
  accent-color: var(--orange);
}

.contact-form .consent > span,
.dialog-form .consent > span {
  color: #65758a;
  font-size: 11px;
  font-weight: 560;
  letter-spacing: 0;
  line-height: 1.4;
  text-transform: none;
}

.contact-form .button {
  grid-column: 1 / -1;
  margin-top: 3px;
}

.form-note,
.form-status {
  grid-column: 1 / -1;
  margin: 0;
  color: #8a96a5;
  font-size: 10px;
  line-height: 1.4;
}

.form-status:not(:empty) {
  padding: 8px 10px;
  border-radius: 6px;
}

.form-status.is-success {
  color: #315b39;
  background: #eef8ef;
}

.form-status.is-error {
  color: #8a2c23;
  background: #fff0ed;
}

.button:disabled {
  cursor: wait;
  opacity: .72;
  transform: none;
}

.contact-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 26px;
  padding: 20px 34px 26px;
  background: #f3f6f9;
}

.contact-details a {
  color: var(--ink);
  font-weight: 740;
  text-decoration: none;
}

.contact-details address,
.contact-details span {
  color: #647387;
  font-size: 11px;
  font-style: normal;
  line-height: 1.45;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  width: min(calc(100% - 128px), var(--container));
  margin: 0 auto;
  padding: 18px 0 22px;
  color: #718095;
  border-top: 1px solid rgba(7,21,37,.12);
  font-size: 11px;
}

.request-dialog {
  width: min(calc(100% - 32px), 560px);
  max-height: calc(100svh - 32px);
  margin: auto;
  padding: 0;
  color: var(--ink);
  background: #f8fafc;
  border: 0;
  border-radius: 18px;
  box-shadow: 0 36px 100px rgba(0,0,0,.36);
}

.request-dialog::backdrop {
  background: rgba(4, 13, 24, .77);
  backdrop-filter: blur(7px);
}

.request-dialog[open] {
  animation: dialogIn .35s var(--ease) both;
}

@keyframes dialogIn {
  from { opacity: 0; transform: translateY(24px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.dialog-close {
  position: sticky;
  z-index: 2;
  top: 17px;
  float: right;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  color: #536278;
  background: white;
  border: 1px solid #e1e7ed;
  border-radius: 50%;
  cursor: pointer;
  margin: 17px 17px -59px 0;
}

.dialog-close svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.5;
}

.dialog-head {
  padding: 40px 42px 26px;
  background: white;
  border-bottom: 1px solid #e2e8ef;
}

.dialog-head h2 {
  padding-right: 48px;
  font-size: clamp(36px, 5vw, 54px);
}

.dialog-form {
  padding: 28px 42px 36px;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.js .reveal--delay {
  transition-delay: .13s;
}

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

:focus-visible {
  outline: 3px solid rgba(255,100,34,.65);
  outline-offset: 4px;
}

@media (min-width: 1101px) and (min-height: 700px) and (pointer: fine) {
  html {
    scroll-snap-type: y proximity;
  }

  .panel {
    scroll-snap-align: start;
  }
}

@media (max-width: 1260px) {
  :root {
    --header-height: 84px;
  }

  .container,
  .site-footer {
    width: min(calc(100% - 80px), var(--container));
  }

  .header-shell {
    grid-template-columns: minmax(190px, 1fr) auto minmax(340px, 1fr);
    height: 66px;
  }

  .brand {
    width: 200px;
  }

  .desktop-nav {
    gap: 22px;
    padding: 0 20px;
  }

  .header-actions {
    gap: 12px;
  }

  .header-cta {
    padding: 0 18px;
  }

  .phone-label {
    display: none;
  }

  .service-copy {
    width: min(610px, 58%);
  }

  .about-layout {
    grid-template-columns: minmax(0, 1fr) minmax(400px, .85fr);
    gap: 50px;
  }
}

@media (max-width: 960px) {
  :root {
    --header-height: 78px;
  }

  .site-header {
    padding: 10px 10px 0;
  }

  .header-shell {
    display: flex;
    height: 62px;
    padding: 0 8px 0 14px;
  }

  .brand {
    width: 180px;
  }

  .desktop-nav,
  .phone-link,
  .header-cta {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .menu-toggle {
    display: grid;
    place-content: center;
    gap: 6px;
    width: 46px;
    height: 46px;
    padding: 0;
    background: var(--ink);
    border: 0;
    border-radius: 8px;
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 20px;
    height: 1px;
    background: white;
    transition: transform .25s var(--ease);
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .mobile-menu {
    position: absolute;
    top: 82px;
    right: 10px;
    left: 10px;
    display: grid;
    gap: 0;
    padding: 8px;
    color: var(--ink);
    background: rgba(249,251,254,.98);
    border: 1px solid rgba(255,255,255,.75);
    border-radius: 12px;
    box-shadow: 0 18px 50px rgba(5,16,29,.28);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
    pointer-events: auto;
  }

  .mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mobile-menu a {
    padding: 15px 12px;
    border-bottom: 1px solid #e1e6ec;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
  }

  .mobile-menu .button {
    margin-top: 8px;
  }

  .section-nav {
    display: none;
  }

  .container,
  .site-footer {
    width: min(calc(100% - 48px), var(--container));
  }

  .hero-copy {
    width: 82%;
  }

  .service-copy {
    width: min(590px, 68%);
  }

  .about-panel {
    min-height: auto;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 44px;
    padding-bottom: 46px;
  }

  .about-copy {
    padding-top: 16px;
  }

  .contact-card {
    width: min(100%, 650px);
  }
}

@media (max-width: 700px) {
  :root {
    --header-height: 72px;
  }

  .container,
  .site-footer {
    width: min(calc(100% - 32px), var(--container));
  }

  .site-header {
    padding: 8px 8px 0;
  }

  .header-shell {
    height: 58px;
    border-radius: 10px;
  }

  .brand {
    width: 158px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .mobile-menu {
    top: 74px;
    right: 8px;
    left: 8px;
  }

  .panel {
    min-height: 100svh;
  }

  .hero .panel-media {
    background-position: 61% center;
  }

  .hero .panel-shade {
    background: linear-gradient(180deg, rgba(4,15,27,.56), rgba(4,15,27,.9) 55%, rgba(4,15,27,.98));
  }

  .hero-grid {
    background-size: 46px 46px;
  }

  .hero-content {
    justify-content: flex-end;
    padding-top: calc(var(--header-height) + 36px);
    padding-bottom: 24px;
  }

  .hero-copy {
    width: 100%;
    margin: auto 0 38px;
    padding-top: 84px;
  }

  .eyebrow {
    margin-bottom: 18px;
    font-size: 10px;
  }

  h1 {
    font-size: clamp(43px, 13vw, 64px);
  }

  .hero-lead {
    margin-top: 22px;
    font-size: 16px;
  }

  .hero-buttons {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .button--large {
    min-height: 54px;
  }

  .hero-bottom {
    align-items: center;
    padding-top: 18px;
  }

  .hero-process {
    gap: 8px;
    font-size: 8px;
  }

  .hero-process i {
    width: 8px;
  }

  .scroll-cue span {
    display: none;
  }

  .service-panel {
    min-height: 900px;
  }

  .service-panel .panel-media {
    background-position: 58% center;
  }

  .service-panel--wifi .panel-media,
  .service-panel--office .panel-media {
    background-position: 38% center;
  }

  .service-panel .panel-shade,
  .service-panel--wifi .panel-shade,
  .service-panel--office .panel-shade {
    background: linear-gradient(180deg, rgba(4,15,26,.28), rgba(4,15,26,.7) 34%, rgba(4,15,26,.97) 66%, rgba(4,15,26,.99));
  }

  .service-layout,
  .service-layout--right {
    align-items: flex-end;
    justify-content: flex-start;
    min-height: 900px;
    padding-top: calc(var(--header-height) + 50px);
    padding-bottom: 62px;
  }

  .service-copy {
    width: 100%;
  }

  .service-meta {
    margin-bottom: 20px;
    font-size: 9px;
  }

  .service-copy h2,
  .about-copy h2 {
    font-size: clamp(38px, 11vw, 56px);
  }

  .service-copy > p {
    margin-top: 20px;
    font-size: 15px;
  }

  .service-list {
    margin: 22px 0 26px;
  }

  .service-list li {
    font-size: 13px;
  }

  .about-layout {
    gap: 34px;
    padding-top: calc(var(--header-height) + 46px);
  }

  .about-copy > p {
    margin-top: 22px;
    font-size: 15px;
  }

  .principles {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .principles > div {
    display: grid;
    grid-template-columns: 48px 1fr;
    align-items: center;
    min-height: 80px;
  }

  .principles strong {
    margin: 0;
  }

  .contact-card__top,
  .contact-form,
  .contact-details {
    padding-right: 20px;
    padding-left: 20px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-form label,
  .contact-form .button,
  .contact-form .form-note,
  .contact-form .form-status {
    grid-column: 1;
  }

  .contact-details {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .site-footer {
    display: grid;
    gap: 6px;
  }

  .dialog-head,
  .dialog-form {
    padding-right: 24px;
    padding-left: 24px;
  }
}

@media (max-width: 380px) {
  .brand {
    width: 142px;
  }

  h1 {
    font-size: 41px;
  }

  .hero-process span:nth-of-type(2),
  .hero-process span:nth-of-type(3),
  .hero-process i:nth-of-type(2),
  .hero-process i:nth-of-type(3) {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
