:root {
  --ink: #151719;
  --charcoal: #27292d;
  --panel: #f4f6f5;
  --panel-strong: #e9eeee;
  --line: #d9dfdf;
  --text: #243033;
  --muted: #627173;
  --cyan: #2fdde7;
  --cyan-dark: #087987;
  --green: #69b578;
  --white: #ffffff;
  --shadow: 0 20px 48px rgba(21, 23, 25, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
  letter-spacing: 0;
}

:focus-visible {
  outline: 3px solid rgba(47, 221, 231, 0.7);
  outline-offset: 3px;
}

.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: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
  padding: 14px 6vw;
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, min-height 180ms ease;
}

.site-header.is-scrolled {
  min-height: 68px;
  background: rgba(21, 23, 25, 0.94);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
  font-weight: 800;
}

.brand img {
  width: 64px;
  height: 50px;
  object-fit: contain;
}

.brand span {
  font-size: 0.98rem;
  line-height: 1.1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--cyan);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

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

.hero {
  position: relative;
  min-height: 82vh;
  display: grid;
  align-items: end;
  isolation: isolate;
  color: var(--white);
  background:
    linear-gradient(rgba(21, 23, 25, 0.48), rgba(21, 23, 25, 0.68)),
    url("assets/network-cabling.jpg") center / cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 78% 28%, rgba(47, 221, 231, 0.28), transparent 28%),
    linear-gradient(90deg, rgba(21, 23, 25, 0.92), rgba(21, 23, 25, 0.62) 52%, rgba(21, 23, 25, 0.28));
}

.hero-inner {
  width: min(1120px, 88vw);
  padding: 130px 0 74px;
  margin: 0 auto;
}

.hero-logo {
  width: 230px;
  height: auto;
  margin-bottom: 28px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--cyan-dark);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--cyan);
}

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

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  color: var(--white);
  font-size: 4rem;
  line-height: 1.02;
}

h2 {
  color: var(--ink);
  font-size: 2.55rem;
  line-height: 1.08;
}

h3 {
  color: var(--ink);
  font-size: 1.22rem;
  line-height: 1.22;
}

p {
  line-height: 1.72;
}

.hero-copy {
  max-width: 720px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.18rem;
}

.hero-actions,
.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
}

.button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-primary {
  color: var(--ink);
  background: var(--cyan);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--white);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--cyan);
  color: var(--cyan);
}

.scroll-cue {
  position: absolute;
  right: 6vw;
  bottom: 28px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  color: var(--white);
}

.scroll-cue svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1120px, 88vw);
  margin: -34px auto 0;
  position: relative;
  z-index: 3;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.quick-info div {
  padding: 24px 28px;
  border-right: 1px solid var(--line);
}

.quick-info div:last-child {
  border-right: 0;
}

.quick-info span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.quick-info strong {
  color: var(--ink);
  font-size: 1.08rem;
}

.section {
  width: min(1120px, 88vw);
  margin: 0 auto;
  padding: 96px 0;
}

.section,
.smart-hands-detail {
  scroll-margin-top: 88px;
}

.section-heading {
  max-width: 620px;
}

.section-heading.centered {
  margin: 0 auto 42px;
  text-align: center;
}

.intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: start;
}

.intro-copy {
  color: var(--muted);
  font-size: 1.06rem;
}

.audience {
  padding-top: 0;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 38px;
}

.audience-grid article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 32px rgba(21, 23, 25, 0.06);
}

.audience-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--cyan);
  font-weight: 900;
}

.audience-grid h3 {
  margin-bottom: 12px;
}

.audience-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.check-list li {
  position: relative;
  padding-left: 32px;
  color: var(--text);
  font-weight: 750;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25em;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: inset 0 0 0 5px var(--white);
  outline: 2px solid var(--green);
}

.services {
  width: 100%;
  max-width: none;
  padding: 96px 6vw;
  background: var(--panel);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 32px rgba(21, 23, 25, 0.08);
}

.service-card img,
.service-visual {
  width: 100%;
  aspect-ratio: 4 / 3;
}

.service-card img {
  object-fit: cover;
}

.service-visual {
  display: grid;
  place-items: center;
  color: var(--cyan);
  background: linear-gradient(145deg, var(--ink), #303338);
}

.service-visual svg {
  width: 82%;
  height: 82%;
  fill: none;
  stroke: currentColor;
  stroke-width: 7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-visual rect {
  fill: rgba(47, 221, 231, 0.08);
}

.service-body {
  padding: 24px;
}

.service-body h3 {
  min-height: 60px;
  margin-bottom: 14px;
}

.service-body p {
  min-height: 150px;
  margin-bottom: 18px;
  color: var(--muted);
}

.service-body a {
  color: var(--cyan-dark);
  font-weight: 800;
  text-decoration: none;
}

.service-body a:hover,
.service-body a:focus-visible {
  text-decoration: underline;
}

.problems {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 56px;
  align-items: start;
}

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

.problem-grid a {
  display: grid;
  gap: 8px;
  min-height: 142px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--text);
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(21, 23, 25, 0.05);
}

.problem-grid a:hover,
.problem-grid a:focus-visible {
  border-color: var(--cyan);
  transform: translateY(-2px);
}

.problem-grid strong {
  color: var(--ink);
  font-size: 1.02rem;
}

.problem-grid span {
  color: var(--muted);
  line-height: 1.55;
}

.smart-hands-detail {
  padding: 96px 6vw;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(21, 23, 25, 0.96), rgba(21, 23, 25, 0.78)),
    url("assets/network-cabling.jpg") center / cover;
}

.smart-hands-inner {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 52px;
  width: min(1120px, 100%);
  margin: 0 auto;
  align-items: center;
}

.smart-hands-detail h2,
.smart-hands-detail h3 {
  color: var(--white);
}

.smart-hands-copy p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
}

.smart-hands-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.smart-hands-list article {
  min-height: 184px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.smart-hands-list h3 {
  margin-bottom: 10px;
}

.smart-hands-list p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.process {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.steps {
  display: grid;
  gap: 18px;
}

.steps article {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.steps article:first-child {
  border-top: 1px solid var(--line);
}

.steps span {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--cyan);
  font-weight: 900;
}

.steps h3 {
  grid-column: 2;
  margin-bottom: 8px;
}

.steps p {
  grid-column: 2;
  margin-bottom: 0;
  color: var(--muted);
}

.service-area {
  padding-top: 0;
}

.area-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: center;
  margin-top: 34px;
  padding: 34px;
  border-radius: 8px;
  background: var(--panel-strong);
}

.area-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.area-list li {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
  font-weight: 800;
}

.faq {
  width: 100%;
  max-width: none;
  padding: 96px 6vw;
  background: var(--panel);
}

.faq-list {
  display: grid;
  gap: 12px;
  width: min(860px, 100%);
  margin: 0 auto;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--ink);
  font-weight: 850;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.contact {
  width: 100%;
  max-width: none;
  padding: 96px 6vw;
  color: var(--white);
  background:
    linear-gradient(rgba(21, 23, 25, 0.87), rgba(21, 23, 25, 0.87)),
    url("assets/computer-repair.jpg") center / cover;
}

.contact-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
  width: min(1120px, 100%);
  margin: 0 auto;
  align-items: start;
}

.contact h2,
.contact h3 {
  color: var(--white);
}

.contact-copy p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.78);
}

.contact-methods {
  display: grid;
  margin-top: 28px;
}

.contact-methods a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  max-width: 100%;
  min-height: 44px;
  color: var(--white);
  text-decoration: none;
  font-weight: 750;
}

.contact-methods a:hover,
.contact-methods a:focus-visible {
  color: var(--cyan);
}

.contact-methods svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-methods span {
  overflow-wrap: anywhere;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 750;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: var(--white);
  background: rgba(21, 23, 25, 0.72);
  outline: none;
}

.contact-form input {
  height: 48px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 136px;
  resize: vertical;
  padding: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(47, 221, 231, 0.22);
}

.contact-form .button {
  width: 100%;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
  line-height: 1.45;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 112px;
  padding: 28px 6vw;
  color: rgba(255, 255, 255, 0.72);
  background: var(--ink);
}

.site-footer img {
  width: 58px;
  height: auto;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--cyan);
  text-decoration: none;
  font-weight: 800;
}

@media (max-width: 1080px) {
  .site-nav {
    gap: 16px;
  }

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

  .service-body h3,
  .service-body p {
    min-height: 0;
  }
}

@media (max-width: 820px) {
  .site-header {
    min-height: 72px;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: calc(100% - 1px);
    left: 6vw;
    right: 6vw;
    display: none;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(21, 23, 25, 0.96);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
    gap: 4px;
  }

  .site-nav a {
    padding: 12px 10px;
  }

  .hero {
    min-height: 80vh;
  }

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

  .hero-logo {
    width: 190px;
  }

  h1 {
    font-size: 2.7rem;
  }

  h2 {
    font-size: 2rem;
  }

  .quick-info,
  .intro,
  .problems,
  .smart-hands-inner,
  .process,
  .area-panel,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .quick-info {
    margin-top: 0;
    width: 100%;
    border-radius: 0;
    box-shadow: none;
  }

  .quick-info div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section,
  .services,
  .contact {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .intro,
  .problems,
  .smart-hands-inner,
  .process,
  .area-panel,
  .contact-panel {
    gap: 34px;
  }

  .audience-grid,
  .smart-hands-list {
    grid-template-columns: 1fr;
  }

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

  .site-footer {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 620px) {
  .brand span {
    display: none;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

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

  .audience-grid article,
  .problem-grid a,
  .area-panel,
  .contact-form {
    padding: 22px;
  }

  .smart-hands-detail,
  .faq {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .steps article {
    grid-template-columns: 1fr;
  }

  .steps span,
  .steps h3,
  .steps p {
    grid-column: auto;
    grid-row: auto;
  }

  .scroll-cue {
    display: none;
  }
}
