:root {
  --black: #050505;
  --ink: #0c0d10;
  --charcoal: #141518;
  --panel: #1d1f23;
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(5, 5, 5, 0.14);
  --white: #ffffff;
  --paper: #f7f7f4;
  --muted: #646b75;
  --yellow: #ffc400;
  --yellow-dark: #d99f00;
  --orange: #ff7a00;
  --radius: 14px;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
  --max: 1180px;
  font-family: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: "Helvetica Neue", Arial, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 999;
  transform: translateY(-150%);
  border-radius: 8px;
  padding: 10px 14px;
  background: var(--yellow);
  color: var(--black);
  font-weight: 900;
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(4, 4, 4, 0.96);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 86px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 26px;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
}

.brand-logo {
  display: block;
  width: clamp(150px, 13vw, 170px);
  height: auto;
}

.primary-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 22px;
  color: #f6f6f6;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.primary-nav a,
.nav-group > button {
  position: relative;
  border: 0;
  padding: 30px 0;
  background: transparent;
  color: inherit;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.primary-nav > a::after,
.nav-group > button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--yellow);
  transition: transform 180ms ease;
}

.primary-nav > a:hover::after,
.primary-nav > a:focus-visible::after,
.nav-group:hover > button::after,
.nav-group.is-open > button::after {
  transform: scaleX(1);
}

.nav-group {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% - 8px);
  left: 50%;
  width: min(440px, calc(100vw - 34px));
  max-height: none;
  overflow: visible;
  transform: translate(-50%, 10px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  border: 1px solid rgba(255, 196, 0, 0.24);
  border-radius: 12px;
  padding: 10px;
  background: rgba(10, 10, 10, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.nav-group:hover .dropdown-menu,
.nav-group:focus-within .dropdown-menu,
.nav-group.is-open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 9px;
  border-radius: 8px;
  min-height: 44px;
  padding: 9px 10px;
  color: #eeeeee;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: none;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
  background: rgba(255, 196, 0, 0.12);
  color: var(--yellow);
  outline: none;
}

.menu-token {
  width: 34px;
  min-width: 34px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 196, 0, 0.34);
  border-radius: 7px;
  background: rgba(255, 196, 0, 0.08);
  color: var(--yellow);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 0.62rem;
  line-height: 1;
}

.mobile-menu-ctas {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-phone {
  color: #f7f7f7;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 13px 18px;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.btn-primary {
  border-color: var(--yellow);
  background: linear-gradient(180deg, #ffd84a, var(--yellow));
  color: var(--black);
  box-shadow: 0 18px 34px rgba(255, 196, 0, 0.22);
}

.btn-light {
  border-color: rgba(5, 5, 5, 0.18);
  background: rgba(255, 255, 255, 0.94);
  color: var(--black);
}

.btn-dark {
  border-color: rgba(255, 196, 0, 0.36);
  background: rgba(255, 196, 0, 0.08);
  color: var(--yellow);
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  width: 22px;
  height: 3px;
  border-radius: 999px;
  background: var(--white);
}

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

.hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 36px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0 44%, rgba(255, 255, 255, 0.78) 50%, rgba(5, 5, 5, 0.18) 66%, rgba(5, 5, 5, 0.88) 100%),
    radial-gradient(circle at 74% 62%, rgba(255, 196, 0, 0.34), transparent 26%),
    #f4f4f0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0, 0, 0, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 44px;
  align-items: center;
}

.hero-copy {
  color: var(--black);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--orange);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: Impact, "Arial Black", sans-serif;
  letter-spacing: 0;
  line-height: 0.98;
  text-transform: uppercase;
}

h1 {
  max-width: 590px;
  margin-bottom: 20px;
  color: var(--black);
  font-size: clamp(3.2rem, 6.8vw, 5.9rem);
}

h1 span {
  display: block;
  color: var(--yellow-dark);
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(2.25rem, 4vw, 3.35rem);
}

h3 {
  font-size: 1.12rem;
}

.hero-subtitle {
  max-width: 520px;
  color: #111;
  font-size: 1.08rem;
  font-weight: 780;
}

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

.path-copy {
  max-width: 560px;
  margin: 20px 0 0;
  border-left: 4px solid var(--yellow);
  padding-left: 14px;
  color: #151515;
  font-weight: 850;
}

.hero-media-wrap {
  position: relative;
}

.hero-media {
  position: relative;
  overflow: hidden;
  min-height: 470px;
  border-radius: 0;
  background: var(--black);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  isolation: isolate;
}

.hero-media img,
.service-hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-media::before,
.service-hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 74% 68%, rgba(255, 196, 0, 0.38), transparent 18%),
    linear-gradient(90deg, transparent 48%, rgba(255, 196, 0, 0.18), transparent 72%);
  mix-blend-mode: screen;
  pointer-events: none;
  animation: scannerPulse 3.4s ease-in-out infinite;
}

.hero-media::after,
.service-hero-media::after {
  content: "";
  position: absolute;
  left: -18%;
  top: 48%;
  z-index: 3;
  width: 72%;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(255, 196, 0, 0.9), transparent);
  filter: drop-shadow(0 0 14px rgba(255, 196, 0, 0.95));
  animation: scanLine 4.6s linear infinite;
  pointer-events: none;
}

@keyframes scannerPulse {
  0%, 100% { opacity: 0.58; }
  50% { opacity: 1; }
}

@keyframes scanLine {
  0% { transform: translateX(-15%) translateY(-56px); opacity: 0; }
  12% { opacity: 1; }
  78% { opacity: 1; }
  100% { transform: translateX(140%) translateY(48px); opacity: 0; }
}

.benefit-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(0, 0, 0, 0.16);
}

.benefit-row div {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 22px 16px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--black);
  text-align: center;
}

.mini-icon,
.large-icon,
.card-icon {
  display: inline-grid;
  place-items: center;
  border: 3px solid var(--black);
  color: var(--black);
  font-family: Impact, "Arial Black", sans-serif;
  line-height: 1;
}

.mini-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: var(--orange);
  font-size: 0.8rem;
}

.section {
  padding: 74px 0;
}

.section-white {
  background: var(--paper);
  color: var(--black);
}

.section-head {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-head.centered {
  text-align: center;
}

.section-head p {
  color: #242424;
  font-weight: 760;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 318px;
  height: 100%;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  padding: 28px 22px;
  background: var(--white);
  color: var(--black);
  text-align: center;
  text-decoration: none;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover,
.service-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(255, 196, 0, 0.72);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.16);
  outline: none;
}

.card-icon {
  width: 74px;
  min-width: 74px;
  height: 74px;
  flex: 0 0 74px;
  align-self: center;
  border-color: var(--yellow);
  border-radius: 18px;
  background: linear-gradient(180deg, #fff8d2, var(--yellow));
  font-size: 1.1rem;
}

.service-card h3 {
  width: 100%;
  min-height: 3.45em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 14px 0 0;
  line-height: 1.08;
}

.service-card .accent-line {
  width: 52px;
  height: 4px;
  flex: 0 0 4px;
  margin: 12px auto 14px;
  background: var(--yellow);
}

.service-card p {
  flex: 1 1 auto;
  margin: 0;
  color: #252525;
  font-size: 0.95rem;
  font-weight: 680;
}

.repair-section,
.cases-section,
.reviews-section,
.related-section,
.process-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 196, 0, 0.16), transparent 28%),
    linear-gradient(180deg, #111, #050505);
  color: var(--white);
}

.repair-section .section-head p,
.cases-section .section-head p,
.reviews-section .section-head p,
.related-section .section-head p,
.process-section .section-head p {
  color: #d8d8d8;
}

.repair-card,
.case-grid article,
.review-grid article,
.process-grid article,
.related-grid .service-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045));
  color: var(--white);
  box-shadow: none;
}

.repair-card {
  align-items: center;
  text-align: center;
}

.repair-card .card-icon {
  align-self: center;
  border-color: rgba(255, 196, 0, 0.78);
  background: rgba(255, 196, 0, 0.1);
  color: var(--yellow);
}

.repair-card h3 {
  justify-content: center;
  text-align: center;
  color: var(--yellow);
}

.repair-card .accent-line {
  margin-left: auto;
  margin-right: auto;
}

.repair-card p,
.related-grid .service-card p {
  color: #d5d5d5;
}

.card-link {
  margin-top: auto;
  padding-top: 16px;
  align-self: center;
  color: var(--yellow);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.about-section {
  background: #fbfbf8;
  color: var(--black);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.74fr);
  gap: 42px;
  align-items: center;
}

.split-grid p {
  color: #232323;
  font-size: 1.04rem;
  font-weight: 680;
}

.statement-card,
.service-benefit-card {
  border: 1px solid var(--line-dark);
  border-left: 6px solid var(--yellow);
  border-radius: 14px;
  padding: 28px;
  background: var(--white);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.statement-card strong,
.service-benefit-card h3 {
  display: block;
  margin-bottom: 14px;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 1.7rem;
  text-transform: uppercase;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line-dark);
  background: rgba(0, 0, 0, 0.12);
}

.why-grid article {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 12px;
  min-height: 250px;
  padding: 28px 22px;
  background: var(--paper);
  text-align: center;
}

.large-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: var(--orange);
}

.why-grid p {
  color: #242424;
  font-weight: 680;
}

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

.process-grid article,
.case-grid article,
.review-grid article {
  border-radius: 12px;
  padding: 26px;
}

.step-number {
  width: 54px;
  height: 54px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 1.55rem;
}

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

.stars {
  display: block;
  margin-bottom: 14px;
  color: var(--yellow);
  letter-spacing: 0.12em;
}

.contact-section {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.9)),
    radial-gradient(circle at 90% 40%, rgba(255, 196, 0, 0.2), transparent 22%);
  color: var(--black);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1fr);
  gap: 42px;
  align-items: start;
}

.contact-copy p {
  color: #222;
  font-weight: 720;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.contact-list a,
.contact-list div {
  display: grid;
  gap: 2px;
  border-left: 4px solid var(--yellow);
  padding: 8px 0 8px 14px;
  color: var(--black);
  text-decoration: none;
}

.contact-list strong {
  font-family: Impact, "Arial Black", sans-serif;
  text-transform: uppercase;
}

.request-form {
  border: 1px solid var(--line-dark);
  border-radius: 16px;
  padding: 24px;
  background: var(--white);
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.1);
}

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

label {
  display: grid;
  gap: 6px;
  color: #202020;
  font-weight: 850;
}

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

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 8px;
  padding: 13px 12px;
  background: #fbfbfb;
  color: var(--black);
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--yellow-dark);
  box-shadow: 0 0 0 3px rgba(255, 196, 0, 0.18);
  outline: none;
}

.request-form .btn {
  width: 100%;
  margin-top: 16px;
}

.form-status {
  margin: 12px 0 0;
  color: #176b2c;
  font-weight: 850;
}

.site-footer {
  padding: 48px 0;
  background: #050505;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
  gap: 28px;
}

.footer-grid h3 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--yellow);
  font-size: 0.95rem;
}

.footer-grid > div:nth-child(2) h3::before,
.footer-grid > div:nth-child(3) h3::before {
  content: "";
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  border: 1.5px solid rgba(255, 196, 0, 0.78);
  border-radius: 4px;
  box-shadow: inset 0 0 0 3px rgba(255, 196, 0, 0.08);
}

.footer-grid > div:nth-child(2) h3::before {
  border-radius: 50%;
}

.footer-grid a,
.footer-grid span,
.footer-grid p {
  display: block;
  color: #d7d7d7;
  text-decoration: none;
}

.footer-grid > div:nth-child(4) a,
.footer-grid > div:nth-child(4) span {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer-grid > div:nth-child(4) a::before,
.footer-grid > div:nth-child(4) span::before {
  content: "";
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  margin-top: 3px;
  opacity: 0.82;
  background: var(--yellow);
}

.footer-grid > div:nth-child(4) a[href^="tel:"]::before {
  border-radius: 4px 4px 6px 6px;
  clip-path: polygon(25% 0, 75% 0, 82% 18%, 70% 30%, 70% 70%, 82% 82%, 75% 100%, 25% 100%, 18% 82%, 30% 70%, 30% 30%, 18% 18%);
}

.footer-grid > div:nth-child(4) a[href^="mailto:"]::before {
  border-radius: 3px;
  clip-path: polygon(0 12%, 100% 12%, 100% 88%, 0 88%, 0 12%, 50% 55%, 100% 12%, 50% 55%, 0 12%);
}

.footer-grid > div:nth-child(4) span::before {
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: inset 0 0 0 4px #050505;
}

.footer-grid a + a,
.footer-grid a + span {
  margin-top: 7px;
}

.footer-brand {
  margin-bottom: 12px;
}

.mobile-bottom-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: max(12px, env(safe-area-inset-bottom));
  z-index: 60;
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  padding: 8px;
  background: rgba(5, 5, 5, 0.95);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.36);
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: transform 180ms ease, opacity 180ms ease;
}

.mobile-bottom-bar a {
  min-height: 52px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #071733;
  color: var(--white);
  font-family: Impact, "Arial Black", sans-serif;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.mobile-bottom-bar a:nth-child(2) {
  background: var(--yellow);
  color: var(--black);
}

body.mobile-bar-visible .mobile-bottom-bar {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.service-hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0;
  background:
    radial-gradient(circle at 76% 46%, rgba(255, 196, 0, 0.22), transparent 26%),
    linear-gradient(135deg, #050505, #151515 54%, #050505);
}

.service-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: 42px;
  align-items: center;
}

.service-hero h1 {
  color: var(--white);
}

.service-hero p {
  max-width: 620px;
  color: #e3e3e3;
  font-size: 1.08rem;
  font-weight: 720;
}

.service-hero-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.58 / 1;
  border: 1px solid rgba(255, 196, 0, 0.22);
  border-radius: 14px;
  background: #111;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.service-detail {
  color: var(--black);
}

.service-benefit-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-benefit-card li {
  border-left: 4px solid var(--yellow);
  padding: 8px 0 8px 14px;
  color: #202020;
  font-weight: 850;
}

.related-grid .service-card {
  min-height: 318px;
}

@media (max-width: 1120px) {
  .header-phone {
    display: none;
  }

  .primary-nav {
    gap: 16px;
  }

  .hero-grid,
  .service-hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
    gap: 30px;
  }
}

@media (max-width: 920px) {
  .header-inner {
    position: relative;
    grid-template-columns: auto auto;
    gap: 14px;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .header-actions {
    display: none;
  }

  .primary-nav {
    grid-column: 1 / -1;
    position: static;
    display: none;
    width: 100%;
    max-height: none;
    overflow: visible;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    padding: 10px;
    background: rgba(5, 5, 5, 0.98);
    box-shadow: var(--shadow);
  }

  body.nav-open .primary-nav {
    display: grid;
    gap: 4px;
  }

  .primary-nav a,
  .nav-group > button {
    width: 100%;
    min-height: 50px;
    padding: 14px;
    text-align: left;
  }

  .primary-nav > a::after,
  .nav-group > button::after {
    display: none;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
    max-height: 0;
    transform: none;
    border: 0;
    padding: 0 0 0 10px;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    overflow: hidden;
    transition: max-height 180ms ease;
  }

  .nav-group.is-open .dropdown-menu {
    max-height: none;
    padding-bottom: 8px;
  }

  .nav-group:hover .dropdown-menu,
  .nav-group:focus-within .dropdown-menu,
  .nav-group.is-open .dropdown-menu {
    transform: none;
  }

  .nav-group:not(.is-open):hover .dropdown-menu,
  .nav-group:not(.is-open):focus-within .dropdown-menu {
    max-height: 0;
    padding-bottom: 0;
  }

  .dropdown-menu a {
    min-height: 42px;
    padding: 9px 10px;
    font-size: 0.84rem;
  }

  .mobile-menu-ctas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 8px;
    padding: 12px 4px 4px;
  }

  .mobile-menu-ctas .btn {
    width: 100%;
    min-height: 48px;
    padding-inline: 10px;
    font-size: 0.78rem;
  }

  .hero {
    padding-top: 46px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0 48%, rgba(255, 255, 255, 0.72) 66%, rgba(5, 5, 5, 0.95) 100%),
      #f4f4f0;
  }

  .hero-grid,
  .service-hero-grid,
  .split-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 330px;
  }

  .hero-media img {
    object-position: 65% center;
  }

  .benefit-row,
  .why-grid,
  .card-grid,
  .process-grid,
  .case-grid,
  .review-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-grid {
    gap: 24px;
  }

  .service-hero {
    padding: 54px 0;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 96px;
  }

  .container {
    width: min(100% - 32px, var(--max));
  }

  .site-header {
    position: sticky;
  }

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

  .brand-logo {
    width: 148px;
  }

  .menu-toggle {
    width: 48px;
    height: 48px;
  }

  .hero {
    padding: 34px 0 26px;
  }

  h1 {
    font-size: clamp(3rem, 13vw, 4.25rem);
  }

  h2 {
    font-size: 2.35rem;
  }

  .hero-actions,
  .request-form .btn {
    display: grid;
  }

  .hero-subtitle {
    max-width: 100%;
    font-size: 1rem;
    overflow-wrap: break-word;
  }

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

  .hero-media {
    min-height: 238px;
    aspect-ratio: 1.38 / 1;
  }

  .hero-media img {
    object-position: 70% center;
  }

  .benefit-row,
  .why-grid,
  .card-grid,
  .process-grid,
  .case-grid,
  .review-grid,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .benefit-row {
    margin-top: 22px;
  }

  .section {
    padding: 52px 0;
  }

  .service-card {
    min-height: auto;
    padding: 24px 20px;
  }

  .service-card h3 {
    min-height: 2.55em;
  }

  .repair-card {
    text-align: center;
  }

  .contact-section,
  .site-footer {
    scroll-margin-bottom: 130px;
  }

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

  .mobile-bottom-bar {
    display: grid;
  }

  body.hide-mobile-bar .mobile-bottom-bar {
    transform: translateY(120%);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
  }

  .service-hero-grid {
    gap: 24px;
  }

  .service-hero-media {
    aspect-ratio: 1.34 / 1;
  }
}

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

  h1 {
    font-size: 2.8rem;
  }

  .btn {
    padding-inline: 12px;
    font-size: 0.82rem;
  }

  .mobile-bottom-bar a {
    min-height: 48px;
    font-size: 0.82rem;
  }
}
