.hero {
  position: relative;
  min-height: 80vh;
  width: 100%;
  background-image: url("/static/images/banner1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--bg-main);
  opacity: 0.45;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  padding: 0 2rem;
  color: var(--text-primary);
}

.hero .hero-ctas .btn {
  background: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
}

.how-card .btn {
  background: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
}

/* Hover state — same behavior as hero */
.how-card .btn:hover {
  background: var(--bg-highlight);
  transform: translateY(-1px);
}

/* Kill primary/secondary visual differences here too */
.how-card .btn-primary,
.how-card .btn-secondary {
  background: var(--bg-card);
  color: var(--text-primary);
  border-color: var(--border-subtle);
}