.trial-hero {
  padding-bottom: 42px;
}

.hero-with-product {
  overflow: hidden;
}

.benefits {
  display: grid;
  gap: 10px;
  margin: 32px auto 30px;
  max-width: 520px;
}

.benefit-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 18px;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(10px);
  font-weight: 800;
  font-size: 0.88rem;
}

.benefit-pill i,
.benefit-pill svg {
  color: var(--orange);
}

.steps-section {
  padding-top: 34px;
}

.service-strip {
  display: grid;
  gap: 10px;
  width: min(100%, 760px);
  margin: 34px auto 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(20, 20, 20, 0.18);
  backdrop-filter: blur(14px);
}

.service-strip span {
  color: var(--muted);
  font-size: 0.84rem;
}

.service-strip strong {
  color: var(--text);
}

.section-title {
  margin: 0 0 26px;
  text-align: center;
  font-size: clamp(1.55rem, 7vw, 1.95rem);
  line-height: 1.15;
}

.steps-grid {
  display: grid;
  gap: 16px;
  max-width: 704px;
  margin: 0 auto;
}

.step-card {
  min-height: 196px;
  padding: 24px 22px;
  text-align: center;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.step-card:hover {
  border-color: rgba(255, 122, 19, 0.34);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 13px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  font-weight: 900;
  font-size: 1.12rem;
}

.step-card svg {
  color: var(--orange);
  width: 28px;
  height: 28px;
  margin-bottom: 12px;
}

.step-card h3 {
  margin: 0 0 10px;
  font-size: 1.02rem;
}

.step-card p {
  max-width: 190px;
  margin: 0 auto;
  color: var(--muted);
}

.warning {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  max-width: 704px;
  margin: 32px auto 0;
  padding: 14px 18px;
  color: var(--yellow);
  border: 1px solid rgba(255, 204, 24, 0.32);
  border-radius: var(--radius);
  background: rgba(255, 204, 24, 0.06);
  font-size: 0.78rem;
  font-weight: 700;
}

@media (min-width: 720px) {
  .benefits {
    grid-template-columns: repeat(3, 1fr);
    max-width: 512px;
  }

  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .trial-hero {
    padding-bottom: 34px;
  }
}
