.voice-landing-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, 0.65fr);
  align-items: center;
  gap: 34px;
  padding: 34px;
  border: 1px solid rgba(232, 111, 84, 0.22);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 253, 249, 0.98), rgba(255, 239, 230, 0.92));
  box-shadow: var(--shadow);
}

.voice-landing-hero h1 {
  margin-top: 10px;
}

.voice-landing-hero .lead {
  margin-top: 18px;
  font-size: 17px;
}

.voice-primary-cta {
  margin-top: 22px;
}

.voice-hero-art {
  position: relative;
  min-height: 250px;
  display: grid;
  place-items: center;
}

.voice-hero-art img {
  width: min(100%, 260px);
  aspect-ratio: 1;
  border-radius: 38%;
  object-fit: cover;
  box-shadow: 0 18px 44px rgba(82, 67, 73, 0.14);
}

.voice-wave {
  position: absolute;
  right: 8px;
  bottom: 16px;
  height: 62px;
  min-width: 118px;
  border: 5px solid rgba(255, 253, 249, 0.94);
  border-radius: 999px;
  background: var(--coral);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  box-shadow: 0 10px 24px rgba(189, 79, 58, 0.22);
}

.voice-wave span {
  width: 5px;
  border-radius: 999px;
  background: #fffdf9;
}

.voice-wave span:nth-child(1),
.voice-wave span:nth-child(5) {
  height: 14px;
}

.voice-wave span:nth-child(2),
.voice-wave span:nth-child(4) {
  height: 28px;
}

.voice-wave span:nth-child(3) {
  height: 42px;
}

.voice-benefits {
  margin-block: 20px 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.voice-benefits article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
}

.voice-benefits strong {
  display: block;
  color: #423b47;
  font-size: 15px;
}

.voice-benefits p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.voice-presets {
  margin: 0 0 34px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
}

.voice-presets h2 {
  margin: 8px 0 0;
  color: #423b47;
}

.voice-presets > div:first-child > p:last-child {
  margin: 10px 0 0;
  color: var(--muted);
}

.voice-preset-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.voice-preset-list a {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: center;
  padding: 14px 16px;
  border: 1px solid rgba(232, 111, 84, 0.26);
  border-radius: 18px;
  background: rgba(255, 239, 230, 0.56);
  color: #5d3f44;
  font-weight: 750;
  line-height: 1.45;
  text-align: center;
  text-decoration: none;
}

.voice-preset-list a:hover,
.voice-preset-list a:focus-visible {
  border-color: var(--coral);
  background: rgba(255, 239, 230, 0.92);
  color: #3f2d32;
}

@media (max-width: 680px) {
  .voice-landing-hero {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .voice-hero-art {
    min-height: 230px;
  }

  .voice-benefits {
    grid-template-columns: 1fr;
  }

  .voice-presets {
    padding: 22px;
  }

  .voice-preset-list {
    grid-template-columns: 1fr;
  }

  .voice-preset-list a {
    min-height: 58px;
    justify-content: flex-start;
    text-align: left;
  }
}
