.hero--info .hero__grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.85fr);
}

.hero--info .hero__visual {
  min-height: 360px;
  background: rgba(255, 255, 255, 0.18);
}

.hero--info .hero__visual img {
  min-height: 360px;
  object-fit: contain;
  padding: 28px;
}

.stats-grid,
.steps-grid,
.channels-grid {
  display: grid;
  gap: 24px;
}

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

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

.channels-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stat-card,
.step-card,
.channel-card,
.faq-card {
  padding: 28px;
}

.stat-card h3,
.step-card h3,
.channel-card h3,
.faq-card h3 {
  font-size: 22px;
  line-height: 1.2;
}

.stat-card p,
.step-card p,
.channel-card p,
.faq-card p {
  margin-top: 12px;
  color: var(--muted);
}

.step-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--brand-dark);
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 18px;
}

.info-list,
.contact-list,
.payment-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.info-list li,
.contact-list li,
.payment-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
}

.info-list li::before,
.contact-list li::before,
.payment-list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.82fr);
  gap: 24px;
  align-items: start;
}

.note-card {
  background: linear-gradient(180deg, rgba(147, 228, 141, 0.18), rgba(255, 255, 255, 0.98));
}

.note-card p + p {
  margin-top: 10px;
}

.contact-panel {
  display: grid;
  gap: 20px;
}

.contact-panel__row {
  display: grid;
  gap: 6px;
}

.contact-panel__label {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.56);
}

.contact-panel__value {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
}

.contact-panel__value--small {
  font-size: 18px;
}

.channel-card a:not(.btn) {
  color: #0a7eb6;
}

.cta-card--single {
  grid-template-columns: 1fr;
}

.cta-card--single .cta-form {
  max-width: 520px;
}

@media screen and (max-width: 1199px) {
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 959px) {
  .hero--info .hero__grid,
  .split-layout,
  .stats-grid,
  .channels-grid {
    grid-template-columns: 1fr;
  }

  .hero--info .hero__visual {
    min-height: 280px;
  }

  .hero--info .hero__visual img {
    min-height: 280px;
  }
}

@media screen and (max-width: 639px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .stat-card,
  .step-card,
  .channel-card,
  .faq-card {
    padding: 22px;
  }

  .contact-panel__value {
    font-size: 21px;
  }
}
