/* =====================================================
   EMPLOYER BRANDING — eb-* components
   Naast sirclepakket.css gebruikt
   ===================================================== */

/* 2×2 PILLAR GRID — voor SIRCLE Model + Kanalen, ipv lelijke 3+1 */
.sp-pillars.sp-pillars--quad {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 56px auto 0;
}

.sp-pillars.sp-pillars--quad .sp-pillar {
  max-width: none;
  flex: none;
  padding: 36px 32px;
}

@media (max-width: 720px) {
  .sp-pillars.sp-pillars--quad {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .sp-pillars.sp-pillars--quad .sp-pillar {
    padding: 28px 24px;
  }
}

/* ACTION STRIP (3 foto's, visuele break tussen secties) */
.eb-action-strip {
  background: #0C180F;
  padding: 0;
  overflow: hidden;
}

.eb-action-strip__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4px;
  max-width: 1600px;
  margin: 0 auto;
}

.eb-action-strip__item {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.eb-action-strip__item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.04);
  transition: transform .8s cubic-bezier(0.16, 1, 0.3, 1);
}

.eb-action-strip__item:hover img {
  transform: scale(1.04);
}

@media (max-width: 760px) {
  .eb-action-strip__grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }
  .eb-action-strip__item {
    aspect-ratio: 3 / 2;
  }
}

/* APPROACHES — 3 manieren waarop we het verhaal vertellen */
.eb-approaches {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.eb-approach {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 36px 32px;
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}

.eb-approach:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(212,175,100,0.3);
  transform: translateY(-4px);
}

.eb-approach__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(212,175,100,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.eb-approach__icon svg {
  width: 24px;
  height: 24px;
  color: #d4af64;
}

.eb-approach__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.3;
}

.eb-approach__text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
  margin: 0;
}

.eb-approaches__close {
  margin: 40px auto 0;
  max-width: 720px;
  text-align: center;
  font-size: 0.98rem;
  color: rgba(255,255,255,0.7);
  font-style: italic;
}

@media (max-width: 1000px) {
  .eb-approaches { grid-template-columns: 1fr; gap: 16px; }
  .eb-approach { padding: 28px 24px; }
}

/* CASES — betere crop bij landscape featured images */
.eb-cases {
  margin-top: 48px;
}

.eb-cases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
}

.eb-case {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  background: #0C180F;
  transition: transform .35s ease, box-shadow .35s ease;
}

.eb-case:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}

.eb-case img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}

.eb-case:hover img { transform: scale(1.06); }

.eb-case::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(12,24,15,0.92) 100%);
}

.eb-case__meta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 22px 22px 24px;
  z-index: 2;
}

.eb-case__label {
  font-size: 0.7rem;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #d4af64;
  font-weight: 700;
  margin: 0 0 6px;
}

.eb-case__name {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.25;
  margin: 0;
}

@media (max-width: 900px) {
  .eb-cases__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .eb-cases__grid { grid-template-columns: 1fr; }
}

/* ROUTES (twee of drie pakketten naast elkaar) */
.eb-routes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.eb-routes--three {
  grid-template-columns: 1fr 1fr 1fr;
}

@media (max-width: 1100px) {
  .eb-routes--three {
    grid-template-columns: 1fr 1fr;
  }
}

.eb-route {
  position: relative;
  background: #fff;
  border-radius: 24px;
  padding: 48px 40px;
  border: 1px solid rgba(12,24,15,0.08);
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 36px rgba(12,24,15,0.04);
}

.eb-route--featured {
  background: linear-gradient(180deg, #0F1F12 0%, #0C180F 100%);
  border-color: rgba(212,175,100,0.35);
  color: #fff;
  box-shadow: 0 20px 60px rgba(12,24,15,0.18);
}

.eb-route__badge {
  display: inline-block;
  background: rgba(12,24,15,0.06);
  color: #5a4a28;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 18px;
  align-self: flex-start;
}

.eb-route__badge--featured {
  background: linear-gradient(135deg, #d4af64, #b8935a);
  color: #0C180F;
}

.eb-route__title {
  font-size: 2.2rem;
  font-weight: 700;
  margin: 0 0 4px;
  color: inherit;
}

.eb-route--featured .eb-route__title { color: #fff; }

.eb-route__tag {
  font-size: 0.95rem;
  color: rgba(12,24,15,0.6);
  margin: 0 0 24px;
  font-weight: 400;
}

.eb-route--featured .eb-route__tag { color: rgba(255,255,255,0.7); }

.eb-route__price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 6px;
}

.eb-route__amount {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: #0C180F;
}

.eb-route--featured .eb-route__amount { color: #d4af64; }

.eb-route__period {
  font-size: 1rem;
  color: #666;
  font-weight: 400;
}

.eb-route--featured .eb-route__period { color: rgba(255,255,255,0.6); }

.eb-route__lead {
  font-size: 0.92rem;
  color: rgba(12,24,15,0.65);
  margin: 0 0 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(12,24,15,0.08);
}

.eb-route--featured .eb-route__lead {
  color: rgba(255,255,255,0.7);
  border-bottom-color: rgba(255,255,255,0.12);
}

.eb-route__list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.eb-route__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  line-height: 1.45;
  color: rgba(12,24,15,0.85);
}

.eb-route--featured .eb-route__list li { color: rgba(255,255,255,0.88); }

.eb-route__list li svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: #d4af64;
  margin-top: 2px;
}

.eb-route__note {
  font-size: 0.82rem;
  color: rgba(12,24,15,0.55);
  margin: 0 0 24px;
  font-style: italic;
}

.eb-route--featured .eb-route__note { color: rgba(255,255,255,0.55); }

.eb-route__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  background: #0C180F;
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  margin-top: auto;
}

.eb-route__cta:hover {
  background: #123820;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(12,24,15,0.18);
}

.eb-route__cta--featured {
  background: #d4af64;
  color: #0C180F;
}

.eb-route__cta--featured:hover {
  background: #c49a50;
  box-shadow: 0 12px 32px rgba(212,175,100,0.32);
}

.eb-route__bottom-note {
  margin-top: 32px;
  text-align: center;
  font-size: 0.92rem;
  color: rgba(12,24,15,0.6);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* MONTHLY MANAGEMENT (3 cards onder de twee routes) */
.eb-monthly {
  margin-top: 64px;
  padding: 48px 36px;
  background: rgba(12,24,15,0.04);
  border-radius: 24px;
  border: 1px dashed rgba(12,24,15,0.15);
}

.eb-monthly__header {
  text-align: center;
  margin-bottom: 32px;
}

.eb-monthly__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #8a6a2a;
  font-weight: 600;
  margin-bottom: 10px;
}

.eb-monthly__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 12px;
  color: #0C180F;
}

.eb-monthly__text {
  font-size: 0.95rem;
  color: rgba(12,24,15,0.7);
  margin: 0 auto;
  max-width: 680px;
  line-height: 1.55;
}

.eb-monthly__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 24px;
}

.eb-monthly__card {
  background: #fff;
  border-radius: 14px;
  padding: 22px 22px 24px;
  border: 1px solid rgba(12,24,15,0.06);
}

.eb-monthly__card-label {
  font-size: 0.7rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #8a7a52;
  font-weight: 600;
  margin: 0 0 8px;
}

.eb-monthly__card-price {
  font-size: 1.05rem;
  color: #0C180F;
  margin: 0 0 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(12,24,15,0.06);
}

.eb-monthly__card-price strong {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0C180F;
}

.eb-monthly__card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.eb-monthly__card li {
  font-size: 0.88rem;
  color: rgba(12,24,15,0.78);
  line-height: 1.45;
  position: relative;
  padding-left: 14px;
}

.eb-monthly__card li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #d4af64;
}

.eb-monthly__total {
  text-align: center;
  font-size: 0.95rem;
  color: rgba(12,24,15,0.7);
  margin: 16px 0 0;
}

.eb-monthly__total strong {
  color: #8a6a2a;
}

@media (max-width: 900px) {
  .eb-monthly__grid { grid-template-columns: 1fr; gap: 12px; }
  .eb-monthly { padding: 32px 24px; }
}

@media (max-width: 768px) {
  .eb-routes { grid-template-columns: 1fr; gap: 18px; }
  .eb-route { padding: 36px 28px; }
  .eb-route__amount { font-size: 2.4rem; }
}

/* SECTOR PILLS (6 sector cards) */
.eb-sectors {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}

.eb-sector-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 28px 28px 32px;
  border: 1px solid rgba(12,24,15,0.08);
  text-decoration: none;
  color: inherit;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  display: flex;
  flex-direction: column;
}

.eb-sector-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212,175,100,0.4);
  box-shadow: 0 14px 36px rgba(12,24,15,0.08);
}

.eb-sector-card__label {
  font-size: 0.72rem;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: #8a7a52;
  font-weight: 600;
  margin-bottom: 8px;
}

.eb-sector-card__title {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: #0C180F;
}

.eb-sector-card__text {
  font-size: 0.92rem;
  color: rgba(12,24,15,0.65);
  line-height: 1.5;
  margin: 0 0 16px;
  flex-grow: 1;
}

.eb-sector-card__arrow {
  font-size: 1.4rem;
  color: #d4af64;
  font-weight: 600;
  align-self: flex-end;
}

@media (max-width: 900px) {
  .eb-sectors { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .eb-sectors { grid-template-columns: 1fr; }
}

/* SECTOR SECTION (op sector-pagina's) */
.eb-sector-section {
  position: relative;
  padding: 96px 0;
  background: linear-gradient(180deg, #0F1F12 0%, #0C180F 100%);
  color: #fff;
  overflow: hidden;
}

.eb-sector-section__glow {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,100,0.18) 0%, transparent 65%);
  top: -180px;
  right: -180px;
  filter: blur(40px);
  pointer-events: none;
}

.eb-sector-section__container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.eb-sector-section__eyebrow {
  font-size: 0.74rem;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #d4af64;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 14px;
}

.eb-sector-section__title {
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 700;
  margin: 0 0 18px;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.01em;
  max-width: 720px;
}

.eb-sector-section__intro {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
  max-width: 720px;
  margin: 0 0 56px;
}

.eb-sector-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}

.eb-sector-section__card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 36px 32px;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.eb-sector-section__card-label {
  font-size: 0.72rem;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: #d4af64;
  font-weight: 600;
  margin-bottom: 12px;
}

.eb-sector-section__card-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 14px;
  color: #fff;
}

.eb-sector-section__card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.eb-sector-section__card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  line-height: 1.5;
}

.eb-sector-section__card li::before {
  content: "";
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d4af64;
  margin-top: 8px;
}

.eb-sector-section__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.eb-sector-section__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: #d4af64;
  color: #0C180F;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.eb-sector-section__cta:hover {
  background: #c49a50;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(212,175,100,0.28);
}

.eb-sector-section__cta-secondary {
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  font-size: 0.95rem;
  padding: 16px 8px;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  transition: color .2s, border-color .2s;
}

.eb-sector-section__cta-secondary:hover {
  color: #fff;
  border-color: #fff;
}

@media (max-width: 768px) {
  .eb-sector-section { padding: 72px 0; }
  .eb-sector-section__grid { grid-template-columns: 1fr; gap: 18px; }
  .eb-sector-section__card { padding: 28px 24px; }
}
