.home-hero {
  background: #ffffff;
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  min-height: 560px;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 46px 0 32px;
  text-align: center;
}

.hero-avatar {
  width: 148px;
  height: 148px;
  margin-bottom: 18px;
  border: 6px solid #eff6ff;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.hero-inner h1 {
  margin-bottom: 8px;
  font-size: 2.5rem;
}

.hero-subtitle {
  margin-bottom: 10px;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 750;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 20px;
}

.hero-actions,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.trust-row {
  margin-top: 22px;
}

.trust-row span {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #f8fafc;
  padding: 8px 10px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.home-section {
  padding: 44px 0;
}

.section-heading {
  margin-bottom: 18px;
}

.section-heading h2 {
  margin-bottom: 8px;
}

.below-grid-ad {
  margin-top: 12px;
}

.split-section {
  display: grid;
  gap: 24px;
  align-items: center;
}

.split-section img {
  width: min(100%, 320px);
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.text-link {
  font-weight: 750;
}

.category-grid {
  display: grid;
  gap: 12px;
}

.category-card {
  grid-template-columns: 1fr auto;
  align-items: center;
}

.latest-guides {
  padding-bottom: 64px;
}

@media (min-width: 720px) {
  .hero-inner {
    min-height: 620px;
  }

  .hero-inner h1 {
    font-size: 4rem;
  }

  .hero-avatar {
    width: 168px;
    height: 168px;
  }

  .split-section {
    grid-template-columns: 1fr 320px;
  }

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