:root {
  --graphite-950: #071114;
  --graphite-900: #0b171b;
  --graphite-850: #102126;
  --graphite-800: #173038;
  --paper: #f3f8f7;
  --paper-soft: #e8f0ee;
  --paper-muted: #cbd8d7;
  --ink: #0b181b;
  --ink-soft: #40565b;
  --cyan: #45e0cf;
  --cyan-deep: #0b7d73;
  --cyan-soft: #bbf4ed;
  --amber: #ffb44a;
  --line-dark: rgba(229, 245, 242, 0.14);
  --line-light: rgba(11, 24, 27, 0.16);
  --shadow-dark: 0 28px 90px rgba(0, 0, 0, 0.28);
  --shadow-card: 0 24px 70px rgba(7, 17, 20, 0.12);
  --shell: 1240px;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  min-width: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Segoe UI Variable Text", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

p,
h1,
h2,
h3,
blockquote,
figure,
dl,
dd {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
}

button,
summary,
a {
  touch-action: manipulation;
}

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  transform: translateY(-140%);
  border-radius: 10px;
  padding: 12px 16px;
  background: var(--cyan);
  color: var(--ink);
  font-weight: 800;
  transition: transform 180ms ease-out;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  --scroll-progress: 0%;
  position: sticky;
  z-index: 100;
  top: 0;
  height: 76px;
  border-bottom: 1px solid var(--line-dark);
  background: rgba(7, 17, 20, 0.88);
  color: var(--paper);
  backdrop-filter: blur(18px) saturate(140%);
  transition: height 280ms var(--ease-out), background 280ms var(--ease-out), box-shadow 280ms var(--ease-out);
}

.site-header::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  width: var(--scroll-progress);
  height: 2px;
  background: var(--cyan);
  box-shadow: 0 0 16px rgba(69, 224, 207, 0.6);
  pointer-events: none;
}

.site-header.is-scrolled {
  height: 68px;
  background: rgba(7, 17, 20, 0.96);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.header-layout {
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto minmax(210px, 1fr);
  align-items: center;
  height: 100%;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 48px;
  gap: 11px;
}

.brand-signal {
  position: relative;
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  border: 1px solid rgba(69, 224, 207, 0.55);
  border-radius: 50%;
}

.brand-signal::before,
.brand-signal::after,
.brand-signal i {
  content: "";
  display: block;
  border-radius: 999px;
  background: var(--cyan);
}

.brand-signal::before {
  position: absolute;
  width: 6px;
  height: 6px;
  box-shadow: 0 0 12px var(--cyan);
}

.brand-signal::after {
  width: 20px;
  height: 1px;
  opacity: 0.65;
}

.brand-signal i {
  position: absolute;
  width: 1px;
  height: 20px;
  opacity: 0.65;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.08;
}

.brand-copy strong {
  color: var(--paper);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--paper-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.primary-nav a {
  position: relative;
  display: grid;
  min-height: 44px;
  place-items: center;
  padding: 0 13px;
  color: var(--paper-muted);
  font-size: 13px;
  font-weight: 650;
  transition: color 180ms ease-out;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  right: 13px;
  bottom: 5px;
  left: 13px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  border-radius: 99px;
  background: var(--cyan);
  transition: transform 280ms var(--ease-out);
}

.primary-nav a:hover,
.primary-nav a.is-active,
.primary-nav a[aria-current="location"] {
  color: var(--paper);
}

.primary-nav a:hover::after,
.primary-nav a.is-active::after,
.primary-nav a[aria-current="location"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-call {
  position: relative;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: space-between;
  justify-self: end;
  gap: 22px;
  overflow: hidden;
  border-radius: 999px;
  padding: 0 8px 0 19px;
  background: var(--cyan);
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
  transition: transform 180ms ease-out, box-shadow 280ms var(--ease-out);
}

.header-call::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-102%);
  background: var(--paper);
  transition: transform 300ms var(--ease-out);
}

.header-call span,
.header-call i {
  position: relative;
  z-index: 1;
}

.header-call i,
.button i,
.contact-phone em i,
.map-card > i,
.text-link i,
.scroll-cue i {
  position: relative;
  display: inline-block;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 50%;
}

.header-call i {
  background: var(--ink);
}

.header-call i::before,
.button i::before,
.contact-phone em i::before,
.map-card > i::before,
.text-link i::before,
.scroll-cue i::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  transform: translate(-60%, -40%) rotate(-45deg);
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
}

.header-call i {
  color: var(--cyan);
}

.header-call:hover::before {
  transform: translateX(0);
}

.header-call:hover {
  box-shadow: 0 0 0 6px rgba(69, 224, 207, 0.12);
}

.header-call:active,
.button:active,
.contact-phone:active,
.map-card:active {
  transform: scale(0.98);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  width: 17px;
  height: 1.5px;
  border-radius: 10px;
  background: var(--paper);
  transition: transform 260ms var(--ease-out);
}

.menu-toggle span:first-child {
  transform: translateY(-3px);
}

.menu-toggle span:last-child {
  transform: translateY(3px);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: min(850px, calc(100svh - 30px));
  background: var(--graphite-950);
  color: var(--paper);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -28%;
  left: -15%;
  width: 58vw;
  height: 58vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(69, 224, 207, 0.13), transparent 68%);
  filter: blur(12px);
}

.hero-grid,
.contact-grid-lines {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(243, 248, 247, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(243, 248, 247, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.7), transparent 74%);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  align-items: center;
  min-height: 730px;
  gap: clamp(44px, 6vw, 92px);
  padding-block: 70px 96px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.eyebrow,
.section-kicker,
.panel-label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--paper-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow > span,
.appointment-note > span,
.contact-microcopy > span {
  display: inline-block;
  width: 28px;
  height: 2px;
  flex: 0 0 28px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(69, 224, 207, 0.55);
}

.hero h1 {
  max-width: 760px;
  margin-top: 24px;
  color: var(--paper);
  font-family: "Segoe UI Variable Display", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(62px, 6.1vw, 98px);
  font-weight: 780;
  letter-spacing: -0.072em;
  line-height: 0.91;
  text-wrap: balance;
}

.hero-intro {
  max-width: 620px;
  margin-top: 28px;
  color: var(--paper-muted);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 15px;
  padding: 0 11px 0 20px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 180ms ease-out, border-color 280ms var(--ease-out), box-shadow 280ms var(--ease-out);
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-103%);
  transition: transform 310ms var(--ease-out);
}

.button > span,
.button > i {
  position: relative;
  z-index: 1;
}

.button i {
  transition: transform 240ms var(--ease-out);
}

.button:hover::before {
  transform: translateX(0);
}

.button:hover i {
  transform: translate(2px, -2px);
}

.button-primary {
  background: var(--cyan);
  color: var(--ink);
}

.button-primary::before {
  background: var(--paper);
}

.button-primary i {
  background: var(--ink);
  color: var(--cyan);
}

.button-primary:hover {
  box-shadow: 0 0 0 6px rgba(69, 224, 207, 0.12), 0 14px 38px rgba(0, 0, 0, 0.2);
}

.button-ghost {
  border-color: var(--line-dark);
  background: rgba(243, 248, 247, 0.045);
  color: var(--paper);
}

.button-ghost::before {
  background: rgba(243, 248, 247, 0.08);
}

.button-ghost i {
  border: 1px solid var(--line-dark);
  color: var(--cyan);
}

.button-ghost:hover {
  border-color: rgba(69, 224, 207, 0.52);
}

.appointment-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: var(--paper-muted);
  font-size: 13px;
}

.appointment-note > span,
.contact-microcopy > span {
  width: 6px;
  height: 6px;
  flex-basis: 6px;
  border-radius: 50%;
}

.hero-proof {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  max-width: 690px;
  margin-top: 38px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.hero-proof > a,
.hero-proof > p {
  display: flex;
  min-width: 0;
  min-height: 84px;
  flex-direction: column;
  justify-content: center;
  padding: 12px 18px;
}

.hero-proof > * + * {
  border-left: 1px solid var(--line-dark);
}

.hero-proof > a {
  display: grid;
  grid-template-columns: auto 1fr;
  align-content: center;
  gap: 0 10px;
  transition: background 240ms ease-out;
}

.hero-proof > a:hover {
  background: rgba(69, 224, 207, 0.07);
}

.proof-value,
.hero-proof strong {
  color: var(--paper);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.proof-value {
  grid-row: 1 / span 2;
  align-self: center;
  font-size: 35px;
}

.proof-stars {
  align-self: end;
  color: var(--amber);
  font-size: 11px;
  letter-spacing: -1px;
}

.proof-label,
.hero-proof p span {
  color: var(--paper-muted);
  font-size: 11px;
  line-height: 1.25;
}

.hero-visual {
  position: relative;
  min-height: 590px;
}

.hero-media {
  position: absolute;
  inset: 0 20px 48px 0;
  overflow: hidden;
  border: 1px solid rgba(69, 224, 207, 0.22);
  border-radius: var(--radius-lg) var(--radius-lg) 120px var(--radius-lg);
  background: var(--graphite-850);
  box-shadow: var(--shadow-dark);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 17, 20, 0.02) 48%, rgba(7, 17, 20, 0.78) 100%),
    linear-gradient(90deg, rgba(7, 17, 20, 0.22), transparent 34%);
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 50%;
  filter: saturate(0.9) contrast(1.04);
  transition: transform 900ms var(--ease-out), filter 500ms ease-out;
}

.hero-media:hover img {
  transform: scale(1.025);
  filter: saturate(1) contrast(1.05);
}

.hero-media figcaption {
  position: absolute;
  z-index: 3;
  right: 22px;
  bottom: 24px;
  left: 22px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--paper-muted);
  font-size: 11px;
  font-weight: 700;
}

.hero-media figcaption span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}

.scan-line {
  position: absolute;
  z-index: 2;
  top: 12%;
  right: 5%;
  left: 5%;
  height: 2px;
  transform: translateY(-20px);
  background: linear-gradient(90deg, transparent, var(--cyan) 14%, var(--cyan) 86%, transparent);
  box-shadow: 0 0 18px rgba(69, 224, 207, 0.8), 0 12px 45px rgba(69, 224, 207, 0.2);
  opacity: 0;
  animation: hero-scan 1.05s 420ms var(--ease-out) both;
}

.hero-status {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 0;
  left: 42px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 96px;
  gap: 14px;
  border: 1px solid var(--line-dark);
  border-radius: 18px;
  padding: 18px 20px;
  background: rgba(16, 33, 38, 0.94);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(16px);
}

.status-light {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 7px rgba(69, 224, 207, 0.1), 0 0 18px var(--cyan);
}

.hero-status p,
.schedule-title p {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.hero-status small,
.schedule-title small {
  color: var(--paper-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-status strong {
  margin-top: 2px;
  color: var(--paper);
  font-size: 14px;
}

.status-index {
  color: rgba(243, 248, 247, 0.24);
  font-size: 26px;
  font-weight: 850;
}

.scroll-cue {
  position: absolute;
  right: max(24px, calc((100% - var(--shell)) / 2));
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--paper-muted);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scroll-cue i {
  width: 32px;
  height: 32px;
  border: 1px solid var(--line-dark);
  color: var(--cyan);
  transform: rotate(90deg);
  transition: transform 240ms var(--ease-out), border-color 240ms ease-out;
}

.scroll-cue:hover i {
  transform: translateY(3px) rotate(90deg);
  border-color: var(--cyan);
}

@keyframes hero-scan {
  0% { transform: translateY(-20px); opacity: 0; }
  18% { opacity: 0.88; }
  82% { opacity: 0.65; }
  100% { transform: translateY(450px); opacity: 0; }
}

.section {
  padding-block: clamp(88px, 9vw, 148px);
}

.section-heading {
  max-width: 760px;
}

.section-heading-split,
.services-heading,
.reviews-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: end;
  max-width: none;
  gap: clamp(32px, 8vw, 130px);
}

.section-kicker {
  color: var(--cyan-deep);
}

.section-kicker::before {
  content: "";
  width: 26px;
  height: 2px;
  background: currentColor;
}

.section-kicker-dark {
  color: var(--cyan-deep);
}

.section-heading h2,
.diagnostic-copy h2,
.contact-main h2 {
  margin-top: 18px;
  font-family: "Segoe UI Variable Display", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(48px, 5.4vw, 76px);
  font-weight: 760;
  letter-spacing: -0.065em;
  line-height: 0.96;
  text-wrap: balance;
}

.section-heading-split > p,
.services-heading > p,
.diagnostic-copy > p,
.contact-main > p {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.65;
}

.problem-section {
  background: var(--paper);
}

.problem-selector {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  margin-top: 62px;
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--shadow-card);
}

.problem-tabs {
  display: flex;
  flex-direction: column;
  padding: 12px;
  background: var(--graphite-900);
}

.problem-tabs button {
  position: relative;
  display: grid;
  grid-template-columns: 34px 1fr;
  min-height: 72px;
  align-items: center;
  border: 0;
  border-bottom: 1px solid var(--line-dark);
  border-radius: 12px;
  padding: 0 18px;
  background: transparent;
  color: var(--paper-muted);
  font-size: 14px;
  font-weight: 750;
  text-align: left;
  cursor: pointer;
  transition: color 220ms ease-out, background 300ms var(--ease-out), transform 220ms var(--ease-out);
}

.problem-tabs button:last-child {
  border-bottom-color: transparent;
}

.problem-tabs button span {
  color: rgba(243, 248, 247, 0.34);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
  transition: color 220ms ease-out;
}

.problem-tabs button:hover {
  color: var(--paper);
  transform: translateX(3px);
}

.problem-tabs button[aria-selected="true"] {
  background: var(--cyan);
  color: var(--ink);
  transform: translateX(0);
}

.problem-tabs button[aria-selected="true"] span {
  color: var(--cyan-deep);
}

.problem-panel {
  position: relative;
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) 180px;
  align-items: center;
  min-height: 390px;
  gap: 36px;
  padding: clamp(40px, 6vw, 82px);
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 18%, rgba(69, 224, 207, 0.18), transparent 30%),
    #fff;
}

.problem-panel.is-changing > * {
  animation: panel-change 320ms var(--ease-out) both;
}

.problem-index {
  align-self: start;
  color: var(--cyan-deep);
  font-size: 12px;
  font-weight: 850;
  font-variant-numeric: tabular-nums;
}

.panel-label {
  color: var(--cyan-deep);
}

.problem-panel h3 {
  max-width: 590px;
  margin-top: 12px;
  font-size: clamp(32px, 4vw, 58px);
  font-weight: 740;
  letter-spacing: -0.055em;
  line-height: 1;
  text-wrap: balance;
}

.problem-panel [data-problem-copy] {
  max-width: 600px;
  margin-top: 20px;
  color: var(--ink-soft);
  font-size: 16px;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.text-link::after {
  content: "";
  position: absolute;
}

.text-link i {
  width: 30px;
  height: 30px;
  border: 1px solid var(--line-light);
  color: var(--cyan-deep);
  transition: transform 240ms var(--ease-out), background 240ms ease-out, color 240ms ease-out;
}

.text-link:hover i {
  transform: translate(3px, -3px);
  background: var(--cyan);
  color: var(--ink);
}

.signal-graphic {
  position: relative;
  display: grid;
  width: 160px;
  height: 160px;
  place-items: center;
}

.signal-graphic::before,
.signal-graphic::after,
.signal-graphic span {
  content: "";
  position: absolute;
  border: 1px solid rgba(11, 125, 115, 0.25);
  border-radius: 50%;
}

.signal-graphic::before { inset: 0; }
.signal-graphic::after { inset: 26px; }
.signal-graphic span:nth-child(1) { inset: 52px; background: var(--cyan); box-shadow: 0 0 28px rgba(69, 224, 207, 0.6); }
.signal-graphic span:nth-child(2) { width: 1px; height: 160px; border: 0; border-radius: 0; background: rgba(11, 125, 115, 0.2); }
.signal-graphic span:nth-child(3) { width: 160px; height: 1px; border: 0; border-radius: 0; background: rgba(11, 125, 115, 0.2); }
.signal-graphic span:nth-child(4) { width: 8px; height: 8px; transform: translate(46px, -46px); border: 0; background: var(--amber); box-shadow: 0 0 12px rgba(255, 180, 74, 0.6); }

@keyframes panel-change {
  0% { transform: translateY(10px); opacity: 0.35; }
  100% { transform: translateY(0); opacity: 1; }
}

.services {
  background: var(--paper-soft);
}

.service-list {
  margin-top: 64px;
  border-top: 1px solid var(--line-light);
}

.service-item {
  border-bottom: 1px solid var(--line-light);
}

.service-item summary {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) auto;
  align-items: center;
  min-height: 126px;
  gap: 24px;
  list-style: none;
  cursor: pointer;
}

.service-item summary::-webkit-details-marker {
  display: none;
}

.service-number {
  color: var(--cyan-deep);
  font-size: 12px;
  font-weight: 850;
  font-variant-numeric: tabular-nums;
}

.service-title {
  display: flex;
  flex-direction: column;
}

.service-title small {
  margin-bottom: 3px;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.service-title strong {
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 720;
  letter-spacing: -0.045em;
  line-height: 1;
  transition: transform 300ms var(--ease-out), color 240ms ease-out;
}

.service-action {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
}

.service-action i {
  position: relative;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  transition: transform 320ms var(--ease-spring), background 240ms ease-out, border-color 240ms ease-out;
}

.service-action i::before,
.service-action i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1.5px;
  transform: translate(-50%, -50%);
  background: var(--ink);
}

.service-action i::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 260ms var(--ease-out), opacity 200ms ease-out;
}

.service-item summary:hover .service-title strong {
  transform: translateX(6px);
  color: var(--cyan-deep);
}

.service-item summary:hover .service-action i {
  border-color: var(--cyan-deep);
  background: var(--cyan);
}

.service-item[open] .service-action i {
  transform: rotate(180deg);
  background: var(--cyan);
  border-color: var(--cyan);
}

.service-item[open] .service-action i::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
}

.service-content {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 440ms var(--ease-out);
}

.service-content > div {
  min-height: 0;
  overflow: hidden;
}

.service-item[open] .service-content {
  grid-template-rows: 1fr;
}

.service-content > div {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 80px;
  padding: 4px 0 46px 104px;
}

.service-content p {
  max-width: 480px;
  color: var(--ink-soft);
}

.service-content ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 24px;
  list-style: none;
}

.service-content li {
  position: relative;
  padding: 8px 0 8px 19px;
  font-size: 14px;
  font-weight: 650;
}

.service-content li::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 0;
  width: 7px;
  height: 7px;
  border: 1px solid var(--cyan-deep);
  border-radius: 50%;
}

.diagnostic-section {
  padding-block: clamp(88px, 9vw, 148px);
  overflow: hidden;
  background: var(--graphite-950);
  color: var(--paper);
}

.diagnostic-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(340px, 0.97fr);
  align-items: center;
  gap: clamp(50px, 8vw, 120px);
}

.diagnostic-media {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 28px 96px 28px 28px;
  background: var(--graphite-850);
}

.diagnostic-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(7, 17, 20, 0.8));
  pointer-events: none;
}

.diagnostic-media img {
  width: 100%;
  height: 100%;
  min-height: 610px;
  object-fit: cover;
  object-position: center;
  transition: transform 900ms var(--ease-out);
}

.diagnostic-media:hover img {
  transform: scale(1.025);
}

.diagnostic-media figcaption {
  position: absolute;
  z-index: 2;
  bottom: 22px;
  left: 24px;
  color: var(--paper-muted);
  font-size: 11px;
  font-weight: 700;
}

.media-code {
  position: absolute;
  z-index: 2;
  top: 22px;
  right: 22px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  padding: 9px 12px;
  background: rgba(7, 17, 20, 0.72);
  color: var(--cyan);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.diagnostic-copy .section-kicker {
  color: var(--cyan);
}

.diagnostic-copy h2 {
  color: var(--paper);
}

.diagnostic-copy > p {
  max-width: 570px;
  margin-top: 26px;
  color: var(--paper-muted);
}

.diagnostic-points {
  margin-top: 36px;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.diagnostic-points li {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  min-height: 86px;
  border-bottom: 1px solid var(--line-dark);
}

.diagnostic-points li > span {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 850;
}

.diagnostic-points p {
  display: flex;
  flex-direction: column;
}

.diagnostic-points strong {
  color: var(--paper);
  font-size: 15px;
}

.diagnostic-points small {
  margin-top: 2px;
  color: var(--paper-muted);
  font-size: 12px;
}

.diagnostic-copy .text-link {
  color: var(--paper);
}

.diagnostic-copy .text-link i {
  border-color: var(--line-dark);
  color: var(--cyan);
}

.reviews {
  background: #fff;
}

.reviews-heading {
  align-items: center;
}

.rating-lockup {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 18px;
}

.rating-lockup > strong {
  font-size: clamp(58px, 7vw, 92px);
  font-weight: 760;
  letter-spacing: -0.07em;
  line-height: 0.8;
}

.rating-lockup p {
  display: flex;
  flex-direction: column;
}

.rating-lockup p > span {
  color: var(--amber);
  font-size: 14px;
  letter-spacing: -1px;
}

.rating-lockup small {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 11px;
  white-space: nowrap;
}

.review-carousel {
  position: relative;
  margin-top: 60px;
  overflow: hidden;
  border-radius: 28px;
  background: var(--graphite-950);
  color: var(--paper);
  box-shadow: var(--shadow-card);
}

.review-carousel::before {
  content: "“";
  position: absolute;
  z-index: 0;
  top: -50px;
  right: 5%;
  color: rgba(69, 224, 207, 0.09);
  font-family: Georgia, serif;
  font-size: 330px;
  line-height: 1;
  pointer-events: none;
}

.review-track {
  position: relative;
  z-index: 1;
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  overscroll-behavior-inline: contain;
}

.review-track::-webkit-scrollbar {
  display: none;
}

.review-slide {
  position: relative;
  display: flex;
  min-width: 100%;
  min-height: 410px;
  flex: 0 0 100%;
  flex-direction: column;
  justify-content: space-between;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  padding: clamp(38px, 6vw, 78px);
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--paper-muted);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-stars {
  color: var(--amber);
  font-size: 13px;
  letter-spacing: -1px;
}

.review-slide blockquote {
  max-width: 1010px;
  margin-block: 42px;
  font-family: "Segoe UI Variable Display", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(31px, 4.3vw, 58px);
  font-weight: 650;
  letter-spacing: -0.052em;
  line-height: 1.08;
  text-wrap: balance;
}

.review-author {
  display: flex;
  flex-direction: column;
}

.review-author strong {
  font-size: 15px;
}

.review-author span {
  margin-top: 2px;
  color: var(--paper-muted);
  font-size: 11px;
}

.review-number {
  position: absolute;
  right: clamp(38px, 6vw, 78px);
  bottom: clamp(38px, 6vw, 78px);
  color: rgba(243, 248, 247, 0.2);
  font-size: 44px;
  font-weight: 850;
  font-variant-numeric: tabular-nums;
}

.carousel-controls {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 84px;
  border-top: 1px solid var(--line-dark);
  padding-inline: clamp(22px, 4vw, 54px);
}

.carousel-arrows {
  display: flex;
  gap: 8px;
}

.carousel-arrows button,
.carousel-dots button {
  border: 0;
  cursor: pointer;
}

.carousel-arrows button {
  position: relative;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  background: transparent;
  color: var(--paper);
  transition: background 240ms ease-out, color 240ms ease-out, transform 180ms ease-out;
}

.carousel-arrows button:hover {
  background: var(--cyan);
  color: var(--ink);
}

.carousel-arrows button:active {
  transform: scale(0.94);
}

.carousel-arrows button i::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
}

.carousel-arrows [data-carousel-prev] i::before {
  transform: translate(-35%, -50%) rotate(135deg);
}

.carousel-arrows [data-carousel-next] i::before {
  transform: translate(-65%, -50%) rotate(-45deg);
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.carousel-dots button {
  width: 28px;
  height: 44px;
  padding: 0;
  background: transparent;
}

.carousel-dots button::before {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 99px;
  background: rgba(243, 248, 247, 0.22);
  transition: background 240ms ease-out, transform 240ms var(--ease-out);
}

.carousel-dots button:hover::before {
  background: rgba(69, 224, 207, 0.5);
}

.carousel-dots button[aria-current="true"]::before {
  transform: scaleY(1.7);
  background: var(--cyan);
}

.carousel-status {
  justify-self: end;
  color: var(--paper-muted);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}

.carousel-status strong {
  color: var(--paper);
  font-size: 18px;
}

.review-note {
  max-width: 720px;
  margin: 18px auto 0;
  color: var(--ink-soft);
  font-size: 11px;
  text-align: center;
}

.contact {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(90px, 10vw, 150px);
  background: var(--graphite-950);
  color: var(--paper);
}

.contact::before {
  content: "";
  position: absolute;
  z-index: -1;
  right: -20vw;
  bottom: -28vw;
  width: 64vw;
  height: 64vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(69, 224, 207, 0.12), transparent 70%);
}

.contact-grid-lines {
  mask-image: linear-gradient(270deg, rgba(0, 0, 0, 0.65), transparent 72%);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  gap: clamp(54px, 9vw, 138px);
}

.contact-main .section-kicker {
  color: var(--cyan);
}

.contact-main h2 {
  max-width: 700px;
  color: var(--paper);
}

.contact-main > p {
  max-width: 560px;
  margin-top: 25px;
  color: var(--paper-muted);
}

.contact-phone {
  position: relative;
  display: flex;
  min-height: 120px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 44px;
  overflow: hidden;
  border: 1px solid rgba(69, 224, 207, 0.4);
  border-radius: 22px;
  padding: 20px 22px 20px 28px;
  background: rgba(69, 224, 207, 0.06);
  transition: transform 180ms ease-out, background 300ms var(--ease-out), box-shadow 300ms var(--ease-out);
}

.contact-phone::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-102%);
  background: var(--cyan);
  transition: transform 380ms var(--ease-out);
}

.contact-phone > span,
.contact-phone em {
  position: relative;
  z-index: 1;
}

.contact-phone > span {
  display: flex;
  flex-direction: column;
}

.contact-phone small {
  color: var(--paper-muted);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 260ms ease-out;
}

.contact-phone strong {
  margin-top: 4px;
  color: var(--paper);
  font-size: clamp(29px, 3.5vw, 48px);
  font-weight: 760;
  letter-spacing: -0.045em;
  line-height: 1;
  transition: color 260ms ease-out;
}

.contact-phone em {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--paper);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  transition: color 260ms ease-out;
}

.contact-phone em i {
  border: 1px solid var(--line-dark);
  color: var(--cyan);
  transition: transform 240ms var(--ease-out), background 240ms ease-out, color 240ms ease-out;
}

.contact-phone:hover::before {
  transform: translateX(0);
}

.contact-phone:hover {
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.22);
}

.contact-phone:hover small,
.contact-phone:hover strong,
.contact-phone:hover em {
  color: var(--ink);
}

.contact-phone:hover em i {
  transform: translate(3px, -3px);
  background: var(--ink);
  color: var(--cyan);
}

.contact-microcopy {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  color: var(--paper-muted);
  font-size: 12px;
}

.contact-details {
  align-self: start;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 24px;
  background: rgba(16, 33, 38, 0.74);
  backdrop-filter: blur(16px);
}

.schedule {
  padding: 26px 26px 14px;
}

.schedule-title {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-dark);
}

.schedule-title strong {
  font-size: 14px;
}

.schedule dl {
  padding-block: 12px;
}

.schedule dl > div {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: var(--paper-muted);
  font-size: 12px;
}

.schedule dd {
  color: var(--paper);
  font-variant-numeric: tabular-nums;
}

.map-card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  min-height: 104px;
  gap: 15px;
  border-top: 1px solid var(--line-dark);
  padding: 18px 22px;
  background: rgba(243, 248, 247, 0.035);
  transition: background 280ms var(--ease-out), transform 180ms ease-out;
}

.map-card:hover {
  background: rgba(69, 224, 207, 0.1);
}

.map-pin {
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(69, 224, 207, 0.4);
  border-radius: 50% 50% 50% 8px;
  transform: rotate(-45deg) scale(0.72);
}

.map-pin::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}

.map-card > span:nth-child(2) {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.map-card small {
  color: var(--paper-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-card strong {
  margin-top: 3px;
  color: var(--paper);
  font-size: 13px;
}

.map-card > i {
  border: 1px solid var(--line-dark);
  color: var(--cyan);
  transition: transform 240ms var(--ease-out), background 240ms ease-out;
}

.map-card:hover > i {
  transform: translate(3px, -3px);
  background: var(--cyan);
  color: var(--ink);
}

.map-note {
  padding: 0 26px 24px;
  color: var(--paper-muted);
  font-size: 10px;
  line-height: 1.5;
}

.site-footer {
  border-top: 1px solid var(--line-dark);
  padding-block: 28px;
  background: var(--graphite-950);
  color: var(--paper);
}

.footer-layout {
  display: grid;
  grid-template-columns: minmax(230px, 1fr) minmax(280px, 1.3fr) minmax(220px, 1fr);
  align-items: center;
  gap: 28px;
}

.brand-footer .brand-signal {
  width: 30px;
  height: 30px;
  flex-basis: 30px;
}

.footer-layout > p {
  color: var(--paper-muted);
  font-size: 10px;
  text-align: center;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px 20px;
  flex-wrap: wrap;
}

.footer-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--paper-muted);
  font-size: 11px;
  font-weight: 750;
  transition: color 180ms ease-out;
}

.footer-links a:hover {
  color: var(--cyan);
}

.footer-phone {
  color: var(--paper) !important;
}

.js [data-reveal] {
  transform: translateY(16px);
  opacity: 0;
  transition: transform 520ms var(--ease-out), opacity 460ms ease-out;
}

.js [data-reveal].is-visible {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 1120px) {
  .header-layout {
    grid-template-columns: minmax(190px, 1fr) auto minmax(120px, 1fr);
    gap: 18px;
  }

  .primary-nav a {
    padding-inline: 9px;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
    gap: 42px;
  }

  .hero h1 {
    font-size: clamp(58px, 7.2vw, 78px);
  }

  .hero-proof {
    grid-template-columns: 1.25fr 0.75fr;
  }

  .hero-proof > p:last-child {
    display: none;
  }

  .problem-panel {
    grid-template-columns: 54px minmax(0, 1fr) 126px;
    gap: 24px;
    padding: 46px;
  }

  .signal-graphic {
    width: 126px;
    height: 126px;
  }

  .signal-graphic::after { inset: 20px; }
  .signal-graphic span:nth-child(1) { inset: 40px; }
  .signal-graphic span:nth-child(2) { height: 126px; }
  .signal-graphic span:nth-child(3) { width: 126px; }
  .signal-graphic span:nth-child(4) { transform: translate(36px, -36px); }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 82px;
  }

  .shell {
    width: min(calc(100% - 36px), var(--shell));
  }

  .site-header,
  .site-header.is-scrolled {
    height: 68px;
  }

  .header-layout {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 9px;
  }

  .menu-toggle {
    position: relative;
    display: grid;
  }

  .primary-nav {
    position: fixed;
    z-index: -1;
    top: 68px;
    right: 0;
    left: 0;
    display: flex;
    height: calc(100svh - 68px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 26px max(18px, calc((100vw - var(--shell)) / 2));
    background: rgba(7, 17, 20, 0.985);
    transform: translateY(-110%);
    opacity: 0;
    visibility: hidden;
    transition: transform 360ms var(--ease-out), opacity 220ms ease-out, visibility 0s linear 360ms;
  }

  .primary-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    transition: transform 360ms var(--ease-out), opacity 220ms ease-out;
  }

  .primary-nav a {
    min-height: 68px;
    justify-content: flex-start;
    border-bottom: 1px solid var(--line-dark);
    padding-inline: 4px;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.03em;
  }

  .primary-nav a::after {
    right: auto;
    bottom: 0;
    left: 0;
    width: 60px;
  }

  .hero {
    min-height: auto;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 54px;
    padding-block: 62px 106px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero h1 {
    max-width: 760px;
    font-size: clamp(58px, 11vw, 86px);
  }

  .hero-visual {
    min-height: 570px;
  }

  .hero-media {
    inset: 0 0 46px;
  }

  .hero-status {
    right: 18px;
    left: 18px;
  }

  .scroll-cue {
    display: none;
  }

  .section-heading-split,
  .services-heading,
  .reviews-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 24px;
  }

  .section-heading-split > p,
  .services-heading > p {
    max-width: 620px;
  }

  .problem-selector {
    grid-template-columns: 1fr;
  }

  .problem-tabs {
    display: grid;
    grid-template-columns: repeat(4, minmax(150px, 1fr));
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .problem-tabs::-webkit-scrollbar {
    display: none;
  }

  .problem-tabs button {
    min-width: 150px;
    min-height: 64px;
    scroll-snap-align: start;
    border-right: 1px solid var(--line-dark);
    border-bottom: 0;
    padding-inline: 13px;
  }

  .problem-panel {
    min-height: 340px;
  }

  .service-content > div {
    padding-left: 80px;
    gap: 44px;
  }

  .diagnostic-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .diagnostic-media {
    min-height: 540px;
  }

  .diagnostic-media img {
    min-height: 540px;
  }

  .diagnostic-copy {
    max-width: 700px;
  }

  .rating-lockup {
    justify-self: start;
  }

  .contact-details {
    max-width: 640px;
    width: 100%;
  }

  .footer-layout {
    grid-template-columns: 1fr 1fr;
  }

  .footer-layout > p {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@media (max-width: 680px) {
  .shell {
    width: min(calc(100% - 30px), var(--shell));
  }

  .site-header,
  .site-header.is-scrolled {
    height: 66px;
  }

  .brand {
    min-width: 0;
    gap: 8px;
  }

  .brand-signal {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .brand-copy strong {
    font-size: 11px;
  }

  .brand-copy small {
    font-size: 8px;
  }

  .header-call {
    min-height: 44px;
    gap: 8px;
    padding: 0 6px 0 13px;
    font-size: 12px;
  }

  .header-call i {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .primary-nav {
    top: 66px;
    height: calc(100svh - 66px);
    padding-inline: 18px;
  }

  .hero-layout {
    gap: 38px;
    padding-block: 42px 78px;
  }

  .hero h1 {
    margin-top: 18px;
    font-size: clamp(46px, 14vw, 62px);
    line-height: 0.94;
  }

  .hero-intro {
    margin-top: 20px;
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
    margin-top: 26px;
  }

  .button {
    width: 100%;
    min-height: 54px;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    margin-top: 26px;
  }

  .hero-proof > a {
    min-height: 70px;
  }

  .hero-proof > p {
    display: none;
  }

  .hero-proof > * + * {
    border-left: 0;
  }

  .hero-visual {
    min-height: 430px;
  }

  .hero-media {
    inset: 0 0 54px;
    border-radius: 22px 22px 72px 22px;
  }

  .hero-media img {
    object-position: 58% 50%;
  }

  .hero-media figcaption {
    right: 16px;
    bottom: 18px;
    left: 16px;
    font-size: 9px;
  }

  .hero-status {
    right: 10px;
    bottom: 0;
    left: 10px;
    min-height: 78px;
    padding: 14px 15px;
  }

  .hero-status strong {
    font-size: 12px;
  }

  .status-index {
    font-size: 21px;
  }

  .section {
    padding-block: 82px;
  }

  .section-heading h2,
  .diagnostic-copy h2,
  .contact-main h2 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .section-heading-split > p,
  .services-heading > p,
  .diagnostic-copy > p,
  .contact-main > p {
    font-size: 15px;
  }

  .problem-selector {
    margin-top: 42px;
    border-radius: 20px;
  }

  .problem-tabs {
    padding: 8px;
  }

  .problem-panel {
    grid-template-columns: 32px 1fr;
    min-height: 360px;
    align-items: start;
    gap: 14px;
    padding: 34px 22px;
  }

  .problem-index {
    padding-top: 4px;
  }

  .problem-panel h3 {
    font-size: 36px;
  }

  .signal-graphic {
    position: absolute;
    right: -38px;
    bottom: -38px;
    width: 120px;
    height: 120px;
    opacity: 0.42;
  }

  .signal-graphic::after { inset: 20px; }
  .signal-graphic span:nth-child(1) { inset: 40px; }
  .signal-graphic span:nth-child(2) { height: 120px; }
  .signal-graphic span:nth-child(3) { width: 120px; }

  .service-list {
    margin-top: 42px;
  }

  .service-item summary {
    grid-template-columns: 36px minmax(0, 1fr) 44px;
    min-height: 106px;
    gap: 10px;
  }

  .service-title strong {
    font-size: 26px;
  }

  .service-action > span {
    display: none;
  }

  .service-action i {
    width: 42px;
    height: 42px;
  }

  .service-content > div {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 4px 0 34px 46px;
  }

  .service-content ul {
    grid-template-columns: 1fr;
  }

  .diagnostic-section {
    padding-block: 82px;
  }

  .diagnostic-layout {
    gap: 50px;
  }

  .diagnostic-media,
  .diagnostic-media img {
    min-height: 420px;
  }

  .diagnostic-media {
    border-radius: 22px 64px 22px 22px;
  }

  .review-carousel {
    margin-top: 42px;
    border-radius: 20px;
  }

  .review-slide {
    min-height: 430px;
    padding: 32px 24px;
  }

  .review-slide blockquote {
    margin-block: 36px;
    font-size: clamp(29px, 8.8vw, 42px);
    line-height: 1.12;
  }

  .review-number {
    right: 24px;
    bottom: 30px;
    font-size: 34px;
  }

  .carousel-controls {
    grid-template-columns: 1fr auto;
    min-height: 76px;
    padding-inline: 20px;
  }

  .carousel-dots {
    display: none;
  }

  .carousel-arrows button {
    width: 44px;
    height: 44px;
  }

  .contact {
    padding-block: 82px;
  }

  .contact-layout {
    gap: 50px;
  }

  .contact-phone {
    min-height: 104px;
    margin-top: 32px;
    padding-inline: 18px;
  }

  .contact-phone strong {
    font-size: 31px;
  }

  .contact-phone em {
    font-size: 0;
  }

  .contact-phone em i {
    width: 40px;
    height: 40px;
  }

  .schedule {
    padding-inline: 20px;
  }

  .map-card {
    padding-inline: 17px;
  }

  .map-note {
    padding-inline: 20px;
  }

  .footer-layout {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer-layout > p {
    grid-column: auto;
    grid-row: auto;
    max-width: 480px;
    text-align: left;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 390px) {
  .shell {
    width: calc(100% - 24px);
  }

  .brand-signal {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
  }

  .brand-copy strong {
    font-size: 10px;
  }

  .brand-copy small {
    font-size: 7px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .header-call {
    padding-left: 11px;
  }

  .header-call i {
    display: none;
  }

  .hero h1 {
    font-size: clamp(43px, 13.5vw, 52px);
  }

  .hero-visual {
    min-height: 390px;
  }

  .hero-status {
    grid-template-columns: auto 1fr;
  }

  .status-index {
    display: none;
  }

  .problem-tabs {
    grid-template-columns: repeat(4, 148px);
  }

  .problem-panel {
    min-height: 380px;
  }

  .service-item summary {
    grid-template-columns: 28px minmax(0, 1fr) 42px;
  }

  .service-title strong {
    font-size: 23px;
  }

  .service-content > div {
    padding-left: 38px;
  }

  .diagnostic-media,
  .diagnostic-media img {
    min-height: 370px;
  }

  .rating-lockup > strong {
    font-size: 62px;
  }

  .review-slide {
    min-height: 455px;
    padding-inline: 20px;
  }

  .review-slide blockquote {
    font-size: 28px;
  }

  .contact-phone strong {
    font-size: 28px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .hero-media,
  .diagnostic-media {
    will-change: transform;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .scan-line {
    display: none;
  }

  .js [data-reveal] {
    transform: none;
    opacity: 1;
  }
}
