:root {
  --ink: #17212b;
  --muted: #5c6a76;
  --line: #dce3e9;
  --paper: #f7f9fb;
  --white: #ffffff;
  --blue: #003867;
  --blue-dark: #002b4f;
  --navy: #002b4f;
  --green: #1f7a5a;
  --gold: #ffda00;
  --red: #c44536;
  --shadow: 0 18px 55px rgba(13, 54, 94, 0.16);
}

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

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Raleway", Arial, Helvetica, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.main-nav,
.brand-subline,
.button,
.header-call,
.eyebrow,
.service-card a,
.area-grid a,
.partner-grid a,
.brand-pill {
  font-family: "Sora", Arial, Helvetica, sans-serif;
}

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

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 12px 16px;
  color: var(--white);
  background: var(--blue-dark);
  border-radius: 8px;
  font-family: "Sora", Arial, sans-serif;
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto auto;
  align-items: center;
  gap: 24px;
  padding: 12px clamp(16px, 4vw, 54px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(220, 227, 233, 0.9);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo {
  width: min(230px, 38vw);
  height: 42px;
  object-fit: contain;
  object-position: left center;
}

.brand-subline {
  display: block;
  padding-left: 12px;
  color: var(--muted);
  border-left: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.94rem;
}

.main-nav a,
.header-call,
.service-card a,
.site-footer a {
  text-decoration: none;
}

.main-nav a[aria-current] {
  color: var(--blue);
  font-weight: 800;
}

.header-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  color: var(--white);
  background: var(--blue);
  border-radius: 8px;
  font-weight: 700;
}

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

.site-header .header-book {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  color: var(--blue-dark);
  background: var(--gold);
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--blue-dark);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
}

.header-call svg,
.button svg,
.proof-list svg,
.check-list svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(90deg, rgba(8, 28, 48, 0.92), rgba(8, 28, 48, 0.62) 46%, rgba(8, 28, 48, 0.18));
}

.hero-content {
  width: min(760px, calc(100% - 32px));
  margin-left: clamp(16px, 7vw, 96px);
  padding: 64px 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2.6rem, 7vw, 5.7rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 610px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 18px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary,
.button.submit {
  color: var(--blue-dark);
  background: var(--gold);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

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

.trust-strip div {
  min-height: 86px;
  padding: 18px clamp(14px, 3vw, 32px);
  background: var(--white);
}

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

.trust-strip span {
  color: var(--muted);
  font-size: 0.91rem;
}

.section {
  padding: clamp(54px, 8vw, 104px) clamp(16px, 5vw, 72px);
}

.two-col {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
}

.section h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.section h3 {
  margin: 0;
  line-height: 1.15;
  letter-spacing: 0;
}

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

.intro {
  background: var(--white);
}

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

.service-band,
.areas {
  background: #eef4f7;
}

.symptom-band {
  background: #f7faf8;
}

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

.symptom-link-grid a {
  display: grid;
  min-height: 132px;
  align-content: space-between;
  padding: 20px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(23, 33, 43, 0.06);
  font-weight: 900;
  text-decoration: none;
}

.symptom-link-grid svg {
  color: var(--green);
}

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

.service-card {
  display: grid;
  grid-template-rows: 180px 1fr;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(23, 33, 43, 0.06);
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card div {
  padding: 20px;
}

.service-card p {
  min-height: 78px;
}

.service-card a {
  color: var(--blue);
  font-weight: 800;
}

.dark-band {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(13, 54, 94, 0.96), rgba(31, 122, 90, 0.9)),
    url("./assets/photos/brand-band.webp") center / cover;
}

.dark-band p {
  color: rgba(255, 255, 255, 0.78);
}

.brand-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.brand-pill {
  min-height: 42px;
  padding: 10px 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.brand-pill.active {
  color: var(--blue-dark);
  background: var(--white);
}

.brand-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 1080px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.brand-panel h3 {
  font-size: clamp(1.45rem, 3vw, 2.3rem);
}

.check-list {
  display: grid;
  gap: 13px;
  align-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 10px;
  align-items: center;
}

.proof {
  background: var(--white);
}

.google-band {
  background: #f6f8fb;
}

.proof-list {
  display: grid;
  gap: 14px;
}

.proof-list div {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 58px;
  padding: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.proof-list svg {
  color: var(--green);
}

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

.area-grid article {
  min-height: 180px;
  padding: 22px;
  background: var(--white);
  border-left: 5px solid var(--green);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(23, 33, 43, 0.06);
}

.area-grid a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

.partner-band {
  background: var(--paper);
}

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

.partner-grid article {
  min-height: 210px;
  padding: 24px;
  background: var(--white);
  border-top: 5px solid var(--gold);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(23, 33, 43, 0.06);
}

.partner-grid a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

.process-band {
  background: var(--white);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.process-list li {
  min-height: 250px;
  padding: 24px;
  background: var(--paper);
}

.process-list span {
  display: block;
  margin-bottom: 34px;
  color: var(--blue);
  font-weight: 900;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  color: var(--white);
  background: var(--blue-dark);
}

.contact-section p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-copy {
  position: sticky;
  top: 98px;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: clamp(18px, 4vw, 32px);
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.quote-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 800;
}

.quote-form .full {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

textarea {
  resize: vertical;
}

.submit {
  grid-column: 1 / -1;
}

.contact-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.contact-options article {
  display: grid;
  gap: 12px;
  align-content: start;
  min-height: 270px;
  padding: 24px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-options article > svg {
  color: var(--green);
}

.contact-options p {
  margin: 0 0 10px;
  color: var(--muted);
}

.contact-options .button.secondary {
  color: var(--blue-dark);
  background: var(--paper);
  border-color: var(--line);
}

.mobile-action-bar {
  display: none;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 26px clamp(16px, 5vw, 72px);
  color: var(--white);
  background: #101820;
}

.footer-logo {
  width: min(260px, 70vw);
  height: auto;
  margin-bottom: 8px;
}

.site-footer span,
.site-footer a {
  display: block;
  color: rgba(255, 255, 255, 0.76);
}

.site-footer > div:last-child {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 6px;
  text-align: right;
}

.site-footer .bbb-seal-link {
  margin-top: 14px;
  line-height: 0;
}

.site-footer .superpro-badge {
  margin-top: 14px;
}

.page-hero {
  padding: clamp(64px, 10vw, 118px) clamp(16px, 5vw, 72px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(13, 54, 94, 0.94), rgba(31, 122, 90, 0.78)),
    var(--hero-image, url("./assets/photos/home-hero.webp")) center / cover;
}

.page-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(2.3rem, 6vw, 4.8rem);
  line-height: 1;
  letter-spacing: 0;
}

.page-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 2vw, 1.22rem);
}

.breadcrumbs {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.breadcrumbs a {
  color: var(--white);
  text-decoration: none;
}

.page-breadcrumbs {
  padding: 12px clamp(16px, 4vw, 54px);
  color: var(--muted);
  background: var(--white);
  border-bottom: 1px solid var(--line);
  font-size: 0.86rem;
}

.page-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.page-breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: #8996a0;
}

.page-breadcrumbs a {
  color: var(--blue);
  font-weight: 700;
  text-underline-offset: 3px;
}

.page-breadcrumbs [aria-current="page"] {
  color: var(--ink);
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: clamp(26px, 5vw, 70px);
}

.content-card,
.sidebar-card,
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(23, 33, 43, 0.06);
}

.content-card {
  padding: clamp(22px, 4vw, 34px);
}

.content-card h2,
.sidebar-card h2 {
  margin-top: 0;
  font-size: clamp(1.55rem, 3vw, 2.5rem);
}

.symptom-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 24px 0;
}

.symptom-grid div {
  min-height: 74px;
  padding: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.sidebar-card {
  padding: 24px;
}

.service-proof-photo {
  width: 100%;
  max-height: 310px;
  margin-bottom: 22px;
  object-fit: cover;
  border-radius: 8px;
}

.sidebar-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding-left: 20px;
}

.mini-cta {
  display: grid;
  gap: 12px;
  padding: 20px;
  color: var(--white);
  background: var(--blue-dark);
  border-radius: 8px;
}

.mini-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

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

.faq-item {
  padding: 20px;
}

.faq-item h3 {
  margin: 0 0 8px;
}

.faq-item p {
  margin: 0;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-header.menu-open .main-nav {
    position: absolute;
    top: 100%;
    right: 16px;
    left: 16px;
    display: grid;
    gap: 0;
    padding: 8px;
    color: var(--blue-dark);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: 0 18px 45px rgba(13, 54, 94, 0.2);
  }

  .site-header.menu-open .main-nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 10px 12px;
    border-radius: 7px;
  }

  .site-header.menu-open .main-nav a:hover,
  .site-header.menu-open .main-nav a:focus-visible {
    background: var(--paper);
  }

  .trust-strip,
  .service-grid,
  .area-grid,
  .process-list,
  .symptom-link-grid,
  .partner-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .two-col,
  .brand-panel,
  .contact-section,
  .detail-grid,
  .contact-options {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    position: static;
  }
}

/* Shared SEO landing-page components */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(1180px, calc(100% - 40px));
  margin: -32px auto 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
  color: var(--white);
  background: var(--blue-dark);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(13, 54, 94, 0.22);
}

.trust-bar div {
  display: grid;
  gap: 4px;
  min-height: 96px;
  align-content: center;
  padding: 18px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.trust-bar div:last-child {
  border-right: 0;
}

.trust-bar strong {
  color: var(--gold);
  font-family: "Sora", Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
}

.trust-bar span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
}

.page-section {
  display: grid;
  gap: 28px;
}

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

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

.card-grid article,
.linked-grid > a,
.proof-grid article,
.contact-grid > a {
  padding: 24px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(23, 33, 43, 0.06);
}

.card-grid article {
  display: grid;
  gap: 10px;
}

.card-grid svg,
.contact-grid svg {
  width: 28px;
  height: 28px;
  color: var(--green);
}

.card-grid h3,
.proof-grid h2 {
  margin: 0;
}

.card-grid p,
.proof-grid p {
  margin: 0;
}

.linked-grid > a,
.contact-grid > a {
  display: grid;
  gap: 8px;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.linked-grid > a:hover,
.contact-grid > a:hover {
  transform: translateY(-3px);
  border-color: var(--green);
  box-shadow: 0 18px 40px rgba(23, 33, 43, 0.11);
}

.linked-grid span,
.contact-grid span {
  color: var(--muted);
}

.collection-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.content-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 26px;
  padding-left: 22px;
}

.step-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 28px;
  padding: 0;
  list-style: none;
}

.step-list li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: center;
}

.step-list span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-weight: 900;
}

.step-list p {
  margin: 0;
}

.safety-callout {
  padding: 18px 20px;
  color: #522d00;
  background: #fff3d6;
  border-left: 5px solid var(--gold);
  border-radius: 8px;
}

.brand-detail-logo {
  display: block;
  width: min(220px, 70%);
  max-height: 96px;
  margin: 0 auto 24px;
  object-fit: contain;
}

.proof-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.proof-grid article {
  overflow: hidden;
  padding: 0 0 22px;
}

.proof-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.proof-grid h2,
.proof-grid p {
  padding-inline: 22px;
}

.proof-grid h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 1.32rem;
}

.contact-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.contact-copy,
.legal-copy {
  max-width: 900px;
}

.standalone-booking {
  width: 100%;
}

.page-faq-list {
  max-width: 900px;
}

@media (max-width: 900px) {
  .trust-bar,
  .card-grid,
  .linked-grid,
  .proof-grid,
  .contact-grid,
  .collection-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-bar div:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 640px) {
  .trust-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: calc(100% - 28px);
    margin-top: -20px;
  }

  .trust-bar div {
    min-height: 84px;
    padding: 12px;
  }

  .trust-bar div:nth-child(1),
  .trust-bar div:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .card-grid,
  .linked-grid,
  .proof-grid,
  .contact-grid,
  .collection-grid {
    grid-template-columns: 1fr;
  }

  .mobile-action-bar span {
    font-size: 0.82rem;
  }

  .page-hero .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 10px;
    padding: 10px 12px;
  }

  .brand-subline,
  .header-call span {
    display: none;
  }

  .brand-logo {
    width: 190px;
    max-width: 54vw;
  }

  .header-call {
    width: 44px;
    height: 44px;
    padding: 0;
    justify-content: center;
  }

  .hero {
    min-height: 72vh;
  }

  .hero h1 {
    max-width: 320px;
    font-size: 2.28rem;
    line-height: 1.04;
  }

  .hero .eyebrow,
  .hero-copy {
    max-width: 330px;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-content {
    width: calc(100% - 28px);
    margin: 0 14px;
  }

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

  body {
    padding-bottom: 74px;
  }

  .mobile-action-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    padding: 8px;
    background: var(--white);
    border-top: 1px solid var(--line);
    box-shadow: 0 -10px 30px rgba(23, 33, 43, 0.14);
  }

  .mobile-action-bar a {
    display: inline-flex;
    min-width: 0;
    width: 100%;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--blue-dark);
    background: var(--gold);
    border-radius: 8px;
    font-family: "Sora", Arial, Helvetica, sans-serif;
    font-weight: 900;
    text-decoration: none;
  }

  .mobile-action-bar span {
    font-size: 0.95rem;
  }

  .trust-strip,
  .service-grid,
  .area-grid,
  .process-list,
  .quote-form,
  .symptom-grid,
  .symptom-link-grid,
  .partner-grid {
    grid-template-columns: 1fr;
  }


  .service-card {
    grid-template-rows: 150px 1fr;
  }

  .site-footer {
    display: grid;
    padding-bottom: 94px;
  }

  .site-footer > div:last-child {
    align-items: flex-end;
  }
}

/* Editorial blog */
.blog-page,
.article-page {
  background: #fff;
}

.blog-shell {
  width: min(calc(100% - 32px), 1180px);
  margin-inline: auto;
}

.blog-breadcrumbs {
  padding-block: 18px;
  color: var(--muted);
  font-size: .84rem;
}

.blog-breadcrumbs a {
  color: var(--blue);
}

.blog-hero {
  padding: clamp(64px, 10vw, 120px) 0 clamp(54px, 8vw, 88px);
  background: linear-gradient(135deg, #eef5f8, #fff);
}

.blog-hero h1,
.article-hero h1 {
  max-width: 930px;
  margin: 0;
  font-family: "Sora", Arial, Helvetica, sans-serif;
  font-size: clamp(2.55rem, 6vw, 5.1rem);
  line-height: 1.02;
}

.blog-hero .blog-lead,
.article-deck {
  max-width: 780px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.blog-category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 26px;
}

.blog-category-list span {
  padding: 9px 13px;
  color: var(--blue-dark);
  background: var(--white);
  border: 1px solid #cbdbe5;
  border-radius: 999px;
  font-family: "Sora", Arial, Helvetica, sans-serif;
  font-size: .76rem;
  font-weight: 800;
}

.blog-section {
  padding: clamp(58px, 9vw, 104px) 0;
}

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

.blog-section-heading h2 {
  margin: 0;
  font-family: "Sora", Arial, Helvetica, sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.06;
}

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

.blog-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 16px 42px rgba(23, 33, 43, .08);
}

.blog-card.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
}

.blog-card-image {
  display: block;
  min-height: 300px;
  overflow: hidden;
  background: #e8eef2;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-copy {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  padding: clamp(24px, 4vw, 42px);
}

.blog-card-meta,
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 750;
}

.blog-card-meta strong,
.article-meta strong {
  color: var(--green);
  font-family: "Sora", Arial, Helvetica, sans-serif;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.blog-card h2 {
  margin: 18px 0 0;
  font-family: "Sora", Arial, Helvetica, sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.06;
}

.blog-card h2 a {
  text-decoration: none;
}

.blog-card p {
  margin: 18px 0 22px;
  color: var(--muted);
}

.blog-read-link {
  margin-top: auto;
  color: var(--blue);
  font-family: "Sora", Arial, Helvetica, sans-serif;
  font-weight: 850;
}

.blog-principles {
  color: #fff;
  background: var(--blue-dark);
}

.blog-principle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 34px;
  overflow: hidden;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 14px;
}

.blog-principle-grid article {
  padding: 28px;
  background: var(--blue-dark);
}

.blog-principle-grid h3 {
  color: #fff;
}

.blog-principle-grid p {
  margin: 10px 0 0;
  color: rgba(255,255,255,.72);
}

.article-hero {
  padding: clamp(52px, 9vw, 100px) 0;
  background: linear-gradient(135deg, #eef5f8, #fff);
}

.article-head-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: clamp(34px, 7vw, 76px);
}

.article-hero figure {
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  border: 8px solid #fff;
  border-radius: 30px 8px;
  box-shadow: var(--shadow);
}

.article-hero figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-meta {
  margin-top: 24px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  align-items: start;
  gap: clamp(40px, 7vw, 78px);
  padding-block: clamp(58px, 9vw, 104px);
}

.article-body {
  min-width: 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.72;
}

.article-body h2,
.article-body h3 {
  color: var(--ink);
  font-family: "Sora", Arial, Helvetica, sans-serif;
}

.article-body h2 {
  margin: 46px 0 16px;
  font-size: clamp(1.75rem, 4vw, 2.65rem);
  line-height: 1.08;
}

.article-body h3 {
  margin: 32px 0 11px;
  font-size: 1.3rem;
}

.article-body p,
.article-body ul,
.article-body ol {
  margin: 0 0 20px;
}

.article-body li {
  margin-bottom: 9px;
}

.article-body a {
  color: var(--blue);
  font-weight: 750;
}

.article-note {
  margin: 30px 0;
  padding: 22px 24px;
  color: var(--ink);
  background: #fff8d9;
  border-left: 4px solid var(--gold);
}

.article-sidebar {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 14px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 14px 38px rgba(23, 33, 43, .09);
}

.article-sidebar h2 {
  margin: 0;
  font-family: "Sora", Arial, Helvetica, sans-serif;
  font-size: 1.75rem;
  line-height: 1.08;
}

.article-sidebar p {
  margin: 0;
  color: var(--muted);
}

.article-sidebar .button {
  width: 100%;
}

.article-sidebar .sidebar-link {
  color: var(--blue);
  font-size: .84rem;
  font-weight: 800;
  text-align: center;
}

.article-next {
  padding: clamp(48px, 8vw, 78px) 0;
  color: #fff;
  background: var(--blue-dark);
}

.article-next h2 {
  max-width: 760px;
  margin: 0;
  font-family: "Sora", Arial, Helvetica, sans-serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.article-next-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 24px;
}

.article-next-links a {
  color: var(--gold);
  font-weight: 800;
}

@media (max-width: 900px) {
  .blog-card.featured,
  .article-head-grid,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
  }

  .blog-principle-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .blog-card-grid {
    grid-template-columns: 1fr;
  }

  .blog-card.featured {
    grid-column: auto;
  }

  .blog-hero h1,
  .article-hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.5rem);
  }
}

/* UltraFix-inspired homepage layout, adapted to Quality Repairs branding. */
.home-page {
  color: var(--ink);
  background: var(--white);
}

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

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

.announcement-bar {
  color: var(--white);
  background: var(--blue);
  font-size: 0.82rem;
}

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

.announcement-inner a {
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}

.home-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: block;
  padding: 0;
  border-bottom: 1px solid #e7edf2;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto auto;
  align-items: center;
  gap: 30px;
  position: relative;
}

.home-header .brand-logo {
  width: 220px;
  height: auto;
}

.home-header .main-nav {
  display: flex;
  gap: 22px;
  color: #465969;
  font-size: 0.9rem;
  font-weight: 700;
}

.home-header .main-nav a {
  position: relative;
  text-decoration: none;
}

.home-header .main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.home-header .main-nav a:hover::after,
.home-header .main-nav a:focus-visible::after {
  transform: scaleX(1);
}

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

.home-header .header-call {
  min-height: auto;
  padding: 8px 0;
  color: var(--blue);
  background: transparent;
  font-size: 0.86rem;
}

.home-page .button {
  min-height: 48px;
  border-radius: 7px;
  padding: 13px 19px;
  font-family: "Sora", Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.home-page .button.primary,
.home-page .header-book {
  color: var(--blue-dark);
  background: var(--gold);
  box-shadow: 0 9px 22px rgba(255, 218, 0, 0.22);
}

.home-page .button.outline {
  color: var(--blue);
  background: var(--white);
  border: 1px solid #cbd7e1;
}

.home-hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 0%, rgba(31, 122, 90, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff, #f8fbfd);
}

.hero-grid {
  min-height: 570px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(30px, 6vw, 84px);
  padding-block: 58px 48px;
}

.hero-copy-panel {
  position: relative;
  z-index: 2;
}

.home-page .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-page .eyebrow svg {
  width: 16px;
  height: 16px;
}

.hero-copy-panel h1 {
  max-width: 620px;
  margin-bottom: 22px;
  color: var(--blue);
  font-size: clamp(2.7rem, 4.7vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.hero-copy-panel h1 span {
  display: block;
  color: var(--green);
  white-space: nowrap;
}

.hero-lead {
  max-width: 590px;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.8vw, 1.24rem);
  line-height: 1.65;
}

.home-page .hero-actions {
  margin-top: 28px;
}

.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin: 24px 0 0;
  padding: 0;
  color: #415363;
  font-size: 0.86rem;
  font-weight: 700;
  list-style: none;
}

.hero-checks li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-checks svg {
  width: 15px;
  color: var(--green);
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.hero-visual picture {
  display: block;
  overflow: hidden;
  border: 8px solid var(--white);
  border-radius: 28px 6px 28px 6px;
  box-shadow: 0 28px 80px rgba(0, 56, 103, 0.2);
}

.hero-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.34 / 1;
  object-fit: cover;
}

.hero-location-card {
  position: absolute;
  right: -18px;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  color: var(--white);
  background: var(--blue);
  border: 3px solid var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.hero-location-card svg {
  width: 24px;
  color: var(--gold);
}

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

.hero-location-card span {
  font-size: 0.74rem;
  line-height: 1.35;
}

.hero-location-card strong {
  font-size: 0.9rem;
}

.review-strip {
  border-block: 1px solid #e7edf2;
  background: var(--white);
}

.review-links {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px 34px;
}

.review-label {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.review-links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

.review-links svg {
  width: 18px;
  color: var(--green);
}

.review-links .social-logo-link {
  width: 34px;
  height: 34px;
  display: inline-flex;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 9px;
}

.review-links .social-logo-link img {
  width: 30px;
  height: 30px;
  display: block;
}

.review-links .social-logo-link:hover,
.review-links .social-logo-link:focus-visible {
  transform: translateY(-1px);
}

.review-links .social-logo-link:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.booking-banner {
  padding: 46px 0;
  background: #eef7fb;
}

.booking-banner-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 22px 40px;
  text-align: center;
}

.booking-banner-inner > div {
  text-align: left;
}

.booking-banner h2 {
  margin-bottom: 7px;
  color: var(--blue);
  font-size: clamp(1.7rem, 3vw, 2.45rem);
}

.booking-banner p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
}

.booking-points {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 28px;
  margin: 0;
  padding: 0;
  color: #405566;
  font-size: 0.86rem;
  font-weight: 700;
  list-style: none;
}

.booking-points li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.booking-points svg {
  width: 15px;
  color: var(--green);
}

.home-section {
  padding: 88px 0;
}

.home-section-heading {
  max-width: 740px;
  margin-bottom: 38px;
}

.home-section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.home-section-heading.compact {
  margin-bottom: 30px;
}

.home-section-heading h2,
.about-grid h2,
.booking-card h2 {
  margin-bottom: 14px;
  color: var(--blue);
  font-size: clamp(2rem, 3.8vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.home-section-heading > p:not(.eyebrow),
.about-grid > div > p,
.booking-card > div > p {
  color: var(--muted);
  line-height: 1.7;
}

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

.home-service-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid #e0e8ef;
  border-radius: 10px;
  box-shadow: 0 12px 34px rgba(0, 56, 103, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.home-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 42px rgba(0, 56, 103, 0.13);
}

.home-service-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.home-service-card > div {
  padding: 22px;
}

.home-service-card h3 {
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 1.15rem;
}

.home-service-card p {
  min-height: 48px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

.home-service-card a,
.text-link {
  color: var(--green);
  font-family: "Sora", Arial, sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
}

.why-section,
.area-section,
.resource-section {
  background: #f7fafc;
}

.why-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.why-card-grid article {
  min-height: 225px;
  padding: 24px 20px;
  background: var(--white);
  border: 1px solid #dfe8ef;
  border-bottom: 4px solid var(--blue);
  border-radius: 8px;
  text-align: center;
}

.why-card-grid article:nth-child(even) {
  border-bottom-color: var(--green);
}

.why-card-grid svg {
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  color: var(--blue);
}

.why-card-grid h3 {
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 1rem;
}

.why-card-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.6;
}

.why-card-grid .text-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.82rem;
}

.warranty-terms {
  display: grid;
  gap: 34px;
}

.warranty-terms section + section {
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.warranty-terms h3 {
  margin-top: 24px;
  color: var(--blue);
}

.warranty-summary {
  align-self: start;
  position: sticky;
  top: 112px;
}

.warranty-summary .button {
  justify-content: center;
  width: 100%;
}

.confidence-band {
  color: var(--white);
  background: linear-gradient(90deg, var(--blue-dark), var(--blue));
}

.confidence-grid {
  min-height: 120px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.confidence-grid div {
  padding: 10px 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  text-align: center;
}

.confidence-grid div:last-child {
  border-right: 0;
}

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

.confidence-grid strong {
  color: var(--gold);
  font-family: "Sora", Arial, sans-serif;
  font-size: 1.25rem;
}

.confidence-grid span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.8rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(38px, 7vw, 84px);
}

.about-image-wrap {
  position: relative;
}

.about-image-wrap > img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 24px 55px rgba(0, 56, 103, 0.16);
}

.about-badge {
  position: absolute;
  right: 18px;
  bottom: -18px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 17px;
  color: var(--blue-dark);
  background: var(--gold);
  border-radius: 6px;
  font-family: "Sora", Arial, sans-serif;
  font-size: 0.84rem;
  font-weight: 800;
}

.about-badge svg {
  width: 18px;
}

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

.about-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #405464;
  font-weight: 700;
}

.about-list svg {
  width: 18px;
  color: var(--green);
}

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

.area-card-grid a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 15px;
  padding: 24px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #dfe8ef;
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(0, 56, 103, 0.06);
  text-decoration: none;
}

.area-card-grid svg {
  width: 24px;
  color: var(--green);
}

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

.area-card-grid strong {
  color: var(--blue);
  font-family: "Sora", Arial, sans-serif;
}

.area-card-grid span {
  color: var(--muted);
  font-size: 0.82rem;
}

.area-card-grid b {
  color: var(--blue);
}

.area-contact-card {
  max-width: 760px;
  margin: 34px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 25px 30px;
  background: var(--white);
  border-left: 5px solid var(--gold);
  box-shadow: 0 12px 32px rgba(0, 56, 103, 0.09);
}

.area-contact-card h3 {
  margin-bottom: 0;
  color: var(--blue);
}

.area-contact-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.brand-section {
  background: var(--white);
}

.brand-logo-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.brand-logo-card {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 10px;
  background: #ffffff;
  border: 1px solid #dfe8ef;
  border-radius: 9px;
  box-shadow: 0 8px 24px rgba(0, 56, 103, 0.05);
  text-align: center;
}

.brand-logo-card img {
  width: 96px;
  height: 52px;
  object-fit: contain;
}

.brand-logo-card[data-brand-slug="viking"] img,
.brand-logo-card[data-brand-slug="marvel"] img {
  filter: brightness(0) saturate(100%) invert(16%) sepia(31%) saturate(2829%) hue-rotate(173deg) brightness(91%) contrast(103%);
}

.brand-logo-card span {
  color: var(--blue);
  font-family: "Sora", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.25;
}

.brand-disclaimer {
  max-width: 880px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.6;
  text-align: center;
}

.brand-hub-action {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.brand-directory-toolbar {
  margin: 0 0 28px;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  align-items: end;
  gap: 18px 24px;
  padding: 22px;
  background: #ffffff;
  border: 1px solid #dfe8ef;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(0, 56, 103, 0.06);
}

.brand-search {
  display: grid;
  gap: 8px;
  color: var(--blue);
  font-family: "Sora", Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
}

.brand-search input {
  width: 100%;
  min-height: 48px;
  padding: 12px 15px;
  color: var(--ink);
  background: #f8fafc;
  border: 1px solid #cad7e1;
  border-radius: 8px;
  font: inherit;
  font-weight: 600;
}

.brand-search input:focus {
  outline: 3px solid rgba(255, 218, 0, 0.45);
  border-color: var(--blue);
}

.brand-filter-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.brand-filter {
  min-height: 42px;
  padding: 9px 13px;
  color: var(--blue);
  background: #f3f7fa;
  border: 1px solid #d5e0e8;
  border-radius: 999px;
  font-family: "Sora", Arial, sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  cursor: pointer;
}

.brand-filter:hover,
.brand-filter.active {
  color: #ffffff;
  background: var(--blue);
  border-color: var(--blue);
}

.brand-result-count {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.brand-directory {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.brand-directory .brand-logo-card {
  min-height: 230px;
  justify-content: flex-start;
  padding: 24px 18px 20px;
  border-top: 4px solid var(--gold);
}

.brand-directory .brand-logo-card[hidden] {
  display: none;
}

.brand-directory .brand-logo-card img {
  width: 132px;
  height: 70px;
  margin-bottom: 4px;
}

@media (max-width: 760px) {
  #proChatIframeContainer {
    bottom: calc(72px + env(safe-area-inset-bottom)) !important;
  }

  body.hcp-chat-open #proChatIframeContainer {
    bottom: 0 !important;
  }

  body.hcp-chat-open .mobile-action-bar {
    visibility: hidden;
  }
}

.brand-directory .brand-logo-card h3 {
  margin: 0;
  color: var(--blue);
  font-size: 1rem;
  text-align: center;
}

.brand-directory .brand-logo-card p {
  min-height: 46px;
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
  text-align: center;
}

.brand-directory .brand-logo-card a {
  margin-top: auto;
  color: var(--blue);
  font-family: "Sora", Arial, sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.brand-empty-state {
  padding: 30px;
  color: var(--ink);
  background: #fff8cf;
  border: 1px solid #eed767;
  border-radius: 10px;
  text-align: center;
}

.brand-empty-state h3 {
  margin-bottom: 8px;
}

.brand-empty-state p {
  margin: 0;
}

.home-page .brand-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.home-page .brand-pill {
  min-width: 116px;
  padding: 13px 16px;
  color: var(--blue);
  background: #f5f8fa;
  border: 1px solid #d8e2e9;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
}

.home-page .brand-pill.active,
.home-page .brand-pill:hover {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

.home-brand-panel {
  max-width: 880px;
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 26px 30px;
  color: var(--ink);
  background: #f1f8f5;
  border: 1px solid #d3e8df;
  border-radius: 8px;
}

.home-brand-panel h3 {
  margin-bottom: 7px;
  color: var(--blue);
}

.home-brand-panel p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
}

.symptom-section {
  background: #f9fbfc;
}

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

.symptom-grid a {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 20px;
  color: var(--blue);
  background: var(--white);
  border: 1px solid #e0e8ef;
  border-radius: 50% 50% 12px 12px;
  font-family: "Sora", Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.symptom-grid svg {
  width: 32px;
  height: 32px;
  color: var(--green);
}

.process-section {
  background: var(--white);
}

.home-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 0;
  padding: 0;
  counter-reset: none;
  list-style: none;
}

.home-process-grid li {
  position: relative;
  padding: 28px 24px;
  background: #f7fafc;
  border-top: 4px solid var(--blue);
  border-radius: 7px;
}

.home-process-grid li:nth-child(even) {
  border-top-color: var(--green);
}

.home-process-grid li > span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--blue-dark);
  background: var(--gold);
  border-radius: 50%;
  font-family: "Sora", Arial, sans-serif;
  font-weight: 900;
}

.home-process-grid h3 {
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 1rem;
}

.home-process-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.6;
}

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

.resource-grid > a {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 24px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #e0e8ef;
  border-radius: 8px;
  text-decoration: none;
}

.resource-icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--blue);
  border-radius: 7px;
}

.resource-icon svg {
  width: 22px;
}

.resource-grid h3 {
  margin-bottom: 7px;
  color: var(--blue);
  font-size: 1rem;
}

.resource-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(36px, 7vw, 90px);
}

.faq-list {
  border-top: 1px solid #dce5ec;
}

.faq-list details {
  border-bottom: 1px solid #dce5ec;
}

.faq-list summary {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--blue);
  font-family: "Sora", Arial, sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary svg {
  width: 18px;
  flex: 0 0 auto;
  color: var(--green);
}

.faq-list details[open] summary svg {
  transform: rotate(45deg);
}

.faq-list details p {
  padding: 0 34px 22px 0;
  color: var(--muted);
  line-height: 1.7;
}

.booking-section {
  padding-top: 44px;
}

.booking-card {
  padding: clamp(30px, 5vw, 58px);
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(0, 43, 79, 0.98), rgba(0, 56, 103, 0.92)),
    url("./assets/photos/real/service-van-tools.webp") center / cover;
  border-radius: 14px;
}

.booking-card h2 {
  color: var(--white);
}

.booking-card > div > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.booking-option-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.booking-option-grid > a {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 17px;
  color: var(--blue);
  background: var(--white);
  border-radius: 7px;
  text-decoration: none;
}

.booking-option-grid svg {
  width: 24px;
  color: var(--green);
}

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

.booking-option-grid strong {
  font-family: "Sora", Arial, sans-serif;
  font-size: 0.9rem;
}

.booking-option-grid span {
  color: var(--muted);
  font-size: 0.76rem;
}

.booking-fallback-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

.booking-fallback-note a {
  color: var(--blue);
  font-weight: 800;
}

.lead-capture-panel {
  width: min(100%, 760px);
  margin: 32px auto 0;
  padding: clamp(22px, 4vw, 34px);
  color: var(--ink);
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 18px 45px rgba(0, 24, 44, 0.2);
}

.lead-capture-intro {
  margin-bottom: 18px;
  text-align: center;
}

.lead-capture-intro .eyebrow {
  margin-bottom: 7px;
  color: var(--green);
}

.lead-capture-intro h3 {
  margin: 0;
  color: var(--blue-dark);
  font-family: "Sora", Arial, sans-serif;
  font-size: clamp(1.35rem, 3vw, 1.8rem);
}

.lead-capture-intro p:not(.eyebrow) {
  max-width: 600px;
  margin: 10px auto 0;
  color: var(--muted);
  line-height: 1.65;
}

.hcp-lead-iframe {
  display: block;
  width: 100%;
  min-height: 720px;
  border: 0;
  background: var(--white);
}

.lead-form-placeholder {
  display: grid;
  justify-items: center;
  gap: 12px;
  min-height: 280px;
  padding: clamp(28px, 5vw, 56px);
  border: 1px dashed #9fb4c5;
  border-radius: 22px;
  background: linear-gradient(180deg, #fff, #f5f9fc);
  text-align: center;
}

.lead-form-placeholder > svg {
  width: 42px;
  height: 42px;
  color: var(--green);
}

.lead-form-placeholder h4,
.lead-form-placeholder p {
  max-width: 620px;
  margin: 0;
}

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

.testimonial-grid blockquote {
  margin: 0;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 14px 32px rgba(13, 54, 94, 0.08);
}

.testimonial-grid blockquote p {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 1.04rem;
  line-height: 1.65;
}

.testimonial-grid blockquote footer {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.verified-rating-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(24px, 4vw, 42px);
  border-radius: 24px;
  background: var(--navy);
  color: var(--white);
}

.verified-rating-card strong,
.verified-rating-card p,
.review-stars {
  display: block;
}

.verified-rating-card strong {
  margin-top: 5px;
  font-size: clamp(1.45rem, 3vw, 2.1rem);
}

.verified-rating-card p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.review-stars {
  color: #f6c344;
  letter-spacing: 0.12em;
}

.review-source-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

.hcp-reviews-section {
  margin-top: clamp(48px, 7vw, 72px);
}

.hcp-reviews-section .section-heading {
  max-width: 720px;
  margin-bottom: 24px;
}

.hcp-reviews-widget {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 14px 32px rgba(13, 54, 94, 0.08);
}

.hcp-reviews-widget iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  min-height: 1000px;
  border: 0;
}

.hcp-reviews-section + .review-policy {
  margin-top: clamp(32px, 5vw, 48px);
}

.review-policy {
  margin-top: 28px;
}

.proof-detail-grid article {
  display: flex;
  flex-direction: column;
}

.proof-detail-grid article > a {
  margin-top: auto;
  padding-top: 12px;
  color: var(--green);
  font-weight: 800;
}

.proof-label {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 18px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #e8f4ef;
  color: #145f47;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.inline-local-link {
  max-width: 760px;
  margin: 24px auto 0;
}

.inline-local-link a {
  display: grid;
  gap: 5px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  color: inherit;
  text-decoration: none;
}

.inline-local-link a strong {
  color: var(--navy);
}

.inline-local-link a span {
  color: var(--muted);
}

.cookie-consent {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1180px, calc(100% - 40px));
  max-width: none;
  margin: 16px auto 0;
  padding: 18px;
  border: 1px solid #b9c8d4;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 55px rgba(13, 54, 94, 0.24);
}

.cookie-consent p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.cookie-consent-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  flex: 0 0 min(390px, 42%);
  gap: 10px;
}

.cookie-consent-actions .button {
  min-height: 44px;
  padding: 11px 14px;
  font-size: 0.88rem;
  line-height: 1.2;
}

.cookie-consent-actions [data-consent-choice="denied"] {
  color: var(--blue-dark);
  background: var(--white);
  border: 2px solid var(--blue-dark);
}

.cookie-consent-actions [data-consent-choice="granted"] {
  color: var(--blue-dark);
  background: var(--gold);
  border: 2px solid var(--gold);
}

@media (max-width: 760px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .verified-rating-card,
  .cookie-consent {
    align-items: stretch;
    flex-direction: column;
  }

  .cookie-consent {
    width: calc(100% - 28px);
    margin-top: 12px;
  }

  .cookie-consent-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    flex: none;
  }
}

@media (max-width: 640px) {
  .site-header:not(.home-header) .header-call {
    display: none;
  }

  .site-header:not(.home-header) {
    width: 100%;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    padding-inline: 10px;
  }

  .site-header:not(.home-header) .brand {
    min-width: 0;
  }

  .site-header:not(.home-header) .brand-logo {
    width: min(166px, 42vw);
    max-width: 100%;
  }

  .site-header:not(.home-header) .header-actions {
    min-width: 0;
    gap: 7px;
  }

  .site-header:not(.home-header) .header-book {
    padding-inline: 10px;
    font-size: 0.76rem;
  }

  .lead-capture-panel {
    width: 100%;
    margin-top: 22px;
    padding: 20px 10px 14px;
  }

  .lead-capture-intro {
    padding-inline: 8px;
  }

  .hcp-lead-iframe {
    min-height: 780px;
  }
}

.home-footer {
  margin-top: 88px;
  color: rgba(255, 255, 255, 0.76);
  background: var(--blue-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 42px;
  padding-block: 58px;
}

.footer-brand > img {
  width: 220px;
  height: auto;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 290px;
  margin-top: 20px;
  line-height: 1.7;
}

.footer-grid > div:not(.footer-brand) {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-grid h3 {
  margin-bottom: 9px;
  color: var(--white);
  font-size: 0.92rem;
}

.footer-grid a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.84rem;
  text-decoration: none;
}

.footer-grid a:hover {
  color: var(--gold);
}

.footer-grid .customer-portal-link,
.site-footer .customer-portal-link {
  width: fit-content;
  margin-top: 8px;
  padding: 10px 16px;
  color: var(--white);
  font-weight: 800;
  line-height: 1.2;
  background: #0f77cc;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.footer-grid .customer-portal-link:hover,
.footer-grid .customer-portal-link:focus-visible,
.site-footer .customer-portal-link:hover,
.site-footer .customer-portal-link:focus-visible {
  color: var(--white);
  background: #0b64ad;
}

.footer-grid .customer-portal-link:focus-visible,
.site-footer .customer-portal-link:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.footer-grid span {
  font-size: 0.84rem;
}

.footer-address,
.footer-hours {
  line-height: 1.55;
}

.footer-address strong,
.footer-hours strong {
  display: block;
  color: var(--white);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.footer-socials {
  display: flex;
  gap: 9px;
  margin-top: 20px;
}

.footer-socials a {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
}

.footer-socials img {
  width: 22px;
  height: 22px;
  display: block;
  object-fit: contain;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  border-color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom .home-container {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.76rem;
}

.footer-bottom a {
  color: var(--gold);
  text-decoration: none;
}

.footer-bottom-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.footer-bottom .bbb-seal-link {
  display: inline-flex;
  flex: 0 0 auto;
  line-height: 0;
  border-radius: 4px;
}

.bbb-seal-link:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.bbb-seal-link img {
  display: block;
  width: min(280px, 100%);
  height: auto;
}

.superpro-badge {
  display: block;
  width: min(280px, 100%);
  height: auto;
  border-radius: 4px;
}

@media (max-width: 1100px) {
  .header-inner {
    gap: 18px;
  }

  .home-header .main-nav {
    gap: 14px;
  }

  .home-header .header-call span {
    display: none;
  }

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

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

  .brand-logo-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .home-header .main-nav {
    display: none;
  }

  .home-header.menu-open .main-nav {
    display: grid;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .header-actions {
    justify-self: end;
  }

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

  .hero-grid {
    padding-top: 44px;
  }

  .hero-copy-panel {
    text-align: center;
  }

  .hero-copy-panel h1,
  .hero-lead {
    margin-inline: auto;
  }

  .home-page .hero-actions,
  .hero-checks {
    justify-content: center;
  }

  .hero-visual {
    max-width: 720px;
    margin-inline: auto;
  }

  .home-service-grid,
  .area-card-grid,
  .resource-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .confidence-grid div:nth-child(2) {
    border-right: 0;
  }

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

  .brand-logo-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .brand-directory-toolbar {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .brand-filter-list {
    justify-content: flex-start;
  }

  .brand-directory {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .home-container {
    width: min(100% - 28px, 1180px);
  }

  .announcement-inner {
    justify-content: center;
    text-align: center;
  }

  .announcement-inner > span {
    display: none;
  }

  .home-header .brand-logo {
    width: min(166px, 45vw);
  }

  .header-inner {
    gap: 8px;
  }

  .header-actions {
    gap: 6px;
  }

  .home-header .header-call {
    display: none;
  }

  .home-page .header-book {
    min-height: 42px;
    padding: 9px 10px;
    font-size: 0.72rem;
  }

  .brand-directory-toolbar {
    padding: 18px;
  }

  .brand-filter-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-filter {
    width: 100%;
  }

  .brand-directory {
    grid-template-columns: 1fr;
  }

  .brand-directory .brand-logo-card {
    min-height: 210px;
  }

  .hero-grid {
    min-height: auto;
    gap: 32px;
    padding-block: 38px;
  }

  .hero-copy-panel h1 {
    font-size: clamp(2.35rem, 11.5vw, 3.2rem);
  }

  .hero-location-card {
    right: 10px;
    bottom: 10px;
  }

  .review-links {
    padding-block: 18px;
    gap: 12px 18px;
  }

  .review-label {
    width: 100%;
    text-align: center;
  }

  .booking-banner-inner,
  .home-brand-panel {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .booking-banner-inner > div {
    text-align: center;
  }

  .home-section {
    padding: 66px 0;
  }

  .home-service-grid,
  .why-card-grid,
  .area-card-grid,
  .home-process-grid,
  .resource-grid,
  .booking-option-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .brand-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-logo-grid.brand-directory {
    grid-template-columns: 1fr;
  }

  .why-card-grid article {
    min-height: 0;
  }

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

  .confidence-grid div {
    min-height: 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 12px;
  }

  .confidence-grid div:nth-child(1),
  .confidence-grid div:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .about-badge {
    right: 10px;
    bottom: 10px;
  }

  .area-contact-card {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .symptom-grid a {
    min-height: 135px;
    border-radius: 36px 36px 10px 10px;
  }

  .booking-card {
    width: calc(100% - 28px);
    padding: 30px 20px;
  }

  .home-footer {
    margin-top: 66px;
    padding-bottom: 68px;
  }

  .footer-bottom .home-container {
    padding-block: 14px;
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom-actions {
    width: 100%;
    align-items: flex-end;
    flex-direction: column;
    gap: 14px;
  }
}
