:root {
  --bg: #030705;
  --bg-soft: #060b08;
  --panel: #0a110c;
  --panel-strong: #0d1710;
  --text: #f5fff7;
  --muted: #97a49b;
  --muted-dark: #69756d;
  --green: #00ff41;
  --green-bright: #70ff8e;
  --green-deep: #00b82f;
  --line: rgba(161, 255, 184, 0.12);
  --line-strong: rgba(0, 255, 65, 0.3);
  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --sans: "Manrope", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow: 0 30px 100px rgba(0, 0, 0, 0.46);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--green);
  color: #001505;
}

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

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

[hidden] {
  display: none !important;
}

.shell {
  width: min(1240px, calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 10px;
  left: 10px;
  padding: 10px 15px;
  transform: translateY(-150%);
  border: 1px solid var(--green);
  border-radius: 8px;
  background: #020403;
  color: var(--green);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.scroll-progress {
  position: fixed;
  z-index: 1500;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green-deep), var(--green-bright));
  box-shadow: 0 0 14px rgba(0, 255, 65, 0.75);
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: 82px;
  border-bottom: 1px solid transparent;
  background: rgba(3, 7, 5, 0.7);
  transition: height 0.35s ease, border-color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
  backdrop-filter: blur(18px) saturate(125%);
}

.site-header.scrolled {
  height: 72px;
  border-color: var(--line);
  background: rgba(3, 7, 5, 0.93);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.28);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: 12px;
}

.brand:focus-visible,
.main-nav a:focus-visible,
.button:focus-visible,
.text-link:focus-visible,
.contact-list a:focus-visible,
.footer-nav a:focus-visible,
.hero-phone:focus-visible,
.map-panel > a:focus-visible,
.footer-bottom a:focus-visible,
.tracker-refresh:focus-visible,
.back-to-top:focus-visible,
.mobile-actions a:focus-visible,
.menu-button:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 4px;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 0 11px rgba(0, 255, 65, 0.22));
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  color: var(--green-bright);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-shadow: 0 0 16px rgba(0, 255, 65, 0.14);
}

.brand-copy small {
  margin-top: 7px;
  color: #718077;
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
}

.brand-copy .brand-tagline {
  color: #9ba89f;
  font-size: 0.76rem;
  letter-spacing: 0.025em;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 29px;
}

.main-nav > a:not(.nav-cta) {
  position: relative;
  padding-block: 10px;
  color: #b9c2bc;
  font-size: 0.85rem;
  font-weight: 700;
  transition: color 0.25s ease;
}

.main-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--green);
  content: "";
  transition: transform 0.3s ease;
}

.main-nav > a:not(.nav-cta):hover,
.main-nav > a:not(.nav-cta).active {
  color: #fff;
}

.main-nav > a:not(.nav-cta):hover::after,
.main-nav > a:not(.nav-cta).active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding: 0 19px;
  border: 1px solid rgba(0, 255, 65, 0.42);
  border-radius: 10px;
  background: rgba(0, 255, 65, 0.09);
  color: var(--green-bright);
  font-size: 0.82rem;
  font-weight: 800;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  background: var(--green);
  color: #001706;
  box-shadow: 0 10px 30px rgba(0, 255, 65, 0.14);
}

.menu-button {
  display: none;
  align-items: center;
  gap: 11px;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  padding: 0 11px;
  border: 1px solid rgba(0, 255, 65, 0.24);
  border-radius: 10px;
  background: rgba(0, 255, 65, 0.045);
  color: #e7eee9;
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.menu-button:hover,
.menu-button[aria-expanded="true"] {
  border-color: rgba(0, 255, 65, 0.55);
  background: rgba(0, 255, 65, 0.09);
}

.menu-button i,
.menu-button i::before,
.menu-button i::after {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--green);
  content: "";
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-button i {
  position: relative;
}

.menu-button i::before {
  position: absolute;
  top: -6px;
}

.menu-button i::after {
  position: absolute;
  top: 6px;
}

.menu-button[aria-expanded="true"] i {
  background: transparent;
}

.menu-button[aria-expanded="true"] i::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-button[aria-expanded="true"] i::after {
  top: 0;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  display: flex;
  min-height: 830px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #020604;
  isolation: isolate;
}

.matrix-canvas {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.11;
  mask-image: linear-gradient(90deg, transparent 3%, #000 58%, #000 100%);
}

.hero-grid {
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image: linear-gradient(rgba(0, 255, 65, 0.038) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 255, 65, 0.038) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: linear-gradient(to bottom, #000, transparent 91%);
}

.hero-glow {
  position: absolute;
  z-index: -1;
  top: 10%;
  right: -15%;
  width: 62vw;
  height: 62vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 255, 65, 0.11), transparent 66%);
  filter: blur(20px);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: clamp(40px, 6vw, 90px);
  padding-top: 118px;
  padding-bottom: 116px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.eyebrow,
.section-code {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 24px;
  color: var(--green-bright);
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.17em;
}

.eyebrow > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(0, 255, 65, 0.08), 0 0 18px var(--green);
  animation: statusPulse 2.2s ease-in-out infinite;
}

.hero h1,
.section-heading h2,
.tracker-heading h2,
.process-intro h2,
.about-copy h2 {
  margin: 0;
  font-size: clamp(3rem, 5.8vw, 5.5rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.066em;
}

.hero h1 em {
  color: var(--green);
  font-style: normal;
  text-shadow: 0 0 42px rgba(0, 255, 65, 0.19);
}

.hero-lead {
  max-width: 645px;
  margin: 28px 0 0;
  color: #abb6af;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.8;
}

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

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 54px;
  padding: 0 24px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease, color 0.28s ease, box-shadow 0.28s ease;
}

.button::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -70%;
  width: 50%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.26), transparent);
  content: "";
  transition: left 0.7s ease;
}

.button:hover::before {
  left: 125%;
}

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

.button-primary {
  border-color: var(--green);
  background: var(--green);
  color: #001806;
  box-shadow: 0 12px 36px rgba(0, 255, 65, 0.13);
}

.button-primary:hover {
  background: var(--green-bright);
  box-shadow: 0 18px 48px rgba(0, 255, 65, 0.2);
}

.button-ghost {
  border-color: rgba(0, 255, 65, 0.55);
  background: rgba(0, 255, 65, 0.075);
  color: var(--green-bright);
  box-shadow: inset 0 0 26px rgba(0, 255, 65, 0.035);
}

.button-ghost:hover {
  border-color: var(--green);
  background: var(--green);
  color: #001806;
}

.button-full {
  width: 100%;
}

.hero-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 25px;
  border-radius: 4px;
  color: #89968e;
  font-size: 0.85rem;
  transition: color 0.25s ease;
}

.hero-phone span {
  color: var(--green);
  font-size: 0.5rem;
  text-shadow: 0 0 10px var(--green);
}

.hero-phone:hover {
  color: #fff;
}

.hero-visual {
  position: relative;
  justify-self: end;
  width: min(100%, 510px);
  aspect-ratio: 1;
}

.simple-hero {
  min-height: 690px;
}

.simple-hero .matrix-canvas {
  opacity: 0.075;
}

.hero-layout.simple-hero-layout {
  grid-template-columns: minmax(0, 900px);
  justify-content: start;
  gap: 0;
  padding-top: 142px;
  padding-bottom: 90px;
}

.simple-hero h1 {
  font-size: clamp(2.9rem, 4.4vw, 4.35rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  word-spacing: 0.12em;
}

.simple-hero h1 .headline-line {
  display: block;
  white-space: nowrap;
}

.simple-hero .hero-lead {
  max-width: 720px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 700px;
  margin-top: 38px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-facts span {
  display: grid;
  align-content: center;
  min-height: 84px;
  padding: 15px 22px;
  color: #829087;
  font-size: 0.96rem;
  line-height: 1.45;
}

.hero-facts span + span {
  border-left: 1px solid var(--line);
}

.hero-facts strong {
  margin-bottom: 3px;
  color: var(--green);
  font-family: var(--mono);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
}

.visual-core {
  position: absolute;
  z-index: 3;
  inset: 14%;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(0, 255, 65, 0.22);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 255, 65, 0.06), rgba(3, 8, 5, 0.88) 68%);
  box-shadow: inset 0 0 70px rgba(0, 255, 65, 0.04), 0 0 90px rgba(0, 255, 65, 0.055);
}

.visual-core::before,
.visual-core::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.visual-core::before {
  inset: 8%;
  border: 1px solid rgba(0, 255, 65, 0.09);
}

.visual-core::after {
  inset: 18%;
  border: 1px dashed rgba(0, 255, 65, 0.13);
  animation: rotate 26s linear infinite reverse;
}

.visual-core img {
  position: relative;
  z-index: 2;
  width: 82%;
  filter: drop-shadow(0 0 24px rgba(0, 255, 65, 0.16));
}

.scan-line {
  position: absolute;
  z-index: 4;
  right: 7%;
  left: 7%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  box-shadow: 0 0 18px rgba(0, 255, 65, 0.75);
  animation: scan 4.4s ease-in-out infinite;
}

.orbit {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  inset: 5%;
  border: 1px dashed rgba(0, 255, 65, 0.24);
  animation: rotate 38s linear infinite;
}

.orbit-two {
  inset: 0;
  border: 1px solid rgba(0, 255, 65, 0.07);
}

.orbit-two::before,
.orbit-two::after {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 20px rgba(0, 255, 65, 0.85);
  content: "";
}

.orbit-two::before {
  top: 13%;
  left: 18%;
}

.orbit-two::after {
  right: 10%;
  bottom: 24%;
  width: 5px;
  height: 5px;
}

.signal-card,
.system-status {
  position: absolute;
  z-index: 5;
  border: 1px solid rgba(0, 255, 65, 0.22);
  background: rgba(4, 12, 7, 0.87);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(15px);
}

.signal-card {
  display: grid;
  min-width: 150px;
  padding: 13px 15px;
  border-radius: 9px;
}

.signal-card small {
  color: #6f7d73;
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
}

.signal-card strong {
  margin-top: 3px;
  color: #effff2;
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
}

.signal-card-one {
  top: 18%;
  left: -2%;
  animation: float 5s ease-in-out infinite;
}

.signal-card-two {
  right: -3%;
  bottom: 22%;
  animation: float 5.7s ease-in-out -1.5s infinite;
}

.system-status {
  bottom: 5%;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  transform: translateX(-50%);
  border-radius: 100px;
  color: #9caf9f;
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.13em;
  white-space: nowrap;
}

.system-status i,
.live-indicator i,
.appointment i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 11px rgba(0, 255, 65, 0.85);
}

.hero-strip {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1.35fr 1fr 0.9fr;
  border-top: 1px solid var(--line);
}

.hero-strip span {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 72px;
  padding: 0 28px 0 46px;
  color: #8d9b91;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-strip span::before {
  position: absolute;
  left: 25px;
  color: var(--green);
  content: "+";
  font-family: var(--mono);
}

.hero-strip span + span {
  border-left: 1px solid var(--line);
}

.section {
  position: relative;
  padding: 108px 0;
}

.section::after {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, transparent 39%, rgba(0, 255, 65, 0.15) 46%, var(--green) 50%, rgba(0, 255, 65, 0.15) 54%, transparent 61%, transparent 100%);
  background-repeat: no-repeat;
  background-size: 220% 100%;
  box-shadow: 0 0 16px rgba(0, 255, 65, 0.14);
  content: "";
  pointer-events: none;
  animation: sectionSweep 5.5s linear infinite;
}

.tracker-section {
  overflow: hidden;
  background: #050a07;
}

.tracker-section-last {
  border-top: 1px solid var(--line);
}

.tracker-section::before {
  position: absolute;
  top: -340px;
  left: -260px;
  width: 680px;
  height: 680px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 255, 65, 0.055), transparent 68%);
  content: "";
}

.tracker-heading,
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.58fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 60px;
}

.section-code {
  margin-bottom: 19px;
}

.section-code span {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(0, 255, 65, 0.28);
  border-radius: 6px;
  background: rgba(0, 255, 65, 0.055);
  color: var(--green);
  font-size: 0.7rem;
}

.tracker-heading h2,
.section-heading h2,
.process-intro h2,
.about-copy h2 {
  font-size: clamp(2.55rem, 4.5vw, 4.35rem);
  line-height: 1.04;
}

.tracker-heading > p,
.section-heading > p,
.process-intro > p:last-child {
  max-width: 510px;
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.tracker-console {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 255, 65, 0.22);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(13, 24, 16, 0.96), rgba(5, 11, 7, 0.98));
  box-shadow: var(--shadow), inset 0 1px rgba(255, 255, 255, 0.025);
}

.tracker-console::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 33%;
  height: 1px;
  background: linear-gradient(90deg, var(--green), transparent);
  content: "";
  box-shadow: 0 0 18px rgba(0, 255, 65, 0.6);
}

.console-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  padding: 15px 24px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.018);
}

.console-title {
  display: flex;
  align-items: center;
  gap: 14px;
}

.console-title > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(0, 255, 65, 0.28);
  border-radius: 9px;
  background: rgba(0, 255, 65, 0.07);
  color: var(--green);
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.console-title > div {
  display: grid;
}

.console-title small {
  color: #6e7d73;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.13em;
}

.console-title strong {
  margin-top: 1px;
  font-size: 1rem;
}

.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 11px;
  border: 1px solid rgba(0, 255, 65, 0.18);
  border-radius: 99px;
  background: rgba(0, 255, 65, 0.05);
  color: var(--green-bright);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
}

.console-body {
  padding: 30px;
}

.tracker-form {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) minmax(190px, 0.7fr) auto;
  align-items: end;
  gap: 15px;
}

.tracker-field label {
  display: block;
  margin-bottom: 8px;
  color: #b8c4bc;
  font-size: 0.88rem;
  font-weight: 800;
}

.input-wrap {
  display: flex;
  align-items: center;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 9px;
  background: #050a07;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.input-wrap:focus-within {
  border-color: rgba(0, 255, 65, 0.65);
  background: #061009;
  box-shadow: 0 0 0 4px rgba(0, 255, 65, 0.07);
}

.input-wrap > span {
  display: grid;
  width: 49px;
  height: 26px;
  place-items: center;
  border-right: 1px solid var(--line);
  color: var(--green);
  font-family: var(--mono);
  font-size: 0.72rem;
}

.input-wrap input {
  width: 100%;
  height: 100%;
  min-width: 0;
  padding: 0 15px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font-family: var(--mono);
  font-size: 0.9rem;
  letter-spacing: 0.09em;
}

.tracker-field-pin input {
  letter-spacing: 0.22em;
}

.input-wrap input::placeholder {
  color: #4f5c53;
  opacity: 1;
}

.tracker-submit {
  min-width: 175px;
}

.tracker-submit:disabled,
.tracker-approve:disabled,
.tracker-refresh:disabled {
  cursor: wait;
  opacity: 0.66;
}

.tracker-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 12px;
  color: #68756c;
  font-size: 0.82rem;
}

.tracker-meta p {
  margin: 0;
}

.tracker-meta span {
  color: var(--green);
}

.tracker-message {
  margin-top: 20px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 103, 103, 0.22);
  border-radius: 9px;
  background: rgba(255, 69, 69, 0.07);
  color: #ffbcbc;
  font-size: 0.82rem;
}

.tracker-message[data-state="success"] {
  border-color: rgba(0, 255, 65, 0.24);
  background: rgba(0, 255, 65, 0.07);
  color: #aaffba;
}

.tracker-result {
  margin-top: 31px;
  padding-top: 31px;
  border-top: 1px solid var(--line);
}

.result-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 25px;
}

.result-label {
  margin: 0;
  color: var(--green);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
}

.result-head h3 {
  margin: 6px 0 2px;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.result-head > div > p:last-child {
  margin: 0;
  color: #7f8d83;
  font-size: 0.9rem;
}

.tracker-refresh {
  flex: none;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: transparent;
  color: #a9b5ad;
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.tracker-refresh:hover {
  border-color: var(--line-strong);
  background: rgba(0, 255, 65, 0.05);
  color: var(--green-bright);
}

.customer-update {
  display: flex;
  gap: 14px;
  margin-top: 23px;
  padding: 18px;
  border: 1px solid rgba(0, 255, 65, 0.16);
  border-radius: 12px;
  background: rgba(0, 255, 65, 0.042);
}

.customer-update > span {
  display: grid;
  flex: none;
  width: 25px;
  height: 25px;
  place-items: center;
  border: 1px solid rgba(0, 255, 65, 0.28);
  border-radius: 50%;
  color: var(--green);
  font-family: var(--mono);
  font-size: 0.68rem;
}

.customer-update strong {
  font-size: 0.92rem;
}

.customer-update p {
  margin: 3px 0 0;
  color: #9dac9f;
  font-size: 0.92rem;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 12px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.013);
}

.result-grid > div {
  display: grid;
  align-content: start;
  min-height: 90px;
  padding: 17px;
}

.result-grid > div + div {
  border-left: 1px solid var(--line);
}

.result-grid span {
  color: #68766c;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.13em;
}

.result-grid strong {
  margin-top: 8px;
  color: #dce6df;
  font-size: 0.9rem;
  line-height: 1.45;
}

.result-grid-primary strong[data-repair-code] {
  color: var(--green-bright);
  font-family: var(--mono);
  letter-spacing: 0.05em;
}

.tracker-approval {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 14px;
  padding: 18px;
  border: 1px solid rgba(255, 202, 74, 0.24);
  border-radius: 11px;
  background: rgba(255, 190, 52, 0.055);
}

.tracker-approval strong {
  color: #ffe4a4;
  font-size: 0.92rem;
}

.tracker-approval p {
  margin: 3px 0 0;
  color: #b4a679;
  font-size: 0.88rem;
}

.tracker-approve {
  min-height: 42px;
  border-color: rgba(255, 202, 74, 0.38);
  background: rgba(255, 202, 74, 0.1);
  color: #ffe09a;
}

.tracker-approve:hover {
  background: #ffd36a;
  color: #211600;
}

.repair-history {
  margin-top: 24px;
}

.history-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 13px;
}

.history-heading h4 {
  margin: 0;
  font-size: 0.9rem;
}

.history-heading > span {
  color: #68766d;
  font-size: 0.78rem;
}

.repair-history ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.repair-history li {
  position: relative;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 13px;
  padding-bottom: 17px;
}

.repair-history li:not(:last-child)::before {
  position: absolute;
  top: 27px;
  bottom: 3px;
  left: 13px;
  width: 1px;
  background: var(--line);
  content: "";
}

.tracker-history-marker {
  position: relative;
  z-index: 1;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(0, 255, 65, 0.23);
  border-radius: 50%;
  background: #071009;
  color: var(--green);
  font-size: 0.7rem;
}

.tracker-history-copy > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 15px;
}

.tracker-history-copy strong {
  color: #cbd7ce;
  font-size: 0.88rem;
}

.tracker-history-copy time {
  color: #637067;
  font-size: 0.78rem;
}

.tracker-history-copy p {
  margin: 3px 0 0;
  color: #849188;
  font-size: 0.86rem;
}

.services-section {
  border-top: 1px solid rgba(255, 255, 255, 0.025);
  border-bottom: 1px solid var(--line);
  background: #020604;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  position: relative;
  min-height: 400px;
  padding: 34px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(0, 255, 65, 0.08), transparent 38%), rgba(255, 255, 255, 0.008);
  transition: background 0.35s ease, transform 0.35s ease;
}

.service-card::after {
  position: absolute;
  right: -90px;
  bottom: -90px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(0, 255, 65, 0.1);
  border-radius: 50%;
  content: "";
  transition: transform 0.5s ease, border-color 0.5s ease;
}

.service-card:hover {
  background-color: rgba(0, 255, 65, 0.022);
}

.service-card:hover::after {
  transform: scale(1.45);
  border-color: rgba(0, 255, 65, 0.19);
}

.service-card-featured {
  background-color: rgba(0, 255, 65, 0.028);
}

.service-card-featured::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: var(--green);
  box-shadow: 0 0 18px rgba(0, 255, 65, 0.65);
  content: "";
}

.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--green);
  font-family: var(--mono);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
}

.service-top i {
  color: #4c5a50;
  font-family: var(--sans);
  font-size: 1rem;
  font-style: normal;
  transition: color 0.25s ease, transform 0.25s ease;
}

.service-card:hover .service-top i {
  transform: translate(3px, -3px);
  color: var(--green);
}

.service-card h3 {
  max-width: 290px;
  margin: 48px 0 17px;
  font-size: 1.38rem;
  line-height: 1.22;
  letter-spacing: -0.035em;
}

.service-card > p {
  margin: 0;
  color: #89968e;
  font-size: 1rem;
  line-height: 1.72;
}

.service-card ul {
  display: grid;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  color: #b2bdb6;
  font-size: 0.9rem;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 17px;
}

.service-card li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  content: "+";
  font-family: var(--mono);
}

.service-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 34px;
  padding: 24px 0 0;
}

.service-action > p {
  margin: 0;
  color: #919e95;
}

.service-action > div {
  display: flex;
  align-items: center;
  gap: 27px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  border-bottom: 1px solid rgba(0, 255, 65, 0.22);
  border-radius: 2px;
  color: #d4ddd6;
  font-size: 0.83rem;
  font-weight: 700;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.text-link:hover {
  border-color: var(--green);
  color: var(--green-bright);
}

.process-section {
  background: #f1f5f2;
  color: #0a110c;
}

.process-section .section-code {
  color: #087e27;
}

.process-section .section-code span {
  border-color: rgba(0, 135, 38, 0.22);
  background: rgba(0, 135, 38, 0.055);
  color: #087e27;
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(560px, 1.18fr);
  gap: clamp(60px, 9vw, 125px);
}

.process-intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.process-intro > p:last-child {
  margin-top: 28px;
  color: #5d6a62;
}

.process-list {
  border-top: 1px solid rgba(11, 35, 18, 0.15);
}

.process-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 23px;
  padding: 38px 0;
  border-bottom: 1px solid rgba(11, 35, 18, 0.15);
}

.process-item > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(0, 126, 35, 0.22);
  border-radius: 50%;
  color: #087e27;
  font-family: var(--mono);
  font-size: 0.66rem;
}

.process-item h3 {
  margin: 3px 0 9px;
  font-size: 1.3rem;
  letter-spacing: -0.035em;
}

.process-item p {
  margin: 0;
  color: #5d6861;
  font-size: 0.91rem;
  line-height: 1.75;
}

.about-section {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #060b08;
}

.about-section::after {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 54vw;
  height: 54vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 255, 65, 0.055), transparent 67%);
  content: "";
}

.about-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(330px, 0.75fr) minmax(0, 1.25fr);
  align-items: center;
  gap: clamp(55px, 9vw, 130px);
}

.about-mark {
  position: relative;
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 255, 65, 0.06), transparent 68%);
}

.about-mark::before,
.about-mark::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.about-mark::before {
  inset: 9%;
  border: 1px dashed rgba(0, 255, 65, 0.14);
  animation: rotate 30s linear infinite;
}

.about-mark::after {
  inset: 20%;
  border: 1px solid rgba(0, 255, 65, 0.08);
}

.about-mark img {
  width: 80%;
  opacity: 0.93;
  filter: drop-shadow(0 0 32px rgba(0, 255, 65, 0.14));
}

.about-mark > span {
  position: absolute;
  right: 4%;
  bottom: 14%;
  padding: 7px 10px;
  border: 1px solid rgba(0, 255, 65, 0.2);
  border-radius: 6px;
  background: #061009;
  color: var(--green);
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
}

.about-lead {
  max-width: 720px;
  margin: 28px 0 0;
  color: #a0ada4;
  font-size: 1.03rem;
  line-height: 1.82;
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 41px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.credentials-grid > div {
  min-height: 124px;
  padding: 24px 22px;
}

.credentials-grid > div + div {
  border-left: 1px solid var(--line);
}

.credentials-grid strong,
.credentials-grid span {
  display: block;
}

.credentials-grid strong {
  color: var(--green);
  font-family: var(--mono);
  font-size: 1.04rem;
  letter-spacing: 0.05em;
}

.credentials-grid span {
  margin-top: 8px;
  color: #7e8c82;
  font-size: 0.72rem;
  line-height: 1.55;
}

.education-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0 0;
  color: #afbab2;
  font-size: 0.8rem;
  font-weight: 700;
}

.education-note span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid rgba(0, 255, 65, 0.24);
  border-radius: 50%;
  color: var(--green);
  font-family: var(--mono);
}

.contact-section {
  background: #020604;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(360px, 0.55fr);
  gap: 16px;
}

.map-panel,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #080f0a;
}

.map-panel {
  position: relative;
  min-height: 590px;
  overflow: hidden;
}

.map-panel::after {
  position: absolute;
  pointer-events: none;
  inset: 0;
  border: 1px solid rgba(0, 255, 65, 0.08);
  border-radius: inherit;
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.28);
  content: "";
}

.map-panel iframe {
  width: 100%;
  height: 100%;
  min-height: 590px;
  border: 0;
  filter: grayscale(1) invert(0.92) hue-rotate(88deg) saturate(0.45) brightness(0.73) contrast(1.16);
}

.map-panel > a {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  border: 1px solid rgba(0, 255, 65, 0.32);
  border-radius: 9px;
  background: rgba(3, 10, 5, 0.92);
  color: var(--green-bright);
  font-size: 0.9rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
  transition: background 0.25s ease, color 0.25s ease;
}

.map-panel > a:hover {
  background: var(--green);
  color: #001706;
}

.map-brand-label {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 9px 13px 9px 9px;
  border: 1px solid rgba(0, 255, 65, 0.28);
  border-radius: 10px;
  background: rgba(3, 10, 5, 0.94);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(12px);
}

.map-brand-label img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.map-brand-label > span {
  display: grid;
}

.map-brand-label strong {
  color: var(--green-bright);
  font-size: 0.86rem;
  letter-spacing: 0.14em;
}

.map-brand-label small {
  margin-top: 2px;
  color: #89968e;
  font-size: 0.74rem;
}

.contact-panel {
  padding: 34px;
}

.appointment {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--green-bright);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
}

.contact-panel h3 {
  margin: 27px 0 10px;
  font-size: 1.45rem;
  letter-spacing: -0.035em;
}

.contact-panel address {
  color: #8e9b92;
  font-size: 1rem;
  font-style: normal;
  line-height: 1.75;
}

.contact-list {
  margin: 30px 0;
  border-top: 1px solid var(--line);
}

.contact-list a {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: center;
  gap: 13px;
  min-height: 66px;
  border-bottom: 1px solid var(--line);
  transition: background 0.25s ease, padding 0.25s ease;
}

.contact-list a.mobile-only-contact {
  display: none;
}

.contact-list a:hover {
  padding-inline: 8px;
  background: rgba(0, 255, 65, 0.025);
}

.contact-list span {
  color: #647067;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.contact-list strong {
  color: #d3ddd6;
  font-size: 0.9rem;
}

.contact-list i {
  color: var(--green);
  font-style: normal;
}

.site-footer {
  padding: 66px 0 28px;
  border-top: 1px solid var(--line);
  background: #010302;
}

.footer-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
}

.footer-brand img {
  width: 52px;
  height: 52px;
}

.footer-main > div > p {
  margin: 18px 0 0;
  color: #69756d;
  font-size: 0.88rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 27px;
  max-width: 520px;
}

.footer-nav a {
  border-radius: 3px;
  color: #8d9991;
  font-size: 0.88rem;
  font-weight: 700;
  transition: color 0.25s ease;
}

.footer-nav a:hover {
  color: var(--green-bright);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-top: 55px;
  padding-top: 23px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: #4f5a53;
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.07em;
}

.footer-bottom a {
  border-radius: 2px;
  transition: color 0.25s ease;
}

.footer-bottom a:hover {
  color: #89978d;
}

.mobile-actions {
  display: none;
}

.back-to-top {
  position: fixed;
  z-index: 800;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(0, 255, 65, 0.26);
  border-radius: 50%;
  background: rgba(3, 10, 5, 0.9);
  color: var(--green);
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  cursor: pointer;
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.25s ease, color 0.25s ease;
  backdrop-filter: blur(10px);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--green);
  color: #001706;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.services-grid .reveal:nth-child(2),
.process-list .reveal:nth-child(2) {
  transition-delay: 0.08s;
}

.services-grid .reveal:nth-child(3),
.process-list .reveal:nth-child(3) {
  transition-delay: 0.16s;
}

.services-grid .reveal:nth-child(5) {
  transition-delay: 0.08s;
}

.services-grid .reveal:nth-child(6) {
  transition-delay: 0.16s;
}

@keyframes statusPulse {
  0%, 100% { opacity: 0.7; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.12); }
}

@keyframes sectionSweep {
  from { background-position: 150% 0; }
  to { background-position: -150% 0; }
}

@keyframes rotate {
  to { transform: rotate(360deg); }
}

@keyframes scan {
  0%, 100% { top: 16%; opacity: 0; }
  12% { opacity: 0.9; }
  50% { top: 82%; opacity: 0.6; }
  63% { opacity: 0; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

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

  .main-nav > a:not(.nav-cta) {
    font-size: 0.78rem;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.76fr);
    gap: 35px;
  }

  .signal-card-one {
    left: -5%;
  }

  .signal-card-two {
    right: -3%;
  }

  .tracker-heading,
  .section-heading {
    grid-template-columns: minmax(0, 1fr) minmax(290px, 0.6fr);
    gap: 45px;
  }

  .service-card {
    min-height: 420px;
    padding: 29px;
  }

  .process-layout {
    grid-template-columns: minmax(0, 0.7fr) minmax(500px, 1.3fr);
    gap: 70px;
  }
}

@media (max-width: 900px) {
  .site-header,
  .site-header.scrolled {
    height: 72px;
  }

  .menu-button {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 72px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    max-height: 0;
    padding: 0 24px;
    overflow: hidden;
    border-bottom: 1px solid transparent;
    background: rgba(3, 7, 5, 0.98);
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.42s ease, opacity 0.3s ease, padding 0.42s ease, border-color 0.3s ease;
    backdrop-filter: blur(18px);
  }

  .main-nav.open {
    max-height: 600px;
    padding-top: 10px;
    padding-bottom: 24px;
    border-color: var(--line);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav > a:not(.nav-cta) {
    min-height: 54px;
    padding: 17px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.055);
    font-size: 1rem;
  }

  .main-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    justify-content: space-between;
    min-height: 54px;
    margin-top: 14px;
    font-size: 0.92rem;
  }

  .hero {
    min-height: auto;
    padding-bottom: 0;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 142px;
    padding-bottom: 128px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-visual {
    justify-self: center;
    width: min(88vw, 520px);
  }

  .hero-layout.simple-hero-layout {
    gap: 0;
    padding-top: 128px;
    padding-bottom: 84px;
  }

  .simple-hero h1 .headline-line {
    white-space: normal;
  }

  .hero-strip {
    position: static;
    width: 100%;
  }

  .tracker-heading,
  .section-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 28px;
  }

  .tracker-heading > p,
  .section-heading > p {
    max-width: 650px;
  }

  .tracker-form {
    grid-template-columns: minmax(0, 1.2fr) minmax(190px, 0.8fr);
  }

  .tracker-submit {
    grid-column: 1 / -1;
    width: 100%;
  }

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

  .service-card {
    min-height: 390px;
  }

  .process-layout,
  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .process-intro {
    position: static;
    max-width: 700px;
  }

  .process-list {
    margin-top: 5px;
  }

  .about-mark {
    width: min(70vw, 440px);
    justify-self: center;
  }

  .contact-layout {
    gap: 14px;
  }

  .map-panel,
  .map-panel iframe {
    min-height: 480px;
  }

  .contact-panel {
    padding: 34px;
  }
}

@media (min-width: 901px) {
  .simple-hero .hero-copy {
    width: 100%;
    max-width: 900px;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 70px;
  }

  body {
    padding-bottom: 78px;
  }

  .shell {
    width: min(100% - 30px, 1240px);
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand-copy strong {
    font-size: 1rem;
  }

  .brand-copy small {
    font-size: 0.62rem;
  }

  .brand-copy .brand-tagline {
    font-size: 0.7rem;
    letter-spacing: 0;
  }

  .menu-button > span {
    display: none;
  }

  .hero-layout {
    gap: 37px;
    padding-top: 119px;
    padding-bottom: 82px;
  }

  .hero-layout.simple-hero-layout {
    gap: 0;
    padding-top: 115px;
    padding-bottom: 22px;
  }

  .eyebrow,
  .section-code {
    font-size: 0.75rem;
    line-height: 1.5;
    letter-spacing: 0.12em;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 13vw, 4.4rem);
    line-height: 1.01;
  }

  .simple-hero h1 {
    font-size: clamp(2.15rem, 10.7vw, 3.4rem);
    line-height: 1.08;
    letter-spacing: -0.05em;
  }

  .hero-lead {
    margin-top: 23px;
    font-size: 1.05rem;
    line-height: 1.7;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-phone {
    font-size: 0.78rem;
  }

  .hero-visual {
    width: min(95vw, 440px);
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .hero-facts span {
    min-height: 76px;
    padding-inline: 16px;
    font-size: 0.98rem;
  }

  .hero-facts span + span {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .signal-card {
    min-width: 128px;
    padding: 11px 12px;
  }

  .signal-card small {
    font-size: 0.5rem;
  }

  .signal-card strong {
    font-size: 0.64rem;
  }

  .signal-card-one {
    left: -1%;
  }

  .signal-card-two {
    right: -1%;
  }

  .hero-strip {
    grid-template-columns: 1fr;
  }

  .hero-strip span {
    min-height: 55px;
    padding-left: 37px;
    font-size: 0.7rem;
  }

  .hero-strip span::before {
    left: 17px;
  }

  .hero-strip span + span {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section {
    padding: 42px 0;
  }

  .section::after {
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, transparent 18%, rgba(0, 255, 65, 0.18) 34%, var(--green) 50%, rgba(0, 255, 65, 0.18) 66%, transparent 82%, transparent 100%);
    background-size: 180% 100%;
    box-shadow: 0 0 18px rgba(0, 255, 65, 0.28);
    animation-duration: 4.2s;
  }

  .tracker-heading,
  .section-heading {
    gap: 20px;
    margin-bottom: 28px;
  }

  .tracker-heading h2,
  .section-heading h2,
  .process-intro h2,
  .about-copy h2 {
    font-size: clamp(2.35rem, 11vw, 3.5rem);
  }

  .tracker-heading > p,
  .section-heading > p,
  .process-intro > p:last-child {
    font-size: 1rem;
    line-height: 1.72;
  }

  .console-bar {
    min-height: 73px;
    padding: 13px 15px;
  }

  .console-title > span {
    width: 40px;
    height: 40px;
  }

  .console-title small {
    font-size: 0.62rem;
  }

  .console-title strong {
    font-size: 0.88rem;
  }

  .live-indicator {
    padding: 7px 9px;
    font-size: 0.64rem;
  }

  .console-body {
    padding: 18px 15px 20px;
  }

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

  .tracker-submit {
    grid-column: auto;
  }

  .tracker-meta {
    display: grid;
    gap: 4px;
  }

  .result-head,
  .tracker-approval,
  .history-heading {
    align-items: flex-start;
  }

  .result-head {
    flex-direction: column;
  }

  .tracker-refresh {
    width: 100%;
  }

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

  .result-grid > div {
    min-height: 75px;
  }

  .result-grid > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .tracker-approval {
    flex-direction: column;
  }

  .tracker-approve {
    width: 100%;
  }

  .tracker-history-copy > div,
  .history-heading {
    flex-direction: column;
    gap: 3px;
  }

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

  .service-card {
    min-height: 0;
    padding: 27px 24px 34px;
  }

  .service-card-featured::before {
    display: none;
  }

  .service-card h3 {
    margin-top: 35px;
  }

  .service-action,
  .service-action > div {
    display: grid;
    align-items: stretch;
  }

  .service-action {
    gap: 21px;
  }

  .service-action > div {
    gap: 19px;
  }

  .text-link {
    justify-self: start;
  }

  .process-layout,
  .about-layout {
    gap: 52px;
  }

  .process-item {
    grid-template-columns: 45px 1fr;
    gap: 15px;
    padding: 28px 0;
  }

  .process-item > span {
    width: 40px;
    height: 40px;
  }

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

  .credentials-grid > div {
    min-height: 95px;
    padding: 19px 0;
  }

  .credentials-grid > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .map-panel,
  .map-panel iframe {
    min-height: 390px;
  }

  .map-brand-label {
    top: 13px;
    left: 13px;
    padding: 7px 10px 7px 7px;
  }

  .map-brand-label img {
    width: 36px;
    height: 36px;
  }

  .map-panel > a {
    right: 13px;
    bottom: 13px;
    left: 13px;
    justify-content: center;
  }

  .contact-panel {
    padding: 26px 20px;
  }

  .contact-list a {
    grid-template-columns: 52px 1fr auto;
  }

  .contact-list a.mobile-only-contact {
    display: grid;
  }

  .contact-list strong {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .site-footer {
    padding-top: 42px;
  }

  .footer-main,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-nav {
    justify-content: flex-start;
    margin-top: 8px;
  }

  .footer-bottom {
    margin-top: 38px;
  }

  .mobile-actions {
    position: fixed;
    z-index: 1200;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px 10px;
    border-top: 1px solid var(--line);
    background: rgba(2, 6, 4, 0.96);
    backdrop-filter: blur(15px);
  }

  .mobile-actions a {
    display: grid;
    min-height: 54px;
    place-items: center;
    border: 1px solid var(--green);
    border-radius: 8px;
    background: var(--green);
    color: #001806;
    font-size: 0.86rem;
    font-weight: 800;
    box-shadow: 0 8px 24px rgba(0, 255, 65, 0.14);
    transition: transform 0.2s ease, background 0.2s ease;
  }

  .mobile-actions a:active {
    transform: scale(0.98);
  }

  .mobile-actions .mobile-quote {
    background: var(--green);
    color: #001806;
    box-shadow: 0 8px 24px rgba(0, 255, 65, 0.16);
  }

  .back-to-top {
    right: 15px;
    bottom: 93px;
  }
}

@media (max-width: 360px) {
  .brand-copy .brand-tagline {
    font-size: 0.56rem;
  }

  .mobile-actions a {
    font-size: 0.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .matrix-canvas {
    display: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
