/* Page-local additions for the Fleet Pressure Washing inner page.
   Everything else (header, buttons, torn edge, hours, footer) is inherited unchanged from
   /v6/styles.css to stay fully consistent with the approved homepage. .carry/.carry-grid/
   .carry-card and .plan-cta are the mobile-mechanical pattern, reused as-is (same class
   contract, new copy). .wash-proof* is new: a 3-column numbered proof strip built from the
   same design tokens as the homepage's .proof-card, since this page has no section-0X-bg.jpg
   photos to drive that component's background-image treatment. */

/* Hero: real, unused stand-in photo (Mazdock CAT-branded service truck + dump truck in an
   evergreen yard, overcast). Not a washing action shot -- see index.html comment. Portrait
   orientation ~1920x2560; positioned to keep the trucks in frame rather than mostly sky. */
.svc-hero {
  background-image:
    linear-gradient(90deg, rgba(9,10,12,0.9) 0%, rgba(9,10,12,0.74) 32%, rgba(9,10,12,0.32) 62%, rgba(9,10,12,0.12) 100%),
    url("assets/hero.png");
  background-position: center 45%;
  background-size: cover;
}

.hero-headline {
  font-size: 52px;
}

.kicker {
  font-family: var(--font-condensed);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7cc3e8;
  margin-bottom: 14px;
}

/* capability / "what's included" grid, anchor target for the hero's secondary CTA */
.carry {
  padding: 80px var(--gutter) 96px;
  display: flex;
  flex-direction: column;
  gap: 56px;
  background: #ffffff;
}

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

.carry-card {
  padding: 32px;
  background: #fff;
  border: 1px solid #d8e1e6;
  border-radius: 4px;
}

.carry-card img { margin-bottom: 20px; }

.carry-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.15;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-deep-blue);
  margin-bottom: 10px;
}

.carry-card p {
  color: #3d5059;
  font-size: 16px;
  line-height: 1.6;
}

.plan-cta {
  text-align: center;
  margin-top: 8px;
}

.plan-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 32px;
  border-radius: 999px;
  background: linear-gradient(90deg, #3782ad 0%, #245a80 100%);
  color: #fff;
  font-family: var(--font-condensed);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

/* "why recurring, not a one-off" -- 3-item numbered proof strip. New component built from the
   same tokens as the homepage's .proof-card (font-display, color stack, condensed numeral) but
   without a background photo dependency, since no section-0X-bg.jpg assets exist for this page. */
.wash-proof {
  padding: 100px var(--gutter) 96px;
  background: var(--color-ice-blue);
}

/* the shared .section-title-wrap ships its own top/side padding + white bg (for when it sits
   directly under the hero) -- here it's nested inside .wash-proof, which already provides the
   section's own gutter/padding-top above, so reset those to 0 and let the ice-blue show through
   instead of a white strip. Per Darrel, DM trace 6b72b126 (R-046). */
.wash-proof .section-title-wrap {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
  background: none;
}

.wash-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 56px;
}

.wash-proof-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px 32px;
  background: var(--color-worktruck-white);
  border-top: 4px solid var(--color-diesel-blue);
}

.wash-proof-number {
  font-family: var(--font-condensed);
  font-size: clamp(56px, 5vw, 88px);
  line-height: 1;
  font-weight: 300;
  color: var(--color-diesel-blue);
}

.wash-proof-copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.wash-proof-copy h3 {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-deep-blue);
}

.wash-proof-copy p {
  color: #33454e;
  font-size: 16px;
  line-height: 1.6;
}

@media (max-width: 1100px) {
  .carry-grid { grid-template-columns: repeat(2, 1fr); }
  .wash-proof-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .carry { padding-block: 72px; }
  .carry-grid { grid-template-columns: 1fr; }
  .wash-proof { padding-block: 0 56px; }
  .wash-proof-grid { margin-bottom: 40px; }
}
