/* =====================================================================
   Call Us Management — theme of the public website
   ---------------------------------------------------------------------
   Loads after app.css. app.css is the shared CMS base (including the whole
   /beheer area) and stays mergeable one-on-one with the base project;
   everything that makes the Call Us Management site look different lives
   here. The variable names still carry the historic "vsi-" prefix of the
   base project — renaming them would touch every component for zero gain.

   Colours come straight from the Call Us Management logo:
     deep blue   #2E6DA4  (the "Call Us" letters and the dark swoosh)
     steel blue  #6797BE  (the accent colour of the old WordPress site)
     grey        #808285  (the lower swoosh)
   Deep blue is the primary/accent colour (with white text on it),
   steel blue is used for highlights and soft backgrounds.
   ===================================================================== */

:root {
    --vsi-green: #2e6da4;
    --vsi-green-dark: #235581;
    --vsi-green-soft: #e9f1f8;
    --vsi-blue: #2e6da4;
    --vsi-blue-dark: #235581;
    --vsi-blue-light: #6797be;
    --vsi-blue-soft: #eef4fa;
    --vsi-ink: #1c2b39;
    --vsi-ink-deep: #101d29;
    --vsi-ink-mid: #24384a;
    --vsi-text: #2b3742;
    --vsi-muted: #5d6d79;
    --vsi-line: #e1e8ed;
    --vsi-mist: #f4f7f9;
    --vsi-radius: 10px;
    --vsi-radius-lg: 16px;
    --vsi-shadow: 0 1px 2px rgba(17, 35, 44, .04), 0 8px 24px rgba(17, 35, 44, .07);
    --vsi-shadow-lift: 0 2px 6px rgba(17, 35, 44, .06), 0 18px 40px rgba(17, 35, 44, .12);
    --vsi-font-heading: "Montserrat", "Segoe UI", system-ui, -apple-system, sans-serif;
    --vsi-font-body: "Roboto", "Segoe UI", system-ui, -apple-system, sans-serif;

    /* The generic CMS components (buttons, forms, content column) read the
       --pb variables; redefining them here gives everything that comes out
       of the CMS the Call Us Management house style automatically. */
    --pb-pink: #2e6da4;
    --pb-pink-dark: #235581;
    --pb-pink-soft: #eef4fa;
    --pb-ink: #1c2b39;
    --pb-ink-soft: #5d6d79;
    --pb-bg-tint: #f4f7f9;
    --pb-radius: 10px;
    --pb-font: "Roboto", "Segoe UI", system-ui, -apple-system, sans-serif;
    --pb-font-heading: "Montserrat", "Segoe UI", system-ui, -apple-system, sans-serif;
}

/* ---------- Basis ---------- */

.vsi-site {
    font-family: var(--vsi-font-body);
    color: var(--vsi-text);
    background: #fff;
    font-size: 1.0125rem;
    line-height: 1.7;
    overflow-x: clip;
}

.vsi-site h1,
.vsi-site h2,
.vsi-site h3,
.vsi-site h4 {
    font-family: var(--vsi-font-heading);
    color: var(--vsi-ink);
    font-weight: 700;
    letter-spacing: -.015em;
    line-height: 1.2;
}

.vsi-site a {
    color: var(--vsi-blue);
    text-decoration-thickness: 1px;
    text-underline-offset: .16em;
}

.vsi-site a:hover {
    color: var(--vsi-blue-dark);
}

.vsi-main {
    display: block;
}

/* ---------- Knoppen ---------- */

.vsi-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .8rem 1.6rem;
    border: 2px solid transparent;
    border-radius: 999px;
    font-family: var(--vsi-font-heading);
    font-size: .95rem;
    font-weight: 600;
    letter-spacing: .01em;
    text-decoration: none;
    cursor: pointer;
    transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.vsi-btn--sm {
    padding: .5rem 1.1rem;
    font-size: .875rem;
}

.vsi-btn--accent {
    background: var(--vsi-green);
    border-color: var(--vsi-green);
    /* Deep blue button: white text reads best (the old accent was a light green with dark text). */
    color: #fff;
}

.vsi-btn--accent:hover,
.vsi-btn--accent:focus-visible {
    background: var(--vsi-green-dark);
    border-color: var(--vsi-green-dark);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(46, 109, 164, .3);
}

.vsi-btn--ghost {
    background: transparent;
    border-color: rgba(255, 255, 255, .45);
    color: #fff;
}

.vsi-btn--ghost:hover,
.vsi-btn--ghost:focus-visible {
    border-color: #fff;
    background: rgba(255, 255, 255, .12);
    color: #fff;
}

/* Op een lichte ondergrond krijgt de ghost-knop de blauwe merkkleur. */
.vsi-section .vsi-btn--ghost,
.vsi-header--solid .vsi-btn--ghost {
    border-color: var(--vsi-blue);
    color: var(--vsi-blue);
}

.vsi-section .vsi-btn--ghost:hover,
.vsi-header--solid .vsi-btn--ghost:hover {
    background: var(--vsi-blue);
    color: #fff;
}

/* ---------- Header ---------- */

.vsi-header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: #fff;
    border-bottom: 1px solid var(--vsi-line);
    transition: background-color .2s ease, border-color .2s ease;
}

/* Op de homepage ligt de balk transparant over de donkere hero. */
.vsi-header--overlay {
    background: transparent;
    border-bottom-color: transparent;
    position: absolute;
    left: 0;
    right: 0;
}

.vsi-header__inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: .55rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.vsi-header__brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    line-height: 0;
}

.vsi-header__logo {
    width: auto;
    height: 52px;
    display: block;
}

/* Het logo is donker omlijnd; op de donkere hero krijgt het een lichte 'kaart' eronder
   zou te druk staan — een lichte drop-shadow houdt het leesbaar zonder extra vlak. */
.vsi-header--overlay .vsi-header__logo {
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, .45));
}

.vsi-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-left: auto;
}

.vsi-nav__list {
    display: flex;
    align-items: center;
    gap: .35rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* De gedeelde basis tekent een dunne lijn dwars door beide menudelen (opmaak van het
   basisproject); de VSI-balk is strak en heeft die lijn niet. */
.vsi-nav .vsi-nav__list::after,
.vsi-nav .vsi-nav__list::before,
.vsi-nav__list > li::before,
.vsi-nav__list > li::after {
    content: none;
    display: none;
    border: 0;
}

.vsi-nav__list > li {
    background: none;
    border: 0;
}

.vsi-nav__link {
    display: inline-block;
    padding: .55rem .8rem;
    border-radius: var(--vsi-radius);
    font-family: var(--vsi-font-heading);
    font-size: .93rem;
    font-weight: 600;
    color: var(--vsi-ink);
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
}

.vsi-nav__link:hover,
.vsi-nav__link:focus-visible {
    color: var(--vsi-blue);
    background: var(--vsi-blue-soft);
}

.vsi-nav__link--active {
    color: var(--vsi-blue);
    box-shadow: inset 0 -2px 0 var(--vsi-green);
}

.vsi-header--overlay .vsi-nav__link {
    color: #fff;
}

.vsi-header--overlay .vsi-nav__link:hover,
.vsi-header--overlay .vsi-nav__link:focus-visible {
    color: #fff;
    background: rgba(255, 255, 255, .14);
}

.vsi-nav__caret {
    font-size: .7em;
    opacity: .7;
}

/* ---------- Uitklapmenu ---------- */

.vsi-nav__item--dropdown {
    position: relative;
}

.vsi-nav__submenu {
    position: absolute;
    top: calc(100% + .35rem);
    left: 0;
    min-width: 260px;
    margin: 0;
    padding: .5rem;
    list-style: none;
    background: #fff;
    border: 1px solid var(--vsi-line);
    border-radius: var(--vsi-radius);
    box-shadow: var(--vsi-shadow-lift);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity .16s ease, transform .16s ease, visibility .16s;
}

.vsi-nav__item--dropdown:hover .vsi-nav__submenu,
.vsi-nav__item--dropdown:focus-within .vsi-nav__submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.vsi-nav__submenu a {
    display: block;
    padding: .5rem .75rem;
    border-radius: 8px;
    color: var(--vsi-ink);
    font-size: .93rem;
    font-weight: 500;
    text-decoration: none;
}

.vsi-nav__submenu a:hover,
.vsi-nav__submenu a:focus-visible {
    background: var(--vsi-blue-soft);
    color: var(--vsi-blue);
}

/* ---------- Taalknoppen en headeracties ---------- */

.vsi-header__actions {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.vsi-header__lang {
    display: inline-flex;
    gap: .25rem;
}

.vsi-header__lang-btn {
    min-width: 2.1rem;
    border: 1px solid var(--vsi-line);
    border-radius: 6px;
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-align: center;
    text-decoration: none;
    color: var(--vsi-muted);
}

/* NL/EN staan midden in hun vakje. De gedeelde basis (app.css) doet dat alléén voor de
   transparante header, waardoor de tekst op binnenpagina's bovenin het vakje bleef hangen
   (inline-block + een vaste hoogte van 34px). Deze regel noemt de omhullende .vsi-header__lang
   mee, zodat hij net zo zwaar weegt als `.vsi-header--overlay .vsi-header__lang-btn` uit
   app.css en beide headervarianten dezelfde, gecentreerde knop krijgen.
   letter-spacing zet ook ruimte ACHTER de laatste letter; die duwt de tekst optisch naar
   links, dus links evenveel terugleggen. */
.vsi-header__lang .vsi-header__lang-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 0 0 .06em;
    line-height: 1;
}

.vsi-header__lang-btn--active,
.vsi-header__lang-btn:hover {
    border-color: var(--vsi-blue);
    color: var(--vsi-blue);
}

/* De actieve taal is gevuld, net als in de transparante header op de homepage. De type-selector
   `a` is nodig om `.vsi-header__lang a.vsi-header__lang-btn--active` uit app.css te verslaan:
   die zette de knop wit-op-wit met de oude districtkleur, waardoor het vakje van de actieve
   taal op een binnenpagina onzichtbaar werd en juist de ándere taal omlijnd leek. */
.vsi-header--solid .vsi-header__lang a.vsi-header__lang-btn--active {
    background: var(--vsi-blue);
    border-color: var(--vsi-blue);
    color: #fff;
}

/* Over de hero blijft de actieve taal een wit vlak (dat leest daar het beste), maar de letters
   stonden nog in de districtkleur #a0605a uit app.css. Die hoort niet bij VSI, dus het themablauw
   — zo is de actieve taal op elke pagina in dezelfde kleur gemarkeerd. */
.vsi-header--overlay .vsi-header__lang a.vsi-header__lang-btn--active {
    background: #fff;
    border-color: #fff;
    color: var(--vsi-blue);
}

.vsi-header--overlay .vsi-header__lang-btn {
    border-color: rgba(255, 255, 255, .35);
    color: rgba(255, 255, 255, .8);
}

.vsi-header--overlay .vsi-header__lang-btn--active,
.vsi-header--overlay .vsi-header__lang-btn:hover {
    border-color: #fff;
    color: #fff;
}

/* ---------- Hero ---------- */

/* De gedeelde basis (app.css) kent een schermvullende fotoslider onder dezelfde naam; die
   maakt de hero 100vh hoog en zet de titel absoluut. De VSI-hero is een gewone tekstsectie,
   dus die twee regels worden hier expliciet teruggedraaid. */
.vsi-hero {
    position: relative;
    isolation: isolate;
    height: auto;
    min-height: 0;
    padding: 9.5rem 0 5.5rem;
    background: linear-gradient(155deg, #0e1820 0%, #15303f 48%, #0a4c6a 100%);
    color: #fff;
    overflow: hidden;
}

.vsi-hero .vsi-hero__title {
    position: static;
    left: auto;
    bottom: auto;
    max-width: none;
    line-height: 1.08;
    letter-spacing: -.015em;
    text-shadow: none;
}

/* Zachte lichtvlek in de merkkleuren, puur decoratief. */
.vsi-hero__glow {
    position: absolute;
    inset: -30% -10% auto auto;
    width: 60rem;
    height: 40rem;
    background: radial-gradient(circle at 60% 40%, rgba(99, 181, 229, .30), transparent 62%),
                radial-gradient(circle at 25% 75%, rgba(103, 151, 190, .22), transparent 60%);
    z-index: -1;
    pointer-events: none;
}

.vsi-hero__container {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    align-items: center;
    gap: 3rem;
}

.vsi-hero__eyebrow {
    margin: 0 0 .9rem;
    font-family: var(--vsi-font-heading);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--vsi-green);
}

.vsi-hero .vsi-hero__title {
    margin: 0 0 1.25rem;
    font-size: clamp(2.3rem, 4.6vw, 3.7rem);
    color: #fff;
}

.vsi-hero__title-accent {
    display: block;
    color: var(--vsi-green);
}

.vsi-hero__lead {
    margin: 0 0 2rem;
    max-width: 38rem;
    font-size: 1.1rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, .84);
}

.vsi-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
    margin: 0 0 2.25rem;
}

.vsi-hero__facts {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem 1.6rem;
    margin: 0;
    padding: 1.4rem 0 0;
    border-top: 1px solid rgba(255, 255, 255, .16);
    list-style: none;
    font-size: .88rem;
    color: rgba(255, 255, 255, .72);
}

.vsi-hero__facts li::before {
    content: "";
    display: inline-block;
    width: .45rem;
    height: .45rem;
    margin-right: .55rem;
    border-radius: 50%;
    background: var(--vsi-green);
    vertical-align: .1em;
}

.vsi-hero__art {
    line-height: 0;
}

.vsi-artwork {
    width: 100%;
    height: auto;
    max-width: 34rem;
    margin-left: auto;
    display: block;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, .35));
}

/* ---------- Secties ---------- */

.vsi-section {
    padding: 5rem 0;
}

.vsi-section--tint {
    background: var(--vsi-mist);
}

.vsi-section--highlight {
    background: linear-gradient(180deg, #fff 0%, var(--vsi-blue-soft) 100%);
}

.vsi-section--refs {
    background: var(--vsi-mist);
}

.vsi-section--dark {
    background: var(--vsi-ink-mid);
    color: rgba(255, 255, 255, .82);
}

.vsi-section--dark h2,
.vsi-section--dark h3,
.vsi-section--dark strong {
    color: #fff;
}

.vsi-eyebrow {
    margin: 0 0 .7rem;
    font-family: var(--vsi-font-heading);
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .17em;
    text-transform: uppercase;
    color: var(--vsi-blue);
}

.vsi-eyebrow--light {
    color: var(--vsi-green);
}

.vsi-eyebrow--center {
    text-align: center;
}

.vsi-section__title {
    margin: 0 0 1.1rem;
    font-size: clamp(1.65rem, 2.8vw, 2.35rem);
    max-width: 30ch;
}

.vsi-section__title--center {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2.75rem;
    max-width: 24ch;
    text-align: center;
}

.vsi-section__lead {
    margin: 0 0 1.5rem;
    max-width: 60ch;
    font-size: 1.03rem;
}

.vsi-section--dark .vsi-section__lead {
    color: rgba(255, 255, 255, .8);
}

/* ---------- Vinklijst ---------- */

.vsi-checklist {
    margin: 0 0 1.75rem;
    padding: 0;
    list-style: none;
    display: grid;
    gap: .7rem;
}

.vsi-checklist li {
    position: relative;
    padding-left: 2rem;
}

.vsi-checklist li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .42em;
    width: 1.15rem;
    height: 1.15rem;
    border-radius: 50%;
    background: var(--vsi-green) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230e1820' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / .72rem no-repeat;
}

/* ---------- Pijl-link ---------- */

.vsi-link-arrow {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-family: var(--vsi-font-heading);
    font-size: .92rem;
    font-weight: 600;
    color: var(--vsi-blue);
    text-decoration: none;
}

.vsi-link-arrow::after {
    content: "→";
    transition: transform .18s ease;
}

.vsi-link-arrow:hover::after {
    transform: translateX(4px);
}

.vsi-link-arrow--light {
    color: var(--vsi-green);
}

.vsi-link-arrow--light:hover {
    color: #b7dc4a;
}

/* ---------- Nu / na de herbouw ---------- */

.vsi-beforeafter {
    display: grid;
    gap: 1rem;
}

.vsi-beforeafter__card {
    padding: 1.4rem 1.5rem;
    border-radius: var(--vsi-radius-lg);
    background: #fff;
    border: 1px solid var(--vsi-line);
    box-shadow: var(--vsi-shadow);
}

.vsi-beforeafter__card ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: .45rem;
    font-size: .95rem;
}

.vsi-beforeafter__card li::before {
    content: "—";
    margin-right: .5rem;
    color: var(--vsi-muted);
}

.vsi-beforeafter__tag {
    display: inline-block;
    margin-bottom: .8rem;
    padding: .2rem .7rem;
    border-radius: 999px;
    font-family: var(--vsi-font-heading);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.vsi-beforeafter__card--before {
    background: #fbfcfd;
}

.vsi-beforeafter__card--before .vsi-beforeafter__tag {
    background: #eef1f4;
    color: var(--vsi-muted);
}

.vsi-beforeafter__card--after {
    border-color: rgba(46, 109, 164, .5);
    background: linear-gradient(180deg, #fff 0%, var(--vsi-green-soft) 100%);
}

.vsi-beforeafter__card--after .vsi-beforeafter__tag {
    background: var(--vsi-green);
    color: #fff;
}

.vsi-beforeafter__card--after li::before {
    content: "✓";
    color: var(--vsi-green-dark);
    font-weight: 700;
}

/* ---------- Dienstentegels ---------- */

.vsi-cards {
    align-items: stretch;
}

.vsi-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.9rem 1.8rem;
    background: #fff;
    border: 1px solid var(--vsi-line);
    border-radius: var(--vsi-radius-lg);
    text-decoration: none;
    color: inherit;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.vsi-card:hover,
.vsi-card:focus-visible {
    transform: translateY(-4px);
    border-color: rgba(1, 117, 164, .35);
    box-shadow: var(--vsi-shadow-lift);
    color: inherit;
}

.vsi-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.25rem;
    height: 3.25rem;
    margin-bottom: 1.15rem;
    border-radius: 14px;
    background: var(--vsi-blue-soft);
    color: var(--vsi-blue);
}

.vsi-card:hover .vsi-card__icon {
    background: var(--vsi-green-soft);
    color: var(--vsi-green-dark);
}

.vsi-card__title {
    margin: 0 0 .6rem;
    font-size: 1.16rem;
}

.vsi-card__text {
    margin: 0 0 1.2rem;
    font-size: .96rem;
    color: var(--vsi-muted);
}

.vsi-card__more {
    margin-top: auto;
    font-family: var(--vsi-font-heading);
    font-size: .88rem;
    font-weight: 600;
    color: var(--vsi-blue);
}

.vsi-card__more::after {
    content: " →";
}

/* ---------- Technologieblokjes ---------- */

.vsi-techgrid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .8rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.vsi-techgrid li {
    padding: 1rem 1.1rem;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--vsi-radius);
    background: rgba(255, 255, 255, .05);
}

.vsi-techgrid strong {
    display: block;
    font-family: var(--vsi-font-heading);
    font-size: .98rem;
    margin-bottom: .15rem;
}

.vsi-techgrid span {
    font-size: .85rem;
    color: rgba(255, 255, 255, .62);
}

/* ---------- Koppelingen ---------- */

.vsi-integrations {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr);
    align-items: center;
    gap: 3rem;
}

.vsi-integrations__list {
    display: grid;
    gap: .9rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.vsi-integrations__list li {
    padding: 1.15rem 1.4rem;
    background: #fff;
    border: 1px solid var(--vsi-line);
    border-left: 4px solid var(--vsi-green);
    border-radius: var(--vsi-radius);
    font-family: var(--vsi-font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--vsi-ink);
    box-shadow: var(--vsi-shadow);
}

/* ---------- Logowand (referenties) ---------- */

.vsi-logowall {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
    margin: 0 0 2rem;
    padding: 0;
    list-style: none;
}

.vsi-logowall__item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 6.5rem;
    padding: 1.1rem;
    background: #fff;
    border: 1px solid var(--vsi-line);
    border-radius: var(--vsi-radius);
    transition: box-shadow .2s ease, transform .2s ease;
}

.vsi-logowall__item:hover {
    transform: translateY(-2px);
    box-shadow: var(--vsi-shadow);
}

.vsi-logowall__item img {
    max-width: 100%;
    max-height: 4.4rem;
    width: auto;
    height: auto;
    object-fit: contain;
    /* De klantlogo's staan in hun eigen kleuren (uitdrukkelijke wens): niet ontkleuren. Het
       hovereffect blijft wat het was — het logo licht op van 72% naar volledig zichtbaar. */
    opacity: .72;
    transition: opacity .2s ease;
}

.vsi-logowall__item:hover img {
    opacity: 1;
}

.vsi-logowall__more {
    margin: 0;
    text-align: center;
}

/* Dezelfde wand op de referentiepagina, waar hij uit de [[galerij-…]]-shortcode komt. De
   shortcode levert een Bootstrap-rij met kolommen; hier wordt dat een compact logoraster. */
.vsi-content .pb-moodboards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0 2.5rem;
}

.vsi-content .pb-moodboards > [class*="col-"] {
    width: 100%;
    max-width: none;
    flex: none;
    padding: 0;
}

.vsi-content .pb-moodboard {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    height: 100%;
    min-height: 7.5rem;
    margin: 0;
    padding: 1.1rem;
    background: #fff;
    border: 1px solid var(--vsi-line);
    border-radius: var(--vsi-radius);
}

.vsi-content .pb-moodboard__img {
    max-width: 100%;
    max-height: 4.2rem;
    width: auto;
    height: auto;
    object-fit: contain;
    /* Zie .vsi-logowall__item img: de referentielogo's blijven in kleur, alleen het oplichten
       bij hover is het effect. */
    opacity: .72;
    transition: opacity .2s ease;
}

.vsi-content .pb-moodboard:hover .pb-moodboard__img {
    opacity: 1;
}

.vsi-content .pb-moodboard figcaption {
    font-size: .78rem;
    color: var(--vsi-muted);
    text-align: center;
    line-height: 1.3;
}

/* ---------- Afsluitende CTA-band ---------- */

.vsi-cta {
    padding: 4.5rem 1.25rem;
    background: linear-gradient(140deg, #0e1820 0%, #10394d 55%, #0a4c6a 100%);
    color: #fff;
    text-align: center;
}

.vsi-cta__container {
    max-width: 46rem;
    margin: 0 auto;
}

.vsi-cta__eyebrow {
    margin: 0 0 .7rem;
    font-family: var(--vsi-font-heading);
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .17em;
    text-transform: uppercase;
    color: var(--vsi-green);
}

.vsi-cta__quote {
    margin: 0 0 1.8rem;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: #fff;
}

.vsi-cta__link {
    margin: 0;
}

/* ---------- Footer ---------- */

.vsi-footer {
    background: var(--vsi-ink-deep);
    color: rgba(255, 255, 255, .72);
    padding: 3.75rem 0 0;
    font-size: .94rem;
}

.vsi-footer__cols {
    padding-bottom: 2.75rem;
}

.vsi-footer__logo {
    height: 56px;
    width: auto;
    margin-bottom: 1rem;
    display: block;
}

.vsi-footer__about {
    margin: 0 0 1.1rem;
    max-width: 34ch;
    color: rgba(255, 255, 255, .6);
    font-size: .9rem;
}

.vsi-footer__heading {
    margin: 0 0 .9rem;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--vsi-green);
}

.vsi-footer__links {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: .45rem;
}

.vsi-footer__links a {
    color: rgba(255, 255, 255, .78);
    text-decoration: none;
}

.vsi-footer__links a:hover {
    color: #fff;
    text-decoration: underline;
}

.vsi-footer__links--contact li {
    color: rgba(255, 255, 255, .62);
}

.vsi-footer__social {
    display: flex;
    gap: .75rem;
    margin: 0;
}

.vsi-footer__social a {
    color: rgba(255, 255, 255, .6);
}

.vsi-footer__social a:hover {
    color: var(--vsi-green);
}

.vsi-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 1.1rem 0;
    font-size: .84rem;
    color: rgba(255, 255, 255, .5);
}

.vsi-footer__bottom-inner {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem 1.5rem;
    justify-content: space-between;
}

.vsi-footer__bottom-links a {
    color: rgba(255, 255, 255, .6);
    text-decoration: none;
    margin-left: 1.25rem;
}

.vsi-footer__bottom-links a:first-child {
    margin-left: 0;
}

.vsi-footer__bottom-links a:hover {
    color: #fff;
}

/* ---------- 'Naar boven'-knop ----------
   De selectors noemen .vsi-site mee met opzet: de algemene linkkleur `.vsi-site a` weegt zwaarder
   (klasse + element) dan een losse `.vsi-totop` en kleurde de pijl daardoor blauw op een blauwe
   knop — onzichtbaar, behalve bij hover (die regel woog wél zwaar genoeg). De pijl erft zijn kleur
   via `stroke="currentColor"`, dus met deze regels is hij weer wit. */

.vsi-site .vsi-totop {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 55;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.9rem;
    height: 2.9rem;
    border-radius: 50%;
    background: var(--vsi-blue);
    color: #fff;
    box-shadow: var(--vsi-shadow-lift);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s, background-color .2s ease;
}

.vsi-site .vsi-totop--visible {
    opacity: .92;
    visibility: visible;
    transform: translateY(0);
}

.vsi-site .vsi-totop:hover,
.vsi-site .vsi-totop:focus-visible {
    background: var(--vsi-green);
    color: #fff;
    opacity: 1;
}

/* ---------- CMS-inhoudspagina's ---------- */

.vsi-pagetitle {
    padding: 4.5rem 0 1rem;
    background: linear-gradient(180deg, var(--vsi-blue-soft) 0%, #fff 100%);
    text-align: left;
}

.vsi-pagetitle__text {
    margin: 0;
    max-width: 22ch;
    font-family: var(--vsi-font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -.02em;
    text-transform: none;
    color: var(--vsi-ink);
}

/* Ook de contactpagina gebruikt de generieke kop van het CMS. */
.pb-page-hero {
    padding: 4.5rem 0 1rem;
    background: linear-gradient(180deg, var(--vsi-blue-soft) 0%, #fff 100%);
}

.pb-page-hero__title {
    margin: 0;
    font-family: var(--vsi-font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -.02em;
    color: var(--vsi-ink);
}

.vsi-article {
    padding: 1.5rem 1.25rem 4rem;
}

.vsi-content,
.pb-section .pb-content {
    max-width: 46rem;
    font-size: 1.03rem;
}

.vsi-content > .pb-lead,
.pb-content > .pb-lead {
    font-size: 1.18rem;
    line-height: 1.6;
    color: var(--vsi-ink);
    margin-bottom: 1.75rem;
}

.vsi-content h2 {
    margin: 2.6rem 0 .85rem;
    font-size: 1.55rem;
    padding-top: 1.6rem;
    border-top: 1px solid var(--vsi-line);
}

.vsi-content h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}

.vsi-content h3 {
    margin: 1.9rem 0 .6rem;
    font-size: 1.16rem;
    color: var(--vsi-blue);
}

.vsi-content p {
    margin: 0 0 1.1rem;
}

.vsi-content ul {
    margin: 0 0 1.4rem;
    padding: 0;
    list-style: none;
    display: grid;
    gap: .55rem;
}

.vsi-content ul li {
    position: relative;
    padding-left: 1.5rem;
}

.vsi-content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .68em;
    width: .5rem;
    height: .5rem;
    border-radius: 50%;
    background: var(--vsi-green);
}

/* De logowand-galerij mag wél de volle breedte gebruiken. */
.vsi-content .pb-gallery {
    max-width: none;
}

/* ---------- Free software: downloadblokken ----------
   Alleen opmaak voor de losse regels van een programma op de pagina Free software; de knoppen
   zelf zijn de gewone .vsi-btn, zodat ze overal hetzelfde blijven. */

.vsi-download__meta {
    margin: -.4rem 0 1rem;
    font-family: var(--vsi-font-heading);
    font-size: .9rem;
    font-weight: 600;
    color: var(--vsi-muted);
}

.vsi-download__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin: 1.5rem 0;
}

.vsi-download__note {
    padding: .9rem 1.1rem;
    border-left: 4px solid var(--vsi-green);
    border-radius: 0 var(--vsi-radius) var(--vsi-radius) 0;
    background: var(--vsi-mist);
    font-size: .92rem;
    color: var(--vsi-muted);
}

/* ---------- Contactpagina ---------- */

.pb-contact-info {
    padding: 1.75rem;
    background: var(--vsi-mist);
    border: 1px solid var(--vsi-line);
    border-radius: var(--vsi-radius-lg);
}

.pb-contact-info h2 {
    margin-top: 0;
    font-size: 1.2rem;
}

.pb-contact-info__list {
    list-style: none;
    margin: 0 0 1.25rem;
    padding: 0;
    display: grid;
    gap: .5rem;
}

.pb-contact-info__link {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: var(--vsi-ink);
    text-decoration: none;
    font-weight: 500;
}

.pb-contact-info__link:hover {
    color: var(--vsi-blue);
}

.pb-contact-info__link--whatsapp {
    color: #25d366;
}

.pb-contact-info__address {
    margin: 0 0 1.25rem;
    font-style: normal;
    color: var(--vsi-muted);
}

.pb-section {
    padding: 1.5rem 1.25rem 4rem;
}

/* ---------- Consentbanner in de merkkleuren ---------- */

.pb-consent {
    border-top: 3px solid var(--vsi-green);
}

/* ---------- Mobiel menu en smalle schermen ---------- */

.pb-nav__toggle {
    display: none;
}

@media (max-width: 991.98px) {
    .vsi-header__inner {
        flex-wrap: wrap;
        padding: .5rem 1rem;
    }

    .pb-nav__toggle {
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        margin-left: auto;
        width: 2.75rem;
        height: 2.75rem;
        padding: .6rem;
        border-radius: 8px;
        cursor: pointer;
    }

    .pb-nav__toggle span {
        display: block;
        height: 2px;
        background: var(--vsi-ink);
        border-radius: 2px;
    }

    .vsi-header--overlay .pb-nav__toggle span {
        background: #fff;
    }

    .vsi-nav {
        display: none;
        width: 100%;
        margin: .75rem 0 0;
        padding: .75rem 0 1rem;
        border-top: 1px solid var(--vsi-line);
        flex-direction: column;
        align-items: stretch;
        gap: .75rem;
    }

    /* De verborgen checkbox in de header stuurt het menu — geen JavaScript nodig. */
    .pb-nav__toggle-checkbox:checked ~ .vsi-nav {
        display: flex;
    }

    .vsi-header--overlay:has(.pb-nav__toggle-checkbox:checked) {
        position: sticky;
        background: var(--vsi-ink-deep);
    }

    .vsi-nav__list {
        flex-direction: column;
        align-items: stretch;
        gap: .15rem;
    }

    .vsi-nav__submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: 0;
        background: transparent;
        padding: 0 0 0 1rem;
    }

    .vsi-header--overlay .vsi-nav__submenu a {
        color: rgba(255, 255, 255, .85);
    }

    .vsi-header__actions {
        justify-content: space-between;
    }

    .vsi-hero {
        padding: 7rem 0 3.5rem;
    }

    .vsi-hero__container {
        grid-template-columns: 1fr;
        gap: 2.25rem;
    }

    .vsi-artwork {
        margin: 0 auto;
        max-width: 26rem;
    }

    .vsi-integrations {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }
}

@media (max-width: 575.98px) {
    .vsi-section {
        padding: 3.25rem 0;
    }

    .vsi-header__logo {
        height: 42px;
    }

    .vsi-techgrid {
        grid-template-columns: 1fr;
    }

    .vsi-logowall {
        grid-template-columns: repeat(auto-fill, minmax(128px, 1fr));
    }

    .vsi-footer__bottom-inner {
        flex-direction: column;
    }
}

/* ---------- Print ---------- */

@media print {
    .vsi-header,
    .vsi-footer,
    .vsi-totop,
    .vsi-cta,
    .pb-consent {
        display: none !important;
    }
}

/* =====================================================================
   Call Us Management — homepage sections
   ---------------------------------------------------------------------
   The home page mirrors the structure of the old WordPress site (a city
   hero with the headline, and the worldwide band from the About page)
   in a modern, professional form. Images live in uploads/media so the
   administrator can swap them from /beheer.
   ===================================================================== */

.cm-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 82vh;
    padding: 8.5rem 1.5rem 5.5rem;
    background:
        linear-gradient(180deg, rgba(16, 29, 41, .78) 0%, rgba(16, 29, 41, .55) 45%, rgba(16, 29, 41, .8) 100%),
        url("/uploads/media/hero-city.jpg") center 30% / cover no-repeat;
    text-align: center;
}

.cm-hero__inner {
    max-width: 56rem;
}

.cm-hero__logo-card {
    display: inline-block;
    background: #fff;
    border-radius: var(--vsi-radius-lg);
    padding: 1rem 1.6rem;
    box-shadow: var(--vsi-shadow-lift);
    margin-bottom: 2rem;
    line-height: 0;
}

.cm-hero__title {
    color: #fff;
    font-size: clamp(2rem, 5vw, 3.4rem);
    margin: 0 0 1rem;
}

.cm-hero__tagline {
    color: rgba(255, 255, 255, .85);
    font-family: var(--vsi-font-heading);
    font-size: clamp(1rem, 2.2vw, 1.3rem);
    letter-spacing: .12em;
    text-transform: uppercase;
    margin: 0 0 2.2rem;
}

.cm-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: .9rem;
    justify-content: center;
    margin: 0;
}

/* The three brand pillars from the old tagline. */
.cm-pillars {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.cm-pillar {
    background: #fff;
    border: 1px solid var(--vsi-line);
    border-radius: var(--vsi-radius-lg);
    box-shadow: var(--vsi-shadow);
    padding: 2rem 1.75rem;
    text-align: center;
}

.cm-pillar__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: var(--vsi-blue-soft);
    color: var(--vsi-blue);
    margin-bottom: 1.1rem;
}

.cm-pillar h3 {
    font-size: 1.15rem;
    margin: 0 0 .6rem;
}

.cm-pillar p {
    margin: 0;
    color: var(--vsi-muted);
}

/* Worldwide band: the globe image of the old About page with the key message. */
.cm-worldwide {
    position: relative;
    padding: 6rem 1.5rem;
    background:
        linear-gradient(180deg, rgba(35, 85, 129, .82) 0%, rgba(46, 109, 164, .72) 100%),
        url("/uploads/media/hero-global.jpg") center center / cover no-repeat;
    text-align: center;
    color: #fff;
}

.cm-worldwide__title {
    color: #fff;
    font-size: clamp(1.7rem, 4vw, 2.6rem);
    margin: 0 0 1rem;
}

.cm-worldwide__rule {
    width: 200px;
    height: 1px;
    background: rgba(255, 255, 255, .4);
    border: 0;
    margin: 0 auto 1.4rem;
}

.cm-worldwide__text {
    max-width: 44rem;
    margin: 0 auto 2rem;
    color: rgba(255, 255, 255, .92);
    font-size: 1.1rem;
}

/* Closing call-to-action strip. */
.cm-cta {
    background: var(--vsi-mist);
    border-top: 1px solid var(--vsi-line);
    padding: 4rem 1.5rem;
    text-align: center;
}

.cm-cta h2 {
    margin: 0 0 .75rem;
}

.cm-cta p {
    max-width: 40rem;
    margin: 0 auto 1.6rem;
    color: var(--vsi-muted);
}

@media (max-width: 900px) {
    .cm-pillars {
        grid-template-columns: 1fr;
    }

    .cm-hero {
        min-height: 70vh;
        padding-top: 7rem;
    }
}

/* ---------------------------------------------------------------------
   Specificity fixes (found in the headless QA pass of 2026-08-10)
   ---------------------------------------------------------------------
   The generic theme rules `.vsi-site h1..h4` and `.vsi-site a` are one
   element more specific than a single class, so they silently won from
   the section rules above: hero and worldwide headings rendered dark on
   a dark photo, and every button that is an <a> got the blue link colour
   (blue text on a blue button = invisible). These overrides repeat the
   `.vsi-site` prefix so they win on specificity, not on order.
   --------------------------------------------------------------------- */

.vsi-site .cm-hero__title,
.vsi-site .cm-worldwide__title {
    color: #fff;
}

.vsi-site a.vsi-btn--accent {
    color: #fff;
}

.vsi-site a.vsi-btn--accent:hover,
.vsi-site a.vsi-btn--accent:focus-visible {
    color: #fff;
}

/* Ghost button on a dark band (hero, worldwide): white outline, white text. */
.vsi-site .cm-hero a.vsi-btn--ghost,
.vsi-site .cm-worldwide a.vsi-btn--ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, .55);
}

.vsi-site .cm-hero a.vsi-btn--ghost:hover,
.vsi-site .cm-worldwide a.vsi-btn--ghost:hover {
    color: #fff;
    border-color: #fff;
    background: rgba(255, 255, 255, .14);
}

/* Ghost button on a light band keeps the brand colour. */
.vsi-site .vsi-section a.vsi-btn--ghost,
.vsi-site .cm-cta a.vsi-btn--ghost {
    color: var(--vsi-blue);
}

/* The logo is dark blue/grey artwork; on the transparent header over the
   dark hero photo it disappeared. A small white plate keeps it readable
   without changing the logo file itself. */
.vsi-header--overlay .vsi-header__brand {
    background: #fff;
    border-radius: var(--vsi-radius);
    padding: .35rem .6rem;
    box-shadow: 0 2px 10px rgba(16, 29, 41, .25);
}

/* The hero already shows the logo big and centred; on the overlay header
   it only has to identify the page, so keep it modest. */
.vsi-header--overlay .vsi-header__logo {
    max-height: 44px;
}

/* The "website hidden" badge sits top-left in the base CMS and covered the logo
   in this layout. It is a build-time warning, so park it bottom-left where it
   overlaps nothing. It disappears entirely once SiteNoIndex is switched off. */
.pb-hidden-badge {
    top: auto;
    bottom: 0.5rem;
}

/* Same reason as the overlay header: the dark logo artwork disappeared against
   the dark footer. A white plate keeps it legible without editing the logo. */
.vsi-footer__logo {
    background: #fff;
    border-radius: var(--vsi-radius);
    padding: .4rem .7rem;
}
