/* ===================================================
   VideoDoc — Hero Section
   =================================================== */

.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-dark-2) 40%, #0d2e22 70%, #0f3d2a 100%);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 120px 24px 80px;
}

/* Decorative mesh / orb */
.hero::before {
  content: '';
  position: absolute; top: -20%; right: -10%;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,158,120,.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -15%; left: -5%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(24,109,86,.12) 0%, transparent 70%);
  pointer-events: none;
}

/* Grid pattern overlay */
.hero__grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(26,158,120,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,158,120,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.hero__inner {
  max-width: var(--max-width); margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
  position: relative; z-index: 1;
}

/* Left column */
.hero__content { }

.hero__badge {
  margin-bottom: 28px;
}

.hero__title {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 800; color: #fff;
  line-height: 1.1; margin-bottom: 24px;
  letter-spacing: -.02em;
}
.hero__title span {
  color: var(--brand-green-light);
  position: relative;
}
.hero__title span::after {
  content: '';
  position: absolute; bottom: 2px; left: 0; right: 0;
  height: 3px; background: var(--brand-green-light);
  border-radius: 2px; opacity: .4;
}

.hero__subtitle {
  font-size: 1.15rem; color: rgba(255,255,255,.72);
  line-height: 1.75; margin-bottom: 40px; max-width: 500px;
}

.hero__cta {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero__social-proof {
  display: flex; align-items: center; gap: 20px;
}
.hero__avatars {
  display: flex;
}
.hero__avatars span {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid var(--brand-dark);
  background: var(--brand-green);
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; font-weight: 700; color: #fff;
  margin-right: -8px;
}
.hero__avatars span:nth-child(2) { background: #1A9E78; }
.hero__avatars span:nth-child(3) { background: #0E4F3D; }
.hero__social-proof-text {
  font-size: .875rem; color: rgba(255,255,255,.6);
}
.hero__social-proof-text strong { color: #fff; }

/* Right column — visual mockup */
.hero__visual {
  position: relative; display: flex; justify-content: center;
}

.hero__mockup {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 24px;
  backdrop-filter: blur(8px);
  box-shadow: 0 32px 80px rgba(0,0,0,.4);
  width: 100%; max-width: 480px;
  animation: float 4s ease-in-out infinite;
}

.hero__mockup-header {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 20px; padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.hero__mockup-dots { display: flex; gap: 6px; }
.hero__mockup-dots span {
  width: 10px; height: 10px; border-radius: 50%;
}
.hero__mockup-dots span:nth-child(1) { background: #ff5f57; }
.hero__mockup-dots span:nth-child(2) { background: #febc2e; }
.hero__mockup-dots span:nth-child(3) { background: #28c840; }
.hero__mockup-title {
  font-size: .8rem; color: rgba(255,255,255,.4);
  font-family: var(--font-display);
  flex: 1; text-align: center;
}

.hero__video-thumb {
  width: 100%; aspect-ratio: 16/9;
  background: linear-gradient(135deg, #0E4F3D, #186D56);
  border-radius: var(--radius-md); margin-bottom: 20px;
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.hero__play-btn {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,255,255,.15);
  border: 2px solid rgba(255,255,255,.4);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
}
.hero__play-btn::after {
  content: ''; display: block;
  border-left: 18px solid #fff; border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  margin-left: 4px;
}
.hero__processing-bar {
  height: 4px; background: rgba(255,255,255,.1);
  border-radius: 4px; margin-bottom: 16px; overflow: hidden;
}
.hero__processing-fill {
  height: 100%; width: 72%; background: linear-gradient(90deg, var(--brand-green), var(--brand-green-light));
  border-radius: 4px; position: relative;
  animation: pulse 2s ease-in-out infinite;
}
.hero__status { font-size: .78rem; color: rgba(255,255,255,.5); margin-bottom: 16px; }
.hero__status span { color: var(--brand-green-light); font-weight: 600; }

.hero__outputs {
  display: flex; gap: 8px;
}
.hero__output-pill {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px; padding: 6px 12px;
  font-size: .75rem; color: rgba(255,255,255,.7);
}
.hero__output-pill svg,
.hero__output-pill .landing-icon { width: 14px; height: 14px; color: var(--brand-green-light); }

/* Floating badge */
.hero__float-badge {
  position: absolute; top: -16px; right: -16px;
  background: var(--brand-green-light); color: #fff;
  border-radius: var(--radius-md); padding: 12px 16px;
  font-family: var(--font-display); font-size: .8rem; font-weight: 700;
  box-shadow: 0 8px 24px rgba(26,158,120,.4);
}
.hero__float-badge-num {
  font-size: 1.4rem; font-weight: 800; display: block; line-height: 1;
}

@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero__visual { display: none; }
}
