/**
 * diensten.html — professioneel autodetailing: tekstkaarten + prijzen zonder foto’s,
 * strak rood/zwart palet; licht thema via html.fd-theme-light (zie onderaan).
 */
body.rh-theme.page-diensten {
  --fd-diensten-display: "Orbitron", system-ui, sans-serif;
  --fd-red: #e11d48;
  --fd-red-soft: #fb7185;
  --fd-red-dim: rgba(225, 29, 72, 0.55);
  --fd-surface: #0a0a0c;
  --fd-surface-2: #111114;
  --fd-surface-3: #16161a;
  --fd-line: rgba(255, 255, 255, 0.08);
  --fd-line-strong: rgba(255, 255, 255, 0.12);
  --fd-text: rgba(255, 255, 255, 0.92);
  --fd-text-muted: rgba(255, 255, 255, 0.68);
  --fd-check: #22c55e;
  --fd-radius: 14px;
  /* “Zwevende” kaarten — diepte + racing-rood (logo) */
  --fd-float-y: -5px;
  --fd-shadow-card:
    0 2px 4px rgba(0, 0, 0, 0.45),
    0 14px 40px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 -1px 0 rgba(255, 255, 255, 0.04) inset,
    0 0 60px rgba(225, 29, 72, 0.07);
  --fd-shadow-card-hover:
    0 4px 8px rgba(0, 0, 0, 0.5),
    0 22px 56px rgba(0, 0, 0, 0.62),
    0 0 0 1px rgba(251, 113, 133, 0.18) inset,
    0 0 100px rgba(225, 29, 72, 0.22);
  --fd-ease-sport: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Hero */
body.rh-theme.page-diensten .page-hero {
  background: linear-gradient(168deg, #08080a 0%, #000000 55%);
  border-bottom: 1px solid var(--fd-line);
}

body.rh-theme.page-diensten .page-hero .section__label {
  font-family: var(--font-body, "Inter", system-ui, sans-serif);
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--fd-red-soft);
}

body.rh-theme.page-diensten .page-hero__title {
  font-family: var(--fd-diensten-display);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--fd-red);
  -webkit-text-fill-color: var(--fd-red);
  text-shadow: 0 0 48px rgba(225, 29, 72, 0.28);
}

body.rh-theme.page-diensten .page-hero__lead {
  font-family: var(--font-body, "Inter", system-ui, sans-serif);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--fd-text-muted);
}

/* Sectie */
body.rh-theme.page-diensten #diensten {
  background:
    radial-gradient(ellipse 90% 55% at 50% -8%, rgba(225, 29, 72, 0.14), transparent 52%),
    radial-gradient(ellipse 70% 40% at 100% 60%, rgba(225, 29, 72, 0.05), transparent 45%),
    #000000;
  color: var(--fd-text);
}

body.rh-theme.page-diensten #diensten .section__head .section__label {
  font-family: var(--font-body, "Inter", system-ui, sans-serif);
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--fd-red-soft);
}

body.rh-theme.page-diensten #diensten .section__title {
  margin: 0;
  font-family: var(--fd-diensten-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 3.6vw, 2.5rem);
  letter-spacing: 0.06em;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--fd-red);
  -webkit-text-fill-color: var(--fd-red);
  text-shadow:
    0 0 42px rgba(225, 29, 72, 0.35),
    0 0 80px rgba(225, 29, 72, 0.12);
}

body.rh-theme.page-diensten #diensten .section__intro {
  font-family: var(--font-body, "Inter", system-ui, sans-serif);
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--fd-text-muted);
  max-width: 46rem;
}

body.rh-theme.page-diensten #diensten .section__intro a {
  color: var(--fd-red-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}

body.rh-theme.page-diensten #diensten .section__intro a:hover {
  color: #fecdd3;
}

/* Kernbehandelingen — alleen tekst */
body.rh-theme.page-diensten .diensten-visual-grid--text {
  display: grid;
  gap: 1.15rem;
  margin: 1.5rem 0 2rem;
  padding: 0.35rem 0.15rem 0.5rem;
  background: transparent;
  border: none;
  perspective: 1200px;
}

@media (min-width: 720px) {
  body.rh-theme.page-diensten .diensten-visual-grid--text {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

@media (min-width: 1100px) {
  body.rh-theme.page-diensten .diensten-visual-grid--text {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.35rem;
  }
}

body.rh-theme.page-diensten .diensten-visual--compact {
  position: relative;
  background: linear-gradient(165deg, #1c1c22 0%, #121216 48%, #0e0e12 100%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: calc(var(--fd-radius) + 2px);
  overflow: hidden;
  transform: translateY(var(--fd-float-y));
  box-shadow: var(--fd-shadow-card);
  transition:
    transform 0.45s var(--fd-ease-sport),
    box-shadow 0.45s var(--fd-ease-sport),
    border-color 0.35s ease;
  isolation: isolate;
}

body.rh-theme.page-diensten .diensten-visual--compact::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(
    125deg,
    rgba(255, 255, 255, 0.07) 0%,
    transparent 38%,
    transparent 62%,
    rgba(225, 29, 72, 0.06) 100%
  );
  opacity: 0.9;
}

body.rh-theme.page-diensten .diensten-visual--compact:hover {
  transform: translateY(calc(var(--fd-float-y) - 5px));
  border-color: rgba(251, 113, 133, 0.35);
  box-shadow: var(--fd-shadow-card-hover);
  z-index: 2;
}

body.rh-theme.page-diensten .diensten-visual--compact .diensten-visual__body {
  position: relative;
  z-index: 1;
  border-top: none;
  padding: 1.25rem 1.3rem 1.35rem;
  background: linear-gradient(180deg, rgba(18, 18, 22, 0.98) 0%, rgba(12, 12, 16, 0.99) 100%);
}

body.rh-theme.page-diensten .diensten-visual__head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.65rem;
}

body.rh-theme.page-diensten .diensten-visual__glyph {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 12px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.14) 0%,
    rgba(90, 90, 102, 0.25) 38%,
    rgba(24, 24, 30, 0.95) 72%
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fecdd3;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 4px 14px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(225, 29, 72, 0.25);
  transition:
    transform 0.4s var(--fd-ease-sport),
    box-shadow 0.4s var(--fd-ease-sport),
    color 0.3s ease;
}

body.rh-theme.page-diensten .diensten-visual--compact:hover .diensten-visual__glyph {
  transform: scale(1.06);
  color: #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 6px 20px rgba(0, 0, 0, 0.5),
    0 0 24px rgba(225, 29, 72, 0.45);
}

body.rh-theme.page-diensten .diensten-visual__head .diensten-visual__title {
  margin: 0;
  flex: 1;
  min-width: 0;
  font-family: var(--fd-diensten-display);
  font-weight: 700;
  font-size: clamp(0.88rem, 1.35vw, 1rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.25;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  text-shadow: 0 0 28px rgba(225, 29, 72, 0.15);
}

body.rh-theme.page-diensten .diensten-visual__list {
  font-family: var(--font-body, "Inter", system-ui, sans-serif);
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--fd-text-muted);
  list-style: none;
  padding: 0;
  margin: 0;
}

body.rh-theme.page-diensten .diensten-visual__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin: 0 0 0.45rem;
}

body.rh-theme.page-diensten .diensten-visual__list li:last-child {
  margin-bottom: 0;
}

body.rh-theme.page-diensten .diensten-visual__list li::before {
  content: "";
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.2em;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--fd-check)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M2.5 6l2.5 2.5L9.5 3.5'/%3E%3C/svg%3E")
    center / 0.58rem no-repeat;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

/* Prijspakketten — verticaal gestapeld met pictogram per kaart */
body.rh-theme.page-diensten .price-packs {
  display: flex;
  flex-direction: column;
  gap: 2.75rem;
  margin: 0 0 2.75rem;
}

body.rh-theme.page-diensten .price-pack__head {
  margin: 0 0 1.1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
}

body.rh-theme.page-diensten .price-pack__head::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 4.5rem;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--fd-red), rgba(251, 113, 133, 0.4));
}

body.rh-theme.page-diensten .price-pack__title {
  margin: 0 0 0.45rem;
  font-family: var(--fd-diensten-display);
  font-weight: 700;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  text-shadow: 0 0 22px rgba(225, 29, 72, 0.2);
}

body.rh-theme.page-diensten .price-pack__intro {
  margin: 0;
  max-width: 44rem;
  font-family: var(--font-body, "Inter", system-ui, sans-serif);
  font-size: 0.93rem;
  line-height: 1.6;
  color: var(--fd-text-muted);
}

body.rh-theme.page-diensten .price-stack {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
}

body.rh-theme.page-diensten .price-card.price-card--row {
  position: relative;
  background: linear-gradient(165deg, #1c1c22 0%, #121216 52%, #0e0e12 100%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-top: none;
  border-left: 4px solid rgba(225, 29, 72, 0.75);
  border-radius: calc(var(--fd-radius) + 2px);
  box-shadow: var(--fd-shadow-card);
  transform: translateY(var(--fd-float-y));
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  transition:
    transform 0.45s var(--fd-ease-sport),
    box-shadow 0.45s var(--fd-ease-sport),
    border-color 0.35s ease;
  isolation: isolate;
}

body.rh-theme.page-diensten .price-card__icon-wrap {
  position: relative;
  z-index: 2;
  flex: 0 0 4.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0.65rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(18, 18, 22, 0.55) 100%);
  color: #fb7185;
}

body.rh-theme.page-diensten .price-card__icon-wrap svg {
  width: 2.35rem;
  height: 2.35rem;
  display: block;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 10px rgba(251, 113, 133, 0.35));
}

body.rh-theme.page-diensten .price-card--featured .price-card__icon-wrap {
  color: #fda4af;
  background: linear-gradient(180deg, rgba(36, 15, 20, 0.6) 0%, rgba(20, 8, 12, 0.75) 100%);
}

body.rh-theme.page-diensten .price-card.price-card--row::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(105deg, rgba(255, 255, 255, 0.05) 0%, transparent 45%);
  opacity: 0.75;
  z-index: 1;
}

body.rh-theme.page-diensten .price-card.price-card--row:hover {
  transform: translateY(calc(var(--fd-float-y) - 4px));
  border-color: rgba(251, 113, 133, 0.35);
  border-left-color: #fb7185;
  box-shadow: var(--fd-shadow-card-hover);
  z-index: 2;
}

body.rh-theme.page-diensten .price-card__top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 0.5rem 1.25rem;
  margin-bottom: 0.65rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

body.rh-theme.page-diensten .price-card__titles .price-card__label {
  margin: 0 0 0.28rem;
}

body.rh-theme.page-diensten .price-card__titles .price-card__title {
  margin: 0;
}

body.rh-theme.page-diensten .price-card__top .price-card__price {
  margin: 0;
  font-family: var(--font-body, "Inter", system-ui, sans-serif);
  font-weight: 700;
  font-size: clamp(1.55rem, 3.2vw, 2.05rem);
  letter-spacing: 0.03em;
  font-variant-numeric: tabular-nums;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  text-shadow: 0 0 28px rgba(225, 29, 72, 0.35);
  line-height: 1;
}

body.rh-theme.page-diensten .price-card__label {
  font-family: var(--font-body, "Inter", system-ui, sans-serif);
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fd-red-soft);
}

body.rh-theme.page-diensten .price-card__title {
  font-family: var(--fd-diensten-display);
  font-weight: 700;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  background: none;
}

body.rh-theme.page-diensten .price-card__meta {
  margin: 0 0 0.65rem;
  padding: 0.55rem 0.65rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.28);
  font-size: 0.86rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
}

body.rh-theme.page-diensten .price-card__list--tight li {
  margin-bottom: 0.35rem;
}

body.rh-theme.page-diensten .price-card__list {
  font-family: var(--font-body, "Inter", system-ui, sans-serif);
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--fd-text-muted);
  list-style: none;
  padding: 0;
  margin: 0.15rem 0 0;
}

body.rh-theme.page-diensten .price-card__meta + .price-card__list {
  margin-top: 0.25rem;
}

body.rh-theme.page-diensten .price-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin: 0 0 0.4rem;
}

body.rh-theme.page-diensten .price-card__list li::before {
  content: "";
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.2em;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--fd-check)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M2.5 6l2.5 2.5L9.5 3.5'/%3E%3C/svg%3E")
    center / 0.58rem no-repeat;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

body.rh-theme.page-diensten .price-card__body {
  position: relative;
  z-index: 2;
  padding: 1.1rem 1.25rem 1.2rem 1.3rem;
  background: linear-gradient(180deg, rgba(16, 16, 20, 0.97) 0%, rgba(10, 10, 12, 0.99) 100%);
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

body.rh-theme.page-diensten .price-card__top + .price-card__list {
  margin-top: 0.1rem;
}

body.rh-theme.page-diensten .price-card--featured.price-card--row {
  background: linear-gradient(160deg, #240f14 0%, #14080c 42%, #0a0406 100%);
  border: 1px solid rgba(225, 29, 72, 0.5);
  border-top: none;
  border-left: 5px solid #fb7185;
  box-shadow:
    var(--fd-shadow-card),
    0 0 0 1px rgba(225, 29, 72, 0.2) inset,
    0 0 80px rgba(225, 29, 72, 0.22);
  transform: translateY(calc(var(--fd-float-y) - 2px));
}

body.rh-theme.page-diensten .price-card--featured.price-card--row:hover {
  transform: translateY(calc(var(--fd-float-y) - 6px));
  border-color: rgba(251, 113, 133, 0.55);
  border-left-color: #fda4af;
  box-shadow:
    var(--fd-shadow-card-hover),
    0 0 0 1px rgba(251, 113, 133, 0.12) inset,
    0 0 100px rgba(225, 29, 72, 0.28);
}

body.rh-theme.page-diensten .price-card--featured .price-card__body {
  background: transparent;
}

body.rh-theme.page-diensten .price-card--featured .price-card__list,
body.rh-theme.page-diensten .price-card--featured .price-card__meta {
  color: rgba(255, 255, 255, 0.78);
}

/* Uitlegkaarten */
body.rh-theme.page-diensten #diensten .card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --lift: 0px;
  background: linear-gradient(165deg, #1c1c22 0%, #121216 100%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: calc(var(--fd-radius) + 2px);
  box-shadow: var(--fd-shadow-card);
  transform: translateY(var(--fd-float-y));
  transition:
    transform 0.45s var(--fd-ease-sport),
    box-shadow 0.45s var(--fd-ease-sport),
    border-color 0.35s ease;
}

body.rh-theme.page-diensten #diensten .card:hover {
  --lift: 0px;
  border-color: rgba(251, 113, 133, 0.3);
  transform: translateY(calc(var(--fd-float-y) - 5px));
  box-shadow: var(--fd-shadow-card-hover);
}

body.rh-theme.page-diensten #diensten .card h2 {
  font-family: var(--fd-diensten-display);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--fd-red);
  -webkit-text-fill-color: var(--fd-red);
}

body.rh-theme.page-diensten #diensten .card p {
  font-family: var(--font-body, "Inter", system-ui, sans-serif);
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--fd-text-muted);
}

body.rh-theme.page-diensten #diensten .card__icon {
  background: rgba(225, 29, 72, 0.12);
  border-color: rgba(225, 29, 72, 0.35);
  color: var(--fd-red-soft);
}

body.rh-theme.page-diensten #diensten .cta-strip {
  background: linear-gradient(165deg, #16161c 0%, #0e0e12 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: calc(var(--fd-radius) + 4px);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset,
    0 0 70px rgba(225, 29, 72, 0.08);
  transform: translateY(-3px);
}

body.rh-theme.page-diensten #diensten .cta-strip h2 {
  font-family: var(--fd-diensten-display);
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  color: var(--fd-red);
  -webkit-text-fill-color: var(--fd-red);
}

body.rh-theme.page-diensten #diensten .cta-strip p {
  font-family: var(--font-body, "Inter", system-ui, sans-serif);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--fd-text-muted);
}

/* Licht thema — alleen diensten-sectie (rest via fd-theme.css) */
html.fd-theme-light body.rh-theme.page-diensten #diensten {
  background:
    radial-gradient(ellipse 85% 50% at 50% -5%, rgba(225, 29, 72, 0.08), transparent 50%),
    #f1f3f8;
  color: #151820;
}

html.fd-theme-light body.rh-theme.page-diensten .page-hero {
  background: linear-gradient(168deg, #ffffff 0%, #eef0f6 100%);
  border-bottom-color: rgba(11, 11, 15, 0.08);
}

html.fd-theme-light body.rh-theme.page-diensten .page-hero__title {
  color: #be123c;
  -webkit-text-fill-color: #be123c;
  text-shadow: none;
}

html.fd-theme-light body.rh-theme.page-diensten .page-hero__lead,
html.fd-theme-light body.rh-theme.page-diensten #diensten .section__intro {
  color: rgba(11, 11, 15, 0.68);
}

html.fd-theme-light body.rh-theme.page-diensten .page-hero .section__label,
html.fd-theme-light body.rh-theme.page-diensten #diensten .section__head .section__label {
  color: #e11d48;
}

html.fd-theme-light body.rh-theme.page-diensten #diensten .section__intro a {
  color: #be123c;
}

html.fd-theme-light body.rh-theme.page-diensten #diensten .section__intro a:hover {
  color: #9f1239;
}

html.fd-theme-light body.rh-theme.page-diensten #diensten .section__title {
  color: #be123c;
  -webkit-text-fill-color: #be123c;
  text-shadow: none;
}

html.fd-theme-light body.rh-theme.page-diensten .price-pack__head {
  border-bottom-color: rgba(11, 11, 15, 0.1);
}

html.fd-theme-light body.rh-theme.page-diensten .price-pack__title {
  color: #0b0b0f;
  -webkit-text-fill-color: #0b0b0f;
  text-shadow: none;
}

html.fd-theme-light body.rh-theme.page-diensten .price-card__meta {
  background: rgba(225, 29, 72, 0.06);
  border-color: rgba(11, 11, 15, 0.08);
  color: rgba(11, 11, 15, 0.72);
}

html.fd-theme-light body.rh-theme.page-diensten .diensten-visual--compact {
  background: linear-gradient(165deg, #ffffff 0%, #f4f5f9 55%, #eef0f6 100%);
  border-color: rgba(11, 11, 15, 0.08);
  box-shadow:
    0 2px 4px rgba(11, 11, 15, 0.06),
    0 16px 44px rgba(11, 11, 15, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.9) inset,
    0 0 50px rgba(225, 29, 72, 0.06);
}

html.fd-theme-light body.rh-theme.page-diensten .diensten-visual--compact:hover {
  box-shadow:
    0 4px 8px rgba(11, 11, 15, 0.08),
    0 22px 56px rgba(11, 11, 15, 0.12),
    0 0 0 1px rgba(255, 255, 255, 1) inset,
    0 0 70px rgba(225, 29, 72, 0.12);
}

html.fd-theme-light body.rh-theme.page-diensten .diensten-visual--compact .diensten-visual__body {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, #f7f8fb 100%);
}

html.fd-theme-light body.rh-theme.page-diensten .diensten-visual__head .diensten-visual__title {
  color: #0b0b0f;
  -webkit-text-fill-color: #0b0b0f;
}

html.fd-theme-light body.rh-theme.page-diensten .diensten-visual__list {
  color: rgba(11, 11, 15, 0.72);
}

html.fd-theme-light body.rh-theme.page-diensten .diensten-visual__glyph {
  background: linear-gradient(145deg, #ffffff 0%, #fce7eb 45%, #fecdd3 100%);
  border-color: rgba(225, 29, 72, 0.22);
  color: #be123c;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 4px 14px rgba(225, 29, 72, 0.15);
}

html.fd-theme-light body.rh-theme.page-diensten .price-card.price-card--row {
  background: linear-gradient(165deg, #ffffff 0%, #f4f5f9 100%);
  border-color: rgba(11, 11, 15, 0.08);
  border-left-color: #e11d48;
  border-top: none;
  box-shadow:
    0 2px 4px rgba(11, 11, 15, 0.06),
    0 16px 44px rgba(11, 11, 15, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.85) inset,
    0 0 45px rgba(225, 29, 72, 0.07);
}

html.fd-theme-light body.rh-theme.page-diensten .price-card.price-card--row:hover {
  box-shadow:
    0 4px 8px rgba(11, 11, 15, 0.08),
    0 22px 56px rgba(11, 11, 15, 0.12),
    0 0 70px rgba(225, 29, 72, 0.12);
}

html.fd-theme-light body.rh-theme.page-diensten .price-card__top {
  border-bottom-color: rgba(11, 11, 15, 0.1);
}

html.fd-theme-light body.rh-theme.page-diensten .price-card__body {
  background: linear-gradient(180deg, #ffffff 0%, #f7f8fb 100%);
}

html.fd-theme-light body.rh-theme.page-diensten .price-card__icon-wrap {
  border-right-color: rgba(11, 11, 15, 0.1);
  background: linear-gradient(180deg, #fff5f6 0%, #fce7eb 100%);
  color: #e11d48;
}

html.fd-theme-light body.rh-theme.page-diensten .price-card--featured .price-card__icon-wrap {
  background: linear-gradient(180deg, #ffe4e6 0%, #fecdd3 100%);
  color: #be123c;
}

html.fd-theme-light body.rh-theme.page-diensten .price-card__title {
  color: #0b0b0f;
  -webkit-text-fill-color: #0b0b0f;
}

html.fd-theme-light body.rh-theme.page-diensten .price-card__price {
  color: #0b0b0f;
  -webkit-text-fill-color: #0b0b0f;
}

html.fd-theme-light body.rh-theme.page-diensten .price-card__top .price-card__price {
  text-shadow: none;
}

html.fd-theme-light body.rh-theme.page-diensten .price-card__list,
html.fd-theme-light body.rh-theme.page-diensten .price-card__meta {
  color: rgba(11, 11, 15, 0.72);
}

html.fd-theme-light body.rh-theme.page-diensten .price-card--featured.price-card--row {
  background: linear-gradient(160deg, #fff1f2 0%, #ffffff 55%);
  border-color: rgba(225, 29, 72, 0.35);
  border-left-color: #e11d48;
  box-shadow:
    0 2px 4px rgba(11, 11, 15, 0.06),
    0 18px 48px rgba(225, 29, 72, 0.14),
    0 0 0 1px rgba(255, 255, 255, 0.9) inset,
    0 0 60px rgba(225, 29, 72, 0.15);
}

html.fd-theme-light body.rh-theme.page-diensten #diensten .card {
  background: linear-gradient(165deg, #ffffff 0%, #f4f5f9 100%);
  border-color: rgba(11, 11, 15, 0.08);
  box-shadow:
    0 2px 4px rgba(11, 11, 15, 0.06),
    0 14px 40px rgba(11, 11, 15, 0.09),
    0 0 0 1px rgba(255, 255, 255, 0.85) inset;
}

html.fd-theme-light body.rh-theme.page-diensten #diensten .card:hover {
  box-shadow:
    0 4px 8px rgba(11, 11, 15, 0.08),
    0 20px 52px rgba(11, 11, 15, 0.12),
    0 0 55px rgba(225, 29, 72, 0.1);
}

html.fd-theme-light body.rh-theme.page-diensten #diensten .card p {
  color: rgba(11, 11, 15, 0.72);
}

html.fd-theme-light body.rh-theme.page-diensten #diensten .cta-strip {
  background: linear-gradient(165deg, #ffffff 0%, #f1f3f8 100%);
  border-color: rgba(11, 11, 15, 0.1);
  box-shadow:
    0 12px 40px rgba(11, 11, 15, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.9) inset,
    0 0 50px rgba(225, 29, 72, 0.06);
}

html.fd-theme-light body.rh-theme.page-diensten #diensten .cta-strip p {
  color: rgba(11, 11, 15, 0.72);
}

@media (max-width: 520px) {
  body.rh-theme.page-diensten .price-card.price-card--row {
    flex-direction: column;
  }

  body.rh-theme.page-diensten .price-card__icon-wrap {
    flex: 0 0 auto;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.85rem 1rem;
  }

  html.fd-theme-light body.rh-theme.page-diensten .price-card__icon-wrap {
    border-bottom-color: rgba(11, 11, 15, 0.1);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.rh-theme.page-diensten .diensten-visual--compact,
  body.rh-theme.page-diensten .price-card.price-card--row,
  body.rh-theme.page-diensten #diensten .card {
    transform: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }

  body.rh-theme.page-diensten .diensten-visual--compact:hover,
  body.rh-theme.page-diensten .price-card.price-card--row:hover,
  body.rh-theme.page-diensten #diensten .card:hover {
    transform: none;
  }

  body.rh-theme.page-diensten .diensten-visual--compact:hover .diensten-visual__glyph {
    transform: none;
  }
}

@supports not (-webkit-text-stroke: 1px #e11d48) {
  body.rh-theme.page-diensten .page-hero__title,
  body.rh-theme.page-diensten #diensten .section__title {
    color: #f43f5e;
    -webkit-text-fill-color: #f43f5e;
  }
}
