/* ==========================================================================
   Pakkettenoverzicht (shortcode [pakkettenoverzicht])
   ========================================================================== */

.nhp-section {
  --nhp-cream: #f5f0e8;
  --nhp-charcoal: #231e1a;
  --nhp-bronze: #a77752;
  --nhp-border: rgba(35, 30, 26, 0.12);
  --nhp-muted: rgba(35, 30, 26, 0.65);
  --nhp-cream-muted: rgba(245, 240, 232, 0.7);
  --nhp-cream-border: rgba(245, 240, 232, 0.1);
  --nhp-cream-text: rgba(245, 240, 232, 0.85);

  background-color: var(--nhp-cream);
  font-family: 'Inter', sans-serif;
}

.nhp-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 48px clamp(32px, 5vw, 64px);
}

/* Sectiekop */
.nhp-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 40px;
}

.nhp-header__left {
  flex: 1 1 auto;
  min-width: 0;
}

.nhp-header__kicker {
  margin: 0 0 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--nhp-bronze);
}

.nhp-header__title {
  margin: 0;
  font-family: 'Raleway', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--nhp-charcoal);
}

.nhp-header__intro {
  flex: 0 1 420px;
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--nhp-muted);
}

/* Grid */
.nhp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

/* Kaart */
.nhp-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-radius: 20px;
  border: 1px solid var(--nhp-border);
  background: #fff;
  transition: border-color 300ms ease, box-shadow 300ms ease, transform 300ms ease;
}

.nhp-card:hover {
  border-color: var(--nhp-bronze);
  box-shadow: 0 12px 32px -12px rgba(35, 30, 26, 0.18);
  transform: translateY(-4px);
}

.nhp-card__body {
  flex: 1 1 auto;
}

.nhp-card__kicker {
  margin: 0 0 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--nhp-bronze);
}

.nhp-card__title {
  margin: 0 0 10px;
  font-family: 'Raleway', sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--nhp-charcoal);
}

.nhp-card__desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--nhp-muted);
}

.nhp-card__divider {
  margin: 20px 0;
  border: 0;
  border-top: 1px solid var(--nhp-border);
}

.nhp-card__extra {
  margin: 12px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--nhp-muted);
}

/* Highlight variant */
.nhp-card--highlight {
  border: none;
  padding-top: 38px;
  background-color: var(--nhp-charcoal);
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.35);
}

.nhp-card--highlight:hover {
  border: none;
  box-shadow: 0 24px 48px -18px rgba(0, 0, 0, 0.4);
}

.nhp-card--highlight .nhp-card__title {
  color: var(--nhp-cream);
}

.nhp-card--highlight .nhp-card__desc,
.nhp-card--highlight .nhp-card__extra {
  color: var(--nhp-cream-muted);
}

.nhp-card--highlight .nhp-card__divider {
  border-top-color: var(--nhp-cream-border);
}

.nhp-card--highlight .nhp-feature__label {
  color: var(--nhp-cream-text);
}

.nhp-badge {
  position: absolute;
  top: -22px;
  left: 28px;
  z-index: 1;
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background-color: var(--nhp-bronze);
  color: var(--nhp-cream);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* Features */
.nhp-features {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nhp-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 10px;
}

.nhp-feature:last-child {
  margin-bottom: 0;
}

.nhp-feature__icon {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  color: var(--nhp-bronze);
}

.nhp-feature__label {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(35, 30, 26, 0.85);
}

/* CTA */
.nhp-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 24px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
  transition: background-color 300ms ease, color 300ms ease, border-color 300ms ease;
}

.nhp-cta--outline {
  border: 1px solid var(--nhp-bronze);
  background: transparent;
  color: var(--nhp-bronze);
}

.nhp-cta--outline:hover {
  background-color: var(--nhp-bronze);
  color: var(--nhp-cream);
}

.nhp-cta--solid {
  border: 1px solid var(--nhp-bronze);
  background-color: var(--nhp-bronze);
  color: var(--nhp-cream);
}

.nhp-cta--solid:hover {
  background-color: #8f6344;
  border-color: #8f6344;
  color: var(--nhp-cream);
}

.nhp-cta__text {
  flex: 1 1 auto;
}

.nhp-cta__icon {
  flex: 0 0 auto;
}

/* Tablet: 2 kolommen */
@media (min-width: 641px) {
  .nhp-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Desktop: 4 kolommen */
@media (min-width: 1024px) {
  .nhp-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Mobiel */
@media (max-width: 640px) {
  .nhp-container {
    padding: 32px 20px;
  }

  .nhp-header {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
  }

  .nhp-header__intro {
    flex-basis: auto;
  }

  .nhp-card {
    padding: 22px;
  }

  .nhp-card--highlight {
    padding-top: 32px;
  }

  .nhp-badge {
    top: -18px;
    left: 22px;
  }
}
