/* ── DELIVERY PAGE ───────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--orange) 0, var(--orange) 8px, transparent 8px, transparent 18px);
  opacity: 0.3;
}
.step {
  background: var(--white);
  border-radius: 14px;
  padding: 1.5rem;
  border: 1px solid var(--border);
  text-align: center;
}
.step-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--cream);
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 0.75rem;
}
.step-icon { font-size: 26px; margin-bottom: 0.6rem; }
.step-name { font-family: var(--display); font-size: 15px; font-weight: 700; color: var(--blue); margin-bottom: 0.4rem; }
.step-desc { font-size: 12px; color: var(--ink-soft); line-height: 1.6; }

.area-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}
.province-grid {
  display: none; /* replaced by coverage-nl */
}
/* New Netherlands-wide coverage block */
.coverage-nl { margin-bottom: 2rem; }
.nl-big-statement {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--cream);
  border-radius: 16px;
  padding: 1.75rem;
  margin-bottom: 1.25rem;
  border: 1px solid var(--border);
}
.nl-flag-icon { font-size: 2.5rem; flex-shrink: 0; line-height: 1; }
.nl-big-text {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  opacity: .75;
}
.nl-big-text strong { color: var(--ink); opacity: 1; font-weight: 700; }
.delivery-time-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.dt-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.25rem 1rem;
  text-align: center;
}
.dt-icon { font-size: 1.5rem; margin-bottom: .5rem; }
.dt-label { font-family: var(--display); font-size: 15px; color: var(--ink); margin-bottom: .2rem; }
.dt-sub { font-size: 12px; color: var(--ink-soft); }
.info-cards { display: flex; flex-direction: column; gap: 12px; }
.info-card {
  background: var(--cream);
  border-radius: 10px;
  padding: 1rem 1.2rem;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.info-icon { font-size: 22px; flex-shrink: 0; }
.ic-title { font-size: 14px; font-weight: 500; color: var(--blue); margin-bottom: 2px; }
.ic-text  { font-size: 12px; color: var(--ink-soft); line-height: 1.55; }
.map-box {
  background: var(--cream);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid var(--border);
}

.apply-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.apply-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background var(--transition);
}
.apply-card:hover { background: rgba(255,255,255,0.11); }
.apply-icon { font-size: 36px; }
.apply-title { font-family: var(--display); font-size: 22px; font-weight: 700; color: #fff; }
.apply-desc { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.75; flex: 1; }
.apply-perks { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.apply-perks li {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,0.7);
}
.apply-perks li::before {
  content: ''; width: 6px; height: 6px;
  border-radius: 50%; background: var(--orange); flex-shrink: 0;
}

/* Modal */
.modal-wrap {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 300; align-items: center; justify-content: center; padding: 1rem;
}
.modal-wrap.open { display: flex; }
.modal { background: #fff; border-radius: 16px; width: 100%; max-width: 500px; overflow: hidden; }
.modal-head {
  background: var(--blue); padding: 1.4rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
}
.modal-head h2 { font-family: var(--display); font-size: 20px; color: #fff; }
.modal-close { background: none; border: none; color: rgba(255,255,255,0.5); font-size: 20px; line-height: 1; }
.modal-body { padding: 1.5rem; display: flex; flex-direction: column; gap: 14px; }
.modal-foot { padding: 1rem 1.5rem; border-top: 1px solid var(--border); }

@media (max-width: 1024px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .area-grid { grid-template-columns: 1fr; }
  .apply-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr; }
  .province-grid { grid-template-columns: 1fr; }
}
