/* ── Page header ── */
.sp08-header { padding-top: var(--nav-h); }
.sp08-header::before { content: 'VISION'; }
.sp08-header-inner {
  max-width: 90rem;
  margin: 0 auto;
  padding: 3rem clamp(1.25rem, 5vw, 3rem) 2.75rem;
  position: relative;
  z-index: 1;
}
.sp08-header-title {
  font-family: 'Lippe Condensed', sans-serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: .95;
  color: var(--white);
  margin: .5rem 0 .875rem;
}

.vp-main { padding-bottom: 5rem; }

.vp-wrap {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Section ── */
.vp-section { padding: 4rem 0; }
.vp-section--logos { background: var(--color-surface, #f8f8f8); }

.vp-section-hdr { margin-bottom: 2.5rem; text-align: center; }

.vp-section-title {
  font-family: 'Lippe Condensed', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--color-text, #111);
  margin: 0 0 .5rem;
  position: relative;
  display: inline-block;
}
.vp-section-title::after {
  content: '';
  display: block;
  width: 2.5rem;
  height: 3px;
  background: var(--color-primary, #da002f);
  margin: .5rem auto 0;
}

/* ── Intro ── */
.vp-intro {
  max-width: 48rem;
}

.vp-lead {
  line-height: 1.5;
  font-weight: 400;
  margin: 0 0 1.2rem;
}
.vp-body {
  font-size: 1.4rem;
  line-height: 1.4;
  color: var(--gray-100);
  margin: 0 0 .5rem;
}

/* ── CTA inline ── */
.vp-cta-inline {
  margin-top: 1.5rem;
}

/* ── Logo grid ── */
.vp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(10rem, 1fr));
  gap: 1.2rem;
  min-height: 6rem;
}

.vp-card {
  background: #fff;
  border: 1px solid var(--color-border, #e5e5e5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 1.2rem;
  transition: box-shadow .15s, border-color .15s;
}
.vp-card:hover {
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  border-color: var(--color-primary, #da002f);
}
.vp-card img {
  max-width: 100%;
  max-height: 4rem;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .75;
  transition: filter .15s, opacity .15s;
}
.vp-card:hover img {
  filter: grayscale(0);
  opacity: 1;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .vp-grid { grid-template-columns: repeat(auto-fill, minmax(8rem, 1fr)); }
}
