* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #f5f7fa;
  color: #333;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1rem;
  text-align: center;
}

.hero {
  max-width: 900px;
  width: 100%;
}

.headline {
  font-size: 2rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 0.75rem;
}

.subheadline {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2rem;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.2);
  background: #000;
}

.sales-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 10;
}

.video-overlay button {
  background: #ff4a3d;
  color: #fff;
  font-size: 1.4rem;
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.video-overlay button:hover {
  background: #e63a2d;
}

.form-section {
  margin-top: 3rem;
  max-width: 600px;
  width: 100%;
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
}

.footer {
  background: #111;
  color: #aaa;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .headline {
    font-size: 1.6rem;
  }
  .form-section {
    padding: 1.5rem;
  }
}
