:root {
  color-scheme: dark;
  --black: #050506;
  --graphite: #111418;
  --steel: #8f99a3;
  --silver: #e7edf2;
  --muted: #a8b0b8;
  --accent: #6f86ff;
  --accent-strong: #3d5ed7;
  --accent-soft: #b6c2ff;
  --metal: #f5f7f9;
  --panel: rgba(9, 12, 15, 0.76);
  --line: rgba(231, 237, 242, 0.16);
  --glow: 0 0 28px rgba(111, 134, 255, 0.34);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display-font: Bahnschrift, "Arial Narrow", "Segoe UI Condensed", Impact, sans-serif;
  --body-font: "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--silver);
  overflow-x: hidden;
  font-family: var(--body-font);
}

body.protect-content,
body.protect-content :not(input):not(textarea):not(select) {
  user-select: none;
  -webkit-user-select: none;
}

body.protect-content img {
  -webkit-user-drag: none;
}

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

button {
  font: inherit;
}

.shell {
  min-height: 100vh;
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: stretch;
  isolation: isolate;
}

.hero-bg,
.shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
  z-index: -3;
  object-position: 58% center;
  filter: saturate(0.95) contrast(1.12) brightness(0.86);
}

.shade {
  z-index: -2;
  background:
    radial-gradient(circle at 73% 42%, rgba(111, 134, 255, 0.2), transparent 27rem),
    radial-gradient(circle at 28% 48%, rgba(245, 247, 249, 0.08), transparent 22rem),
    linear-gradient(90deg, rgba(5, 5, 6, 0.82), rgba(5, 5, 6, 0.36) 48%, rgba(5, 5, 6, 0.66)),
    linear-gradient(180deg, rgba(5, 5, 6, 0.2), rgba(5, 5, 6, 0.82));
}

.topbar {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  margin-left: clamp(0px, 6vw, 92px);
}

.brand-mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(182, 194, 255, 0.36);
  background: #000;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 0 30px rgba(111, 134, 255, 0.26);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.7);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: var(--display-font);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

nav a {
  position: relative;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border: 1px solid rgba(182, 194, 255, 0.22);
  background:
    linear-gradient(135deg, transparent 0 10px, rgba(255, 255, 255, 0.06) 10px),
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018));
  color: var(--silver);
  clip-path: polygon(11px 0, 100% 0, 100% calc(100% - 11px), calc(100% - 11px) 100%, 0 100%, 0 11px);
  font-family: var(--display-font);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  overflow: hidden;
}

nav a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(245, 247, 249, 0.18), transparent);
  transform: translateX(-120%);
  transition: transform 0.4s ease;
}

nav a:hover,
nav a:focus-visible {
  border-color: rgba(255, 255, 255, 0.38);
  color: #fff;
  background:
    linear-gradient(135deg, transparent 0 10px, rgba(255, 255, 255, 0.08) 10px),
    linear-gradient(145deg, rgba(111, 134, 255, 0.18), rgba(255, 255, 255, 0.035));
}

nav a:hover::before,
nav a:focus-visible::before {
  transform: translateX(120%);
}

.hero-grid {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 54px 0 80px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.58fr);
  gap: 18px;
  align-items: center;
}

.intro-panel {
  max-width: 610px;
  min-width: 0;
  justify-self: center;
  transform: translateX(42px);
}

.kicker {
  margin: 0 0 12px;
  color: var(--accent-soft);
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  font-family: var(--display-font);
}

h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(3.1rem, 5.7vw, 5.8rem);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  text-shadow: 0 0 32px rgba(111, 134, 255, 0.28);
  overflow-wrap: normal;
  word-break: normal;
}

.lead {
  margin: 24px 0 0;
  color: var(--silver);
  font-size: clamp(1.02rem, 2vw, 1.25rem);
  line-height: 1.6;
  max-width: 48rem;
}

.hero-console {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.hero-console::before,
.hero-console::after {
  content: "";
  position: absolute;
  inset: 9%;
  border: 1px solid rgba(182, 194, 255, 0.2);
  transform: rotate(8deg);
  background:
    linear-gradient(90deg, transparent 49%, rgba(182, 194, 255, 0.11) 50%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(182, 194, 255, 0.08) 50%, transparent 51%);
  background-size: 52px 52px;
  opacity: 0.8;
  z-index: -1;
}

.hero-console::after {
  inset: 18%;
  transform: rotate(-14deg);
  border-color: rgba(245, 247, 249, 0.12);
  background-size: 34px 34px;
  opacity: 0.55;
}

.console-core {
  position: relative;
  width: min(320px, 78vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(182, 194, 255, 0.34);
  background:
    radial-gradient(circle, rgba(111, 134, 255, 0.2), transparent 58%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.52));
  box-shadow: 0 0 70px rgba(111, 134, 255, 0.22), inset 0 0 50px rgba(0, 0, 0, 0.58);
  transform: rotate(45deg);
  overflow: hidden;
}

.console-core img {
  width: 76%;
  height: 76%;
  object-fit: cover;
  transform: rotate(-45deg) scale(1.52);
  filter: drop-shadow(0 0 22px rgba(111, 134, 255, 0.32));
}

.scan-line {
  position: absolute;
  inset: -20% 48%;
  width: 3px;
  background: linear-gradient(transparent, rgba(182, 194, 255, 0.95), transparent);
  box-shadow: 0 0 24px rgba(111, 134, 255, 0.8);
  animation: scanSweep 3.8s ease-in-out infinite;
}

.console-readout,
.console-tags,
.console-popup {
  position: absolute;
  border: 1px solid var(--line);
  background: rgba(5, 5, 6, 0.68);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.42);
}

.console-readout {
  right: 8px;
  bottom: -8px;
  width: min(330px, 78vw);
  padding: 16px;
  z-index: 3;
}

.console-readout span,
.console-readout small {
  display: block;
  color: var(--accent-soft);
  font-size: 0.78rem;
  text-transform: uppercase;
  font-family: var(--display-font);
  letter-spacing: 0.04em;
}

.console-readout strong {
  display: block;
  margin: 8px 0;
  font-family: var(--display-font);
  font-size: 1.35rem;
  line-height: 1.05;
}

.console-tags {
  left: 0;
  top: 20px;
  width: min(220px, 70vw);
  padding: 10px;
  display: grid;
  gap: 8px;
}

.console-tab {
  position: relative;
  padding: 9px 10px;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.06);
  border-left: 3px solid var(--accent);
  color: var(--silver);
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  font-family: var(--display-font);
  letter-spacing: 0.02em;
}

.console-tab:hover,
.console-tab:focus-visible,
.console-tab.active {
  color: #fff;
  border-color: rgba(182, 194, 255, 0.34);
  background: linear-gradient(90deg, rgba(111, 134, 255, 0.32), rgba(255, 255, 255, 0.08));
}

.console-popup {
  left: 0;
  top: 238px;
  bottom: auto;
  width: min(360px, 82vw);
  padding: 16px;
  transform: none;
}

.console-popup span {
  display: block;
  color: var(--accent-soft);
  font-family: var(--display-font);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.console-popup strong {
  display: block;
  margin: 6px 0;
  font-family: var(--display-font);
  font-size: 1.35rem;
}

.console-popup p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.94rem;
}

@keyframes scanSweep {
  0%,
  100% {
    transform: translateX(-78px);
    opacity: 0.32;
  }

  50% {
    transform: translateX(78px);
    opacity: 0.95;
  }
}

.quick-actions,
.contact-actions,
.request-direct,
.thanks-actions,
.design-actions,
.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.action {
  position: relative;
  font-family: var(--display-font);
  letter-spacing: 0.02em;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 1px solid rgba(182, 194, 255, 0.28);
  background:
    linear-gradient(135deg, transparent 0 12px, rgba(255, 255, 255, 0.08) 12px),
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025));
  color: #fff;
  font-weight: 800;
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
  overflow: hidden;
}

.action::before,
.action::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.action::before {
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(245, 247, 249, 0.24), transparent);
  transform: translateX(-115%);
  transition: transform 0.45s ease;
}

.action::after {
  left: 14px;
  right: 14px;
  bottom: 7px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(182, 194, 255, 0.72), transparent);
}

.action.primary {
  background:
    linear-gradient(135deg, transparent 0 12px, rgba(255, 255, 255, 0.1) 12px),
    linear-gradient(135deg, var(--accent), var(--accent-strong));
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: var(--glow);
}

.action:hover,
.action:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.42);
}

.action:hover::before,
.action:focus-visible::before {
  transform: translateX(115%);
}

.proof-strip {
  width: min(1180px, calc(100% - 32px));
  margin: -56px auto 0;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(182, 194, 255, 0.24);
  background: rgba(5, 5, 6, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.48), 0 0 44px rgba(111, 134, 255, 0.12);
}

.proof-strip div {
  min-height: 118px;
  padding: 20px;
  display: grid;
  align-content: center;
  gap: 8px;
  border-right: 1px solid var(--line);
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip strong {
  color: var(--accent-soft);
  font-family: var(--display-font);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.proof-strip span {
  color: var(--silver);
  line-height: 1.5;
}

.equipment-section {
  position: relative;
  padding: 120px 0 86px;
  background:
    linear-gradient(180deg, rgba(5, 5, 6, 0.88), rgba(12, 14, 19, 0.96)),
    radial-gradient(circle at 70% 20%, rgba(111, 134, 255, 0.12), transparent 30rem);
}

.equipment-wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

.section-heading.compact {
  position: static;
  max-width: 860px;
}

.game-panel {
  min-width: 0;
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  padding: 18px;
  display: grid;
  gap: 16px;
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 4px 4px 0;
}

.panel-head p,
.panel-head h2 {
  margin: 0;
}

.panel-head p {
  color: var(--accent-soft);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.panel-head h2,
.panel-head h3 {
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  letter-spacing: 0.01em;
}

.rail-controls {
  display: flex;
  gap: 8px;
}

.rail-btn {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
  color: #fff;
  cursor: pointer;
  font-size: 1.75rem;
  line-height: 1;
}

.rail-btn:hover,
.rail-btn:focus-visible {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(111, 134, 255, 0.26);
}

.equipment-menu {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 310px);
  gap: 12px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  padding: 2px 2px 14px;
  scrollbar-color: var(--accent) rgba(255, 255, 255, 0.08);
}

.equipment-card {
  position: relative;
  min-width: 0;
  min-height: 340px;
  border: 1px solid var(--line);
  background: #050506;
  color: var(--silver);
  display: grid;
  grid-template-rows: minmax(160px, 1fr) auto auto;
  align-items: end;
  gap: 10px;
  text-align: left;
  padding: 0;
  cursor: pointer;
  scroll-snap-align: start;
  overflow: hidden;
}

.equipment-card:hover,
.equipment-card:focus-visible,
.equipment-card.active {
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: inset 3px 0 0 var(--accent);
}

.equipment-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 20%, rgba(5, 5, 6, 0.42) 54%, rgba(5, 5, 6, 0.94)),
    linear-gradient(90deg, rgba(111, 134, 255, 0.18), transparent 45%);
  pointer-events: none;
}

.equipment-card.active::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--accent);
  z-index: 2;
  box-shadow: 0 0 18px rgba(111, 134, 255, 0.7);
}

.equipment-photo {
  position: absolute;
  inset: 0;
  background-image: url("assets/equipment-services.png");
  background-size: auto 112%;
  background-position: center;
  filter: saturate(1.02) contrast(1.12) brightness(0.82);
  transform: scale(1.02);
  transition: transform 0.45s ease, filter 0.45s ease;
}

.photo-layer {
  position: absolute;
  inset-block: 0;
  width: 55%;
  background-size: cover;
  background-position: center;
}

.photo-fryer {
  left: 0;
  background-image: url("assets/Gas Fryer Repairs.jpeg");
}

.photo-pizza {
  right: 0;
  background-image: url("assets/Pizza Oven Repairs (1).jpeg");
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
}

.equipment-card:hover .equipment-photo,
.equipment-card:focus-visible .equipment-photo,
.equipment-card.active .equipment-photo {
  transform: scale(1.08);
  filter: saturate(1.12) contrast(1.18) brightness(0.94);
}

.photo-cooking {
  background-position: 4% 50%;
}

.photo-refrigeration {
  background-position: 14% 50%;
}

.photo-prep {
  background-image: url("assets/Foof Prep.jpeg");
  background-size: cover;
  background-position: center;
}

.photo-serving {
  background-image: url("assets/display.jpeg");
  background-size: cover;
  background-position: center;
}

.photo-warewashing {
  background-position: 45% 50%;
}

.photo-beverage {
  background-image: url("assets/Washing.jpeg");
  background-size: cover;
  background-position: center;
}

.photo-bakery {
  background-image: url("assets/Bakery.jpeg");
  background-size: cover;
  background-position: center;
}

.photo-butchery {
  background-position: 75% 50%;
}

.photo-laundry {
  background-image: url("assets/Laundry.jpeg");
  background-size: cover;
  background-position: center;
}

.photo-stainless {
  background-image: url("assets/stainless.jpeg");
  background-size: cover;
  background-position: center;
}

.photo-extractors {
  background-image: url("assets/Extractors.jpeg");
  background-size: cover;
  background-position: center;
}

.card-title,
.card-copy {
  position: relative;
  z-index: 1;
  display: block;
  padding-inline: 18px;
}

.card-title {
  font-family: var(--display-font);
  font-weight: 850;
  line-height: 1.25;
  letter-spacing: 0.01em;
  font-size: 1.35rem;
}

.card-copy {
  padding-bottom: 18px;
  color: var(--muted);
  line-height: 1.45;
  font-size: 0.95rem;
}

.detail-card {
  min-height: 260px;
  border: 1px solid rgba(231, 237, 242, 0.2);
  background:
    linear-gradient(145deg, rgba(0, 0, 0, 0.34), rgba(255, 255, 255, 0.06)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.025) 1px, transparent 1px, transparent 7px);
  padding: clamp(18px, 3vw, 28px);
}

.detail-label {
  margin: 0 0 6px;
  color: var(--accent-soft);
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 900;
}

.detail-card h3 {
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: 0.01em;
}

.detail-card p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 1.02rem;
}

.detail-card ul {
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
  list-style: none;
}

.detail-card li {
  position: relative;
  padding-left: 20px;
  color: var(--silver);
}

.detail-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  background: var(--accent);
}

.content-band,
.contact-band {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0;
}

.brands-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1.42fr);
  gap: 44px;
  align-items: start;
  position: relative;
}

.brands-band::before {
  content: "";
  position: absolute;
  inset: 32px -80px auto auto;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(182, 194, 255, 0.12);
  transform: rotate(18deg);
  background:
    linear-gradient(90deg, transparent 49%, rgba(182, 194, 255, 0.08) 50%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(182, 194, 255, 0.06) 50%, transparent 51%);
  background-size: 34px 34px;
  pointer-events: none;
  opacity: 0.55;
}

.section-heading h2,
.service-copy h2,
.contact-band h2 {
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(2rem, 4.5vw, 4.3rem);
  line-height: 1;
  letter-spacing: 0.01em;
}

.section-heading p:not(.kicker),
.service-copy p:not(.kicker),
.contact-band p:not(.kicker) {
  color: var(--muted);
  line-height: 1.65;
  font-size: 1.04rem;
}

.brand-note {
  margin-top: 18px;
  padding: 14px;
  border-left: 3px solid var(--accent);
  background: rgba(255, 255, 255, 0.045);
  color: var(--accent-soft) !important;
  font-size: 0.92rem !important;
}

.brand-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  position: relative;
  z-index: 1;
}

.brand-group,
.status-stack div {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  padding: 14px;
}

.brand-group {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  padding: 18px;
}

.brand-group::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(111, 134, 255, 0.12), transparent 34%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.025) 1px, transparent 1px, transparent 9px);
  opacity: 0.8;
  pointer-events: none;
}

.brand-group h3 {
  position: relative;
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display-font);
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: 0.01em;
}

.brand-group p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.brand-chipset {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.brand-chipset span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border: 1px solid rgba(182, 194, 255, 0.2);
  background:
    linear-gradient(135deg, transparent 0 8px, rgba(255, 255, 255, 0.06) 8px),
    rgba(0, 0, 0, 0.24);
  clip-path: polygon(9px 0, 100% 0, 100% calc(100% - 9px), calc(100% - 9px) 100%, 0 100%, 0 9px);
  color: var(--silver);
  font-size: 0.9rem;
  font-weight: 700;
}

.brand-chipset span:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background:
    linear-gradient(135deg, transparent 0 8px, rgba(255, 255, 255, 0.08) 8px),
    rgba(111, 134, 255, 0.14);
}

.trust-band,
.seo-links,
.faq-band {
  border-top: 1px solid var(--line);
}

.trust-grid,
.service-link-grid,
.faq-list {
  display: grid;
  gap: 12px;
}

.trust-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.trust-grid article,
.faq-list details,
.service-link-grid a {
  border: 1px solid rgba(182, 194, 255, 0.22);
  background:
    linear-gradient(145deg, rgba(111, 134, 255, 0.1), rgba(255, 255, 255, 0.025)),
    rgba(5, 5, 6, 0.68);
  padding: 18px;
}

.trust-grid strong,
.faq-list summary,
.service-link-grid a {
  color: var(--accent-soft);
  font-family: var(--display-font);
  font-size: 1.08rem;
  font-weight: 850;
  letter-spacing: 0.02em;
}

.trust-grid span,
.faq-list p {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.6;
}

.seo-links {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.58fr);
  gap: 24px;
  align-items: center;
}

.seo-links h2 {
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
}

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

.service-link-grid a {
  min-height: 92px;
  display: flex;
  align-items: end;
  text-decoration: none;
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
}

.service-link-grid a:hover,
.service-link-grid a:focus-visible {
  border-color: rgba(255, 255, 255, 0.4);
  background:
    linear-gradient(145deg, rgba(111, 134, 255, 0.22), rgba(255, 255, 255, 0.04)),
    rgba(5, 5, 6, 0.72);
}

.faq-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.58fr);
  gap: 24px;
}

.faq-list summary {
  cursor: pointer;
}

.service-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.55fr);
  gap: 34px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.status-stack {
  display: grid;
  gap: 10px;
}

.status-stack div {
  display: grid;
  gap: 4px;
}

.status-stack strong {
  color: var(--accent-soft);
  text-transform: uppercase;
  font-size: 0.75rem;
  font-family: var(--display-font);
  letter-spacing: 0.04em;
}

.status-stack span {
  color: var(--silver);
}

.contact-band {
  min-height: 42vh;
  display: grid;
  grid-template-columns: minmax(280px, 0.38fr) minmax(0, 0.62fr);
  align-items: start;
  gap: 36px;
}

.design-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: 24px;
  align-items: stretch;
  border-top: 1px solid var(--line);
}

.design-panel,
.design-grid article {
  border: 1px solid rgba(182, 194, 255, 0.22);
  background:
    linear-gradient(145deg, rgba(111, 134, 255, 0.11), rgba(255, 255, 255, 0.03)),
    rgba(5, 5, 6, 0.68);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.34);
}

.design-panel {
  padding: clamp(22px, 4vw, 42px);
}

.design-panel h2 {
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(2.1rem, 5vw, 4.2rem);
  line-height: 1;
}

.design-panel p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.05rem;
}

.design-actions {
  margin-top: 26px;
}

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

.design-grid article {
  min-height: 170px;
  padding: 18px;
  display: grid;
  align-content: end;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.design-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 49%, rgba(182, 194, 255, 0.07) 50%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(182, 194, 255, 0.055) 50%, transparent 51%);
  background-size: 30px 30px;
  opacity: 0.75;
}

.design-grid strong,
.design-grid span {
  position: relative;
}

.design-grid strong {
  color: var(--accent-soft);
  font-family: var(--display-font);
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.design-grid span {
  color: var(--silver);
  line-height: 1.5;
}

.request-section {
  padding-top: 92px;
}

.request-copy {
  position: sticky;
  top: 24px;
}

.request-direct {
  margin-top: 28px;
}

.repair-form {
  border: 1px solid rgba(182, 194, 255, 0.24);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(5, 5, 6, 0.72);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.46), 0 0 44px rgba(111, 134, 255, 0.12);
  backdrop-filter: blur(18px);
  padding: clamp(16px, 3vw, 28px);
}

.form-stage {
  display: none;
}

.form-stage.active {
  display: block;
}

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

.repair-form label {
  display: grid;
  gap: 8px;
}

.repair-form label > span,
.terms-row span {
  color: var(--accent-soft);
  font-family: var(--display-font);
  font-size: 0.82rem;
  letter-spacing: 0.03em;
}

.repair-form .wide {
  grid-column: 1 / -1;
}

.repair-form input,
.repair-form select,
.repair-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(182, 194, 255, 0.2);
  background:
    linear-gradient(135deg, transparent 0 12px, rgba(255, 255, 255, 0.055) 12px),
    rgba(0, 0, 0, 0.36);
  color: var(--silver);
  font: inherit;
  padding: 12px 14px;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

.repair-form textarea {
  resize: vertical;
  min-height: 118px;
}

.repair-form input:focus,
.repair-form select:focus,
.repair-form textarea:focus {
  outline: 2px solid rgba(111, 134, 255, 0.45);
  border-color: rgba(255, 255, 255, 0.42);
}

.repair-form option {
  background: #111418;
  color: var(--silver);
}

.terms-row {
  margin-top: 18px;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: start;
  padding: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.terms-row input {
  min-height: 20px;
  width: 20px;
  clip-path: none;
  accent-color: var(--accent);
}

.form-submit {
  width: 100%;
  margin-top: 18px;
  border: 0;
  cursor: pointer;
}

.form-status {
  min-height: 22px;
  margin: 12px 0 0;
  color: #ffb5aa;
  font-size: 0.92rem;
  text-align: center;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.loading-stage,
.thanks-stage {
  min-height: 430px;
  place-content: center;
  text-align: center;
}

.loading-stage.active,
.thanks-stage.active {
  display: grid;
}

.loading-stage h3,
.thanks-stage h3 {
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(2.1rem, 5vw, 4rem);
}

.loading-track {
  width: min(420px, 100%);
  height: 16px;
  margin: 24px auto 12px;
  border: 1px solid rgba(182, 194, 255, 0.32);
  background: rgba(0, 0, 0, 0.38);
  overflow: hidden;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.loading-track span {
  display: block;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--accent-strong), var(--accent-soft), var(--accent));
  transform: translateX(-100%);
  animation: requestLoad 1.8s ease-in-out forwards;
}

.thanks-actions {
  justify-content: center;
}

@keyframes requestLoad {
  to {
    transform: translateX(0);
  }
}

.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 76px 0 28px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.15fr) repeat(3, minmax(0, 0.72fr));
  gap: 16px;
}

.site-footer section {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  padding: 18px;
}

.site-footer .brand {
  margin-left: 0;
}

.site-footer h3 {
  margin: 0 0 14px;
  color: var(--accent-soft);
  font-family: var(--display-font);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.site-footer p,
.site-footer li,
.footer-bottom {
  color: var(--muted);
  line-height: 1.6;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
  list-style: none;
}

.site-footer li {
  position: relative;
  padding-left: 16px;
}

.site-footer li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  background: var(--accent);
}

.footer-actions {
  margin-top: 20px;
}

.footer-note {
  margin-top: 14px;
  font-size: 0.9rem;
  color: var(--accent-soft) !important;
}

.footer-bottom {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border: 1px solid var(--line);
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.92rem;
}

.service-page {
  background:
    linear-gradient(90deg, rgba(5, 5, 6, 0.94), rgba(5, 5, 6, 0.74)),
    url("assets/hero-kitchen.png") center / cover fixed;
}

.service-hero {
  width: min(980px, calc(100% - 32px));
  min-height: 72vh;
  margin: 0 auto;
  padding: 34px 0 80px;
  display: grid;
  align-content: center;
}

.service-hero .brand {
  margin: 0 0 80px;
}

.service-hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.92;
}

.service-hero p:not(.kicker) {
  max-width: 760px;
  color: var(--silver);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .topbar,
  .hero-grid,
  .equipment-wrap,
  .proof-strip,
  .content-band,
  .contact-band {
    width: min(100% - 24px, 680px);
  }

  .topbar,
  .equipment-wrap,
  .brands-band,
  .seo-links,
  .faq-band,
  .service-band,
  .design-band,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand {
    margin-left: 0;
  }

  nav {
    justify-content: flex-start;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 30px;
  }

  .intro-panel {
    justify-self: start;
    transform: none;
  }

  .hero-console {
    min-height: 430px;
    margin-top: 10px;
  }

  .console-tags {
    top: 24px;
  }

  .console-readout {
    right: 0;
    bottom: 8px;
  }

  .console-popup {
    left: 0;
    right: auto;
    top: 242px;
    bottom: auto;
    width: min(360px, 82vw);
  }

  .section-heading.compact {
    position: static;
  }

  .proof-strip {
    margin-top: -32px;
    grid-template-columns: 1fr;
  }

  .proof-strip div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-strip div:last-child {
    border-bottom: 0;
  }

  .game-panel {
    padding: 12px;
  }

  .brand-groups {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    margin-top: 0;
  }

  .request-copy {
    position: static;
  }

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

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

  .trust-grid,
  .service-link-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: auto;
  }

  .topbar,
  .hero-grid,
  .equipment-wrap,
  .proof-strip,
  .content-band,
  .contact-band,
  .site-footer {
    width: min(354px, calc(100vw - 36px));
    margin-left: 18px;
    margin-right: auto;
  }

  h1 {
    font-size: clamp(2.18rem, 9.8vw, 2.42rem);
  }

  .lead {
    max-width: 100%;
  }

  .hero-console {
    min-height: 360px;
    overflow: hidden;
  }

  .hero-console::before {
    inset: 13%;
  }

  .hero-console::after {
    inset: 24%;
  }

  .console-core {
    width: min(230px, 68vw);
  }

  .console-tags {
    top: 0;
    left: 0;
    width: 150px;
    font-size: 0.82rem;
  }

  .console-tags span {
    padding: 7px 8px;
  }

  .console-readout {
    right: 0;
    bottom: 0;
    width: 210px;
  }

  .console-popup {
    left: 0;
    right: auto;
    top: 184px;
    bottom: auto;
    width: 205px;
    padding: 12px;
  }

  .console-popup strong {
    font-size: 1.08rem;
  }

  .console-popup p {
    font-size: 0.82rem;
  }

  .console-readout strong {
    font-size: 1.08rem;
  }

  .brand small {
    font-size: 0.72rem;
  }

  .equipment-menu {
    grid-auto-columns: minmax(260px, 88%);
  }

  .panel-head {
    align-items: center;
    flex-direction: row;
  }

  .action,
  .quick-actions,
  .contact-actions,
  .design-actions,
  .footer-actions {
    width: 100%;
  }

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

  .footer-bottom {
    display: grid;
  }
}
