:root {
  --ink: #071522;
  --navy: #081b2d;
  --navy-soft: #0d2842;
  --blue: #2838d5;
  --blue-light: #2d8cff;
  --sand: #d6ad67;
  --sand-soft: #ead9bb;
  --sand-ink: #946522;
  --silver: #a8b3bd;
  --line-dark: rgba(255, 255, 255, 0.14);
  --line-light: #d8e1e9;
  --paper: #f5f8fb;
  --white: #ffffff;
  --muted-dark: #aab6c2;
  --muted-light: #5d6a76;
  --shadow: 0 24px 70px rgba(3, 15, 27, 0.18);
  --radius: 6px;
  --container: 1180px;
  --motion-instant: 120ms;
  --motion-ui: 220ms;
  --motion-reveal: 380ms;
  --ease-standard: cubic-bezier(0.2, 0.7, 0.2, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

.quote-preset-loading .quote-configurator {
  visibility: hidden;
}

html {
  color-scheme: dark;
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--white);
  background: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

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

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

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

::selection {
  color: var(--white);
  background: #2838d5;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--white);
  transform: translateY(-150%);
}

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

.eyebrow {
  display: flex;
  align-items: center;
  margin: 0 0 18px;
  color: var(--blue-light);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 820px;
  font-size: clamp(3.25rem, 8.6vw, 7.3rem);
}

h2 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
}

h3 {
  font-size: clamp(1.45rem, 2.2vw, 2rem);
}

p {
  margin: 0;
}

.lede {
  max-width: 650px;
  color: var(--muted-dark);
  font-size: clamp(1.05rem, 1.7vw, 1.22rem);
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 3px;
  cursor: pointer;
  font-weight: 700;
  box-shadow: 0 0 0 rgba(45, 140, 255, 0);
  transition: color var(--motion-ui) ease, background var(--motion-ui) ease, border-color var(--motion-ui) ease, box-shadow var(--motion-ui) ease, transform var(--motion-ui) var(--ease-out);
}

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

.button:active {
  transform: translateY(1px) scale(0.985);
  transition-duration: var(--motion-instant);
}

.button-primary {
  color: var(--white);
  background: var(--blue);
}

.button-primary:hover {
  background: #1d2ab3;
  box-shadow: 0 12px 30px rgba(40, 56, 213, 0.28);
}

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

.button-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.09);
}

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

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-light);
  font-weight: 700;
}

.text-link svg {
  transition: transform 180ms ease;
}

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

/* Shared header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  transform: translateY(0);
  background: #05121f;
  box-shadow: 0 10px 30px rgba(2, 13, 24, 0.12);
  transition: transform 260ms var(--ease-out), box-shadow var(--motion-ui) ease;
}

.site-header.is-scrolled {
  box-shadow: 0 14px 36px rgba(2, 13, 24, 0.22);
}

.site-header.is-hidden {
  transform: translateY(calc(-100% - 2px));
}

.header-inner {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-bottom: 1px solid var(--line-dark);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: none;
  line-height: 1;
}

.brand-logo {
  display: block;
  height: auto;
}

.brand-logo--full {
  width: clamp(190px, 16vw, 225px);
}

.brand-logo--mark {
  display: none;
  width: 52px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 29px;
}

.site-nav > a:not(.nav-cta) {
  position: relative;
  padding: 8px 10px;
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 600;
  transition: color var(--motion-ui) ease, background-color var(--motion-ui) ease;
}

.site-nav > a:hover,
.site-nav > a[aria-current="page"] {
  color: var(--white);
  background: rgba(45, 140, 255, 0.14);
}

.nav-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 17px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 3px;
  font-size: 0.88rem;
  font-weight: 700;
  transition: background 180ms ease, border-color 180ms ease;
}

.nav-cta:hover {
  border-color: var(--blue);
  background: var(--blue);
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  padding: 0;
  color: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: 3px;
  background: transparent;
}

/* Home page */
.home-hero {
  min-height: 790px;
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
  background: var(--navy);
}

.home-hero::before {
  position: absolute;
  right: 0;
  bottom: 112px;
  left: 0;
  z-index: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent 3%, rgba(214, 173, 103, 0.55) 38%, rgba(214, 173, 103, 0.12) 78%, transparent);
  content: "";
}

.home-hero__media {
  position: absolute;
  inset: 0;
}

.home-hero__media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 13, 24, 0.98) 0%, rgba(2, 13, 24, 0.9) 34%, rgba(2, 13, 24, 0.2) 56%, transparent 70%),
    linear-gradient(0deg, rgba(2, 13, 24, 0.38), transparent 38%);
  content: "";
}

.hero-media-note {
  position: absolute;
  right: 30px;
  bottom: 130px;
  z-index: 2;
  margin: 0;
  padding: 7px 10px;
  color: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 3px;
  background: rgba(2, 13, 24, 0.68);
  font-size: 0.67rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  backdrop-filter: blur(8px);
}

.home-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  filter: brightness(1.08) contrast(1.03);
}

.home-hero__content {
  position: relative;
  z-index: 2;
  padding: 180px 0 94px;
}

.home-hero h1 {
  max-width: 790px;
}

.home-hero h1 span {
  color: var(--blue-light);
}

.home-hero .lede {
  margin: 28px 0 36px;
}

.route-strip {
  border-bottom: 1px solid var(--line-dark);
  background: #061321;
}

.route-strip__inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.route-strip a {
  min-height: 116px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 30px;
  border-left: 1px solid var(--line-dark);
  transition: background 180ms ease;
}

.route-strip a:last-child {
  border-right: 1px solid var(--line-dark);
}

.route-strip a:hover {
  background: var(--navy-soft);
}

.route-strip small {
  display: block;
  color: var(--blue-light);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.route-strip strong {
  display: block;
  margin-top: 4px;
  font-size: 1.05rem;
}

.section {
  padding: 116px 0;
}

.section-light {
  color: var(--ink);
  background: var(--paper);
}

.section-dark {
  background: var(--ink);
}

.section-blue {
  background: var(--navy);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.7fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 54px;
}

.section-light .eyebrow {
  color: #156cc9;
}

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

.service-preview {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 20px;
}

.service-card {
  min-height: 410px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  padding: 42px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--navy);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.service-card:hover {
  border-color: rgba(139, 195, 255, 0.48);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.service-card--light {
  color: var(--ink);
  border-color: var(--line-light);
  background: var(--white);
}

.service-card__number {
  color: var(--blue-light);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.16em;
}

.service-card--light .service-card__number,
.service-card--light .text-link {
  color: #176ecb;
}

.service-card h3 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(2.25rem, 4vw, 3.8rem);
}

.service-card--light h3 {
  color: var(--ink);
}

.service-card p {
  max-width: 510px;
  color: var(--muted-dark);
}

.service-card--light p {
  color: var(--muted-light);
}

.service-card .text-link {
  margin-top: 26px;
}

.home-future {
  margin-top: 54px;
  padding-top: 42px;
  border-top: 1px solid var(--line-light);
}

.home-future__intro {
  display: grid;
  grid-template-columns: 1.05fr 1fr auto;
  align-items: end;
  gap: 34px;
  margin-bottom: 24px;
}

.home-future__intro > div > span {
  color: #176ecb;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.home-future__intro h3 {
  margin-top: 11px;
  color: var(--ink);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.home-future__intro p {
  color: var(--muted-light);
}

.home-future__intro .text-link {
  color: #176ecb;
  white-space: nowrap;
}

.home-future .future-item {
  min-height: 205px;
  color: var(--white);
}

.home-future .future-item h3 {
  margin-top: 52px;
}

.split-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 650px;
}

.split-feature__media {
  overflow: hidden;
  background: var(--navy-soft);
}

.split-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.split-feature:hover .split-feature__media img {
  transform: scale(1.025);
}

.split-feature__copy {
  display: flex;
  align-items: center;
  padding: 8vw;
  background: var(--navy);
}

.split-feature__copy p:not(.eyebrow) {
  max-width: 540px;
  margin: 26px 0 32px;
  color: var(--muted-dark);
}

.split-feature__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.split-feature__actions .text-link {
  margin: 0;
}

.service-image-note {
  display: block;
  margin-top: 22px;
  color: #71808d;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-modes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.mode-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 38px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: var(--white);
}

.mode-card span {
  color: #176ecb;
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.14em;
}

.mode-card p {
  max-width: 470px;
  margin-top: 16px;
  color: var(--muted-light);
}

.cta-band {
  padding: 54px 0;
  color: var(--white);
  background: var(--paper);
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  position: relative;
  overflow: hidden;
  padding: 52px 56px;
  border: 1px solid rgba(214, 173, 103, 0.45);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 84% 24%, rgba(40, 56, 213, 0.32), transparent 31%),
    linear-gradient(125deg, #061525, #030e19);
}

.cta-band h2 {
  max-width: 760px;
  font-size: clamp(2.35rem, 4.4vw, 4.4rem);
}

.cta-band .button {
  flex: none;
}

.cta-band__copy {
  position: relative;
  z-index: 1;
}

.cta-band__services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.cta-band__services a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 8px 13px;
  color: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 650;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.cta-band__services a:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.07);
}

/* Interior pages */
.page-hero {
  min-height: 570px;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 22%, rgba(44, 140, 255, 0.22), transparent 28%),
    linear-gradient(135deg, var(--navy), var(--ink));
}

.page-hero::after {
  position: absolute;
  right: -150px;
  bottom: -300px;
  width: 700px;
  height: 700px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  content: "";
}

.page-hero__content {
  position: relative;
  z-index: 2;
  padding: 172px 0 84px;
}

.page-hero h1 {
  max-width: 880px;
  font-size: clamp(3.1rem, 7vw, 6.2rem);
}

.page-hero .lede {
  margin-top: 26px;
}

.page-hero__actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
}

.page-hero__actions .button-primary {
  border-color: var(--blue-light);
  background: var(--blue-light);
  box-shadow: 0 14px 34px rgba(45, 140, 255, 0.24);
}

.page-hero__actions .button-primary:hover {
  border-color: #1679eb;
  background: #1679eb;
}

.page-hero__actions > span {
  color: var(--muted-dark);
  font-size: 0.82rem;
  font-weight: 650;
}

/* Service pages: shared brand, distinct personalities */
.service-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.service-hero__grid {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  align-items: center;
  gap: clamp(48px, 7vw, 110px);
  padding-top: 142px;
  padding-bottom: 72px;
}

.service-hero__content {
  position: relative;
  z-index: 2;
}

.service-hero h1,
.film-hero h1,
.parts-hero h1,
.mobile-coverage-hero h1 {
  font-size: clamp(3.45rem, 6.8vw, 6.7rem);
  line-height: 0.92;
  letter-spacing: -0.065em;
}

.film-hero h1,
.parts-hero h1,
.mobile-coverage-hero h1 {
  max-width: 760px;
  font-size: clamp(3.25rem, 5.8vw, 5.75rem);
}

.service-hero .lede,
.film-hero .lede,
.parts-hero .lede,
.mobile-coverage-hero .lede {
  margin-top: 26px;
}

.service-hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 32px;
}

.service-hero__actions .text-link {
  margin: 0;
}

.service-hero__actions small {
  color: var(--muted-dark);
  font-weight: 650;
}

.service-hero__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 46px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.14);
}

.service-hero__facts span {
  min-height: 92px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px;
  color: var(--muted-dark);
  background: rgba(5, 18, 31, 0.94);
  font-size: 0.75rem;
}

.service-hero__facts strong {
  display: block;
  margin-bottom: 4px;
  color: var(--white);
  font-size: 0.92rem;
}

.service-hero--detailing {
  background:
    linear-gradient(115deg, rgba(7, 21, 34, 0.98) 0 50%, rgba(12, 40, 68, 0.96)),
    var(--navy);
}

.service-hero--detailing .service-hero__grid {
  min-height: 680px;
  grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
  gap: clamp(48px, 6vw, 92px);
}

.service-hero--detailing h1 {
  max-width: 700px;
  font-size: clamp(3.7rem, 5.45vw, 5.35rem);
  line-height: 0.95;
}

.service-hero--detailing .service-hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 36px;
  margin-top: 38px;
  border: 0;
  background: transparent;
}

.service-hero--detailing .service-hero__facts span {
  min-height: 0;
  padding: 0;
  background: transparent;
}

.service-hero--detailing .service-hero__facts strong {
  font-size: 0.96rem;
}

.detailing-hero__visual {
  min-height: 520px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.detailing-hero__visual img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center;
  transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.detailing-hero__visual:hover img {
  transform: scale(1.025);
}

.detailing-hero__visual figcaption {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 72px 30px 28px;
  background: linear-gradient(180deg, transparent, rgba(4, 16, 28, 0.9));
}

.detailing-hero__visual figcaption span,
.detailing-hero__visual figcaption strong {
  display: block;
}

.detailing-hero__visual figcaption span {
  color: #55a7ff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.detailing-hero__visual figcaption strong {
  margin-top: 7px;
  color: var(--white);
  font-size: 1.2rem;
}

#packages {
  scroll-margin-top: 90px;
}

.service-hero--ceramic {
  min-height: 780px;
  isolation: isolate;
}

.ceramic-hero__media,
.ceramic-hero__media::after {
  position: absolute;
  inset: 0;
}

.ceramic-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
}

.ceramic-hero__media::after {
  background:
    linear-gradient(90deg, rgba(3, 13, 24, 0.96) 0 38%, rgba(3, 13, 24, 0.48) 68%, rgba(3, 13, 24, 0.18)),
    linear-gradient(0deg, rgba(3, 13, 24, 0.44), transparent 45%);
  content: "";
}

.ceramic-hero__inner {
  min-height: 780px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-top: 140px;
  padding-bottom: 68px;
}

.ceramic-hero__panel {
  max-width: 720px;
}

.ceramic-hero__metrics {
  max-width: 620px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.ceramic-hero__metrics span {
  padding: 18px 22px 18px 0;
  color: var(--muted-dark);
  font-size: 0.78rem;
}

.ceramic-hero__metrics span + span {
  padding-left: 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.ceramic-hero__metrics strong {
  display: block;
  margin-bottom: 5px;
  color: var(--white);
  font-size: 1rem;
}

.ceramic-hero__badge {
  position: absolute;
  right: 0;
  bottom: 66px;
  text-align: right;
}

.ceramic-hero__badge strong,
.ceramic-hero__badge span {
  display: block;
  color: rgba(255, 255, 255, 0.16);
  font-size: clamp(3.5rem, 7vw, 7.5rem);
  font-weight: 800;
  line-height: 0.76;
  letter-spacing: 0.08em;
}

.film-hero {
  min-height: 760px;
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: #04111e;
}

.film-hero__media,
.film-hero__media::after {
  position: absolute;
  inset: 0;
}

.film-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
}

.film-hero__media::after {
  background:
    linear-gradient(90deg, rgba(3, 13, 24, 0.97) 0 40%, rgba(3, 13, 24, 0.54) 72%, rgba(3, 13, 24, 0.68)),
    linear-gradient(0deg, rgba(3, 13, 24, 0.96), transparent 70%);
  content: "";
}

.film-hero__inner {
  position: relative;
  z-index: 1;
  padding-top: 150px;
  padding-bottom: 60px;
}

.film-hero__intro {
  max-width: 850px;
}

.film-hero__intro .lede {
  max-width: 610px;
}

.film-choice-grid {
  max-width: 920px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 42px;
}

.film-choice {
  min-height: 238px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(5, 18, 31, 0.86);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.2);
  transition: transform var(--motion-ui) var(--ease-out), border-color var(--motion-ui) ease, background-color var(--motion-ui) ease;
}

.film-choice--ppf {
  border-color: rgba(45, 140, 255, 0.58);
  background: rgba(8, 42, 73, 0.9);
}

.film-choice--wrap {
  background: rgba(5, 18, 31, 0.86);
}

.film-choice:hover {
  transform: translateY(-4px);
  border-color: rgba(45, 140, 255, 0.78);
}

.film-choice > span {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.film-choice h2 {
  margin-top: 18px;
  font-size: clamp(1.8rem, 3vw, 2.75rem);
}

.film-choice p {
  max-width: 430px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.76);
}

.film-choice strong {
  margin-top: auto;
  padding-top: 18px;
  font-size: 1.05rem;
}

.film-choice .button {
  margin-top: 18px;
}

.film-choice--ppf .button-primary {
  color: var(--white);
  border-color: transparent;
  background: var(--blue);
}

.parts-hero {
  color: var(--white);
  background: linear-gradient(125deg, #071522 0 58%, #0c2b49 100%);
}

.parts-hero__grid {
  min-height: 700px;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: stretch;
  gap: clamp(44px, 7vw, 110px);
  padding-top: 140px;
  padding-bottom: 72px;
}

.parts-hero__media {
  min-height: 480px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: var(--navy);
  box-shadow: 20px 20px 0 rgba(45, 140, 255, 0.14);
}

.parts-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.parts-hero__media span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 11px 14px;
  color: var(--white);
  background: var(--ink);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.parts-hero__content {
  align-self: center;
}

.parts-hero .breadcrumbs,
.mobile-coverage-hero .breadcrumbs {
  color: var(--muted-dark);
}

.parts-hero .breadcrumbs a:hover,
.mobile-coverage-hero .breadcrumbs a:hover {
  color: var(--white);
}

.parts-hero .eyebrow {
  color: var(--blue-light);
}

.parts-hero .lede {
  color: var(--muted-dark);
}

.parts-hero__scope {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 34px;
}

.parts-hero__scope span {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.75rem;
  font-weight: 700;
}

.parts-hero .service-hero__actions small {
  color: var(--muted-dark);
}

.mobile-coverage-hero {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background: #f5f7f9;
}

.mobile-coverage-hero__grid {
  min-height: 620px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(48px, 7vw, 100px);
  position: relative;
  padding-top: 142px;
  padding-bottom: 68px;
}

.mobile-coverage-hero__content {
  max-width: 760px;
}

.mobile-coverage-hero .button-outline {
  color: var(--ink);
  border-color: #9eb2c2;
}

.mobile-coverage-hero .breadcrumbs {
  color: #687785;
}

.mobile-coverage-hero .breadcrumbs a:hover {
  color: var(--ink);
}

.mobile-coverage-hero .eyebrow {
  color: #176ecb;
}

.mobile-coverage-hero .lede {
  color: #566573;
}

.coverage-summary {
  display: grid;
  gap: 1px;
  padding: 1px;
  background: #cbd8e2;
  box-shadow: 18px 18px 0 rgba(45, 140, 255, 0.08);
}

.coverage-summary > div {
  min-height: 128px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 4px 20px;
  padding: 26px 30px;
  background: var(--white);
}

.coverage-summary span {
  color: #176ecb;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.coverage-summary strong {
  grid-row: 1 / span 2;
  grid-column: 2;
  color: var(--ink);
  font-size: clamp(1.35rem, 2.3vw, 2.1rem);
}

.coverage-summary small {
  color: #667583;
}

.breadcrumbs {
  display: flex;
  gap: 9px;
  align-items: center;
  margin-bottom: 28px;
  color: var(--muted-dark);
  font-size: 0.78rem;
}

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

.content-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 90px;
  align-items: start;
}

.content-intro {
  position: sticky;
  top: 34px;
}

.content-intro .lede {
  margin: 24px 0 30px;
}

.detail-list {
  border-top: 1px solid var(--line-dark);
}

.detail-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 22px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line-dark);
}

.detail-item > span {
  color: var(--blue-light);
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.14em;
}

.detail-item p {
  max-width: 590px;
  margin-top: 12px;
  color: var(--muted-dark);
}

.detail-item .text-link {
  margin-top: 18px;
}

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

.process-step {
  min-height: 300px;
  padding: 34px 34px 12px 0;
}

.process-step:not(:last-child) {
  border-right: 1px solid var(--line-dark);
}

.process-step + .process-step {
  padding-left: 34px;
}

.process-step span {
  color: var(--blue-light);
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.14em;
}

.process-step h3 {
  margin: 80px 0 14px;
}

.process-step p {
  color: var(--muted-dark);
}

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

.benefit-card {
  min-height: 270px;
  padding: 34px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: var(--white);
}

.benefit-card span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 58px;
  color: #176ecb;
  border: 1px solid #bed7f0;
  border-radius: 50%;
  font-weight: 750;
}

.benefit-card p {
  margin-top: 12px;
  color: var(--muted-light);
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--navy-soft);
}

.gallery-item:first-child {
  grid-column: 1 / -1;
}

.gallery-item img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 520ms var(--ease-standard);
}

.gallery-item:first-child img {
  aspect-ratio: 2 / 1;
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.gallery-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 60px 26px 24px;
  background: linear-gradient(transparent, rgba(3, 14, 25, 0.92));
}

.gallery-caption small {
  color: var(--blue-light);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.gallery-caption h2 {
  margin-top: 7px;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
}

.gallery-disclaimer {
  max-width: 720px;
  margin-top: 28px;
  color: var(--muted-dark);
  font-size: 0.88rem;
}

.future-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--line-dark);
}

.future-item {
  min-height: 230px;
  padding: 34px;
  background: var(--navy);
}

.future-item small {
  color: var(--blue-light);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.future-item h3 {
  margin: 75px 0 12px;
}

.future-item p {
  color: var(--muted-dark);
}

.service-menu-section {
  border-top: 1px solid var(--line-dark);
}

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

.detail-package-card {
  min-height: 530px;
  padding: 32px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
}

.detail-package-card--featured {
  border: 2px solid var(--blue-light);
  box-shadow: 0 20px 55px rgba(45, 140, 255, 0.14);
}

.detail-package-card--dark {
  color: var(--white);
  background: #030b13;
}

.detail-package-card header {
  min-height: 184px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(122, 138, 151, 0.3);
}

.detail-package-card header span,
.package-plus {
  color: #1e69c9;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.detail-package-card--dark header span,
.detail-package-card--dark .package-plus {
  color: var(--blue-light);
}

.detail-package-card h3 {
  margin: 14px 0 5px;
  font-size: clamp(1.85rem, 3vw, 2.55rem);
}

.detail-package-card header p {
  color: var(--muted-light);
  font-style: italic;
}

.detail-package-card header strong {
  display: block;
  margin-top: 18px;
  color: var(--ink);
  font-size: 1.35rem;
}

.detail-package-card--dark header strong {
  color: var(--white);
}

.detail-package-card--dark header p {
  color: var(--muted-dark);
}

.package-plus {
  margin: 25px 0 0;
}

.detail-package-includes {
  display: grid;
  gap: 11px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.detail-package-includes li {
  position: relative;
  padding-left: 19px;
  color: var(--muted-light);
  font-size: 0.92rem;
}

.detail-package-card--dark .detail-package-includes li {
  color: var(--muted-dark);
}

.detail-package-includes li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

.detail-package-action {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 11px;
  margin-top: 34px;
  text-align: center;
}

.detail-package-action .button {
  min-width: 230px;
  border-color: var(--blue-light);
  background: var(--blue-light);
  box-shadow: 0 14px 34px rgba(45, 140, 255, 0.24);
}

.detail-package-action .button:hover {
  border-color: #1679eb;
  background: #1679eb;
}

.detail-package-action p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 0.86rem;
}

.service-menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.service-menu-group {
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--navy);
}

.service-menu-group > header {
  padding: 26px 28px 22px;
  border-bottom: 1px solid var(--line-dark);
  background: rgba(165, 174, 255, 0.06);
}

.service-menu-group > header span {
  color: var(--blue-light);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.14em;
}

.service-menu-group > header h3 {
  margin-top: 7px;
  font-size: 1.55rem;
}

.service-menu-row {
  min-height: 82px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding: 17px 28px;
  border-bottom: 1px solid var(--line-dark);
}

.service-menu-row:last-child {
  border-bottom: 0;
}

.service-menu-row strong,
.service-menu-row small {
  display: block;
}

.service-menu-row strong {
  font-size: 0.98rem;
}

.service-menu-row small {
  margin-top: 3px;
  color: var(--muted-dark);
  font-size: 0.8rem;
  line-height: 1.45;
}

.service-menu-row b {
  color: var(--blue-light);
  font-size: 0.95rem;
  white-space: nowrap;
}

.service-menu-row__action {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 7px;
}

.service-menu-row__action a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  color: var(--white);
  border: 1px solid rgba(45, 140, 255, 0.65);
  border-radius: 3px;
  background: rgba(45, 140, 255, 0.12);
  font-size: 0.72rem;
  font-weight: 750;
  white-space: nowrap;
  transition: border-color 160ms ease, background 160ms ease;
}

.service-menu-row__action a:hover {
  border-color: var(--blue-light);
  background: var(--blue-light);
}

.distance-fee-note {
  margin-top: 10px;
  padding: 12px 14px;
  color: #6d4600;
  border: 1px solid #e2b65b;
  border-radius: 8px;
  background: #fff5dc;
  font-size: 0.82rem;
}

.distance-fee-note strong {
  color: #3f2900;
}

.coverage-city-tags b.is-extended {
  color: #784d00;
  border-color: #e0ad47;
  background: #fff3d4;
}

.coverage-fee {
  display: grid;
  grid-template-columns: minmax(150px, 0.35fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
  margin-top: 24px;
  padding: 26px 30px;
  color: var(--ink);
  border: 1px solid #e0ad47;
  border-radius: var(--radius);
  background: #fff8e7;
}

.coverage-fee > span {
  color: #8a5900;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.coverage-fee strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.1rem;
}

.coverage-fee p {
  color: var(--muted-light);
}

.fast-custom-link {
  margin-top: 18px;
  color: var(--muted-light);
  font-size: 0.82rem;
  text-align: center;
}

.fast-custom-link a {
  color: #1768c6;
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.custom-quote-page {
  color: var(--ink);
  background: #eef3f7;
}

.custom-quote-page .site-header {
  background: rgba(5, 18, 31, 0.96);
}

.custom-quote-page .site-footer {
  position: relative;
  z-index: 2;
}

.quote-configurator {
  display: grid;
  grid-template-columns: minmax(340px, 0.72fr) minmax(0, 1.28fr);
  min-height: 100vh;
  padding-top: 88px;
  background: #eef3f7;
}

.quote-configurator__rail {
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: calc(100vh - 88px);
  padding: clamp(58px, 8vh, 92px) clamp(32px, 4.5vw, 72px) 46px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 92% 12%, rgba(45, 140, 255, 0.3), transparent 32%),
    linear-gradient(145deg, #06111c 0%, #0a2136 58%, #071522 100%);
}

.quote-configurator__rail::after {
  position: absolute;
  right: -90px;
  bottom: 110px;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(45, 140, 255, 0.24);
  border-radius: 50%;
  box-shadow: 0 0 0 38px rgba(45, 140, 255, 0.035), 0 0 0 76px rgba(45, 140, 255, 0.025);
  content: "";
}

.quote-rail__content,
.quote-rail__detail-link {
  position: relative;
  z-index: 1;
}

.quote-rail__eyebrow {
  display: flex;
  align-items: center;
  margin: 0 0 22px;
  color: var(--blue-light);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.quote-configurator__rail h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(2.7rem, 5vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.quote-rail__intro {
  max-width: 580px;
  margin: 26px 0 0;
  color: #bdcbd8;
  font-size: 1.05rem;
  line-height: 1.65;
}

.quote-rail__trust {
  display: grid;
  gap: 12px;
  margin-top: 36px;
}

.quote-rail__trust span {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #d7e2eb;
  font-size: 0.9rem;
  font-weight: 650;
}

.quote-rail__trust b {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid rgba(45, 140, 255, 0.5);
  border-radius: 50%;
  color: var(--blue-light);
  background: rgba(45, 140, 255, 0.1);
}

.quote-rail__recap {
  margin-top: 42px;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-left: 3px solid var(--blue-light);
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(12px);
}

.quote-rail__recap > span {
  display: block;
  margin-bottom: 5px;
  color: #88bcfb;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.quote-rail__recap strong {
  display: block;
  font-size: 1.1rem;
}

.quote-rail__recap p {
  margin: 5px 0 0;
  color: #aebdca;
  font-size: 0.82rem;
  line-height: 1.5;
}

.quote-rail__detail-link {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #aebdca;
  font-size: 0.86rem;
}

.quote-rail__detail-link strong {
  display: block;
  margin-top: 3px;
  color: var(--white);
}

.quote-configurator__workspace {
  min-width: 0;
  padding: clamp(56px, 7vw, 92px) clamp(32px, 6vw, 88px) 80px;
}

.quote-configurator .button-primary {
  border-color: var(--blue-light);
  background: var(--blue-light);
  box-shadow: 0 10px 26px rgba(45, 140, 255, 0.22);
}

.quote-configurator .button-primary:hover {
  border-color: #1679eb;
  background: #1679eb;
}

.quote-progress,
.quote-configurator__form {
  width: min(100%, 880px);
  margin-inline: auto;
}

.quote-progress {
  display: grid;
  grid-template-columns: auto minmax(30px, 1fr) auto minmax(30px, 1fr) auto;
  align-items: center;
  margin-bottom: clamp(46px, 7vw, 78px);
}

.quote-progress__item {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #7e8c99;
}

.quote-progress__item > span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid #cbd6de;
  border-radius: 50%;
  background: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  transition: 180ms ease;
}

.quote-progress__item b,
.quote-progress__item small {
  display: block;
  line-height: 1.25;
}

.quote-progress__item b {
  color: #64727f;
  font-size: 0.82rem;
}

.quote-progress__item small {
  margin-top: 3px;
  font-size: 0.68rem;
}

.quote-progress__item.is-current > span,
.quote-progress__item.is-complete > span {
  border-color: var(--blue-light);
  color: var(--white);
  background: var(--blue-light);
  box-shadow: 0 7px 18px rgba(45, 140, 255, 0.25);
}

.quote-progress__item.is-current b,
.quote-progress__item.is-complete b {
  color: var(--ink);
}

.quote-progress__line {
  height: 1px;
  margin-inline: 15px;
  overflow: hidden;
  background: #cbd6de;
}

.quote-progress__line i {
  display: block;
  width: 0;
  height: 100%;
  background: var(--blue-light);
  transition: width 240ms ease;
}

.quote-progress__line i.is-filled {
  width: 100%;
}

.quote-screen {
  animation: quoteScreenIn 220ms ease both;
}

@keyframes quoteScreenIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.quote-screen__heading {
  margin-bottom: 38px;
}

.quote-screen__heading > span {
  display: block;
  margin-bottom: 12px;
  color: #1768c6;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.quote-screen__heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.45rem, 5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.quote-screen__heading p {
  margin: 16px 0 0;
  color: var(--muted-light);
  font-size: 1rem;
}

.quote-question {
  min-width: 0;
  margin: 0 0 34px;
  padding: 0;
  border: 0;
}

.quote-question legend,
.quote-field label {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

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

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

.quote-choice-grid--services .quote-choice--featured {
  grid-column: 1 / -1;
  grid-template-columns: 46px minmax(0, 1fr) 32px;
  min-height: 138px;
  padding: 24px;
  border: 2px solid #2d8cff;
  background: linear-gradient(115deg, #ffffff 0%, #edf6ff 100%);
  box-shadow: 0 14px 34px rgba(45, 140, 255, 0.14);
}

.quote-choice--featured .quote-choice__icon {
  width: 46px;
  height: 46px;
  color: var(--white);
  background: var(--blue-light);
}

.quote-choice--featured em {
  display: block;
  margin-bottom: 4px;
  color: #1768c6;
  font-size: 0.67rem;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quote-choice--featured strong {
  font-size: 1.28rem;
}

.quote-choice {
  position: relative;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 28px;
  gap: 13px;
  align-items: center;
  min-height: 110px;
  padding: 18px;
  border: 1px solid #cbd6de;
  border-radius: 12px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 5px 20px rgba(7, 21, 34, 0.035);
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.quote-choice:hover {
  border-color: #85bdfd;
  box-shadow: 0 10px 28px rgba(7, 21, 34, 0.08);
  transform: translateY(-2px);
}

.quote-choice:has(input:checked) {
  border-color: var(--blue-light);
  background: #edf6ff;
  box-shadow: 0 0 0 2px rgba(45, 140, 255, 0.12), 0 12px 30px rgba(45, 140, 255, 0.1);
}

.quote-choice input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

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

.quote-choice input:focus-visible ~ i {
  outline: 3px solid var(--blue-light);
  outline-offset: 3px;
}

.quote-choice__icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 9px;
  color: #1768c6;
  background: #edf6ff;
  font-size: 0.69rem;
  font-weight: 850;
  letter-spacing: 0.05em;
}

.quote-choice strong,
.quote-choice small {
  display: block;
}

.quote-choice strong {
  line-height: 1.3;
}

.quote-choice small {
  margin-top: 5px;
  color: var(--muted-light);
  font-size: 0.76rem;
  line-height: 1.45;
}

.quote-choice i {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 1px solid #cbd6de;
  border-radius: 50%;
  color: transparent;
  background: var(--white);
  font-size: 0.75rem;
  font-style: normal;
  transition: 160ms ease;
}

.quote-choice input:checked ~ i {
  border-color: var(--blue-light);
  color: var(--white);
  background: var(--blue-light);
}

.quote-choice--compact {
  grid-template-columns: minmax(0, 1fr) 28px;
  min-height: 94px;
  padding: 16px;
}

.quote-dynamic-questions {
  display: grid;
  gap: 2px;
}

.quote-field {
  margin-bottom: 30px;
}

.quote-field label span {
  color: #84919d;
  font-weight: 500;
}

.quote-field input,
.quote-field textarea {
  width: 100%;
  border: 1px solid #cbd6de;
  border-radius: 10px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 4px 18px rgba(7, 21, 34, 0.025);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.quote-field input {
  min-height: 60px;
  padding: 0 18px;
}

.quote-field textarea {
  min-height: 112px;
  padding: 16px 18px;
  resize: vertical;
}

.quote-field input:focus,
.quote-field textarea:focus {
  border-color: var(--blue-light);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(45, 140, 255, 0.13);
}

.quote-field input::placeholder,
.quote-field textarea::placeholder {
  color: #8a96a1;
}

.quote-error {
  min-height: 20px;
  margin: 7px 0 0;
  color: #b3261e;
  font-size: 0.77rem;
  font-weight: 650;
}

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

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

.quote-screen__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid #d5dee5;
}

.quote-screen__actions .button {
  min-width: 190px;
}

.quote-back-link {
  min-height: 48px;
  padding: 0;
  border: 0;
  color: #596775;
  background: none;
  font-weight: 750;
  cursor: pointer;
}

.quote-back-link:hover {
  color: var(--ink);
}

.quote-review {
  overflow: hidden;
  margin: 8px 0 22px;
  border: 1px solid #cbd6de;
  border-radius: 12px;
  background: var(--white);
}

.quote-review > div {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 14px 17px;
  border-bottom: 1px solid #dde5eb;
}

.quote-review > div:last-child {
  border-bottom: 0;
}

.quote-review span {
  color: var(--muted-light);
}

.quote-review strong {
  max-width: 65%;
  text-align: right;
}

.quote-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #4f5d69;
  font-size: 0.87rem;
  cursor: pointer;
}

.quote-consent input {
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  accent-color: var(--blue-light);
}

.quote-success {
  padding: clamp(34px, 6vw, 70px);
  border: 1px solid #cbd6de;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 22px 65px rgba(7, 21, 34, 0.08);
  text-align: center;
}

.quote-success__mark {
  display: grid;
  width: 66px;
  height: 66px;
  margin: 0 auto 24px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue-light);
  box-shadow: 0 12px 30px rgba(45, 140, 255, 0.28);
  font-size: 1.55rem;
}

.quote-success .quote-rail__eyebrow {
  justify-content: center;
}

.quote-success h2 {
  max-width: 640px;
  margin: 0 auto 16px;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.quote-success > p:not(.quote-rail__eyebrow) {
  max-width: 610px;
  margin: 0 auto;
  color: var(--muted-light);
}

.quote-success__summary {
  display: grid;
  gap: 4px;
  max-width: 560px;
  margin: 28px auto;
  padding: 18px;
  border-radius: 10px;
  background: #edf6ff;
}

.quote-success__summary span {
  color: var(--muted-light);
  font-size: 0.86rem;
}

.vehicle-price-table {
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: var(--white);
}

.vehicle-price-row {
  display: grid;
  grid-template-columns: minmax(260px, 1.7fr) repeat(3, minmax(110px, 0.7fr));
  align-items: center;
  min-height: 72px;
  border-bottom: 1px solid var(--line-light);
}

.vehicle-price-row:last-child {
  border-bottom: 0;
}

.vehicle-price-row > * {
  padding: 18px 24px;
  border-left: 1px solid var(--line-light);
}

.vehicle-price-row > *:first-child {
  border-left: 0;
}

.vehicle-price-row--head {
  min-height: 58px;
  color: var(--white);
  background: var(--navy);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.vehicle-price-row:not(.vehicle-price-row--head) span {
  color: #2939b8;
  font-weight: 750;
}

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

.coating-price-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: 32px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--navy);
}

.coating-price-card--featured {
  border-color: rgba(165, 174, 255, 0.68);
  background: linear-gradient(145deg, rgba(40, 56, 213, 0.28), var(--navy) 68%);
}

.coating-price-card > span {
  color: var(--blue-light);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.14em;
}

.coating-price-card h3 {
  margin-top: 48px;
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
}

.coating-price-card strong {
  margin-top: 12px;
  color: var(--white);
  font-size: 1.15rem;
}

.coating-price-card p {
  margin: 16px 0 25px;
  color: var(--muted-dark);
}

.coating-price-card .text-link {
  margin-top: auto;
}

/* Rich service and editorial sections */
.image-service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch;
}

.image-service-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--navy);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.image-service-card:hover {
  border-color: rgba(139, 195, 255, 0.5);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.image-service-card--light {
  color: var(--ink);
  border-color: var(--line-light);
  background: var(--white);
}

.image-service-card__media {
  overflow: hidden;
  background: var(--navy-soft);
}

.image-service-card__media img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.image-service-card:hover .image-service-card__media img {
  transform: scale(1.025);
}

.image-service-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 34px;
}

.image-service-card__body > span,
.complete-callout > span,
.expectation-card > span,
.area-list span {
  color: var(--blue-light);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.14em;
}

.image-service-card--light .image-service-card__body > span {
  color: #176ecb;
}

.image-service-card__body h3 {
  margin: 42px 0 14px;
}

.image-service-card__body p {
  color: var(--muted-dark);
}

.image-service-card--light .image-service-card__body p {
  color: var(--muted-light);
}

.image-service-card__body .text-link {
  margin-top: auto;
  padding-top: 22px;
}

.media-note {
  max-width: 760px;
  margin-top: 24px;
  color: var(--muted-dark);
  font-size: 0.84rem;
}

.media-note--dark {
  color: var(--muted-light);
}

.complete-callout {
  display: grid;
  grid-template-columns: 0.55fr 1fr 1.2fr auto;
  gap: 28px;
  align-items: center;
  margin-top: 22px;
  padding: 34px;
  color: var(--white);
  border-radius: var(--radius);
  background: var(--navy);
}

.complete-callout p {
  color: var(--muted-dark);
}

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

.process-grid--four .process-step {
  min-height: 330px;
}

.feature-band {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  min-height: 690px;
  background: var(--navy);
}

.feature-band--reverse {
  grid-template-columns: 0.92fr 1.08fr;
}

.feature-band--reverse .feature-band__media {
  order: 2;
}

.feature-band__media {
  overflow: hidden;
  background: var(--navy-soft);
}

.feature-band__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.feature-band:hover .feature-band__media img {
  transform: scale(1.025);
}

.feature-band__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(60px, 8vw, 130px);
}

.feature-band__content > p:not(.eyebrow) {
  max-width: 610px;
  margin-top: 25px;
  color: var(--muted-dark);
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 30px 0 34px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 12px;
  color: #d6e1eb;
}

.check-list li::before {
  color: var(--blue-light);
  content: "✓";
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 90px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 34px;
}

.faq-intro > p:not(.eyebrow) {
  max-width: 480px;
  margin-top: 24px;
  color: var(--muted-light);
}

.faq-list {
  border-top: 1px solid var(--line-light);
}

.faq-list details {
  border-bottom: 1px solid var(--line-light);
}

.faq-list summary {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 700;
  list-style: none;
}

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

.faq-list summary::after {
  width: 32px;
  height: 32px;
  display: grid;
  flex: none;
  place-items: center;
  color: #176ecb;
  border: 1px solid #bed7f0;
  border-radius: 50%;
  content: "+";
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 670px;
  padding: 0 54px 28px 0;
  color: var(--muted-light);
}

.expectation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.expectation-card {
  min-height: 440px;
  padding: 42px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: var(--white);
}

.expectation-card--dark {
  color: var(--white);
  border-color: var(--line-dark);
  background: var(--navy);
}

.expectation-card > span {
  color: #176ecb;
}

.expectation-card--dark > span {
  color: var(--blue-light);
}

.expectation-card h3 {
  max-width: 520px;
  margin: 72px 0 25px;
}

.expectation-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted-light);
}

.expectation-card--dark ul {
  color: var(--muted-dark);
}

.split-feature--reverse .split-feature__media {
  order: 2;
}

.area-list {
  border-top: 1px solid var(--line-light);
}

.area-list > div {
  display: grid;
  grid-template-columns: 0.75fr 1fr 1.15fr;
  gap: 24px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--line-light);
}

.area-list span {
  color: #176ecb;
}

.area-list strong {
  font-size: 1.1rem;
}

.area-list p {
  color: var(--muted-light);
}

/* Desert Line editorial rhythm */
.chapter-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 24px;
  color: var(--sand);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.chapter-label span {
  width: 38px;
  height: 26px;
  display: grid;
  place-items: center;
  color: var(--sand-soft);
  border: 1px solid rgba(214, 173, 103, 0.42);
  border-radius: 999px;
  font-size: 0.66rem;
}

.section-light .chapter-label,
.editorial-heading--light .chapter-label,
.benefits-header .chapter-label {
  color: var(--sand-ink);
}

.section-light .chapter-label span,
.editorial-heading--light .chapter-label span,
.benefits-header .chapter-label span {
  color: var(--sand-ink);
  border-color: rgba(148, 101, 34, 0.4);
}

.editorial-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.55fr);
  gap: 9vw;
  align-items: end;
  margin-bottom: 68px;
  padding-top: 30px;
  border-top: 1px solid rgba(214, 173, 103, 0.42);
}

.editorial-heading .lede {
  padding-bottom: 8px;
}

.editorial-heading--light {
  border-top-color: rgba(148, 101, 34, 0.34);
}

.image-service-grid--staggered {
  align-items: start;
}

.image-service-grid--staggered .image-service-card:nth-child(2) {
  margin-top: 0;
}

.process-intro {
  max-width: 980px;
  margin-bottom: 70px;
}

.process-intro .lede {
  margin-top: 26px;
}

.timeline-grid {
  position: relative;
  border-top: 0;
}

.timeline-grid::before {
  position: absolute;
  top: 12px;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--sand), rgba(214, 173, 103, 0.18));
  content: "";
}

.timeline-grid .process-step,
.timeline-grid .process-step + .process-step {
  min-height: 285px;
  padding: 0 34px 12px 0;
  border-right: 0;
}

.timeline-grid .process-step + .process-step {
  padding-left: 18px;
}

.timeline-grid .process-step span {
  display: inline-flex;
  align-items: center;
  position: relative;
  z-index: 1;
  gap: 10px;
  padding-right: 12px;
  background: var(--ink);
}

.timeline-grid .process-step span::before {
  width: 9px;
  height: 9px;
  border: 2px solid var(--sand);
  border-radius: 50%;
  background: var(--ink);
  content: "";
}

.timeline-grid .process-step h3 {
  margin-top: 88px;
}

.location-heading {
  max-width: 900px;
  margin-bottom: 56px;
}

.location-heading .lede {
  margin-top: 24px;
}

.location-section .service-modes {
  grid-template-columns: 1.18fr 0.82fr;
}

.location-section .mode-card:first-child {
  color: var(--white);
  border-color: rgba(139, 195, 255, 0.25);
  background: var(--navy);
}

.location-section .mode-card:first-child p {
  color: var(--muted-dark);
}

.location-section .mode-card:first-child span {
  color: var(--sand);
}

.factor-rail {
  grid-template-columns: 1fr;
  border-top-color: rgba(214, 173, 103, 0.42);
}

.factor-rail .process-step,
.factor-rail .process-step + .process-step {
  min-height: 0;
  display: grid;
  grid-template-columns: 0.55fr 1fr 1.3fr;
  gap: 34px;
  align-items: center;
  padding: 30px 0;
  border-right: 0;
  border-bottom: 1px solid var(--line-dark);
}

.factor-rail .process-step h3,
.factor-rail .process-step p {
  margin: 0;
}

.factor-rail .process-step span {
  color: var(--sand);
}

.benefits-header {
  display: grid;
  grid-template-columns: 0.4fr 1.6fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 60px;
  padding-top: 26px;
  border-top: 1px solid rgba(148, 101, 34, 0.34);
}

.benefits-header > div {
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  gap: 60px;
  align-items: end;
}

.benefit-grid--offset {
  padding-bottom: 64px;
}

.benefit-grid--offset .benefit-card:nth-child(2) {
  transform: translateY(32px);
}

.benefit-grid--offset .benefit-card:nth-child(3) {
  transform: translateY(64px);
}

.coating-timeline .process-step {
  position: relative;
  overflow: hidden;
}

.coating-timeline .process-step::after {
  position: absolute;
  right: 24px;
  bottom: -30px;
  color: rgba(214, 173, 103, 0.08);
  font-size: 9rem;
  font-weight: 800;
  line-height: 1;
}

.coating-timeline .process-step:nth-child(1)::after { content: "01"; }
.coating-timeline .process-step:nth-child(2)::after { content: "02"; }
.coating-timeline .process-step:nth-child(3)::after { content: "03"; }

.coating-timeline .process-step h3,
.coating-timeline .process-step p {
  position: relative;
  z-index: 1;
}

/* Quote page */
.quote-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 80px;
  align-items: start;
}

.quote-aside {
  position: sticky;
  top: 36px;
}

.quote-aside .lede {
  margin: 24px 0 34px;
}

.quote-facts {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-dark);
}

.quote-facts li {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line-dark);
}

.quote-facts span {
  color: var(--muted-dark);
}

.quote-form {
  padding: 42px;
  color: var(--ink);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.field {
  display: grid;
  gap: 8px;
}

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

.field label {
  font-size: 0.83rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 14px;
  color: var(--ink);
  border: 1px solid #c6d1dc;
  border-radius: 3px;
  outline: none;
  background: var(--white);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field textarea {
  min-height: 122px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(44, 140, 255, 0.14);
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 25px;
}

.form-footer small {
  max-width: 340px;
  color: var(--muted-light);
  line-height: 1.45;
}

.form-message {
  display: none;
  margin-top: 22px;
  padding: 14px 16px;
  color: var(--ink);
  border-left: 3px solid var(--blue);
  background: #eaf4ff;
}

.form-message.is-visible {
  display: block;
}

/* Booking and checkout */
.fast-quote-page {
  min-height: 100vh;
  background: var(--ink);
}

.fast-quote-header {
  position: relative;
  z-index: 5;
  border-bottom: 1px solid var(--line-dark);
  background: rgba(3, 14, 25, 0.94);
}

.fast-quote-header__inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.fast-quote-header__service {
  color: var(--muted-dark);
  font-size: 0.82rem;
  font-weight: 650;
}

.fast-quote-main {
  min-height: calc(100vh - 78px);
  position: relative;
  overflow: hidden;
}

.fast-quote-backdrop {
  position: absolute;
  inset: 0;
}

.fast-quote-backdrop::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 13, 24, 0.97) 0%, rgba(2, 13, 24, 0.82) 43%, rgba(2, 13, 24, 0.36) 72%),
    linear-gradient(0deg, rgba(2, 13, 24, 0.58), rgba(2, 13, 24, 0.1));
  content: "";
}

.fast-quote-backdrop img {
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.fast-quote-layout {
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(500px, 0.72fr);
  gap: clamp(50px, 7vw, 110px);
  align-items: center;
  position: relative;
  z-index: 1;
  padding-block: 54px;
}

.fast-quote-copy {
  padding-block: 30px;
}

.fast-quote-copy h1 {
  max-width: 760px;
  font-size: clamp(3.6rem, 6vw, 6.8rem);
}

.fast-quote-copy h1 span {
  color: var(--blue-light);
}

.fast-quote-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 27px;
  color: #c0cad3;
  font-size: 1.08rem;
}

.fast-trust-list {
  display: grid;
  gap: 11px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.9);
}

.fast-trust-list li {
  display: flex;
  align-items: center;
  gap: 11px;
}

.fast-trust-list li span {
  width: 23px;
  height: 23px;
  display: grid;
  flex: none;
  place-items: center;
  color: var(--ink);
  border-radius: 50%;
  background: var(--sand);
  font-size: 0.72rem;
  font-weight: 850;
}

.fast-quote-media-note {
  display: block;
  margin-top: 30px;
  color: #8e9ba7;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
}

.fast-quote-card {
  padding: clamp(28px, 4vw, 46px);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 8px;
  background: rgba(248, 251, 253, 0.98);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
}

.fast-quote-card__head {
  margin-bottom: 26px;
}

.fast-quote-card__head > span {
  color: #176ecb;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.fast-quote-card__head h2 {
  margin-top: 8px;
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.fast-quote-card__head p {
  margin-top: 11px;
  color: var(--muted-light);
  line-height: 1.5;
}

.fast-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 14px;
}

.fast-field {
  display: grid;
  align-content: start;
  gap: 6px;
}

.fast-field--full,
.fast-estimate,
.fast-submit,
.fast-privacy {
  grid-column: 1 / -1;
}

.fast-field label {
  font-size: 0.79rem;
  font-weight: 750;
}

.fast-field label span {
  color: var(--muted-light);
  font-weight: 600;
}

.fast-location {
  margin: 0;
  padding: 0;
  border: 0;
}

.fast-location legend {
  margin-bottom: 8px;
  font-size: 0.84rem;
  font-weight: 750;
}

.fast-location__options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.fast-location-option {
  min-height: 142px;
  display: grid;
  grid-template-columns: 23px 1fr;
  gap: 12px;
  align-items: start;
  position: relative;
  padding: 17px;
  border: 1px solid #c6d1dc;
  border-radius: 4px;
  cursor: pointer;
  background: var(--white);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.fast-location-option:hover {
  border-color: #8eb9e5;
  transform: translateY(-2px);
}

.fast-location-option:has(input:checked) {
  border-color: var(--blue);
  box-shadow: 0 0 0 2px rgba(44, 140, 255, 0.16);
}

.fast-location.is-invalid .fast-location-option {
  border-color: #c83746;
}

.fast-location-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.fast-location-option__check {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  color: transparent;
  border: 1px solid #aebdca;
  border-radius: 50%;
  background: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
}

.fast-location-option:has(input:checked) .fast-location-option__check {
  color: var(--white);
  border-color: var(--blue);
  background: var(--blue);
}

.fast-location-option strong,
.fast-location-option small,
.fast-location-option em {
  display: block;
}

.fast-location-option strong {
  font-size: 1rem;
}

.fast-location-option small {
  margin-top: 5px;
  color: var(--muted-light);
  font-size: 0.77rem;
  line-height: 1.4;
}

.fast-location-option em {
  margin-top: 11px;
  color: #176ecb;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 750;
}

.fast-field input,
.fast-field select,
.fast-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 11px 13px;
  color: var(--ink);
  border: 1px solid #c6d1dc;
  border-radius: 3px;
  outline: none;
  background: var(--white);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.fast-field select {
  appearance: none;
  padding-right: 38px;
  background-image: linear-gradient(45deg, transparent 50%, #526273 50%), linear-gradient(135deg, #526273 50%, transparent 50%);
  background-position: calc(100% - 17px) 21px, calc(100% - 12px) 21px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
}

.fast-field input:focus,
.fast-field select:focus,
.fast-field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(44, 140, 255, 0.14);
}

.fast-field input.is-invalid,
.fast-field select.is-invalid,
.fast-field textarea.is-invalid {
  border-color: #c83746;
  box-shadow: 0 0 0 3px rgba(200, 55, 70, 0.11);
}

.fast-error {
  min-height: 17px;
  color: #b62938;
  font-size: 0.72rem;
  font-weight: 650;
  line-height: 1.35;
}

.fast-estimate {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5px 20px;
  align-items: end;
  margin-top: 4px;
  padding: 17px 18px;
  border-left: 3px solid var(--sand);
  background: #eaf1f6;
}

.fast-estimate > div {
  display: contents;
}

.fast-estimate span {
  color: #51606e;
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fast-estimate strong {
  font-size: 1.35rem;
  line-height: 1;
}

.fast-estimate small {
  grid-column: 1 / -1;
  color: #677582;
  font-size: 0.72rem;
}

.fast-submit {
  width: 100%;
  min-height: 58px;
  margin-top: 2px;
}

.fast-privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #657482;
  font-size: 0.72rem;
  text-align: center;
}

/* Simplified, symmetrical ad landing flow */
.fast-quote-page--simple .fast-quote-main {
  min-height: calc(100vh - 78px);
}

.fast-quote-page--simple .fast-quote-backdrop::after {
  background:
    linear-gradient(rgba(2, 13, 24, 0.82), rgba(2, 13, 24, 0.94)),
    radial-gradient(circle at 50% 20%, rgba(44, 140, 255, 0.16), transparent 40%);
}

.fast-quote-page--simple .fast-quote-backdrop img {
  object-position: center;
}

.fast-quote-shell {
  width: min(900px, calc(100% - 48px));
  display: grid;
  position: relative;
  z-index: 1;
  gap: 18px;
  justify-items: center;
  padding: 34px 0 30px;
}

.fast-quote-intro {
  max-width: 780px;
  text-align: center;
}

.fast-quote-intro .eyebrow {
  justify-content: center;
  margin-bottom: 15px;
}

.fast-quote-intro h1 {
  max-width: none;
  font-size: clamp(2.65rem, 4vw, 4rem);
}

.fast-quote-intro > p:not(.eyebrow) {
  margin-top: 15px;
  color: #c0cad3;
  font-size: 1rem;
}

.fast-quote-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 14px;
}

.fast-quote-trust span {
  padding: 7px 12px;
  color: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 999px;
  background: rgba(2, 13, 24, 0.45);
  font-size: 0.77rem;
  font-weight: 650;
}

.fast-quote-card--centered {
  width: min(760px, 100%);
  padding: 24px 30px 26px;
}

.fast-progress {
  margin-bottom: 18px;
}

.fast-progress > div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 10px;
  color: #61707e;
  font-size: 0.71rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fast-progress__track {
  height: 3px;
  overflow: hidden;
  border-radius: 10px;
  background: #d7e0e7;
}

.fast-progress__track span {
  width: 50%;
  height: 100%;
  display: block;
  background: var(--blue);
  transition: width 220ms ease;
}

.fast-form--steps {
  display: block;
}

.fast-form-step {
  display: none;
}

.fast-form-step.is-active {
  display: block;
  animation: step-in 200ms ease both;
}

.fast-step-heading {
  margin-bottom: 16px;
  text-align: center;
}

.fast-step-heading h2 {
  font-size: clamp(1.8rem, 4vw, 2.65rem);
}

.fast-step-heading p {
  margin-top: 8px;
  color: var(--muted-light);
}

.fast-step-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.fast-location--compact {
  margin-top: 4px;
}

.fast-location--compact .fast-location-option {
  min-height: 98px;
  align-items: center;
  padding: 15px 17px;
}

.fast-location--compact .fast-location-option em {
  margin-top: 6px;
}

.fast-zip-simple {
  width: calc(50% - 7px);
  margin-top: 2px;
}

.fast-zip-simple[hidden] {
  display: none !important;
}

.fast-estimate--compact {
  margin-top: 3px;
}

.fast-estimate--compact a {
  color: #1768c6;
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.fast-form-step .fast-submit {
  margin-top: 13px;
}

.fast-review {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  overflow: hidden;
  margin-top: 4px;
  border: 1px solid #d5dfe7;
  border-radius: 4px;
  background: #d5dfe7;
}

.fast-review > div {
  padding: 14px 16px;
  background: #edf3f7;
}

.fast-review span,
.fast-review strong {
  display: block;
}

.fast-review span {
  color: #6a7783;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fast-review strong {
  margin-top: 3px;
  font-size: 0.9rem;
}

.fast-step-actions {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 12px;
  margin-top: 20px;
}

.fast-step-actions .button {
  width: 100%;
}

.fast-form-step .fast-privacy {
  margin-top: 13px;
}

.fast-other-services {
  width: min(760px, 100%);
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px 24px;
  padding: 15px 18px;
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: rgba(2, 13, 24, 0.72);
  backdrop-filter: blur(12px);
}

.fast-other-services strong,
.fast-other-services span {
  display: block;
}

.fast-other-services strong {
  font-size: 0.86rem;
}

.fast-other-services span {
  margin-top: 3px;
  color: #9eabb6;
  font-size: 0.72rem;
}

.fast-other-services__links {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 7px;
}

.fast-other-services__links a {
  padding: 7px 10px;
  color: #eef6ff;
  border: 1px solid rgba(96, 167, 255, 0.36);
  border-radius: 999px;
  background: rgba(44, 140, 255, 0.1);
  font-size: 0.72rem;
  font-weight: 750;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.fast-other-services__links a:hover,
.fast-other-services__links a:focus-visible {
  border-color: rgba(96, 167, 255, 0.85);
  background: rgba(44, 140, 255, 0.22);
  transform: translateY(-1px);
}

.booking-page {
  min-height: 100vh;
  color: var(--ink);
  background: #eef3f7;
}

.booking-page .site-header {
  position: static;
  transform: none;
  color: var(--white);
  background: var(--ink);
}

@media (max-width: 1100px) {
  .service-hero__grid,
  .parts-hero__grid,
  .mobile-coverage-hero__grid {
    grid-template-columns: 1fr;
  }

  .service-hero--detailing .service-hero__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .service-hero__grid,
  .parts-hero__grid {
    padding-top: 150px;
  }

  .service-hero__content,
  .mobile-coverage-hero__content {
    max-width: 820px;
  }

  .detailing-hero__visual {
    width: min(100%, 820px);
    min-height: 480px;
  }

  .parts-hero__media {
    min-height: 500px;
    order: 2;
  }

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

  .coverage-summary > div {
    min-height: 160px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }

  .coverage-summary strong {
    margin-top: auto;
  }
}

@media (max-width: 760px) {
  .service-hero__grid,
  .parts-hero__grid,
  .mobile-coverage-hero__grid {
    min-height: 0;
    gap: 44px;
    padding-top: 126px;
    padding-bottom: 46px;
  }

  .service-hero h1,
  .film-hero h1,
  .parts-hero h1,
  .mobile-coverage-hero h1 {
    font-size: clamp(3rem, 14vw, 4.6rem);
  }

  .service-hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .service-hero__actions .button,
  .service-hero__actions .text-link {
    width: 100%;
    justify-content: center;
  }

  .service-hero__facts,
  .ceramic-hero__metrics,
  .film-choice-grid,
  .coverage-summary {
    grid-template-columns: 1fr;
  }

  .service-hero__facts span {
    min-height: 72px;
  }

  .service-hero--detailing h1 {
    font-size: clamp(3rem, 13vw, 4rem);
  }

  .service-hero--detailing .service-hero__grid {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
    padding-top: 116px;
    padding-bottom: 38px;
  }

  .service-hero--detailing .service-hero__facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 22px;
    margin-top: 34px;
  }

  .service-hero--detailing .service-hero__facts span:last-child {
    grid-column: 1 / -1;
  }

  .service-hero--detailing .service-hero__facts span {
    min-height: 0;
  }

  .detailing-hero__visual {
    width: 100%;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .detailing-hero__visual figcaption {
    padding: 60px 22px 22px;
  }

  .service-hero--ceramic,
  .ceramic-hero__inner {
    min-height: 700px;
  }

  .ceramic-hero__inner {
    align-items: flex-end;
    padding-top: 126px;
    padding-bottom: 52px;
  }

  .ceramic-hero__media img {
    object-position: 62% center;
  }

  .ceramic-hero__media::after {
    background: linear-gradient(0deg, rgba(3, 13, 24, 0.98) 0 58%, rgba(3, 13, 24, 0.35));
  }

  .ceramic-hero__metrics span,
  .ceramic-hero__metrics span + span {
    padding: 13px 0;
    border-left: 0;
  }

  .ceramic-hero__metrics span + span {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .ceramic-hero__badge {
    display: none;
  }

  .film-hero {
    min-height: 0;
  }

  .film-hero__inner {
    padding-top: 126px;
    padding-bottom: 46px;
  }

  .film-choice-grid {
    margin-top: 38px;
  }

  .film-choice {
    min-height: 250px;
    padding: 28px 24px;
  }

  .parts-hero__media {
    min-height: 360px;
    box-shadow: 10px 10px 0 rgba(45, 140, 255, 0.14);
  }

  .parts-hero__scope {
    margin-top: 26px;
  }

  .coverage-summary {
    box-shadow: 10px 10px 0 rgba(45, 140, 255, 0.08);
  }

  .coverage-summary > div {
    min-height: 118px;
    padding: 22px;
  }
}

.booking-shell {
  min-height: calc(100vh - 90px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
}

.booking-main {
  min-width: 0;
  padding: 46px clamp(24px, 6vw, 84px) 80px;
}

.booking-main__inner {
  width: min(900px, 100%);
  margin-inline: auto;
}

.booking-progress {
  margin-bottom: 30px;
}

.booking-progress__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 13px;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-progress__top span:last-child {
  color: var(--muted-light);
}

.booking-progress__track {
  height: 3px;
  overflow: hidden;
  border-radius: 10px;
  background: #d4dee7;
}

.booking-progress__bar {
  width: 12.5%;
  height: 100%;
  background: var(--blue);
  transition: width 280ms ease;
}

.booking-progress__labels {
  display: none;
  grid-template-columns: repeat(8, 1fr);
  gap: 8px;
  margin-top: 15px;
  color: #81909d;
  font-size: 0.67rem;
  font-weight: 700;
}

.booking-progress__labels span {
  overflow: hidden;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.booking-progress__labels span.is-current {
  color: #176ecb;
}

.booking-step {
  display: none;
}

.booking-step.is-active {
  display: block;
  animation: step-in 240ms ease both;
}

.booking-step,
.quote-screen,
.quote-success,
.fast-form-step {
  scroll-margin-top: 22px;
}

@keyframes step-in {
  from { opacity: 0; transform: translateX(14px); }
}

.booking-step__header {
  margin-bottom: 30px;
}

.booking-step__header .step-label {
  display: block;
  margin-bottom: 9px;
  color: #176ecb;
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.booking-step__header h1 {
  max-width: 760px;
  font-size: clamp(2.3rem, 4vw, 3.6rem);
}

.booking-step__header p {
  max-width: 650px;
  margin-top: 14px;
  color: var(--muted-light);
}

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

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

.service-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}

.service-tab {
  min-height: 88px;
  padding: 16px 17px;
  color: #506170;
  border: 1px solid #cbd6df;
  border-radius: var(--radius);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.7);
  text-align: left;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.service-tab:hover {
  color: var(--ink);
  border-color: #8eb9e5;
  background: var(--white);
}

.service-tab.is-active {
  color: var(--white);
  border-color: var(--blue);
  background: var(--blue);
  box-shadow: 0 10px 24px rgba(40, 56, 213, 0.18);
}

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

.service-tab strong {
  font-size: 0.95rem;
}

.service-tab span {
  margin-top: 4px;
  color: inherit;
  font-size: 0.76rem;
  line-height: 1.35;
  opacity: 0.82;
}

.service-group__heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 12px;
}

.service-group__heading h2 {
  font-size: 1.25rem;
}

.service-group__heading p {
  color: var(--muted-light);
  font-size: 0.82rem;
}

.service-choice-list {
  display: grid;
  gap: 10px;
}

.service-choice__copy {
  min-width: 0;
}

.service-choice__copy strong {
  font-size: 1rem;
}

.service-choice__copy p {
  margin-top: 4px;
}

.service-choice__meta {
  display: flex;
  align-items: center;
  gap: 15px;
}

.service-choice--featured {
  border-color: rgba(40, 56, 213, 0.35);
}

.choice-badge {
  display: inline-block;
  margin-bottom: 5px;
  padding: 3px 7px;
  color: #1f2fc2;
  border-radius: 999px;
  background: #e7e9ff;
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.choice {
  min-height: 164px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  padding: 23px;
  border: 1px solid #cbd6df;
  border-radius: var(--radius);
  cursor: pointer;
  background: var(--white);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.choice:hover {
  border-color: #8eb9e5;
  box-shadow: 0 12px 30px rgba(12, 42, 71, 0.08);
  transform: translateY(-2px);
}

.choice:has(input:checked) {
  border-color: var(--blue);
  box-shadow: 0 0 0 2px rgba(44, 140, 255, 0.18);
}

.choice input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.choice__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.choice__check {
  width: 22px;
  height: 22px;
  display: grid;
  flex: none;
  place-items: center;
  color: transparent;
  border: 1px solid #aebdca;
  border-radius: 50%;
  background: var(--white);
}

.choice:has(input:checked) .choice__check {
  color: var(--white);
  border-color: var(--blue);
  background: var(--blue);
}

.choice strong {
  display: block;
  font-size: 1.05rem;
}

.choice p {
  margin-top: 7px;
  color: var(--muted-light);
  font-size: 0.88rem;
  line-height: 1.45;
}

.choice__price {
  margin-top: 24px;
  color: var(--ink);
  font-size: 1.3rem;
  font-weight: 750;
}

.choice__price small {
  color: var(--muted-light);
  font-size: 0.75rem;
  font-weight: 600;
}

.upgrade-grid {
  grid-template-columns: 1fr;
  gap: 10px;
}

.choice.upgrade-choice {
  min-height: 92px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 16px;
  padding: 16px 18px 16px 20px;
}

.upgrade-choice .choice__top {
  display: contents;
}

.upgrade-choice .choice__top > span:first-child {
  min-width: 0;
  grid-column: 1;
  grid-row: 1;
}

.upgrade-choice .choice__price {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  font-size: 1rem;
  white-space: nowrap;
}

.upgrade-choice .choice__check {
  grid-column: 3;
  grid-row: 1;
}

.more-upgrades {
  min-height: 44px;
  margin-top: 12px;
  padding: 8px 0;
  color: var(--blue);
  border: 0;
  cursor: pointer;
  background: transparent;
  font-size: 0.84rem;
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.more-upgrades:hover {
  color: var(--ink);
}

.choice.service-choice {
  min-height: 96px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 17px 18px 17px 20px;
}

.choice.service-choice .choice__price {
  margin-top: 0;
  font-size: 1rem;
  white-space: nowrap;
}

.service-choice--guide {
  width: 100%;
  color: var(--ink);
  font: inherit;
  text-align: left;
  border-style: solid;
  background: #f7fbff;
}

.service-choice--guide:hover,
.service-choice--guide[aria-expanded="true"] {
  border-color: #2c8cff;
  background: #edf6ff;
}

.package-guide-toggle-label {
  color: #176ecb;
  font-size: 0.82rem;
  font-weight: 750;
  white-space: nowrap;
}

.package-guide-toggle-icon {
  color: #176ecb;
  font-size: 1.1rem;
  transition: transform 180ms ease;
}

.service-choice--guide[aria-expanded="true"] .package-guide-toggle-icon {
  transform: rotate(180deg);
}

.booking-package-guide {
  margin-top: 22px;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid #c5d6e5;
  border-radius: var(--radius);
  background: #f8fbfe;
  animation: step-in 220ms ease both;
}

.booking-package-guide__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.7fr);
  gap: 26px;
  align-items: end;
  margin-bottom: 24px;
}

.booking-package-guide__header span,
.booking-package-card header > span {
  color: #176ecb;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.booking-package-guide__header h2 {
  margin-top: 6px;
  font-size: clamp(1.65rem, 2.6vw, 2.35rem);
}

.booking-package-guide__header > p {
  color: var(--muted-light);
  font-size: 0.88rem;
}

.booking-package-guide__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.booking-package-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 22px;
  color: var(--ink);
  border: 1px solid #cbd6df;
  border-radius: var(--radius);
  background: var(--white);
}

.booking-package-card--featured {
  border: 2px solid #2c8cff;
}

.booking-package-card--dark {
  color: var(--white);
  border-color: #183952;
  background: var(--navy);
}

.booking-package-card.is-selected {
  box-shadow: 0 0 0 3px rgba(44, 140, 255, 0.2);
}

.booking-package-card h3 {
  margin-top: 7px;
  font-size: 1.25rem;
}

.booking-package-card header strong {
  display: block;
  margin-top: 15px;
  font-size: 1rem;
}

.booking-package-card header p,
.booking-package-card__includes {
  margin-top: 4px;
  color: var(--muted-light);
  font-size: 0.78rem;
}

.booking-package-card--dark header p,
.booking-package-card--dark .booking-package-card__includes {
  color: var(--muted-dark);
}

.booking-package-card__includes {
  margin-top: 18px;
  font-weight: 750;
}

.booking-package-card ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 24px;
  padding: 0;
  list-style: none;
}

.booking-package-card li {
  position: relative;
  padding-left: 17px;
  color: #506170;
  font-size: 0.78rem;
  line-height: 1.4;
}

.booking-package-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2c8cff;
  font-weight: 800;
}

.booking-package-card--dark li {
  color: var(--muted-dark);
}

.booking-package-card .button {
  width: 100%;
  min-height: 48px;
  margin-top: auto;
}

.booking-package-card--dark .button-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
}

.booking-package-guide__status {
  min-height: 20px;
  margin-top: 14px;
  color: #176ecb;
  font-size: 0.82rem;
  font-weight: 750;
  text-align: center;
}

.draft-note {
  margin-top: 18px;
  padding: 12px 14px;
  color: #506170;
  border-left: 3px solid var(--blue);
  background: #e4f1ff;
  font-size: 0.82rem;
}

.step-error,
.field-error {
  min-height: 20px;
  margin-top: 9px;
  color: #b62938;
  font-size: 0.8rem;
  font-weight: 650;
}

.field-control.is-invalid {
  border-color: #c83746 !important;
  box-shadow: 0 0 0 3px rgba(200, 55, 70, 0.11) !important;
}

.booking-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid #d6e0e8;
}

.booking-actions .button {
  min-width: 130px;
}

.button-back {
  color: #4c5d6c;
  border: 1px solid #c6d1dc;
  background: transparent;
}

.button-back:hover {
  color: var(--ink);
  border-color: #8fa2b3;
  background: var(--white);
}

.booking-summary {
  min-height: calc(100vh - 90px);
  position: sticky;
  top: 0;
  align-self: start;
  padding: 40px 28px;
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0, rgba(44, 140, 255, 0.22), transparent 28%),
    var(--navy);
}

.booking-summary h2 {
  margin-bottom: 20px;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

.summary-lines {
  margin: 0;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 13px 0;
  color: var(--muted-dark);
  border-bottom: 1px solid var(--line-dark);
  font-size: 0.88rem;
}

.summary-line dd,
.summary-line dt {
  margin: 0;
}

.summary-line dd {
  max-width: 170px;
  color: var(--white);
  text-align: right;
}

.price-breakdown {
  margin-top: 26px;
  padding-top: 10px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 8px 0;
  color: var(--muted-dark);
  font-size: 0.88rem;
}

.price-row strong {
  color: var(--white);
}

.price-row--total {
  margin-top: 10px;
  padding-top: 18px;
  color: var(--white);
  border-top: 1px solid var(--line-dark);
  font-size: 1.05rem;
}

.price-row--due {
  margin-top: 12px;
  padding: 17px 0;
  color: var(--white);
  border-top: 1px solid rgba(139, 195, 255, 0.3);
  border-bottom: 1px solid rgba(139, 195, 255, 0.3);
  font-size: 1.18rem;
  font-weight: 750;
}

.summary-footnote {
  margin-top: 24px;
  color: #8695a4;
  font-size: 0.75rem;
}

.booking-page[data-booking-step="1"] .summary-line:not(:first-child),
.booking-page[data-booking-step="1"] .price-row:not(.price-row--total) {
  display: none;
}

.booking-page[data-booking-step="1"] .price-breakdown {
  margin-top: 18px;
}

.mobile-total {
  display: none;
}

/* Custom calendar */
.calendar {
  overflow: hidden;
  border: 1px solid #cbd6df;
  border-radius: var(--radius);
  background: var(--white);
}

.calendar__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid #d7e1e8;
}

.calendar__head strong {
  font-size: 1rem;
}

.calendar__nav {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--ink);
  border: 1px solid #c7d2dc;
  border-radius: 3px;
  cursor: pointer;
  background: var(--white);
}

.calendar__nav:hover:not(:disabled) {
  border-color: var(--blue);
}

.calendar__nav:disabled {
  cursor: not-allowed;
  opacity: 0.35;
}

.calendar__weekdays,
.calendar__days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.calendar__weekdays span {
  padding: 11px 4px;
  color: #738291;
  text-align: center;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.calendar__day {
  min-height: 58px;
  display: grid;
  place-items: center;
  padding: 4px;
  color: var(--ink);
  border: 0;
  border-top: 1px solid #edf1f4;
  border-left: 1px solid #edf1f4;
  cursor: pointer;
  background: var(--white);
}

.calendar__day:nth-child(7n + 1) {
  border-left: 0;
}

.calendar__day:hover:not(:disabled) {
  color: #176ecb;
  background: #edf6ff;
}

.calendar__day.is-selected {
  color: var(--white);
  background: var(--blue);
}

.calendar__day.is-other,
.calendar__day:disabled {
  color: #b9c3cc;
  cursor: not-allowed;
  background: #f7f9fb;
}

.time-section {
  margin-top: 24px;
}

.time-section h3 {
  margin-bottom: 13px;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.integration-status {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 18px;
  padding: 14px 16px;
  color: #415361;
  border: 1px solid #cbd6df;
  border-radius: 4px;
  background: #f7f9fb;
}

.integration-status div {
  display: grid;
  gap: 2px;
}

.integration-status strong {
  color: var(--ink);
  font-size: 0.84rem;
}

.integration-status span:not(.integration-mark) {
  font-size: 0.76rem;
}

.integration-mark {
  width: 34px;
  height: 34px;
  display: grid;
  flex: 0 0 34px;
  place-items: center;
  color: #4285f4;
  border: 1px solid #d4dce3;
  border-radius: 50%;
  background: var(--white);
  font-weight: 800;
}

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

.time-slot {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 3px;
  padding: 8px 10px;
  color: var(--ink);
  border: 1px solid #c6d1dc;
  border-radius: 3px;
  cursor: pointer;
  background: var(--white);
  font-weight: 700;
}

.time-slot small {
  color: #6f7d89;
  font-size: 0.65rem;
  font-weight: 600;
}

.time-slot.is-selected small {
  color: rgba(255, 255, 255, 0.76);
}

.time-slot:hover {
  border-color: var(--blue);
}

.time-slot.is-selected {
  color: var(--white);
  border-color: var(--blue);
  background: var(--blue);
}

/* Address and customer fields */
.booking-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.booking-field {
  min-width: 0;
}

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

.booking-field label,
.booking-field legend {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 750;
}

.booking-field input,
.booking-field select {
  width: 100%;
  min-height: 54px;
  padding: 13px 14px;
  color: var(--ink);
  border: 1px solid #c6d1dc;
  border-radius: 3px;
  outline: none;
  appearance: none;
  background-color: var(--white);
}

.booking-field select {
  padding-right: 42px;
  background-image: linear-gradient(45deg, transparent 50%, #526475 50%), linear-gradient(135deg, #526475 50%, transparent 50%);
  background-position: calc(100% - 19px) 23px, calc(100% - 14px) 23px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
}

.booking-field input:focus,
.booking-field select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(44, 140, 255, 0.13);
}

.location-choice {
  margin-bottom: 24px;
}

.field-help {
  margin-top: 7px;
  color: var(--muted-light);
  font-size: 0.78rem;
  line-height: 1.45;
}

.shop-location-note {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border: 1px solid #cbd6df;
  border-radius: var(--radius);
  background: var(--white);
}

.shop-location-note strong {
  color: var(--ink);
  font-size: 0.9rem;
}

.shop-location-note span {
  color: var(--muted-light);
  font-size: 0.82rem;
  line-height: 1.45;
}

/* Mobile service area */
.service-area-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.coverage-map {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin: 0;
  padding: 22px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: var(--white);
}

.coverage-map__viewport {
  position: relative;
  flex: 1;
  overflow: hidden;
  border-radius: 4px;
}

.coverage-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
  border-radius: 4px;
  background: #eaf2f9;
  pointer-events: none;
}

.coverage-map__markers {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
}

.coverage-pin {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 7px;
  color: #0b61b5;
  border: 1px solid #68adf3;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  font-size: 0.66rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 5px 15px rgba(7, 21, 34, 0.18);
  transform: translate(-50%, -50%);
}

.coverage-pin::before {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: #2d8cff;
  content: "";
}

.coverage-pin--buckeye { left: 15%; top: 64%; transform: translate(0, -50%); }
.coverage-pin--goodyear { left: 32%; top: 61%; }
.coverage-pin--avondale { left: 33%; top: 53%; }
.coverage-pin--tolleson { left: 41%; top: 57%; }
.coverage-pin--peoria { left: 41%; top: 41%; }
.coverage-pin--cave-creek { left: 62%; top: 13%; }
.coverage-pin--north-scottsdale { left: 64%; top: 25%; }
.coverage-pin--phoenix { left: 53%; top: 56%; }
.coverage-pin--laveen { left: 46%; top: 67%; }
.coverage-pin--fountain-hills { left: 80%; top: 38%; }
.coverage-pin--mesa { left: 71%; top: 59%; }
.coverage-pin--apache-junction { left: 93%; top: 59%; transform: translate(-100%, -50%); }
.coverage-pin--chandler { left: 71%; top: 72%; }
.coverage-pin--san-tan { left: 91%; top: 84%; transform: translate(-100%, -50%); }

.coverage-map figcaption {
  margin-top: 12px;
  color: var(--muted-light);
  font-size: 0.78rem;
}

.coverage-list {
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.coverage-zone {
  padding: 22px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: var(--white);
}

.coverage-zone span {
  color: #176ecb;
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.coverage-zone h3 {
  margin-top: 8px;
  font-size: 1.25rem;
}

.coverage-zone p {
  margin-top: 9px;
  color: var(--muted-light);
  font-size: 0.9rem;
  line-height: 1.55;
}

.coverage-city-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 13px;
}

.coverage-city-tags b {
  padding: 6px 9px;
  color: #0b61b5;
  border: 1px solid #b8d9fb;
  border-radius: 999px;
  background: #edf6ff;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.2;
}

.coverage-exclusions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 20px;
  padding: 20px 22px;
  color: var(--white);
  border-radius: var(--radius);
  background: var(--navy);
}

.coverage-exclusions p {
  color: var(--muted-dark);
}

/* Payment */
.secure-panel {
  padding: 26px;
  border: 1px solid #c9d5df;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 45px rgba(12, 42, 71, 0.08);
}

.secure-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid #dce4ea;
}

.secure-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 750;
}

.card-marks {
  display: flex;
  gap: 5px;
}

.card-mark {
  min-width: 41px;
  padding: 5px 6px;
  color: #425364;
  border: 1px solid #cad5de;
  border-radius: 3px;
  text-align: center;
  font-size: 0.62rem;
  font-weight: 800;
}

.payment-choice {
  margin: 22px 0;
}

.square-placeholder {
  min-height: 118px;
  display: grid;
  place-items: center;
  padding: 22px;
  color: #5f6f7d;
  border: 1px dashed #9eafbd;
  border-radius: 4px;
  background: #f5f8fb;
  text-align: center;
}

.square-placeholder strong {
  display: block;
  color: var(--ink);
}

.square-placeholder span {
  display: block;
  margin-top: 4px;
}

.card-mark--square {
  min-width: 58px;
  color: var(--ink);
  border-color: #aebcc8;
}

.policy-copy {
  margin-top: 18px;
  color: #60717f;
  font-size: 0.78rem;
  line-height: 1.55;
}

.confirmation {
  padding: 34px;
  border: 1px solid #cbd6df;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 45px rgba(12, 42, 71, 0.08);
}

.confirmation__icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: var(--white);
  border-radius: 50%;
  background: var(--blue);
}

.confirmation h1 {
  font-size: clamp(2.4rem, 5vw, 4.3rem);
}

.confirmation > p {
  margin-top: 14px;
  color: var(--muted-light);
}

.confirmation-number {
  margin: 26px 0;
  padding: 17px 19px;
  border-left: 3px solid var(--blue);
  background: #edf6ff;
}

.confirmation-number span {
  display: block;
  color: #647482;
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.confirmation-number strong {
  display: block;
  margin-top: 4px;
  font-size: 1.25rem;
}

.confirmation-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  overflow: hidden;
  margin-top: 24px;
  border: 1px solid #d7e0e7;
  background: #d7e0e7;
}

.confirmation-detail {
  padding: 17px;
  background: var(--white);
}

.confirmation-detail span {
  display: block;
  color: #738291;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.confirmation-detail strong {
  display: block;
  margin-top: 4px;
}

.next-steps {
  margin: 27px 0 0;
  padding: 24px 24px 24px 44px;
  background: #f3f6f8;
}

.next-steps li + li {
  margin-top: 8px;
}

/* Footer */
.site-footer {
  padding: 64px 0 30px;
  border-top: 1px solid var(--line-dark);
  background: #030e19;
}

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

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

.footer-summary {
  max-width: 440px;
  margin-top: 22px;
  color: var(--muted-dark);
}

.footer-column h2 {
  margin-bottom: 18px;
  color: var(--muted-dark);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span {
  display: block;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.82);
}

.footer-column a:hover {
  color: var(--blue-light);
}

.footer-contact {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin-top: 48px;
  padding: 1px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
  font-style: normal;
}

.footer-contact > div,
.footer-contact > a {
  min-height: 112px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: 20px;
  background: #071522;
}

.footer-contact__call {
  transition: background-color 160ms ease, color 160ms ease;
}

.footer-contact__call:hover,
.footer-contact__call:focus-visible {
  background: #0b2237;
}

.footer-contact__call:focus-visible {
  outline: 2px solid var(--blue-light);
  outline-offset: -4px;
}

.footer-contact span {
  margin-bottom: 8px;
  color: #6fb4ff;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.footer-contact a,
.footer-contact strong {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
  line-height: 1.5;
  word-break: break-word;
}

.footer-contact a:hover {
  color: var(--blue-light);
}

.footer-socials {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 42px;
  padding: 20px 22px;
  border: 1px solid rgba(111, 180, 255, 0.2);
  background: #071522;
}

.footer-socials__label {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-socials__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-socials__links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 700;
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.footer-socials__links a:hover {
  transform: translateY(-2px);
  border-color: var(--blue-light);
  background: rgba(47, 143, 255, 0.12);
}

.footer-socials__links a:focus-visible {
  outline: 2px solid var(--blue-light);
  outline-offset: 3px;
}

.footer-socials__links span[aria-hidden="true"] {
  color: var(--blue-light);
}

.about-contact-actions,
.quote-success__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
}

.about-contact-actions .text-link {
  margin: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 48px;
  padding-top: 26px;
  color: #82909d;
  border-top: 1px solid var(--line-dark);
  font-size: 0.78rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.82);
  transition: color 180ms ease;
}

.footer-bottom a:hover {
  color: var(--blue-light);
}

.privacy-hero {
  min-height: 470px;
}

.privacy-hero .page-hero__content {
  padding-bottom: 70px;
}

.privacy-updated {
  margin-top: 24px;
  color: var(--muted-dark);
  font-size: 0.82rem;
  font-weight: 650;
}

.privacy-content {
  max-width: 900px;
}

.privacy-content section {
  padding: 34px 0;
  border-bottom: 1px solid var(--line-light);
}

.privacy-content section:first-child {
  padding-top: 0;
}

.privacy-content section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.privacy-content h2 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
}

.privacy-content p {
  color: #53616e;
  font-size: 1rem;
  line-height: 1.75;
}

.privacy-content p + p {
  margin-top: 14px;
}

.privacy-content a {
  color: #096dce;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.quote-consent a,
.fast-privacy a,
.policy-copy a {
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Purposeful motion */
.js .reveal,
.js .motion-item {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 300ms ease, transform var(--motion-reveal) var(--ease-out);
  transition-delay: var(--motion-delay, 0ms);
}

.js .reveal.reveal-from-left {
  transform: translateX(-12px);
}

.js .reveal.reveal-from-right {
  transform: translateX(12px);
}

.js .reveal.is-visible,
.js .motion-item.is-visible {
  opacity: 1;
  transform: none;
}

.js .fast-quote-header__inner {
  animation: interfaceEnter 300ms var(--ease-out) both;
}

@keyframes interfaceEnter {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
}

@media (max-width: 980px) {
  html.menu-open,
  body.menu-open {
    overflow: hidden;
    overscroll-behavior: none;
  }

  body.menu-open .site-header {
    transform: none;
  }

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

  .route-strip a:nth-child(2) {
    border-right: 1px solid var(--line-dark);
  }

  .fast-quote-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .fast-quote-copy {
    padding-bottom: 0;
  }

  .fast-quote-copy h1 {
    max-width: 850px;
  }

  .site-nav {
    display: flex;
    position: fixed;
    inset: 0;
    z-index: 20;
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    height: 100dvh;
    padding: calc(112px + env(safe-area-inset-top)) 28px calc(36px + env(safe-area-inset-bottom));
    overflow-y: auto;
    overscroll-behavior: contain;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    background: #05121f;
    transition: opacity 180ms ease, transform 220ms var(--ease-out), visibility 0s linear 220ms;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition-delay: 0s;
  }

  .site-nav > a:not(.nav-cta) {
    font-size: 1.45rem;
  }

  .site-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    min-height: 52px;
    margin-top: 12px;
    padding-inline: 22px;
  }

  .menu-toggle {
    position: relative;
    z-index: 21;
    display: grid;
    transition: color 160ms ease, border-color 160ms ease, background-color 160ms ease;
  }

  .menu-toggle svg {
    transition: transform 180ms var(--ease-out);
  }

  .menu-toggle.is-open {
    color: var(--white);
    border-color: rgba(139, 195, 255, 0.55);
    background: rgba(45, 140, 255, 0.16);
  }

  .menu-toggle.is-open svg {
    transform: rotate(90deg);
  }

  .brand {
    position: relative;
    z-index: 21;
  }

  body.menu-open .mobile-book-bar {
    opacity: 0;
    pointer-events: none;
    transform: translateY(100%);
  }

  body.menu-open .mobile-total {
    opacity: 0;
    pointer-events: none;
    transform: translateY(100%);
  }

  .section-heading,
  .content-grid,
  .quote-layout,
  .faq-layout,
  .service-area-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .editorial-heading,
  .benefits-header,
  .benefits-header > div {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .benefits-header .chapter-label {
    margin-bottom: 0;
  }

  .factor-rail .process-step,
  .factor-rail .process-step + .process-step {
    grid-template-columns: 0.55fr 1fr 1.3fr;
  }

  .content-intro,
  .quote-aside,
  .faq-intro {
    position: static;
  }

  .split-feature {
    grid-template-columns: 1fr;
  }

  .feature-band,
  .feature-band--reverse {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .feature-band--reverse .feature-band__media,
  .split-feature--reverse .split-feature__media {
    order: 0;
  }

  .feature-band__media {
    min-height: 480px;
  }

  .feature-band__content {
    padding: 80px 6vw;
  }

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

  .process-grid--four .process-step:nth-child(2) {
    border-right: 0;
  }

  .process-grid--four .process-step:nth-child(3) {
    padding-left: 0;
  }

  .complete-callout {
    grid-template-columns: 1fr 1fr;
  }

  .detail-package-grid {
    grid-template-columns: 1fr;
  }

  .detail-package-card {
    min-height: 0;
  }

  .split-feature__media {
    min-height: 440px;
  }

  .split-feature__copy {
    padding: 80px 6vw;
  }

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

  .booking-shell {
    grid-template-columns: minmax(0, 1fr) 310px;
  }

  .booking-main {
    padding-inline: 28px;
  }

  .booking-summary {
    padding-inline: 24px;
  }

  .booking-progress__labels {
    overflow-x: auto;
    grid-template-columns: repeat(8, 70px);
    padding-bottom: 6px;
  }
}

@media (max-width: 700px) {
  .js .reveal.reveal-from-left,
  .js .reveal.reveal-from-right {
    transform: translateY(8px);
  }

  .fast-quote-header__inner {
    min-height: 70px;
  }

  .fast-quote-header__service {
    display: none;
  }

  .fast-quote-main,
  .fast-quote-layout {
    min-height: calc(100vh - 70px);
  }

  .fast-quote-backdrop::after {
    background: linear-gradient(180deg, rgba(2, 13, 24, 0.72), rgba(2, 13, 24, 0.98) 46%);
  }

  .fast-quote-layout {
    width: 100%;
    gap: 25px;
    padding: 42px 15px 28px;
  }

  .fast-quote-copy {
    padding: 0;
  }

  .fast-quote-copy h1 {
    font-size: clamp(2.85rem, 14vw, 4rem);
  }

  .fast-quote-copy > p:not(.eyebrow) {
    margin-top: 21px;
    font-size: 1rem;
  }

  .fast-trust-list {
    margin-top: 25px;
    font-size: 0.9rem;
  }

  .fast-quote-media-note {
    margin-top: 22px;
  }

  .fast-quote-card {
    padding: 27px 19px;
    border-radius: 6px;
  }

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

  .fast-location__options {
    grid-template-columns: 1fr;
  }

  .fast-location-option {
    min-height: 0;
  }

  .fast-quote-shell {
    width: calc(100% - 30px);
    gap: 20px;
    padding: 38px 0 28px;
  }

  .fast-quote-intro h1 {
    font-size: clamp(2.45rem, 12vw, 3.35rem);
  }

  .fast-quote-intro > p:not(.eyebrow) {
    max-width: 340px;
    margin-inline: auto;
  }

  .fast-quote-trust {
    gap: 7px;
  }

  .fast-quote-trust span {
    padding: 6px 9px;
    font-size: 0.68rem;
  }

  .fast-quote-card--centered {
    padding: 25px 18px 24px;
  }

  .fast-other-services {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 15px;
    text-align: center;
  }

  .fast-other-services__links {
    justify-content: center;
  }

  .fast-step-grid,
  .fast-review {
    grid-template-columns: 1fr;
  }

  .fast-zip-simple {
    width: 100%;
  }

  .fast-step-actions {
    grid-template-columns: 0.72fr 1.28fr;
  }

  .fast-field--full,
  .fast-estimate,
  .fast-submit,
  .fast-privacy {
    grid-column: auto;
  }

  .fast-estimate {
    grid-template-columns: 1fr;
  }

  .fast-estimate > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
  }

  .fast-estimate small {
    grid-column: auto;
  }

  .hero-media-note {
    right: 15px;
    bottom: 14px;
    max-width: 215px;
    text-align: right;
  }

  .mobile-book-bar {
    min-height: 68px;
    display: flex;
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 40;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 15px;
    color: var(--white);
    border-top: 1px solid rgba(139, 195, 255, 0.25);
    background: rgba(2, 13, 24, 0.96);
    box-shadow: 0 -12px 28px rgba(2, 13, 24, 0.2);
    backdrop-filter: blur(10px);
    transition: opacity 180ms ease, transform 220ms var(--ease-out);
  }

  .mobile-book-bar span {
    min-width: 0;
    max-width: none;
    flex: 1;
    color: var(--muted-dark);
    font-size: 0.7rem;
    line-height: 1.35;
  }

  .mobile-book-bar a {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    padding: 0 14px;
    border-radius: 3px;
    background: var(--blue);
    font-size: 0.82rem;
    font-weight: 750;
  }

  .site-footer {
    padding-bottom: 96px;
  }
  .container {
    width: min(var(--container), calc(100% - 30px));
  }

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

  .brand-logo--full {
    display: none;
  }

  .brand-logo--mark {
    display: block;
    width: 50px;
  }

  .site-footer .brand-logo--full {
    display: block;
    width: 220px;
  }

  .site-footer .brand-logo--mark {
    display: none;
  }

  .home-hero {
    min-height: 730px;
  }

  .home-hero__media::after {
    background: linear-gradient(180deg, rgba(2, 13, 24, 0.47), rgba(2, 13, 24, 0.98) 70%);
  }

  .home-hero__media img {
    object-position: 67% center;
  }

  .home-hero__content {
    padding: 138px 0 58px;
  }

  h1 {
    font-size: clamp(3.05rem, 15vw, 4.8rem);
  }

  .actions {
    flex-direction: column;
  }

  .actions .button {
    width: 100%;
  }

  .route-strip__inner {
    grid-template-columns: 1fr;
  }

  .route-strip a {
    min-height: 88px;
    padding: 18px 4px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
    border-left: 0;
  }

  .section {
    padding: 82px 0;
  }

  .section-heading {
    gap: 25px;
    margin-bottom: 38px;
  }

  .service-preview,
  .service-modes,
  .benefit-grid,
  .gallery-grid,
  .future-grid,
  .process-grid,
  .process-grid--four,
  .image-service-grid,
  .expectation-grid {
    grid-template-columns: 1fr;
  }

  .home-future__intro {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 18px;
  }

  .editorial-heading {
    gap: 24px;
    margin-bottom: 42px;
  }

  .image-service-grid--staggered .image-service-card:nth-child(2) {
    margin-top: 0;
  }

  .process-intro {
    margin-bottom: 46px;
  }

  .timeline-grid::before {
    top: 0;
    bottom: 0;
    left: 4px;
    width: 1px;
    height: auto;
    background: linear-gradient(var(--sand), rgba(214, 173, 103, 0.1));
  }

  .timeline-grid .process-step,
  .timeline-grid .process-step + .process-step {
    min-height: 0;
    padding: 0 0 46px 27px;
    border-bottom: 0;
  }

  .timeline-grid .process-step span {
    margin-left: -27px;
    padding-left: 0;
  }

  .timeline-grid .process-step h3 {
    margin: 34px 0 12px;
  }

  .location-section .service-modes {
    grid-template-columns: 1fr;
  }

  .factor-rail .process-step,
  .factor-rail .process-step + .process-step {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 28px 0;
  }

  .factor-rail .process-step h3 {
    margin-top: 15px;
  }

  .benefits-header,
  .benefits-header > div {
    gap: 26px;
  }

  .benefit-grid--offset {
    padding-bottom: 0;
  }

  .benefit-grid--offset .benefit-card:nth-child(2),
  .benefit-grid--offset .benefit-card:nth-child(3) {
    transform: none;
  }

  .image-service-card__body,
  .expectation-card {
    padding: 28px;
  }

  .expectation-card {
    min-height: 0;
  }

  .expectation-card h3 {
    margin-top: 44px;
  }

  .complete-callout {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .complete-callout .button {
    width: 100%;
  }

  .feature-band__media {
    min-height: 350px;
  }

  .feature-band__content {
    padding: 64px 22px;
  }

  .area-list > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .service-card {
    min-height: 340px;
    padding: 30px;
  }

  .split-feature {
    min-height: 0;
  }

  .split-feature__media {
    min-height: 350px;
  }

  .split-feature__copy {
    padding: 65px 22px;
  }

  .mode-card {
    min-height: 285px;
    padding: 30px;
  }

  .cta-band {
    padding: 24px 0;
  }

  .cta-band__inner {
    align-items: stretch;
    flex-direction: column;
    gap: 30px;
    padding: 36px 24px;
  }

  .coverage-exclusions {
    align-items: flex-start;
    flex-direction: column;
  }

  .coverage-map {
    padding: 12px;
  }

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

  .page-hero {
    min-height: 510px;
  }

  .page-hero__content {
    padding: 144px 0 66px;
  }

  .page-hero h1 {
    font-size: clamp(3rem, 14vw, 4.5rem);
  }

  .detail-item {
    grid-template-columns: 42px 1fr;
    gap: 12px;
  }

  .process-step,
  .process-step + .process-step {
    min-height: 0;
    padding: 30px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .process-step h3 {
    margin-top: 42px;
  }

  .benefit-card {
    min-height: 230px;
    padding: 28px;
  }

  .gallery-item:first-child {
    grid-column: auto;
  }

  .gallery-item:first-child img,
  .gallery-item img {
    aspect-ratio: 4 / 3;
  }

  .future-item {
    min-height: 210px;
  }

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

  .coverage-fee {
    grid-template-columns: 1fr;
  }

  .quote-form {
    padding: 26px 20px;
  }

  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .form-footer .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-socials {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-socials__links,
  .footer-socials__links a {
    width: 100%;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .booking-page {
    padding-bottom: 78px;
  }

  .booking-shell {
    display: block;
    min-height: auto;
  }

  .booking-main {
    padding: 30px 15px 56px;
  }

  .booking-progress {
    margin-bottom: 32px;
  }

  .booking-progress__top {
    font-size: 0.7rem;
  }

  .booking-progress__labels {
    display: none;
  }

  .booking-step__header {
    margin-bottom: 24px;
  }

  .booking-step__header h1 {
    font-size: clamp(2.2rem, 12vw, 3.35rem);
  }

  .choice-grid,
  .choice-grid--three,
  .booking-form-grid {
    grid-template-columns: 1fr;
  }

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

  .service-tab {
    min-height: 68px;
  }

  .service-group__heading {
    display: block;
  }

  .service-group__heading p {
    margin-top: 3px;
  }

  .service-choice__meta {
    justify-content: space-between;
  }

  .service-choice--guide .service-choice__meta {
    justify-content: flex-start;
  }

  .booking-package-guide {
    margin-inline: -4px;
    padding: 18px 14px;
  }

  .booking-package-guide__header,
  .booking-package-guide__grid {
    grid-template-columns: 1fr;
  }

  .booking-package-guide__header {
    gap: 10px;
  }

  .booking-package-card {
    padding: 20px;
  }

  .choice {
    min-height: 138px;
    padding: 19px;
  }

  .choice.service-choice {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 13px;
    padding: 18px;
  }

  .choice.upgrade-choice {
    min-height: 96px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 6px 14px;
    padding: 16px;
  }

  .upgrade-choice .choice__top > span:first-child {
    grid-column: 1;
    grid-row: 1;
  }

  .upgrade-choice .choice__price {
    grid-column: 1;
    grid-row: 2;
  }

  .upgrade-choice .choice__check {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .booking-field--full {
    grid-column: auto;
  }

  .booking-actions {
    position: sticky;
    bottom: 78px;
    z-index: 5;
    margin-inline: -15px;
    padding: 15px;
    border-top: 1px solid #cad5de;
    background: rgba(238, 243, 247, 0.96);
    backdrop-filter: blur(10px);
  }

  .booking-actions .button {
    min-width: 0;
    min-height: 54px;
    flex: 1;
  }

  .booking-summary {
    display: none;
  }

  .mobile-total {
    min-height: 78px;
    display: flex;
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 20;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    color: var(--white);
    border-top: 1px solid rgba(139, 195, 255, 0.3);
    background: var(--navy);
    box-shadow: 0 -12px 28px rgba(3, 14, 25, 0.2);
    transition: opacity 180ms ease, transform 220ms var(--ease-out);
  }

  .mobile-total span {
    display: block;
    color: var(--muted-dark);
    font-size: 0.68rem;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .mobile-total strong {
    display: block;
    font-size: 1.2rem;
  }

  .mobile-total small {
    color: var(--blue-light);
  }

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

  .calendar__day {
    min-height: 48px;
  }

  .secure-panel,
  .confirmation {
    padding: 22px 18px;
  }

  .secure-panel__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .confirmation-details {
    grid-template-columns: 1fr;
  }

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

  .detail-package-grid {
    grid-template-columns: 1fr;
  }

  .detail-package-card {
    min-height: 0;
    padding: 25px;
  }

  .coating-price-grid {
    grid-template-columns: 1fr;
  }

  .coating-price-card {
    min-height: 0;
  }

  .coating-price-card h3 {
    margin-top: 28px;
  }

  .service-menu-group > header,
  .service-menu-row {
    padding-right: 20px;
    padding-left: 20px;
  }

  .vehicle-price-row--head {
    display: none;
  }

  .vehicle-price-row {
    grid-template-columns: repeat(3, 1fr);
    padding: 18px 0 0;
  }

  .vehicle-price-row > * {
    padding: 12px 8px 16px;
    text-align: center;
  }

  .vehicle-price-row > strong:first-child {
    grid-column: 1 / -1;
    padding: 0 18px 14px;
    border-left: 0;
    text-align: left;
  }

  .vehicle-price-row:not(.vehicle-price-row--head) span::before {
    display: block;
    margin-bottom: 4px;
    color: var(--muted-light);
    font-size: 0.61rem;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .vehicle-price-row:not(.vehicle-price-row--head) span:nth-child(2)::before {
    content: "Express";
  }

  .vehicle-price-row:not(.vehicle-price-row--head) span:nth-child(3)::before {
    content: "Full";
  }

  .vehicle-price-row:not(.vehicle-price-row--head) span:nth-child(4)::before {
    content: "Signature";
  }
}

@media (max-width: 430px) {
  .service-menu-row {
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: start;
  }

  .service-menu-row__action {
    width: 100%;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
  }

  .service-menu-row__action a {
    min-height: 38px;
  }

  .service-hero--detailing h1 {
    font-size: clamp(2.75rem, 13vw, 3.45rem);
  }
}

@media (hover: none), (pointer: coarse) {
  .button:hover,
  .detailing-hero__visual:hover img,
  .image-service-card:hover .image-service-card__media img,
  .gallery-item:hover img {
    transform: none;
  }
}

@media (max-width: 1100px) {
  .quote-configurator {
    grid-template-columns: minmax(290px, 0.62fr) minmax(0, 1.38fr);
  }

  .quote-configurator__rail {
    padding-inline: 30px;
  }

  .quote-configurator__rail h1 {
    font-size: clamp(2.6rem, 4.6vw, 4rem);
  }

  .quote-configurator__workspace {
    padding-inline: 30px;
  }

  .quote-progress__item small {
    display: none;
  }
}

@media (max-width: 820px) {
  .quote-configurator {
    display: block;
    padding-top: 76px;
  }

  .quote-configurator__rail {
    position: relative;
    min-height: 0;
    padding: 40px 24px 34px;
  }

  .quote-configurator__rail h1 {
    max-width: 620px;
    font-size: clamp(2.6rem, 10vw, 4.5rem);
  }

  .quote-rail__intro {
    margin-top: 18px;
  }

  .quote-rail__trust {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 24px;
  }

  .quote-rail__trust span {
    align-items: flex-start;
    font-size: 0.76rem;
  }

  .quote-rail__recap {
    margin-top: 24px;
  }

  .quote-rail__detail-link {
    margin-top: 26px;
    padding-top: 20px;
  }

  .quote-configurator__workspace {
    padding: 40px 24px 64px;
  }

  .quote-progress {
    margin-bottom: 45px;
  }
}

@media (max-width: 620px) {
  .page-hero__actions,
  .page-hero__actions--split {
    align-items: stretch;
    flex-direction: column;
    gap: 11px;
  }

  .page-hero__actions .button {
    width: 100%;
  }

  .page-hero__actions > span {
    text-align: center;
  }

  .quote-configurator {
    padding-top: 70px;
  }

  .quote-configurator__rail {
    padding: 32px 18px 28px;
  }

  .quote-rail__eyebrow {
    margin-bottom: 15px;
  }

  .quote-configurator__rail h1 {
    font-size: clamp(2.45rem, 13vw, 3.7rem);
  }

  .quote-rail__intro {
    font-size: 0.94rem;
  }

  .quote-rail__trust {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .quote-rail__trust span {
    font-size: 0.78rem;
  }

  .quote-rail__recap {
    padding: 15px 17px;
  }

  .quote-configurator__workspace {
    padding: 30px 15px 52px;
  }

  .quote-progress {
    grid-template-columns: auto 1fr auto 1fr auto;
    margin-bottom: 38px;
  }

  .quote-progress__item {
    gap: 0;
  }

  .quote-progress__item > div {
    display: none;
  }

  .quote-progress__line {
    margin-inline: 8px;
  }

  .quote-screen__heading {
    margin-bottom: 30px;
  }

  .quote-screen__heading h2 {
    font-size: clamp(2.35rem, 12vw, 3.35rem);
  }

  .quote-choice-grid,
  .quote-choice-grid--three,
  .quote-contact-grid {
    grid-template-columns: 1fr;
  }

  .quote-choice {
    min-height: 92px;
  }

  .quote-choice-grid--services .quote-choice--featured {
    min-height: 118px;
    padding: 20px;
  }

  .quote-choice--compact {
    min-height: 84px;
  }

  .quote-field--full {
    grid-column: auto;
  }

  .quote-screen__actions {
    position: sticky;
    bottom: 0;
    z-index: 4;
    margin: 30px -15px -20px;
    padding: 14px 15px 20px;
    border-top-color: #cbd6de;
    background: rgba(238, 243, 247, 0.96);
    backdrop-filter: blur(12px);
  }

  .quote-screen__actions .button {
    min-width: 0;
    padding-inline: 18px;
  }

  .quote-back-link {
    padding-inline: 6px;
  }

  .quote-review > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .quote-review strong {
    max-width: 100%;
    text-align: left;
  }

  .quote-success {
    padding: 32px 20px;
  }
}

@media (max-width: 1100px) {
  .footer-contact {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .footer-contact,
  .time-grid {
    grid-template-columns: 1fr;
  }

  .footer-contact > div {
    min-height: 90px;
  }

  .about-contact-actions,
  .quote-success__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .about-contact-actions .button,
  .about-contact-actions .text-link,
  .quote-success__actions .button {
    width: 100%;
    justify-content: center;
  }
}

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

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

  .js .reveal,
  .js .motion-item {
    opacity: 1;
    transform: none;
  }
}
