* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --bg-light: #f6f1eb;
  --bg-dark: #19163a;
  --bg-dark-2: #211c49;
  --text-dark: #1f1a17;
  --text-light: #f7f3ff;
  --text-muted: #cfc7e8;
  --brand-lilac: #c8b1e6;
  --brand-lilac-hover: #b89cdd;
  --brand-orange: #f38a5a;
  --border-soft: #e7d9f2;
  --white: #ffffff;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.5;
}

a {
  text-decoration: none;
}

.page-vsl {
  width: 100%;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.hero {
  padding: 60px 0 30px;
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-dark-2) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: start;
}

.tag {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--brand-orange);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
}

.hero-copy h1 {
  margin: 0 0 18px;
  font-size: 48px;
  line-height: 1.08;
  color: var(--text-light);
}

.hero-copy h1 span {
  color: var(--brand-orange);
}

.subtitle {
  margin: 0 0 24px;
  font-size: 18px;
  color: var(--text-muted);
  max-width: 640px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.point {
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  font-size: 14px;
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 12px;
  font-weight: 700;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--brand-lilac);
  color: var(--bg-dark);
}

.btn-primary:hover {
  background: var(--brand-lilac-hover);
}

.btn-secondary {
  background: transparent;
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.full-width {
  width: 100%;
}

.card {
  background: #fff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 20px 44px rgba(8, 7, 22, 0.28);
  border: 1px solid var(--border-soft);
}

.card h2 {
  margin: 0 0 10px;
  font-size: 30px;
}

.card p {
  margin: 0 0 22px;
  color: #5b544e;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  margin-bottom: 7px;
  font-size: 14px;
  font-weight: 700;
}

.form-group input {
  width: 100%;
  height: 48px;
  border: 1px solid #d9ccc3;
  border-radius: 12px;
  padding: 0 14px;
  font-size: 15px;
  outline: none;
}

.form-group input:focus {
  border-color: var(--brand-lilac);
  box-shadow: 0 0 0 3px rgba(200, 177, 230, 0.18);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-group input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.checkbox-group label {
  margin: 0;
  font-weight: 400;
  line-height: 1.4;
}

.form-note {
  text-align: center;
  margin-top: 12px;
  font-size: 13px;
  color: #6e6660;
}

.video-section,
.benefits-section,
.audience-section,
.final-cta-section {
  padding: 70px 0;
}

.video-section {
  background: var(--bg-dark);
  color: var(--text-light);
}

.final-cta-section {
  background: var(--bg-dark-2);
  color: var(--text-light);
}

.section-head {
  margin-bottom: 30px;
}

.section-head.center {
  text-align: center;
}

.section-head h2 {
  margin: 0 0 14px;
  font-size: 38px;
  line-height: 1.15;
  color: var(--text-dark);
}

.section-head p {
  margin: 0;
  color: #5f5751;
  font-size: 17px;
}

.video-section .section-head h2,
.video-section .section-head p,
.final-cta-section .final-cta-box h2,
.final-cta-section .final-cta-box p {
  color: var(--text-light);
}

.video-wrapper {
  margin-top: 30px;
}

.video-placeholder {
  min-height: 460px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.play-circle {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--brand-lilac);
  color: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 16px;
}

.video-placeholder p {
  font-weight: 700;
  color: var(--text-light);
}

.video-cta {
  margin-top: 24px;
  text-align: center;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.benefit-card {
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid #eadcd2;
}

.benefit-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
}

.benefit-card p {
  margin: 0;
  color: #5f5751;
}

.audience-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.custom-list {
  padding-left: 18px;
  margin: 20px 0 0;
}

.custom-list li {
  margin-bottom: 12px;
  color: #4a433d;
}

.audience-box {
  background: #fff;
  padding: 28px;
  border-radius: 20px;
  border: 1px solid #eadcd2;
}

.audience-box h3 {
  margin-top: 0;
  font-size: 28px;
}

.audience-box p {
  color: #5f5751;
  margin-bottom: 20px;
}

.final-cta-box {
  text-align: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 40px 24px;
}

.final-cta-box h2 {
  margin: 0 0 12px;
  font-size: 38px;
  line-height: 1.15;
}

.final-cta-box p {
  margin: 0 auto 22px;
  max-width: 760px;
  color: #5f5751;
  font-size: 17px;
}

@media (max-width: 991px) {
  .hero-grid,
  .audience-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1,
  .section-head h2,
  .final-cta-box h2 {
    font-size: 34px;
  }

  .video-placeholder {
    min-height: 280px;
  }
}

@media (max-width: 576px) {
  .hero {
    padding-top: 34px;
  }

  .hero-copy h1,
  .section-head h2,
  .final-cta-box h2 {
    font-size: 28px;
  }

  .subtitle,
  .section-head p,
  .final-cta-box p {
    font-size: 16px;
  }

  .card {
    padding: 22px 18px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }
}
.highlight-orange {
  color: var(--brand-orange);
}

.highlight-lilac {
  color: var(--brand-lilac);
}
.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 30px auto 0;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.28);
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}