/* EnriLeads auto-body sales system: bright, tactile, and outcome-first. */

:root {
  --sales-ink: #16181a;
  --sales-red: #b93320;
  --sales-red-dark: #842617;
  --sales-white: #ffffff;
  --sales-mist: #eef2ef;
  --sales-paper: #f7f9f6;
  --sales-signal: #b93320;
  --sales-gold: #d8ad55;
  --sales-line: rgba(22, 24, 26, .16);
  --sales-muted: #5d6361;
}

body.auto-site,
body.funnel-page {
  background: var(--sales-paper);
  color: var(--sales-ink);
  --site-moss: var(--sales-red);
}

body.auto-site::after,
body.funnel-page::after {
  opacity: .035;
  mix-blend-mode: multiply;
  background-image: url('/brand/pattern-grain.svg');
}

.auto-site .site-nav {
  background: rgba(255, 255, 255, .92);
  border-bottom-color: rgba(22, 24, 26, .1);
}

.auto-site .site-nav-links a,
.auto-site .site-mobile-menu a {
  color: var(--sales-ink);
}

.auto-site .site-nav-links a:hover,
.auto-site .site-nav-links a[aria-current='page'] {
  color: var(--sales-red);
}

.auto-site .site-nav-cta,
.auto-site .site-button,
.funnel-page .site-button {
  border: 0;
  border-radius: 4px;
  background: var(--sales-ink);
  color: #fff !important;
  box-shadow: none;
}

.auto-site .site-nav-cta:hover,
.auto-site .site-button:hover,
.funnel-page .site-button:hover {
  background: var(--sales-red);
}

.auto-site .site-button--red,
.funnel-page .site-button--red {
  background: var(--sales-red);
}

.auto-site .site-button--red:hover,
.funnel-page .site-button--red:hover {
  background: var(--sales-red-dark);
}

.auto-site .site-button--quiet {
  border: 1px solid rgba(22, 24, 26, .22);
  background: rgba(255, 255, 255, .62);
  color: var(--sales-ink) !important;
}

.auto-site .site-button--quiet:hover {
  border-color: var(--sales-ink);
  background: #fff;
}

.auto-site .site-menu-button {
  width: 46px;
  height: 46px;
  padding: 0;
  flex-direction: column;
  gap: 4px;
  border-color: var(--sales-line);
  border-radius: 4px;
  background: #fff;
  font-size: 0;
}

.auto-site .site-menu-button span {
  width: 19px;
  height: 2px;
  background: var(--sales-ink);
  transition: transform .2s ease, opacity .2s ease;
}

.auto-site .site-menu-button[aria-expanded='true'] span:first-child {
  transform: translateY(6px) rotate(45deg);
}

.auto-site .site-menu-button[aria-expanded='true'] span:nth-child(2) {
  opacity: 0;
}

.auto-site .site-menu-button[aria-expanded='true'] span:last-child {
  transform: translateY(-6px) rotate(-45deg);
}

.auto-shell {
  width: min(100% - 48px, 1240px);
  margin-inline: auto;
}

.auto-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--sales-red-dark);
  font: 600 12px/1.35 var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .13em;
}

.auto-kicker::before {
  width: 34px;
  height: 3px;
  background: var(--sales-red);
  content: '';
}

.auto-kicker--light {
  color: rgba(255, 255, 255, .8);
}

.auto-kicker--light::before {
  background: var(--sales-gold);
}

.auto-display {
  margin: 0;
  font-family: var(--font-disp);
  font-weight: 400;
  line-height: .93;
  text-transform: uppercase;
  letter-spacing: 0;
}

.auto-display .accent {
  color: var(--sales-red);
}

.auto-hero {
  position: relative;
  min-height: min(900px, calc(100svh - 112px));
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 0 48px;
  isolation: isolate;
  background: var(--sales-paper);
}

.auto-hero__media,
.page-hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.auto-hero__media img,
.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.auto-home .auto-hero__media img {
  transform: scale(1.025);
  animation: autoHeroDrift 18s ease-in-out infinite alternate;
}

.auto-hero__wash,
.page-hero__wash {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(247, 249, 246, .76);
}

.auto-hero::before {
  position: absolute;
  top: 78px;
  right: 0;
  z-index: 0;
  width: min(46vw, 760px);
  height: 18px;
  background: url('/brand/pattern-kraft-tape.svg') repeat-x center / auto 18px;
  opacity: .85;
  pointer-events: none;
  content: '';
}

.auto-hero::after {
  position: absolute;
  right: clamp(22px, 5vw, 84px);
  bottom: 42px;
  z-index: 0;
  width: clamp(88px, 10vw, 156px);
  height: clamp(88px, 10vw, 156px);
  border-right: 2px solid rgba(185, 51, 32, .48);
  border-bottom: 2px solid rgba(185, 51, 32, .48);
  pointer-events: none;
  content: '';
}

.auto-hero > .auto-shell {
  position: relative;
  z-index: 1;
}

.auto-hero__content {
  width: min(900px, 75%);
}

.auto-hero h1 {
  max-width: 900px;
  font-size: clamp(64px, 7.6vw, 118px);
}

.auto-hero__lede {
  max-width: 620px;
  margin-top: 28px;
  color: #3e4542;
  font-size: clamp(19px, 1.75vw, 24px);
  line-height: 1.5;
}

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

.auto-actions .site-button {
  min-height: 54px;
  padding-inline: 24px;
}

.auto-trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 34px;
  color: #4d5652;
  font-size: 14px;
  font-weight: 700;
}

.auto-trust-line span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.auto-trust-line span::before {
  width: 8px;
  height: 8px;
  background: var(--sales-signal);
  box-shadow: 0 0 0 4px rgba(185, 51, 32, .1);
  transform: rotate(45deg);
  content: '';
}

.proof-pulse {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: #fff;
  border-top: 1px solid rgba(22, 24, 26, .12);
  border-bottom: 1px solid rgba(22, 24, 26, .12);
}

.proof-pulse::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: max(8px, calc((100% - 1240px) / 2));
  background: var(--sales-red);
  content: '';
}

.proof-pulse__inner {
  position: relative;
  z-index: 1;
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 20px 20px 20px 24px;
}

.proof-pulse p {
  margin: 0;
  color: var(--sales-muted);
  font-size: 16px;
}

.proof-pulse p strong {
  color: var(--sales-ink);
}

.proof-pulse a {
  flex: 0 0 auto;
  color: var(--sales-red-dark);
  font-weight: 800;
  text-decoration: none;
}

.proof-pulse a:hover {
  color: var(--sales-red);
}

.money-strip {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: var(--sales-red);
  color: #fff;
}

.money-strip::after {
  position: absolute;
  inset: 0;
  background: url('/brand/pattern-masking-stripes.svg') repeat;
  opacity: .055;
  content: '';
}

.money-strip__inner {
  position: relative;
  z-index: 1;
  min-height: 132px;
  display: grid;
  grid-template-columns: .55fr 1.45fr .6fr;
  gap: 28px;
  align-items: center;
}

.money-strip__client strong,
.money-strip__client span,
.money-strip__note {
  display: block;
}

.money-strip__client span,
.money-strip__note {
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
}

.money-strip__math {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 18px;
  text-align: center;
}

.money-strip__math strong {
  font-family: var(--font-disp);
  font-size: clamp(42px, 4.4vw, 68px);
  font-weight: 400;
  line-height: .9;
}

.money-strip__math span:not(.money-strip__arrow) {
  font-size: 14px;
  font-weight: 700;
}

.money-strip__arrow {
  font-size: 30px;
}

.auto-section {
  position: relative;
  padding: clamp(88px, 10vw, 154px) 0;
}

.auto-section--white {
  background: #fff;
}

.auto-section--mist {
  background: var(--sales-mist);
}

.auto-section--ink {
  background: var(--sales-ink);
  color: #fff;
}

.auto-heading-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, .6fr);
  gap: 72px;
  align-items: end;
}

.auto-heading-grid h2,
.auto-section__title {
  max-width: 880px;
  font-size: clamp(52px, 6.4vw, 96px);
}

.auto-heading-grid p,
.auto-section__lede {
  color: var(--sales-muted);
  font-size: 19px;
  line-height: 1.6;
}

.auto-section--ink .auto-heading-grid p,
.auto-section--ink .auto-section__lede {
  color: rgba(255, 255, 255, .7);
}

.leak-list {
  margin-top: 62px;
  border-top: 1px solid var(--sales-line);
}

.problem-field {
  overflow: hidden;
}

.problem-field::after {
  position: absolute;
  top: 90px;
  right: -56px;
  width: 190px;
  height: 32px;
  background: url('/brand/pattern-masking-stripes.svg') repeat-x center / auto 32px;
  opacity: .36;
  transform: rotate(7deg);
  content: '';
}

.leak-row {
  position: relative;
  display: grid;
  grid-template-columns: 70px minmax(230px, .8fr) minmax(320px, 1.2fr);
  gap: 36px;
  align-items: start;
  padding: 30px 0 32px;
  border-bottom: 1px solid var(--sales-line);
  transition: padding .28s ease, background .28s ease;
}

.leak-row::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -18px;
  width: 4px;
  background: var(--sales-red);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .28s ease;
  content: '';
}

.leak-row:hover {
  padding-inline: 18px;
  background: rgba(185, 51, 32, .035);
}

.leak-row:hover::after {
  transform: scaleY(1);
}

.leak-row__number {
  color: var(--sales-red);
  font: 400 42px/1 var(--font-disp);
}

.leak-row h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.18;
}

.leak-row p {
  margin: 0;
  color: var(--sales-muted);
  font-size: 18px;
  line-height: 1.55;
}

.leak-row p strong {
  color: var(--sales-ink);
}

.repair-path {
  position: relative;
  overflow: hidden;
  background: var(--sales-ink);
  color: #fff;
}

.repair-path__media {
  position: absolute;
  inset: 0;
}

.repair-path__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .2;
}

.repair-path__wash {
  position: absolute;
  inset: 0;
  background: rgba(22, 24, 26, .72);
}

.repair-path__content {
  position: relative;
  z-index: 1;
}

.repair-path__content h2 {
  max-width: 960px;
  font-size: clamp(56px, 7vw, 106px);
}

.repair-path__intro {
  max-width: 670px;
  margin-top: 24px;
  color: rgba(255, 255, 255, .74);
  font-size: 20px;
}

.repair-path__steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: 62px 0 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, .22);
  border-bottom: 1px solid rgba(255, 255, 255, .22);
}

.repair-path__steps li {
  position: relative;
  min-height: 190px;
  padding: 28px 28px 32px 0;
  list-style: none;
}

.repair-path__steps li + li {
  padding-left: 28px;
}

.repair-path__steps li + li::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  background: rgba(255, 255, 255, .22);
  content: '';
}

.repair-path__steps small {
  display: block;
  margin-bottom: 42px;
  color: var(--sales-gold);
  font: 600 11px/1.3 var(--font-mono);
  letter-spacing: .12em;
}

.repair-path__steps strong {
  display: block;
  max-width: 170px;
  font-size: 21px;
  line-height: 1.2;
}

/* Scroll-driven connected system */
.repair-slider {
  position: relative;
  overflow: hidden;
  background: var(--sales-ink);
  color: #fff;
  isolation: isolate;
}

.repair-slider__media {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.repair-slider__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .24;
  transform: scale(1.06);
}

.repair-slider__media span {
  position: absolute;
  inset: 0;
  background: rgba(22, 24, 26, .78);
}

.repair-slider__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: end;
}

.repair-slider__heading h2 {
  max-width: 940px;
  font-size: clamp(52px, 6.1vw, 92px);
}

.repair-slider__heading > p {
  margin: 0 0 4px;
  color: rgba(255, 255, 255, .7);
  font-size: 18px;
  line-height: 1.55;
}

.main-solutions-viewport {
  width: 100%;
  margin-top: 46px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}

.main-solutions-viewport::-webkit-scrollbar {
  display: none;
}

.main-solutions-viewport:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 7px;
}

.main-solutions-track {
  display: flex;
  width: max-content;
  gap: 18px;
  padding: 2px 2px 8px;
}

.fix-card {
  position: relative;
  flex: 0 0 400px;
  min-height: 286px;
  overflow: hidden;
  padding: 34px;
  background: #fff;
  color: var(--sales-ink);
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 3px;
  box-shadow: 0 22px 52px rgba(0, 0, 0, .2);
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.fix-card::after {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 9px;
  background: url('/brand/pattern-masking-stripes.svg') repeat-x center / auto 20px;
  opacity: .5;
  content: '';
}

.fix-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 54px;
  color: var(--sales-muted);
  font: 700 11px/1.3 var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .1em;
}

.fix-tag b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 26px;
  background: var(--sales-red);
  color: #fff;
  letter-spacing: 0;
}

.fix-card h3 {
  margin: 0 0 14px;
  font-size: 28px;
  line-height: 1.12;
}

.fix-card > p:last-child {
  margin: 0;
  color: var(--sales-muted);
  font-size: 16px;
  line-height: 1.58;
}

.main-solutions-rail {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  color: rgba(255, 255, 255, .64);
  font: 700 10px/1.2 var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.main-solutions-rail-track {
  position: relative;
  flex: 1;
  height: 3px;
  background: rgba(255, 255, 255, .24);
}

.main-solutions-progress {
  position: absolute;
  inset: 0;
  background: #e34b35;
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

.main-solutions-ticks {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
}

.main-solutions-ticks i {
  width: 1px;
  height: 9px;
  margin-top: -3px;
  background: rgba(255, 255, 255, .52);
}

.main-solutions-rail-label,
.main-solutions-count {
  white-space: nowrap;
}

.main-solutions-count {
  min-width: 6.4ch;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.main-solutions-count b {
  color: #fff;
  font-weight: 700;
}

.main-solutions-cue {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, .5);
  font: 600 10px/1.3 var(--font-mono);
  text-align: right;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.main-solutions-cue-mobile,
.main-solutions-cue-manual {
  display: none;
}

.main-solutions.is-scroll-ready {
  padding-block: 0;
  overflow: clip;
}

.main-solutions.is-scroll-ready .main-solutions-shell {
  width: min(100% - 48px, 1240px);
  min-height: 720px;
  height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 96px;
  padding-bottom: 30px;
  overflow: hidden;
}

.main-solutions.is-scroll-ready .main-solutions-viewport {
  overflow: hidden;
  scroll-snap-type: none;
}

.main-solutions.is-scroll-ready .main-solutions-track {
  will-change: transform;
}

.main-solutions.is-scroll-ready .fix-card {
  opacity: .34;
  transform: scale(.965);
  transition: opacity .3s ease, transform .3s ease, border-color .3s ease, background .3s ease;
}

.main-solutions.is-scroll-ready .fix-card.is-active {
  opacity: 1;
  transform: scale(1);
  background: #fff7f4;
  border-color: rgba(227, 75, 53, .9);
}

.main-solutions.is-mobile-slider .fix-card.is-active {
  background: #fff7f4;
  border-color: rgba(227, 75, 53, .9);
}

.main-solutions.is-mobile-slider .main-solutions-cue-desktop,
.main-solutions.is-mobile-slider .main-solutions-cue-mobile {
  display: none;
}

.main-solutions.is-mobile-slider .main-solutions-cue-manual {
  display: inline;
}

@media (min-width: 1024px) {
  .main-solutions.is-mobile-slider .main-solutions-viewport {
    scroll-snap-type: none;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, .5) rgba(255, 255, 255, .14);
  }

  .main-solutions.is-mobile-slider .main-solutions-viewport::-webkit-scrollbar {
    display: block;
    height: 8px;
  }

  .main-solutions.is-mobile-slider .main-solutions-viewport::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, .14);
  }

  .main-solutions.is-mobile-slider .main-solutions-viewport::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, .5);
  }
}

.drive-story {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(330px, .88fr);
  gap: clamp(52px, 7vw, 110px);
  align-items: center;
}

.drive-story__visual {
  position: relative;
  margin: 0;
}

.drive-story__visual::after {
  position: absolute;
  z-index: -1;
  inset: 7% -3% -5% 8%;
  border: 2px solid rgba(185, 51, 32, .34);
  transform: rotate(2deg);
  content: '';
}

.drive-story__desktop {
  display: block;
  width: 100%;
  height: auto;
  clip-path: polygon(1.5% 3%, 98% 0, 100% 96%, 0 100%);
  filter: drop-shadow(0 28px 36px rgba(22, 24, 26, .16));
}

.drive-story__mobile {
  position: absolute;
  right: -3%;
  bottom: -8%;
  width: 25%;
  height: auto;
  border: 7px solid var(--sales-ink);
  border-radius: 8px;
  box-shadow: 0 18px 36px rgba(22, 24, 26, .25);
}

.drive-story__tape {
  position: absolute;
  top: -12px;
  left: 18%;
  width: 150px;
  height: 26px;
  background: url('/brand/pattern-kraft-tape.svg') repeat-x center / auto 26px;
  transform: rotate(-3deg);
}

.drive-story__copy h2 {
  font-size: clamp(54px, 5.8vw, 88px);
}

.drive-story__copy > p {
  margin-top: 24px;
  color: var(--sales-muted);
  font-size: 19px;
}

.drive-math {
  margin: 34px 0 12px;
  padding: 24px 0;
  border-top: 1px solid var(--sales-line);
  border-bottom: 1px solid var(--sales-line);
}

.drive-math__line {
  display: flex;
  align-items: center;
  gap: 18px;
}

.drive-math strong {
  font-family: var(--font-disp);
  font-size: clamp(52px, 5vw, 78px);
  font-weight: 400;
  line-height: .9;
}

.drive-math strong:last-child {
  color: var(--sales-red);
}

.drive-math span {
  color: var(--sales-muted);
  font-size: 14px;
}

.drive-disclaimer {
  font-size: 11px !important;
  color: #767c79 !important;
}

.drive-receipt {
  margin: 32px 0 12px;
  padding: 22px 0 22px 24px;
  border-top: 1px solid var(--sales-line);
  border-bottom: 1px solid var(--sales-line);
  border-left: 5px solid var(--sales-red);
}

.drive-receipt small {
  display: block;
  margin-bottom: 9px;
  color: var(--sales-red-dark);
  font: 700 10px/1.3 var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .1em;
}

.drive-receipt p {
  max-width: 520px;
  margin: 0;
  color: var(--sales-ink);
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.36;
}

.drive-receipt strong:last-child {
  color: var(--sales-red-dark);
}

.drive-testimonial {
  margin: 28px 0 12px;
  padding: 24px 0;
  border-top: 1px solid var(--sales-line);
  border-bottom: 1px solid var(--sales-line);
}

.drive-testimonial > p {
  margin: 0;
  color: var(--sales-ink);
  font-size: clamp(18px, 1.7vw, 23px);
  font-weight: 700;
  line-height: 1.48;
}

.drive-testimonial footer {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 14px;
  margin-top: 18px;
}

.drive-testimonial footer strong {
  color: var(--sales-red-dark);
  font-size: 14px;
}

.drive-testimonial footer span {
  color: #767c79;
  font: 600 10px/1.4 var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.text-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  color: var(--sales-red-dark);
  font-weight: 700;
  text-decoration: none;
}

.text-arrow:hover {
  color: var(--sales-red);
}

.offer-ribbon {
  overflow: hidden;
  background: var(--sales-red-dark);
  color: #fff;
}

.responsibility-break {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 0;
  background: var(--sales-ink);
  color: #fff;
  isolation: isolate;
}

.responsibility-break > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  transition: transform 1.2s cubic-bezier(.2,.75,.2,1);
}

.responsibility-break:hover > img {
  transform: scale(1.025);
}

.responsibility-break__wash {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(22, 24, 26, .72);
}

.responsibility-break::after {
  position: absolute;
  top: 72px;
  right: -28px;
  width: min(44vw, 620px);
  height: 18px;
  background: url('/brand/pattern-kraft-tape.svg') repeat-x center / auto 18px;
  transform: rotate(-2deg);
  content: '';
}

.responsibility-break__content {
  padding-block: clamp(92px, 11vw, 148px);
}

.responsibility-break h2 {
  max-width: 1040px;
  font-size: clamp(58px, 7.2vw, 108px);
}

.responsibility-break__content > p:not(.auto-kicker) {
  max-width: 720px;
  margin-top: 26px;
  color: rgba(255, 255, 255, .76);
  font-size: 20px;
  line-height: 1.55;
}

.auto-site .responsibility-break__quiet {
  border: 1px solid rgba(255, 255, 255, .65);
  background: rgba(22, 24, 26, .28);
  color: #fff !important;
}

.auto-site .responsibility-break__quiet:hover {
  border-color: #fff;
  background: #fff;
  color: var(--sales-ink) !important;
}

html.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .72s ease, transform .72s cubic-bezier(.2,.75,.2,1);
}

html.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes autoHeroDrift {
  from { transform: scale(1.025) translate3d(-.4%, 0, 0); }
  to { transform: scale(1.055) translate3d(.5%, -.4%, 0); }
}

.offer-ribbon__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.offer-ribbon h2 {
  font-size: clamp(58px, 6.8vw, 104px);
}

.offer-ribbon__points {
  border-top: 1px solid rgba(255, 255, 255, .28);
}

.offer-ribbon__points p {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  margin: 0;
  padding: 19px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .28);
  font-size: 18px;
}

.offer-ribbon__points b {
  color: #e7d399;
  font-family: var(--font-mono);
  font-size: 12px;
}

.shop-question {
  overflow: hidden;
  background: var(--sales-red);
  color: #fff;
}

.shop-question__grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(400px, 1.18fr);
  gap: 90px;
  align-items: start;
}

.shop-question h2 {
  font-size: clamp(58px, 6.8vw, 102px);
}

.shop-question--form-start h2 {
  font-size: clamp(52px, 5.2vw, 78px);
}

.shop-question__note {
  max-width: 480px;
  margin-top: 24px;
  color: rgba(255, 255, 255, .78);
  font-size: 18px;
}

.shop-question__answers {
  border-top: 1px solid rgba(255, 255, 255, .42);
}

.shop-question__answers a {
  min-height: 76px;
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 16px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, .42);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: padding .2s ease, background .2s ease;
}

.shop-question__answers a:hover {
  padding-inline: 12px;
  background: rgba(255, 255, 255, .09);
}

.shop-question__answers b {
  color: #ffd9d0;
  font: 600 11px/1 var(--font-mono);
}

.shop-question__answers i {
  font-size: 26px;
  font-style: normal;
}

.shop-question--form-start {
  background:
    linear-gradient(rgba(185, 51, 32, .94), rgba(185, 51, 32, .94)),
    url('/brand/pattern-grain.svg') repeat;
}

.shop-question__status {
  max-width: 480px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 38px;
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, .42);
  border-bottom: 1px solid rgba(255, 255, 255, .42);
  color: rgba(255, 255, 255, .82);
  font: 700 10px/1.3 var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.shop-question__status strong {
  color: #fff;
}

.shop-question__form {
  padding: 28px 32px 32px;
  border: 1px solid rgba(255, 255, 255, .68);
  border-radius: 4px;
  background: #fff;
  color: var(--sales-ink);
  box-shadow: 0 24px 70px rgba(77, 15, 8, .24);
}

.shop-question__form fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.shop-question__form legend {
  width: 100%;
  margin: 0 0 12px;
  padding: 0 0 15px;
  border-bottom: 1px solid var(--sales-line);
  color: var(--sales-muted);
  font: 700 11px/1.3 var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.shop-question__form label {
  position: relative;
  display: block;
  cursor: pointer;
}

.shop-question__form input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.shop-question__form label > span {
  min-height: 70px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 22px;
  gap: 14px;
  align-items: center;
  padding: 10px 12px;
  border-bottom: 1px solid var(--sales-line);
  transition: background .18s ease, padding .18s ease;
}

.shop-question__form label:hover > span,
.shop-question__form input:checked + span {
  padding-inline: 18px;
  background: #f8edeb;
}

.shop-question__form input:focus-visible + span {
  outline: 2px solid var(--sales-red);
  outline-offset: -2px;
}

.shop-question__form b {
  color: var(--sales-red-dark);
  font: 700 10px/1 var(--font-mono);
}

.shop-question__form strong {
  font-size: 17px;
  line-height: 1.25;
}

.shop-question__form i {
  position: relative;
  width: 19px;
  height: 19px;
  border: 2px solid #9da3a0;
  border-radius: 50%;
}

.shop-question__form input:checked + span i {
  border-color: var(--sales-red);
}

.shop-question__form input:checked + span i::after {
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--sales-red);
  content: '';
}

.auto-site .shop-question__continue {
  width: 100%;
  min-height: 56px;
  justify-content: space-between;
  margin-top: 24px;
  padding-inline: 20px;
  background: var(--sales-red);
}

.auto-site .shop-question__continue:hover {
  background: var(--sales-red-dark);
}

/* Interior sales pages */
.page-hero {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 150px 0 90px;
  isolation: isolate;
}

.page-hero__wash {
  background: rgba(247, 249, 246, .84);
}

.page-hero__content {
  max-width: 900px;
}

.page-hero h1 {
  font-size: clamp(64px, 7.4vw, 112px);
}

.page-hero p:not(.auto-kicker) {
  max-width: 680px;
  margin-top: 26px;
  color: #454c49;
  font-size: 21px;
  line-height: 1.55;
}

.service-flow {
  margin-top: 58px;
  border-top: 1px solid var(--sales-line);
}

.service-flow__row {
  display: grid;
  grid-template-columns: 64px .9fr 1.1fr;
  gap: 32px;
  padding: 30px 0;
  border-bottom: 1px solid var(--sales-line);
}

.service-flow__row > b {
  color: var(--sales-red);
  font: 400 38px/1 var(--font-disp);
}

.service-flow__row h3 {
  margin: 0;
  font-size: 27px;
}

.service-flow__row p {
  margin: 0;
  color: var(--sales-muted);
  font-size: 17px;
}

.image-break {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 0;
  color: #fff;
}

.image-break img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-break::after {
  position: absolute;
  inset: 0;
  background: rgba(22, 24, 26, .7);
  content: '';
}

.image-break__copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding-block: 80px;
}

.image-break h2 {
  font-size: clamp(54px, 6.2vw, 94px);
}

.image-break p {
  max-width: 650px;
  margin-top: 22px;
  color: rgba(255, 255, 255, .76);
  font-size: 19px;
}

.price-hero {
  min-height: 570px;
  background: var(--sales-mist);
}

.price-hero .page-hero__media img {
  opacity: .18;
}

.price-hero--plans .page-hero__media img {
  opacity: .22;
  object-position: center 58%;
}

.pricing-assurance {
  padding: 0;
  background: var(--sales-ink);
  color: #fff;
}

.pricing-assurance__inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
}

.pricing-assurance span {
  position: relative;
  padding: 18px 24px 18px 42px;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.pricing-assurance span::before {
  position: absolute;
  top: 50%;
  left: 16px;
  width: 12px;
  height: 12px;
  border: 2px solid var(--sales-red);
  transform: translateY(-50%) rotate(45deg);
  content: '';
}

.pricing-assurance span + span {
  border-left: 1px solid rgba(255, 255, 255, .18);
}

.pricing-section {
  overflow: hidden;
}

.pricing-structure {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, .7fr) minmax(0, 1.3fr);
  gap: clamp(42px, 6vw, 82px);
  align-items: start;
  margin-bottom: clamp(58px, 7vw, 92px);
  padding: 4px 0 clamp(44px, 5vw, 68px);
  border-bottom: 1px solid var(--sales-line);
}

.pricing-structure h2 {
  max-width: 470px;
  font-size: clamp(45px, 4.9vw, 72px);
}

.pricing-structure__copy > p:not(.auto-kicker) {
  max-width: 470px;
  margin: 22px 0 0;
  color: var(--sales-muted);
  font-size: 17px;
  line-height: 1.55;
}

.pricing-structure__blocks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--sales-line);
  border-bottom: 1px solid var(--sales-line);
  list-style: none;
}

.pricing-structure__blocks li {
  min-height: 126px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
}

.pricing-structure__blocks li + li {
  border-left: 1px solid var(--sales-line);
}

.pricing-structure__blocks small,
.pricing-structure__full small {
  color: var(--sales-red-dark);
  font: 700 10px/1 var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .09em;
}

.pricing-structure__blocks strong {
  max-width: 150px;
  font-size: 17px;
  line-height: 1.2;
}

.pricing-structure__full {
  display: grid;
  grid-template-columns: auto minmax(180px, .7fr) minmax(0, 1.3fr);
  gap: 18px;
  align-items: center;
  padding: 23px 20px;
  border-bottom: 1px solid var(--sales-line);
}

.pricing-structure__full::before {
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: center;
  color: var(--sales-red);
  font-size: 28px;
  content: '\2192';
}

.pricing-structure__full small {
  grid-column: 2;
  grid-row: 1;
}

.pricing-structure__full strong {
  grid-column: 2;
  grid-row: 2;
  font-size: 19px;
}

.pricing-structure__full p {
  grid-column: 3;
  grid-row: 1 / span 2;
  align-self: center;
  margin: 0;
  color: var(--sales-muted);
  font-size: 14px;
  line-height: 1.45;
}

.pricing-structure__rule {
  margin: 18px 0 0;
  color: var(--sales-muted);
  font-size: 13px;
  line-height: 1.5;
}

.pricing-structure__rule strong {
  color: var(--sales-ink);
}

.pricing-section::after {
  position: absolute;
  right: -90px;
  bottom: 76px;
  width: 320px;
  height: 38px;
  background: url('/brand/pattern-masking-stripes.svg') repeat-x center / auto 38px;
  opacity: .28;
  transform: rotate(-6deg);
  content: '';
}

.pricing-selector {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, .68fr) minmax(0, 1.32fr);
  gap: clamp(50px, 7vw, 96px);
  align-items: start;
}

.pricing-tabs {
  position: sticky;
  top: 112px;
  border-top: 1px solid var(--sales-line);
}

.pricing-tabs button {
  position: relative;
  width: 100%;
  min-height: 102px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 18px 12px 18px 20px;
  border: 0;
  border-bottom: 1px solid var(--sales-line);
  background: transparent;
  color: var(--sales-ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: background .2s ease, padding .2s ease;
}

.pricing-tabs button::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: var(--sales-red);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .2s ease;
  content: '';
}

.pricing-tabs button:hover,
.pricing-tabs button[aria-selected='true'] {
  padding-left: 28px;
  background: #f8edeb;
}

.pricing-tabs button[aria-selected='true']::before {
  transform: scaleY(1);
}

.pricing-tabs button:focus-visible {
  outline: 2px solid var(--sales-red);
  outline-offset: 3px;
}

.pricing-tabs button > span {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.15;
}

.pricing-tabs button small {
  color: var(--sales-red-dark);
  font: 700 10px/1 var(--font-mono);
  letter-spacing: .1em;
}

.pricing-tabs button > strong {
  white-space: nowrap;
  color: var(--sales-red-dark);
  font: 400 39px/.9 var(--font-disp);
}

.pricing-tabs button em {
  color: var(--sales-muted);
  font: 700 10px/1 var(--font-mono);
  font-style: normal;
}

.pricing-tabs button > i {
  position: absolute;
  top: 8px;
  right: 10px;
  color: var(--sales-red-dark);
  font: 700 9px/1 var(--font-mono);
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.pricing-panels {
  min-height: 790px;
}

.pricing-panels > section {
  position: relative;
  min-height: 790px;
  padding: clamp(34px, 4vw, 58px);
  background: var(--sales-paper);
  border-top: 8px solid var(--sales-red);
  box-shadow: 0 24px 64px rgba(22, 24, 26, .1);
}

.pricing-panels > section::after {
  position: absolute;
  top: 22px;
  right: -18px;
  width: 130px;
  height: 24px;
  background: url('/brand/pattern-kraft-tape.svg') repeat-x center / auto 24px;
  transform: rotate(3deg);
  content: '';
}

.pricing-panels > section[hidden] {
  display: none;
}

.pricing-panel__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
}

.pricing-panel__head h2 {
  max-width: 640px;
  font-size: clamp(48px, 5.1vw, 76px);
}

.pricing-panel__price {
  margin: 0;
  text-align: right;
}

.pricing-panel__price strong,
.pricing-panel__price span {
  display: block;
}

.pricing-panel__price del {
  display: block;
  margin-bottom: 7px;
  color: var(--sales-muted);
  font: 700 18px/1 var(--font-mono);
  text-decoration-color: var(--sales-red);
  text-decoration-thickness: 2px;
}

.pricing-panel__price strong {
  color: var(--sales-red);
  font: 400 clamp(58px, 6vw, 90px)/.82 var(--font-disp);
}

.pricing-panel__price span {
  margin-top: 10px;
  color: var(--sales-muted);
  font: 700 11px/1.45 var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.pricing-panel__lead {
  max-width: 760px;
  margin: 30px 0 0;
  color: var(--sales-muted);
  font-size: 18px;
  line-height: 1.55;
}

.pricing-panel__difference {
  max-width: 800px;
  display: grid;
  gap: 5px;
  margin: 24px 0 0;
  padding-left: 18px;
  border-left: 4px solid var(--sales-red);
  color: var(--sales-muted);
  font-size: 15px;
  line-height: 1.5;
}

.pricing-panel__difference strong {
  color: var(--sales-ink);
  font-size: 17px;
}

.pricing-includes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 34px;
  margin: 36px 0 0;
  padding: 0;
  border-top: 1px solid var(--sales-line);
}

.pricing-includes li {
  position: relative;
  min-height: 68px;
  display: flex;
  align-items: center;
  padding: 14px 8px 14px 28px;
  border-bottom: 1px solid var(--sales-line);
  color: #333837;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  list-style: none;
}

.pricing-includes li::before {
  position: absolute;
  left: 3px;
  width: 11px;
  height: 5px;
  border-left: 2px solid var(--sales-red);
  border-bottom: 2px solid var(--sales-red);
  transform: rotate(-45deg);
  content: '';
}

.pricing-panel__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 34px;
}

.pricing-panel__foot p {
  max-width: 470px;
  margin: 0;
  color: var(--sales-muted);
  font-size: 14px;
}

.pricing-panel__foot p strong {
  color: var(--sales-ink);
}

.price-stage {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(420px, 1.25fr);
  gap: 86px;
  align-items: start;
}

.price-stage__amount {
  position: sticky;
  top: 118px;
}

.price-stage__amount small {
  display: block;
  color: var(--sales-red-dark);
  font: 600 12px/1.4 var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .12em;
}

.price-stage__amount strong {
  display: block;
  margin-top: 14px;
  color: var(--sales-red);
  font: 400 clamp(86px, 10vw, 152px)/.82 var(--font-disp);
}

.price-stage__amount span {
  display: block;
  margin-top: 16px;
  color: var(--sales-muted);
  font-size: 18px;
}

.price-stage__amount b {
  color: var(--sales-ink);
}

.price-stage__details {
  border-top: 1px solid var(--sales-line);
}

.price-stage__details article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--sales-line);
}

.price-stage__details article > b {
  color: var(--sales-red);
  font: 600 11px/1.6 var(--font-mono);
}

.price-stage__details h2,
.price-stage__details h3 {
  margin: 0 0 8px;
  font-size: 24px;
}

.price-stage__details p {
  margin: 0;
  color: var(--sales-muted);
}

.guarantee-band {
  background: var(--sales-ink);
  color: #fff;
}

.guarantee-band__inner {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 72px;
  align-items: center;
}

.guarantee-band h2 {
  font-size: clamp(58px, 6.6vw, 96px);
}

.guarantee-band p {
  color: rgba(255, 255, 255, .72);
  font-size: 18px;
}

.guarantee-band a {
  color: #fff;
}

.plain-faq {
  margin-top: 50px;
  border-top: 1px solid var(--sales-line);
}

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

.plain-faq summary {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-size: 19px;
  font-weight: 700;
  list-style: none;
}

.plain-faq summary::after {
  content: '+';
  color: var(--sales-red);
  font-size: 25px;
}

.plain-faq details[open] summary::after {
  content: '-';
}

.plain-faq p {
  max-width: 820px;
  padding: 0 0 24px;
  color: var(--sales-muted);
}

.auto-site .site-form {
  padding: 0;
  border: 0;
  border-top: 1px solid var(--sales-line);
  border-radius: 0;
  background: transparent;
}

.auto-site .site-field {
  padding-top: 16px;
}

.auto-site .site-field input,
.auto-site .site-field select,
.auto-site .site-field textarea {
  border: 0;
  border-bottom: 2px solid var(--sales-line);
  border-radius: 0;
  background: transparent;
}

.auto-site .site-field input:focus,
.auto-site .site-field select:focus,
.auto-site .site-field textarea:focus {
  border-color: var(--sales-red);
  outline: 0;
}

.work-hero {
  background: var(--sales-ink);
  color: #fff;
}

.work-hero .page-hero__wash {
  background: rgba(22, 24, 26, .72);
}

.work-hero .auto-kicker,
.work-hero h1 {
  color: #fff;
}

.work-hero p:not(.auto-kicker) {
  color: rgba(255, 255, 255, .76);
}

.case-lead {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 84px;
  align-items: start;
}

.case-lead h2 {
  font-size: clamp(52px, 5.8vw, 88px);
}

.case-lead__copy p {
  margin: 0;
  color: var(--sales-muted);
  font-size: 19px;
}

.case-lead__copy p + p {
  margin-top: 18px;
}

.case-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(240px, .55fr);
  gap: 28px;
  margin-top: 70px;
  align-items: start;
}

.case-gallery figure {
  margin: 0;
}

.case-gallery img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 24px 34px rgba(22, 24, 26, .16));
}

.case-result {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 34px;
  align-items: center;
  margin-top: 60px;
  padding: 34px 0;
  border-top: 1px solid var(--sales-line);
  border-bottom: 1px solid var(--sales-line);
}

.case-result strong {
  display: block;
  color: var(--sales-ink);
  font: 400 clamp(64px, 7vw, 108px)/.84 var(--font-disp);
}

.case-result > div:last-child strong {
  color: var(--sales-red);
}

.case-result span {
  display: block;
  color: var(--sales-muted);
  font-size: 14px;
}

.case-result__arrow {
  color: var(--sales-red);
  font-size: 38px;
}

/* Progressive shop check */
.funnel-page {
  min-height: 100svh;
}

.funnel-page .funnel-topbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  height: 78px;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(22, 24, 26, .1);
}

.funnel-page .funnel-topbar > a:last-child {
  color: var(--sales-ink);
}

.funnel-page .funnel-progress {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 101;
  top: 78px;
  height: 4px;
  background: #dfe5e1;
}

.funnel-page .funnel-progress span {
  background: var(--sales-red);
}

.funnel-layout {
  min-height: calc(100svh - 82px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr);
  padding: 82px 0 0;
}

.funnel-experience {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px clamp(28px, 6vw, 96px) 28px;
  background: #fff;
}

.funnel-page .funnel-status {
  width: 100%;
  max-width: 720px;
  margin: 0 auto 28px;
  color: var(--sales-muted);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.funnel-page .funnel-card {
  width: 100%;
  max-width: 720px;
  min-height: 0;
  margin: 0 auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.funnel-page .funnel-step h1,
.funnel-page .funnel-step h2,
.funnel-page .funnel-step legend h1,
.funnel-page .funnel-step legend h2 {
  max-width: 650px;
  font-size: clamp(42px, 4.4vw, 66px);
  line-height: 1.02;
}

.funnel-page .funnel-step h1:focus,
.funnel-page .funnel-step h2:focus,
.funnel-page .funnel-step legend:focus {
  outline: 0;
}

.funnel-page .funnel-step {
  padding: 0;
}

.funnel-page .funnel-step > p,
.funnel-page .funnel-step fieldset > p {
  max-width: 600px;
  margin-top: 16px;
  color: var(--sales-muted);
  font-size: 18px;
}

.funnel-page .funnel-options {
  gap: 0;
  margin-top: 30px;
  border-top: 1px solid var(--sales-line);
}

.funnel-page .funnel-option > span {
  min-height: 68px;
  border: 0;
  border-bottom: 1px solid var(--sales-line);
  border-radius: 0;
  background: transparent;
}

.funnel-page .funnel-option:hover > span {
  border-color: var(--sales-line);
  background: var(--sales-mist);
}

.funnel-page .funnel-option input:checked + span {
  border-color: var(--sales-red);
  background: #f8e7e2;
}

.funnel-page .funnel-field {
  margin-top: 26px;
}

.funnel-page .funnel-field input,
.funnel-page .funnel-field select {
  min-height: 54px;
  border: 0;
  border-bottom: 2px solid var(--sales-line);
  border-radius: 0;
  background: transparent;
}

.funnel-page .funnel-field input:focus,
.funnel-page .funnel-field select:focus {
  border-color: var(--sales-red);
  outline: 0;
}

.funnel-page .funnel-contact-grid .funnel-field--wide {
  grid-column: 1 / -1;
}

.funnel-page .funnel-actions {
  margin-top: 30px;
}

.funnel-page .funnel-back {
  min-height: 48px;
  color: var(--sales-muted);
}

.funnel-visual {
  position: sticky;
  top: 82px;
  min-height: calc(100svh - 82px);
  align-self: start;
  overflow: hidden;
  color: #fff;
  background: var(--sales-ink);
}

.funnel-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .43;
}

.funnel-visual::after {
  position: absolute;
  inset: 0;
  background: rgba(22, 24, 26, .58);
  content: '';
}

.funnel-visual__copy {
  position: absolute;
  z-index: 1;
  right: clamp(28px, 5vw, 72px);
  bottom: clamp(38px, 6vw, 82px);
  left: clamp(28px, 5vw, 72px);
}

.funnel-visual__copy small {
  color: #f3d38e;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .12em;
}

.funnel-visual__copy strong {
  display: block;
  margin-top: 14px;
  font: 400 clamp(70px, 7vw, 112px)/.84 var(--font-disp);
}

.funnel-visual__copy p {
  max-width: 430px;
  margin-top: 18px;
  color: rgba(255, 255, 255, .78);
  font-size: 17px;
}

.funnel-page .funnel-proof {
  grid-template-columns: 1fr;
  gap: 22px;
  padding: 0;
  border: 0;
  background: transparent;
}

.funnel-page .funnel-proof img {
  height: auto;
  max-height: 230px;
  object-fit: contain;
  object-position: left center;
}

.funnel-page .funnel-proof strong {
  color: var(--sales-red);
  font: 400 64px/.9 var(--font-disp);
}

.funnel-page .funnel-foot {
  width: 100%;
  max-width: 720px;
  margin: 30px auto 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--sales-line);
}

@media (max-width: 980px) {
  .money-strip__inner,
  .auto-heading-grid,
  .drive-story,
  .offer-ribbon__inner,
  .repair-slider__heading,
  .shop-question__grid,
  .price-stage,
  .guarantee-band__inner,
  .case-lead {
    grid-template-columns: 1fr;
  }

  .money-strip__inner {
    gap: 16px;
    padding-block: 24px;
  }

  .money-strip__math {
    justify-content: flex-start;
  }

  .money-strip__note {
    max-width: 540px;
  }

  .repair-path__steps {
    grid-template-columns: 1fr;
  }

  .repair-path__steps li {
    min-height: 0;
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .22);
  }

  .repair-path__steps li + li {
    padding-left: 0;
  }

  .repair-path__steps li + li::before {
    display: none;
  }

  .repair-path__steps small {
    margin: 0;
  }

  .repair-path__steps strong {
    max-width: none;
  }

  .price-stage__amount {
    position: static;
  }

  .pricing-selector {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .pricing-structure {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .pricing-tabs {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-left: 1px solid var(--sales-line);
  }

  .pricing-tabs button {
    border-right: 1px solid var(--sales-line);
  }

  .pricing-panels,
  .pricing-panels > section {
    min-height: 0;
  }

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

  .funnel-visual {
    display: none;
  }
}

@media (max-width: 1023px) {
  .main-solutions-viewport {
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 0;
  }

  .fix-card {
    flex-basis: min(78vw, 350px);
    min-height: 270px;
  }

  .main-solutions.is-mobile-slider .fix-card.is-active,
  .main-solutions.is-scroll-ready .fix-card.is-active {
    opacity: 1;
    background: #fff7f4;
    border-color: rgba(227, 75, 53, .9);
  }

  .main-solutions-cue-desktop {
    display: none;
  }

  .main-solutions-cue-mobile {
    display: inline;
  }

  .main-solutions.is-mobile-slider .main-solutions-cue-mobile {
    display: none;
  }

  .main-solutions.is-mobile-slider .main-solutions-cue-manual {
    display: inline;
  }
}

@media (max-width: 1023px) and (prefers-reduced-motion: no-preference) {
  .main-solutions.is-scroll-ready .main-solutions-shell {
    min-height: 680px;
    padding-top: 88px;
    padding-bottom: 12px;
  }

  .main-solutions.is-scroll-ready .repair-slider__heading > p {
    display: none;
  }

  .main-solutions.is-scroll-ready .repair-slider__heading h2 {
    max-width: 780px;
    font-size: 46px;
  }

  .main-solutions.is-scroll-ready .main-solutions-viewport {
    margin-top: 28px;
    touch-action: pan-y;
  }
}

@media (max-width: 720px) {
  .auto-shell {
    width: min(100% - 36px, 1240px);
  }

  .auto-site .site-nav {
    padding-inline: 18px;
  }

  .auto-hero {
    min-height: calc(100svh - 120px);
    align-items: flex-end;
    padding: 80px 0 24px;
  }

  .auto-hero__media img {
    object-position: 59% center;
  }

  .auto-hero__wash {
    background: rgba(247, 249, 246, .84);
  }

  .auto-hero::before {
    top: 76px;
    width: 66vw;
  }

  .auto-hero__content {
    width: 100%;
  }

  .auto-hero::after {
    display: none;
  }

  .auto-hero h1 {
    font-size: 54px;
  }

  .auto-hero__lede {
    margin-top: 14px;
    font-size: 16px;
  }

  .auto-actions {
    display: grid;
    gap: 8px;
    margin-top: 22px;
  }

  .auto-hero .auto-actions {
    grid-template-columns: 1fr 1fr;
  }

  .auto-actions .site-button {
    width: 100%;
    min-height: 50px;
  }

  .auto-hero .auto-trust-line {
    display: none;
  }

  .proof-pulse::before {
    width: 7px;
  }

  .proof-pulse__inner {
    min-height: 0;
    display: grid;
    gap: 8px;
    padding: 18px 0 18px 14px;
  }

  .proof-pulse p,
  .proof-pulse a {
    font-size: 14px;
  }

  .money-strip__math {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 10px;
    align-items: center;
    text-align: left;
  }

  .money-strip__math span:not(.money-strip__arrow) {
    display: block;
    font-size: 12px;
  }

  .auto-section {
    padding: 78px 0;
  }

  .auto-heading-grid {
    gap: 24px;
  }

  .auto-heading-grid h2,
  .auto-section__title {
    font-size: 50px;
  }

  .leak-row,
  .service-flow__row {
    grid-template-columns: 48px 1fr;
    gap: 16px;
  }

  .leak-row p,
  .service-flow__row p {
    grid-column: 2;
  }

  .leak-row h3,
  .service-flow__row h3 {
    font-size: 23px;
  }

  .leak-row p,
  .service-flow__row p {
    font-size: 16px;
  }

  .leak-row:hover {
    padding-inline: 0;
    background: transparent;
  }

  .leak-row::after,
  .problem-field::after {
    display: none;
  }

  .repair-slider__heading {
    gap: 18px;
  }

  .repair-slider__heading h2 {
    font-size: 50px;
  }

  .repair-slider__heading > p {
    font-size: 16px;
  }

  .main-solutions-viewport {
    margin-top: 32px;
  }

  .fix-card {
    flex-basis: min(82vw, 330px);
    min-height: 250px;
    padding: 26px;
  }

  .fix-tag {
    margin-bottom: 36px;
  }

  .fix-card h3 {
    font-size: 24px;
  }

  .fix-card > p:last-child {
    font-size: 15px;
  }

  .main-solutions-rail {
    gap: 9px;
    font-size: 9px;
  }

  .main-solutions-cue {
    text-align: left;
  }

  .repair-path__content h2,
  .drive-story__copy h2,
  .offer-ribbon h2,
  .shop-question h2,
  .page-hero h1,
  .image-break h2,
  .guarantee-band h2,
  .case-lead h2 {
    font-size: 54px;
  }

  .drive-story {
    gap: 64px;
  }

  .drive-story__mobile {
    right: 0;
    bottom: -9%;
    width: 28%;
    border-width: 5px;
  }

  .drive-story__visual::after {
    inset: 6% -1% -4% 6%;
  }

  .drive-receipt {
    padding-left: 18px;
  }

  .drive-math__line {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 10px;
  }

  .drive-math strong {
    font-size: 52px;
  }

  .offer-ribbon__inner,
  .shop-question__grid {
    gap: 44px;
  }

  .responsibility-break {
    min-height: 650px;
  }

  .responsibility-break h2 {
    font-size: 54px;
  }

  .responsibility-break__content > p:not(.auto-kicker) {
    font-size: 17px;
  }

  .shop-question__answers a {
    min-height: 72px;
    font-size: 16px;
  }

  .page-hero {
    min-height: 560px;
    padding: 126px 0 68px;
  }

  .page-hero__media img {
    object-position: 58% center;
  }

  .page-hero p:not(.auto-kicker) {
    font-size: 18px;
  }

  .pricing-assurance__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-block: 0;
  }

  .pricing-assurance span {
    min-height: 52px;
    display: flex;
    align-items: center;
    padding: 10px 8px 10px 28px;
    font-size: 11.5px;
    line-height: 1.25;
    text-align: left;
  }

  .pricing-assurance span::before {
    left: 5px;
    width: 9px;
    height: 9px;
    border-width: 1.5px;
  }

  .pricing-assurance span:nth-child(2) {
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, .18);
  }

  .pricing-assurance span:nth-child(3) {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(255, 255, 255, .18);
    border-left: 0;
  }

  .pricing-tabs {
    grid-template-columns: 1fr;
  }

  .pricing-structure__blocks {
    grid-template-columns: 1fr;
  }

  .pricing-structure__blocks li {
    min-height: 72px;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    padding: 16px 0;
  }

  .pricing-structure__blocks li + li {
    border-top: 1px solid var(--sales-line);
    border-left: 0;
  }

  .pricing-structure__blocks small {
    color: var(--sales-red);
    font: 400 31px/.9 var(--font-disp);
    letter-spacing: 0;
  }

  .pricing-structure__blocks small span {
    display: none;
  }

  .pricing-structure__blocks strong {
    max-width: none;
    font-size: 18px;
  }

  .pricing-structure__full {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 14px;
    padding: 22px 20px 24px;
    border-top: 4px solid var(--sales-red);
    border-bottom: 0;
    background: var(--sales-ink);
    color: #fff;
  }

  .pricing-structure__full::before {
    display: none;
  }

  .pricing-structure__full small {
    grid-column: 1;
    grid-row: auto;
    color: #ff8b79;
  }

  .pricing-structure__full strong {
    grid-column: 1;
    grid-row: auto;
    font-size: 24px;
  }

  .pricing-structure__full p {
    grid-column: 1;
    grid-row: auto;
    color: rgba(255, 255, 255, .72);
  }

  .pricing-structure__rule {
    padding-left: 14px;
    border-left: 3px solid var(--sales-red);
  }

  .pricing-tabs button {
    min-height: 86px;
  }

  .pricing-panels > section {
    padding: 30px 20px;
  }

  .pricing-panels > section::after,
  .pricing-section::after {
    display: none;
  }

  .pricing-panel__head {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .pricing-panel__head h2 {
    font-size: 48px;
  }

  .pricing-panel__price {
    text-align: left;
  }

  .pricing-panel__price strong {
    font-size: 68px;
  }

  .pricing-panel__lead {
    font-size: 16px;
  }

  .pricing-includes {
    grid-template-columns: 1fr;
  }

  .pricing-panel__foot {
    display: grid;
    gap: 22px;
  }

  .pricing-panel__foot .site-button {
    width: 100%;
  }

  .image-break {
    min-height: 480px;
  }

  .case-gallery {
    grid-template-columns: 1fr;
  }

  .case-gallery figure:last-child {
    width: 54%;
    margin-left: auto;
  }

  .case-result {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .case-result__arrow {
    transform: rotate(90deg);
  }

  .funnel-page .funnel-topbar {
    height: 72px;
    padding-inline: 16px;
  }

  .funnel-page .funnel-topbar img {
    width: 132px;
  }

  .funnel-page .funnel-topbar > a:last-child {
    font-size: 11px;
  }

  .funnel-page .funnel-progress {
    top: 72px;
  }

  .funnel-layout {
    min-height: calc(100svh - 76px);
    padding-top: 76px;
  }

  .funnel-experience {
    justify-content: flex-start;
    padding: 24px 18px 26px;
  }

  .funnel-page .funnel-status {
    margin-bottom: 26px;
  }

  .funnel-page .funnel-step h1,
  .funnel-page .funnel-step h2,
  .funnel-page .funnel-step legend h1,
  .funnel-page .funnel-step legend h2 {
    font-size: 38px;
  }

  .funnel-page .funnel-step > p,
  .funnel-page .funnel-step fieldset > p {
    font-size: 16px;
  }

  .funnel-page .funnel-option {
    min-height: 64px;
  }

  .funnel-page .funnel-contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 360px) {
  .auto-hero {
    padding: 58px 0 10px;
  }

  .auto-hero h1 {
    font-size: 48px;
  }

  .auto-hero__lede {
    font-size: 15px;
  }

  .auto-hero .auto-actions {
    margin-top: 16px;
  }

  .auto-hero .auto-actions .site-button {
    min-height: 46px;
    padding-inline: 10px;
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .shop-question__answers a,
  .auto-site .site-button,
  .funnel-page .site-button,
  .leak-row,
  .responsibility-break > img,
  html.js .reveal {
    transition: none;
  }

  .auto-home .auto-hero__media img {
    animation: none;
    transform: none;
  }

  html.js .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1023px) and (prefers-reduced-motion: no-preference) and (max-height: 760px) {
  .main-solutions.is-scroll-ready .main-solutions-shell {
    justify-content: flex-start;
    padding-top: 82px;
  }

  .main-solutions.is-scroll-ready .auto-kicker {
    margin-bottom: 13px;
  }

  .main-solutions.is-scroll-ready .repair-slider__heading h2 {
    font-size: 38px;
  }

  .main-solutions.is-scroll-ready .main-solutions-viewport {
    margin-top: 20px;
  }

  .main-solutions.is-scroll-ready .fix-card {
    min-height: 228px;
  }
}
