:root {
  color-scheme: dark;
  --bg: #05090c;
  --bg-2: #081016;
  --panel: rgba(15, 22, 29, 0.86);
  --panel-solid: #111920;
  --panel-2: #0c141b;
  --text: #f7fbff;
  --muted: #a8b0b8;
  --soft: #d5dbe1;
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(255, 255, 255, 0.18);
  --blue: #1f83ff;
  --blue-2: #54a8ff;
  --green: #56df45;
  --green-2: #7df36a;
  --shadow: 0 22px 80px rgba(0, 0, 0, 0.45);
  --radius: 8px;
}

[data-theme="light"] {
  color-scheme: light;
  --bg: #f4f8fb;
  --bg-2: #e9f0f6;
  --panel: rgba(255, 255, 255, 0.9);
  --panel-solid: #ffffff;
  --panel-2: #f8fbfd;
  --text: #071018;
  --muted: #536171;
  --soft: #1e2a35;
  --line: rgba(7, 16, 24, 0.12);
  --line-strong: rgba(7, 16, 24, 0.18);
  --blue: #086fd6;
  --blue-2: #075eb5;
  --green: #248b32;
  --green-2: #1b7628;
  --shadow: 0 20px 60px rgba(30, 51, 70, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 20% 0%, rgba(31, 131, 255, 0.13), transparent 26rem),
    radial-gradient(circle at 100% 35%, rgba(86, 223, 69, 0.08), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.45;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 100% 3px;
  opacity: 0.28;
  z-index: 100;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(250px, 290px) minmax(0, 1fr) 74px;
  align-items: center;
  gap: 16px;
  min-height: 88px;
  padding: 10px clamp(24px, 4vw, 40px);
  background: rgba(2, 6, 9, 0.93);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(18px);
}

[data-theme="light"] .site-header {
  background: rgba(255, 255, 255, 0.92);
}

.logo {
  display: inline-flex;
  align-items: center;
  width: min(290px, 25vw);
  min-width: 240px;
  height: 68px;
  overflow: hidden;
}

.logo img {
  width: 100%;
  height: auto;
  max-height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.36));
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.65vw, 26px);
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 600;
}

.site-nav a {
  opacity: 0.94;
  white-space: nowrap;
}

.site-nav a:hover {
  color: var(--blue-2);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-size: 1rem;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 10px 26px rgba(31, 131, 255, 0.22);
}

.button-primary:hover {
  background: #0e6fe0;
  transform: translateY(-1px);
}

.button-outline {
  color: #fff;
  background: rgba(0, 0, 0, 0.24);
  border-color: rgba(255, 255, 255, 0.62);
}

[data-theme="light"] .button-outline {
  color: var(--text);
  background: rgba(255, 255, 255, 0.42);
  border-color: rgba(7, 16, 24, 0.26);
}

.button svg {
  width: 22px;
  height: 22px;
  margin-right: 12px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.25;
}

.theme-toggle,
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 38px;
  padding: 0;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  cursor: pointer;
}

.theme-toggle svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.theme-toggle span {
  width: 9px;
  height: 9px;
  margin-left: 10px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 6px;
}

.nav-toggle svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2;
}

.hero {
  position: relative;
  min-height: 392px;
  overflow: hidden;
  background: #05090c;
}

.hero picture {
  position: absolute;
  inset: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center 48%;
  filter: saturate(1.05) contrast(1.05);
}

.digital-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.96;
}

.signal-arc,
.signal-line {
  stroke: rgba(50, 143, 255, 0.52);
  stroke-width: 1.8;
}

.signal-line.thin {
  stroke-width: 1.2;
  opacity: 0.68;
}

.node {
  fill: #d7ecff;
  stroke: #3795ff;
  stroke-width: 2;
  opacity: 0.96;
}

.n1,
.n4 {
  animation: pulseNode 2.8s ease-in-out infinite;
}

.n2,
.n5 {
  animation: pulseNode 3.3s ease-in-out infinite 0.5s;
}

.n3,
.n6 {
  animation: pulseNode 2.5s ease-in-out infinite 0.9s;
}

@keyframes pulseNode {
  0%, 100% {
    opacity: 0.52;
    transform: scale(0.92);
  }
  50% {
    opacity: 1;
    transform: scale(1.28);
  }
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.54) 28%, rgba(0, 0, 0, 0.1) 64%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.42));
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(740px, calc(100% - 48px));
  padding: 60px 0 46px;
  margin-left: clamp(28px, 6.8vw, 106px);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 600px;
  margin-bottom: 10px;
  color: #fff;
  font-size: clamp(3rem, 4.75vw, 4.35rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-content p {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.dashboard-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 372px;
  gap: 20px;
  padding: 30px clamp(24px, 5.7vw, 88px) 24px;
  background:
    linear-gradient(90deg, rgba(18, 34, 44, 0.78), rgba(3, 7, 10, 0.68) 44%, rgba(18, 31, 40, 0.82)),
    var(--bg);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.main-column,
.side-column {
  min-width: 0;
}

.section-title h2 {
  margin-bottom: 16px;
  font-size: clamp(1.25rem, 2.4vw, 1.62rem);
  line-height: 1.2;
  color: var(--text);
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 13px;
}

.solution-card {
  position: relative;
  min-height: 314px;
  overflow: hidden;
  padding: 164px 12px 14px;
  background: linear-gradient(180deg, rgba(19, 28, 35, 0.94), rgba(11, 17, 22, 0.96));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.solution-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 32%, rgba(5, 9, 12, 0.72) 54%, rgba(5, 9, 12, 0.95));
  pointer-events: none;
}

.solution-card img {
  position: absolute;
  top: 0;
  left: 0;
  height: 144px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  filter: saturate(0.98) brightness(0.78);
}

.solution-icon {
  position: absolute;
  z-index: 1;
  top: 78px;
  left: 12px;
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  background: rgba(8, 12, 16, 0.84);
  border: 2px solid currentColor;
  border-radius: 50%;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.34);
}

.solution-icon.green {
  color: var(--green);
}

.solution-icon.blue {
  color: var(--blue);
}

.solution-icon svg {
  width: 35px;
  height: 35px;
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.solution-card h3,
.solution-card p,
.solution-card a {
  position: relative;
  z-index: 1;
}

.solution-card h3 {
  margin-bottom: 8px;
  color: #fff;
  font-size: 1.24rem;
  line-height: 1.15;
}

.solution-card p {
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.98rem;
}

.solution-card a,
.status-card a,
.office-card a {
  color: var(--blue-2);
  font-size: 0.98rem;
  font-weight: 600;
}

.solution-card:nth-child(1) a,
.solution-card:nth-child(3) a {
  color: var(--green);
}

.side-column {
  display: grid;
  align-content: start;
  gap: 16px;
  padding-top: 18px;
}

.status-card,
.office-card,
.availability-card {
  overflow: hidden;
  background: linear-gradient(180deg, rgba(18, 26, 33, 0.92), rgba(10, 16, 21, 0.92));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.status-card {
  padding: 17px 14px 14px;
}

.status-card h2,
.office-card h2,
.availability-card h2 {
  margin-bottom: 6px;
  color: #fff;
  font-size: 1.12rem;
  line-height: 1.2;
}

.operational {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 11px;
  color: rgba(125, 243, 106, 0.75);
  font-size: 0.92rem;
}

.operational span {
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 50%;
}

.status-card ul {
  padding: 0;
  margin: 0 0 12px;
  list-style: none;
  border-top: 1px solid var(--line);
}

.status-card li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
  color: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  font-size: 0.88rem;
}

.status-card li span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.status-card svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.status-card strong {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 500;
}

.office-card {
  display: grid;
  grid-template-columns: 1fr 136px;
  min-height: 156px;
}

.office-card > div {
  padding: 16px 14px 14px;
}

.office-card p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
}

.pin {
  width: 15px;
  height: 15px;
  border: 3px solid var(--green);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.office-card h2 {
  margin-bottom: 7px;
  font-size: 1.25rem;
}

.office-card small {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.6);
}

.office-card img {
  height: 100%;
  filter: saturate(0.88) brightness(0.82);
}

.availability-card {
  display: grid;
  gap: 11px;
  padding: 16px 14px;
}

.support-request-form {
  scroll-margin-top: 104px;
}

.availability-card label {
  display: grid;
  gap: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 700;
}

.availability-card input,
.availability-card select,
.availability-card textarea {
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.availability-card textarea {
  min-height: 132px;
  padding: 11px 12px;
  resize: vertical;
}

.availability-card select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--blue-2) 50%),
    linear-gradient(135deg, var(--blue-2) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 18px,
    calc(100% - 12px) 18px;
  background-repeat: no-repeat;
  background-size: 6px 6px;
}

.availability-card select option {
  color: #f7fbff;
  background: #111920;
}

[data-theme="light"] .availability-card select option {
  color: #071018;
  background: #ffffff;
}

.availability-card input[type="file"] {
  height: auto;
  padding: 10px 12px;
}

.availability-card input::file-selector-button {
  margin-right: 12px;
  padding: 8px 11px;
  color: #fff;
  background: rgba(31, 131, 255, 0.76);
  border: 0;
  border-radius: 6px;
  font-weight: 800;
}

.availability-card .form-note,
.request-card p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
}

.availability-card .button {
  min-height: 44px;
}

.built-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 30px;
  align-items: start;
  padding: 30px 18px 14px;
}

.green-rule {
  display: block;
  width: 40px;
  height: 2px;
  margin-bottom: 18px;
  background: var(--green);
}

.built-copy h2 {
  margin-bottom: 13px;
  font-size: clamp(1.65rem, 3vw, 2rem);
  line-height: 1.08;
}

.built-copy p {
  max-width: 560px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.72);
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.mini-stats div {
  padding: 13px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.mini-stats strong,
.mini-stats span {
  display: block;
}

.mini-stats span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
}

.built-media {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 14px;
}

.built-media img {
  height: 220px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.photo-proof {
  padding: 16px 18px 22px;
}

.photo-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 14px;
}

.photo-grid figure {
  position: relative;
  min-height: 210px;
  margin: 0;
  overflow: hidden;
  background: var(--panel-solid);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.photo-grid .photo-wide {
  grid-column: span 2;
}

.photo-grid img,
.photo-grid video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-grid img {
  filter: saturate(0.96) brightness(0.82);
  transition: transform 280ms ease, filter 280ms ease;
}

.photo-grid video {
  background: #020609;
  filter: saturate(1.04) brightness(0.88);
}

.photo-grid .facebook-video iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 270px;
  border: 0;
  background: #020609;
}

.photo-grid .facebook-video figcaption a {
  color: #fff;
  text-decoration: none;
}

.photo-grid .facebook-video figcaption a:hover {
  text-decoration: underline;
}

.photo-grid .video-wide {
  min-height: 270px;
}

.photo-grid .video-wide figcaption {
  top: 14px;
  bottom: auto;
}

.photo-grid figure:hover img {
  transform: scale(1.035);
  filter: saturate(1.04) brightness(0.92);
}

.photo-grid figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 10px;
  color: #fff;
  background: rgba(5, 9, 12, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.shop-hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: #05090c;
}

.shop-hero-bg {
  position: absolute;
  inset: 0;
  object-position: center 54%;
  filter: saturate(1.02) contrast(1.05);
}

.shop-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.58) 38%, rgba(0, 0, 0, 0.16) 78%),
    linear-gradient(180deg, rgba(3, 6, 8, 0.24), rgba(3, 6, 8, 0.78));
}

.shop-hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 48px));
  padding: 100px 0 76px;
  margin-left: clamp(28px, 6.8vw, 106px);
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--green-2);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.shop-hero-content h1 {
  max-width: 720px;
}

.shop-hero-content > p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  font-weight: 600;
}

.shop-band,
.repair-section,
.shop-split {
  padding-inline: clamp(24px, 5.7vw, 88px);
}

.shop-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 30px;
  align-items: end;
  padding-top: 44px;
  padding-bottom: 24px;
  background:
    linear-gradient(90deg, rgba(18, 34, 44, 0.78), rgba(3, 7, 10, 0.68) 44%, rgba(18, 31, 40, 0.82)),
    var(--bg);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.shop-intro h2,
.shop-split h2 {
  margin-bottom: 10px;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1.04;
}

.shop-intro p,
.shop-split p {
  margin-bottom: 0;
  color: var(--soft);
  font-size: 1rem;
}

.shop-stats,
.shop-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.shop-stats div,
.shop-list div {
  min-height: 92px;
  padding: 16px;
  background: var(--panel-solid);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.shop-stats strong,
.shop-list strong {
  display: block;
  color: var(--text);
  font-size: 1.35rem;
  line-height: 1;
}

.shop-stats span,
.shop-list span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.repair-section {
  padding-top: 24px;
  padding-bottom: 30px;
  background: var(--bg);
}

.repair-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.repair-card {
  min-height: 390px;
  padding: 22px;
  background: linear-gradient(180deg, rgba(19, 28, 35, 0.94), rgba(10, 16, 21, 0.98));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.repair-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  color: var(--blue);
  background: rgba(8, 12, 16, 0.84);
  border: 2px solid currentColor;
  border-radius: 50%;
}

.repair-icon.green {
  color: var(--green);
}

.repair-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.repair-card h3 {
  margin-bottom: 8px;
  color: var(--text);
  font-size: 1.35rem;
}

.repair-card p {
  min-height: 108px;
  margin-bottom: 18px;
  color: var(--muted);
}

.repair-card ul {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.repair-card li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 0;
  color: var(--soft);
  border-bottom: 1px solid var(--line);
}

.repair-card li span {
  color: var(--muted);
}

.repair-card li strong {
  color: var(--text);
  white-space: nowrap;
}

.shop-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 34px;
  align-items: center;
  padding-top: 24px;
  padding-bottom: 44px;
  background: var(--bg-2);
}

.shop-split .shop-list {
  margin-top: 22px;
}

.shop-split img {
  height: 340px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.page-hero {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  background: #05090c;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  object-position: center;
  filter: saturate(1.03) contrast(1.04);
}

.page-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.58) 42%, rgba(0, 0, 0, 0.2) 82%),
    linear-gradient(180deg, rgba(3, 6, 8, 0.18), rgba(3, 6, 8, 0.72));
}

.page-hero-content {
  position: relative;
  z-index: 2;
  width: min(780px, calc(100% - 48px));
  padding: 88px 0 72px;
  margin-left: clamp(28px, 6.8vw, 106px);
}

.page-hero-content h1 {
  max-width: 720px;
}

.page-hero-content > p:not(.eyebrow) {
  max-width: 690px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  font-weight: 600;
}

.page-section {
  padding: 42px clamp(24px, 5.7vw, 88px);
  background: var(--bg);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.page-section.alt {
  background:
    linear-gradient(90deg, rgba(18, 34, 44, 0.78), rgba(3, 7, 10, 0.68) 44%, rgba(18, 31, 40, 0.82)),
    var(--bg-2);
}

.content-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 34px;
  align-items: center;
}

.content-split h2,
.page-section > .section-title h2 {
  margin-bottom: 12px;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1.05;
}

.content-split p {
  color: var(--soft);
}

.content-split img {
  height: 340px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-grid,
.process-grid,
.detail-grid {
  display: grid;
  gap: 14px;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.feature-card,
.process-card,
.detail-card {
  padding: 22px;
  background: linear-gradient(180deg, rgba(19, 28, 35, 0.94), rgba(10, 16, 21, 0.98));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.feature-card h3,
.process-card h3,
.detail-card h3 {
  margin-bottom: 8px;
  font-size: 1.24rem;
}

.feature-card p,
.process-card p,
.detail-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.check-list li {
  padding: 14px 16px;
  color: var(--soft);
  background: var(--panel-solid);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.price-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.price-strip div {
  padding: 18px;
  background: var(--panel-solid);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.price-strip strong {
  display: block;
  color: var(--text);
  font-size: 1.35rem;
}

.price-strip span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
}

.pricing-section {
  padding-top: 54px;
  padding-bottom: 54px;
}

.section-heading-row {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: end;
  margin-bottom: 24px;
}

.section-heading-row > div {
  max-width: 830px;
}

.section-heading-row h2 {
  margin-bottom: 10px;
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  line-height: 1.05;
}

.section-heading-row p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--soft);
}

.text-link {
  flex: 0 0 auto;
  padding-bottom: 4px;
  color: var(--blue);
  font-weight: 800;
}

.plan-grid,
.voice-grid {
  display: grid;
  gap: 14px;
}

.plan-grid-three,
.voice-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.plan-grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.business-special-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.plan-card,
.managed-card,
.voice-card {
  position: relative;
  padding: 24px;
  background: linear-gradient(180deg, rgba(19, 28, 35, 0.96), rgba(10, 16, 21, 0.98));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.plan-card.featured,
.managed-card.featured {
  border-color: rgba(31, 143, 255, 0.74);
  box-shadow: inset 0 3px 0 var(--blue), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.plan-kicker {
  margin-bottom: 10px;
  color: var(--soft);
  font-weight: 800;
}

.plan-badge {
  display: inline-block;
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.plan-card h3,
.managed-card h3 {
  margin-bottom: 6px;
  font-size: 1rem;
  font-weight: 700;
}

.plan-card h3 > span,
.managed-card h3 {
  color: var(--text);
  font-size: clamp(2rem, 3.3vw, 2.75rem);
  line-height: 1;
}

.managed-card h3 span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.plan-speed {
  margin-bottom: 18px;
  color: var(--green-2);
  font-size: 1.15rem;
  font-weight: 900;
}

.plan-card ul,
.managed-card ul {
  display: grid;
  gap: 10px;
  min-height: 120px;
  padding: 16px 0 0;
  margin: 0 0 22px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  list-style: none;
}

.plan-card li,
.managed-card li {
  position: relative;
  padding-left: 18px;
}

.plan-card li::before,
.managed-card li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  content: "";
}

.plan-card .button {
  width: 100%;
}

.special-plan-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
}

.special-plan-card .plan-badge {
  margin-bottom: 8px;
}

.special-plan-card .plan-speed {
  margin-bottom: 0;
}

.special-plan-card ul {
  min-height: 108px;
  padding-top: 14px;
  margin-bottom: 0;
  border-top: 1px solid var(--line);
}

.special-plan-card .button {
  width: 100%;
}

.dia-card {
  border-color: rgba(86, 223, 69, 0.54);
  box-shadow: inset 0 3px 0 var(--green), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.managed-card > p:not(.plan-kicker, .plan-badge) {
  min-height: 44px;
  margin-bottom: 14px;
  color: var(--green-2);
  font-weight: 800;
}

.managed-card ul {
  min-height: 150px;
  margin-bottom: 0;
}

.voice-card p {
  margin-bottom: 18px;
  color: var(--soft);
  font-weight: 800;
}

.voice-card strong {
  display: block;
  color: var(--text);
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1;
}

.voice-card strong span {
  color: var(--muted);
  font-size: 0.88rem;
}

.voice-card small {
  display: block;
  min-height: 42px;
  margin-top: 12px;
  color: var(--muted);
}

.pricing-note {
  max-width: 980px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.status-table {
  overflow: hidden;
  background: var(--panel-solid);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.status-table div {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 18px;
  align-items: center;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}

.status-table div:last-child {
  border-bottom: 0;
}

.status-table strong {
  color: var(--text);
}

.status-pill {
  display: inline-flex;
  justify-content: center;
  min-width: 112px;
  padding: 6px 10px;
  color: #051008;
  background: var(--green);
  border-radius: 999px;
  font-weight: 900;
}

.status-pill[data-state="degraded"],
.status-pill[data-state="maintenance"] {
  color: #190f00;
  background: #f5c542;
}

.status-pill[data-state="outage"] {
  color: #fff;
  background: #d93636;
}

.status-pill[data-state="unknown"] {
  color: var(--text);
  background: rgba(255, 255, 255, 0.14);
}

.status-meta {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.contact-card {
  padding: 22px;
  background: var(--panel-solid);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-card h3 {
  margin-bottom: 8px;
}

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

.contact-card a {
  color: var(--blue-2);
  font-weight: 800;
}

.coverage-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
}

.coverage-card {
  position: relative;
  min-height: 300px;
  margin: 0;
  overflow: hidden;
  background: var(--panel-solid);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.coverage-card.coverage-wide {
  grid-row: span 2;
  min-height: 620px;
}

.coverage-card img {
  filter: saturate(0.98) brightness(0.74);
  transition: transform 280ms ease, filter 280ms ease;
}

.coverage-card:hover img {
  transform: scale(1.025);
  filter: saturate(1.04) brightness(0.82);
}

.coverage-card figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: grid;
  gap: 4px;
  padding: 12px;
  color: #fff;
  background: rgba(4, 8, 12, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 6px;
  backdrop-filter: blur(12px);
}

.coverage-card figcaption strong {
  font-size: 0.98rem;
}

.coverage-card figcaption span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.83rem;
}

.location-note {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-top: 14px;
  padding: 18px;
  background: var(--panel-solid);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.location-note strong {
  color: var(--green-2);
}

.location-note span {
  color: var(--soft);
}

.location-note a {
  color: var(--blue-2);
  font-weight: 900;
  white-space: nowrap;
}

.support-band {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 44px clamp(24px, 5.7vw, 88px);
  background: #030608;
  border-top: 1px solid var(--line);
}

.support-band h2 {
  margin-bottom: 8px;
  font-size: clamp(1.45rem, 3vw, 2.35rem);
}

.support-band p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.67);
}

.support-band > div:last-child {
  display: flex;
  gap: 12px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(24px, 5.7vw, 88px);
  color: rgba(255, 255, 255, 0.62);
  background: #020405;
  border-top: 1px solid var(--line);
}

.site-footer strong {
  color: #fff;
}

.footer-brand {
  display: flex;
  gap: 20px;
}

.footer-links {
  display: flex;
  gap: 18px;
  font-weight: 700;
}

.footer-links a:hover,
.footer-links a[aria-current="page"] {
  color: var(--blue-2);
}

.legal-hero {
  padding: 72px clamp(24px, 8vw, 128px) 58px;
  background:
    linear-gradient(90deg, rgba(15, 35, 49, 0.9), rgba(4, 10, 14, 0.94) 58%, rgba(20, 38, 31, 0.8)),
    var(--bg-2);
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  max-width: 900px;
  margin-bottom: 14px;
  font-size: clamp(2.6rem, 6vw, 5.3rem);
}

.legal-hero > p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 14px;
  color: var(--soft);
  font-size: 1.1rem;
}

.legal-hero small {
  color: var(--muted);
  font-weight: 700;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(190px, 240px) minmax(0, 850px);
  gap: clamp(36px, 6vw, 90px);
  justify-content: center;
  padding: 58px clamp(24px, 7vw, 110px) 80px;
  background: var(--bg);
}

.legal-nav {
  position: sticky;
  top: 116px;
  align-self: start;
  display: grid;
  gap: 10px;
  padding-left: 18px;
  border-left: 2px solid var(--line-strong);
}

.legal-nav strong {
  margin-bottom: 6px;
  color: var(--text);
}

.legal-nav a {
  color: var(--muted);
  font-size: 0.92rem;
}

.legal-nav a:hover {
  color: var(--blue-2);
}

.legal-copy section {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 116px;
}

.legal-copy section:last-child {
  margin-bottom: 0;
}

.legal-copy h2 {
  margin-bottom: 14px;
  font-size: clamp(1.45rem, 2.6vw, 2rem);
}

.legal-copy h3 {
  margin: 22px 0 8px;
  font-size: 1.05rem;
}

.legal-copy p,
.legal-copy li {
  color: var(--soft);
}

.legal-copy ul {
  display: grid;
  gap: 10px;
  padding-left: 22px;
}

.legal-copy a,
.legal-copy address a {
  color: var(--blue-2);
}

.legal-copy address {
  color: var(--soft);
  font-style: normal;
  line-height: 1.8;
}

.signup-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 42px;
  align-items: end;
  padding: 64px clamp(24px, 7vw, 110px) 52px;
  background:
    linear-gradient(90deg, rgba(13, 34, 48, 0.94), rgba(3, 9, 13, 0.96) 62%, rgba(18, 39, 32, 0.82)),
    var(--bg-2);
  border-bottom: 1px solid var(--line);
}

.signup-hero h1 {
  max-width: 780px;
  margin-bottom: 12px;
  font-size: clamp(2.5rem, 5vw, 4.9rem);
}

.signup-hero > div > p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--soft);
  font-size: 1.08rem;
}

.signup-plan {
  padding-left: 20px;
  border-left: 3px solid var(--blue);
}

.signup-plan span,
.signup-plan p,
.signup-plan a {
  color: var(--muted);
}

.signup-plan > span {
  display: block;
  margin-bottom: 5px;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.signup-plan strong {
  display: block;
  color: var(--text);
  font-size: 2rem;
}

.signup-plan p {
  margin: 3px 0 8px;
}

.signup-plan a {
  color: var(--blue-2);
  font-weight: 800;
}

.signup-shell {
  display: grid;
  grid-template-columns: minmax(230px, 310px) minmax(0, 820px);
  gap: clamp(28px, 5vw, 64px);
  justify-content: center;
  align-items: start;
  padding: 44px clamp(18px, 6vw, 90px) 72px;
  background: var(--bg);
}

.signup-note {
  padding-top: 12px;
}

.signup-note strong {
  color: var(--text);
  font-size: 1.2rem;
}

.signup-note p {
  color: var(--muted);
}

.signup-note a {
  color: var(--blue-2);
  font-weight: 800;
}

.signup-frame-wrap {
  min-height: 900px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.signup-frame {
  display: block;
  width: 100%;
  min-height: 1100px;
  border: 0;
  background: #fff;
}

/* Light theme surfaces and contrast */
[data-theme="light"] body::before {
  background-image: linear-gradient(rgba(7, 16, 24, 0.025) 1px, transparent 1px);
  opacity: 0.2;
}

[data-theme="light"] .site-header {
  border-bottom-color: rgba(7, 16, 24, 0.14);
  box-shadow: 0 8px 28px rgba(30, 51, 70, 0.14);
}

[data-theme="light"] .theme-toggle,
[data-theme="light"] .nav-toggle {
  background: #fff;
  border-color: rgba(7, 16, 24, 0.24);
}

[data-theme="light"] .dashboard-section,
[data-theme="light"] .shop-band,
[data-theme="light"] .page-section.alt {
  background: var(--bg-2);
  border-color: var(--line);
}

[data-theme="light"] .feature-card,
[data-theme="light"] .process-card,
[data-theme="light"] .detail-card,
[data-theme="light"] .repair-card,
[data-theme="light"] .plan-card,
[data-theme="light"] .managed-card,
[data-theme="light"] .voice-card,
[data-theme="light"] .status-card,
[data-theme="light"] .office-card,
[data-theme="light"] .availability-card {
  background: linear-gradient(180deg, #ffffff, #f4f8fb);
  border-color: rgba(7, 16, 24, 0.15);
  box-shadow: 0 10px 28px rgba(30, 51, 70, 0.1);
}

[data-theme="light"] .plan-card.featured,
[data-theme="light"] .managed-card.featured {
  border-color: rgba(8, 111, 214, 0.62);
  box-shadow: inset 0 3px 0 var(--blue), 0 10px 28px rgba(30, 51, 70, 0.12);
}

[data-theme="light"] .dia-card {
  border-color: rgba(36, 139, 50, 0.58);
  box-shadow: inset 0 3px 0 var(--green), 0 10px 28px rgba(30, 51, 70, 0.12);
}

[data-theme="light"] .status-card h2,
[data-theme="light"] .office-card h2,
[data-theme="light"] .availability-card h2,
[data-theme="light"] .office-card p,
[data-theme="light"] .status-card li,
[data-theme="light"] .status-card strong {
  color: var(--text);
}

[data-theme="light"] .status-card li,
[data-theme="light"] .status-card ul {
  border-color: var(--line);
}

[data-theme="light"] .operational {
  color: var(--green-2);
}

[data-theme="light"] .office-card small,
[data-theme="light"] .availability-card label,
[data-theme="light"] .availability-card .form-note,
[data-theme="light"] .request-card p,
[data-theme="light"] .built-copy p,
[data-theme="light"] .mini-stats span {
  color: var(--muted);
}

[data-theme="light"] .availability-card input,
[data-theme="light"] .availability-card select,
[data-theme="light"] .availability-card textarea {
  color: var(--text);
  background-color: #fff;
  border-color: rgba(7, 16, 24, 0.24);
}

[data-theme="light"] .availability-card input::placeholder,
[data-theme="light"] .availability-card textarea::placeholder {
  color: #6b7785;
  opacity: 1;
}

[data-theme="light"] .mini-stats div {
  background: #fff;
}

[data-theme="light"] .repair-icon,
[data-theme="light"] .solution-icon {
  background: #14222d;
}

[data-theme="light"] .status-pill[data-state="unknown"] {
  background: #dce5ec;
}

[data-theme="light"] .legal-hero,
[data-theme="light"] .signup-hero {
  background: linear-gradient(105deg, #e7f2fb, #f7fafc 58%, #e8f5ea);
  border-color: var(--line);
}

[data-theme="light"] .legal-hero h1,
[data-theme="light"] .signup-hero h1,
[data-theme="light"] .signup-plan strong {
  color: var(--text);
}

[data-theme="light"] .legal-hero > p:not(.eyebrow),
[data-theme="light"] .legal-hero small,
[data-theme="light"] .signup-hero > div > p:not(.eyebrow),
[data-theme="light"] .signup-plan span,
[data-theme="light"] .signup-plan p {
  color: var(--muted);
}

[data-theme="light"] .support-band h2,
[data-theme="light"] .site-footer,
[data-theme="light"] .site-footer strong {
  color: #fff;
}

[data-theme="light"] .support-band .button-outline {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.64);
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 88px;
    left: 24px;
    right: 24px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: var(--panel-solid);
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px;
  }

  .header-actions {
    justify-self: end;
  }

  .dashboard-section {
    grid-template-columns: 1fr;
  }

  .side-column {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .availability-card {
    grid-column: 1 / -1;
  }

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

  .shop-band,
  .shop-split,
  .content-split {
    grid-template-columns: 1fr;
  }

  .repair-grid,
  .feature-grid,
  .process-grid,
  .plan-grid-four,
  .business-special-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    min-height: 78px;
    padding-inline: 16px;
  }

  .nav-toggle {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 90;
    display: inline-flex;
  }

  .logo {
    width: min(235px, calc(100vw - 88px));
    min-width: 0;
  }

  .header-actions {
    display: none;
  }

  .hero {
    min-height: 470px;
  }

  .hero-bg {
    object-position: 56% center;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.42));
  }

  .hero-content {
    width: calc(100% - 32px);
    padding-top: 54px;
    margin-left: 16px;
  }

  .page-hero {
    min-height: 560px;
  }

  .page-hero-content {
    width: min(100% - 32px, 358px);
    max-width: calc(100vw - 32px);
    padding: 64px 0 58px;
    margin-left: 16px;
  }

  .page-hero-content h1 {
    max-width: 100%;
    font-size: clamp(1.95rem, 8vw, 2.55rem);
    line-height: 1.02;
    overflow-wrap: anywhere;
  }

  .page-hero-content > p:not(.eyebrow) {
    max-width: 100%;
    font-size: 1rem;
    overflow-wrap: anywhere;
  }

  .shop-hero {
    min-height: 620px;
  }

  .shop-hero-bg {
    object-position: 62% center;
  }

  .shop-hero-content {
    width: calc(100% - 32px);
    padding: 64px 0 58px;
    margin-left: 16px;
  }

  h1 {
    font-size: clamp(2.65rem, 12vw, 4rem);
  }

  .hero-actions,
  .support-band,
  .support-band > div:last-child,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-brand,
  .footer-links {
    flex-wrap: wrap;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    padding-inline: 18px;
  }

  .signup-hero,
  .signup-shell {
    grid-template-columns: 1fr;
  }

  .signup-hero {
    gap: 24px;
    padding: 48px 18px 36px;
  }

  .signup-shell {
    padding-inline: 14px;
  }

  .signup-frame-wrap,
  .signup-frame {
    min-height: 1180px;
  }

  .legal-nav {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .legal-nav strong {
    grid-column: 1 / -1;
  }

  .dashboard-section {
    padding-inline: 14px;
  }

  .solution-grid,
  .side-column,
  .built-section,
  .built-media,
  .photo-grid,
  .repair-grid,
  .shop-stats,
  .shop-list,
  .mini-stats {
    grid-template-columns: 1fr;
  }

  .shop-band,
  .repair-section,
  .shop-split,
  .page-section {
    padding-inline: 14px;
  }

  .feature-grid,
  .process-grid,
  .coverage-grid,
  .detail-grid,
  .price-strip,
  .plan-grid,
  .voice-grid,
  .business-special-grid,
  .contact-grid,
  .status-table div {
    grid-template-columns: 1fr;
  }

  .section-heading-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .plan-card ul,
  .managed-card ul {
    min-height: 0;
  }

  .coverage-card,
  .coverage-card.coverage-wide {
    min-height: 260px;
    grid-row: auto;
  }

  .location-note {
    align-items: stretch;
    flex-direction: column;
  }

  .location-note a {
    white-space: normal;
  }

  .content-split img {
    height: 230px;
  }

  .repair-card {
    min-height: auto;
  }

  .repair-card p {
    min-height: 0;
  }

  .shop-split img {
    height: 230px;
  }

  .photo-grid .photo-wide {
    grid-column: auto;
  }

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

  .office-card img {
    height: 170px;
  }

  .built-section {
    padding-inline: 0;
  }
}
