:root {
  --navy-950: #061928;
  --navy-900: #071f33;
  --navy-800: #0d3148;
  --navy-700: #17465e;
  --teal-600: #079b9b;
  --teal-500: #08aaa7;
  --teal-400: #25c5bf;
  --teal-100: #d9f5f2;
  --orange-600: #e95d08;
  --orange-500: #ff6b0a;
  --orange-400: #ff8438;
  --cream: #f8f6ef;
  --paper: #fffdf8;
  --white: #ffffff;
  --ink: #142c3a;
  --muted: #5c6d75;
  --line: #d8e2e3;
  --line-dark: rgba(255, 255, 255, 0.13);
  --font-display: "Sora", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --shadow-sm: 0 10px 30px rgba(7, 31, 51, 0.08);
  --shadow-md: 0 24px 60px rgba(7, 31, 51, 0.14);
  --shadow-lg: 0 34px 80px rgba(3, 20, 32, 0.22);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --container: 1240px;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

.photo-pos-right {
  object-position: 60% center !important;
}

.photo-pos-lower {
  object-position: 55% 58% !important;
}

.photo-pos-upper {
  object-position: 55% 40% !important;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

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

svg {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

h1,
h2,
h3 {
  color: var(--navy-900);
  font-family: var(--font-display);
  letter-spacing: -0.04em;
  line-height: 1.08;
}

h1 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.65rem, 5.4vw, 5rem);
  font-weight: 700;
}

h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(2rem, 3.6vw, 3.45rem);
  font-weight: 700;
}

h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

p {
  color: var(--muted);
}

::selection {
  background: var(--teal-400);
  color: var(--navy-950);
}

:focus-visible {
  outline: 3px solid var(--orange-500);
  outline-offset: 4px;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: 110px 0;
}

.section-dark {
  background: var(--navy-950);
  color: var(--white);
}

.section-dark h1,
.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-dark p {
  color: #b8cad1;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  transform: translateY(-150%);
  border-radius: var(--radius-sm);
  background: var(--orange-500);
  color: var(--navy-950);
  font-weight: 700;
  transition: transform 180ms var(--ease-out);
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--teal-600);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 26px;
  height: 3px;
  border-radius: 20px;
  background: var(--orange-500);
}

.eyebrow-light {
  color: var(--teal-400) !important;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 0;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 150ms var(--ease-out), background 180ms var(--ease-out), color 180ms var(--ease-out), box-shadow 180ms var(--ease-out);
}

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

.button:active {
  transform: scale(0.97);
}

.button-primary {
  background: var(--orange-500);
  box-shadow: 0 10px 24px rgba(255, 107, 10, 0.24);
  color: var(--white);
}

.button-primary:hover {
  background: var(--orange-600);
  box-shadow: 0 14px 30px rgba(255, 107, 10, 0.31);
}

.button-call {
  background: var(--teal-500);
  color: var(--white);
}

.button-call:hover {
  background: var(--teal-600);
}

.button-call span {
  display: flex;
  gap: 4px;
}

.button-large {
  min-height: 58px;
  padding-inline: 25px;
}

.button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.12);
}

.button-dark {
  background: var(--navy-900);
  color: var(--white);
}

.button-dark:hover {
  background: var(--navy-800);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--navy-900);
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--teal-400);
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.text-link svg {
  width: 18px;
  transition: transform 180ms var(--ease-out);
}

.text-link:hover svg {
  transform: translateX(5px);
}

.text-link-light {
  color: var(--white);
}

.utility-bar {
  position: relative;
  z-index: 101;
  background: var(--navy-950);
  color: #d8e8ec;
  font-size: 0.78rem;
}

.utility-inner {
  display: flex;
  min-height: 35px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.utility-inner p {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  color: inherit;
}

.utility-inner a {
  display: flex;
  align-items: center;
  gap: 7px;
}

.utility-inner svg {
  width: 14px;
  height: 14px;
  color: var(--teal-400);
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #40df91;
  box-shadow: 0 0 0 4px rgba(64, 223, 145, 0.13);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(7, 31, 51, 0.09);
  background: rgba(255, 253, 248, 0.95);
  backdrop-filter: blur(16px);
  transition: box-shadow 180ms var(--ease-out), background 180ms var(--ease-out);
}

.site-header.scrolled {
  background: rgba(255, 253, 248, 0.98);
  box-shadow: 0 10px 30px rgba(7, 31, 51, 0.09);
}

.header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  gap: 24px;
}

.brand {
  flex-shrink: 0;
}

.brand img {
  width: 190px;
  height: auto;
}

.desktop-nav {
  display: flex;
  min-width: 0;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.6vw, 25px);
}

.desktop-nav a {
  position: relative;
  color: #314956;
  font-size: 0.83rem;
  font-weight: 700;
  white-space: nowrap;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -11px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  background: var(--orange-500);
  content: "";
  transition: transform 180ms var(--ease-out);
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  transform: scaleX(1);
}

.header-call {
  min-width: 205px;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--navy-900);
  color: var(--white);
}

.menu-toggle .close-icon {
  display: none;
}

.menu-toggle[aria-expanded="true"] .menu-icon {
  display: none;
}

.menu-toggle[aria-expanded="true"] .close-icon {
  display: block;
}

.mobile-nav {
  position: fixed;
  z-index: 99;
  top: 113px;
  right: 0;
  bottom: 0;
  left: 0;
  overflow-y: auto;
  background: var(--paper);
}

.mobile-nav-inner {
  display: grid;
  gap: 0;
  padding-top: 15px;
  padding-bottom: 35px;
}

.mobile-nav-inner > a:not(.button) {
  padding: 16px 4px;
  border-bottom: 1px solid var(--line);
  color: var(--navy-900);
  font-family: var(--font-display);
  font-weight: 650;
}

.mobile-nav-inner .button {
  margin-top: 22px;
}

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  padding: 82px 0 76px;
}

.hero::before {
  position: absolute;
  top: -260px;
  left: 40%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8, 170, 167, 0.16), transparent 67%);
  content: "";
}

.hero::after {
  position: absolute;
  right: -150px;
  bottom: -330px;
  width: 760px;
  height: 760px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 10, 0.13), transparent 68%);
  content: "";
}

.hero-grid-pattern,
.why-grid-pattern,
.contact-grid-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.055;
  background-image: linear-gradient(rgba(255, 255, 255, 0.6) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.6) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 0.7), transparent 72%);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.02fr) minmax(440px, 0.98fr);
  gap: clamp(45px, 6vw, 86px);
}

.hero-copy h1 em {
  color: var(--teal-400);
  font-style: normal;
}

.hero-lede {
  max-width: 660px;
  margin-bottom: 28px;
  color: #c3d1d7 !important;
  font-size: 1.09rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-checks {
  display: grid;
  max-width: 660px;
  margin: 0 0 28px;
  padding: 23px 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px 20px;
  list-style: none;
}

.hero-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e2ecef;
  font-size: 0.89rem;
  font-weight: 600;
}

.hero-checks svg {
  width: 19px;
  height: 19px;
  padding: 3px;
  border-radius: 50%;
  background: rgba(37, 197, 191, 0.16);
  color: var(--teal-400);
  stroke-width: 3;
}

.hero-visual {
  position: relative;
  padding: 20px 0 20px 20px;
}

.hero-photo-frame {
  position: relative;
  aspect-ratio: 4 / 4.55;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 36px 7px 36px 7px;
  background: var(--navy-800);
  box-shadow: var(--shadow-lg);
}

.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
}

.photo-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(4, 23, 36, 0.78) 100%);
}

.diagnostic-card {
  position: absolute;
  right: 25px;
  bottom: 25px;
  left: 25px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(5, 27, 42, 0.84);
  color: var(--white);
  backdrop-filter: blur(13px);
}

.diagnostic-icon {
  display: grid;
  width: 47px;
  height: 47px;
  flex-shrink: 0;
  place-items: center;
  border-radius: 8px;
  background: var(--teal-500);
}

.diagnostic-card span,
.diagnostic-card strong {
  display: block;
}

.diagnostic-card span {
  color: #a9c3cb;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.diagnostic-card strong {
  font-family: var(--font-display);
  font-size: 1rem;
}

.availability-dial {
  position: absolute;
  top: -12px;
  left: -15px;
  display: grid;
  width: 116px;
  height: 116px;
  place-content: center;
  border: 8px solid var(--navy-950);
  border-radius: 50%;
  background: var(--orange-500);
  color: var(--white);
  text-align: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
}

.availability-dial strong {
  font-family: var(--font-display);
  font-size: 1.75rem;
  line-height: 1;
}

.availability-dial small {
  margin-top: 5px;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.25;
}

.dial-ring {
  position: absolute;
  inset: 5px;
  border: 1px dashed rgba(255, 255, 255, 0.55);
  border-radius: 50%;
}

.orange-tab {
  position: absolute;
  right: -18px;
  bottom: 82px;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 7px solid var(--navy-950);
  border-radius: 6px;
  background: var(--teal-500);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 800;
}

.trust-strip {
  position: relative;
  z-index: 3;
  border-bottom: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid article {
  display: flex;
  min-height: 125px;
  align-items: center;
  gap: 14px;
  padding: 24px 26px;
  border-right: 1px solid var(--line);
}

.trust-grid article:last-child {
  border-right: 0;
}

.trust-icon {
  display: grid;
  width: 47px;
  height: 47px;
  flex-shrink: 0;
  place-items: center;
  border-radius: 10px 3px 10px 3px;
  background: var(--teal-100);
  color: var(--teal-600);
}

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

.trust-grid strong {
  margin-bottom: 4px;
  color: var(--navy-900);
  font-family: var(--font-display);
  font-size: 0.89rem;
  line-height: 1.3;
}

.trust-grid span {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.4;
}

.about {
  position: relative;
  background: var(--paper);
}

.about::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 35%;
  height: 36%;
  opacity: 0.35;
  background: radial-gradient(circle at bottom right, var(--teal-100), transparent 68%);
  content: "";
  pointer-events: none;
}

.about-layout {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(60px, 8vw, 110px);
}

.section-copy .section-lede {
  color: #2a4451;
  font-size: 1.05rem;
  line-height: 1.78;
}

.section-copy p:not(.eyebrow) {
  margin-bottom: 20px;
}

.about-console {
  overflow: hidden;
  border: 1px solid #1f4657;
  border-radius: 20px;
  background: var(--navy-900);
  box-shadow: var(--shadow-lg);
  color: var(--white);
}

.console-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line-dark);
  background: var(--navy-950);
  color: #9fb7c0;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.console-live {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #6ee9a8;
}

.console-live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 4px rgba(110, 233, 168, 0.12);
}

.console-screen {
  display: grid;
  align-items: center;
  padding: 38px;
  background: linear-gradient(140deg, var(--navy-800), var(--navy-900));
  grid-template-columns: auto 1fr;
  gap: 36px;
}

.console-gauge {
  position: relative;
  display: grid;
  width: 135px;
  height: 135px;
  place-content: center;
  border: 12px solid rgba(37, 197, 191, 0.14);
  border-top-color: var(--teal-400);
  border-right-color: var(--orange-500);
  border-radius: 50%;
  text-align: center;
  transform: rotate(-18deg);
}

.console-gauge span,
.console-gauge small {
  transform: rotate(18deg);
}

.console-gauge span {
  font-family: var(--font-display);
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1;
}

.console-gauge small {
  margin-top: 5px;
  color: #94b0bb;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.console-readout {
  display: grid;
  gap: 4px;
}

.console-readout span {
  margin-top: 11px;
  color: #7fa0ac;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.console-readout strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.console-appliances {
  display: grid;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  grid-template-columns: repeat(4, 1fr);
}

.console-appliances span {
  display: grid;
  min-height: 90px;
  place-items: center;
  padding: 12px 4px;
  border-right: 1px solid var(--line-dark);
  color: #b8cbd2;
  font-size: 0.67rem;
  font-weight: 700;
}

.console-appliances span:last-child {
  border-right: 0;
}

.console-appliances svg {
  width: 27px;
  height: 27px;
  margin-bottom: 6px;
  color: var(--teal-400);
}

.about-console > a {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  padding: 0 25px;
  background: var(--orange-500);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.83rem;
}

.services-section {
  background: #eef6f5;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 50px;
}

.section-heading > p:not(.eyebrow) {
  font-size: 1.02rem;
}

.section-heading-split {
  display: grid;
  max-width: none;
  align-items: end;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 90px;
}

.section-heading-split > p {
  margin-bottom: 7px;
}

.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.centered .eyebrow {
  justify-content: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  display: flex;
  min-height: 365px;
  flex-direction: column;
  overflow: hidden;
  padding: 30px;
  border: 1px solid #d2dfdf;
  border-radius: 5px 20px 5px 20px;
  background: var(--white);
  box-shadow: 0 8px 28px rgba(15, 47, 61, 0.045);
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out), border-color 220ms var(--ease-out);
}

.service-card::after {
  position: absolute;
  right: -28px;
  bottom: -28px;
  width: 88px;
  height: 88px;
  border: 1px solid rgba(8, 170, 167, 0.15);
  border-radius: 50%;
  content: "";
}

.service-card:hover {
  z-index: 2;
  transform: translateY(-7px);
  border-color: var(--teal-400);
  box-shadow: var(--shadow-md);
}

.service-number {
  position: absolute;
  top: 22px;
  right: 24px;
  color: #a8bdc2;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.service-icon {
  display: grid;
  width: 59px;
  height: 59px;
  margin-bottom: 25px;
  place-items: center;
  border-radius: 14px 4px 14px 4px;
  background: var(--teal-100);
  color: var(--teal-600);
}

.service-icon svg {
  width: 29px;
  height: 29px;
}

.service-card h3 {
  margin-bottom: 13px;
}

.service-card p {
  margin-bottom: 18px;
  font-size: 0.92rem;
}

.issue-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: auto 0 22px;
}

.issue-tags span {
  padding: 5px 9px;
  border: 1px solid #d5e3e3;
  border-radius: 30px;
  color: #587078;
  font-size: 0.66rem;
  font-weight: 700;
  line-height: 1.2;
}

.service-card > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--navy-900);
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 800;
}

.service-card > a svg {
  width: 18px;
  color: var(--orange-500);
  transition: transform 180ms var(--ease-out);
}

.service-card > a:hover svg {
  transform: translateX(4px);
}

.service-card-featured {
  border-color: var(--orange-400);
}

.featured-label {
  position: absolute;
  top: 0;
  left: 0;
  padding: 6px 12px;
  border-radius: 0 0 8px 0;
  background: var(--orange-500);
  color: var(--white);
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.service-card-featured .service-icon {
  margin-top: 8px;
  background: #fff0e6;
  color: var(--orange-500);
}

.service-card-dark {
  border-color: var(--navy-800);
  background: var(--navy-900);
}

.service-card-dark h3,
.service-card-dark > a {
  color: var(--white);
}

.service-card-dark p {
  color: #b3c7cf;
}

.service-card-dark .issue-tags span {
  border-color: rgba(255, 255, 255, 0.16);
  color: #a9c1c9;
}

.service-card-dark > a {
  border-color: var(--line-dark);
}

.service-card-dark .service-number {
  color: #698b98;
}

.repair-gallery {
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.repair-photo-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-auto-rows: 235px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}

.repair-photo-card {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  margin: 0;
  border-radius: 6px 18px 6px 18px;
  background: var(--navy-800);
  box-shadow: 0 12px 34px rgba(7, 31, 51, 0.11);
  grid-column: span 4;
}

.repair-photo-card:nth-child(1) {
  grid-column: span 5;
  grid-row: span 2;
}

.repair-photo-card:nth-child(2) {
  grid-column: span 7;
}

.repair-photo-card:nth-child(3) {
  grid-column: span 3;
}

.repair-photo-card:nth-child(4) {
  grid-column: span 4;
}

.repair-photo-card:nth-child(8) {
  grid-column: span 7;
}

.repair-photo-card:nth-child(9) {
  grid-column: span 5;
}

.repair-photo-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 43%, rgba(4, 23, 36, 0.88) 100%);
  content: "";
  pointer-events: none;
}

.repair-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms var(--ease-out), filter 220ms var(--ease-out);
}

.repair-photo-card:hover img {
  transform: scale(1.025);
  filter: saturate(1.05);
}

.repair-photo-card figcaption {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 22px;
  color: var(--white);
}

.repair-photo-card figcaption span,
.repair-photo-card figcaption strong {
  display: block;
}

.repair-photo-card figcaption span {
  margin-bottom: 5px;
  color: var(--teal-400);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.repair-photo-card figcaption strong {
  max-width: 420px;
  font-family: var(--font-display);
  font-size: 0.92rem;
  line-height: 1.35;
}

.why-section {
  position: relative;
  overflow: hidden;
}

.why-section::after {
  position: absolute;
  right: -180px;
  bottom: -270px;
  width: 600px;
  height: 600px;
  border: 80px solid rgba(255, 107, 10, 0.06);
  border-radius: 50%;
  content: "";
}

.why-grid-pattern {
  mask-image: linear-gradient(to bottom, black, transparent);
}

.why-section .container {
  position: relative;
  z-index: 1;
}

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

.why-card {
  position: relative;
  min-height: 285px;
  padding: 35px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.018);
  transition: background 180ms var(--ease-out);
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.055);
}

.why-card > span {
  position: absolute;
  top: 22px;
  right: 25px;
  color: #466574;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 800;
}

.why-card > svg {
  width: 36px;
  height: 36px;
  margin-bottom: 32px;
  color: var(--teal-400);
}

.why-card h3 {
  margin-bottom: 13px;
}

.why-card p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.why-card p a {
  color: var(--white);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--orange-500);
  text-underline-offset: 3px;
}

.section-link-row {
  display: flex;
  justify-content: center;
  padding-top: 38px;
}

.problems-section {
  background: var(--paper);
}

.problems-layout {
  display: grid;
  align-items: center;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(55px, 8vw, 110px);
}

.problem-visual {
  position: relative;
  padding: 0 24px 24px 0;
}

.problem-visual::before {
  position: absolute;
  top: 24px;
  right: 0;
  bottom: 0;
  left: 24px;
  border-radius: 25px 5px 25px 5px;
  background: var(--teal-500);
  content: "";
}

.problem-visual img {
  position: relative;
  z-index: 1;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 25px 5px 25px 5px;
  box-shadow: var(--shadow-md);
}

.problem-caption {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 52px;
  width: 235px;
  padding: 18px 20px;
  border-radius: 8px 0 0 8px;
  background: var(--navy-900);
  color: var(--white);
}

.problem-caption span,
.problem-caption strong {
  display: block;
}

.problem-caption span {
  margin-bottom: 5px;
  color: var(--teal-400);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.problem-caption strong {
  font-family: var(--font-display);
}

.problem-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 25px;
}

.problem-list {
  display: grid;
  margin: 0 0 30px;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
  list-style: none;
}

.problem-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #334d59;
  font-size: 0.88rem;
  font-weight: 600;
}

.problem-list svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  padding: 3px;
  border-radius: 50%;
  background: var(--teal-100);
  color: var(--teal-600);
  stroke-width: 3;
}

.problem-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 22px;
  border-left: 4px solid var(--orange-500);
  background: #eef5f4;
}

.problem-cta span,
.problem-cta strong {
  display: block;
}

.problem-cta span {
  color: var(--muted);
  font-size: 0.76rem;
}

.problem-cta strong {
  color: var(--navy-900);
  font-family: var(--font-display);
  font-size: 1.03rem;
}

.process-section {
  border-top: 1px solid var(--line);
  background: #fff;
}

.process-grid {
  position: relative;
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  list-style: none;
}

.process-grid::before {
  position: absolute;
  z-index: 0;
  top: 49px;
  right: 12%;
  left: 12%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--teal-400) 0 7px, transparent 7px 15px);
  content: "";
}

.process-card {
  position: relative;
  z-index: 1;
  padding: 0 20px;
  text-align: center;
}

.process-step {
  position: absolute;
  top: 7px;
  left: calc(50% + 24px);
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 4px solid var(--white);
  border-radius: 50%;
  background: var(--orange-500);
  color: var(--white);
  font-size: 0.53rem;
  font-weight: 800;
}

.process-icon {
  display: grid;
  width: 98px;
  height: 98px;
  margin: 0 auto 25px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  color: var(--teal-600);
}

.process-icon svg {
  width: 32px;
  height: 32px;
}

.process-card h3 {
  margin-bottom: 10px;
  font-size: 1rem;
}

.process-card p {
  max-width: 220px;
  margin: 0 auto;
  font-size: 0.83rem;
}

.area-section {
  background: #eef6f5;
}

.area-layout {
  display: grid;
  align-items: stretch;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 55px;
}

.area-copy .section-lede {
  font-size: 1rem;
}

.address-card {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 28px 0 25px;
  padding: 18px;
  border: 1px solid #c8dcdc;
  border-radius: 12px;
  background: var(--white);
}

.address-icon {
  display: grid;
  width: 49px;
  height: 49px;
  flex-shrink: 0;
  place-items: center;
  border-radius: 9px;
  background: var(--navy-900);
  color: var(--teal-400);
}

.address-card span,
.address-card strong {
  display: block;
}

.address-card span {
  margin-bottom: 2px;
  color: var(--teal-600);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.address-card strong {
  color: var(--navy-900);
  font-family: var(--font-display);
}

.address-card p {
  margin: 0;
  font-size: 0.82rem;
}

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

.area-list li {
  padding: 7px 11px;
  border: 1px solid #c8dcdc;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.65);
  color: #45606a;
  font-size: 0.72rem;
  font-weight: 700;
}

.area-note {
  font-size: 0.84rem;
}

.area-note a {
  color: var(--navy-900);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--orange-500);
  text-underline-offset: 3px;
}

.map-panel {
  overflow: hidden;
  border-radius: 8px 24px 8px 24px;
  background: var(--navy-900);
  box-shadow: var(--shadow-md);
}

.map-toolbar {
  display: flex;
  min-height: 85px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 24px;
  color: var(--white);
}

.map-toolbar span,
.map-toolbar strong {
  display: block;
}

.map-toolbar span {
  margin-bottom: 3px;
  color: var(--teal-400);
  font-size: 0.59rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.map-toolbar strong {
  font-family: var(--font-display);
  font-size: 1.03rem;
}

.map-toolbar a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 800;
}

.map-toolbar a svg {
  width: 17px;
  color: var(--orange-500);
}

.map-frame {
  position: relative;
  min-height: 480px;
  background: #dce9e8;
}

.map-frame iframe {
  width: 100%;
  height: 480px;
  border: 0;
}

.map-loader {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  color: var(--teal-600);
  text-align: center;
}

.map-loader svg {
  width: 36px;
  height: 36px;
  margin: 0 auto 10px;
}

.map-loader p {
  margin: 0;
  font-weight: 700;
}

.map-fallback {
  margin: 0;
  padding: 14px 22px;
  color: #9cb8c1;
  font-size: 0.72rem;
}

.map-fallback a {
  color: var(--white);
  text-decoration: underline;
}

.faqs-section {
  background: var(--paper);
}

.faqs-layout {
  display: grid;
  align-items: start;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 80px;
}

.faqs-intro {
  position: sticky;
  top: 130px;
}

.faq-side-card {
  overflow: hidden;
  margin-top: 35px;
  border-radius: 16px 4px 16px 4px;
  background: var(--navy-900);
  box-shadow: var(--shadow-md);
}

.faq-side-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.faq-side-card > div {
  padding: 20px 22px;
}

.faq-side-card span {
  display: block;
  margin-bottom: 4px;
  color: #90adb7;
  font-size: 0.7rem;
}

.faq-side-card a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
}

.faq-side-card a svg {
  color: var(--orange-500);
}

.faq-item {
  border-bottom: 1px solid #cad9da;
}

.faq-item:first-child {
  border-top: 1px solid #cad9da;
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  display: flex;
  width: 100%;
  min-height: 83px;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 20px 4px;
  border: 0;
  background: transparent;
  color: var(--navy-900);
  text-align: left;
}

.faq-item button > span {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 650;
}

.faq-item button i {
  color: var(--teal-600);
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-style: normal;
  font-weight: 800;
}

.faq-item button b {
  position: relative;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border: 1px solid #bcd0d2;
  border-radius: 50%;
}

.faq-item button b::before,
.faq-item button b::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: var(--navy-900);
  content: "";
  transition: transform 180ms var(--ease-out);
}

.faq-item button b::before {
  transform: translate(-50%, -50%);
}

.faq-item button b::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item button[aria-expanded="true"] {
  color: var(--teal-600);
}

.faq-item button[aria-expanded="true"] b {
  border-color: var(--teal-500);
  background: var(--teal-500);
}

.faq-item button[aria-expanded="true"] b::before,
.faq-item button[aria-expanded="true"] b::after {
  background: var(--white);
}

.faq-item button[aria-expanded="true"] b::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-answer {
  overflow: hidden;
}

.faq-answer p {
  max-width: 680px;
  margin: -3px 55px 26px 48px;
  color: #50656e;
  font-size: 0.92rem;
}

.contact-section {
  position: relative;
  overflow: hidden;
  background: var(--navy-950);
}

.contact-section::before {
  position: absolute;
  top: -240px;
  left: -200px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8, 170, 167, 0.16), transparent 66%);
  content: "";
}

.contact-grid-pattern {
  mask-image: linear-gradient(to right, black, transparent 80%);
}

.contact-layout {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 90px;
}

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

.contact-copy > p:not(.eyebrow) {
  margin-bottom: 30px;
  color: #abc1ca;
  font-size: 1.02rem;
}

.contact-phone {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  color: var(--white);
}

.contact-phone > span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  background: var(--orange-500);
}

.contact-phone small,
.contact-phone strong {
  display: block;
}

.contact-phone small {
  color: var(--teal-400);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.contact-phone strong {
  margin-top: 3px;
  font-family: var(--font-display);
  font-size: 1.55rem;
}

.contact-details {
  display: grid;
  margin: 28px 0 30px;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-details dt {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: #7f9ca7;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-details dt svg {
  width: 16px;
  color: var(--teal-400);
}

.contact-details dd {
  margin: 0;
  color: #dae8eb;
  font-size: 0.84rem;
}

.form-card {
  overflow: hidden;
  border-radius: 8px 25px 8px 25px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.form-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 23px 28px;
  border-bottom: 1px solid var(--line);
  background: #eef6f5;
}

.form-header span {
  color: var(--teal-600);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.form-header strong {
  color: var(--navy-900);
  font-family: var(--font-display);
}

.form-card form {
  padding: 30px;
}

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

.field {
  position: relative;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 7px;
  color: #2f4854;
  font-size: 0.77rem;
  font-weight: 700;
}

.field label span {
  color: var(--orange-500);
}

.field input:not([type="checkbox"]),
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #cbd9da;
  border-radius: 7px;
  background: #fbfdfc;
  color: var(--navy-900);
  transition: border 160ms var(--ease-out), box-shadow 160ms var(--ease-out), background 160ms var(--ease-out);
}

.field input:not([type="checkbox"]),
.field select {
  height: 49px;
  padding: 0 13px;
}

.field textarea {
  min-height: 118px;
  padding: 12px 13px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #93a5ab;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--teal-500);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(8, 170, 167, 0.12);
}

.field input.invalid,
.field textarea.invalid,
.field select.invalid {
  border-color: #d54836;
  box-shadow: 0 0 0 3px rgba(213, 72, 54, 0.09);
}

.field-error {
  display: block;
  min-height: 18px;
  margin-top: 4px;
  color: #b62e20;
  font-size: 0.7rem;
}

.consent-field {
  display: grid;
  align-items: start;
  grid-template-columns: 20px 1fr;
  gap: 0 11px;
}

.consent-field input {
  width: 18px;
  height: 18px;
  margin: 3px 0 0;
  accent-color: var(--teal-600);
}

.consent-field label {
  margin: 0;
  color: #52666f;
  font-size: 0.69rem;
  font-weight: 500;
  line-height: 1.55;
}

.consent-field .field-error {
  grid-column: 2;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.button-submit {
  width: 100%;
  min-height: 55px;
  margin-top: 18px;
}

.button-submit svg {
  margin-left: auto;
}

.button-submit[disabled] {
  opacity: 0.7;
  cursor: wait;
}

.form-status {
  display: none;
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 650;
}

.form-status.success,
.form-status.error {
  display: block;
}

.form-status.success {
  background: #dff6e9;
  color: #176b43;
}

.form-status.error {
  background: #fff0ed;
  color: #a82f21;
}

.form-note {
  margin: 16px 0 0;
  color: #778a91;
  font-size: 0.69rem;
  text-align: center;
}

.form-note a {
  color: var(--navy-900);
  font-weight: 800;
}

.final-cta {
  background: var(--orange-500);
  color: var(--white);
}

.final-cta-inner {
  display: grid;
  min-height: 220px;
  align-items: center;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
}

.final-cta-mark {
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 19px 5px 19px 5px;
  background: rgba(255, 255, 255, 0.11);
}

.final-cta-mark svg {
  width: 38px;
  height: 38px;
}

.final-cta p {
  margin: 0 0 5px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.final-cta h2 {
  margin: 0 0 5px;
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.final-cta span {
  color: rgba(255, 255, 255, 0.86);
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.final-cta .button-primary {
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: var(--white);
  box-shadow: none;
  color: var(--orange-600);
}

.site-footer {
  background: #051725;
  color: var(--white);
}

.footer-main {
  display: grid;
  padding-top: 75px;
  padding-bottom: 55px;
  grid-template-columns: 1.5fr 0.7fr 0.9fr 1fr;
  gap: 50px;
}

.footer-wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  margin-bottom: 20px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.footer-wordmark span {
  color: var(--teal-400);
  font-size: 0.88rem;
  letter-spacing: -0.025em;
}

.footer-brand p {
  max-width: 350px;
  margin-bottom: 18px;
  color: #829eaa;
  font-size: 0.84rem;
}

.footer-brand > a {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--teal-400);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column h2 {
  margin-bottom: 11px;
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: -0.01em;
}

.footer-column a,
.footer-column p {
  margin: 0;
  color: #819ca7;
  font-size: 0.78rem;
}

.footer-column a:hover {
  color: var(--teal-400);
}

.footer-contact > a:first-of-type {
  color: var(--white);
  font-weight: 800;
}

.footer-contact > a:last-child {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  color: var(--teal-400);
  font-weight: 700;
}

.footer-contact svg {
  width: 15px;
  transform: rotate(-90deg);
}

.footer-disclaimer {
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid var(--line-dark);
}

.footer-disclaimer p {
  margin: 0;
  color: #64808c;
  font-size: 0.64rem;
  line-height: 1.7;
}

.footer-bottom {
  border-top: 1px solid var(--line-dark);
  background: #04131f;
}

.footer-bottom .container {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom p {
  margin: 0;
  color: #58727e;
  font-size: 0.66rem;
}

.mobile-call {
  position: fixed;
  z-index: 90;
  right: 14px;
  bottom: calc(12px + env(safe-area-inset-bottom));
  left: 14px;
  display: none;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 9px;
  background: var(--orange-500);
  box-shadow: 0 14px 35px rgba(4, 23, 36, 0.32);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms var(--ease-out), transform 650ms var(--ease-out);
}

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

.reveal-delay-1 {
  transition-delay: 80ms;
}

.reveal-delay-2 {
  transition-delay: 150ms;
}

.reveal-delay-3 {
  transition-delay: 220ms;
}

@media (max-width: 1120px) {
  .desktop-nav {
    gap: 13px;
  }

  .desktop-nav a {
    font-size: 0.76rem;
  }

  .header-call {
    min-width: 178px;
    padding-inline: 15px;
    font-size: 0.75rem;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
    gap: 45px;
  }

  .hero {
    min-height: auto;
  }

  .trust-grid article {
    padding-inline: 17px;
  }

  .trust-grid strong {
    font-size: 0.78rem;
  }

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

  .contact-layout {
    gap: 55px;
  }

  .footer-main {
    grid-template-columns: 1.4fr 0.6fr 0.8fr;
  }

  .footer-contact {
    grid-column: 2 / 4;
    grid-template-columns: repeat(5, auto);
    align-items: center;
  }

  .footer-contact h2 {
    margin: 0;
  }

  .footer-contact > a:last-child {
    margin: 0;
  }
}

@media (max-width: 920px) {
  .section {
    padding: 85px 0;
  }

  .desktop-nav,
  .header-call {
    display: none;
  }

  .header-inner {
    min-height: 72px;
  }

  .menu-toggle {
    display: flex;
    margin-left: auto;
  }

  .mobile-nav {
    top: 107px;
  }

  .hero {
    padding: 70px 0;
  }

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

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

  .hero-visual {
    max-width: 700px;
    margin: 0 auto;
  }

  .hero-photo-frame {
    aspect-ratio: 16 / 11;
  }

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

  .trust-grid article:nth-child(2) {
    border-right: 0;
  }

  .trust-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .about-layout,
  .problems-layout,
  .area-layout,
  .faqs-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .about-console {
    max-width: 650px;
  }

  .section-heading-split {
    grid-template-columns: 1fr;
    gap: 10px;
  }

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

  .repair-photo-grid {
    grid-auto-rows: 225px;
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .repair-photo-card,
  .repair-photo-card:nth-child(n) {
    grid-column: span 3;
    grid-row: span 1;
  }

  .repair-photo-card:nth-child(1) {
    grid-row: span 2;
  }

  .problem-visual {
    max-width: 650px;
  }

  .problem-visual img {
    aspect-ratio: 16 / 11;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 45px;
  }

  .process-grid::before {
    display: none;
  }

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

  .faqs-intro {
    position: static;
  }

  .faq-side-card {
    max-width: 620px;
  }

  .contact-copy {
    max-width: 680px;
  }

  .final-cta-inner {
    grid-template-columns: auto 1fr;
    padding-top: 35px;
    padding-bottom: 35px;
  }

  .final-cta-actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
    margin-left: 114px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding: 68px 0;
  }

  h1 {
    font-size: clamp(2.25rem, 11vw, 3.4rem);
  }

  h2 {
    font-size: clamp(1.8rem, 8.5vw, 2.55rem);
  }

  .utility-inner {
    justify-content: center;
  }

  .utility-inner a {
    display: none;
  }

  .brand img {
    width: 166px;
  }

  .mobile-nav {
    top: 107px;
  }

  .hero {
    padding: 57px 0 63px;
  }

  .hero-actions {
    display: grid;
  }

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

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

  .hero-visual {
    padding: 10px 0 0;
  }

  .hero-photo-frame {
    aspect-ratio: 4 / 4.7;
    border-radius: 24px 5px 24px 5px;
  }

  .availability-dial {
    top: -22px;
    left: -5px;
    width: 96px;
    height: 96px;
    border-width: 6px;
  }

  .availability-dial strong {
    font-size: 1.4rem;
  }

  .diagnostic-card {
    right: 15px;
    bottom: 15px;
    left: 15px;
  }

  .orange-tab {
    display: none;
  }

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

  .trust-grid article {
    min-height: 105px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-grid article:last-child {
    border-bottom: 0;
  }

  .console-screen {
    padding: 28px 22px;
    grid-template-columns: 1fr;
  }

  .console-gauge {
    width: 120px;
    height: 120px;
    margin: auto;
  }

  .console-readout {
    text-align: center;
  }

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

  .console-appliances span:nth-child(2) {
    border-right: 0;
  }

  .console-appliances span:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-dark);
  }

  .about-console > a {
    display: grid;
    gap: 2px;
    padding: 14px 20px;
  }

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

  .repair-photo-grid {
    grid-auto-rows: 280px;
    grid-template-columns: 1fr;
  }

  .repair-photo-card,
  .repair-photo-card:nth-child(n) {
    grid-column: 1;
    grid-row: span 1;
  }

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

  .why-card {
    min-height: 255px;
  }

  .problem-visual {
    padding-right: 14px;
    padding-bottom: 14px;
  }

  .problem-visual::before {
    top: 14px;
    left: 14px;
  }

  .problem-visual img {
    aspect-ratio: 4 / 4.8;
  }

  .problem-caption {
    right: 0;
    bottom: 35px;
    width: 215px;
  }

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

  .problem-cta {
    align-items: stretch;
    flex-direction: column;
  }

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

  .process-card {
    padding-inline: 8px;
  }

  .process-card p {
    max-width: 320px;
  }

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

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

  .faq-item button {
    min-height: 75px;
  }

  .faq-item button > span {
    gap: 11px;
    font-size: 0.9rem;
  }

  .faq-answer p {
    margin-right: 15px;
    margin-left: 30px;
  }

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

  .field-full {
    grid-column: 1;
  }

  .form-card form {
    padding: 24px 20px;
  }

  .form-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
    padding: 20px;
  }

  .consent-field {
    grid-template-columns: 20px 1fr;
  }

  .final-cta-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .final-cta-mark {
    width: 66px;
    height: 66px;
  }

  .final-cta-actions {
    display: grid;
    grid-column: 1;
    justify-content: stretch;
    margin-left: 0;
  }

  .footer-main {
    padding-top: 60px;
    grid-template-columns: repeat(2, 1fr);
    gap: 42px 30px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-contact {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    gap: 8px;
    padding-top: 25px;
    border-top: 1px solid var(--line-dark);
  }

  .footer-bottom .container {
    min-height: 90px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
  }

  .site-footer {
    padding-bottom: 78px;
  }

  .mobile-call {
    display: flex;
  }
}

@media (max-width: 420px) {
  .header-inner {
    min-height: 68px;
  }

  .brand img {
    width: 148px;
  }

  .mobile-nav {
    top: 103px;
  }

  .hero-lede {
    font-size: 0.98rem;
  }

  .button {
    padding-inline: 16px;
  }

  .console-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .contact-phone strong {
    font-size: 1.25rem;
  }

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

  .footer-brand,
  .footer-contact {
    grid-column: 1;
  }
}

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

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

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