:root {
  --ink: #092c66;
  --muted: #667386;
  --line: #dce3ea;
  --blue: #087cf0;
  --cyan: #68d4ff;
  --lime: #8fe3ff;
  --paper: #eaf3ff;
  --white: #fff;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Manrope, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
}
.site-header {
  background: rgba(245, 247, 250, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(10, 20, 35, 0.08);
  position: sticky;
  top: 0;
  z-index: 20;
}
.nav {
  height: 78px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font: 700 18px/1 "Space Grotesk";
  letter-spacing: 0.08em;
}
.brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}
.brand span span {
  color: var(--blue);
}
nav {
  display: flex;
  gap: 26px;
  margin-left: auto;
  color: #4f5e70;
  font-size: 14px;
}
nav a:hover,
.text-link:hover {
  color: var(--blue);
}
.top-phone {
  font-weight: 800;
  font-size: 14px;
  padding-left: 20px;
  border-left: 1px solid var(--line);
}
.menu-btn {
  display: none;
  background: none;
  border: 0;
  font-size: 24px;
}
.hero {
  padding: 78px 0 58px;
  overflow: hidden;
  background: linear-gradient(135deg, #eef5ff 0%, #f5f7fa 58%, #eaf7fb 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
  gap: 80px;
}
.eyebrow {
  font: 700 12px "Space Grotesk";
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 18px;
}
.hero h1,
.service-hero h1 {
  font: 700 clamp(44px, 6vw, 78px)/0.98 "Space Grotesk";
  letter-spacing: -0.06em;
  margin: 0 0 24px;
}
.hero h1 em {
  font-style: normal;
  color: var(--blue);
}
.hero p {
  max-width: 580px;
  color: var(--muted);
  font-size: 18px;
}
.hero-actions {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-top: 34px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border: 0;
  border-radius: 3px;
  background: var(--ink);
  color: #fff;
  padding: 16px 21px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.2s;
}
.btn:hover {
  background: var(--blue);
  transform: translateY(-2px);
}
.btn span {
  font-size: 20px;
  color: var(--lime);
}
.text-link {
  font-weight: 800;
  color: var(--ink);
}
.proof {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 55px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.25;
}
.proof b {
  font: 700 29px "Space Grotesk";
  color: var(--ink);
  margin-left: 14px;
}
.hero-visual {
  position: relative;
}
.hero-visual:before {
  content: "";
  position: absolute;
  inset: -25px -25px 25px 25px;
  border: 1px solid #c5d9ea;
  z-index: 0;
}
.hero-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 2px;
  filter: saturate(0.9);
}
.visual-note {
  position: absolute;
  z-index: 2;
  bottom: 24px;
  left: -28px;
  background: var(--lime);
  padding: 16px 20px;
  display: grid;
  box-shadow: 10px 12px 0 rgba(10, 20, 35, 0.1);
}
.visual-note strong {
  font: 700 18px "Space Grotesk";
}
.visual-note span {
  font-size: 12px;
}
.ticker {
  background: var(--ink);
  color: #fff;
}
.ticker-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  font-size: 12px;
  color: #dce7f4;
  flex-wrap: wrap;
}
.ticker-row span:first-child {
  color: var(--lime);
}
.section {
  padding: 104px 0;
}
.section-head {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  align-items: end;
  margin-bottom: 45px;
}
.section-head h2,
.about h2,
.contact-grid h2,
.cta-strip h2 {
  font: 400 clamp(25px, 4vw, 44px)/1.05 "Space Grotesk";
  letter-spacing: -0.05em;
  margin: 0;
}
.section-head p {
  max-width: 390px;
  color: var(--muted);
  margin: 0;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service-tile {
  background: #fff;
  border: 1px solid var(--line);
  transition: 0.25s;
  display: flex;
  flex-direction: column;
}
.service-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(10, 20, 35, 0.1);
  border-color: #b7cbe5;
}
.tile-img {
  height: 180px;
  overflow: hidden;
  background: #eaf1f6;
}
.tile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}
.service-tile:hover .tile-img img {
  transform: scale(1.04);
}
.tile-copy {
  padding: 22px;
}
.tile-copy > span {
  font: 700 12px "Space Grotesk";
  color: var(--blue);
}
.tile-copy h3 {
  font: 700 24px/1.05 "Space Grotesk";
  margin: 12px 0 8px;
}
.tile-copy p {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 20px;
}
.tile-copy b {
  font-size: 13px;
}
.tile-copy i {
  font-style: normal;
  color: var(--blue);
  font-size: 18px;
}
.dark {
  background: var(--ink);
  color: #fff;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.about-image {
  position: relative;
}
.about-image img {
  height: 500px;
  width: 100%;
  object-fit: cover;
}
.stamp {
  position: absolute;
  right: -25px;
  bottom: 30px;
  background: var(--blue);
  color: #fff;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
  font: 700 30px "Space Grotesk";
  transform: rotate(12deg);
}
.stamp small {
  font: 700 11px Manrope;
  letter-spacing: 0.1em;
}
.about p {
  color: var(--muted);
  max-width: 490px;
  font-size: 17px;
}
.check-list {
  margin-top: 36px;
  border-top: 1px solid var(--line);
}
.check-list > div {
  display: flex;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.check-list b {
  font: 700 13px "Space Grotesk";
  color: var(--blue);
}
.check-list span {
  display: grid;
  gap: 4px;
}
.check-list small {
  color: var(--muted);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}
.dark .eyebrow {
  color: var(--cyan);
}
.contact-grid p {
  color: #9caabd;
  max-width: 460px;
}
.contact-lines {
  display: grid;
  gap: 10px;
  margin-top: 36px;
}
.contact-lines a {
  font: 600 18px "Space Grotesk";
  color: var(--cyan);
}
.lead-form {
  background: #fff;
  color: var(--ink);
  padding: 30px;
  display: grid;
  gap: 15px;
}
.lead-form label {
  font-size: 13px;
  font-weight: 800;
  display: grid;
  gap: 7px;
}
.lead-form input,
.lead-form textarea {
  font: inherit;
  border: 1px solid var(--line);
  padding: 13px 14px;
  outline: none;
}
.lead-form textarea {
  min-height: 90px;
  resize: vertical;
}
.lead-form input:focus,
.lead-form textarea:focus {
  border-color: var(--blue);
}
.lead-form small {
  color: var(--muted);
  font-size: 11px;
}
.form-success {
  padding: 12px;
  background: #e9f8ca;
  font-size: 13px;
  font-weight: 700;
}
.branches {
  background: #fff;
}
.branches-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 18px;
}
.map {
  min-height: 540px;
  border: 1px solid var(--line);
}
.map iframe {
  border: 0;
  width: 100%;
  height: 100%;
  min-height: 540px;
}
.branch-list {
  display: grid;
  gap: 12px;
}
.branch-list article {
  border: 1px solid var(--line);
  padding: 20px;
  display: grid;
  gap: 7px;
}
.branch-list b {
  font-size: 12px;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.branch-list strong {
  font: 700 19px "Space Grotesk";
}
.branch-list span {
  font-size: 13px;
  color: var(--muted);
}
.branch-list a {
  font-size: 13px;
  font-weight: 800;
  margin-top: 8px;
}
.service-hero {
  padding: 88px 0;
  background: linear-gradient(120deg, #eaf3ff, #f7fbfd);
}
.service-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.service-hero p {
  color: var(--muted);
  font-size: 18px;
  max-width: 520px;
  margin-bottom: 30px;
}
.service-hero img {
  width: 100%;
  height: 390px;
  object-fit: cover;
}
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}
.detail-grid p {
  color: var(--muted);
  font-size: 17px;
  max-width: 520px;
}
.detail-points {
  border-top: 1px solid var(--line);
}
.detail-points div {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 5px;
}
.detail-points b {
  color: var(--blue);
  grid-row: span 2;
}
.detail-points strong {
  font: 700 20px "Space Grotesk";
}
.detail-points span {
  color: var(--muted);
  font-size: 14px;
}
.compact {
  padding: 70px 0;
}
.cta-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
footer {
  background: #050c16;
  color: #b4c0cf;
  padding: 55px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
}
.footer-grid .brand {
  color: #fff;
  margin-bottom: 20px;
}
.footer-grid p {
  max-width: 300px;
  font-size: 13px;
}
.footer-grid > div:not(:first-child) {
  display: grid;
  align-content: start;
  gap: 8px;
  font-size: 13px;
}
.footer-grid b {
  color: #fff;
  margin-bottom: 7px;
}
.copyright {
  border-top: 1px solid #263343;
  margin-top: 45px;
  padding-top: 17px;
  font-size: 12px;
  color: #69798d;
}
@media (max-width: 800px) {
  .wrap {
    width: min(100% - 28px, 600px);
  }
  .nav {
    height: 68px;
  }
  .menu-btn {
    display: block;
    margin-left: auto;
  }
  .nav nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 22px;
    flex-direction: column;
    gap: 16px;
    border-bottom: 1px solid var(--line);
  }
  .nav nav.open {
    display: flex;
  }
  .top-phone {
    display: none;
  }
  .hero {
    padding: 55px 0;
  }
  .hero-grid,
  .about-grid,
  .contact-grid,
  .service-hero-grid,
  .detail-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero h1,
  .service-hero h1 {
    font-size: 47px;
  }
  .hero-visual img {
    height: 330px;
  }
  .hero-visual:before {
    inset: -12px -12px 12px 12px;
  }
  .visual-note {
    left: -8px;
  }
  .section {
    padding: 70px 0;
  }
  .section-head {
    display: block;
  }
  .section-head p {
    margin-top: 20px;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .tile-img {
    height: 200px;
  }
  .about-image img {
    height: 340px;
  }
  .branches-grid {
    grid-template-columns: 1fr;
  }
  .map,
  .map iframe {
    min-height: 360px;
  }
  .cta-strip {
    display: grid;
    justify-content: initial;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Updated visual direction, full image framing and service dropdown */
.nav-services {
  position: relative;
}
.nav-services-btn {
  border: 0;
  background: none;
  font: inherit;
  color: inherit;
  padding: 0;
  cursor: pointer;
}
.nav-services-btn span {
  color: var(--blue);
  font-size: 16px;
  margin-left: 4px;
}
.services-menu {
  position: absolute;
  top: 28px;
  left: -18px;
  width: 260px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 36px rgba(10, 20, 35, 0.14);
  padding: 10px;
  display: none;
  z-index: 30;
}
.nav-services:hover .services-menu,
.nav-services:focus-within .services-menu,
.nav-services.open .services-menu {
  display: grid;
}
.services-menu a {
  display: block;
  padding: 10px 12px !important;
  font-size: 13px !important;
  color: var(--ink) !important;
}
.services-menu a:hover {
  background: #f7e9e2;
  color: var(--blue) !important;
}
.tile-img img,
.service-hero img {
  object-fit: contain;
  background: #edf1f3;
  padding: 12px;
}
.hero-visual img {
  object-fit: contain;
  background: #e6edf0;
}
.price-section {
  background: #fff;
  padding-top: 80px;
}
.price-note {
  max-width: 640px;
  color: var(--muted);
  margin: 12px 0 28px;
}
.price-table {
  border-top: 1px solid var(--line);
  max-width: 760px;
}
.price-table div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.price-table strong {
  font: 700 17px "Space Grotesk";
}
.price-table b {
  color: var(--blue);
  font: 700 17px "Space Grotesk";
}
@media (max-width: 800px) {
  .nav-services {
    display: block;
  }
  .services-menu {
    position: static;
    width: auto;
    box-shadow: none;
    border: 0;
    padding: 4px 0 4px 12px;
    background: #faf7f4;
  }
  .nav-services:hover .services-menu {
    display: none;
  }
  .nav-services:focus-within .services-menu {
    display: grid;
  }
  .price-table div {
    padding: 15px 0;
  }
  .price-table strong,
  .price-table b {
    font-size: 15px;
  }
}
/* Glass controls and a quiet technical schematic in the background */
body {
  position: relative;
  background-color: var(--paper);
  background-image:
    radial-gradient(
      circle at 12% 18%,
      rgba(212, 91, 69, 0.09) 0 2px,
      transparent 3px
    ),
    radial-gradient(
      circle at 88% 72%,
      rgba(120, 214, 194, 0.12) 0 2px,
      transparent 3px
    ),
    linear-gradient(
      115deg,
      transparent 0 47%,
      rgba(10, 20, 35, 0.035) 47.1% 47.2%,
      transparent 47.3% 100%
    ),
    linear-gradient(
      25deg,
      transparent 0 58%,
      rgba(10, 20, 35, 0.03) 58.1% 58.2%,
      transparent 58.3% 100%
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0 59px,
      rgba(10, 20, 35, 0.025) 60px,
      transparent 61px
    ),
    repeating-linear-gradient(
      90deg,
      transparent 0 79px,
      rgba(10, 20, 35, 0.02) 80px,
      transparent 81px
    );
  background-attachment: fixed;
}
.btn {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.58),
    rgba(255, 255, 255, 0.22)
  );
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow:
    0 10px 24px rgba(26, 39, 54, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.btn:hover {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0.4)
  );
  color: var(--blue);
  box-shadow:
    0 14px 30px rgba(26, 39, 54, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.btn span {
  color: var(--blue);
}
.dark .btn {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.82),
    rgba(255, 255, 255, 0.42)
  );
  color: var(--ink);
}
.dark .btn:hover {
  color: var(--blue);
}
.section,
.hero,
.branches,
footer {
  position: relative;
}
.section > *,
.hero > *,
.branches > * {
  position: relative;
  z-index: 1;
}
.hero:before,
.section:not(.dark):before,
.branches:before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 84% 14%,
      rgba(212, 91, 69, 0.07),
      transparent 24%
    ),
    radial-gradient(
      circle at 9% 82%,
      rgba(120, 214, 194, 0.08),
      transparent 26%
    );
}

/* Blue TouchMaster brand, visible logo and circuit-board background */
body {
  background-color: #eaf3ff;
  background-image:
    linear-gradient(rgba(234, 243, 255, 0.92), rgba(234, 243, 255, 0.92)),
    url("/assets/generated-circuit-bg.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.site-header {
  background: rgba(5, 31, 72, 0.9);
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.16);
}
.site-header nav,
.site-header .top-phone {
  color: #e9f4ff;
}
.site-header .top-phone {
  border-left-color: rgba(255, 255, 255, 0.25);
}
.brand img {
  width: 150px;
  height: auto;
  object-fit: contain;
}
.brand > span {
  display: none;
}
.hero {
  background: linear-gradient(
    135deg,
    rgba(222, 240, 255, 0.94),
    rgba(240, 248, 255, 0.86) 58%,
    rgba(213, 239, 255, 0.92)
  );
}
.ticker,
.dark {
  background: #061f4d;
}
.services-menu {
  background: rgba(7, 37, 87, 0.97);
  border-color: rgba(255, 255, 255, 0.18);
}
.services-menu a {
  color: #fff !important;
}
.services-menu a:hover {
  background: rgba(8, 124, 240, 0.3);
  color: #fff !important;
}
.nav-services-btn {
  color: #fff;
}
.btn {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.72),
    rgba(160, 213, 255, 0.3)
  );
  border-color: rgba(255, 255, 255, 0.8);
  color: #092c66;
}
.btn:hover {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95),
    rgba(113, 202, 255, 0.5)
  );
  color: #0757b7;
}
.dark .btn {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.86),
    rgba(120, 214, 255, 0.45)
  );
  color: #092c66;
}
.section:not(.dark),
.branches {
  background: rgba(245, 250, 255, 0.8);
}
.about-image img,
.hero-visual img {
  background: #d6ecff;
}
.footer-grid .brand img {
  width: 150px;
}
.footer-grid .brand {
  color: #fff;
}
@media (max-width: 800px) {
  .brand img {
    width: 128px;
  }
  .nav nav {
    background: #061f4d;
  }
  .nav nav a {
    color: #fff;
  }
  .services-menu {
    background: rgba(6, 31, 77, 0.98);
  }
}
/* Final hosting-ready glass composition: the circuit photo is intentionally visible behind the content */
body {
  isolation: isolate;
  background: #08285b !important;
  background-image: none !important;
}
body::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(
      115deg,
      rgba(3, 24, 60, 0.82),
      rgba(7, 73, 140, 0.5) 48%,
      rgba(2, 20, 52, 0.86)
    ),
    url("/assets/generated-circuit-bg.png");
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  opacity: 0.9;
}
.site-header {
  background: rgba(4, 26, 64, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.hero {
  background: linear-gradient(
    125deg,
    rgba(231, 244, 255, 0.88),
    rgba(236, 248, 255, 0.6) 58%,
    rgba(192, 227, 255, 0.68)
  );
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.section:not(.dark),
.branches {
  background: rgba(235, 246, 255, 0.68);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.service-hero {
  background: linear-gradient(
    125deg,
    rgba(225, 242, 255, 0.84),
    rgba(183, 222, 255, 0.58)
  );
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.service-tile,
.lead-form,
.branch-list article,
.price-section {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-color: rgba(255, 255, 255, 0.82);
}
.about-image img,
.hero-visual img,
.service-hero img {
  box-shadow: 0 18px 45px rgba(3, 31, 75, 0.22);
}
.dark {
  background: rgba(3, 24, 60, 0.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
/* Rounded service artwork without white boxes */
.service-hero img {
  border-radius: 30px;
  object-fit: contain;
  background: linear-gradient(
    145deg,
    rgba(3, 29, 74, 0.96),
    rgba(8, 93, 176, 0.72)
  );
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 24px 60px rgba(2, 22, 58, 0.3);
}
.tile-img {
  border-radius: 22px 22px 0 0;
  background: linear-gradient(145deg, #061d4c, #116fc4);
  padding: 10px;
  overflow: hidden;
}
.tile-img img {
  border-radius: 16px;
  background: transparent;
  padding: 0;
  object-fit: contain;
}
.service-hero-grid > img {
  overflow: hidden;
}
@media (max-width: 800px) {
  .service-hero img {
    border-radius: 22px;
  }
}
/* Rounded service cards on the home page */
.service-tile {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(4, 32, 78, 0.1);
}
.service-tile:hover {
  box-shadow: 0 20px 42px rgba(4, 32, 78, 0.18);
}
.tile-copy {
  background: rgba(255, 255, 255, 0.82);
}
.problems-section {
  background: rgba(232, 244, 255, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.problems-intro {
  max-width: 820px;
  color: var(--muted);
  font-size: 17px;
  margin: 16px 0 34px;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.problem-grid article {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 10px 26px rgba(4, 32, 78, 0.08);
}
.problem-grid b {
  font: 700 20px/1.1 "Space Grotesk";
  color: var(--ink);
}
.problem-grid p {
  color: var(--muted);
  font-size: 14px;
  margin: 12px 0 0;
}
@media (max-width: 800px) {
  .problem-grid {
    grid-template-columns: 1fr;
  }
  .problems-intro {
    font-size: 16px;
  }
}
/* Fast, stable service dropdown: no hover gap and no sluggish transition. */
.nav-services {
  padding-bottom: 8px;
  margin-bottom: -8px;
}
.services-menu {
  display: grid;
  top: calc(100% - 8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-4px);
  transition:
    opacity 0.12s ease,
    transform 0.12s ease,
    visibility 0s linear 0.12s;
}
.nav-services:hover .services-menu,
.nav-services:focus-within .services-menu,
.nav-services.open .services-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0s;
}
.services-menu a {
  transition:
    background-color 0.08s ease,
    color 0.08s ease;
}
@media (max-width: 800px) {
  .nav-services {
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .services-menu {
    display: none;
    top: auto;
    transform: none;
    transition:
      opacity 0.1s ease,
      visibility 0s linear 0.1s;
  }
  .nav-services:hover .services-menu {
    display: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  .nav-services:focus-within .services-menu,
  .nav-services.open .services-menu {
    display: grid;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.lead-form button:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
}
.form-success.error {
  background: #ffe6e6;
  color: #9e2020;
}
.branch-card {
  cursor: pointer;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease,
    transform 0.15s ease;
}
.branch-card:hover,
.branch-card:focus-visible,
.branch-card.active {
  border-color: var(--blue);
  box-shadow: 0 8px 24px rgba(8, 124, 240, 0.16);
  transform: translateY(-2px);
  outline: none;
}

/* Mobile overflow guard: keep the page locked to the viewport width. */
html {
  overflow-x: hidden;
  background: #050c16;
}

body {
  overflow: visible;
  overscroll-behavior-y: auto;
  background-color: #050c16 !important;
}

body::before {
  position: absolute;
  inset: 0;
  min-height: 100%;
  background-attachment: scroll;
}

footer {
  background: #050c16 !important;
}

/* Fresh repair-tech background and brighter blue text accents. */
:root {
  --muted: #4f6f92;
  --blue: #0b8cff;
  --cyan: #72e2ff;
}

body::before {
  background-image:
    linear-gradient(
      115deg,
      rgba(3, 24, 60, 0.72),
      rgba(7, 73, 140, 0.32) 48%,
      rgba(2, 20, 52, 0.76)
    ),
    url("/assets/generated-circuit-bg.png");
  opacity: 0.9;
}

@media (max-width: 800px) {
  /* The desktop badge intentionally hangs outside the image; keep it inside on phones. */
  .about-image {
    overflow: hidden;
    border-radius: 24px;
  }

  .stamp {
    right: 12px;
    bottom: 18px;
    width: 86px;
    height: 86px;
    font-size: 24px;
  }

  .stamp small {
    font-size: 9px;
  }
}

/* Ensure the circuit artwork is an actual visible page layer, not a hidden
   negative-z-index decoration.  This keeps the existing layout untouched while
   making the background render consistently in desktop and mobile browsers. */
body {
  background-color: #061c3f !important;
  background-image:
    linear-gradient(
      115deg,
      rgba(3, 24, 60, 0.34),
      rgba(7, 73, 140, 0.18) 48%,
      rgba(2, 20, 52, 0.42)
    ),
    url("/assets/generated-circuit-bg.png") !important;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  background-attachment: scroll;
}

body::before {
  z-index: 0;
  min-height: 100%;
  background-image:
    linear-gradient(
      115deg,
      rgba(3, 24, 60, 0.2),
      rgba(7, 73, 140, 0.08) 48%,
      rgba(2, 20, 52, 0.28)
    ),
    url("/assets/generated-circuit-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  opacity: 0.92;
}

body > * {
  position: relative;
  z-index: 1;
}

body > .site-header {
  position: sticky;
  z-index: 20;
}

/* Show the circuit texture through every large glass panel as well.  This is
   intentionally repeated on the panels because their own backgrounds can
   otherwise hide the page-level image completely. */
.hero,
.section:not(.dark),
.branches,
.service-hero {
  background-image:
    linear-gradient(
      115deg,
      rgba(224, 240, 255, 0.74),
      rgba(239, 248, 255, 0.48) 52%,
      rgba(205, 231, 255, 0.66)
    ),
    url("assets/generated-circuit-bg.png") !important;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.ticker,
.dark,
footer {
  background-image:
    linear-gradient(
      115deg,
      rgba(3, 24, 60, 0.78),
      rgba(7, 73, 140, 0.58) 48%,
      rgba(2, 20, 52, 0.82)
    ),
    url("") !important;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

body::before {
  background-image: url("assets/generated-circuit-bg.png");
  opacity: 0.28;
}

/* Final text contrast pass: keep the circuit texture visible without letting
   it compete with headings, descriptions, prices, or contact details. */
:root {
  --ink: #06285f;
  --muted: #244f7c;
  --line: rgba(22, 79, 133, 0.22);
}

body {
  color: #06285f;
}

.hero,
.section:not(.dark),
.branches,
.service-hero {
  background-image:
    linear-gradient(
      115deg,
      rgba(239, 247, 255, 0.9),
      rgba(242, 249, 255, 0.72) 52%,
      rgba(222, 240, 255, 0.82)
    ),
    url("assets/generated-circuit-bg.png") !important;
}

.hero h1,
.hero h2,
.section h2,
.service-hero h1,
.section h3,
.service-hero h2,
.detail-grid h2,
.section-head h2 {
  color: #06285f;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.88);
}

.hero p,
.section-head p,
.about p,
.detail-grid p,
.service-hero p,
.tile-copy p,
.check-list small,
.branch-card p,
.branch-list p {
  color: #244f7c !important;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.72);
}

.service-tile,
.lead-form,
.branch-list article,
.price-section {
  background: rgba(255, 255, 255, 0.9) !important;
}

.dark,
.ticker,
footer {
  color: #f5fbff;
}

.dark h2,
.dark h3,
.dark p,
.dark .contact-lines a,
.ticker,
footer,
footer p,
footer a,
footer small {
  text-shadow: 0 1px 2px rgba(0, 10, 30, 0.72);
}

.dark .contact-grid p,
.dark .contact-lines a,
.dark .eyebrow,
.dark .check-list small {
  color: #e4f4ff !important;
}

.dark h2,
.dark h3,
.dark .check-list strong {
  color: #ffffff;
}

/* Rounded section shells.  The homepage keeps its sections joined; service
   pages get breathing room between each rounded panel. */
section {
  border-radius: 30px;
  overflow: hidden;
}

body:has(.service-hero) main {
  display: grid;
  gap: 22px;
  padding: 22px 0;
}

body:has(.service-hero) main > section {
  margin: 0 20px;
}

@media (max-width: 800px) {
  section {
    border-radius: 22px;
  }

  body:has(.service-hero) main {
    gap: 14px;
    padding: 14px 0;
  }

  body:has(.service-hero) main > section {
    margin: 0 12px;
  }
}
