/* ============================================================
         MENTINK & ROGAAR — REDESIGN v2
         Alle klassen geprefixed met mr2- om conflicts te vermijden
      ============================================================ */

body { opacity: 1 !important; animation: none !important; }

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400 600;
  font-display: block;
  src: url('../fonts/montserrat-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400 600;
  font-display: block;
  src: url('../fonts/montserrat-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300 700;
  font-display: block;
  src: url('../fonts/roboto-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300 700;
  font-display: block;
  src: url('../fonts/roboto-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

html { font-size: 17px; }

@media (max-width: 767px) {
  html { font-size: 16px; }
}

@media (max-width: 479px) {
  html { font-size: 15px; }
}

      :root {
        --mr2-navy:     #1B2D4F;
        --mr2-blue:     #5a6ea0;
        --mr2-blue-mid: #3d5080;
        --mr2-blue-bg:  #F0F4FB;
        --mr2-gold:     #C9A84C;
        --mr2-text:     #1e2535;
        --mr2-muted:    #4d5966;
        --mr2-border:   #dde3ed;
        --mr2-white:    #ffffff;
      }

      /* ---- SKIP LINK (WCAG 2.4.1) ---- */
      .mr2-skip-link {
        position: absolute;
        top: -40px;
        left: 0;
        background: var(--mr2-navy);
        color: #fff;
        padding: 0.5rem 1rem;
        text-decoration: none;
        font-size: 0.85rem;
        font-weight: 600;
        z-index: 9999;
        transition: top 0.2s;
      }
      .mr2-skip-link:focus {
        top: 0;
      }

      /* ---- BASE ---- */
      body {
        font-family: 'Montserrat', sans-serif;
        color: var(--mr2-text);
        background: #fff;
      }

      /* Container margins - match hero-text padding */
      .container {
        padding-left: 3.5rem !important;
        padding-right: 3.5rem !important;
      }

      @media (max-width: 1023px) {
        .container {
          padding-left: 2rem !important;
          padding-right: 2rem !important;
        }
      }

      @media (max-width: 767px) {
        .container {
          padding-left: 1.25rem !important;
          padding-right: 1.25rem !important;
        }
      }

      @media (max-width: 479px) {
        .container {
          padding-left: 1rem !important;
          padding-right: 1rem !important;
        }
      }

      /* Bootstrap row/col gutter reset — zodat container-padding consistent is */
      .row {
        margin-left: 0;
        margin-right: 0;
      }
      .row > [class*="col-"],
      .row > .col {
        padding-left: 0;
        padding-right: 0;
      }

      /* Gap herstel: locatie-kaarten naast elkaar (md+) */
      @media (min-width: 768px) {
        .mr2-locations .row > [class*="col-"]:not(:last-child) {
          padding-right: 1rem;
        }
        .mr2-locations .row > [class*="col-"]:not(:first-child) {
          padding-left: 1rem;
        }
      }

      /* Gap herstel: footer kolommen naast elkaar (lg+) */
      @media (min-width: 992px) {
        .mr2-footer-top .row > div:nth-child(2),
        .mr2-footer-top .row > div:nth-child(3) {
          padding-right: 2rem;
        }
      }

      /* ---- TOPBAR ---- */
      .mr2-topbar {
        background: var(--mr2-navy);
        color: rgba(255,255,255,0.7);
        font-size: 0.81rem;
        padding: 0.5rem 0;
        letter-spacing: 0.02em;
        transition: transform 0.3s ease, opacity 0.3s ease;
      }

      .mr2-topbar.hide-on-scroll {
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
      }
      .mr2-topbar a {
        color: rgba(255,255,255,0.8);
        text-decoration: none;
        transition: color 0.2s;
      }
      .mr2-topbar a:hover { color: #fff; }
      .mr2-topbar .sep { margin: 0 0.75rem; opacity: 0.25; }
      .mr2-topbar-items {
        display: flex;
        align-items: center;
        gap: 0;
        flex-wrap: wrap;
      }
      .mr2-topbar-item {
        display: inline-flex;
        align-items: center;
        white-space: nowrap;
      }
      .mr2-topbar-sep {
        display: inline;
      }

      @media (max-width: 1023px) {
        .mr2-topbar { display: none; }
      }

      @media (max-width: 767px) {
        .mr2-topbar {
          padding: 0.75rem 0;
          display: none;
        }
        .mr2-topbar-items {
          flex-direction: column;
          align-items: flex-start;
          gap: 0.35rem;
        }
        .mr2-topbar-item {
          display: flex;
          font-size: 0.75rem;
        }
        .mr2-topbar-sep {
          display: none;
        }
      }

      /* ---- NAVBAR ---- */
      .mr2-navbar {
        position: sticky;
        top: 0;
        z-index: 100;
        background: #fff;
        border-top: 3px solid var(--mr2-blue);
        border-bottom: 1px solid var(--mr2-border);
        padding: 0.9rem 0;
        box-shadow: 0 2px 16px rgba(27,45,79,0.07);
      }
      .mr2-navbar .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
      }
      .mr2-brand {
        font-family: 'Roboto', sans-serif;
        font-weight: 700;
        font-size: 1.07rem;
        color: var(--mr2-navy) !important;
        text-decoration: none !important;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        line-height: 1.2;
      }
      .mr2-brand span {
        display: block;
        font-weight: 400;
        font-size: 0.68rem;
        letter-spacing: 0.2em;
        color: var(--mr2-blue);
        text-transform: uppercase;
        margin-top: 1px;
      }
      .mr2-nav-links {
        display: flex;
        align-items: center;
        gap: 0.1rem;
      }
      .mr2-nav-link {
        font-family: 'Montserrat', sans-serif;
        font-size: 0.84rem;
        font-weight: 600;
        letter-spacing: 0.07em;
        text-transform: uppercase;
        color: var(--mr2-text) !important;
        padding: 0.5rem 0.8rem;
        border-radius: 4px;
        text-decoration: none !important;
        transition: color 0.2s, background 0.2s;
      }
      .mr2-nav-link:hover {
        color: var(--mr2-blue) !important;
        background: var(--mr2-blue-bg);
      }
      .mr2-nav-cta {
        background: var(--mr2-navy) !important;
        color: #fff !important;
        margin-left: 0.5rem;
      }
      .mr2-nav-cta:hover {
        background: var(--mr2-blue) !important;
        color: #fff !important;
      }
      .mr2-toggler {
        background: transparent;
        border: 1px solid var(--mr2-border);
        border-radius: 4px;
        padding: 0.5rem;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
      }
      @media (max-width: 1023px) {
        .mr2-toggler {
          display: flex !important;
        }
      }
      @media (min-width: 1024px) {
        .mr2-toggler {
          display: none;
        }
      }
      .mr2-mobile-nav {
        width: 100%;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        background: #fff;
        box-shadow: 0 8px 24px rgba(0,0,0,0.12);
        padding-top: 0;
        padding-bottom: 0;
        transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.25s ease;
      }
      .mr2-mobile-nav.open {
        max-height: 700px;
        opacity: 1;
        padding-top: 25px;
        padding-bottom: 25px;
      }
      .mr2-mobile-nav a,
      .mr2-navbar .mr2-mobile-nav a {
        display: block;
        padding: 0.9rem 1.5rem;
        font-family: 'Montserrat', sans-serif;
        font-size: 0.78rem;
        font-weight: 600;
        letter-spacing: 0.07em;
        text-transform: uppercase;
        color: var(--mr2-text) !important;
        text-decoration: none !important;
        border-bottom: 1px solid var(--mr2-border);
        transition: color 0.2s, background 0.2s;
      }
      .mr2-mobile-nav a:last-child { border-bottom: 0; }
      .mr2-mobile-nav a:hover,
      .mr2-navbar .mr2-mobile-nav a:hover {
        color: var(--mr2-blue) !important;
        background: var(--mr2-blue-bg);
      }
      .mr2-mobile-nav hr {
        border: none;
        border-top: 1px solid var(--mr2-border);
        margin: 25px 0;
      }
      .mr2-mobile-nav-sub {
        padding-left: 2.25rem !important;
        font-size: 0.72rem !important;
        color: var(--mr2-muted) !important;
      }
      .mr2-mobile-nav-contact {
        font-size: 0.78rem !important;
        font-weight: 600 !important;
        letter-spacing: 0.07em !important;
        text-transform: none !important;
        color: var(--mr2-text) !important;
        padding: 0.9rem 1.5rem !important;
      }
      .mr2-mobile-nav-contact i {
        color: var(--mr2-blue);
        margin-right: 0.5rem;
        font-size: 0.75rem;
      }
      .mr2-mobile-nav-contact:hover {
        color: var(--mr2-blue) !important;
      }
      .mr2-mobile-nav-divider {
        border: none;
        border-top: 1px solid var(--mr2-border);
        margin: 0;
      }
      .mr2-mobile-nav-diensten {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        padding: 0.85rem 1.25rem;
        margin-top: 25px;
        border-bottom: 1px solid rgba(255,255,255,0.07);
      }
      .mr2-mobile-nav-chip {
        display: inline-block !important;
        padding: 0.35rem 0.75rem !important;
        border: 1px solid var(--mr2-border) !important;
        border-radius: 4px !important;
        font-size: 0.7rem !important;
        font-weight: 600 !important;
        letter-spacing: 0.06em !important;
        text-transform: uppercase !important;
        color: var(--mr2-text) !important;
        text-decoration: none !important;
        background: #fff !important;
        transition: background 0.2s, color 0.2s !important;
        width: auto !important;
      }
      .mr2-mobile-nav-chip:hover {
        background: var(--mr2-blue-bg) !important;
        color: var(--mr2-blue) !important;
      }
      @media (max-width: 1023px) {
        .mr2-nav-links { display: none; }
        .mr2-toggler { display: block; }
        .mr2-navbar .container { flex-wrap: wrap; }
      }

      /* ---- HERO ---- */
      .mr2-hero {
        display: grid;
        grid-template-columns: 46% 54%;
        height: calc(100vh - 125px);
        min-height: 400px;
        max-height: 755px;
      }

      @media (max-width: 1023px) {
        .mr2-hero {
          grid-template-columns: 1fr;
          height: auto;
          min-height: auto;
          max-height: none;
        }
        .mr2-hero-text { padding: 3rem 1.5rem; }
        .mr2-hero-photo { min-height: 280px; }
      }

      @media (max-width: 767px) {
        .mr2-hero-text::before,
        .mr2-hero-text::after { display: none; }
        .mr2-hero h1 { word-break: break-word !important; overflow-wrap: break-word !important; white-space: normal !important; }
      }

      @media (max-width: 479px) {
        .mr2-hero-text { padding: 2.5rem 1rem; }
        .mr2-hero-eyebrow { font-size: 0.65rem; }
        .mr2-hero-sub { font-size: 0.9rem; }
        .mr2-hero-score { bottom: 1rem; right: 1rem; padding: 0.65rem 1rem; }
      }

      @media (max-width: 767px) {
        .mr2-hero-text { padding: 2.5rem 1.25rem; }
      }
      .mr2-hero-text {
        background: var(--mr2-navy);
        padding: 3.5rem 3.5rem 3.5rem 4.5rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
        overflow: hidden;
      }
      .mr2-hero-text::before {
        content: '';
        position: absolute;
        bottom: -80px; right: -80px;
        width: 260px; height: 260px;
        border: 1.5px solid rgba(255,255,255,0.05);
        border-radius: 50%;
        pointer-events: none;
      }
      .mr2-hero-text::after {
        content: '';
        position: absolute;
        bottom: -160px; right: -160px;
        width: 460px; height: 460px;
        border: 1.5px solid rgba(255,255,255,0.03);
        border-radius: 50%;
        pointer-events: none;
      }
      .mr2-hero-eyebrow {
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        color: var(--mr2-gold);
        margin-bottom: 1.4rem;
        display: flex;
        align-items: center;
        gap: 0.6rem;
      }
      .mr2-hero-eyebrow::before {
        content: '';
        display: inline-block;
        width: 24px;
        height: 1.5px;
        background: var(--mr2-gold);
        flex-shrink: 0;
      }
      .mr2-hero h1 {
        font-family: 'Roboto', sans-serif;
        font-size: clamp(1.875rem, 3.0vw, 2.68rem);
        font-weight: 700;
        color: #ffffff;
        line-height: 1.2;
        margin-bottom: 1.5rem;
      }
      .mr2-hero-sub {
        font-size: 1rem;
        color: rgba(255,255,255,0.85);
        line-height: 1.75;
        margin-bottom: 2.25rem;
        max-width: 400px;
      }
      .mr2-hero-actions {
        display: flex;
        gap: 0.75rem;
        flex-wrap: wrap;
        align-items: center;
      }
      .mr2-btn-gold {
        display: inline-block;
        background: var(--mr2-gold);
        color: var(--mr2-navy) !important;
        font-family: 'Montserrat', sans-serif;
        font-size: 0.8125rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        padding: 0.85rem 1.6rem;
        border-radius: 4px;
        text-decoration: none !important;
        transition: background 0.2s, transform 0.15s;
      }
      .mr2-btn-gold:hover {
        background: #b8963e;
        color: var(--mr2-navy) !important;
        transform: translateY(-1px);
      }
      .mr2-btn-ghost {
        display: inline-block;
        border: 1px solid rgba(255,255,255,0.28);
        color: rgba(255,255,255,0.85) !important;
        font-family: 'Montserrat', sans-serif;
        font-size: 0.8125rem;
        font-weight: 600;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        padding: 0.82rem 1.4rem;
        border-radius: 4px;
        text-decoration: none !important;
        transition: border-color 0.2s, color 0.2s;
      }
      .mr2-btn-ghost:hover {
        border-color: rgba(255,255,255,0.7);
        color: #fff !important;
      }
      .mr2-btn-navy {
        display: inline-block;
        background: var(--mr2-navy);
        color: #fff !important;
        font-family: 'Montserrat', sans-serif;
        font-size: 0.8125rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        padding: 0.85rem 1.6rem;
        border-radius: 4px;
        text-decoration: none !important;
        transition: background 0.2s, transform 0.15s;
      }
      .mr2-btn-navy:hover {
        background: var(--mr2-blue);
        color: #fff !important;
        transform: translateY(-1px);
      }
      .mr2-hero-badge {
        margin-top: 2.5rem;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.5rem 1rem;
        background: rgba(255,255,255,0.06);
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 100px;
        font-size: 0.79rem;
        color: rgba(255,255,255,0.6);
        width: fit-content;
      }
      .mr2-hero-badge strong { color: #fff; }
      .mr2-hero-photo {
        position: relative;
        overflow: hidden;
      }
      .mr2-hero-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        display: block;
      }
      .mr2-hero-score {
        position: absolute;
        bottom: 1.75rem;
        right: 1.75rem;
        background: var(--mr2-navy);
        color: #fff;
        padding: 0.85rem 1.25rem;
        border-radius: 6px;
        text-align: center;
        line-height: 1.2;
        box-shadow: 0 8px 24px rgba(0,0,0,0.3);
      }
      .mr2-hero-score-num {
        font-family: 'Roboto', sans-serif;
        font-size: 1.93rem;
        font-weight: 700;
        color: var(--mr2-gold);
        display: block;
      }
      .mr2-hero-score-label {
        font-size: 0.73rem;
        letter-spacing: 0.06em;
        opacity: 0.75;
      }

      /* ---- TRUST STRIP ---- */
      .mr2-trust {
        background: var(--mr2-blue-bg);
        border-bottom: 1px solid var(--mr2-border);
        padding: 1.2rem 0;
      }
      .mr2-trust-inner {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0;
      }
      .mr2-trust-item {
        display: flex;
        align-items: center;
        gap: 0.55rem;
        font-size: 0.86rem;
        color: var(--mr2-muted);
        padding: 0.25rem 1.75rem;
      }
      .mr2-trust-item i { color: var(--mr2-blue); font-size: 0.94rem; }
      @media (min-width: 768px) { .mr2-trust-inner { flex-wrap: nowrap; } .mr2-trust-item { white-space: nowrap; } }
      .mr2-trust-item strong { color: var(--mr2-text); }
      .mr2-trust-sep {
        width: 1px;
        height: 1.25rem;
        background: var(--mr2-border);
        flex-shrink: 0;
      }
      @media (max-width: 767px) {
        .mr2-trust-item { padding: 0.35rem 0.75rem; width: 50%; box-sizing: border-box; }
        .mr2-trust-sep { display: none; }
      }

      /* ---- SECTION LABELS ---- */
      .mr2-eyebrow {
        font-size: 0.71rem;
        font-weight: 700;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        color: var(--mr2-gold);
        margin-bottom: 0.75rem;
        display: flex;
        align-items: center;
        gap: 0.6rem;
      }
      .mr2-eyebrow::before {
        content: '';
        display: inline-block;
        width: 20px;
        height: 1.5px;
        background: var(--mr2-gold);
        flex-shrink: 0;
      }
      .mr2-eyebrow.center {
        justify-content: center;
      }
      .mr2-eyebrow.center::before { display: none; }
      .mr2-h2 {
        font-family: 'Roboto', sans-serif;
        font-weight: 700;
        color: var(--mr2-text);
        line-height: 1.2;
        font-size: clamp(1.6rem, 2.68vw, 2.04rem);
        margin-bottom: 1rem;
      }
      .mr2-lead {
        font-size: 1.02rem;
        color: var(--mr2-muted);
        line-height: 1.8;
      }

      /* ---- INTRO SECTION ---- */
      .mr2-section-intro {
        padding: 6rem 0;
      }
      @media (max-width: 767px) {
        .mr2-section-intro .row {
          flex-direction: column-reverse;
        }
      }
      .mr2-intro-items {
        margin-top: 2rem;
        display: flex;
        flex-direction: column;
        gap: 0;
      }
      .mr2-intro-item {
        display: flex;
        gap: 1.25rem;
        align-items: flex-start;
        padding: 1.25rem 0;
        border-bottom: 1px solid var(--mr2-border);
      }
      .mr2-intro-item:first-child {
        border-top: 1px solid var(--mr2-border);
      }
      .mr2-intro-num {
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 0.12em;
        color: var(--mr2-gold);
        font-family: 'Roboto', sans-serif;
        min-width: 2rem;
        padding-top: 0.15rem;
      }
      .mr2-intro-item strong {
        display: block;
        font-size: 1.02rem;
        font-weight: 700;
        color: var(--mr2-text);
        font-family: 'Roboto', sans-serif;
        margin-bottom: 0.35rem;
      }
      .mr2-intro-item p {
        font-size: 0.9375rem;
        color: var(--mr2-muted);
        line-height: 1.7;
        margin: 0;
      }

      /* ---- DOELGROEPEN ---- */
      .mr2-doelgroep {
        background: #fff;
        padding: 5.5rem 0;
      }
      .mr2-doelgroep-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
      }

      @media (max-width: 1023px) {
        .mr2-doelgroep-grid { gap: 1.5rem; }
      }

      @media (max-width: 767px) {
        .mr2-doelgroep-grid {
          grid-template-columns: 1fr;
          gap: 1.25rem;
        }
      }

      @media (max-width: 479px) {
        .mr2-dg-card { padding: 2rem 1.5rem; }
        .mr2-dg-h3 { font-size: 1.2rem; }
      }
      .mr2-dg-card {
        border-radius: 12px;
        padding: 2.75rem 2.5rem;
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
      }
      .mr2-dg-card::before {
        content: '';
        position: absolute;
        inset: 0;
        opacity: 0.035;
        background-image: repeating-linear-gradient(
          -45deg,
          currentColor 0,
          currentColor 1px,
          transparent 0,
          transparent 50%
        );
        background-size: 12px 12px;
      }
      .mr2-dg-particulieren {
        background: var(--mr2-navy);
        color: #fff;
      }
      .mr2-dg-gemeenten {
        background: var(--mr2-blue-bg);
        border: 1px solid var(--mr2-border);
        color: var(--mr2-text);
      }
      .mr2-dg-tag {
        display: inline-block;
        font-size: 0.73rem;
        font-weight: 700;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        font-family: 'Roboto', sans-serif;
        padding: 0.3rem 0.85rem;
        border-radius: 2px;
        margin-bottom: 1.5rem;
        align-self: flex-start;
      }
      .mr2-dg-particulieren .mr2-dg-tag {
        background: var(--mr2-gold);
        color: var(--mr2-navy);
      }
      .mr2-dg-gemeenten .mr2-dg-tag {
        background: var(--mr2-navy);
        color: #fff;
      }
      .mr2-dg-h3 {
        font-family: 'Roboto', sans-serif;
        font-size: 1.45rem;
        font-weight: 700;
        line-height: 1.3;
        margin-bottom: 1.25rem;
      }
      .mr2-dg-particulieren .mr2-dg-h3 { color: #fff; }
      .mr2-dg-gemeenten .mr2-dg-h3 { color: var(--mr2-text); }
      .mr2-dg-lead {
        font-size: 0.96rem;
        line-height: 1.8;
        margin-bottom: 0.75rem;
        flex: 1;
      }
      .mr2-dg-particulieren .mr2-dg-lead { color: rgba(255,255,255,0.75); }
      .mr2-dg-gemeenten .mr2-dg-lead { color: var(--mr2-muted); }
      .mr2-dg-body {
        font-size: 0.94rem;
        font-weight: 600;
        margin-bottom: 2rem;
        font-family: 'Roboto', sans-serif;
      }
      .mr2-dg-particulieren .mr2-dg-body { color: var(--mr2-gold); }
      .mr2-dg-gemeenten .mr2-dg-body { color: var(--mr2-navy); }
      .mr2-dg-link {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.84rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        text-decoration: none;
        font-family: 'Roboto', sans-serif;
        transition: gap 0.2s;
        align-self: flex-start;
      }
      .mr2-dg-link:hover { gap: 0.85rem; }
      .mr2-dg-particulieren .mr2-dg-link { color: var(--mr2-gold); }
      .mr2-dg-gemeenten .mr2-dg-link { color: var(--mr2-navy); }

      /* ---- SHOUTOUT ---- */
      .mr2-shoutout {
        background: var(--mr2-blue-bg);
        border-top: 1px solid var(--mr2-border);
        border-bottom: 1px solid var(--mr2-border);
        padding: 5rem 0;
      }
      .mr2-shoutout-inner {
        display: flex;
        gap: 3rem;
        align-items: stretch;
      }

      @media (max-width: 1023px) {
        .mr2-shoutout-inner {
          flex-direction: column;
          gap: 2rem;
        }
        .mr2-shoutout-card { flex: 1; }
      }

      @media (max-width: 767px) {
        .mr2-shoutout { padding: 3rem 0; }
        .mr2-shoutout-deco { display: none; }
        .mr2-shoutout-h2 {
          font-size: 1.35rem;
          padding-left: 0.75rem;
        }
      }

      @media (max-width: 479px) {
        .mr2-shoutout-card { flex: none; width: 100%; }
        .mr2-shoutout-checklist li { font-size: 0.88rem; }
      }
      .mr2-shoutout-left {
        flex: 1;
        position: relative;
        overflow: hidden;
      }
      .mr2-shoutout-deco {
        position: absolute;
        right: -0.5rem;
        top: 50%;
        transform: translateY(-50%);
        font-size: 12.9rem;
        font-weight: 900;
        color: var(--mr2-gold);
        opacity: 0.06;
        line-height: 1;
        pointer-events: none;
        user-select: none;
        font-family: Georgia, serif;
      }
      .mr2-shoutout-h2 {
        font-size: 1.55rem;
        font-weight: 700;
        font-family: 'Roboto', sans-serif;
        color: var(--mr2-text);
        padding-left: 1rem;
        border-left: 4px solid var(--mr2-blue);
        line-height: 1.3;
        margin-bottom: 1.25rem;
      }
      .mr2-shoutout-left p {
        font-size: 1rem;
        color: var(--mr2-muted);
        line-height: 1.8;
        margin-bottom: 0.75rem;
      }
      .mr2-shoutout-stats {
        display: flex;
        align-items: center;
        gap: 0;
        margin-top: 2rem;
      }
      .mr2-shoutout-stat {
        padding-right: 1.5rem;
      }
      .mr2-shoutout-stat-num {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--mr2-text);
        font-family: 'Roboto', sans-serif;
        line-height: 1.1;
      }
      .mr2-shoutout-stat-label {
        font-size: 0.8125rem;
        color: var(--mr2-muted);
        margin-top: 0.2rem;
      }
      .mr2-shoutout-stat-sep {
        width: 1px;
        height: 2.5rem;
        background: var(--mr2-border);
        margin-right: 1.5rem;
      }
      @media (max-width: 479px) {
        .mr2-shoutout-stat {
          padding-right: 1rem;
        }
        .mr2-shoutout-stat-num {
          font-size: 1.2rem;
        }
        .mr2-shoutout-stat-label {
          font-size: 0.7rem;
        }
        .mr2-shoutout-stat-sep {
          margin-right: 1rem;
        }
      }
      .mr2-shoutout-card {
        flex: 0 0 290px;
        background: #fff;
        border-radius: 10px;
        box-shadow: 0 8px 40px rgba(27,45,79,0.12);
        border-top: 4px solid var(--mr2-gold);
      }
      .mr2-shoutout-card-header {
        background: var(--mr2-gold);
        padding: 1.5rem 1.5rem;
        text-align: center;
      }
      .mr2-shoutout-card-header h3 {
        color: var(--mr2-navy);
        font-size: 1.18rem;
        font-weight: 700;
        font-family: 'Roboto', sans-serif;
        margin: 0;
        line-height: 1.3;
        word-break: break-word;
      }

      @media (max-width: 479px) {
        .mr2-shoutout-card-header {
          padding: 1.25rem 1rem;
        }
        .mr2-shoutout-card-header h3 {
          font-size: 1.05rem;
        }
      }
      .mr2-shoutout-card-body {
        padding: 1.5rem;
        padding-bottom: 2.5rem;
      }
      .mr2-shoutout-checklist {
        list-style: none;
        padding: 0;
        margin: 0 0 1.25rem;
      }
      .mr2-shoutout-checklist li {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        font-size: 0.94rem;
        color: var(--mr2-text);
        margin-bottom: 0.7rem;
      }
      .mr2-shoutout-check {
        width: 26px;
        height: 26px;
        background: #FDF3E2;
        border: 1.5px solid var(--mr2-gold);
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
      }
      .mr2-shoutout-check i { font-size: 0.70rem; color: var(--mr2-gold); }
      .mr2-shoutout-contact {
        font-size: 0.91rem;
        color: var(--mr2-muted);
        margin-bottom: 1.25rem;
        display: flex;
        flex-direction: column;
        gap: 0.4rem;
      }
      .mr2-shoutout-contact i { color: var(--mr2-gold); margin-right: 0.4rem; }
      .mr2-shoutout-contact a { color: var(--mr2-text); text-decoration: none; }
      .mr2-shoutout-cta {
        display: block;
        text-align: center;
        background: var(--mr2-gold);
        color: var(--mr2-navy);
        border-radius: 4px;
        padding: 0.7rem 1rem;
        font-size: 0.84rem;
        font-weight: 700;
        text-decoration: none;
        letter-spacing: 0.1em;
        text-transform: uppercase;
      }

      /* ---- WHY SECTION ---- */
      .mr2-why {
        background: var(--mr2-blue-bg);
        padding: 6rem 0;
      }
      .mr2-why-item {
        display: flex;
        gap: 1.5rem;
        padding-bottom: 2.25rem;
        margin-bottom: 2.25rem;
        border-bottom: 1px solid var(--mr2-border);
      }
      .mr2-why-item:last-child {
        border-bottom: 0;
        padding-bottom: 0;
        margin-bottom: 0;
      }
      .mr2-why-num {
        font-family: 'Roboto', sans-serif;
        font-size: 2.68rem;
        font-weight: 700;
        color: var(--mr2-border);
        line-height: 1;
        min-width: 2.25rem;
        user-select: none;
        flex-shrink: 0;
      }
      .mr2-why-body h3 {
        font-family: 'Roboto', sans-serif;
        font-weight: 700;
        color: var(--mr2-text);
        font-size: 1.04rem;
        margin-bottom: 0.6rem;
        margin-top: 0;
      }
      .mr2-why-body p {
        font-size: 0.94rem;
        color: var(--mr2-muted);
        line-height: 1.75;
        margin: 0;
      }
      .mr2-why-body p + p { margin-top: 0.6rem; }

      /* ---- RATING BLOCK ---- */
      .mr2-rating-block {
        display: inline-flex;
        align-items: center;
        gap: 1rem;
        background: #fff;
        border: 1px solid var(--mr2-border);
        border-radius: 8px;
        padding: 1rem 1.5rem;
        margin-top: 2.5rem;
        box-shadow: 0 2px 12px rgba(27,45,79,0.06);
      }
      .mr2-rating-num {
        font-family: 'Roboto', sans-serif;
        font-size: 2.41rem;
        font-weight: 700;
        color: var(--mr2-navy);
        line-height: 1;
      }
      .mr2-rating-stars {
        color: var(--mr2-gold);
        font-size: 1.02rem;
        letter-spacing: 1px;
        display: block;
        margin-bottom: 2px;
      }
      .mr2-rating-label {
        font-size: 0.81rem;
        color: var(--mr2-muted);
        line-height: 1.4;
      }

      /* ---- REVIEW + OFFERTETOOL ---- */
      .mr2-social-proof {
        background: #fff;
        border-top: 1px solid var(--mr2-border);
        padding: 5.5rem 0;
      }
      .mr2-sp-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
        align-items: center;
      }
      .mr2-sp-stars {
        color: var(--mr2-gold);
        font-size: 1.07rem;
        letter-spacing: 0.08em;
        margin-bottom: 1.75rem;
      }
      .mr2-sp-quote {
        font-size: 1.13rem;
        color: var(--mr2-text);
        line-height: 1.85;
        font-style: italic;
        margin: 0 0 2rem;
        border-left: 3px solid var(--mr2-gold);
        padding-left: 1.25rem;
      }
      .mr2-sp-author {
        display: flex;
        align-items: center;
        gap: 1rem;
      }
      .mr2-sp-author-avatar {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: var(--mr2-navy);
        color: var(--mr2-gold);
        font-weight: 700;
        font-family: 'Roboto', sans-serif;
        font-size: 1.07rem;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
      }
      .mr2-sp-author-name {
        font-weight: 700;
        font-family: 'Roboto', sans-serif;
        color: var(--mr2-text);
        font-size: 0.94rem;
      }
      .mr2-sp-author-via {
        font-size: 0.78rem;
        color: var(--mr2-muted);
        margin-top: 0.1rem;
      }
      /* Form */
      .mr2-sp-form-wrap {
        background: var(--mr2-blue-bg);
        border: 1px solid var(--mr2-border);
        border-radius: 12px;
        padding: 2.25rem;
      }
      .mr2-sp-form-title {
        font-family: 'Roboto', sans-serif;
        font-size: 1.29rem;
        font-weight: 700;
        color: var(--mr2-text);
        margin: 0 0 1.75rem;
      }
      .mr2-sp-form {
        display: flex;
        flex-direction: column;
        gap: 1.1rem;
      }
      .mr2-sp-field {
        display: flex;
        flex-direction: column;
        gap: 0.35rem;
      }
      .mr2-sp-label {
        font-size: 0.78rem;
        font-weight: 700;
        color: var(--mr2-text);
        letter-spacing: 0.04em;
        font-family: 'Roboto', sans-serif;
      }
      .mr2-sp-input {
        width: 100%;
        padding: 0.75rem 0.9rem;
        border: 1px solid var(--mr2-border);
        border-radius: 6px;
        font-family: 'Montserrat', sans-serif;
        font-size: 0.91rem;
        color: var(--mr2-text);
        background: #fff;
        transition: border-color 0.2s, box-shadow 0.2s;
        appearance: none;
      }
      .mr2-sp-input:focus {
        outline: none;
        border-color: var(--mr2-blue);
        box-shadow: 0 0 0 3px rgba(90,110,160,0.12);
      }
      select.mr2-sp-input {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235f6b7c' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 0.9rem center;
        padding-right: 2.5rem;
        cursor: pointer;
      }
      .mr2-sp-submit {
        width: 100%;
        padding: 0.9rem;
        background: var(--mr2-navy);
        color: #fff;
        border: none;
        border-radius: 6px;
        font-family: 'Montserrat', sans-serif;
        font-size: 0.84rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        cursor: pointer;
        transition: background 0.2s;
        margin-top: 0.5rem;
      }
      .mr2-sp-submit:hover { background: var(--mr2-blue); }
      .mr2-sp-disclaimer {
        font-size: 0.78rem;
        color: var(--mr2-muted);
        text-align: center;
        margin: 0;
      }

      /* ---- SERVICES SECTION ---- */
      .mr2-services {
        background: var(--mr2-blue-bg);
        padding: 6rem 0;
      }
      .mr2-services-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
        margin-top: 3rem;
      }

      @media (max-width: 1023px) {
        .mr2-services-grid { grid-template-columns: repeat(2, 1fr); }
      }

      .mr2-svc-wrap { display: block; }
      .mr2-svc-dots { display: none; }

      @media (max-width: 767px) {
        .mr2-svc-wrap {
          margin-top: 3rem;
        }
        .mr2-svc-dots {
          display: flex;
          justify-content: center;
          gap: 8px;
          margin-top: 14px;
        }
        .mr2-svc-dot {
          width: 8px;
          height: 8px;
          border-radius: 50%;
          background: var(--mr2-border);
          border: none;
          padding: 0;
          cursor: pointer;
          transition: background 0.2s, transform 0.2s;
        }
        .mr2-svc-dot.active {
          background: var(--mr2-gold);
          transform: scale(1.3);
        }
        .mr2-services-grid {
          display: flex;
          gap: 0;
          margin-top: 0;
          overflow-x: auto;
          scroll-snap-type: x mandatory;
          scroll-behavior: smooth;
          padding-bottom: 0.5rem;
          -webkit-overflow-scrolling: touch;
        }
        .mr2-services-grid::-webkit-scrollbar {
          display: none;
        }
        .mr2-service-card {
          padding: 1.25rem;
          flex: 0 0 95%;
          scroll-snap-align: center;
          scroll-snap-stop: always;
          min-height: fit-content;
        }
      }

      @media (max-width: 767px) {
        .mr2-service-icon { display: none; }
      }
      @media (max-width: 479px) {
        .mr2-service-card h3 { font-size: 0.9rem; }
      }
      .mr2-service-card {
        background: #fff;
        border: 1px solid var(--mr2-border);
        border-radius: 8px;
        padding: 1.75rem 1.5rem;
        display: flex;
        flex-direction: column;
        transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
      }
      .mr2-service-card:hover {
        box-shadow: 0 16px 40px rgba(27,45,79,0.1);
        transform: translateY(-3px);
        border-color: var(--mr2-blue);
      }
      .mr2-service-icon {
        width: 52px;
        height: 52px;
        border-radius: 10px;
        background: var(--mr2-blue-bg);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.1rem;
        overflow: hidden;
        flex-shrink: 0;
      }
      .mr2-service-icon img {
        width: 36px;
        height: 36px;
        object-fit: contain;
      }
      .mr2-service-card h3 {
        font-family: 'Roboto', sans-serif;
        font-weight: 700;
        font-size: 0.99rem;
        color: var(--mr2-text);
        margin-bottom: 0.6rem;
        margin-top: 0;
      }
      .mr2-service-card p {
        font-size: 0.89rem;
        color: var(--mr2-muted);
        line-height: 1.72;
        flex: 1;
        margin-bottom: 1.25rem;
      }
      .mr2-service-link {
        font-size: 0.79rem;
        font-weight: 700;
        letter-spacing: 0.07em;
        text-transform: uppercase;
        color: var(--mr2-blue) !important;
        text-decoration: none !important;
        transition: color 0.2s;
      }
      .mr2-service-link:hover { color: var(--mr2-navy) !important; }

      /* ---- VESTIGINGEN ---- */
      .mr2-locations {
        background: #fff;
        padding: 6rem 0;
      }
      .mr2-loc-card {
        display: flex;
        flex-direction: row;
        background: #fff;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 24px rgba(27,45,79,0.10);
        transition: box-shadow 0.25s;
        height: 100%;
      }
      .mr2-loc-card:hover {
        box-shadow: 0 10px 40px rgba(27,45,79,0.16);
      }
      .mr2-loc-img {
        width: 100%;
        overflow: hidden;
        position: relative;
        min-height: 200px;
      }
      .mr2-loc-img img {
        position: absolute;
        top: 0; left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
      }
      .mr2-loc-body {
        padding: 1.6rem 1.5rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        border-left: 3px solid var(--mr2-gold);
      }
      .mr2-loc-regio {
        font-size: 0.63rem;
        font-weight: 700;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        color: var(--mr2-gold);
        margin-bottom: 0.35rem;
      }
      .mr2-loc-card h3 {
        font-family: 'Roboto', sans-serif;
        font-weight: 700;
        font-size: 1.05rem;
        color: var(--mr2-navy);
        margin-bottom: 0.55rem;
        margin-top: 0;
      }
      .mr2-loc-addr {
        font-size: 0.83rem;
        color: var(--mr2-muted);
        line-height: 1.6;
        margin-bottom: 0.5rem;
      }
      .mr2-loc-phone {
        font-size: 0.83rem;
        margin-bottom: 1rem;
      }
      .mr2-loc-phone a {
        color: var(--mr2-blue);
        text-decoration: none;
        font-weight: 600;
      }

      /* ---- VESTIGINGEN V3 (contact) ---- */
      .mr2-loc-v3-card {
        position: relative;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 24px rgba(27,45,79,0.18);
        transition: box-shadow 0.25s, transform 0.25s;
        min-height: 340px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        height: 100%;
      }
      .mr2-loc-v3-card:hover {
        box-shadow: 0 14px 48px rgba(27,45,79,0.30);
        transform: translateY(-3px);
      }
      .mr2-loc-v3-bg {
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
        transition: transform 0.4s;
      }
      .mr2-loc-v3-card:hover .mr2-loc-v3-bg {
        transform: scale(1.04);
      }
      .mr2-loc-v3-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, rgba(27,45,79,0.92) 0%, rgba(27,45,79,0.75) 70%, rgba(27,45,79,0.20) 100%);
      }
      .mr2-loc-v3-body {
        position: relative;
        z-index: 1;
        padding: 1.75rem;
      }
      .mr2-loc-v3-regio {
        font-size: 0.63rem;
        font-weight: 700;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        color: var(--mr2-gold);
        margin-bottom: 0.35rem;
      }
      .mr2-loc-v3-body h3 {
        font-family: 'Roboto', sans-serif;
        font-weight: 700;
        font-size: 1.2rem;
        color: #fff;
        margin-bottom: 0.6rem;
        margin-top: 0;
      }
      .mr2-loc-v3-addr {
        font-size: 0.83rem;
        color: rgba(255,255,255,0.72);
        line-height: 1.6;
        margin-bottom: 0.4rem;
      }
      .mr2-loc-v3-phone {
        font-size: 0.83rem;
        margin-bottom: 1.1rem;
      }
      .mr2-loc-v3-phone a {
        color: rgba(255,255,255,0.85);
        text-decoration: none;
        font-weight: 600;
      }
      .mr2-loc-v3-divider {
        border: none;
        border-top: 1px solid rgba(255,255,255,0.15);
        margin-bottom: 0.9rem;
      }
      .mr2-loc-v3-person {
        font-size: 0.82rem;
        color: rgba(255,255,255,0.65);
        margin-bottom: 1.2rem;
      }
      .mr2-loc-v3-person strong {
        display: block;
        color: rgba(255,255,255,0.92);
        font-weight: 700;
      }

      /* ---- PAYOFF CTA ---- */
      .mr2-cta {
        position: relative;
        min-height: 480px;
        background-image: url('img/Payoff MR Juridisch advies.webp');
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
      }
      .mr2-cta::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(
          90deg,
          rgba(27,45,79,0.94) 0%,
          rgba(27,45,79,0.88) 40%,
          rgba(27,45,79,0.45) 100%
        );
      }
      @media (max-width: 767px) {
        .mr2-cta { background-image: url('img/Payoff MR Juridisch advies - mobiel.webp'); }
        .mr2-cta::before {
          background: linear-gradient(
            90deg,
            rgba(27,45,79,0.85) 0%,
            rgba(27,45,79,0.79) 40%,
            rgba(27,45,79,0.40) 100%
          );
        }
      }
      .mr2-cta-inner {
        position: relative;
        z-index: 1;
        max-width: 580px;
        padding: 4rem 0;
      }
      .mr2-cta h2 {
        font-family: 'Roboto', sans-serif;
        font-size: clamp(1.82rem, 3.43vw, 2.79rem);
        font-weight: 700;
        color: #fff;
        line-height: 1.25;
        margin-bottom: 1rem;
      }
      .mr2-cta p {
        color: rgba(255,255,255,0.78);
        font-size: 1.07rem;
        line-height: 1.75;
        margin-bottom: 2rem;
      }
      .mr2-cta-actions {
        display: flex;
        gap: 0.75rem;
        flex-wrap: wrap;
      }

      /* ---- CONTACT SECTION ---- */
      .mr2-contact {
        background: var(--mr2-blue-bg);
        border-top: 1px solid var(--mr2-border);
        padding: 6rem 0;
        position: relative;
        overflow: hidden;
      }
      .mr2-contact::before {
        content: '§';
        position: absolute;
        right: 5%;
        top: 50%;
        transform: translateY(-50%);
        font-size: 30rem;
        font-weight: 900;
        color: var(--mr2-navy);
        opacity: 0.03;
        line-height: 1;
        pointer-events: none;
        font-family: Georgia, serif;
      }
      .mr2-contact-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
        align-items: start;
      }
      .mr2-contact-left .mr2-eyebrow {
        color: var(--mr2-blue);
        border-color: var(--mr2-blue);
      }
      .mr2-contact-left .mr2-eyebrow::before {
        background: var(--mr2-blue);
      }
      .mr2-contact-left h2 {
        font-family: 'Roboto', sans-serif;
        font-size: 2.14rem;
        font-weight: 700;
        color: var(--mr2-text);
        line-height: 1.25;
        margin: 1rem 0 1.5rem;
      }
      .mr2-contact-left p {
        color: var(--mr2-muted);
        font-size: 1rem;
        line-height: 1.8;
        margin-bottom: 2.5rem;
      }
      .mr2-contact-details {
        display: flex;
        flex-direction: column;
        gap: 1rem;
      }
      .mr2-contact-detail {
        display: flex;
        align-items: center;
        gap: 1rem;
        font-size: 0.96rem;
      }
      .mr2-contact-detail-icon {
        width: 40px;
        height: 40px;
        background: var(--mr2-navy);
        border: 1px solid var(--mr2-navy);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        color: var(--mr2-gold);
        font-size: 0.86rem;
      }
      .mr2-contact-detail-text {
        color: var(--mr2-text);
      }
      .mr2-contact-detail-text a {
        color: var(--mr2-text);
        text-decoration: none;
      }
      .mr2-contact-detail-text a:hover { color: var(--mr2-navy); }
      .mr2-contact-detail-label {
        font-size: 0.75rem;
        color: var(--mr2-blue);
        letter-spacing: 0.12em;
        text-transform: uppercase;
        font-weight: 700;
        display: block;
        margin-bottom: 0.1rem;
      }
      .mr2-contact-form-wrap {
        background: #fff;
        border-radius: 12px;
        padding: 2.5rem;
        box-shadow: 0 32px 80px rgba(0,0,0,0.25);
      }
      .mr2-form-input {
        width: 100%;
        padding: 0.85rem 1rem;
        border: 1px solid var(--mr2-border);
        border-radius: 6px;
        font-family: 'Montserrat', sans-serif;
        font-size: 0.93rem;
        color: var(--mr2-text);
        background: #fff;
        transition: border-color 0.2s, box-shadow 0.2s;
        margin-bottom: 1rem;
        display: block;
      }
      .mr2-form-input:focus {
        outline: none;
        border-color: var(--mr2-blue);
        box-shadow: 0 0 0 3px rgba(90,110,160,0.12);
      }
      .mr2-form-row-2 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
      }
      @media (max-width: 479px) {
        .mr2-form-row-2 { grid-template-columns: 1fr; }
      }
      .mr2-form-submit {
        width: 100%;
        padding: 1rem;
        background: var(--mr2-navy);
        color: #fff;
        border: none;
        border-radius: 6px;
        font-family: 'Montserrat', sans-serif;
        font-size: 0.86rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        cursor: pointer;
        transition: background 0.2s;
        margin-top: 0.5rem;
      }
      .mr2-form-submit:hover { background: var(--mr2-blue); }
      .mr2-map-wrap {
        border-radius: 8px;
        overflow: hidden;
        height: 100%;
        min-height: 420px;
      }
      .mr2-map-wrap iframe {
        width: 100%;
        height: 100%;
        border: 0;
        display: block;
        min-height: 420px;
      }

      /* ---- LOCATIE-STRIP ---- */
      .mr2-loc-strip {
        background: var(--mr2-blue-bg);
        border-top: 1px solid var(--mr2-border);
        border-bottom: 1px solid var(--mr2-border);
        padding: 1.1rem 0;
      }
      .mr2-loc-strip-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 0.75rem;
      }
      .mr2-loc-strip-label {
        font-size: 0.88rem;
        font-weight: 700;
        color: var(--mr2-text);
        font-family: 'Roboto', sans-serif;
        letter-spacing: 0.02em;
      }
      .mr2-loc-strip-offices {
        display: flex;
        align-items: center;
        gap: 1rem;
        font-size: 0.86rem;
        color: var(--mr2-muted);
      }
      .mr2-loc-strip-offices i {
        color: var(--mr2-blue);
        margin-right: 0.35rem;
      }
      .mr2-loc-strip-sep {
        width: 1px;
        height: 1rem;
        background: var(--mr2-border);
      }

      /* ---- FOOTER ---- */
      .mr2-footer {
        background: var(--mr2-navy);
        color: rgba(255,255,255,0.6);
      }
      @media (min-width: 992px) {
        .mr2-footer-col-leeuwarden {
          padding-left: 20px;
          padding-right: 10px;
        }
      }
      .mr2-footer-top {
        padding: 4.5rem 0 2.5rem;
        border-bottom: 1px solid rgba(255,255,255,0.08);
      }
      .mr2-footer-brand {
        font-family: 'Roboto', sans-serif;
        font-weight: 700;
        font-size: 1.13rem;
        color: #fff;
        text-transform: uppercase;
        letter-spacing: 0.07em;
        text-decoration: none !important;
        display: inline-block;
      }
      .mr2-footer-brand span {
        display: block;
        font-size: 0.66rem;
        font-weight: 400;
        letter-spacing: 0.22em;
        color: var(--mr2-gold);
        margin-top: 2px;
      }
      .mr2-footer p {
        font-size: 0.9rem;
        line-height: 1.75;
        margin-top: 1rem;
        margin-bottom: 0;
      }
      .mr2-footer-heading {
        color: var(--mr2-gold);
        font-size: 0.69rem;
        font-weight: 700;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        margin-bottom: 1.25rem;
      }
      .mr2-footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
      }
      .mr2-footer-links li { margin-bottom: 0.5rem; }
      .mr2-footer-links a {
        color: rgba(255,255,255,0.55);
        font-size: 0.92rem;
        text-decoration: none;
        transition: color 0.2s;
      }
      .mr2-footer-links a:hover { color: #fff; }
      .mr2-footer-addr {
        font-size: 0.9rem;
        line-height: 1.85;
        color: rgba(255,255,255,0.55);
      }
      .mr2-footer-addr a {
        color: rgba(255,255,255,0.55);
        text-decoration: none;
        transition: color 0.2s;
      }
      .mr2-footer-addr a:hover { color: #fff; }
      .mr2-footer-bottom {
        padding: 1.25rem 0;
        font-size: 0.81rem;
        color: rgba(255,255,255,0.58);
      }
      .mr2-footer-bottom a { color: var(--mr2-gold); text-decoration: none; }
      .mr2-footer-rating {
        margin-top: 1.25rem;
        font-size: 0.86rem;
      }
      .mr2-footer-stars { color: var(--mr2-gold); letter-spacing: 1px; }
      .mr2-footer-stars i { font-size: 0.85em; vertical-align: middle; }

      /* ---- BACK TO TOP ---- */
      .mr2-back-top {
        position: fixed;
        bottom: 2rem;
        right: 2rem;
        width: 42px;
        height: 42px;
        background: var(--mr2-navy);
        color: rgba(255,255,255,0.85) !important;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none !important;
        box-shadow: 0 4px 16px rgba(27,45,79,0.35);
        transition: background 0.2s, transform 0.2s, opacity 0.3s;
        z-index: 999;
        font-size: 0.96rem;
        opacity: 0;
        pointer-events: none;
        transform: translateY(20px);
      }
      .mr2-back-top.visible {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
      }
      .mr2-back-top:hover {
        background: var(--mr2-blue);
        transform: translateY(-2px);
        color: #fff !important;
      }

      @media (max-width: 479px) {
        .mr2-back-top {
          bottom: 1.5rem;
          right: 1.5rem;
          width: 38px;
          height: 38px;
          font-size: 0.85rem;
        }
      }

      /* ---- HIDE DECORATIVE ELEMENTS ON MOBILE ---- */
      @media (max-width: 767px) {
        .mr2-shoutout-deco,
        .mr2-contact::before,
        .mr2-pagebanner::after,
        .mr2-hide-mobile { display: none; }
      }

      /* ---- RESPONSIVE ---- */
      @media (max-width: 1023px) {
        .mr2-hero { grid-template-columns: 1fr; }
        .mr2-hero-text { padding: 3.5rem 1.5rem; }
        .mr2-hero-photo { min-height: 300px; }
        .mr2-services-grid { grid-template-columns: repeat(2, 1fr); }
        .mr2-section-intro,
        .mr2-why,
        .mr2-services,
        .mr2-locations,
        .mr2-contact { padding: 4rem 0; }
        .mr2-contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
        .mr2-contact-form-wrap { padding: 1.75rem; }
        .mr2-intro-pad { margin-top: 2.5rem; }
      }

      @media (max-width: 767px) {
        .mr2-contact-form-wrap { padding: 1.5rem; }
        .mr2-contact-left h2 { font-size: 1.6rem; }

        /* Footer mobile: 2 kolommen na brand */
        .mr2-footer-top .row {
          display: grid;
          grid-template-columns: 1fr 1fr;
          gap: 0 1.5rem;
        }
        /* Brand + stars: volle breedte */
        .mr2-footer-top .row > div:nth-child(1) {
          grid-column: 1 / -1;
          margin-bottom: 2rem;
        }
        /* Leeuwarden: linker kolom rij 2 */
        .mr2-footer-top .row > div:nth-child(3) {
          grid-column: 1;
          grid-row: 2;
          margin-bottom: 1.5rem;
        }
        /* Groningen: linker kolom rij 3 */
        .mr2-footer-top .row > div:nth-child(4) {
          grid-column: 1;
          grid-row: 3;
          margin-bottom: 0;
        }
        /* Navigatie: rechter kolom, overspant rij 2-3 */
        .mr2-footer-top .row > div:nth-child(2) {
          grid-column: 2;
          grid-row: 2 / 4;
          margin-bottom: 0;
        }
        /* Footer bottom: copyright op volle breedte */
        .mr2-footer-bottom .d-flex {
          flex-direction: column;
          gap: 0.25rem;
        }
      }
      @media (max-width: 479px) {
        .mr2-services-grid { grid-template-columns: 1fr; }
        .mr2-trust-item { padding: 0.35rem 0.6rem; }
        .mr2-cta-inner { padding: 3rem 0; }
        .mr2-loc-card { flex-direction: column; }
        .mr2-loc-img { width: 100%; height: 160px; }
      }

      /* ---- PAGE BANNER ---- */
      .mr2-pagebanner {
        background: var(--mr2-navy);
        padding: 50px 0;
        position: relative;
        overflow: hidden;
      }
      .mr2-pagebanner::after {
        content: '';
        position: absolute;
        bottom: -60px; right: -60px;
        width: 220px; height: 220px;
        border: 1.5px solid rgba(255,255,255,0.04);
        border-radius: 50%;
        pointer-events: none;
      }
      .mr2-pagebanner .mr2-eyebrow { margin-bottom: 0.75rem; }
      .mr2-pagebanner .mr2-eyebrow::before { display: none; }
      .mr2-pagebanner h1 {
        font-family: 'Roboto', sans-serif;
        font-weight: 900;
        font-size: clamp(1.75rem, 5.36vw, 3.43rem);
        color: #fff;
        margin: 0;
        line-height: 1.2;
        word-break: break-word;
        word-wrap: break-word;
        overflow-wrap: break-word;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
      }

      @media (max-width: 767px) {
        .mr2-pagebanner h1 {
          white-space: normal !important;
          word-break: break-word !important;
          overflow-wrap: break-word !important;
        }
      }

      @media (max-width: 479px) {
        .mr2-pagebanner { padding: 2rem 0; }
        .mr2-pagebanner h1 {
          line-height: 1.3;
          white-space: normal !important;
        }
      }

      @media (max-width: 1023px) {
        .mr2-pagebanner { padding: 2.5rem 0; }
      }

      .mr2-pagebanner p {
        color: rgba(255,255,255,0.65);
        font-size: 1rem;
        margin-top: 0.75rem;
        margin-bottom: 0;
        max-width: 540px;
      }
      .pb8-punten { display: flex; gap: 0; flex-wrap: wrap; border-top: 1px solid rgba(255,255,255,0.1); margin-top: 2rem; padding-top: 1.5rem; }
      .pb8-punt { display: flex; align-items: center; gap: 1rem; flex: 1; min-width: 200px; padding-right: 2rem; border-right: 1px solid rgba(255,255,255,0.1); margin-right: 2rem; }
      .pb8-punt:last-child { border-right: none; margin-right: 0; padding-right: 0; }
      .pb8-num { font-family: 'Roboto', sans-serif; font-weight: 900; font-size: 1.71rem; line-height: 1; color: #fff; opacity: 0.22; flex-shrink: 0; }
      .pb8-body { display: flex; flex-direction: column; gap: 0.2rem; }
      .pb8-body strong { font-family: 'Roboto', sans-serif; font-weight: 700; font-size: 0.88rem; color: #fff; letter-spacing: 0.01em; }
      .pb8-body span { font-family: 'Montserrat', sans-serif; font-size: 0.81rem; color: rgba(255,255,255,0.8); line-height: 1.5; }
      @media (max-width: 767px) {
        .pb8-punten { flex-wrap: nowrap; gap: 0; }
        .pb8-punt { flex-direction: column; align-items: center; text-align: center; min-width: 0; gap: 0.3rem; padding-right: 0.75rem; margin-right: 0.75rem; }
        .pb8-num { font-size: 1.2rem; }
        .pb8-body strong { font-size: 0.72rem; }
        .pb8-body span { display: none; }
      }

/* ── locatie-detail ── */
.mr2-locatie-detail { padding: 5rem 0; background: #fff; }
.mr2-loc-card {
  display: grid; grid-template-columns: 1fr 1fr;
  border-radius: 8px; overflow: hidden;
  box-shadow: 0 4px 24px rgba(27,45,79,0.1);
}
.mr2-loc-info {
  background: #fff; padding: 3.5rem;
  display: flex; flex-direction: column; justify-content: center;
}
.mr2-loc-regio { font-size: 0.67rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--mr2-gold); margin-bottom: 1.25rem; }
.mr2-loc-title { font-family: 'Roboto', sans-serif; font-weight: 700; font-size: 1.5rem; color: var(--mr2-navy); margin-bottom: 0.5rem; }
.mr2-loc-addr { font-size: 0.9rem; color: var(--mr2-muted); line-height: 1.7; margin-bottom: 0.5rem; }
.mr2-loc-phone { font-size: 0.9rem; color: var(--mr2-muted); margin-bottom: 2rem; }
.mr2-loc-phone a { color: var(--mr2-blue); text-decoration: none; }
.mr2-loc-sep { border: none; border-top: 1px solid var(--mr2-border); margin-bottom: 2rem; }
.mr2-loc-person-name { font-family: 'Roboto', sans-serif; font-weight: 700; font-size: 1.05rem; color: var(--mr2-navy); margin-bottom: 0.2rem; }
.mr2-loc-person-role { font-size: 0.8rem; color: var(--mr2-muted); margin-bottom: 1.5rem; }
.mr2-loc-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mr2-loc-photo iframe { width: 100%; height: 100%; display: block; border: 0; min-height: 340px; }
@media (max-width: 767px) {
  .mr2-loc-card { grid-template-columns: 1fr; }
  .mr2-loc-photo { height: 220px; }
}

/* ── team ── */
.mr2-team { padding: 5rem 0; background: #fff; }
.mr2-team-inner { max-width: 1080px; margin: 0 auto; padding: 0 2rem; }
.mr2-team-header { text-align: center; margin-bottom: 3.5rem; }
.mr2-team-header .mr2-h2 { color: var(--mr2-navy); margin-bottom: 0; }
.mr2-team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.mr2-team-card {
  background: var(--mr2-navy);
  border-radius: 6px; overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.mr2-team-card:hover { transform: translateY(-5px); box-shadow: 0 0 0 3px var(--mr2-gold); }
.mr2-team-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.mr2-team-card-body { padding: 1.75rem; }
.mr2-team-card-role { font-size: 0.67rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--mr2-gold); margin-bottom: 0.45rem; }
.mr2-team-card-name { font-family: 'Roboto', sans-serif; font-weight: 700; font-size: 1.4rem; color: #fff; margin-bottom: 0.3rem; }
.mr2-team-card-loc { font-size: 0.78rem; color: rgba(255,255,255,0.4); margin-bottom: 1rem; }
.mr2-team-card p { font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,0.6); margin-bottom: 0.75rem; }
.mr2-team-expand { overflow: hidden; max-height: 0; transition: max-height 0.45s ease; }
.mr2-team-expand.open { max-height: 400px; }
.mr2-team-expand ul { list-style: none; padding: 0; margin: 0.5rem 0 1rem; }
.mr2-team-expand li { font-size: 0.86rem; color: rgba(255,255,255,0.55); padding: 0.28rem 0 0.28rem 1.25rem; position: relative; }
.mr2-team-expand li::before { content: '→'; position: absolute; left: 0; color: var(--mr2-gold); font-size: 0.75rem; }
.mr2-team-ghost-btn {
  margin-top: 1rem; background: transparent;
  border: 1px solid rgba(255,255,255,0.25); color: #fff;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.65rem 1.5rem; border-radius: 4px; cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.mr2-team-ghost-btn:hover { border-color: var(--mr2-gold); color: var(--mr2-gold); }
.mr2-team-footer { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--mr2-border); text-align: center; }
.mr2-team-footer p { font-size: 0.83rem; color: var(--mr2-muted); }
.mr2-team-footer a { color: var(--mr2-gold); text-decoration: none; margin: 0 0.65rem; font-size: 0.83rem; }
@media (max-width: 767px) {
  .mr2-team-grid { grid-template-columns: 1fr; }
}

/* ── usp ── */
.mr2-usp { padding: 5rem 0; background: var(--mr2-blue-bg); }
.mr2-usp-inner { max-width: 1040px; margin: 0 auto; padding: 0 2rem; }
.mr2-usp-header { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-bottom: 4rem; align-items: end; }
.mr2-usp-header p { font-size: 0.93rem; color: var(--mr2-muted); line-height: 1.75; }
.mr2-usp-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: rgba(255,255,255,0.35); border: 1px solid rgba(255,255,255,0.35);
  border-radius: 8px; overflow: hidden;
}
.mr2-usp-item {
  background: var(--mr2-navy); padding: 3rem;
  position: relative; overflow: hidden;
  transition: background 0.2s;
}
.mr2-usp-item:hover { background: #243e6b; }
.mr2-usp-num {
  font-family: 'Roboto', sans-serif; font-weight: 700; font-size: 4rem;
  color: rgba(90,110,160,0.2); line-height: 1;
  position: absolute; top: 1.5rem; right: 2rem;
}
.mr2-usp-tag {
  display: inline-block; margin-bottom: 0.85rem;
  background: rgba(201,168,76,0.15); color: var(--mr2-gold);
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.3rem 0.75rem; border-radius: 20px;
}
.mr2-usp-item h3 { font-family: 'Roboto', sans-serif; font-weight: 700; font-size: 1.1rem; color: #fff; margin-bottom: 0.75rem; }
.mr2-usp-item p { font-size: 0.88rem; line-height: 1.75; color: rgba(255,255,255,0.75); }
@media (max-width: 767px) {
  .mr2-usp-header { grid-template-columns: 1fr; gap: 1.5rem; }
  .mr2-usp-grid { grid-template-columns: 1fr; }
}

/* ── tarieven-content ── */
.mr2-tarieven { padding: 5rem 0; background: #fff; }
.mr2-tarieven-inner { max-width: 920px; margin: 0 auto; padding: 0 2rem; }
.mr2-tarieven-layout { display: grid; grid-template-columns: 1fr 340px; gap: 4rem; align-items: start; }
.mr2-tar-text p { font-size: 0.94rem; line-height: 1.8; color: var(--mr2-muted); margin-bottom: 1.1rem; }
.mr2-tar-text a { color: var(--mr2-blue); text-decoration: none; }
.mr2-tar-text a:hover { text-decoration: underline; }
.mr2-tar-text h3 { font-family: 'Roboto', sans-serif; font-weight: 700; font-size: 1.05rem; color: var(--mr2-navy); margin: 1.5rem 0 0.6rem; }
.mr2-tar-list { list-style: none; padding: 0; margin: 0 0 1rem; }
.mr2-tar-list li { font-size: 0.9rem; color: var(--mr2-muted); padding: 0.4rem 0 0.4rem 1.5rem; position: relative; border-bottom: 1px solid var(--mr2-border); }
.mr2-tar-list li::before { content: '✓'; position: absolute; left: 0; color: var(--mr2-gold); font-weight: 700; font-size: 0.85rem; }
.mr2-tar-card {
  background: var(--mr2-navy); border-radius: 8px; padding: 2.5rem 2rem;
  text-align: center; position: sticky; top: 2rem;
}
.mr2-tar-card-eyebrow { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mr2-gold); margin-bottom: 0.75rem; }
.mr2-tar-card-rate { font-family: 'Roboto', sans-serif; font-weight: 700; font-size: 3.5rem; color: #fff; line-height: 1; margin-bottom: 0.3rem; }
.mr2-tar-card-unit { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-bottom: 1.5rem; }
.mr2-tar-card-divider { border: none; border-top: 1px solid rgba(255,255,255,0.15); margin: 0 0 1.5rem; }
.mr2-tar-card-items { list-style: none; padding: 0; margin: 0 0 2rem; text-align: left; }
.mr2-tar-card-items li { font-size: 0.84rem; color: rgba(255,255,255,0.7); padding: 0.4rem 0 0.4rem 1.25rem; position: relative; }
.mr2-tar-card-items li::before { content: '→'; position: absolute; left: 0; color: var(--mr2-gold); }
@media (max-width: 767px) {
  .mr2-tarieven-layout { grid-template-columns: 1fr; }
  .mr2-tar-card { position: static; }
}

/* ── terms ── */
.mr2-terms-section { padding: 5rem 0; background: #fff; }
.mr2-terms-layout { display: grid; grid-template-columns: 240px 1fr; gap: 5rem; align-items: start; }
.mr2-terms-nav { position: sticky; top: 2rem; }
.mr2-terms-nav-title { font-family: 'Roboto', sans-serif; font-weight: 700; font-size: 0.8rem; color: var(--mr2-navy); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1rem; }
.mr2-terms-nav-list { list-style: none; padding: 0; border-left: 2px solid var(--mr2-border); }
.mr2-terms-nav-list li { padding: 0; }
.mr2-terms-nav-list a { display: block; padding: 0.5rem 0 0.5rem 1rem; font-size: 0.82rem; color: var(--mr2-muted); text-decoration: none; border-left: 2px solid transparent; margin-left: -2px; transition: color 0.2s, border-color 0.2s; }
.mr2-terms-nav-list a:hover { color: var(--mr2-blue); border-color: var(--mr2-blue); }
.mr2-terms-art { margin-bottom: 3rem; }
.mr2-terms-art-num { font-size: 0.67rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--mr2-gold); margin-bottom: 0.5rem; }
.mr2-terms-art h2 { font-family: 'Roboto', sans-serif; font-weight: 700; font-size: 1.25rem; color: var(--mr2-navy); margin-bottom: 1rem; }
.mr2-terms-art ol { list-style: decimal; margin-left: 1.25rem; }
.mr2-terms-art ol li { font-size: 0.9rem; line-height: 1.8; color: var(--mr2-muted); margin-bottom: 0.5rem; }
@media (max-width: 767px) {
  .mr2-terms-layout { grid-template-columns: 1fr; }
  .mr2-terms-nav { position: static; }
}

/* ── contact-melding ── */
.mr2-contact-melding { padding: 2rem 0; }
.mr2-callout {
  background: #FEF7E6; border: 1.5px solid #E8C96B; border-radius: 6px; padding: 1.5rem 2rem;
  display: grid; grid-template-columns: auto 1fr auto; gap: 1.25rem; align-items: center;
}
.mr2-callout-icon {
  width: 48px; height: 48px; border-radius: 50%; background: var(--mr2-gold);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.mr2-callout-icon svg { width: 22px; height: 22px; stroke: var(--mr2-navy); stroke-width: 2.2; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.mr2-callout-head { font-family: 'Roboto', sans-serif; font-weight: 700; font-size: 0.95rem; color: var(--mr2-navy); margin-bottom: 0.3rem; }
.mr2-callout-body { font-size: 0.87rem; line-height: 1.6; color: #6b5a2a; }
.mr2-callout-body a { color: #4a3c12; text-decoration: underline; }
.mr2-callout-cta {
  display: inline-block; white-space: nowrap;
  background: var(--mr2-navy); color: #fff;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.65rem 1.25rem; border-radius: 4px; text-decoration: none;
  transition: background 0.2s;
}
.mr2-callout-cta:hover { background: var(--mr2-blue); color: #fff; }
@media (max-width: 479px) {
  .mr2-callout { grid-template-columns: auto 1fr; }
  .mr2-callout-cta-wrap { grid-column: 1 / -1; }
}

/* ---- FAQ Versie 1 — Sidebar + Accordion ---- */
.mr2-faq-v1 { padding: 5rem 0; }
.mr2-faq-v1-inner { max-width: 1040px; margin: 0 auto; padding: 0 2rem; }
.mr2-faq-v1-layout { display: grid; grid-template-columns: 300px 1fr; gap: 5rem; align-items: start; }

.mr2-faq-v1-sidebar { position: sticky; top: 2rem; }
.mr2-faq-v1-sidebar p { font-size: 0.88rem; line-height: 1.75; color: var(--mr2-muted); margin-bottom: 1.5rem; }
.mr2-faq-v1-cta {
  display: inline-block; background: var(--mr2-navy); color: #fff;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.75rem 1.5rem; border-radius: 4px; text-decoration: none;
  transition: background 0.2s;
}
.mr2-faq-v1-cta:hover { background: var(--mr2-blue); color: #fff; }

.mr2-faq-v1-accordion { border-top: 1px solid var(--mr2-border); }
.mr2-faq-v1-item { border-bottom: 1px solid var(--mr2-border); }
.mr2-faq-v1-q {
  width: 100%; text-align: left; background: none; border: none;
  padding: 1.2rem 0; font-size: 0.95rem; font-weight: 700; color: var(--mr2-navy);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  font-family: 'Roboto', sans-serif;
}
.mr2-faq-v1-q:hover { color: var(--mr2-blue); }
.mr2-faq-v1-toggle {
  width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
  background: var(--mr2-blue); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 0.9rem; font-weight: 700;
  transition: background 0.2s, transform 0.3s;
}
.mr2-faq-v1-item.open .mr2-faq-v1-toggle { background: var(--mr2-gold); color: var(--mr2-navy); transform: rotate(45deg); }
.mr2-faq-v1-a { display: none; padding: 0 0 1.25rem; font-size: 0.9rem; line-height: 1.75; color: var(--mr2-muted); }
.mr2-faq-v1-item.open .mr2-faq-v1-a { display: block; }

@media (max-width: 767px) {
  .mr2-faq-v1-layout { grid-template-columns: 1fr; gap: 2rem; }
  .mr2-faq-v1-sidebar { position: static; }
}

/* ── fade-in per sectie ── */
.mr2-fadein {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.mr2-fadein.mr2-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .mr2-fadein { opacity: 1; transform: none; transition: none; }
}
