/* ============================================
   Grafix Studio -- Diensten Page Styles
   ============================================ */

.page-hero {
  padding: 10rem 0 4rem;
  background-color: var(--color-white);
}

.page-hero h1 {
  margin-bottom: var(--space-md);
}

.page-hero__sub {
  font-size: var(--text-lg);
  color: var(--color-text-light);
  max-width: 600px;
}

/* --- Dienst Hero (clean, no background) --- */
.dienst-hero {
  padding: 10rem 0 4rem;
}

.dienst-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.dienst-hero__text .section-label {
  margin-bottom: var(--space-sm);
}

.dienst-hero__text h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: var(--space-lg);
}

.dienst-hero__sub {
  font-size: var(--text-lg);
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
  max-width: 520px;
}

.dienst-hero__actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}

.dienst-hero__trust {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  color: var(--color-text-light);
}

.dienst-hero__stars {
  color: #f59e0b;
  font-size: var(--text-base);
  letter-spacing: 2px;
}

.dienst-hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.dienst-hero__visual img {
  width: 100%;
  max-width: 520px;
  height: auto;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.15));
  transform: perspective(800px) rotateY(-5deg);
  transition: transform 0.4s ease;
}

.dienst-hero__visual img:hover {
  transform: perspective(800px) rotateY(0deg) scale(1.02);
}

@media (max-width: 1024px) {
  .dienst-hero__grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .dienst-hero__visual {
    order: -1;
  }

  .dienst-hero__visual img {
    max-width: 400px;
    transform: none;
  }

  .dienst-hero__visual img:hover {
    transform: scale(1.02);
  }
}

@media (max-width: 640px) {
  .dienst-hero {
    padding: 8rem 0 2rem;
  }

  .dienst-hero__text h1 {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .dienst-hero__actions {
    flex-direction: column;
  }

  .dienst-hero__visual img {
    max-width: 300px;
  }
}

/* --- Diensten Hero (clean, tilt visual) --- */
.diensten-hero {
  padding: 10rem 0 4rem;
  overflow: hidden;
}

.diensten-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.diensten-hero__text .section-label {
  margin-bottom: var(--space-sm);
}

.diensten-hero__text h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  line-height: 1.05;
  margin-bottom: var(--space-lg);
}

.diensten-hero__sub {
  font-size: var(--text-lg);
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
  max-width: 500px;
}

.diensten-hero__actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-2xl);
}

.diensten-hero__stats {
  display: flex;
  gap: var(--space-2xl);
}

.diensten-hero__stat {
  display: flex;
  flex-direction: column;
}

.diensten-hero__stat-number {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.2;
}

.diensten-hero__stat-label {
  font-size: var(--text-sm);
  color: var(--color-text-light);
}

.diensten-hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}

.diensten-hero__tilt {
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.1s ease-out;
  will-change: transform;
}

.diensten-hero__laptop {
  position: relative;
  z-index: 2;
}

.diensten-hero__laptop-img {
  width: 100%;
  max-width: 560px;
  height: auto;
  filter: drop-shadow(0 25px 60px rgba(0, 0, 0, 0.18));
  transition: filter 0.3s ease;
}

.diensten-hero__tilt:hover .diensten-hero__laptop-img {
  filter: drop-shadow(0 35px 80px rgba(0, 0, 0, 0.22));
}

.diensten-hero__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateZ(-40px);
  width: 80%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(37, 99, 235, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  animation: glow-pulse 4s ease-in-out infinite alternate;
}

@keyframes glow-pulse {
  0% { opacity: 0.6; transform: translate(-50%, -50%) translateZ(-40px) scale(1); }
  100% { opacity: 1; transform: translate(-50%, -50%) translateZ(-40px) scale(1.15); }
}

@media (max-width: 1024px) {
  .diensten-hero__grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    text-align: center;
  }

  .diensten-hero__sub {
    max-width: 100%;
  }

  .diensten-hero__actions {
    justify-content: center;
  }

  .diensten-hero__stats {
    justify-content: center;
  }

  .diensten-hero__visual {
    order: -1;
  }

  .diensten-hero__laptop-img {
    max-width: 420px;
  }
}

@media (max-width: 640px) {
  .diensten-hero {
    padding: 8rem 0 2rem;
  }

  .diensten-hero__text h1 {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .diensten-hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .diensten-hero__stats {
    gap: var(--space-xl);
  }

  .diensten-hero__laptop-img {
    max-width: 300px;
  }
}

/* --- Feature Slider (Hatamex-style tabs) --- */
.feature-slider {
  max-width: 100%;
}

.feature-slider__tabs {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding-bottom: 1rem;
  margin-bottom: var(--space-2xl);
}

.feature-slider__track-line {
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(0, 0, 0, 0.15);
}

.feature-slider__progress-line {
  position: absolute;
  bottom: 3px;
  left: 0;
  height: 2px;
  background: var(--color-primary);
  width: 0%;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-slider__tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  position: relative;
}

.feature-slider__tab-label {
  font-family: var(--font-heading);
  font-size: clamp(0.75rem, 1.5vw, 1.375rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: rgba(0, 0, 0, 0.35);
  white-space: nowrap;
  transition: color 0.3s ease;
}

.feature-slider__tab.is-active .feature-slider__tab-label,
.feature-slider__tab.is-passed .feature-slider__tab-label {
  color: var(--color-secondary);
}

.feature-slider__tab-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.15);
  transition: background 0.3s ease, transform 0.3s ease;
}

.feature-slider__tab.is-active .feature-slider__tab-dot {
  background: var(--color-primary);
  transform: scale(1.3);
}

.feature-slider__tab.is-passed .feature-slider__tab-dot {
  background: var(--color-primary);
}

.feature-slider__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
  min-height: 200px;
}

.feature-slider__nav {
  display: flex;
  gap: 0.5rem;
  order: 2;
  align-self: start;
  justify-self: end;
}

.feature-slider__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: none;
  cursor: pointer;
  color: var(--color-secondary);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.feature-slider__arrow:hover {
  border-color: var(--color-primary);
  background: rgba(22, 73, 142, 0.05);
}

.feature-slider__content {
  order: 1;
  position: relative;
  min-height: 160px;
}

.feature-slider__panel {
  display: none;
  animation: fsPanelIn 0.4s ease;
}

.feature-slider__panel.is-active {
  display: block;
}

@keyframes fsPanelIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.feature-slider__title {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--color-secondary);
  margin-bottom: var(--space-md);
}

.feature-slider__text {
  font-size: clamp(0.9rem, 1.3vw, 1.0625rem);
  line-height: 1.7;
  color: var(--color-text-light);
  max-width: 540px;
}

.feature-slider__text a {
  color: var(--color-primary);
  text-decoration: underline;
  text-decoration-color: rgba(22, 73, 142, 0.3);
  text-underline-offset: 2px;
  transition: text-decoration-color 0.2s ease;
}

.feature-slider__text a:hover {
  text-decoration-color: var(--color-primary);
}

.feature-slider__carousel {
  display: none;
  order: 3;
  position: relative;
  height: 300px;
  overflow: hidden;
  min-width: 250px;
}

.feature-slider__carousel-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  position: absolute;
  width: 100%;
  left: 0;
  top: 50%;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.feature-slider__carousel-item {
  font-family: var(--font-heading);
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  transition: font-size 0.35s ease, color 0.3s ease, transform 0.35s ease;
  font-size: 1.5rem;
  color: rgba(0, 0, 0, 0.18);
  letter-spacing: -0.03em;
}

.feature-slider__carousel-item.is-active {
  font-size: 2.5rem;
  color: var(--color-secondary);
}

@media (min-width: 1025px) {
  .feature-slider__carousel {
    display: flex;
  }

  .feature-slider__body {
    grid-template-columns: 1fr 1fr;
  }

  .feature-slider__nav {
    order: 0;
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }

  .feature-slider__content {
    order: 0;
    grid-column: 1;
    grid-row: 2;
  }

  .feature-slider__carousel {
    grid-column: 2;
    grid-row: 1 / 3;
    justify-self: center;
    align-self: center;
  }

  .feature-slider__body {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr;
  }
}

@media (max-width: 1024px) {
  .feature-slider__body {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .feature-slider__nav {
    justify-self: end;
  }
}

@media (max-width: 640px) {
  .feature-slider__tabs {
    gap: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.75rem;
    margin-bottom: var(--space-xl);
  }

  .feature-slider__tabs::-webkit-scrollbar {
    display: none;
  }

  .feature-slider__tab {
    flex: 0 0 auto;
    padding: 0 0.5rem;
  }

  .feature-slider__tab-dot {
    width: 8px;
    height: 8px;
  }

  .feature-slider__arrow {
    width: 40px;
    height: 40px;
  }
}

/* --- Scroll Timeline --- */
.timeline {
  position: relative;
  max-width: 620px;
  margin: 0 auto;
}

.timeline__track {
  position: absolute;
  left: 27px;
  top: 0;
  bottom: 0;
  width: 2px;
}

.timeline__line {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1px;
}

.timeline__progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: var(--color-primary);
  border-radius: 1px;
  transition: height 0.05s linear;
  will-change: height;
}

.timeline__steps {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4rem);
  position: relative;
}

.timeline__step {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
  position: relative;
}

.timeline__marker {
  position: relative;
  width: 55px;
  height: 55px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline__circle {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.timeline__circle-bg {
  fill: var(--color-secondary);
  stroke: rgba(255, 255, 255, 0.12);
  stroke-width: 2;
}

.timeline__circle-stroke {
  fill: none;
  stroke: var(--color-primary);
  stroke-width: 2;
  stroke-dasharray: 163.36;
  stroke-dashoffset: 163.36;
  transition: stroke-dashoffset 0.4s ease;
}

.timeline__step.is-active .timeline__circle-stroke {
  stroke-dashoffset: 0;
}

.timeline__number {
  position: relative;
  z-index: 2;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.3s ease;
}

.timeline__step.is-active .timeline__number {
  color: var(--color-white);
}

.timeline__content {
  flex: 1;
  padding-top: 0.5rem;
}

.timeline__title {
  font-family: var(--font-heading);
  font-size: clamp(0.875rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
  opacity: 0.4;
  transition: opacity 0.3s ease;
}

.timeline__step.is-active .timeline__title {
  opacity: 1;
}

.timeline__text {
  font-size: clamp(0.8rem, 1.5vw, 1.0625rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
}

.timeline__step.is-active .timeline__text {
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 640px) {
  .timeline__track {
    left: 23px;
  }

  .timeline__marker {
    width: 48px;
    height: 48px;
  }

  .timeline__step {
    gap: var(--space-md);
  }
}

/* --- Diensten Hub Grid --- */
.diensten-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.dienst-hub-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: var(--color-white);
  border: 1px solid var(--color-light-gray);
  transition: all var(--transition-base);
  text-decoration: none;
  color: inherit;
}

.dienst-hub-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.dienst-hub-card__visual {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.dienst-hub-card__visual-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-4xl);
  color: var(--color-white);
}

.dienst-hub-card__content {
  padding: var(--space-2xl) var(--space-2xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dienst-hub-card__tag {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.dienst-hub-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.dienst-hub-card__text {
  font-size: var(--text-base);
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
}

.dienst-hub-card__link {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
}

/* --- Legacy Floating Laptops (website-laten-maken subpage) --- */
.floating-laptops {
  position: relative;
  overflow: hidden;
  height: 70vh;
  min-height: 480px;
  max-height: 720px;
  background: var(--color-secondary);
  user-select: none;
  -webkit-user-select: none;
}

.floating-laptops .floating-laptops__field {
  position: relative;
  width: 100%;
  height: 100%;
}

.floating-laptops .floating-laptop {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: clamp(180px, 22vw, 320px);
  height: auto;
  transform: rotate(var(--rot));
  cursor: grab;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.35));
  transition: filter 0.3s ease, z-index 0s;
  animation: laptop-drift var(--duration, 7s) ease-in-out var(--delay, 0s) infinite alternate;
  will-change: transform;
  pointer-events: auto;
  z-index: 1;
}

.floating-laptops .floating-laptop:hover {
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
  z-index: 10;
}

.floating-laptops .floating-laptop.is-dragging {
  cursor: grabbing;
  animation: none;
  filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.55));
  z-index: 100;
  transition: filter 0.15s ease;
}

@keyframes laptop-drift {
  0% {
    transform: rotate(var(--rot)) translate(0, 0);
  }
  100% {
    transform: rotate(var(--rot)) translate(12px, -18px);
  }
}

@media (max-width: 1024px) {
  .floating-laptops {
    height: 50vh;
    min-height: 360px;
  }

  .floating-laptops .floating-laptop {
    width: clamp(140px, 28vw, 240px);
  }
}

@media (max-width: 640px) {
  .floating-laptops {
    height: 40vh;
    min-height: 280px;
  }

  .floating-laptops .floating-laptop {
    width: clamp(110px, 35vw, 180px);
  }
}

/* --- Dienst Detail --- */
.dienst-detail-content {
  max-width: 700px;
}

.dienst-detail-content h2 {
  margin-bottom: var(--space-lg);
}

.dienst-detail-content p {
  margin-bottom: var(--space-md);
}

.dienst-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  margin: var(--space-2xl) 0;
}

.dienst-step {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
}

.dienst-step__number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background-color: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-lg);
}

.dienst-step__content h4 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-xs);
}

.dienst-step__content p {
  font-size: var(--text-sm);
  color: var(--color-text-light);
}

.section--accent .dienst-step__content h4 {
  color: var(--color-white);
}

.section--accent .dienst-step__content p {
  color: rgba(255, 255, 255, 0.8);
}

.section--accent .dienst-step__number {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
}

/* --- Voordelen Grid --- */
.voordelen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.voordeel-card {
  padding: var(--space-xl);
  background: rgba(6, 44, 98, 0.04);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(6, 44, 98, 0.08);
  border-radius: var(--radius-lg);
  transition: all var(--transition-fast);
}

.voordeel-card:hover {
  border-color: rgba(6, 44, 98, 0.15);
  box-shadow: 0 8px 32px rgba(6, 44, 98, 0.08);
}

.voordeel-card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: var(--color-off-white);
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.voordeel-card__title {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-secondary);
  margin-bottom: var(--space-xs);
}

.voordeel-card__text {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  line-height: 1.6;
}

.voordeel-card__text a {
  color: var(--color-primary);
  text-decoration: underline;
  text-decoration-color: rgba(22, 73, 142, 0.3);
  text-underline-offset: 3px;
}

.voordeel-card__text a:hover {
  text-decoration-color: var(--color-primary);
}

.section--accent .voordeel-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.section--accent .voordeel-card:hover {
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.section--accent .voordeel-card__icon {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
}

.section--accent .voordeel-card__title {
  color: var(--color-white);
}

.section--accent .voordeel-card__text {
  color: rgba(255, 255, 255, 0.7);
}

.section--accent .voordeel-card__text a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration-color: rgba(255, 255, 255, 0.3);
}

.section--accent .voordeel-card__text a:hover {
  text-decoration-color: rgba(255, 255, 255, 0.7);
}

/* --- Waarom Grafix Blokken --- */
.waarom-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.waarom-card {
  padding: var(--space-xl) var(--space-2xl);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  transition: all var(--transition-fast);
}

.waarom-card:hover {
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.waarom-card__title {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.waarom-card__text {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.waarom-card__text a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.3);
  text-underline-offset: 3px;
}

.waarom-card__text a:hover {
  text-decoration-color: rgba(255, 255, 255, 0.7);
}

.section--accent .waarom-card {
  border-color: rgba(255, 255, 255, 0.12);
}

.section--accent .waarom-card__title {
  color: var(--color-white);
}

.section--accent .waarom-card__text {
  color: rgba(255, 255, 255, 0.7);
}

.waarom-card--light {
  background: rgba(6, 44, 98, 0.04);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(6, 44, 98, 0.08);
}

.waarom-card--light:hover {
  border-color: rgba(6, 44, 98, 0.15);
  box-shadow: 0 8px 32px rgba(6, 44, 98, 0.08);
}

.waarom-card--light .waarom-card__title {
  color: var(--color-secondary);
}

.waarom-card--light .waarom-card__text {
  color: var(--color-text-light);
}

.waarom-card--light .waarom-card__text a {
  color: var(--color-primary);
  text-decoration-color: rgba(22, 73, 142, 0.3);
}

.waarom-card--light .waarom-card__text a:hover {
  text-decoration-color: var(--color-primary);
}

/* --- Stat blokken --- */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  text-align: center;
}

.stat-item__number {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.stat-item__label {
  font-size: var(--text-sm);
  color: var(--color-text-light);
}

/* --- Dienst Showcase (foto's) --- */
.dienst-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.dienst-showcase__item {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.dienst-showcase__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 16 / 10;
}

/* --- Pricing Table --- */
.pricing-table-wrap {
  overflow-x: auto;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-lg);
  overflow: hidden;
  font-size: var(--text-sm);
}

.pricing-table thead th {
  background: var(--color-secondary);
  color: var(--color-white);
  font-weight: 600;
  text-align: left;
  padding: var(--space-md) var(--space-lg);
  font-size: var(--text-sm);
  letter-spacing: 0.02em;
}

.pricing-table tbody td {
  padding: var(--space-md) var(--space-lg);
  border-bottom: 1px solid var(--color-light-gray);
  color: var(--color-text);
  line-height: 1.6;
  vertical-align: top;
}

.pricing-table tbody tr:last-child td {
  border-bottom: none;
}

.pricing-table tbody tr:nth-child(even) {
  background: var(--color-off-white);
}

.pricing-table tbody td:first-child {
  white-space: nowrap;
  width: 180px;
}

/* --- Long-form content readability --- */
.dienst-detail-content h2 {
  font-size: var(--text-2xl);
  margin-top: var(--space-3xl);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--color-light-gray);
}

.dienst-detail-content h2:first-child {
  margin-top: 0;
}

.dienst-detail-content h3 {
  font-size: var(--text-xl);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  color: var(--color-primary);
}

.dienst-detail-content p {
  font-size: var(--text-base);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.dienst-detail-content a {
  color: var(--color-primary);
  text-decoration: underline;
  text-decoration-color: rgba(22, 73, 142, 0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s ease;
}

.dienst-detail-content a:hover {
  text-decoration-color: var(--color-primary);
}

/* Callout box -- key insight or important note */
.content-callout {
  background: var(--color-off-white);
  border: 1px solid rgba(6, 44, 98, 0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-2xl);
  margin: var(--space-2xl) 0;
}

.content-callout p {
  margin-bottom: 0;
  color: var(--color-text);
  font-weight: 500;
  line-height: 1.7;
}

.content-callout p + p {
  margin-top: var(--space-md);
}

/* Tip box -- practical advice */
.content-tip {
  background: linear-gradient(135deg, rgba(22, 73, 142, 0.04) 0%, rgba(22, 73, 142, 0.08) 100%);
  border: 1px solid rgba(22, 73, 142, 0.12);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-2xl);
  margin: var(--space-2xl) 0;
}

.content-tip__label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.content-tip p {
  margin-bottom: 0;
  color: var(--color-text);
  line-height: 1.7;
}

/* Key takeaway -- summary block */
.content-takeaway {
  background: var(--color-secondary);
  color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  margin: var(--space-2xl) 0;
}

.content-takeaway__label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: var(--space-md);
}

.content-takeaway p {
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--text-lg);
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Pull quote -- emphasize a key sentence */
.content-pullquote {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--color-secondary);
  line-height: 1.5;
  padding: var(--space-xl) 0;
  margin: var(--space-xl) 0;
  border-top: 2px solid var(--color-light-gray);
  border-bottom: 2px solid var(--color-light-gray);
  letter-spacing: -0.01em;
}

/* Checklist -- scannable list with checkmarks */
.content-checklist {
  list-style: none;
  padding: 0;
  margin: var(--space-xl) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.content-checklist li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  font-size: var(--text-base);
  color: var(--color-text);
  line-height: 1.6;
}

.content-checklist li::before {
  content: '';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
}

/* Numbered highlight cards -- key steps summary */
.content-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin: var(--space-2xl) 0;
}

.content-step-card {
  padding: var(--space-xl);
  background: var(--color-white);
  border: 1px solid var(--color-light-gray);
  border-radius: var(--radius-lg);
  transition: border-color 300ms ease, box-shadow 300ms ease;
}

.content-step-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.content-step-card__nr {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 200;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: var(--space-sm);
  opacity: 0.5;
}

.content-step-card__title {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: var(--space-xs);
}

.content-step-card__text {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  line-height: 1.6;
}

/* Accent section content overrides */
.section--accent .content-callout {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.section--accent .content-callout p {
  color: rgba(255, 255, 255, 0.9);
}

.section--accent .content-tip {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.section--accent .content-tip__label {
  color: rgba(255, 255, 255, 0.5);
}

.section--accent .content-tip p {
  color: rgba(255, 255, 255, 0.85);
}

.section--accent .content-tip a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.3);
  text-underline-offset: 3px;
}

.section--accent .content-tip a:hover {
  text-decoration-color: rgba(255, 255, 255, 0.7);
}

.section--accent .content-callout a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.3);
  text-underline-offset: 3px;
}

.section--accent .content-callout a:hover {
  text-decoration-color: rgba(255, 255, 255, 0.7);
}

.section--accent .dienst-detail-content p {
  color: rgba(255, 255, 255, 0.85);
}

.section--accent .dienst-detail-content h2 {
  color: var(--color-white);
  border-bottom-color: rgba(255, 255, 255, 0.15);
}

.section--accent .dienst-detail-content h3 {
  color: rgba(255, 255, 255, 0.9);
}

.section--accent .dienst-detail-content a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration-color: rgba(255, 255, 255, 0.3);
}

.section--accent .dienst-detail-content a:hover {
  text-decoration-color: rgba(255, 255, 255, 0.7);
}

.section--accent .content-pullquote {
  color: var(--color-white);
  border-top-color: rgba(255, 255, 255, 0.15);
  border-bottom-color: rgba(255, 255, 255, 0.15);
}

.section--accent .content-checklist li {
  color: rgba(255, 255, 255, 0.85);
}

.section--accent .content-checklist li::before {
  background-color: rgba(255, 255, 255, 0.2);
}

.section--accent .content-checklist li a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.3);
  text-underline-offset: 3px;
}

.section--accent .content-checklist li a:hover {
  text-decoration-color: rgba(255, 255, 255, 0.7);
}

.section--accent .dienst-detail-content strong {
  color: var(--color-white);
}

.section--accent .content-callout strong {
  color: var(--color-white);
}

.section--accent .content-checklist strong {
  color: var(--color-white);
}

.section--accent .faq-item {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.section--accent .faq-question {
  color: var(--color-white);
}

.section--accent .faq-question:hover {
  color: rgba(255, 255, 255, 0.7);
}

.section--accent .faq-item.active .faq-question {
  color: rgba(255, 255, 255, 0.8);
}

.section--accent .faq-answer p,
.section--accent .faq-answer__inner {
  color: rgba(255, 255, 255, 0.75);
}

.section--accent .faq-answer a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.3);
}

.section--accent .faq-answer a:hover {
  text-decoration-color: rgba(255, 255, 255, 0.7);
  opacity: 1;
}

.section--accent .faq-icon {
  stroke: rgba(255, 255, 255, 0.5);
}

.section--accent .section-header h2 {
  color: var(--color-white);
}

.section--accent .section-header p {
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
  .content-steps-grid {
    grid-template-columns: 1fr;
  }

  .content-callout,
  .content-tip {
    padding: var(--space-lg);
  }

  .content-pullquote {
    font-size: var(--text-lg);
  }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .voordelen-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }
}

@media (max-width: 768px) {
  .dienst-hub-card {
    grid-template-columns: 1fr;
  }

  .dienst-hub-card__visual {
    aspect-ratio: 16 / 9;
  }

  .voordelen-grid {
    grid-template-columns: 1fr;
  }

  .waarom-grid {
    grid-template-columns: 1fr;
  }

  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dienst-showcase {
    grid-template-columns: 1fr;
  }
}
