.sales-hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: center;
  background-color: var(--primary);
  overflow: hidden;
  padding: var(--space-xl) 0 80px;
}

/* ══════════════════════════════════════════
   BACKGROUND LAYERS
════════════════════════════════════════════ */

.sales-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* Dot grid */
.sales-hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,194,168,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,194,168,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Main teal glow — top right */
.sales-hero__bg-glow {
  position: absolute;
  top: -180px;
  right: -100px;
  width: 720px;
  height: 720px;
  background: radial-gradient(circle, rgba(0,194,168,0.14) 0%, transparent 65%);
}

/* Secondary glow — bottom left */
.sales-hero__bg-glow-2 {
  position: absolute;
  bottom: -160px;
  left: -80px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(0,194,168,0.07) 0%, transparent 65%);
}

/* Diagonal shape — right half */
.sales-hero__bg-shape {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  background: linear-gradient(
    150deg,
    rgba(0,194,168,0.06) 0%,
    transparent 55%
  );
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
}

/* Animated floating dots */
.sales-hero__dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sales-hero__dot {
  position: absolute;
  border-radius: 50%;
  background: var(--secondary);
  opacity: 0.15;
  animation: salesDotFloat ease-in-out infinite;
}
.sales-hero__dot:nth-child(1) {
  width: 6px; height: 6px;
  top: 14%; left: 9%;
  animation-duration: 10s; animation-delay: 0s;
}
.sales-hero__dot:nth-child(2) {
  width: 4px; height: 4px;
  top: 62%; left: 6%;
  animation-duration: 13s; animation-delay: 1.5s;
}
.sales-hero__dot:nth-child(3) {
  width: 7px; height: 7px;
  top: 32%; left: 32%;
  animation-duration: 11s; animation-delay: 0.8s;
}
.sales-hero__dot:nth-child(4) {
  width: 5px; height: 5px;
  top: 78%; left: 45%;
  animation-duration: 9s;  animation-delay: 2.5s;
}
.sales-hero__dot:nth-child(5) {
  width: 3px; height: 3px;
  top: 20%; left: 58%;
  animation-duration: 8s;  animation-delay: 0.3s;
}

@keyframes salesDotFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-20px); }
}

/* ══════════════════════════════════════════
   INNER GRID LAYOUT
════════════════════════════════════════════ */

.sales-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: var(--space-xl);
  align-items: center;
  width: 100%;
}

/* ══════════════════════════════════════════
   LEFT — CONTENT
════════════════════════════════════════════ */

.sales-hero__content {}

/* Eyebrow label */
.sales-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-secondary);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: var(--space-sm);
}
.sales-hero__eyebrow-line {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
  flex-shrink: 0;
}

/* Main title */
.sales-hero__title {
  font-family: var(--font-primary);
  font-size: clamp(2.3rem, 4vw, 3.8rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--white);
  letter-spacing: -0.025em;
  margin-bottom: var(--space-md);
}
.sales-hero__title em {
  font-style: normal;
  color: var(--secondary);
  position: relative;
  display: inline-block;
}
.sales-hero__title em::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), rgba(0,194,168,0));
  border-radius: 2px;
}

/* Description */
.sales-hero__desc {
  font-family: var(--font-secondary);
  font-size: clamp(0.93rem, 1.15vw, 1.02rem);
  line-height: 1.78;
  color: rgba(255,255,255,0.68);
  max-width: 480px;
  margin-bottom: var(--space-lg);
}

/* ── Stats strip ── */
.sales-hero__stats {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-lg);
  padding: 20px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(0,194,168,0.12);
  border-radius: var(--radius-md);
  backdrop-filter: blur(4px);
}
.sales-hero__stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.sales-hero__stat strong {
  font-family: var(--font-primary);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
  letter-spacing: -0.02em;
}
.sales-hero__stat span {
  font-family: var(--font-secondary);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
}
.sales-hero__stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 1px;
  flex-shrink: 0;
}

/* ── CTA buttons ── */
.sales-hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: var(--space-md);
}

.sales-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.2s, box-shadow 0.25s;
  white-space: nowrap;
}

/* Primary */
.sales-hero__btn--primary {
  background: var(--secondary);
  color: var(--primary);
  border: 1.5px solid var(--secondary);
  box-shadow: 0 4px 20px rgba(0,194,168,0.3);
}
.sales-hero__btn--primary:hover {
  background: #00d9bb;
  border-color: #00d9bb;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,194,168,0.45);
}

/* Outline */
.sales-hero__btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.22);
}
.sales-hero__btn--outline:hover {
  border-color: var(--secondary);
  color: var(--secondary);
  background: rgba(0,194,168,0.06);
  transform: translateY(-2px);
}

/* ── Trust badges ── */
.sales-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.sales-hero__trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  padding: 6px 14px;
  font-family: var(--font-secondary);
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  transition: border-color 0.25s, background 0.25s, color 0.25s;
}
.sales-hero__trust-badge:hover {
  border-color: rgba(0,194,168,0.4);
  background: rgba(0,194,168,0.07);
  color: var(--secondary);
}
.sales-hero__trust-badge svg {
  color: var(--secondary);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════
   RIGHT — VIDEO VISUAL
════════════════════════════════════════════ */

.sales-hero__visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.sales-hero__video-wrap {
  position: relative;
  width: 100%;
  max-width: 580px;
}

/* Floating pill — top center */
.sales-hero__pill {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--secondary);
  color: var(--primary);
  font-family: var(--font-primary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,194,168,0.4);
  letter-spacing: 0.04em;
}
.sales-hero__pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.5;
  animation: pillPulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pillPulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50%       { opacity: 0.9; transform: scale(1.25); }
}

/* 16:9 iframe wrapper */
.sales-hero__iframe-box {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #0a1628;
  box-shadow:
    0 32px 80px rgba(0,0,0,0.55),
    0 0 0 1px rgba(0,194,168,0.12);
  margin-top: 10px; /* space for pill */
}
.sales-hero__iframe-box iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Corner accent — top-left */
.sales-hero__corner {
  position: absolute;
  width: 52px;
  height: 52px;
  pointer-events: none;
  z-index: 3;
}
.sales-hero__corner--tl {
  top: 2px; /* accounts for pill space */
  left: -2px;
  border-top: 3px solid var(--secondary);
  border-left: 3px solid var(--secondary);
  border-radius: var(--radius-md) 0 0 0;
  margin-top: 10px; /* align with iframe-box */
}
.sales-hero__corner--br {
  bottom: -2px;
  right: -2px;
  border-bottom: 3px solid var(--secondary);
  border-right: 3px solid var(--secondary);
  border-radius: 0 0 var(--radius-md) 0;
}

/* Floating copilot badge — bottom left of video */
.sales-hero__copilot-badge {
  position: absolute;
  bottom: -18px;
  left: -22px;
  z-index: 4;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  min-width: 195px;
}
.sales-hero__copilot-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary), #1a3a5e);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  flex-shrink: 0;
}
.sales-hero__copilot-badge strong {
  display: block;
  font-family: var(--font-primary);
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
}
.sales-hero__copilot-badge span {
  font-family: var(--font-secondary);
  font-size: 0.72rem;
  color: var(--text-light);
  white-space: nowrap;
}

/* ── Scroll indicator ── */
.sales-hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.45;
  animation: scrollFloat 2.2s ease-in-out infinite;
}
.sales-hero__scroll span {
  font-family: var(--font-secondary);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
}
.sales-hero__scroll-line {
  width: 1.5px;
  height: 34px;
  background: linear-gradient(to bottom, var(--secondary), transparent);
  border-radius: 2px;
}
@keyframes scrollFloat {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

/* ══════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1100px) {
  .sales-hero__inner {
    gap: var(--space-lg);
  }
  .sales-hero__video-wrap {
    max-width: 100%;
  }
}

/* Stack at 900px */
@media (max-width: 900px) {
  .sales-hero {
    min-height: auto;
    padding: 100px 0 80px;
  }
  .sales-hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .sales-hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .sales-hero__desc {
    max-width: 100%;
  }
  .sales-hero__cta-group {
    justify-content: center;
  }
  .sales-hero__trust {
    justify-content: center;
  }
  .sales-hero__stats {
    justify-content: center;
  }
  .sales-hero__visual {
    justify-content: center;
    width: 100%;
  }
  .sales-hero__video-wrap {
    max-width: 560px;
    width: 100%;
  }
  /* Move bg shape off on tablet */
  .sales-hero__bg-shape { display: none; }

  /* Corner TL aligns with iframe on mobile */
  .sales-hero__corner--tl {
    top: 8px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .sales-hero {
    padding: 90px 0 70px;
    overflow: hidden;
  }

  .sales-hero__title {
    font-size: 2rem;
  }

  /* Stats: wrap to 2 columns inside the pill */
  .sales-hero__stats {
    flex-wrap: wrap;
    gap: 14px;
    padding: 16px 18px;
  }
  .sales-hero__stat-divider {
    display: none; /* hidden — wrapping makes dividers meaningless */
  }
  .sales-hero__stat {
    flex: 1 1 auto;
    min-width: 80px;
  }
  .sales-hero__stat strong {
    font-size: 1.3rem;
  }

  /* CTAs stack */
  .sales-hero__cta-group {
    flex-direction: column;
    width: 100%;
  }
  .sales-hero__btn {
    width: 100%;
    justify-content: center;
  }

  /* Trust badges wrap */
  .sales-hero__trust {
    justify-content: center;
    gap: 6px;
  }
  .sales-hero__trust-badge {
    font-size: 0.7rem;
    padding: 5px 11px;
  }

  /* Video wrap: no negative offset badges */
  .sales-hero__video-wrap {
    max-width: 100%;
  }

  /* Copilot badge: pull into flow */
  .sales-hero__copilot-badge {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 12px;
    min-width: auto;
    width: 100%;
    box-sizing: border-box;
    border-radius: var(--radius-sm);
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    text-align: left;
  }

  /* Corners: shrink */
  .sales-hero__corner {
    width: 34px;
    height: 34px;
  }

  /* Pill: keep centered but smaller */
  .sales-hero__pill {
    font-size: 0.68rem;
    padding: 6px 14px;
  }

  /* Hide scroll indicator on small screens */
  .sales-hero__scroll {
    display: none;
  }
}