/* HERO (homepage only) */
.is-home .hero {
  position: relative;
  min-height: clamp(500px, 70vh, 700px);
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  overflow: hidden;
}

.is-home .hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(30deg, transparent 40%, rgba(255, 255, 255, 0.03) 40%, rgba(255, 255, 255, 0.03) 60%, transparent 60%),
    linear-gradient(60deg, transparent 40%, rgba(255, 255, 255, 0.02) 40%, rgba(255, 255, 255, 0.02) 60%, transparent 60%);
  background-size: 100px 100px;
  opacity: 0.5;
}

.is-home .hero-content {
  position: relative;
  z-index: 1;
  padding-top: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: var(--space-9);
  /* geen left/right padding → container regelt dat */
}

@media (max-width: 992px) {
  .is-home .hero-content {
    padding-top: 2rem;
    padding-bottom: 2.5rem;
  }
}

.is-home .hero-title {
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.is-home .hero-subtitle {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: var(--space-5);
}

.is-home .hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.is-home .hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5);
  margin-top: var(--space-6);
}

.is-home .hero-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
}

/* Section header (homepage sections) */
.is-home .section-header {
  text-align: center;
  margin-bottom: var(--space-8);
}

.is-home .section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--secondary);
  margin-bottom: var(--space-4);
}

.is-home .section-description {
  font-size: 1.125rem;
  color: var(--gray-600);
  margin-bottom: 0;
}

/* Card image placeholder used on home */
.is-home .card-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
}

/* Homepage-specific responsive tweaks */
@media (max-width: 992px) {
  .is-home .hero-cta {
    flex-direction: column;
  }

  .is-home .btn {
    width: 100%;
  }

  .is-home .hero {
  padding: 0;
}
