:root {
  --accent: #ff914d;
  --accent-2: #ff8a33;
  --bg-1: #241b16;
  --bg-2: #161210;
  --bg-3: #090909;
  --text-muted: #e8e8e8;
  --text-dim: #a1a1aa;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: radial-gradient(circle, var(--bg-1) 0%, var(--bg-2) 50%, var(--bg-3) 100%);
  color: #fff;
  font-family: "Manrope", sans-serif;
  -webkit-font-smoothing: antialiased;
}

main {
  max-width: 720px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}

.hero {
  text-align: center;
}

.eyebrow {
  font-family: "Manrope", sans-serif;
  font-weight: 900;
  font-size: 18px;
  line-height: 24px;
  color: #fff;
  margin: 0 0 16px;
}

.hero-heading {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 40px;
  line-height: 1.15;
  margin: 0 0 20px;
}

.accent {
  color: var(--accent);
}

.hero-sub {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
  color: var(--text-muted);
  margin: 0 0 28px;
}

.video-wrap {
  margin: 0 0 24px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.guarantee {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  margin: 0 0 24px;
}

.scheduler-wrap {
  width: 100%;
  text-align: left;
  border-radius: 8px;
  overflow: hidden;
}

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  padding: 16px 32px;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}

.btn-primary:hover {
  background: var(--accent-2);
  transform: translateY(-1px);
}

.results {
  text-align: center;
  margin-top: 72px;
}

.results-heading {
  font-family: "Manrope", sans-serif;
  font-weight: 900;
  font-size: 36px;
  margin: 0 0 12px;
}

.results-sub {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  color: var(--text-dim);
  margin: 0 0 40px;
}

.gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 56px;
}

.gallery img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.final-cta h3 {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.3;
  margin: 0 0 24px;
}

.testimonials {
  text-align: center;
  margin-top: 72px;
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.video-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.video-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #1a1a1a;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.play-button {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 64px;
  height: 64px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}

.play-button:hover {
  background: var(--accent);
  transform: scale(1.05);
}

.video-caption {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--text-muted);
  margin: 0;
}

@media (min-width: 640px) {
  .hero-heading {
    font-size: 48px;
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
  }

  .video-grid {
    grid-template-columns: 1fr 1fr;
  }
}
