/* ═══════ BENEFITS ═══════ */
.benefits {
  padding: 20px clamp(20px, 4vw, 60px) 60px;
  background: var(--cream);
}
.benefits-inner {
  max-width: 800px;
  margin: 0 auto;
}
.benefits-heading {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 24px;
  text-align: center;
}
.benefits-heading em { font-style: italic; color: #5B7A5E; }
.benefits-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: calc(0.95rem + 2px);
  color: var(--text-secondary);
  line-height: 1.7;
}
.benefits-list li::before {
  content: none;
}
.benefits-check {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  position: relative;
  top: -2px;
}
.benefits-contact {
  text-align: center;
  margin-top: 32px;
  font-size: calc(0.95rem + 2px);
  color: var(--text-secondary);
}
.benefits-contact a {
  color: var(--plum);
  font-weight: 600;
  text-decoration: none;
}

/* ═══════ VIDEO SECTION ═══════ */
.video-section {
  padding: 60px clamp(20px, 4vw, 60px) 80px;
  background: var(--cream-warm);
}
.video-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.video-inner .section-heading {
  margin-bottom: 32px;
}
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
