:root {
  --red:      #CC1111;
  --red-lt:   #E02020;
  --red-text: #FF4444;
  --black:    #000000;
  --near:     #111111;
  --card:     #000000;
  --border:   #333333;
  --muted:    #AAAAAA;
  --white:    #FFFFFF;
  --off:      #EEEEEE;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Source Sans 3', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

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

.skip-link {
  position: absolute; top: -40px; left: 0;
  background: var(--red); color: #fff;
  padding: 8px 16px; font-family: 'Oswald', sans-serif;
  font-size: 1rem; text-decoration: none; z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

#main-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--black);
}
#main-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 32px;
  max-width: 1280px; margin: 0 auto;
  transition: padding 0.3s;
}
.nav-logo { flex-shrink: 0; }
.nav-logo img { height: 40px; display: block; width: auto; }
.nav-links { display: flex; gap: 24px; list-style: none; align-items: center; }
.nav-links a {
  color: var(--white); text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-weight: 400; font-size: 0.95rem; letter-spacing: 0.08em;
  text-transform: uppercase; transition: color 0.2s; white-space: nowrap;
}
.nav-links a:hover, .nav-links a:focus { color: var(--red-lt); outline: 2px solid var(--red-lt); outline-offset: 3px; }
.nav-cta {
  background: var(--red); color: var(--white) !important;
  padding: 8px 18px; border-radius: 2px; transition: background 0.2s;
}
.nav-cta:hover, .nav-cta:focus { background: var(--red-lt); outline: none !important; }
.nav-call {
  display: inline-flex; align-items: center; gap: 7px;
  background: transparent; color: var(--white) !important;
  border: 1.5px solid rgba(255,255,255,0.35);
  padding: 7px 16px; border-radius: 2px;
  font-family: 'Oswald', sans-serif; font-weight: 500;
  font-size: 0.95rem; letter-spacing: 0.06em;
  text-decoration: none; white-space: nowrap; transition: border-color 0.2s, color 0.2s;
}
.nav-call:hover, .nav-call:focus { border-color: var(--red-lt); color: var(--red-lt) !important; outline: none; }
body { padding-top: 70px; }
#hero { margin-top: -70px; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 6px;
}
.hamburger span { display: block; width: 26px; height: 2px; background: var(--white); pointer-events: none; }
.hamburger:focus { outline: 2px solid var(--red-lt); outline-offset: 3px; }

#mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 99;
  background: rgba(0,0,0,0.98);
  flex-direction: column; align-items: center; justify-content: center; gap: 28px;
}
#mobile-nav a {
  color: var(--white); font-family: 'Oswald', sans-serif;
  font-size: 2rem; text-decoration: none; letter-spacing: 0.08em; text-transform: uppercase;
}
#mobile-nav a:hover, #mobile-nav a:focus { color: var(--red-lt); }
#mobile-nav .m-cta {
  background: var(--red); color: var(--white) !important;
  padding: 14px 44px; border-radius: 2px; font-size: 1.3rem;
}

#hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; align-items: center;
  background: url('../images/20260414_120920.jpg') center center / cover no-repeat;
}
#hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(0,0,0,0.45) 0%,
    rgba(0,0,0,0.15) 35%,
    rgba(0,0,0,0.88) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 80px 64px; max-width: 820px;
}
.hero-eyebrow {
  font-family: 'Oswald', sans-serif; font-size: 1rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--white);
  display: flex; align-items: center; gap: 14px; margin-bottom: 18px;
}
.hero-eyebrow::before {
  content: ''; display: block; width: 40px; height: 2px; background: var(--red);
}
.hero-h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700; line-height: 1.05;
  color: var(--white); text-transform: uppercase; letter-spacing: 0.02em;
  margin-bottom: 14px;
}
.hero-h1 span { color: var(--red-lt); }
.hero-italic {
  font-family: 'Source Serif 4', serif;
  font-style: italic; font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  color: var(--white); margin-bottom: 24px; display: block;
}
.hero-sub {
  font-size: 1.05rem; color: var(--off); font-weight: 300;
  line-height: 1.7; max-width: 520px; margin-bottom: 30px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: var(--white);
  font-family: 'Oswald', sans-serif; font-weight: 500;
  font-size: 1rem; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; padding: 15px 32px; border-radius: 2px;
  border: 2px solid var(--red); transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--red-lt); border-color: var(--red-lt); transform: translateY(-1px); outline: none;
}
.btn-outline {
  display: inline-flex; align-items: center;
  border: 2px solid rgba(255,255,255,0.55); color: var(--white);
  font-family: 'Oswald', sans-serif; font-weight: 400;
  font-size: 1rem; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; padding: 15px 32px; border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover, .btn-outline:focus { border-color: var(--red-lt); color: var(--red-lt); outline: none; }

.trust-bar {
  background: var(--black);
  display: flex; justify-content: center; flex-wrap: wrap;
  border-top: 1px solid var(--border);
}
.trust-item {
  display: flex; align-items: center; gap: 14px;
  padding: 22px 44px;
  border-right: 1px solid var(--border);
}
.trust-item:last-child { border-right: none; }
.trust-icon { font-size: 1.5rem; }
.trust-item strong {
  display: block; font-family: 'Oswald', sans-serif;
  font-size: 1.05rem; font-weight: 600; color: var(--white);
  letter-spacing: 0.05em;
}
.trust-item span {
  font-size: 0.88rem; font-weight: 400; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.06em;
}

section { padding: 96px 0; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 48px; }
.section-label {
  font-family: 'Oswald', sans-serif; font-size: 0.9rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--red-text);
  display: flex; align-items: center; gap: 12px; margin-bottom: 12px;
}
.section-label::before { content: ''; display: block; width: 32px; height: 2px; background: var(--red-text); }
.section-heading {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.9rem, 3.5vw, 2.9rem); font-weight: 700;
  line-height: 1.1; text-transform: uppercase; color: var(--white);
  letter-spacing: 0.02em;
}
.section-heading span { color: var(--red-lt); }

#about { background: var(--black); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-text .section-heading { margin-bottom: 22px; }
.about-text p {
  font-size: 1.05rem; line-height: 1.82; color: var(--off);
  font-weight: 300; margin-bottom: 16px;
}
.about-text p:last-of-type { margin-bottom: 32px; }
.about-visual { position: relative; }
.about-visual img { width: 100%; display: block; border-radius: 3px; }
.about-badge {
  position: absolute; bottom: -20px; left: -20px;
  background: var(--red); color: var(--white);
  padding: 24px 28px; border-radius: 3px; text-align: center;
  box-shadow: 0 8px 28px rgba(204,17,17,0.4);
}
.about-badge .num {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem; font-weight: 700; line-height: 1; display: block;
}
.about-badge .lbl {
  font-family: 'Oswald', sans-serif;
  font-size: 0.82rem; font-weight: 400; letter-spacing: 0.14em;
  text-transform: uppercase;
}

#services { background: var(--near); }
.services-intro { max-width: 600px; margin-bottom: 56px; }
.services-intro p { margin-top: 14px; font-size: 1.05rem; line-height: 1.75; color: var(--muted); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }
.service-card {
  background: var(--card); padding: 36px 32px;
  border-top: 4px solid var(--border);
  transition: border-top-color 0.22s, transform 0.22s;
}
.service-card:hover, .service-card:focus-within {
  transform: translateY(-3px); border-top-color: var(--red);
}
.service-card.featured { background: var(--red); border-top-color: var(--red); }
.service-card.featured:hover { border-top-color: var(--red-lt); }
.svc-icon { font-size: 2rem; margin-bottom: 18px; display: block; }
.svc-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; margin-bottom: 10px; color: var(--white);
}
.service-card.featured .svc-title { color: var(--white); }
.svc-body { font-size: 0.95rem; line-height: 1.75; color: var(--muted); font-weight: 300; }
.service-card.featured .svc-body { color: var(--white); font-weight: 400; }
.svc-tag {
  margin-top: 14px; display: inline-block;
  font-family: 'Oswald', sans-serif; font-size: 0.82rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--red-text); font-weight: 500;
}
.service-card.featured .svc-tag { color: var(--white); }

#gallery { background: var(--black); padding: 96px 0; }
.gallery-sub { margin-top: 12px; font-size: 1rem; color: var(--muted); font-weight: 300; }
.gallery-grid {
  margin-top: 44px; display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 320px 220px; gap: 3px;
}
.gallery-item { overflow: hidden; background: var(--near); }
.gallery-item:first-child { grid-row: span 2; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease; display: block;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-cta-tile {
  background: var(--red); display: flex; align-items: center;
  justify-content: center; padding: 32px; flex-direction: column; gap: 16px;
}
.gallery-cta-tile p {
  font-family: 'Oswald', sans-serif; font-size: 1.35rem; font-weight: 600;
  color: var(--white); text-align: center; text-transform: uppercase;
  letter-spacing: 0.05em; line-height: 1.3;
}
.gallery-cta-tile a {
  background: var(--white); color: var(--red);
  font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 0.9rem;
  letter-spacing: 0.14em; text-transform: uppercase; text-decoration: none;
  padding: 12px 24px; border-radius: 2px; transition: background 0.2s, color 0.2s;
}
.gallery-cta-tile a:hover, .gallery-cta-tile a:focus {
  background: var(--black); color: var(--white);
}

#testimonial { background: var(--red); padding: 72px 0; }
.testimonial-inner { max-width: 780px; margin: 0 auto; padding: 0 48px; text-align: center; }
.quote-mark { display: none; }
.testimonial-inner blockquote::before {
  content: '\201C';
  font-family: 'Source Serif 4', serif; font-size: 5rem; line-height: 0.5;
  color: rgba(255,255,255,0.35); display: block; margin-bottom: 20px;
  pointer-events: none;
}
.quote-text {
  font-family: 'Source Serif 4', serif;
  font-size: clamp(1.35rem, 2.5vw, 1.9rem); font-style: italic;
  line-height: 1.55; color: var(--white); margin-bottom: 24px;
}
.stars { color: var(--white); font-size: 1.2rem; margin-bottom: 10px; }
.quote-attr {
  font-family: 'Oswald', sans-serif; font-size: 0.9rem;
  letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.85);
}

#area { background: var(--black); padding: 80px 0; }
.area-inner { display: flex; gap: 64px; align-items: flex-start; flex-wrap: wrap; }
.area-text { flex: 1; min-width: 280px; }
.area-text .section-heading { margin-bottom: 18px; }
.area-text p { font-weight: 300; line-height: 1.8; color: var(--off); margin-bottom: 14px; font-size: 1.0rem; }

.contact-card {
  flex: 1; min-width: 280px;
  background: var(--card); padding: 36px;
  border-radius: 3px; border-top: 4px solid var(--red);
}
.contact-card-title {
  font-family: 'Oswald', sans-serif; font-size: 0.82rem;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--red-text);
  margin-bottom: 14px;
}
.contact-card-heading {
  font-family: 'Oswald', sans-serif; font-size: 1.65rem;
  color: var(--white); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.02em; margin-bottom: 22px;
}
.contact-card ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.contact-card a {
  display: flex; align-items: center; gap: 12px;
  color: var(--off); text-decoration: none; font-size: 1.0rem;
}
.contact-card a:hover, .contact-card a:focus { color: var(--red-lt); text-decoration: underline; }
.contact-card .card-div {
  margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--border);
}
.card-div-label {
  font-family: 'Oswald', sans-serif; font-size: 0.8rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 5px;
}
.card-div p { font-size: 1.0rem; color: var(--off); font-weight: 300; }

#contact { background: var(--near); padding: 96px 0; }
#contact .section-heading { margin-bottom: 10px; }
.contact-sub { font-size: 1.0rem; color: var(--muted); font-weight: 300; margin-bottom: 48px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info { display: flex; flex-direction: column; gap: 26px; }
.contact-block { display: flex; gap: 14px; align-items: flex-start; }
.c-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(204,17,17,0.2); border-radius: 2px;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
  border: 1px solid rgba(204,17,17,0.4);
}
.c-label {
  font-family: 'Oswald', sans-serif; font-size: 0.82rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 4px;
}
.c-value { font-size: 1.0rem; color: var(--off); }
.c-value a { color: var(--red-text); text-decoration: none; }
.c-value a:hover, .c-value a:focus { text-decoration: underline; color: #FF7777; }
.tagline-quote {
  font-family: 'Source Serif 4', serif; font-size: 1.3rem;
  font-style: italic; color: var(--red-text); line-height: 1.45;
  margin-top: 8px; padding-top: 24px; border-top: 1px solid var(--border);
}
.license-badges {
  font-family: 'Oswald', sans-serif; font-size: 0.85rem;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted);
  margin-bottom: 8px;
}

.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { display: flex; flex-direction: column; gap: 5px; }
.form-field label {
  font-family: 'Oswald', sans-serif; font-size: 0.85rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); font-weight: 400;
}
.form-field .req { color: var(--red-text); margin-left: 3px; }
.form-field input,
.form-field select,
.form-field textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border); border-radius: 2px;
  padding: 13px 16px; color: var(--white);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.0rem; font-weight: 300; outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none; appearance: none;
  width: 100%;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--red-lt); box-shadow: 0 0 0 2px rgba(224,32,32,0.2); }
.form-field select { cursor: pointer; }
.form-field select option { background: var(--near); color: var(--white); }
.form-field textarea { resize: vertical; min-height: 110px; }
.form-submit {
  background: var(--red); color: var(--white); border: 2px solid var(--red);
  font-family: 'Oswald', sans-serif; font-weight: 600;
  font-size: 1rem; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 16px 36px; border-radius: 2px; cursor: pointer;
  transition: background 0.2s; align-self: flex-start;
}
.form-submit:hover, .form-submit:focus {
  background: var(--red-lt); border-color: var(--red-lt);
  outline: 2px solid var(--white); outline-offset: 2px;
}

.captcha-field { margin-top: 4px; }
.captcha-help {
  font-size: 0.85rem; color: var(--muted); font-weight: 300;
  margin: -2px 0 6px; line-height: 1.55;
}
.captcha-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: stretch;
}
.captcha-image-wrap {
  display: flex; flex-direction: column; gap: 6px;
  align-items: flex-start;
}
.captcha-image-wrap img {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 4px;
  height: 54px;
  width: auto;
  min-width: 130px;
}
.captcha-refresh {
  background: transparent; border: none;
  color: var(--red-text);
  font-family: 'Oswald', sans-serif;
  font-size: 0.76rem; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer; padding: 0; text-align: left;
  text-decoration: none;
  transition: color 0.15s;
}
.captcha-refresh:hover, .captcha-refresh:focus {
  color: #FF7777; text-decoration: underline; outline: none;
}
.captcha-refresh-icon {
  display: inline-block; margin-right: 4px;
  transition: transform 0.4s ease;
}
.captcha-refresh:hover .captcha-refresh-icon {
  transform: rotate(180deg);
}
@media (max-width: 600px) {
  .captcha-row { grid-template-columns: 1fr; gap: 10px; }
  .captcha-image-wrap { align-items: stretch; }
  .captcha-image-wrap img { width: 100%; max-width: 180px; }
}

footer {
  background: var(--black);
  padding: 32px 48px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  border-top: 3px solid var(--red);
}
footer img { height: 34px; }
.footer-copy { font-size: 0.9rem; color: var(--red-text); font-weight: 400; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a {
  color: var(--muted); text-decoration: none;
  font-family: 'Oswald', sans-serif; font-size: 0.88rem;
  letter-spacing: 0.1em; text-transform: uppercase; transition: color 0.2s;
}
.footer-links a:hover, .footer-links a:focus { color: var(--red-lt); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1000px) {
  #main-nav { padding: 10px 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding: 56px 24px; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-badge { bottom: -12px; left: -10px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item:first-child { grid-row: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .container { padding: 0 20px; }
  .trust-item { padding: 16px 18px; }
  section { padding: 60px 0; }
  footer { flex-direction: column; align-items: flex-start; padding: 24px 20px; }
}
@media (max-width: 600px) {
  .services-grid, .gallery-grid { grid-template-columns: 1fr; }
  .area-inner { flex-direction: column; gap: 28px; }
  .hero-h1 { font-size: 2.2rem; }
  .trust-bar { flex-direction: column; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--border); }
}

.footer-copy-block { display: flex; flex-direction: column; gap: 3px; }
.footer-credit { font-size: 0.82rem; color: var(--muted); font-weight: 300; }
dialog::backdrop { background: rgba(0,0,0,0.75); }

.team-feature, .repair-feature { background: var(--black); }
.team-card, .repair-card {
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
}
.team-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 34px;
  align-items: center;
}
.team-photo-wrap img {
  display: block;
  width: 100%;
  height: auto;
  border-bottom: 4px solid var(--red);
}
.team-copy { padding: 34px; }
.team-names {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  color: var(--off);
  font-size: 1rem;
  line-height: 1.7;
}
.team-names strong { color: var(--white); font-weight: 600; }
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}
.stat-box {
  border: 1px solid var(--border);
  padding: 18px;
  background: rgba(0,0,0,0.35);
}
.stat-number {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  color: var(--red-text);
  line-height: 1;
}
.stat-label {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.95rem;
}
.repair-card { padding: 34px; }
.before-after-wrap {
  position: relative;
  width: 100%;
  max-width: 980px;
  margin: 26px auto 0;
}
.compare-slider {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--near);
  aspect-ratio: 16 / 10;
}
.compare-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.compare-after {
  clip-path: inset(0 0 0 50%);
}
.compare-label {
  position: absolute;
  top: 14px;
  z-index: 4;
  background: rgba(0,0,0,0.82);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 12px;
  font-size: 0.85rem;
}
.compare-label.before { left: 14px; }
.compare-label.after { right: 14px; }
.compare-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--red-lt);
  z-index: 3;
  pointer-events: none;
}
.compare-handle::after {
  content: '↔';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  box-shadow: 0 0 0 4px rgba(0,0,0,0.55);
}
.compare-range {
  position: absolute;
  inset: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}
.repair-note {
  color: var(--muted);
  max-width: 820px;
  margin-top: 18px;
  line-height: 1.75;
}
@media (max-width: 800px) {
  .team-card { grid-template-columns: 1fr; }
  .team-copy, .repair-card { padding: 24px; }
  .stat-row { grid-template-columns: 1fr; }
  .compare-slider { aspect-ratio: 4 / 5; }
}
