.video-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 500px);
  gap: clamp(3rem, 9vw, 9rem);
  align-items: center;
  padding: clamp(4rem, 9vw, 9rem) clamp(1.25rem, 8vw, 8rem);
  overflow: hidden;
  background: linear-gradient(135deg, #edf7fb 0%, #fff 55%, #fff6d5 100%);
}

.video-copy h2 {
  max-width: 760px;
  margin-bottom: 1.5rem;
  font-family: "Oswald", sans-serif;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: .98;
  letter-spacing: -.025em;
  text-transform: uppercase;
}

.video-copy > p:not(.kicker) {
  max-width: 620px;
  margin-bottom: 2rem;
  color: #465762;
  font-size: 1.08rem;
}

.video-frame {
  position: relative;
  width: min(100%, 430px);
  margin: 0 auto;
  padding: 10px;
  border-radius: 26px;
  background: #07131d;
  box-shadow: 0 30px 70px rgba(4, 23, 36, .28), 18px 18px 0 var(--gold);
}

.video-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 18px;
  background: #000;
  object-fit: cover;
}

.subtitle-overlay {
  position: absolute;
  right: 20px;
  bottom: 72px;
  left: 20px;
  z-index: 3;
  padding: .55rem .7rem;
  border-radius: 4px;
  background: rgba(0, 0, 0, .82);
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: clamp(.78rem, 1.5vw, 1rem);
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
  text-shadow: 0 1px 2px #000;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity .12s, transform .12s;
  pointer-events: none;
}

.subtitle-overlay.visible { opacity: 1; transform: translateY(0); }

.video-endcard {
  position: absolute;
  inset: 10px;
  z-index: 5;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(3, 16, 27, .96), rgba(4, 67, 108, .96));
  color: #fff;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}

.video-endcard.visible { opacity: 1; visibility: visible; }
.video-endcard-inner { width: min(88%, 350px); }
.video-endcard p { margin-bottom: .55rem; color: #a9ddf7; font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.video-endcard h3 { margin-bottom: 1.5rem; font-family: "Oswald", sans-serif; font-size: clamp(2rem, 5vw, 3.2rem); line-height: 1.02; text-transform: uppercase; }
.video-payment-link { display: flex; align-items: center; justify-content: center; gap: 1rem; width: 100%; padding: 1rem; border-radius: 4px; background: linear-gradient(135deg, var(--blue), var(--blue2)); color: #fff; font-weight: 800; letter-spacing: .05em; text-decoration: none; text-transform: uppercase; box-shadow: 0 12px 30px rgba(0, 141, 228, .35); }
.video-payment-link:hover { transform: translateY(-2px); }
.video-replay { margin-top: 1rem; padding: .5rem; border: 0; border-bottom: 1px solid rgba(255,255,255,.45); background: transparent; color: #fff; font: 600 .78rem "DM Sans", sans-serif; cursor: pointer; }

.video-duration {
  position: absolute;
  top: 24px;
  right: 24px;
  padding: .4rem .65rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, .72);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  pointer-events: none;
}

@media (max-width: 850px) {
  .video-section { grid-template-columns: 1fr; }
  .video-copy { text-align: center; }
  .video-copy > p:not(.kicker) { margin-right: auto; margin-left: auto; }
  .video-copy .button { margin: 0 auto; }
}

@media (max-width: 480px) {
  .video-frame { box-shadow: 10px 10px 0 var(--gold); }
}
