.hero {
  display: grid;
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: 96px 24px;
  background:
    linear-gradient(120deg, rgba(37, 99, 235, 0.12), rgba(20, 184, 166, 0.10)),
    radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.18), transparent 32%),
    var(--color-bg);
}

.hero-content {
  width: min(960px, 100%);
  margin: 0 auto;
}

.lead {
  max-width: 680px;
  color: var(--color-muted);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  margin-bottom: 30px;
}

.contact-box {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  min-width: min(420px, 100%);
  padding: 22px 24px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.contact-box span {
  color: var(--color-muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-box a {
  overflow-wrap: anywhere;
  font-size: 1.2rem;
  font-weight: 800;
}

.note {
  max-width: 720px;
  color: var(--color-muted);
  margin-top: 20px;
  margin-bottom: 0;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.faq-item {
  min-height: 180px;
  padding: 22px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 8px;
}

.faq-item p {
  color: var(--color-muted);
  margin-bottom: 0;
}

@media (max-width: 820px) {
  .faq-list {
    grid-template-columns: 1fr;
  }

  .faq-item {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: auto;
    padding: 72px 20px;
  }
}
