:root {
  --ink: #f7f7f5;
  --muted: #b9bdc5;
  --soft: #e5e7eb;
  --coal: #07080a;
  --panel: #111318;
  --panel-2: #191c22;
  --line: rgba(255, 255, 255, 0.12);
  --red: #d51f2a;
  --red-dark: #9f141d;
  --steel: #7f8792;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--coal);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

.skip-link {
  position: absolute;
  left: 18px;
  top: 12px;
  z-index: 20;
  padding: 10px 14px;
  background: var(--white);
  color: var(--coal);
  transform: translateY(-140%);
}

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

.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;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.scrolled,
.site-header.menu-active {
  background: rgba(7, 8, 10, 0.92);
  border-color: var(--line);
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 26px;
}

.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line);
}

.brand strong {
  display: block;
  font-size: 15px;
  line-height: 1.1;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}

.menu {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--soft);
  font-size: 14px;
  font-weight: 700;
}

.menu a {
  transition: color 160ms ease;
}

.menu a:hover {
  color: var(--white);
}

.nav-actions,
.hero-actions,
.footer-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.primary-button,
.secondary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  cursor: pointer;
}

.primary-button {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(213, 31, 42, 0.26);
}

.primary-button:hover {
  background: #ec2532;
}

.secondary-button {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: var(--line);
}

.ghost-button {
  color: var(--white);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.large {
  min-height: 54px;
  padding-inline: 24px;
  font-size: 15px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 12px;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 8, 10, 0.98) 0%, rgba(7, 8, 10, 0.84) 40%, rgba(7, 8, 10, 0.38) 72%),
    linear-gradient(0deg, rgba(7, 8, 10, 1) 0%, rgba(7, 8, 10, 0) 40%);
}

.hero-content {
  position: relative;
  padding-top: 84px;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: #ff4d57;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(44px, 7vw, 84px);
  line-height: 0.96;
  letter-spacing: 0;
  max-width: 760px;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  font-size: 22px;
  line-height: 1.15;
  margin-bottom: 12px;
}

.hero-lede {
  max-width: 610px;
  color: var(--soft);
  font-size: 20px;
  margin-bottom: 30px;
}

.trust-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.trust-row span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--soft);
  font-size: 13px;
  font-weight: 800;
}

.quick-contact {
  background: var(--red);
}

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

.quick-grid a {
  min-height: 112px;
  padding: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.quick-grid a:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.quick-grid span,
.contact-cards span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 6px;
}

.quick-grid strong,
.contact-cards strong {
  display: block;
  font-size: 18px;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.section {
  padding: 96px 0;
}

.split,
.reviews-layout,
.contact-layout,
.value-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.intro-copy,
.section-heading p,
.reviews-layout p,
.contact-copy p,
.value-panel p,
.service-card p,
.proof-grid p,
.process-grid p,
.site-footer p {
  color: var(--muted);
}

.intro-copy p {
  font-size: 18px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading.narrow {
  max-width: 680px;
}

.section-heading p {
  font-size: 18px;
}

.services-section,
.reviews-section {
  background: #0b0d11;
}

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

.service-card {
  position: relative;
  min-height: 340px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  display: flex;
  flex-direction: column;
  color: var(--white);
  cursor: pointer;
  overflow: hidden;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 85% 12%, rgba(213, 31, 42, 0.22), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 52%);
  opacity: 0;
  transition: opacity 180ms ease;
}

.service-card.featured {
  background: linear-gradient(180deg, #232832, #15171d);
  border-color: rgba(213, 31, 42, 0.5);
}

.service-card--primary {
  grid-column: span 2;
}

.service-card--primary p {
  max-width: 680px;
}

.service-card:hover,
.service-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(255, 77, 87, 0.78);
  background: #181b22;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.32);
}

.service-card:hover::before,
.service-card:focus-visible::before {
  opacity: 1;
}

.service-card:focus-visible {
  outline: 3px solid rgba(255, 77, 87, 0.34);
  outline-offset: 4px;
}

.service-card h3,
.service-card p,
.service-card .service-icon,
.service-card__action {
  position: relative;
  z-index: 1;
}

.service-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 56px;
  border-radius: 50%;
  background: rgba(213, 31, 42, 0.16);
  color: #ff5963;
  font-weight: 900;
  font-size: 13px;
}

.service-card__action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  color: var(--white);
  font-weight: 900;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  transition: color 180ms ease, border-color 180ms ease;
}

.service-card__action::after {
  content: "\2192";
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(213, 31, 42, 0.18);
  color: #ff5963;
  font-size: 18px;
  line-height: 1;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.service-card:hover .service-card__action,
.service-card:focus-visible .service-card__action {
  color: #ff5963;
  border-color: rgba(255, 77, 87, 0.42);
}

.service-card:hover .service-card__action::after,
.service-card:focus-visible .service-card__action::after {
  transform: translateX(4px);
  background: var(--red);
  color: var(--white);
}

.service-fit-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  overflow: hidden;
}

.service-fit-panel > div {
  padding: 24px;
  background: #15181e;
}

.service-fit-panel__label {
  display: block;
  margin-bottom: 14px;
  color: #ff5963;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-fit-panel strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.service-fit-panel p {
  margin: 0;
  color: var(--muted);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.proof-grid article {
  min-height: 300px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(17, 19, 24, 0.92), rgba(17, 19, 24, 0.98)),
    radial-gradient(circle at top right, rgba(213, 31, 42, 0.28), transparent 40%);
}

.proof-grid strong {
  display: block;
  color: #ff5963;
  font-size: 13px;
  margin-bottom: 54px;
}

.value-panel {
  padding: 48px;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(213, 31, 42, 0.18), rgba(255, 255, 255, 0.04)),
    var(--panel-2);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

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

.process-grid article {
  padding: 30px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.process-grid span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 42px;
  border-radius: 50%;
  background: var(--red);
  font-weight: 900;
}

.service-areas-section {
  background:
    linear-gradient(180deg, rgba(213, 31, 42, 0.07), transparent 34%),
    #0b0d11;
}

.service-area-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.service-area-card {
  position: relative;
  min-height: 310px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 58%),
    var(--panel);
  display: flex;
  flex-direction: column;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.service-area-card--shop {
  border-color: rgba(213, 31, 42, 0.5);
  background:
    linear-gradient(145deg, rgba(213, 31, 42, 0.17), transparent 62%),
    var(--panel);
}

.service-area-card:hover,
.service-area-card:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(255, 77, 87, 0.78);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.3);
}

.service-area-card:focus-visible {
  outline: 3px solid rgba(255, 77, 87, 0.3);
  outline-offset: 4px;
}

.service-area-card > span {
  display: block;
  margin-bottom: 46px;
  color: #ff5963;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-area-card h3 {
  margin-bottom: 12px;
  font-size: 32px;
}

.service-area-card p {
  max-width: 500px;
  margin: 0 0 32px;
  color: var(--muted);
  font-size: 17px;
}

.service-area-card strong {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.service-area-card strong::after {
  content: "\2192";
  color: #ff5963;
  font-size: 20px;
}

.policies-section {
  background:
    linear-gradient(180deg, rgba(213, 31, 42, 0.08), transparent 30%),
    #111318;
}

.policies-intro {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: end;
  margin-bottom: 34px;
}

.policies-intro p,
.policy-card p {
  color: var(--muted);
}

.policies-intro > p {
  font-size: 18px;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.policy-card {
  min-height: 292px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    var(--panel);
}

.policy-card span {
  display: inline-flex;
  margin-bottom: 34px;
  color: #ff5963;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.policy-card h3 {
  font-size: 21px;
}

.hours-card {
  grid-column: span 2;
}

.hours-list {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.hours-list em {
  color: var(--soft);
  font-style: normal;
  font-weight: 800;
  text-align: right;
}

.policy-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 16px;
  padding: 24px;
  border: 1px solid rgba(213, 31, 42, 0.45);
  border-radius: var(--radius);
  background: rgba(213, 31, 42, 0.12);
}

.policy-cta strong {
  font-size: 24px;
}

.review-card {
  margin: 0;
  padding: 34px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.review-card blockquote {
  margin: 0 0 22px;
  font-size: 24px;
  line-height: 1.35;
  font-weight: 800;
}

.review-card figcaption {
  color: var(--muted);
  font-weight: 700;
}

.contact-section {
  background:
    linear-gradient(180deg, rgba(213, 31, 42, 0.09), transparent 36%),
    #0b0d11;
}

.contact-cards {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.contact-cards a {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.quote-form,
.form-launch-card {
  display: grid;
  gap: 14px;
  padding: 28px;
  background: var(--white);
  color: var(--coal);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.form-launch-card {
  align-content: start;
}

.form-launch-card strong {
  display: block;
  font-size: 24px;
  line-height: 1.15;
}

.form-launch-card p {
  color: #4b5563;
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: #343842;
  font-size: 13px;
  font-weight: 900;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid #d4d7de;
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--coal);
  background: #fbfbfc;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: 3px solid rgba(213, 31, 42, 0.2);
  border-color: var(--red);
}

.quote-form textarea {
  resize: vertical;
}

.full,
.full-button,
.form-note {
  grid-column: 1 / -1;
}

.full-button {
  width: 100%;
  border: 0;
}

.form-note {
  margin: -2px 0 0;
  color: #6b7280;
  font-size: 13px;
}

.site-footer {
  padding: 34px 0 92px;
  background: #050608;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}

.footer-brand img {
  width: 74px;
  height: 74px;
  border-radius: 50%;
}

.footer-actions a {
  color: var(--white);
  font-weight: 900;
}

.mobile-bar {
  display: none;
}

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  padding: 22px;
}

.lead-modal.open {
  display: grid;
  place-items: center;
}

.lead-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.76);
  backdrop-filter: blur(10px);
}

.lead-modal__dialog {
  position: relative;
  width: min(760px, 100%);
  max-height: min(860px, calc(100vh - 44px));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f7f7f5;
  color: var(--coal);
  box-shadow: var(--shadow);
}

.lead-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-bottom: 1px solid #d9dde4;
  background: var(--white);
}

.lead-modal__header span {
  display: block;
  margin-bottom: 3px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.lead-modal__header strong {
  display: block;
  font-size: 18px;
  line-height: 1.2;
}

.lead-modal__close {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid #d4d7de;
  border-radius: var(--radius);
  background: #f3f4f6;
  color: var(--coal);
  font-weight: 900;
  cursor: pointer;
}

.lead-modal iframe {
  display: block;
  width: 100%;
  height: min(680px, calc(100vh - 136px));
  background: #f7f7f5;
}

body.lead-modal-open {
  overflow: hidden;
}

.service-hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.service-hero-content {
  position: relative;
  max-width: 920px;
  padding: 150px 0 82px;
}

.service-hero h1 {
  max-width: 900px;
  margin-bottom: 22px;
}

.service-hero p:not(.eyebrow) {
  max-width: 710px;
  color: var(--soft);
  font-size: 20px;
  margin-bottom: 30px;
}

.brake-hero .hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 8, 10, 0.98) 0%, rgba(7, 8, 10, 0.86) 48%, rgba(7, 8, 10, 0.36) 100%),
    radial-gradient(circle at 75% 45%, rgba(213, 31, 42, 0.2), transparent 32%),
    linear-gradient(0deg, rgba(7, 8, 10, 1) 0%, rgba(7, 8, 10, 0) 40%);
}

.service-detail {
  background: #0b0d11;
}

.service-layout {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 48px;
  align-items: start;
}

.service-sidebar {
  position: sticky;
  top: 104px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(213, 31, 42, 0.12), rgba(255, 255, 255, 0.03)),
    var(--panel);
}

.service-sidebar strong {
  display: block;
  margin-bottom: 18px;
  font-size: 18px;
}

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

.service-sidebar li {
  position: relative;
  padding-left: 22px;
  color: var(--soft);
  font-weight: 700;
}

.service-sidebar li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  transform: translateY(-50%);
}

.service-sidebar .primary-button {
  width: 100%;
}

.service-body {
  max-width: 810px;
}

.service-body > p {
  color: var(--muted);
  font-size: 18px;
}

.service-body h2:not(:first-of-type) {
  margin-top: 54px;
}

.service-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 38px 0 10px;
}

.service-points article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.service-points h3 {
  font-size: 19px;
}

.service-points p,
.faq-list p {
  color: var(--muted);
}

.service-checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 28px 0 10px;
  padding: 0;
  list-style: none;
}

.service-checklist li {
  min-height: 154px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.service-checklist strong,
.service-checklist span {
  display: block;
}

.service-checklist strong {
  margin-bottom: 8px;
  color: var(--white);
}

.service-checklist span {
  color: var(--muted);
}

.service-location-note {
  margin-top: 54px;
  padding: 30px;
  border: 1px solid rgba(213, 31, 42, 0.48);
  border-radius: var(--radius);
  background:
    linear-gradient(105deg, rgba(213, 31, 42, 0.18), rgba(255, 255, 255, 0.035)),
    var(--panel);
}

.service-location-note > span {
  display: block;
  margin-bottom: 12px;
  color: #ff5963;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-location-note h2 {
  margin-bottom: 12px;
}

.service-location-note p {
  margin: 0;
  color: var(--muted);
}

.service-location-note p + p {
  margin-top: 20px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--white);
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
}

.related-service-links,
.service-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.related-service-links a,
.service-hub-grid a {
  position: relative;
  min-height: 142px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.related-service-links a:hover,
.related-service-links a:focus-visible,
.service-hub-grid a:hover,
.service-hub-grid a:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(255, 77, 87, 0.72);
  background: #181b22;
}

.related-service-links a:focus-visible,
.service-hub-grid a:focus-visible {
  outline: 3px solid rgba(255, 77, 87, 0.3);
  outline-offset: 3px;
}

.related-service-links span,
.service-hub-grid span {
  display: block;
  margin-bottom: 28px;
  color: #ff5963;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.related-service-links strong,
.service-hub-grid strong {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--white);
}

.related-service-links strong::after,
.service-hub-grid strong::after {
  content: "\2192";
  color: #ff5963;
  font-size: 20px;
}

.service-hub-grid {
  grid-template-columns: repeat(2, 1fr);
  margin: 38px 0 10px;
}

.service-hub-grid a {
  min-height: 190px;
}

.service-hub-grid p {
  margin: 10px 0 0;
  color: var(--muted);
}

.service-bottom-cta {
  margin-top: 54px;
  padding: 34px;
  border-radius: var(--radius);
  background:
    linear-gradient(115deg, rgba(7, 8, 10, 0.1), rgba(7, 8, 10, 0.42)),
    var(--red);
}

.service-bottom-cta .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.service-bottom-cta h2 {
  max-width: 640px;
  margin-bottom: 24px;
}

.service-bottom-cta .primary-button {
  background: var(--white);
  color: var(--coal);
}

.service-bottom-cta .primary-button:hover {
  background: #f0f1f3;
}

@media (max-width: 1020px) {
  .nav-actions {
    display: none;
  }

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

  .service-fit-panel {
    grid-template-columns: 1fr;
  }

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

  .service-sidebar {
    position: static;
  }

  .service-points {
    grid-template-columns: 1fr;
  }

  .related-service-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .shell {
    width: min(100% - 28px, 1160px);
  }

  .menu-toggle {
    display: block;
  }

  .menu {
    position: fixed;
    inset: 80px 14px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #111318;
    box-shadow: var(--shadow);
  }

  .menu.open {
    display: flex;
  }

  .menu a {
    padding: 16px;
    border-radius: var(--radius);
  }

  .menu a:hover {
    background: rgba(255, 255, 255, 0.06);
  }

  .hero {
    min-height: 720px;
  }

  .service-hero {
    min-height: 660px;
  }

  .service-hero-content {
    padding: 130px 0 60px;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(7, 8, 10, 0.72) 0%, rgba(7, 8, 10, 0.92) 52%, rgba(7, 8, 10, 1) 100%),
      linear-gradient(90deg, rgba(7, 8, 10, 0.95), rgba(7, 8, 10, 0.25));
  }

  .hero-content {
    align-self: end;
    padding-bottom: 64px;
  }

  h1 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .hero-lede {
    font-size: 17px;
  }

  .service-hero p:not(.eyebrow) {
    font-size: 17px;
  }

  .hero-actions,
  .nav-actions,
  .footer-actions {
    align-items: stretch;
  }

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

  .quick-grid,
  .split,
  .reviews-layout,
  .contact-layout,
  .value-panel,
  .policies-intro,
  .process-grid,
  .service-area-grid,
  .policy-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .quick-grid a {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    min-height: auto;
  }

  .quick-grid a:last-child {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .section {
    padding: 72px 0;
  }

  .split,
  .reviews-layout,
  .contact-layout,
  .value-panel {
    gap: 28px;
  }

  .value-panel {
    padding: 28px;
  }

  .hours-card {
    grid-column: auto;
  }

  .policy-card {
    min-height: auto;
  }

  .service-area-card {
    min-height: auto;
  }

  .service-area-card > span {
    margin-bottom: 28px;
  }

  .policy-card span {
    margin-bottom: 22px;
  }

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

  .policy-cta .primary-button {
    width: 100%;
  }

  .service-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .service-checklist,
  .service-hub-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .service-card--primary {
    grid-column: auto;
  }

  .service-checklist li,
  .service-hub-grid a {
    min-height: auto;
  }

  .service-icon,
  .proof-grid strong,
  .process-grid span {
    margin-bottom: 28px;
  }

  .quote-form {
    grid-template-columns: 1fr;
    padding: 20px;
  }

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

  .footer-grid {
    align-items: start;
  }

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

  .mobile-bar {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 12;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 8px;
    background: rgba(7, 8, 10, 0.88);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    backdrop-filter: blur(14px);
  }

  .mobile-bar a {
    display: grid;
    place-items: center;
    min-height: 46px;
    border-radius: 6px;
    background: var(--red);
    color: var(--white);
    font-weight: 900;
  }

  .lead-modal {
    padding: 10px;
  }

  .lead-modal__dialog {
    max-height: calc(100vh - 20px);
  }

  .lead-modal__header {
    align-items: flex-start;
    padding: 14px;
  }

  .lead-modal__header strong {
    font-size: 16px;
  }

  .lead-modal iframe {
    height: calc(100vh - 112px);
  }
}

@media (max-width: 420px) {
  .brand span {
    display: none;
  }

  .hero {
    min-height: 680px;
  }

  .trust-row span {
    width: 100%;
  }

  .review-card blockquote {
    font-size: 20px;
  }
}
