  .site-content {
  margin-top: 0;
}

/* —— Hero copy card —— */
.vpat-hero-copy {
  background-color: #ffc904;
  border-radius: 0.6rem;
  max-width: 760px;
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.vpat-hero h1 {
  line-height: 1;
}

.vpat-hero .lead {
  font-size: 1.5rem;
  max-width: 680px;
}

.vpat-hero .btn {
  white-space: normal;
  text-align: left;
}

/* —— 16:9 video frame —— */
.vpat-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 0.65rem 1.75rem rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #000;
}

@supports not (aspect-ratio: 16 / 9) {
  /* Safe on full-width frames only — padding-% uses containing-block width */
  .vpat-video:not(.vpat-video--float) {
    height: 0;
    padding-top: 56.25%;
  }
}

.vpat-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Text wraps around floated Vimeo (fixed width + aspect-ratio — never padding-top on float) */
.vpat-intro-wrap {
  overflow: auto;
}

.vpat-video--float {
  float: right;
  width: 520px;
  max-width: 54%;
  margin: 0 0 0.75rem 1.25rem;
  aspect-ratio: 16 / 9;
  shape-outside: margin-box;
}

.vpat-intro-wrap > .lead:last-of-type {
  margin-bottom: 0;
}

/* —— Long flat CTA bar —— */
.vpat-cta-bar {
  clear: both;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  padding: 1rem 1.25rem;
  color: #fff;
  background-color: #000;
  border-radius: 0.35rem;
  border-top: 5px solid #ffc904;
}

.vpat-cta-bar__logo {
  flex: 0 0 auto;
  max-width: 180px;
}

.vpat-cta-bar__logo img {
  display: block;
  max-height: 48px;
  width: auto;
}

.vpat-cta-bar__text {
  flex: 1 1 220px;
  margin: 0;
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.4;
  max-width: 40rem;
}

.vpat-cta-bar__action {
  flex: 0 0 auto;
  margin-left: auto;
}

.vpat-cta-bar__action .btn {
  white-space: nowrap;
}

/* —— How it works —— */
.vpat-how-it-works {
  position: relative;
  background-color: #000;
  color: #fff;
}

.vpat-how-it-works .lead {
  max-width: 1100px;
  font-weight: 400;
  line-height: 1.6;
}

.vpat-steps {
  align-items: stretch;
}

.vpat-steps > li {
  display: flex;
}

.vpat-step-card {
  position: relative;
  width: 100%;
  min-height: 100%;
  padding: 2rem;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-top: 6px solid #ffc904;
  border-radius: 0.25rem;
}

.vpat-step-card:hover,
.vpat-step-card:focus-within {
  background-color: rgba(255, 255, 255, 0.1);
}

.vpat-step-number {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  color: rgba(255, 201, 4, 0.22);
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  z-index: 0;
}

.vpat-step-icon {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  background-color: #ffc904;
  border-radius: 50%;
  font-size: 1.5rem;
}

.vpat-step-card h3 {
  position: relative;
  z-index: 1;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.vpat-step-card p,
.vpat-step-card ul {
  position: relative;
  z-index: 1;
}

.vpat-step-card p {
  line-height: 1.6;
}

.vpat-step-card ul {
  padding-left: 1.25rem;
}

.vpat-step-card li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.vpat-step-card li:last-child {
  margin-bottom: 0;
}

.vpat-note {
  padding: 1.25rem 1.5rem;
  color: #000;
  background-color: #fff;
  border-left: 6px solid #ffc904;
  font-weight: 600;
  line-height: 1.6;
}

/* —— Tablet —— */
@media (max-width: 991.98px) {
  .vpat-hero .lead {
    font-size: 1.25rem;
  }

  .vpat-video--float {
    width: min(45%, 400px);
    margin-left: 1.25rem;
  }

  .vpat-cta-bar {
    padding: 1rem 1.15rem;
  }

  .vpat-cta-bar__text {
    font-size: 1rem;
    flex-basis: 100%;
    max-width: none;
    order: 3;
  }

  .vpat-cta-bar__logo {
    order: 1;
  }

  .vpat-cta-bar__action {
    order: 2;
    margin-left: auto;
  }

  .vpat-step-card {
    padding: 1.75rem;
  }

  .vpat-step-number {
    font-size: 4.5rem;
  }
}

/* —— Phone: stack video above copy —— */
@media (max-width: 767.98px) {
  .vpat-video--float {
    float: none;
    width: 100%;
    max-width: none;
    margin: 0 0 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .vpat-hero h1.display-3 {
    font-size: 2.25rem;
  }

  .vpat-hero .lead {
    font-size: 1.1rem;
  }

  .vpat-hero-copy {
    max-width: none;
  }

  .vpat-cta-bar {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    gap: 0.85rem;
    padding: 1rem;
  }

  .vpat-cta-bar__logo,
  .vpat-cta-bar__text,
  .vpat-cta-bar__action {
    order: initial;
    margin-left: 0;
    max-width: none;
  }

  .vpat-cta-bar__logo {
    max-width: 160px;
  }

  .vpat-cta-bar__logo img {
    max-height: 40px;
  }

  .vpat-cta-bar__action .btn {
    display: block;
    width: 100%;
    white-space: normal;
  }

  .vpat-how-it-works {
    text-align: left;
  }

  .vpat-step-card {
    padding: 1.5rem;
  }

  .vpat-step-icon {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }

  .vpat-step-number {
    top: 0.75rem;
    right: 1rem;
    font-size: 4rem;
  }

  .vpat-note {
    padding: 1rem 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .vpat-step-card:hover,
  .vpat-step-card:focus-within {
    background-color: rgba(255, 255, 255, 0.06);
  }
}
