.hero-sales {
  position: relative;
  padding: 120px 0 32px;
  overflow: hidden;
  min-height: 100svh;
  display: flex;
  align-items: center;
}

.hero-sales::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(0, 217, 255, 0.1), transparent 30%),
    radial-gradient(
      circle at 85% 30%,
      rgba(34, 211, 238, 0.08),
      transparent 28%
    );
  pointer-events: none;
}

.hero-sales-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 56px;
}

.hero-sales-content {
  max-width: 620px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  margin-bottom: 22px;
  border-radius: 999px;
  border: 1px solid rgba(0, 247, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
  color: #dffcff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-sales-content h1 {
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
  max-width: 12ch;
}

.hero-sales-content h1 span {
  color: var(--neon);
}

.hero-description {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 14px;
}

.hero-highlight-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.hero-highlight-list span {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #d9e7ff;
  font-size: 13px;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.btn-hero-primary,
.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.btn-hero-primary {
  color: #041018;
  background: linear-gradient(90deg, var(--neon), var(--neon-strong));
  box-shadow:
    0 0 20px rgba(0, 217, 255, 0.45),
    0 10px 30px rgba(0, 217, 255, 0.18);
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 28px rgba(0, 217, 255, 0.75),
    0 16px 40px rgba(0, 217, 255, 0.22);
}

.btn-hero-secondary {
  color: #e8f7ff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
}

.btn-hero-secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 247, 255, 0.45);
  color: var(--neon);
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: #97a7c7;
  font-size: 11px;
}

.hero-trust-row span {
  position: relative;
}

.hero-trust-row span:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-50%);
}

.hero-sales-visual {
  display: flex;
  justify-content: center;
}

.hero-visual-card {
  position: relative;
  width: 100%;
  max-width: 440px;
  padding: 16px;
  border-radius: 30px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(0, 247, 255, 0.1);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.35),
    0 0 80px rgba(0, 217, 255, 0.08);
  backdrop-filter: blur(10px);
}

.hero-visual-tag {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 247, 255, 0.1);
  color: #bffcff;
  font-size: 11px;
  font-weight: 600;
}

.hero-visual-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.35));
}

.hero-mini-proof {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 10px;
}

.proof-item {
  padding: 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.proof-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  color: #fff;
}

.proof-item span {
  display: block;
  font-size: 10px;
  line-height: 1.5;
  color: var(--muted);
}

@media (max-width: 768px) {
  .hero-sales {
    padding: 90px 0 70px;
  }

  .hero-sales-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-sales-content {
    max-width: 100%;
    text-align: center;
  }

  .hero-sales-content h1 {
    max-width: 100%;
    font-size: clamp(30px, 10vw, 44px);
  }

  .hero-description {
    font-size: 15px;
    max-width: 100%;
  }

  .hero-highlight-list {
    justify-content: center;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    max-width: 320px;
  }

  .hero-trust-row {
    justify-content: center;
  }

  .hero-visual-card {
    padding: 18px;
    border-radius: 24px;
  }

  .hero-mini-proof {
    grid-template-columns: 1fr;
  }
}
