/* ==========================================================================
   Home Page Specific Styles
   ========================================================================== */

/* ==========================================================================
   HERO (video on desktop, fallback image on mobile)
   ========================================================================== */
/* ==========================================================================
   HERO SECTION
   ========================================================================== */
/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

/* Desktop video background */
.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  filter: saturate(110%) contrast(105%) brightness(85%);
  z-index: 0;
}

/* Gradient overlay above video/image */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 420px at 70% 20%, rgba(59,130,246,.20), transparent 60%),
    linear-gradient(
      to bottom,
      rgba(7,18,32,.10) 0%,
      rgba(7,18,32,.55) 60%,
      var(--bg) 100%
    );
  z-index: 1;
}

/* Hero content container */
.hero .center {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 16px;
  max-width: 980px;
}

/* Headline */
.hero h1 {
  font-size: clamp(30px, 4.5vw, 56px);
  margin-bottom: 10px;
}

/* Subtext */
.hero p {
  font-size: clamp(15px, 2vw, 18px);
  margin-bottom: 16px;
  color: var(--muted);
}

/* Call-to-action wrapper */
.hero .cta-wrap {
  margin-top: 6px;
}

/* ==========================================================================
   MOBILE BEHAVIOR
   - Hide video, show fallback image
   ========================================================================== */
@media (max-width: 768px) {
  .hero video {
    display: none;
  }

  .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url("/assets/img/LongPauseMedia_homeHeroBG3.jpg") 92%/cover no-repeat;
    display: block;
    z-index: 0;
  }
}

/* ==========================================================================
   VALUE PROP
   ========================================================================== */
.value-prop {
  text-align: center;
  padding: 60px 0;
}

.value-prop h2 {
  margin-bottom: 16px;
}

.value-prop p {
  margin-bottom: 20px;
}

/* ==========================================================================
   HIGHLIGHTS (3 column grid)
   ========================================================================== */
.highlights .grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.highlights h3 {
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .highlights .grid-3 {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* ==========================================================================
   LOGOS
   ========================================================================== */
.logos {
  text-align: center;
  padding: 40px 0;
}

.logos h3 {
  margin-bottom: 20px;
}

.logo-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 20px;
}

.logo-row img {
  max-height: 40px;
}

@media (max-width: 768px) {
  .logo-row {
    flex-wrap: wrap;
    gap: 20px;
  }
}

/* ==========================================================================
   FINAL CTA
   ========================================================================== */
.cta-final {
  text-align: center;
  padding: 60px 0;
}

.cta-final h2 {
  margin-bottom: 16px;
}

.cta-final p {
  margin-bottom: 20px;
}
