/* Pagina-specifiek - gedeelde basis (tokens, reset, navbar, footer) staat in base.css */


  /* PAGE HERO */
  .diensten-hero {
    min-height: 67vh;
    background: var(--navy);
    padding: 9rem 5% 4rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .diensten-hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
    background: var(--mint);
    width: 500px; height: 500px;
    top: -180px; right: -120px;
    pointer-events: none;
  }
  .diensten-hero .hero-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(93,202,165,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(93,202,165,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
  }
  .section-label {
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--mint);
    margin-bottom: 1rem;
  }
  .diensten-hero h1 {
    font-family: 'Helvetica Now Display', 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -1.5px;
    max-width: 700px;
  }
  .diensten-hero h1 .accent { color: var(--mint); }
  .diensten-hero p {
    color: rgba(244,244,240,0.6);
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.7;
    max-width: 560px;
    margin-top: 1.3rem;
  }

  /* SECTIE ONDER HERO - STATS BAR */
  .stats-bar {
    background: var(--mint);
    padding: 1.8rem 5%;
    display: flex;
    gap: 3rem;
    justify-content: space-around;
    flex-wrap: wrap;
  }
  .stat-item { text-align: center; }
  .stat-num {
    font-family: 'Helvetica Now Display', 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
  }
  .stat-label {
    font-size: 0.78rem;
    color: rgba(13,27,42,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.4rem;
  }

  /* DIENSTEN - TABS */
  .diensten-lijst {
    max-width: 1320px;
    margin: 0 auto;
    padding: 5rem 5%;
  }
  .diensten-lijst-header {
    text-align: center;
    margin-bottom: 2.5rem;
  }
  .diensten-lijst-header .section-label { color: var(--mint-dark); }
  .diensten-lijst-titel {
    font-family: 'Helvetica Now Display', 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.1;
    letter-spacing: -1px;
  }
  .diensten-lijst-titel .accent { color: var(--mint); }

  /* Tab-knoppen */
  .dienst-tabs {
    display: flex;
    gap: 0.35rem;
    justify-content: center;
    flex-wrap: wrap;
    width: fit-content;
    max-width: 100%;
    margin: 0 auto 3rem;
    padding: 0.4rem;
    background: #eef0eb;
    border: 1px solid rgba(13,27,42,0.08);
    border-radius: 50px;
  }
  .dienst-tab {
    font-family: inherit;
    cursor: pointer;
    border: 1px solid transparent;
    background: transparent;
    color: var(--navy);
    padding: 0.7rem 1.4rem;
    border-radius: 50px;
    font-size: 0.92rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
  }
  .dienst-tab .num { color: var(--mint-dark); font-weight: 700; opacity: 0.6; }
  .dienst-tab:hover { background: var(--white); box-shadow: 0 2px 8px rgba(13,27,42,0.08); }
  .dienst-tab.active { background: var(--navy); color: var(--white); border-color: var(--navy); box-shadow: 0 6px 16px rgba(13,27,42,0.18); }
  .dienst-tab.active .num { color: var(--mint); opacity: 1; }
  .dienst-tab.featured { border-color: var(--mint); }
  .dienst-tab .tab-badge {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--mint);
    color: var(--navy);
    padding: 0.15rem 0.55rem;
    border-radius: 50px;
  }

  /* Uitgelichte termen (Website laten maken) */
  .dienst-termen {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.8rem;
  }
  .dienst-term {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: var(--mint-dark);
    background: rgba(93,202,165,0.12);
    border: 1px solid rgba(93,202,165,0.3);
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
  }

  /* Tab-panelen */
  .dienst-paneel { display: none; }
  .dienst-paneel.active {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 4rem;
    align-items: center;
    animation: dienstFade 0.4s ease;
  }
  @keyframes dienstFade {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: none; }
  }
  .dienst-paneel-visual {
    aspect-ratio: 16 / 11;
    border-radius: 24px;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
  .dienst-paneel-visual::before {
    content: '';
    position: absolute;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: var(--mint);
    opacity: 0.08;
    top: -70px; right: -50px;
  }
  .dienst-paneel-visual span {
    font-family: 'Helvetica Now Display', 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
    font-size: clamp(5rem, 11vw, 9rem);
    font-weight: 800;
    color: rgba(93,202,165,0.5);
    line-height: 1;
    position: relative;
  }
  .dienst-tag-pill {
    display: inline-block;
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--mint-dark);
    background: rgba(93,202,165,0.12);
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    margin-bottom: 1.2rem;
    font-weight: 500;
  }
  .dienst-paneel-text h3 {
    font-family: 'Helvetica Now Display', 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.5px;
    margin-bottom: 1.1rem;
  }
  .dienst-paneel-text p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(13,27,42,0.65);
    font-weight: 300;
    margin-bottom: 1.8rem;
    max-width: 540px;
  }
  .dienst-paneel-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--navy);
    color: var(--white);
    text-decoration: none;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: background 0.2s, gap 0.2s, transform 0.2s;
  }
  .dienst-paneel-link:hover { background: var(--mint); color: var(--navy); gap: 0.85rem; transform: translateY(-2px); }

  /* PAKKETTEN */
  .pakketten-sectie {
    background: var(--navy);
    padding: 5rem 5%;
  }
  .pakketten-inner { max-width: 1100px; margin: 0 auto; }
  .pakketten-header { max-width: 620px; margin-bottom: 3rem; }
  .pakketten-header .section-label { color: var(--mint); }
  .pakketten-header h2 {
    font-family: 'Helvetica Now Display', 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    color: var(--white);
  }
  .pakketten-header h2 .accent { color: var(--mint); }
  .pakketten-header p {
    color: rgba(244,244,240,0.55);
    font-weight: 300;
    line-height: 1.7;
    margin-top: 1rem;
  }
  .pakket-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
  }
  .pakket-card {
    background: rgba(244,244,240,0.04);
    border: 1px solid rgba(93,202,165,0.18);
    border-radius: 20px;
    padding: 2.2rem 2rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, border-color 0.3s;
    position: relative;
  }
  .pakket-card:hover { transform: translateY(-6px); border-color: rgba(93,202,165,0.5); }
  .pakket-card.featured {
    background: rgba(93,202,165,0.07);
    border-color: var(--mint);
  }
  .pakket-badge {
    position: absolute;
    top: -7px; left: 2rem;
    background: var(--mint);
    color: var(--navy);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.45px;
    text-transform: uppercase;
    padding: 0.16rem 0.78rem;
    border-radius: 50px;
  }
  .pakket-naam {
    font-family: 'Helvetica Now Display', 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.8rem;
  }
  .pakket-bedrag {
    font-family: 'Helvetica Now Display', 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--mint);
    line-height: 1;
  }
  .pakket-periode { font-size: 0.82rem; color: rgba(244,244,240,0.45); margin-top: 0.3rem; }
  .pakket-voor {
    font-size: 0.85rem;
    color: rgba(244,244,240,0.6);
    font-weight: 300;
    line-height: 1.5;
    margin: 1rem 0 1.4rem;
    padding-bottom: 1.4rem;
    border-bottom: 1px solid rgba(93,202,165,0.15);
  }
  .pakket-voor strong { color: var(--mint); font-weight: 500; }
  .pakket-beschrijving {
    font-size: 0.9rem;
    color: rgba(244,244,240,0.7);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 1.4rem;
  }
  .pakket-features-titel {
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(93,202,165,0.7);
    font-weight: 500;
    margin-bottom: 0.9rem;
  }
  .pakket-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-bottom: 1.8rem;
    flex-grow: 1;
  }
  .pakket-features li {
    font-size: 0.88rem;
    color: rgba(244,244,240,0.8);
    font-weight: 300;
    line-height: 1.4;
    padding-left: 1.7rem;
    position: relative;
  }
  .pakket-features li::before {
    content: "";
    position: absolute;
    left: 0; top: 3px;
    width: 14px; height: 14px;
    background: var(--mint);
    clip-path: polygon(43% 70%, 87% 18%, 96% 28%, 43% 90%, 10% 53%, 19% 43%);
  }
  .pakket-btn {
    background: var(--mint);
    color: var(--navy);
    text-align: center;
    padding: 0.85rem 1rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
  }
  .pakket-btn:hover { background: var(--mint-dark); transform: translateY(-2px); }
  .pakket-btn.outline {
    background: transparent;
    color: var(--mint);
    border: 1.5px solid rgba(93,202,165,0.5);
  }
  .pakket-btn.outline:hover { background: rgba(93,202,165,0.12); border-color: var(--mint); }

  /* LOSSE DIENSTEN */
  .losse-diensten-sectie {
    background: #EAF5EF;
    padding: 3.6rem 5%;
  }
  .losse-diensten-inner {
    max-width: 1100px;
    margin: 0 auto;
  }
  .losse-diensten-titel {
    font-family: 'Helvetica Now Display', 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
    font-size: clamp(1.35rem, 2.4vw, 1.9rem);
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.5px;
    margin: 0 0 1.4rem;
  }
  .losse-grid-2 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
  }
  .losse-item-2 {
    display: flex;
    min-width: 0;
    min-height: 112px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.85rem;
    background: #fff;
    border: 1px solid rgba(13,27,42,0.08);
    border-radius: 14px;
    padding: 1.2rem 1.25rem;
    box-shadow: 0 14px 34px rgba(13,27,42,0.07);
  }
  .losse-item-2 .losse-naam-2 { font-size: 0.92rem; color: rgba(13,27,42,0.72); font-weight: 500; line-height: 1.35; }
  .losse-item-2 .losse-prijs-2 {
    font-family: 'Helvetica Now Display', 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--mint-dark);
    white-space: nowrap;
  }

  /* EXTRA SERVICE (Social Media Audit) */
  .extra-dienst-sectie {
    background: #eef0eb;
    padding: 5rem 5%;
  }
  .extra-dienst-inner {
    max-width: 1100px;
    margin: 0 auto;
  }
  .section-title {
    font-family: 'Helvetica Now Display', 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
    font-size: clamp(1.7rem, 3.2vw, 2.4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    color: var(--navy);
    margin-bottom: 2rem;
  }
  .section-title .accent { color: var(--mint); }
  .extra-dienst-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.2rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    border: 1.5px solid rgba(13,27,42,0.06);
  }
  .extra-dienst-text h3 {
    font-family: 'Helvetica Now Display', 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
  }
  .extra-dienst-text p {
    font-size: 0.92rem;
    color: rgba(13,27,42,0.6);
    line-height: 1.7;
    font-weight: 300;
    max-width: 520px;
  }
  .extra-dienst-price {
    text-align: center;
    flex-shrink: 0;
  }
  .extra-dienst-price .bedrag {
    font-family: 'Helvetica Now Display', 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--navy);
  }
  .extra-dienst-price .label {
    font-size: 0.75rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.8rem;
  }
  .btn-primary {
    background: var(--mint);
    color: var(--navy);
    padding: 0.7rem 1.6rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    display: inline-block;
  }
  .btn-primary:hover { background: var(--mint-dark); transform: translateY(-2px); }

  /* CTA */
  .diensten-cta-band {
    background: var(--navy);
    padding: 4.5rem 5%;
    text-align: center;
  }
  .diensten-cta-band h2 {
    font-family: 'Helvetica Now Display', 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
    margin-bottom: 0.8rem;
  }
  .diensten-cta-band h2 span { color: var(--mint); }
  .diensten-cta-band p { color: rgba(244,244,240,0.55); margin-bottom: 1.8rem; }



  @media (max-width: 1000px) and (min-width: 769px) {
    .losse-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  }
  @media (max-width: 768px) {
    .nav-toggle {
      display: flex; flex-direction: column; justify-content: center; gap: 5px;
      width: 44px; height: 44px; padding: 9px;
      background: none; border: 0; cursor: pointer; z-index: 120;
    }
    .nav-toggle span {
      display: block; height: 2px; width: 100%; border-radius: 2px;
      background: var(--white);
      transition: transform 0.3s ease, opacity 0.3s ease;
    }
    nav.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    nav.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
    nav.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .nav-links {
      display: flex;
      position: fixed; top: 0; right: 0;
      flex-direction: column; align-items: flex-start;
      width: min(80vw, 320px); height: 100vh;
      padding: 6rem 2rem 2rem; gap: 1.6rem;
      background: rgba(13,27,42,0.98);
      -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
      box-shadow: -10px 0 40px rgba(0,0,0,0.35);
      transform: translateX(100%);
      transition: transform 0.32s ease;
      z-index: 110;
    }
    nav.nav-open .nav-links { transform: translateX(0); }
    .nav-links a { font-size: 1.05rem; }
    .nav-cta { display: inline-block; padding: 0.7rem 1.6rem; }
    .dienst-paneel.active { grid-template-columns: 1fr; gap: 2rem; }
    .dienst-paneel-visual { order: 0; }
    .stats-bar { gap: 1.5rem; padding: 1.4rem 5%; }
    .stat-num { font-size: 1.8rem; }
    .pakket-grid { grid-template-columns: 1fr; }
    .losse-grid-2 { grid-template-columns: 1fr; }
    .extra-dienst-card { flex-direction: column; align-items: flex-start; text-align: left; }
    .extra-dienst-price { text-align: left; }
    footer { flex-direction: column; gap: 1rem; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; gap: 1rem; }
  }


  /* Diensten tablet corrections */
  @media (max-width: 900px) {
    .audit-inner { grid-template-columns: 1fr; gap: 2rem; }
    .audit-tags { flex-wrap: wrap; }
    .audit-card { max-width: 100%; }
  }

/* -- Large-screen content cap (>=1500px) --
   .diensten-lijst already caps its own content at 1320px; align the full-bleed
   bands to the same 1320px rail (don't re-pad .diensten-lijst itself). */
@media (min-width: 1500px) {
  .diensten-hero, .stats-bar, .pakketten-sectie, .losse-diensten-sectie, .extra-dienst-sectie, .diensten-cta-band {
    padding-inline: max(5%, calc((100% - 1320px) / 2));
  }
}


/* Audit 2.0 refinements: compact mobile nav and readable footer */
@media (max-width: 768px) {
  nav { padding: 0.85rem 1rem; }
  nav .nav-links {
    width: min(78vw, 290px) !important;
    padding: 4.7rem 1.1rem 1.25rem !important;
  }
  nav .nav-links a:not(.nav-cta) {
    padding: 0.68rem 0.2rem !important;
    font-size: 0.96rem !important;
    line-height: 1.2 !important;
  }
  nav .nav-links .nav-cta {
    margin-top: 0.95rem !important;
    padding: 0.78rem 1rem !important;
    font-size: 0.95rem !important;
  }
}
@media (max-width: 560px) {
  footer.site-footer { padding: 2.35rem 1.15rem 1.4rem !important; }
  /* Twee kolommen i.p.v. alles onder elkaar -> footer ~40% korter op telefoon */
  footer.site-footer .footer-top { grid-template-columns: 1fr 1fr !important; gap: 1.5rem 1.25rem !important; }
  footer.site-footer .footer-brand { max-width: none !important; }
  footer.site-footer .footer-about { display: none; }
  footer.site-footer .footer-col h4 { margin-bottom: 0.6rem; }
  footer.site-footer .footer-col a,
  footer.site-footer .footer-contact a,
  footer.site-footer .footer-contact span { min-height: 30px; margin-bottom: 0.2rem !important; font-size: 0.86rem; }
  footer.site-footer .footer-regio-row { margin-top: 1.5rem !important; padding-top: 1rem; }
  footer.site-footer .footer-bottom-row { margin-top: 1rem; }
  footer.site-footer .footer-legal { flex-direction: row; flex-wrap: wrap; gap: 0.5rem 1.1rem !important; }
  footer.site-footer .footer-legal a { min-height: 30px; }
}

/* Compactere websitepakketten met meer kleurcontrast */
.pakketten-sectie {
  padding-top: 3rem;
  padding-bottom: 3.2rem;
}
.pakketten-header {
  max-width: 900px;
  margin-bottom: 1.6rem;
}
.pakketten-header h2 {
  font-size: clamp(1.45rem, 2.6vw, 2.05rem);
  line-height: 1.08;
}
.pakketten-header p {
  max-width: 720px;
  margin-top: 0.7rem;
  line-height: 1.5;
  color: rgba(244,244,240,0.72);
}
.pakket-grid {
  gap: 1rem;
  align-items: stretch;
}
.pakket-card {
  border-radius: 16px;
  padding: 1.35rem 1.25rem;
  min-height: 0;
  box-shadow: 0 18px 42px rgba(0,0,0,0.16);
}
.pakket-card:nth-child(1) {
  background: #F4F4F0;
  border-color: rgba(244,244,240,0.5);
}
.pakket-card.featured {
  background: linear-gradient(160deg, #102D45 0%, #0D1B2A 100%);
  border-color: rgba(93,202,165,0.8);
  box-shadow: 0 26px 62px rgba(0,0,0,0.28);
}
.pakket-card:nth-child(3) {
  background: #DFF1E9;
  border-color: rgba(93,202,165,0.44);
}
.pakket-card:nth-child(1) .pakket-naam,
.pakket-card:nth-child(3) .pakket-naam,
.pakket-card:nth-child(1) .pakket-voor,
.pakket-card:nth-child(3) .pakket-voor,
.pakket-card:nth-child(1) .pakket-beschrijving,
.pakket-card:nth-child(3) .pakket-beschrijving,
.pakket-card:nth-child(1) .pakket-features li,
.pakket-card:nth-child(3) .pakket-features li,
.pakket-card:nth-child(1) .pakket-periode,
.pakket-card:nth-child(3) .pakket-periode {
  color: rgba(13,27,42,0.76);
}
.pakket-card:nth-child(1) .pakket-naam,
.pakket-card:nth-child(3) .pakket-naam {
  color: var(--navy);
}
.pakket-card:nth-child(1) .pakket-bedrag,
.pakket-card:nth-child(3) .pakket-bedrag,
.pakket-card:nth-child(1) .pakket-voor strong,
.pakket-card:nth-child(3) .pakket-voor strong,
.pakket-card:nth-child(1) .pakket-features-titel,
.pakket-card:nth-child(3) .pakket-features-titel {
  color: var(--mint-dark);
}
.pakket-card:nth-child(1) .pakket-voor,
.pakket-card:nth-child(3) .pakket-voor {
  border-bottom-color: rgba(13,27,42,0.1);
}
.pakket-naam {
  font-size: 1.08rem;
  margin-bottom: 0.45rem;
}
.pakket-bedrag {
  font-size: 1.9rem;
}
.pakket-periode {
  font-size: 0.74rem;
  margin-top: 0.14rem;
}
.pakket-voor {
  font-size: 0.8rem;
  line-height: 1.38;
  margin: 0.7rem 0 0.8rem;
  padding-bottom: 0.8rem;
}
.pakket-beschrijving {
  font-size: 0.82rem;
  line-height: 1.45;
  margin-bottom: 0.85rem;
}
.pakket-features-titel {
  font-size: 0.66rem;
  margin-bottom: 0.55rem;
}
.pakket-features {
  gap: 0.38rem;
  margin-bottom: 1rem;
}
.pakket-features li {
  font-size: 0.8rem;
  line-height: 1.25;
  padding-left: 1.28rem;
}
.pakket-features li::before {
  top: 2px;
  width: 11px;
  height: 11px;
}
.pakket-btn {
  min-height: 40px;
  padding: 0.62rem 0.8rem;
  font-size: 0.82rem;
  font-weight: 800;
}
.pakket-card:nth-child(1) .pakket-btn.outline,
.pakket-card:nth-child(3) .pakket-btn.outline {
  color: var(--navy);
  border-color: rgba(13,27,42,0.22);
  background: rgba(255,255,255,0.45);
}
.pakket-card:nth-child(1) .pakket-btn.outline:hover,
.pakket-card:nth-child(3) .pakket-btn.outline:hover {
  color: var(--navy);
  background: var(--mint);
  border-color: var(--mint);
}
.pakket-badge {
  top: -6px;
  left: 1.25rem;
  padding: 0.12rem 0.64rem;
  font-size: 0.58rem;
}
@media (max-width: 768px) {
  .pakketten-sectie { padding-top: 2.6rem; padding-bottom: 2.8rem; }
  .pakketten-header { margin-bottom: 1.25rem; }
  .pakket-card { padding: 1.2rem; }
}
/* Rustigere en lagere pakketsectie */
.pakketten-sectie {
  padding-top: 2.4rem;
  padding-bottom: 2.5rem;
}
.pakketten-header {
  max-width: 680px;
  margin-bottom: 1.25rem;
}
.pakketten-header .section-label {
  margin-bottom: 0.55rem;
}
.pakketten-header h2 {
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
}
.pakketten-header p {
  max-width: 620px;
  font-size: 0.92rem;
  line-height: 1.45;
  color: rgba(244,244,240,0.62);
}
.pakket-grid {
  grid-template-columns: 0.9fr 1.18fr 0.9fr;
  gap: 0.9rem;
  align-items: center;
}
.pakket-card {
  padding: 1.15rem 1.1rem;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}
.pakket-card:nth-child(1) {
  background: #F7F6F1;
  border-color: rgba(13,27,42,0.08);
}
.pakket-card.featured {
  padding: 1.45rem 1.35rem;
  z-index: 2;
  transform: scale(1.045);
  background: linear-gradient(160deg, #102D45 0%, #0D1B2A 100%);
  box-shadow: 0 26px 58px rgba(0,0,0,0.26);
}
.pakket-card.featured:hover {
  transform: scale(1.045) translateY(-4px);
}
.pakket-card:nth-child(3) {
  background: #EEF6F0;
  border-color: rgba(93,202,165,0.22);
}
.pakket-beschrijving {
  display: none;
}
.pakket-naam {
  font-size: 1rem;
  margin-bottom: 0.34rem;
}
.pakket-card.featured .pakket-naam {
  font-size: 1.14rem;
}
.pakket-bedrag {
  font-size: 1.68rem;
}
.pakket-card.featured .pakket-bedrag {
  font-size: 2.05rem;
}
.pakket-voor {
  margin: 0.58rem 0 0.68rem;
  padding-bottom: 0.68rem;
}
.pakket-features-titel {
  margin-bottom: 0.45rem;
  letter-spacing: 1px;
}
.pakket-features {
  gap: 0.3rem;
  margin-bottom: 0.85rem;
}
.pakket-features li {
  font-size: 0.77rem;
  line-height: 1.22;
}
.pakket-card:nth-child(1) .pakket-features li::before,
.pakket-card:nth-child(3) .pakket-features li::before {
  background: rgba(93,202,165,0.75);
}
.pakket-btn {
  min-height: 38px;
  padding: 0.56rem 0.74rem;
}
@media (max-width: 900px) {
  .pakket-grid {
    grid-template-columns: 1fr;
    align-items: stretch;
  }
  .pakket-card.featured,
  .pakket-card.featured:hover {
    transform: none;
  }
}
@media (max-width: 768px) {
  .pakketten-sectie { padding-top: 2.2rem; padding-bottom: 2.35rem; }
  .pakketten-header p { font-size: 0.88rem; }
}
/* Meer ademruimte tussen pakketintro en kaarten */
.pakketten-header {
  margin-bottom: 2.4rem;
}
@media (max-width: 768px) {
  .pakketten-header {
    margin-bottom: 1.8rem;
  }
}

/* ===== HERO FOTOCLUSTER + GOOGLE REVIEWS (site-breed) ===== */
.hero-photos {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 1;
  animation: heroPhotosIn 0.9s ease 0.7s both;
}
@keyframes heroPhotosIn { from { opacity: 0; } to { opacity: 1; } }
.hero-photos-stack { display: flex; align-items: flex-end; }
.hero-photos img {
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 24px 50px rgba(0,0,0,0.45);
}
.hero-photos .hp-back {
  width: 156px;
  margin-bottom: 26px;
  border: 1px solid rgba(255,255,255,0.12);
  filter: saturate(0.95);
}
.hero-photos .hp-front {
  width: 176px;
  margin-left: -34px;
  position: relative;
  z-index: 2;
  outline: 4px solid var(--navy);
  outline-offset: 0;
}
.hero-photos-badge {
  position: absolute;
  left: -18px;
  bottom: -14px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: #fff;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.32);
  white-space: nowrap;
}
.hero-photos-badge strong { font-weight: 700; }
/* Tablet/mobiel: foto zweeft klein rechtsboven en de tekst loopt eromheen
   (zelfde behandeling als de homepage-hero op telefoon). Desktop >1080px houdt
   de absolute foto rechts. .hero-photos staat al vroeg in de hero-DOM. */
@media (max-width: 1080px) {
  .diensten-hero { display: block; min-height: auto; padding: 6rem 5% 2.5rem; }
  .hero-photos {
    display: block;
    float: right;
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: auto;
    margin: 0.15rem 0 0.55rem 1rem;
    z-index: 1;
  }
  .hero-photos-stack { justify-content: flex-end; }
  .hero-photos .hp-back { width: 66px; margin-bottom: 9px; }
  .hero-photos .hp-front { width: 76px; margin-left: -15px; }
  .hero-photos-badge { font-size: 0.56rem; padding: 0.26rem 0.42rem; left: auto; right: 0; bottom: -10px; }
  .diensten-hero h1 { font-size: 1.7rem; letter-spacing: -0.6px; }
}

/* Final phone footer override: keep mobile footers compact across page-specific CSS. */
@media (max-width: 560px) {
  footer.site-footer { padding: 0.85rem 1rem 0.8rem !important; }
  footer.site-footer .footer-top { display: grid !important; grid-template-columns: 1fr !important; gap: 0.55rem !important; }
  footer.site-footer .footer-brand { grid-column: auto !important; max-width: none !important; }
  footer.site-footer .footer-logo { margin-bottom: 0.25rem !important; }
  footer.site-footer .footer-logo svg { width: 96px !important; height: auto !important; }
  footer.site-footer .footer-tagline,
  footer.site-footer .footer-about,
  footer.site-footer .footer-socials,
  footer.site-footer .footer-regio-row,
  footer.site-footer .footer-top > .footer-col:not(.footer-contact),
  footer.site-footer .footer-contact h4 { display: none !important; }
  footer.site-footer .footer-contact { display: flex !important; flex-wrap: wrap !important; gap: 0.2rem 0.8rem !important; align-items: center !important; }
  footer.site-footer .footer-contact a,
  footer.site-footer .footer-contact span { display: inline-block !important; min-height: 0 !important; margin: 0 !important; font-size: 0.78rem !important; line-height: 1.28 !important; }
  footer.site-footer .footer-contact a:first-of-type { display: none !important; }
  footer.site-footer .footer-bottom-row { flex-direction: row !important; align-items: center !important; justify-content: space-between !important; margin-top: 0.45rem !important; gap: 0.35rem !important; padding-top: 0 !important; }
  footer.site-footer .footer-copy,
  footer.site-footer .footer-legal a { font-size: 0.72rem !important; }
  footer.site-footer .footer-legal { flex-direction: row !important; flex-wrap: wrap !important; gap: 0.25rem 0.75rem !important; }
  footer.site-footer .footer-legal a { min-height: 0 !important; }
}

/* Final diensten page repair: prevent mobile overlap and stacked controls. */
.diensten-hero > *:not(.hero-grid):not(.diensten-hero-shape):not(.hero-photos) {
  position: relative;
  z-index: 2;
}

@media (min-width: 1081px) {
  .diensten-hero h1,
  .diensten-hero > p:not(.section-label) {
    max-width: min(700px, calc(100% - 390px));
  }
}

@media (max-width: 1080px) {
  .diensten-hero {
    overflow: hidden;
  }

  .diensten-hero .section-label,
  .diensten-hero h1,
  .diensten-hero > p:not(.section-label) {
    max-width: calc(100% - 145px);
  }
}

@media (max-width: 640px) {
  .diensten-hero {
    padding: 5.85rem 1.25rem 2.35rem;
  }

  .diensten-hero .hero-photos {
    float: right;
    width: 112px;
    min-height: 106px;
    margin: 0.05rem 0 0.75rem 1rem;
  }

  .diensten-hero .hero-photos .hp-back {
    width: 62px;
    min-width: 0;
  }

  .diensten-hero .hero-photos .hp-front {
    width: 72px;
    min-width: 0;
    margin-left: -14px;
    outline-width: 3px;
  }

  .diensten-hero .hero-photos-badge {
    right: 0;
    bottom: -9px;
    font-size: 0.54rem;
    padding: 0.24rem 0.38rem;
  }

  .diensten-hero h1 {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
    line-height: 1.08;
    max-width: calc(100% - 128px);
  }

  .diensten-hero > p:not(.section-label) {
    clear: both;
    max-width: 100%;
    margin-top: 1rem;
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .stats-bar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
    padding: 1.1rem 1.25rem;
  }

  .stat-num {
    font-size: 1.55rem;
  }

  .stat-label {
    font-size: 0.68rem;
    line-height: 1.2;
  }

  .diensten-lijst,
  .pakketten-sectie,
  .losse-diensten-sectie,
  .extra-dienst-sectie,
  .diensten-cta-band {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .diensten-lijst {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .diensten-lijst-header {
    margin-bottom: 1.35rem;
  }

  .diensten-lijst-titel {
    font-size: clamp(1.65rem, 7vw, 2.1rem);
  }

  .dienst-tabs {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    margin-bottom: 1.6rem;
    border-radius: 14px;
    scrollbar-width: none;
  }

  .dienst-tabs::-webkit-scrollbar {
    display: none;
  }

  .dienst-tab {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 0.62rem 0.9rem;
    font-size: 0.84rem;
  }

  .dienst-tab .tab-badge {
    display: none;
  }

  .dienst-paneel.active {
    gap: 1.1rem;
  }

  .dienst-paneel-visual {
    aspect-ratio: 16 / 7;
    border-radius: 12px;
  }

  .dienst-paneel-visual span {
    font-size: clamp(3.2rem, 20vw, 5rem);
  }

  .dienst-paneel-text h3 {
    font-size: clamp(1.45rem, 6vw, 1.85rem);
    margin-bottom: 0.75rem;
  }

  .dienst-paneel-text p {
    font-size: 0.96rem;
    line-height: 1.62;
    margin-bottom: 1.15rem;
  }

  .dienst-termen {
    gap: 0.4rem;
    margin-bottom: 1.1rem;
  }

  .dienst-term {
    font-size: 0.7rem;
    padding: 0.32rem 0.66rem;
  }

  .pakket-grid {
    gap: 0.85rem;
  }

  .pakket-card {
    border-radius: 12px;
  }
}

/* Screenshot repair pass: diensten page stable on mobile, tablet and desktop. */
@media (max-width: 900px) {
  .diensten-hero {
    padding-top: 5.8rem !important;
    padding-bottom: 2.4rem !important;
  }

  .dienst-tabs {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    margin-bottom: 1.6rem;
    border-radius: 14px;
    scrollbar-width: none;
  }

  .dienst-tabs::-webkit-scrollbar {
    display: none;
  }

  .dienst-tab {
    flex: 0 0 auto;
    white-space: nowrap;
    min-height: 42px;
  }

  .dienst-paneel.active {
    grid-template-columns: 1fr !important;
    gap: 1.2rem !important;
    align-items: start;
  }

  .dienst-paneel-visual {
    aspect-ratio: auto !important;
    height: clamp(150px, 28vw, 220px) !important;
    border-radius: 14px;
  }

  .dienst-paneel-visual span {
    font-size: clamp(3.4rem, 15vw, 6rem) !important;
  }

  .dienst-paneel-text p {
    max-width: 100%;
  }

  .pakketten-sectie {
    padding-top: 2.4rem !important;
    padding-bottom: 2.4rem !important;
  }

  .pakketten-header {
    margin-bottom: 1.5rem !important;
  }

  .pakket-grid {
    grid-template-columns: 1fr !important;
    gap: 0.85rem !important;
  }

  .pakket-card,
  .pakket-card.featured {
    transform: none !important;
    padding: 1.15rem !important;
  }

  footer.site-footer {
    padding: 1.2rem 1.25rem 1rem !important;
  }

  footer.site-footer .footer-top {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0.7rem !important;
  }

  footer.site-footer .footer-logo {
    margin-bottom: 0.35rem !important;
  }

  footer.site-footer .footer-logo svg {
    width: 100px !important;
    height: auto !important;
  }

  footer.site-footer .footer-tagline,
  footer.site-footer .footer-about,
  footer.site-footer .footer-socials,
  footer.site-footer .footer-regio-row,
  footer.site-footer .footer-top > .footer-col:not(.footer-contact),
  footer.site-footer .footer-contact h4 {
    display: none !important;
  }

  footer.site-footer .footer-contact {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    gap: 0.25rem 0.9rem !important;
    opacity: 1 !important;
    margin: 0 !important;
  }

  footer.site-footer .footer-contact a,
  footer.site-footer .footer-contact span {
    display: inline-block !important;
    min-height: 0 !important;
    margin: 0 !important;
    font-size: 0.8rem !important;
    line-height: 1.3 !important;
  }

  footer.site-footer .footer-contact a:first-of-type {
    display: none !important;
  }

  footer.site-footer .footer-bottom-row {
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin-top: 0.6rem !important;
    gap: 0.45rem !important;
    padding-top: 0 !important;
  }

  footer.site-footer .footer-copy,
  footer.site-footer .footer-legal a {
    font-size: 0.72rem !important;
  }

  footer.site-footer .footer-legal {
    gap: 0.25rem 0.8rem !important;
  }
}

@media (max-width: 640px) {
  .diensten-hero .section-label,
  .diensten-hero h1 {
    max-width: calc(100% - 128px) !important;
  }

  .diensten-hero > p:not(.section-label) {
    clear: both;
    max-width: 100% !important;
  }
}
