/* Page-local additions for the CVIP Inspections inner page.
   Everything else (header, buttons, torn edge, hours, footer) is inherited unchanged
   from /v6/styles.css to stay consistent with the approved homepage and the approved
   mobile-mechanical hero template. */

/* Hero: swapped the excavator/shop-bay photo for an actual commercial vehicle -- CVIP is the
   Commercial Vehicle Inspection Program, so the hero should show a truck, not heavy equipment.
   Source (Drive: "05 - Assets/Client Supplied/11 - Dump.jpeg"): a Class 8 truck, hood tilted
   forward, engine bay exposed, in a Mazdock shop bay. Cropped to remove the visible plate on
   the front bumper (customer's rig, not Mazdock's own -- same no-identifying-third-party-info
   principle as the logo blur elsewhere). */
.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.jpg");
  background-position: center 40%;
  background-size: cover;
}

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

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

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

/* "The inspection" section: certificate/checklist styled panel. Two-column split, heading
   copy on the left (StoryBrand framing, fleet manager as hero, Mazdock as guide), a
   certificate-feeling card on the right with a heavy top border in brand blue standing in
   for a corner accent/certificate seal. */
.checklist {
  padding: 80px var(--gutter) 96px;
  background: #ffffff;
}

.checklist-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.checklist-heading h2 {
  font-family: var(--font-display);
  font-size: var(--section-title);
  line-height: 1.12;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-deep-blue);
  margin-bottom: 20px;
}

.checklist-heading p {
  color: #33454e;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.checklist-cta {
  margin-top: 32px;
}

.checklist-card {
  padding: 40px;
  background: #fff;
  border: 1px solid #d8e1e6;
  border-top: 8px solid var(--color-deep-blue);
  border-radius: 4px;
  position: relative;
}

.checklist-eyebrow {
  color: var(--color-diesel-blue);
  font-family: var(--font-condensed);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.checklist-card h3 {
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1.15;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-deep-blue);
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 2px solid #d8e1e6;
}

.checklist-rows {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.checklist-rows li {
  display: flex;
  align-items: center;
  gap: 16px;
}

.checklist-rows img {
  flex: 0 0 auto;
}

.checklist-rows span {
  color: #243942;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 600;
}

/* 3-item numbered proof strip, remixed from the homepage's 01/02/03 color-band .proof-card
   pattern (see /v6/index.html .proof-card / .proof-number) into a 3-column card variant
   scoped to this page instead of editing the shared homepage component. Same color tokens
   (deep-blue, brand-blue) used as the color bands. */
.cvip-proof {
  padding: 96px var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 56px;
  background: var(--color-ice-blue);
}

.cvip-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  width: 100%;
}

.cvip-proof-card {
  padding: 48px 36px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cvip-proof-blue {
  background: var(--color-brand-blue);
  color: #fff;
}

.cvip-proof-dark {
  background: var(--color-deep-blue);
  color: #fff;
}

.cvip-proof-number {
  font-family: var(--font-condensed);
  font-size: 48px;
  line-height: 1;
  font-weight: 300;
  opacity: 0.7;
}

.cvip-proof-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.18;
  font-weight: 700;
  text-transform: uppercase;
}

.cvip-proof-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #e4eef4;
}

.cvip-proof-cta {
  text-align: center;
}

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

@media (max-width: 1100px) {
  .checklist-wrap { grid-template-columns: 1fr; }
  .cvip-proof-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .checklist { padding-block: 72px; }
  .checklist-card { padding: 28px; }
  .cvip-proof { padding-block: 72px; }
}
