:root {
  color-scheme: dark;
  --bg: #06111f;
  --bg-alt: #0b1729;
  --panel: rgba(9, 19, 35, 0.9);
  --panel-strong: #0f1d33;
  --line: rgba(143, 174, 214, 0.18);
  --line-strong: rgba(143, 174, 214, 0.28);
  --text: #e8f0ff;
  --muted: #93a8cb;
  --accent: #54a6ff;
  --accent-strong: #7bc0ff;
  --accent-soft: rgba(84, 166, 255, 0.12);
  --success: #89d77b;
  --danger: #ff8c7a;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  --radius: 8px;
  --content-width: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  background:
    linear-gradient(180deg, rgba(4, 10, 18, 0.72) 0%, rgba(4, 10, 18, 0.92) 55%, rgba(4, 10, 18, 1) 100%),
    url("../images/dark.jpg") center/cover fixed no-repeat,
    var(--bg);
  color: var(--text);
  line-height: 1.5;
}

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

img {
  max-width: 100%;
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

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

.site-main {
  padding-bottom: 72px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(5, 12, 23, 0.88);
  border-bottom: 1px solid var(--line);
}

.header-shell {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  min-height: 76px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-logo,
.footer-logo {
  width: auto;
  height: 44px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 4px;
}

.brand-name {
  font-size: 1rem;
  font-weight: 700;
}

.brand-tagline {
  color: var(--muted);
  font-size: 0.8rem;
}

.brand-copy {
  min-width: 0;
}

.primary-nav {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  min-width: 0;
}

.nav-section {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.nav-inline-group {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

.nav-section-public {
  flex: 1 1 auto;
  min-width: 0;
}

.nav-section-account,
.nav-section-actions {
  flex: 0 0 auto;
}

.nav-account-inline,
.nav-actions-inline {
  justify-content: flex-end;
}

.nav-section-label {
  display: none;
  color: #b8cae5;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-link {
  padding: 9px 10px;
  border-radius: 6px;
  color: var(--muted);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--text);
  background: var(--accent-soft);
}

.nav-action-secondary,
.nav-action-primary {
  border: 1px solid var(--line-strong);
  color: var(--text);
}

.nav-action-primary {
  background: linear-gradient(180deg, #58abff 0%, #3589e8 100%);
  border-color: transparent;
  color: #051120;
  font-weight: 700;
}

.nav-action-secondary:hover {
  border-color: rgba(143, 174, 214, 0.42);
}

.nav-action-primary:hover,
.nav-action-primary.is-active {
  color: #051120;
  background: linear-gradient(180deg, #7bc0ff 0%, #4c9bf0 100%);
}

.account-menu {
  position: relative;
}

.account-menu summary {
  list-style: none;
  cursor: pointer;
}

.account-menu summary::-webkit-details-marker {
  display: none;
}

.account-menu summary::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 7px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transform: translateY(1px);
}

.account-menu-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  min-width: 210px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(8, 18, 33, 0.98);
  box-shadow: var(--shadow);
  display: grid;
  gap: 4px;
}

.account-menu-link {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 10px;
  border-radius: 6px;
  color: var(--muted);
}

.account-menu-link:hover,
.account-menu-link.is-active {
  color: var(--text);
  background: var(--accent-soft);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: 0.18s ease;
}

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

.button-primary {
  background: linear-gradient(180deg, #58abff 0%, #3589e8 100%);
  color: #051120;
}

.button-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--line);
  color: var(--text);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: transparent;
  color: var(--text);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  margin: 4px auto;
}

.hero {
  padding: 72px 0 40px;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 32px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(84, 166, 255, 0.12);
  border: 1px solid rgba(84, 166, 255, 0.22);
  color: #b6d8ff;
  font-size: 0.88rem;
  font-weight: 600;
}

.hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2.5rem, 4vw, 4.4rem);
  line-height: 1.02;
}

.hero p {
  margin: 0;
  max-width: 62ch;
  color: #c3d2ea;
  font-size: 1.05rem;
}

.hero-actions,
.stack-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.hero-point,
.info-card,
.stat-card,
.feature-card,
.location-card,
.service-card,
.support-card,
.doc-card,
.empty-state,
.panel-preview,
.flow-step,
.summary-card {
  background: linear-gradient(180deg, rgba(13, 24, 43, 0.92) 0%, rgba(10, 18, 32, 0.92) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-point {
  padding: 16px;
}

.hero-point strong,
.section-heading h2,
.service-card h3,
.feature-card h3,
.location-card h3,
.doc-card h3,
.support-card h3,
.flow-step h3,
.summary-card h3,
.panel-preview h3 {
  display: block;
  margin: 0 0 8px;
}

.hero-visual {
  position: relative;
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-visual-card {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 18px;
  background: rgba(5, 12, 23, 0.82);
  border: 1px solid var(--line);
  border-radius: 6px;
  backdrop-filter: blur(18px);
}

.hero-visual-card strong {
  font-size: 1rem;
}

.hero-visual-card p {
  color: var(--muted);
  margin-top: 8px;
}

.section {
  padding: 28px 0;
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.6rem, 2vw, 2.2rem);
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  max-width: 72ch;
}

.stats-grid,
.feature-grid,
.location-grid,
.service-grid,
.support-grid,
.doc-grid,
.flow-grid,
.summary-grid {
  display: grid;
  gap: 18px;
}

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

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

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

.location-grid,
.service-grid,
.support-grid,
.doc-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

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

.stat-card,
.feature-card,
.location-card,
.service-card,
.support-card,
.doc-card,
.flow-step,
.summary-card,
.panel-preview,
.empty-state {
  padding: 22px;
}

.stat-card strong {
  font-size: 1.65rem;
}

.stat-card span,
.feature-card p,
.location-card p,
.service-card p,
.doc-card p,
.support-card p,
.panel-preview p,
.flow-step p,
.summary-card p,
.muted {
  color: var(--muted);
}

.section-divider {
  height: 1px;
  margin: 16px 0 8px;
  background: linear-gradient(90deg, rgba(84, 166, 255, 0) 0%, rgba(84, 166, 255, 0.35) 50%, rgba(84, 166, 255, 0) 100%);
}

.list-clean {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.list-clean li + li {
  margin-top: 8px;
}

.location-card small,
.service-meta,
.doc-meta {
  color: #b8cae5;
}

.service-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--line);
  margin-bottom: 16px;
  background: #08111f;
}

.service-grid-compact {
  margin-top: 22px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-list span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(84, 166, 255, 0.1);
  color: #cbe1ff;
  font-weight: 700;
}

.tag-list-small {
  margin: 14px 0;
}

.tag-list-small span {
  min-height: 36px;
  font-size: 0.9rem;
}

.service-card header,
.doc-card header {
  margin-bottom: 10px;
}

.service-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-strong);
}

.kicker {
  color: #b6d8ff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(137, 215, 123, 0.12);
  border: 1px solid rgba(137, 215, 123, 0.22);
  color: #b6efad;
  font-size: 0.85rem;
  font-weight: 600;
}

.status-badge-neutral {
  background: rgba(84, 166, 255, 0.1);
  border-color: rgba(84, 166, 255, 0.22);
  color: #cbe1ff;
}

.status-badge-muted {
  background: rgba(147, 168, 203, 0.08);
  border-color: rgba(147, 168, 203, 0.18);
  color: var(--muted);
}

.alert {
  padding: 16px 18px;
  border-radius: 6px;
  border: 1px solid rgba(255, 140, 122, 0.22);
  background: rgba(255, 140, 122, 0.08);
  color: #ffd1c8;
}

.alert.info {
  border-color: rgba(84, 166, 255, 0.2);
  background: rgba(84, 166, 255, 0.08);
  color: #cbe1ff;
}

.narrow-container {
  max-width: 620px;
}

.website-form {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.website-form label {
  color: var(--text);
  font-weight: 700;
}

.website-form input,
.website-form select,
.website-form textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: rgba(5, 17, 32, 0.78);
  color: var(--text);
}

.website-form input,
.website-form select {
  min-height: 44px;
  padding: 0 12px;
}

.website-form textarea {
  min-height: 96px;
  padding: 10px 12px;
  resize: vertical;
}

.website-form input:focus,
.website-form select:focus,
.website-form textarea:focus {
  outline: 2px solid rgba(88, 171, 255, 0.45);
  outline-offset: 2px;
}

.empty-state {
  text-align: center;
}

.page-heading {
  padding: 54px 0 18px;
}

.page-heading h1 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 3vw, 3rem);
}

.page-heading p {
  margin: 0;
  max-width: 74ch;
  color: var(--muted);
}

.catalog-list,
.staff-service-list {
  display: grid;
  gap: 8px;
}

.catalog-list-heading,
.catalog-row,
.staff-service-heading,
.staff-service-row summary {
  display: grid;
  align-items: center;
  gap: 14px;
}

.catalog-list-heading,
.staff-service-heading {
  padding: 0 16px 8px;
  color: #b8cae5;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.catalog-list-heading,
.catalog-row {
  grid-template-columns: minmax(190px, 1.15fr) 130px minmax(260px, 1.8fr) 130px minmax(210px, auto);
}

.catalog-row,
.staff-service-row {
  background: linear-gradient(180deg, rgba(13, 24, 43, 0.92) 0%, rgba(10, 18, 32, 0.92) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.catalog-row {
  padding: 14px 16px;
}

.catalog-server {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.catalog-thumb {
  width: 56px;
  height: 42px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #08111f;
}

.catalog-server h3,
.catalog-description {
  margin: 0;
}

.catalog-server h3 {
  font-size: 1rem;
}

.catalog-description {
  color: var(--muted);
}

.catalog-price {
  color: var(--accent-strong);
  font-weight: 800;
}

.catalog-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.catalog-actions .button {
  min-height: 38px;
  padding: 0 12px;
}

.staff-services-form {
  padding: 0;
  border: 0;
  background: transparent;
}

.staff-service-heading,
.staff-service-row summary {
  grid-template-columns: 70px 100px minmax(170px, 1.2fr) 100px 100px 90px 80px 90px 60px;
}

.staff-service-row summary {
  min-height: 58px;
  padding: 12px 16px;
  cursor: pointer;
  list-style: none;
}

.staff-service-row summary::-webkit-details-marker {
  display: none;
}

.staff-service-row summary::after {
  content: "Edit";
  justify-self: end;
  color: var(--accent-strong);
  font-weight: 800;
}

.staff-service-row[open] summary {
  border-bottom: 1px solid var(--line);
}

.staff-service-row[open] summary::after {
  content: "Close";
}

.staff-service-name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 800;
}

.staff-service-editor {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 16px;
}

.staff-service-editor label,
.staff-service-editor fieldset {
  display: grid;
  gap: 8px;
}

.staff-service-editor fieldset {
  margin: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.staff-service-editor legend,
.staff-service-editor label > span:first-child {
  color: var(--text);
  font-weight: 800;
}

.staff-editor-wide {
  grid-column: 1 / -1;
}

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

.checkbox-grid label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-weight: 600;
}

.checkbox-grid input[type="checkbox"],
.staff-service-editor input[type="checkbox"] {
  width: auto;
  min-height: 0;
}

.panel-preview {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 24px;
  align-items: center;
}

.panel-preview-shell {
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}

.panel-preview-shell img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.panel-preview-stats {
  display: grid;
  gap: 12px;
}

.flow-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(84, 166, 255, 0.16);
  color: var(--accent-strong);
  font-weight: 700;
  margin-bottom: 12px;
}

.doc-list-group {
  display: grid;
  gap: 18px;
}

.doc-list-group h2 {
  margin: 0;
  font-size: 1.25rem;
}

.doc-view {
  padding: 28px;
}

.doc-view h1,
.doc-view h2,
.doc-view h3,
.doc-view h4 {
  color: var(--text);
}

.doc-view a {
  color: var(--accent-strong);
}

.doc-view pre,
.doc-view code {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
}

.doc-view pre {
  overflow-x: auto;
  padding: 16px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid var(--line);
}

.doc-view table {
  width: 100%;
  border-collapse: collapse;
}

.status-page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.status-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.status-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}

.status-table th,
.status-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.status-table th {
  color: #b8cae5;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

.doc-view th,
.doc-view td {
  padding: 10px 12px;
  border: 1px solid var(--line);
  text-align: left;
}

.cta-band {
  padding: 28px 0 0;
}

.cta-panel {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 24px 26px;
  background: linear-gradient(135deg, rgba(29, 72, 138, 0.55) 0%, rgba(12, 25, 45, 0.95) 100%);
  border: 1px solid rgba(113, 176, 255, 0.28);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(4, 10, 18, 0.78);
  padding: 40px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 24px;
}

.footer-grid h2 {
  font-size: 0.95rem;
  margin: 0 0 14px;
}

.footer-copy {
  color: var(--muted);
  max-width: 32ch;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--text);
}

@media (max-width: 1080px) {
  .hero-layout,
  .panel-preview,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .location-grid,
  .service-grid,
  .support-grid,
  .doc-grid,
  .flow-grid,
  .summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .header-shell {
    grid-template-columns: auto auto;
    gap: 16px;
  }

  .nav-toggle {
    display: inline-block;
    justify-self: end;
  }

  .primary-nav {
    display: none;
  }

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

  .header-shell {
    padding: 14px 0;
  }

  .site-header .container {
    display: grid;
  }

  .primary-nav.is-open {
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    padding-top: 12px;
    gap: 16px;
  }

  .nav-section {
    display: grid;
    gap: 8px;
  }

  .nav-inline-group {
    display: grid;
    gap: 6px;
  }

  .nav-section-label {
    display: block;
  }

  .nav-link {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .account-menu {
    padding-top: 0;
  }

  .account-menu summary {
    width: 100%;
  }

  .account-menu-panel {
    position: static;
    min-width: 0;
    margin-top: 6px;
    padding: 4px 0 0 12px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    gap: 2px;
  }

  .account-menu-link {
    min-height: 42px;
  }

  .nav-section-account .nav-inline-group,
  .nav-section-actions .nav-inline-group {
    justify-content: stretch;
  }

  .nav-section-actions {
    padding-top: 4px;
    border-top: 1px solid var(--line);
  }

  .nav-action-secondary,
  .nav-action-primary {
    justify-content: center;
    margin-top: 4px;
  }

  .catalog-list-heading,
  .staff-service-heading {
    display: none;
  }

  .catalog-row,
  .staff-service-row summary {
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 10px;
  }

  .catalog-row > *[data-label]::before,
  .staff-service-row summary > span[data-label]::before {
    content: attr(data-label) ": ";
    color: #b8cae5;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .catalog-actions {
    justify-content: stretch;
  }

  .catalog-actions .button {
    flex: 1 1 160px;
  }

  .status-table {
    min-width: 0;
  }

  .status-table thead {
    display: none;
  }

  .status-table,
  .status-table tbody,
  .status-table tr,
  .status-table td {
    display: block;
    width: 100%;
  }

  .status-table tr {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }

  .status-table td {
    border-bottom: 0;
    padding: 6px 12px;
  }

  .status-table td::before {
    content: attr(data-label) ": ";
    color: #b8cae5;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .staff-service-row summary::after {
    justify-self: start;
  }

  .staff-service-name {
    white-space: normal;
  }

  .staff-service-editor,
  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .hero,
  .page-heading {
    padding-top: 42px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 24px), var(--content-width));
  }

  .hero-points,
  .stats-grid,
  .feature-grid,
  .feature-grid-three,
  .location-grid,
  .service-grid,
  .support-grid,
  .doc-grid,
  .flow-grid,
  .summary-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .cta-panel,
  .site-footer {
    padding-left: 0;
    padding-right: 0;
  }
}
