/* ── Page hero (diensten override) ── */
.page-hero__inner > p { max-width: 560px; margin: 0 auto 40px; }

/* Quick nav pills */
.page-hero__nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 50px;
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}
.hero-pill svg { width: 16px; height: 16px; }
.hero-pill:hover {
  background: rgba(0,90,255,0.1);
  border-color: rgba(0,90,255,0.35);
  color: var(--blue-light);
}
.hero-pill--orange:hover {
  background: rgba(255,165,0,0.1);
  border-color: rgba(255,165,0,0.35);
  color: var(--orange);
}

/* ── Tak banner ── */
.tak-banner {
  background: linear-gradient(135deg, #0d1628 0%, #0d1a38 100%);
  border-top: 1px solid rgba(0,90,255,0.2);
  border-bottom: 1px solid rgba(0,90,255,0.2);
  padding: 48px 0;
}
.tak-banner--orange {
  background: linear-gradient(135deg, #1a0f00 0%, #1f1200 100%);
  border-color: rgba(255,165,0,0.2);
}
.tak-banner__inner { display: flex; align-items: center; gap: 32px; }
.tak-banner__num {
  font-size: 6rem;
  font-weight: 900;
  color: rgba(0,90,255,0.15);
  line-height: 1;
  flex-shrink: 0;
  letter-spacing: -6px;
  user-select: none;
}
.tak-banner__num--orange { color: rgba(255,165,0,0.15); }
.tak-banner__inner h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 8px;
}
.tak-banner__inner p { color: var(--text-muted); font-size: 0.95rem; max-width: 520px; line-height: 1.65; }

/* ── Service sections ── */
.service-section {
  padding: 80px 0;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
}
.service-section--alt { background: var(--bg); }

.service-detail {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: start;
}
.service-detail--reverse { direction: rtl; }
.service-detail--reverse > * { direction: ltr; }

/* Left column */
.service-detail__icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-detail__icon.blue {
  background: rgba(0,90,255,0.12);
  border: 1px solid rgba(0,90,255,0.25);
  color: var(--blue-light);
}
.service-detail__icon.orange {
  background: rgba(255,165,0,0.1);
  border: 1px solid rgba(255,165,0,0.25);
  color: var(--orange);
}
.service-detail__icon svg { width: 32px; height: 32px; }
.service-detail__left h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}
.service-detail__lead {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 32px;
}
.service-detail__ideal { margin-bottom: 28px; }
.ideal__label,
.tools__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.ideal__tags,
.tools__list { display: flex; flex-wrap: wrap; gap: 7px; }
.ideal__tags span {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 0.8rem;
  padding: 5px 12px;
  border-radius: 50px;
}
.service-detail__tools { margin-bottom: 32px; }

/* SEO stats */
.seo-stats { display: flex; gap: 24px; margin-bottom: 28px; flex-wrap: wrap; }
.seo-stat {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  flex: 1;
  min-width: 100px;
  text-align: center;
}
.seo-stat strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--blue-light);
  margin-bottom: 4px;
}
.seo-stat span { font-size: 0.78rem; color: var(--text-muted); line-height: 1.3; }

/* Format showcase */
.format-showcase { display: flex; gap: 16px; margin-top: 28px; align-items: flex-end; }
.format-item { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.format-item span { font-size: 0.72rem; color: var(--text-muted); white-space: nowrap; }
.format-preview {
  background: rgba(255,165,0,0.1);
  border: 1px solid rgba(255,165,0,0.3);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--orange);
  font-weight: 600;
}
.format-preview--square   { width: 52px; height: 52px; }
.format-preview--story    { width: 32px; height: 56px; }
.format-preview--banner   { width: 72px; height: 40px; }
.format-preview--portrait { width: 44px; height: 55px; }

/* Right column: price card */
.service-detail__card {
  background: var(--bg-3);
  border: 1px solid rgba(0,90,255,0.25);
  border-radius: var(--radius);
  padding: 32px;
  position: sticky;
  top: 90px;
}
.service-detail__card--orange { border-color: rgba(255,165,0,0.25); }
.sdc__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 8px;
}
.sdc__category {
  background: rgba(0,90,255,0.12);
  border: 1px solid rgba(0,90,255,0.25);
  color: var(--blue-light);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}
.sdc__category--orange {
  background: rgba(255,165,0,0.1);
  border-color: rgba(255,165,0,0.25);
  color: var(--orange);
}
.sdc__price { font-size: 0.85rem; color: var(--text-muted); }
.sdc__price strong { font-size: 1.15rem; color: #fff; font-weight: 800; }
.sdc__includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 28px;
}
.sdc__includes li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  line-height: 1.4;
}
.sdc__includes li::before {
  content: '';
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(34,197,94,0.12) url("data:image/svg+xml,%3Csvg viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.5 9l3 3 6-6' stroke='%2322c55e' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain;
  border: 1px solid rgba(34,197,94,0.25);
  flex-shrink: 0;
  margin-top: 1px;
}
.sdc__note { text-align: center; font-size: 0.78rem; color: var(--text-muted); margin-top: 12px; }

.service-detail__extra-cards { display: flex; flex-direction: column; gap: 10px; margin-top: 14px; }
.extra-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.extra-card strong { font-size: 0.875rem; font-weight: 600; }
.extra-card span { font-size: 0.825rem; color: var(--text-muted); white-space: nowrap; }

/* ── Werkwijze ── */
.werkwijze { background: var(--bg); }
.werkwijze__sub {
  color: var(--text-muted);
  font-size: 1rem;
  margin-top: 10px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.stappen-track {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding: 20px 0 0;
}
.stappen-line {
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--border);
  transform: translateX(-50%);
  border-radius: 2px;
  overflow: hidden;
}
.stappen-line__fill {
  width: 100%;
  height: 0%;
  background: linear-gradient(to bottom, var(--blue), var(--orange));
  border-radius: 2px;
  transition: height 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.stap-item {
  position: relative;
  display: flex;
  justify-content: flex-end;
  padding-right: calc(50% + 48px);
  padding-bottom: 56px;
}
.stap-item--right {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: calc(50% + 48px);
}
.stap-item__dot {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--bg-2);
  border: 2px solid var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-light);
  z-index: 2;
  transition: background 0.3s, box-shadow 0.3s;
}
.stap-item__dot svg { width: 22px; height: 22px; }
.stap-item__dot--finish {
  background: linear-gradient(135deg, var(--blue) 0%, var(--orange) 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 0 0 6px rgba(0,90,255,0.12), 0 0 32px rgba(0,90,255,0.25);
}
.stap-item:hover .stap-item__dot {
  background: rgba(0,90,255,0.15);
  box-shadow: 0 0 0 6px rgba(0,90,255,0.08);
}
.stap-item__card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  width: 100%;
  max-width: 320px;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.stap-item:hover .stap-item__card {
  border-color: rgba(0,90,255,0.3);
  box-shadow: 0 12px 40px rgba(0,90,255,0.1);
  transform: translateY(-3px);
}
.stap-item__card--finish {
  border-color: rgba(0,90,255,0.3);
  background: linear-gradient(135deg, #0d1628 0%, #0d1a38 100%);
}
.stap-item:hover .stap-item__card--finish {
  border-color: rgba(255,165,0,0.4);
  box-shadow: 0 12px 40px rgba(255,165,0,0.12);
}
.stap-item__num {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 8px;
}
.stap-item__num--finish {
  background: linear-gradient(135deg, var(--blue-light), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stap-item__card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.stap-item__card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; }
.stap-item__details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}
.stap-item__details li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
}
.stap-item__details li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--blue-light);
  flex-shrink: 0;
}
.stap-item__card--finish .stap-item__details li::before { background: var(--orange); }
.stap-item__duration {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,90,255,0.08);
  border: 1px solid rgba(0,90,255,0.15);
  color: var(--blue-light);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 50px;
}
.stap-item__duration svg { width: 13px; height: 13px; }
.stap-item__duration--finish {
  background: linear-gradient(135deg, rgba(0,90,255,0.12), rgba(255,165,0,0.12));
  border-color: rgba(255,165,0,0.2);
  color: var(--orange);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .service-detail            { grid-template-columns: 1fr; gap: 40px; }
  .service-detail--reverse   { direction: ltr; }
  .service-detail__card      { position: static; }
  .service-detail__right     { max-width: 520px; }
}
@media (max-width: 768px) {
  .tak-banner__inner         { gap: 16px; }
  .tak-banner__num           { font-size: 3.5rem; }
  .seo-stats                 { gap: 12px; }
  .format-showcase           { gap: 10px; }
  .stappen-line              { left: 24px; }
  .stap-item,
  .stap-item--right {
    padding-right: 0;
    padding-left: 68px;
    justify-content: flex-start;
  }
  .stap-item__dot            { left: 24px; }
  .stap-item__card           { max-width: 100%; }
}
@media (max-width: 480px) {
  .service-section           { padding: 56px 0; }
  .service-detail__card      { padding: 24px; }
}
