/* V6: rustigere Moneybird-compositie, echte portretproof en één consistente hero-opbouw. */
:root {
  --wg-v6-ink: #111615;
  --wg-v6-green: #047857;
  --wg-v6-green-light: #0a8b66;
  --wg-v6-sand: #f5f4ef;
  --wg-v6-line: rgba(17, 22, 21, .12);
}

.wg-v2-section-head h2,
.wg-v2-section-head h2 span,
.wg-v2-portal-copy h3,
.wg-v2-integration-grid h3,
.wg-v2-review-card h3,
.switch-intro h2,
.switch-scope h2,
.switch-calm h2,
.switch-faq h2 {
  color: var(--wg-v6-ink);
}

.wg-v2-proof,
.switch-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, .88);
}

.wg-v2-proof__avatars,
.switch-proof__avatars {
  display: flex;
  flex: 0 0 auto;
  padding-left: 8px;
}

.wg-v2-proof__avatars img,
.switch-proof__avatars img {
  width: 28px;
  height: 28px;
  margin-left: -8px;
  border: 2px solid #fff;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .14);
}

.wg-v2-proof strong,
.switch-proof strong { color: #fff; }

/* De diensten volgen Moneybirds beeldkaart-patroon: beeldvlak, titeloverlay, tekst eronder. */
.wg-v2-services {
  background: #fff;
}

.wg-v2-service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.wg-v2-service-card,
.wg-v2-service-card--sand,
.wg-v2-service-card--green {
  min-height: 0;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--wg-v6-ink);
  box-shadow: none;
  text-decoration: none;
}

.wg-v2-service-card:hover {
  transform: none;
  box-shadow: none;
}

.wg-v2-service-card__image {
  position: relative;
  height: auto;
  aspect-ratio: 1 / .98;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: var(--wg-v6-sand);
}

.wg-v2-service-card__image::after {
  position: absolute;
  inset: 44% 0 0;
  background: linear-gradient(180deg, transparent, rgba(5, 12, 10, .76));
  content: "";
}

.wg-v2-service-card__image img {
  transition: transform .45s ease;
}

.wg-v2-service-card:hover .wg-v2-service-card__image img {
  transform: scale(1.025);
}

.wg-v2-service-card__image > strong {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 22px;
  left: 24px;
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: 1.1;
}

.wg-v2-service-card__body {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 0 0;
}

.wg-v2-service-card__body h3,
.wg-v2-service-card--green .wg-v2-service-card__body h3 {
  margin: 0;
  color: var(--wg-v6-ink);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: 1.18;
}

.wg-v2-service-card__body > p {
  margin: 14px 0 0;
  color: #454b49;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.6;
  text-transform: none;
}

.wg-v2-service-card__body > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 24px;
  color: var(--wg-v6-green);
  font-size: 14px;
  font-weight: 700;
}

.wg-v2-service-card__body .material-symbols-rounded { font-size: 19px; }

/* Eén heldere groene CTA in plaats van het zware donkergroene blok. */
.wg-v2-price {
  position: relative;
  isolation: isolate;
  align-items: center;
  margin-top: 24px;
  margin-bottom: 96px;
  overflow: hidden;
  border-radius: 40px;
  background: var(--wg-v6-green-light);
}

.wg-v2-price > div { position: relative; z-index: 2; }

.wg-v2-price .wg-v2-eyebrow,
.wg-v2-price h2,
.wg-v2-price h2 span {
  color: #fff;
}

.wg-v2-price h2 {
  max-width: 690px;
  margin: 0;
}

.wg-v2-price__lead {
  max-width: 610px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, .84);
  font-size: 16px;
  line-height: 1.6;
}

.wg-v2-price .wg-v2-button--primary {
  background: #fff;
  color: #064e3b;
}

.wg-v2-price .wg-v2-text-link { color: #fff; }

.wg-v2-price__ribbon {
  position: absolute;
  z-index: 1;
  right: -120px;
  bottom: -160px;
  width: 460px;
  max-width: none;
  opacity: .36;
  transform: rotate(-8deg);
  pointer-events: none;
}

/* Overstappen gebruikt nu exact dezelfde hero-hiërarchie en USP-doorloop als home. */
.switch-hero { border-radius: 0; }

.switch-button--primary {
  border-color: var(--wg-v6-green-light);
  background: var(--wg-v6-green-light);
  color: #fff;
}

.switch-button--primary:hover { background: #087b5c; }

.switch-button--ghost {
  border-color: rgba(255, 255, 255, .58);
  background: rgba(2, 12, 9, .16);
}

.switch-usp {
  height: 84px;
  overflow: hidden;
  background: #f5f5f4;
}

.switch-usp__viewport {
  width: 100%;
  overflow: hidden;
}

.switch-usp__track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 48px;
  padding: 30px 0;
  animation: switch-usp-scroll 36s linear infinite;
}

.switch-usp__track > span {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  color: #0f1a17;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  white-space: nowrap;
}

.switch-usp__track .material-symbols-rounded {
  color: var(--wg-v6-green-light);
  font-size: 20px;
}

@keyframes switch-usp-scroll {
  to { transform: translateX(-50%); }
}

.switch-intro { padding-top: 80px; }

.switch-cta {
  background: var(--wg-v6-green-light);
}

.switch-cta h2 { color: #fff; }

@media (prefers-reduced-motion: reduce) {
  .switch-usp__track { animation: none; }
  .wg-v2-service-card__image img { transition: none; }
}

@media (max-width: 900px) {
  .wg-v2-service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .wg-v2-price { align-items: flex-start; }
  .wg-v2-price__ribbon { right: -180px; opacity: .24; }
}

@media (max-width: 600px) {
  .wg-v2-proof,
  .switch-proof { align-items: flex-start; font-size: 12px; line-height: 1.4; }

  .wg-v2-service-grid {
    grid-template-columns: 1fr;
    gap: 44px;
    margin-top: 40px;
  }

  .wg-v2-service-card__image { border-radius: 20px; }
  .wg-v2-service-card__body { min-height: 0; padding-top: 20px; }
  .wg-v2-service-card__body > span { margin-top: 20px; padding-top: 0; }

  .wg-v2-price {
    margin-bottom: 72px;
    padding: 52px 24px;
    border-radius: 28px;
  }

  .wg-v2-price__ribbon { right: -220px; bottom: -120px; width: 400px; }

  .switch-usp { height: 76px; }
  .switch-usp__track { gap: 36px; padding: 26px 0; }
  .switch-intro { padding-top: 64px; }
}
