/* ═══════════════════════════════════════════════
   VSL SECTION — Video Sales Letter
   ═══════════════════════════════════════════════ */

.vsl-section {
  width: 100%;
  background: #FAF8F5;
  padding: 96px 24px 80px;
  text-align: center;
  border-top: 1px solid #E8E4DD;
}

.vsl-container {
  max-width: 820px;
  margin: 0 auto;
}

.vsl-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9A9590;
  margin-bottom: 20px;
}

.vsl-headline {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 1.2;
  color: #1B3D2F;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
}

.vsl-subhead {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #6B6560;
  margin: 0 0 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.vsl-video-wrapper {
  position: relative;
  width: 100%;
  max-width: 720px;
  margin: 0 auto 40px;
  aspect-ratio: 16 / 9;
  background: #1B3D2F;
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vsl-video-wrapper:hover {
  transform: scale(1.01);
  box-shadow: 0 8px 32px rgba(27, 61, 47, 0.15);
}

.vsl-video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.vsl-play-button {
  width: 72px;
  height: 72px;
  background: rgba(250, 248, 245, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #1B3D2F;
  transition: transform 0.2s ease, background 0.2s ease;
}

.vsl-video-wrapper:hover .vsl-play-button {
  transform: scale(1.08);
  background: #FAF8F5;
}

.vsl-video-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: #FAF8F5;
  opacity: 0.8;
}

.vsl-cta {
  margin-top: 8px;
}

.vsl-cta .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 32px;
  background: #1B3D2F;
  color: #FAF8F5;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.vsl-cta .btn:hover {
  background: #2A5C47;
  transform: translateY(-1px);
}

.vsl-cta-sub {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: #9A9590;
  margin-top: 12px;
}

@media (max-width: 768px) {
  .vsl-section {
    padding: 64px 20px 56px;
  }
  .vsl-headline {
    font-size: 28px;
  }
  .vsl-subhead {
    font-size: 15px;
  }
  .vsl-play-button {
    width: 56px;
    height: 56px;
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .vsl-headline {
    font-size: 24px;
  }
}
