/* Soundwave — grey bg with wave illustration */
.hero--soundwave {
  background: var(--color-background);
  padding: 80px 0 84px;
  position: relative;
  overflow: hidden;
  min-height: auto;
}

.hero--soundwave .container {
  flex-direction: column;
  text-align: center;
  align-items: center;
  gap: 0;
}

.hero__wave {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 373px;
  height: 300px;
  color: rgba(252, 80, 0, 0.1);
  pointer-events: none;
  z-index: 0;
}

.hero__wave svg {
  width: 100%;
  height: 100%;
}

.hero--soundwave .hero__content {
  position: relative;
  z-index: 1;
}

.hero--soundwave .hero__title {
  font-size: 58px;
  line-height: 64px;
  font-weight: 600;
  color: var(--color-dark-blue);
  max-width: 1054px;
  margin: 0 auto 16px;
}

.hero--soundwave .hero__subtitle {
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: var(--color-text-primary);
  max-width: 1000px;
  margin: 0 auto 62px;
}

.hero--soundwave .hero__buttons {
  justify-content: center;
  gap: 40px;
}

.hero--soundwave .hero__subtitle {
  margin-bottom: 62px;
}

.hero--soundwave .hero__secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  border-radius: 8px;
  background: #116CA64D;
  border: none;
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 18px;
  font-weight: 400;
  color: var(--color-dark-blue);
  text-decoration: none;
}

.hero--soundwave .hero__secondary:hover {
  background: #116CA66B;
}

.hero--soundwave .hero__secondary[href^="tel:"]::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%2322262C' stroke-width='2'%3E%3Cpath d='M22 16.92v3a2 2 0 01-2.18 2 19.79 19.79 0 01-8.63-3.07 19.5 19.5 0 01-6-6 19.79 19.79 0 01-3.07-8.67A2 2 0 014.11 2h3a2 2 0 012 1.72c.127.96.361 1.903.7 2.81a2 2 0 01-.45 2.11L8.09 9.91a16 16 0 006 6l1.27-1.27a2 2 0 012.11-.45c.907.339 1.85.573 2.81.7A2 2 0 0122 16.92z'/%3E%3C/svg%3E") no-repeat center / contain;
  flex-shrink: 0;
}

/* Soundwave Alt — orange secondary button */
.hero--soundwave-alt .hero__secondary {
  background: #FB591F1A;
  color: var(--color-primary);
}

.hero--soundwave-alt .hero__secondary:hover {
  background: #FB591F33;
}

.hero--soundwave-alt .hero__secondary--phone::before,
.hero--soundwave-alt .hero__secondary[href^="tel:"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23FC5000' stroke-width='2'%3E%3Cpath d='M22 16.92v3a2 2 0 01-2.18 2 19.79 19.79 0 01-8.63-3.07 19.5 19.5 0 01-6-6 19.79 19.79 0 01-3.07-8.67A2 2 0 014.11 2h3a2 2 0 012 1.72c.127.96.361 1.903.7 2.81a2 2 0 01-.45 2.11L8.09 9.91a16 16 0 006 6l1.27-1.27a2 2 0 012.11-.45c.907.339 1.85.573 2.81.7A2 2 0 0122 16.92z'/%3E%3C/svg%3E");
}

@media (max-width: 767px) {
  .hero--soundwave,
  .hero--soundwave-alt {
    padding: 40px 0;
  }

  .hero--soundwave .hero__title,
  .hero--soundwave-alt .hero__title {
    font-size: 32px;
    line-height: 36px;
  }

  .hero--soundwave .hero__subtitle,
  .hero--soundwave-alt .hero__subtitle {
    margin-bottom: 32px;
  }

  .hero__wave {
    width: 200px;
    height: 150px;
  }

  .hero--soundwave .hero__buttons,
  .hero--soundwave-alt .hero__buttons {
    flex-direction: column;
    gap: 16px;
  }
}
