/* =====================================================
   VIDENT HOMEPAGE -- PAGE-SPECIFIC CSS
   Page: Dutch homepage (/nl/) -- main version of the site
   File target: css/pages/home-nl.css  (Site Assets Manager)
   Page Assets box -> Asset key: home-nl
   Loads ONLY on this page. Design tokens (--vd-*) and the
   reveal/cursor/button/marquee/FAQ system are defined once
   in css/global.css and are not repeated here.
   This page already used a solid scoping convention
   (#vident-root wrapper, vd- prefixed classes) before this
   pass, so it is kept as-is rather than renamed to match the
   English/French wrapper-class pattern. Every rule below is
   still scoped under #vident-root, so it cannot leak onto,
   or be overridden by, another Elementor widget or a future
   page.
===================================================== */

/* Root container: page background, base typography and box
   model. No cursor:none here -- this page never hides the
   native cursor, it only adds the custom cursor dot/ring as
   a decorative overlay, which is a safer pattern than the
   English/French pages originally used and is kept as-is. */
#vident-root{
    font-family: "Inter", sans-serif;
    background: var(--vd-soft);
    color: var(--vd-ink);
    line-height: 1.65;
    overflow-x: clip;
    overflow-y: visible;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Base reset, wrapped in :where() so it can never win a
   specificity tie against a real component rule in
   global.css (such as .vd-btn's own padding) regardless of
   which file happens to load first -- this is the same fix
   already applied to the English/French page CSS after that
   exact bug surfaced there. */
:where(#vident-root, #vident-root *, #vident-root *::before, #vident-root *::after){
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Tag-level base rules, kept scoped to #vident-root rather than
   moved to global.css: they only make sense next to that id, and
   this page's own scoping is already the more defensive pattern
   (see rule about avoiding generic sitewide img/a/button selectors). */
#vident-root img{ max-width: 100%; display: block; }
#vident-root a{ font-family: inherit; }
#vident-root button{ font-family: inherit; }
#vident-root ::selection{ background: var(--vd-base); color: white; }
#vident-root a:focus-visible,
#vident-root button:focus-visible{
    outline: 2px solid var(--vd-gold);
    outline-offset: 3px;
}

/* ─── COMMON SECTION ─── */
#vident-root .vd-section{
    position: relative;
    padding: 80px 72px;
}

#vident-root .vd-section-kicker{
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    letter-spacing: .28em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--vd-base);
    margin-bottom: 22px;
}

#vident-root .vd-section-kicker::before{
    content: "";
    width: 34px;
    height: 1px;
    background: var(--vd-base);
    opacity: .55;
}

#vident-root .vd-section-title{
    font-family: "Playfair Display", serif;
    font-size: clamp(38px, 5vw, 76px);
    line-height: 1.02;
    letter-spacing: -.03em;
    font-weight: 400;
    color: var(--vd-ink);
}

#vident-root .vd-section-title em{
    color: var(--vd-base);
    font-style: italic;
}

#vident-root .vd-section-sub{
    max-width: 560px;
    color: var(--vd-muted);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.85;
}

#vident-root .vd-section-head{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 48px;
    margin-bottom: 48px;
}

/* ─── HERO ─── */
#vident-root .vd-hero{
    min-height: 100svh;
    position: relative;
    padding: 42px 72px 40px;
    background:
     radial-gradient(circle at 80% 12%, rgba(199,164,106,.18), transparent 28%),
     radial-gradient(circle at 18% 18%, rgba(52,73,94,.13), transparent 26%),
     linear-gradient(135deg, #fbfbfa 0%, #eef3f5 56%, #f7f3ec 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#vident-root .vd-hero::before{
    content: "";
    position: absolute;
    inset: 0;
    background-image:
     linear-gradient(rgba(52,73,94,.055) 1px, transparent 1px),
     linear-gradient(90deg, rgba(52,73,94,.055) 1px, transparent 1px);
    background-size: 68px 68px;
    mask-image: radial-gradient(circle at 45% 30%, black, transparent 70%);
    pointer-events: none;
}

#vident-root .vd-hero-liquid{
    position: absolute;
    right: 0;
    top: 120px;
    width: 480px;
    height: 480px;
    background: linear-gradient(135deg, rgba(52,73,94,.15), rgba(199,164,106,.16));
    filter: blur(.2px);
    opacity: .6;
    animation: vd-morph 9s ease-in-out infinite;
    pointer-events: none;
    overflow: hidden;
}

@keyframes vd-morph{
    0%, 100% { border-radius: 44% 56% 60% 40% / 46% 40% 60% 54%; transform: rotate(0deg); }
    50% { border-radius: 60% 40% 42% 58% / 58% 62% 38% 42%; transform: rotate(8deg); }
}

#vident-root .vd-hero-grid{
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
    gap: 72px;
    align-items: center;
    width: 100%;
}

#vident-root .vd-hero-brand{
    display: inline-flex;
    align-items: center;
    gap: 14px;
    width: max-content;
    max-width: 100%;
    padding: 9px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(52, 73, 94, .12);
    backdrop-filter: blur(18px);
    margin-bottom: 36px;
}

#vident-root .vd-hero-brand img{ width: 72px; height: auto; }

#vident-root .vd-hero-brand span{
    font-size: 11px;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--vd-base);
    font-weight: 700;
}

#vident-root .vd-hero-title{
    font-family: "Playfair Display", serif;
    font-size: clamp(54px, 7.2vw, 116px);
    line-height: .93;
    letter-spacing: -.055em;
    font-weight: 400;
    color: var(--vd-ink);
    max-width: 920px;
}

#vident-root .vd-hero-title em{ font-style: italic; color: var(--vd-base); }

#vident-root .vd-hero-copy{
    margin-top: 34px;
    display: grid;
    grid-template-columns: minmax(0, 520px) auto;
    gap: 34px;
    align-items: end;
}

#vident-root .vd-hero-copy p{
    color: var(--vd-muted);
    font-size: 16px;
    line-height: 1.9;
    font-weight: 300;
}

#vident-root .vd-hero-actions{
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 40px;
}

#vident-root .vd-hero-visual{
    position: relative;
    min-height: 660px;
}

#vident-root .vd-hero-photo{
    position: absolute;
    inset: 44px 0 60px 54px;
    border-radius: 42px;
    overflow: hidden;
    box-shadow: var(--vd-shadow);
    clip-path: inset(0 0 0 0 round 42px);
}

#vident-root .vd-hero-photo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

#vident-root .vd-hero-photo::after{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(52,73,94,.42), transparent 55%);
}

#vident-root .vd-hero-glass{
    position: absolute;
    left: 0;
    bottom: 24px;
    width: 310px;
    padding: 22px;
    border-radius: 26px;
    background: rgba(255, 255, 255, .74);
    border: 1px solid rgba(255, 255, 255, .8);
    backdrop-filter: blur(26px);
    box-shadow: 0 24px 60px rgba(52, 73, 94, .14);
}

#vident-root .vd-hero-glass small{
    display: block;
    font-size: 10px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--vd-base);
    font-weight: 800;
    margin-bottom: 10px;
}

#vident-root .vd-hero-glass strong{
    display: block;
    font-size: 18px;
    color: var(--vd-ink);
    line-height: 1.35;
}

#vident-root .vd-hero-glass p{
    color: var(--vd-muted);
    font-size: 13px;
    margin-top: 8px;
}

#vident-root .vd-hero-floating-card{
    position: absolute;
    right: 6px;
    top: 22px;
    width: 250px;
    border-radius: 24px;
    padding: 20px;
    background: rgba(52, 73, 94, .9);
    color: white;
    box-shadow: 0 26px 60px rgba(52, 73, 94, .2);
}

#vident-root .vd-hero-floating-card .vd-num{
    font-family: "Playfair Display", serif;
    font-size: 50px;
    line-height: 1;
    color: var(--vd-gold-2);
}

#vident-root .vd-hero-floating-card span{
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, .76);
    font-size: 13px;
}

#vident-root .vd-hero-mini{
    position: absolute;
    right: 30px;
    bottom: 118px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 999px;
    background: white;
    box-shadow: 0 20px 50px rgba(52, 73, 94, .12);
    border: 1px solid var(--vd-line);
}

#vident-root .vd-hero-mini-dot{
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #35b779;
    box-shadow: 0 0 0 6px rgba(53, 183, 121, .12);
    flex-shrink: 0;
}

#vident-root .vd-hero-mini span{ font-size: 12px; font-weight: 700; color: var(--vd-base); }

/* Hero Stats */
#vident-root .vd-hero-stats{
    position: relative;
    z-index: 2;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

#vident-root .vd-hero-stat{
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .68);
    border: 1px solid rgba(52, 73, 94, .11);
    backdrop-filter: blur(20px);
}

#vident-root .vd-hero-stat b{
    font-family: "Playfair Display", serif;
    display: block;
    font-size: 36px;
    line-height: 1;
    color: var(--vd-base);
    font-weight: 500;
}

#vident-root .vd-hero-stat span{
    display: block;
    margin-top: 8px;
    color: var(--vd-muted);
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 700;
}

@keyframes vd-marquee{ to { transform: translateX(-50%); } }

/* ─── TRUST ─── */
#vident-root .vd-trust{
    padding-top: 70px;
    padding-bottom: 70px;
    background: var(--vd-soft);
}

#vident-root .vd-trust-grid{
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 18px;
}

#vident-root .vd-trust-card{
    border-radius: var(--vd-radius-xl);
    background: white;
    border: 1px solid var(--vd-line);
    box-shadow: 0 24px 70px rgba(52, 73, 94, .08);
    overflow: hidden;
}

#vident-root .vd-trust-main{
    padding: 52px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: end;
}

#vident-root .vd-trust-main h2{
    font-family: "Playfair Display", serif;
    font-size: clamp(28px, 3vw, 44px);
    line-height: 1.1;
    letter-spacing: -.03em;
    font-weight: 400;
}

#vident-root .vd-trust-main h2 em{ color: var(--vd-base); font-style: italic; }

#vident-root .vd-trust-main p{ color: var(--vd-muted); font-size: 15px; line-height: 1.85; }

#vident-root .vd-trust-side{ display: grid; grid-template-columns: 1fr; gap: 18px; }

#vident-root .vd-trust-side-card{
    padding: 34px;
    border-radius: var(--vd-radius-xl);
    background: linear-gradient(135deg, #fff, #eef3f5);
    border: 1px solid var(--vd-line);
}

#vident-root .vd-trust-side-card:nth-child(2){
    background: linear-gradient(135deg, var(--vd-base), var(--vd-base-2));
    color: white;
}

#vident-root .vd-trust-side-card small{
    display: block;
    color: var(--vd-base);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .24em;
    font-weight: 800;
    margin-bottom: 16px;
}

#vident-root .vd-trust-side-card:nth-child(2) small{ color: var(--vd-gold-2); }

#vident-root .vd-trust-side-card strong{ display: block; font-size: 22px; line-height: 1.3; }

#vident-root .vd-trust-side-card p{ color: var(--vd-muted); font-size: 14px; margin-top: 10px; }

#vident-root .vd-trust-side-card:nth-child(2) p{ color: rgba(255, 255, 255, .66); }

/* ─── WHY VIDENT ─── */
#vident-root .vd-why{
    background:
     radial-gradient(circle at 90% 10%, rgba(199,164,106,.13), transparent 28%),
     var(--vd-cream);
}

#vident-root .vd-why-grid{
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: 86px;
    align-items: start;
}

/* WHY sticky - left side (the quote+image block) */
#vident-root .vd-why-sticky{
    position: sticky;
    top: 80px;
    align-self: start;
}

#vident-root .vd-why-image{
    border-radius: var(--vd-radius-xl);
    overflow: hidden;
    box-shadow: var(--vd-shadow);
    height: 600px;
}

#vident-root .vd-why-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

#vident-root .vd-why-note{
    margin-top: -96px;
    margin-left: 32px;
    margin-right: 32px;
    position: relative;
    z-index: 2;
    padding: 26px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .76);
    border: 1px solid rgba(255, 255, 255, .88);
    backdrop-filter: blur(24px);
    box-shadow: 0 28px 70px rgba(52, 73, 94, .14);
}

#vident-root .vd-why-note p{
    font-family: "Playfair Display", serif;
    font-style: italic;
    font-size: 20px;
    line-height: 1.45;
    color: var(--vd-ink);
}

#vident-root .vd-why-note strong{
    display: block;
    margin-top: 16px;
    font-size: 13px;
    color: var(--vd-base);
}

#vident-root .vd-why-list{ margin-top: 40px; display: grid; gap: 14px; }

#vident-root .vd-why-item{
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 22px;
    padding: 30px;
    border-radius: 26px;
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(52, 73, 94, .1);
    backdrop-filter: blur(18px);
 transition: transform .35s var(--vd-ease), box-shadow .35s var(--vd-ease), border-color .35s var(--vd-ease);
}

#vident-root .vd-why-item:hover{
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(52, 73, 94, .1);
    border-color: rgba(52, 73, 94, .18);
}

#vident-root .vd-why-num{
    font-family: "Playfair Display", serif;
    color: var(--vd-base);
    font-size: 42px;
    line-height: 1;
}

#vident-root .vd-why-item h3{ font-size: 19px; color: var(--vd-ink); margin-bottom: 8px; }

#vident-root .vd-why-item p{ color: var(--vd-muted); font-size: 14.5px; font-weight: 300; }

/* ─── TECHNOLOGY ─── */
#vident-root .vd-tech{ background: var(--vd-soft); }

#vident-root .vd-tech-bento{
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 18px;
}

#vident-root .vd-tech-card{
    position: relative;
    min-height: 270px;
    padding: 36px;
    border-radius: var(--vd-radius-xl);
    background: white;
    border: 1px solid var(--vd-line);
    box-shadow: 0 26px 70px rgba(52, 73, 94, .07);
    overflow: hidden;
    transition: transform .35s var(--vd-ease), box-shadow .35s var(--vd-ease);
}

#vident-root .vd-tech-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 34px 90px rgba(52, 73, 94, .12);
}

#vident-root .vd-tech-card::after{
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    right: -90px;
    bottom: -120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(52,73,94,.12), transparent 70%);
    pointer-events: none;
}

#vident-root .vd-tech-card.vd-large{ grid-column: span 5; }

#vident-root .vd-tech-card.vd-mid{ grid-column: span 4; }

/* FIX: vd-small breidt uit naar span 3 zodat hij gelijk is aan vd-mid boven */
#vident-root .vd-tech-card.vd-small{ grid-column: span 3; }

#vident-root .vd-tech-card.vd-wide{
    grid-column: span 7;
    background: linear-gradient(135deg, var(--vd-base), var(--vd-base-2));
    color: white;
}

/* FIX: Endodontie kaart - span 5 zodat het gelijk is met vd-large erboven */
#vident-root .vd-tech-card.vd-small:last-child{
    grid-column: span 5;
}

#vident-root .vd-tech-card.vd-wide p,
#vident-root .vd-tech-card.vd-wide .vd-tech-label{ color: rgba(255, 255, 255, .68); }

#vident-root .vd-tech-icon{
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: rgba(52, 73, 94, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
    color: var(--vd-base);
}

#vident-root .vd-tech-card.vd-wide .vd-tech-icon{
    background: rgba(255, 255, 255, .12);
    color: var(--vd-gold-2);
}

#vident-root .vd-tech-icon svg{ width: 25px; height: 25px; }

#vident-root .vd-tech-label{
    display: block;
    font-size: 10px;
    letter-spacing: .26em;
    text-transform: uppercase;
    color: var(--vd-base);
    font-weight: 800;
    margin-bottom: 12px;
}

#vident-root .vd-tech-card h3{ font-size: 22px; line-height: 1.25; margin-bottom: 14px; }

#vident-root .vd-tech-card p{ color: var(--vd-muted); font-size: 14px; font-weight: 300; max-width:
520px; }

#vident-root .vd-tech-pill{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(199, 164, 106, .13);
    color: var(--vd-base);
    font-size: 10px;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-weight: 800;
}

#vident-root .vd-tech-card.vd-wide .vd-tech-pill{
    background: rgba(255, 255, 255, .12);
    color: var(--vd-gold-2);
}

/* ─── SERVICES ─── */
#vident-root .vd-services{
    background: linear-gradient(180deg, var(--vd-soft), #ffffff 100%);
    padding-top: 60px;
}

#vident-root .vd-services-bento{
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 18px;
}

#vident-root .vd-service-card{
    position: relative;
    min-height: 280px;
    padding: 34px;
    border-radius: var(--vd-radius-xl);
    background: white;
    border: 1px solid var(--vd-line);
    box-shadow: 0 26px 76px rgba(52, 73, 94, .07);
    overflow: hidden;
 transition: transform .35s var(--vd-ease), box-shadow .35s var(--vd-ease), border-color .35s var(--vd-ease);
    opacity: 1;
}

#vident-root .vd-service-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 34px 95px rgba(52, 73, 94, .13);
    border-color: rgba(52, 73, 94, .2);
}

#vident-root .vd-service-card.vd-featured{
    grid-column: span 4;
    min-height: 390px;
    background: linear-gradient(145deg, var(--vd-base), #496982);
    color: white;
}

#vident-root .vd-service-card.vd-standard{ grid-column: span 4; }

#vident-root .vd-service-card.vd-compact{ grid-column: span 4; }

#vident-root .vd-service-card.vd-half{ grid-column: span 6; }

#vident-root .vd-service-card::before{
    content: "";
    position: absolute;
    inset: auto -80px -100px auto;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(199,164,106,.16), transparent 70%);
    pointer-events: none;
}

#vident-root .vd-service-top{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    position: relative;
    z-index: 1;
}

#vident-root .vd-service-no{
    color: var(--vd-base);
    font-size: 11px;
    letter-spacing: .25em;
    text-transform: uppercase;
    font-weight: 800;
}

#vident-root .vd-service-card.vd-featured .vd-service-no{ color: var(--vd-gold-2); }

#vident-root .vd-service-arrow{
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--vd-line);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vd-base);
    transition: background .35s var(--vd-ease), color .35s var(--vd-ease), transform .35s var(--vd-ease);
    flex-shrink: 0;
}

#vident-root .vd-service-card.vd-featured .vd-service-arrow{
    border-color: rgba(255, 255, 255, .22);
    color: white;
}

#vident-root .vd-service-card:hover .vd-service-arrow{
    background: var(--vd-base);
    color: white;
    transform: rotate(-12deg);
}

#vident-root .vd-service-card.vd-featured:hover .vd-service-arrow{
    background: white;
    color: var(--vd-base);
}

#vident-root .vd-service-card h3{
    position: relative;
    z-index: 1;
    margin-top: 8px;
    font-family: "Playfair Display", serif;
    font-size: clamp(27px, 2.4vw, 38px);
    line-height: 1.08;
    font-weight: 500;
    letter-spacing: -.03em;
}

#vident-root .vd-service-card p{
    position: relative;
    z-index: 1;
    margin-top: 18px;
    color: var(--vd-muted);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.75;
}

#vident-root .vd-service-card.vd-featured p{ color: rgba(255, 255, 255, .72); }

#vident-root .vd-service-price{
    position: absolute;
    left: 34px;
    bottom: 30px;
    color: var(--vd-base);
    font-size: 13px;
    font-weight: 800;
    z-index: 1;
}

#vident-root .vd-service-card.vd-featured .vd-service-price{ color: var(--vd-gold-2); }

#vident-root .vd-service-card-link{ position: absolute; inset: 0; z-index: 2; }

/* ─── GALLERY ─── */
#vident-root .vd-gallery{
    background: var(--vd-cream);
    overflow: hidden;
}

/* Real bento grid, not masonry: 3 columns with a fixed row height, so there is no empty gap. */
#vident-root .vd-gallery-bento{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 270px;
    gap: 16px;
}

#vident-root .vd-gallery-item{
    position: relative;
    border-radius: var(--vd-radius-xl);
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(52, 73, 94, .10);
    background: var(--vd-mist);
}

/* Clean crop instead of contain: the image always fills its cell completely. */
#vident-root .vd-gallery-item img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
    transition: transform .9s var(--vd-ease);
}

#vident-root .vd-gallery-item:hover img{ transform: scale(1.05); }

#vident-root .vd-gallery-item.vd-big{ grid-row: span 2; }

#vident-root .vd-gallery-item.vd-wide{ grid-column: span 2; }

#vident-root .vd-gallery-overlay{
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 26px;
    background: linear-gradient(to top, rgba(52,73,94,.75), transparent 55%);
    opacity: 0;
    transition: opacity .35s var(--vd-ease);
}

#vident-root .vd-gallery-item:hover .vd-gallery-overlay,
#vident-root .vd-gallery-item:focus-within .vd-gallery-overlay{ opacity: 1; }

#vident-root .vd-gallery-overlay small{
    color: var(--vd-gold-2);
    font-size: 10px;
    letter-spacing: .24em;
    text-transform: uppercase;
    font-weight: 800;
}

#vident-root .vd-gallery-overlay strong{ color: white; margin-top: 8px; font-size: 19px; }

/* Thumbnail strip: fixed height plus cover, no more letterboxing. */
#vident-root .vd-gallery-strip{
    margin-top: 16px;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 4px;
    flex-wrap: nowrap;
}

#vident-root .vd-gallery-strip::-webkit-scrollbar{ display: none; }

#vident-root .vd-gallery-thumb{
    flex: 0 0 auto;
    width: 220px;
    height: 150px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(52, 73, 94, .12);
    background: var(--vd-mist);
}

#vident-root .vd-gallery-thumb img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
}

/* ─── TEAM ─── */
#vident-root .vd-team{ background: var(--vd-soft); }

#vident-root .vd-team-layout{
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: 22px;
}

/* STICKY team feature (Dr. Viktor) - blijft in de sectie */
#vident-root .vd-team-feature{
    position: sticky;
    top: 80px;
    align-self: start;
    border-radius: var(--vd-radius-xl);
    overflow: hidden;
    background: var(--vd-base);
    min-height: 720px;
    box-shadow: 0 32px 90px rgba(52, 73, 94, .16);
}

#vident-root .vd-team-feature img{
    width: 100%;
    height: 100%;
    min-height: 720px;
    object-fit: cover;
    object-position: center top;
    opacity: .92;
}

#vident-root .vd-team-feature-info{
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    padding: 26px;
    border-radius: 26px;
    background: rgba(255, 255, 255, .76);
    border: 1px solid rgba(255, 255, 255, .78);
    backdrop-filter: blur(26px);
}

#vident-root .vd-team-feature-info small{
    color: var(--vd-base);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .24em;
    font-weight: 800;
}

#vident-root .vd-team-feature-info h3{
    font-family: "Playfair Display", serif;
    font-size: 34px;
    line-height: 1.1;
    margin-top: 10px;
}

#vident-root .vd-team-feature-info p{ color: var(--vd-muted); font-size: 14px; margin-top: 10px; }

#vident-root .vd-team-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

#vident-root .vd-team-card{
    border-radius: var(--vd-radius-xl);
    overflow: hidden;
    background: white;
    border: 1px solid var(--vd-line);
    box-shadow: 0 26px 70px rgba(52, 73, 94, .07);
    transition: transform .35s var(--vd-ease), box-shadow .35s var(--vd-ease);
}

#vident-root .vd-team-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 32px 90px rgba(52, 73, 94, .12);
}

#vident-root .vd-team-card img{
    width: 100%;
    aspect-ratio: 4/4.35;
    object-fit: cover;
    object-position: center top;
}

#vident-root .vd-team-card-info{ padding: 22px; }

#vident-root .vd-team-card-info h3{ font-size: 17px; line-height: 1.25; }

#vident-root .vd-team-card-info p{ margin-top: 6px; color: var(--vd-muted); font-size: 13px; }

/* ─── REVIEWS ─── */
#vident-root .vd-reviews{ background: white; overflow: hidden; }

#vident-root .vd-review-grid{
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 18px;
    margin-bottom: 34px;
}

#vident-root .vd-review-feature{
    padding: 44px;
    border-radius: var(--vd-radius-xl);
    background: linear-gradient(135deg, var(--vd-base), #506f86);
    color: white;
    box-shadow: 0 32px 90px rgba(52, 73, 94, .16);
}

#vident-root .vd-review-stars{ color: var(--vd-gold-2); letter-spacing: 3px; margin-bottom: 26px; }

#vident-root .vd-review-feature blockquote{
    font-family: "Playfair Display", serif;
    font-size: clamp(30px, 3.5vw, 54px);
    line-height: 1.12;
    letter-spacing: -.03em;
}

#vident-root .vd-review-feature p{ color: rgba(255, 255, 255, .72); margin-top: 24px; max-width: 600px;
}

#vident-root .vd-review-side{ display: grid; gap: 18px; }

#vident-root .vd-review-card{
    padding: 30px;
    border-radius: var(--vd-radius-xl);
    background: var(--vd-soft);
    border: 1px solid var(--vd-line);
}

#vident-root .vd-review-card-top{ display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }

#vident-root .vd-review-avatar{
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--vd-base);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    flex-shrink: 0;
}

#vident-root .vd-review-card h4{ font-size: 15px; }

#vident-root .vd-review-card span{ font-size: 12px; color: var(--vd-muted); }

#vident-root .vd-review-card p{ color: var(--vd-muted); font-size: 14px; }

#vident-root .vd-review-marquee{ overflow: hidden; margin-top: 32px; }

#vident-root .vd-review-marquee-track{
    display: flex;
    gap: 14px;
    width: max-content;
    animation: vd-marquee 42s linear infinite;
}

#vident-root .vd-review-pill{
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 20px;
    border-radius: 999px;
    background: var(--vd-soft);
    border: 1px solid var(--vd-line);
    white-space: nowrap;
    color: var(--vd-base);
    font-size: 13px;
    font-weight: 700;
}

#vident-root .vd-review-pill small{ color: var(--vd-gold); }

/* ─── FAQ ─── */
#vident-root .vd-faq{ background: var(--vd-cream); }

#vident-root .vd-faq-grid{
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 90px;
    align-items: start;
}

#vident-root .vd-faq-left{ position: sticky; top: 90px; }

#vident-root .vd-faq-list{ border-top: 1px solid var(--vd-line); }

#vident-root .vd-faq-item{ border-bottom: 1px solid var(--vd-line); }

#vident-root .vd-faq-q{
    width: 100%;
    background: transparent;
    border: none;
    padding: 28px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: var(--vd-ink);
    text-align: left;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
}

#vident-root .vd-faq-a p{ color: var(--vd-muted); font-size: 15px; padding: 0 56px 28px 0; }

/* ─── CONTACT ─── */
#vident-root .vd-contact{
    padding: 80px 72px 100px;
    background:
     radial-gradient(circle at 20% 20%, rgba(199,164,106,.17), transparent 30%),
     linear-gradient(135deg, #edf3f5, #f7f3ec);
    position: relative;
    overflow: hidden;
}

#vident-root .vd-contact-shell{
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 28px;
    align-items: stretch;
}

#vident-root .vd-contact-main{
    padding: 64px;
    border-radius: 42px;
    background: var(--vd-base);
    color: white;
    overflow: hidden;
    position: relative;
}

#vident-root .vd-contact-main::after{
    content: "";
    position: absolute;
    right: -120px;
    top: -120px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,.15), transparent 65%);
    pointer-events: none;
}

#vident-root .vd-contact-main small{
    position: relative;
    z-index: 1;
    display: block;
    color: var(--vd-gold-2);
    font-size: 11px;
    letter-spacing: .28em;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 22px;
}

#vident-root .vd-contact-main h2{
    position: relative;
    z-index: 1;
    font-family: "Playfair Display", serif;
    font-size: clamp(42px, 5vw, 84px);
    line-height: .98;
    letter-spacing: -.05em;
    font-weight: 400;
    max-width: 760px;
}

#vident-root .vd-contact-main h2 em{ font-style: italic; color: var(--vd-gold-2); }

#vident-root .vd-contact-main p{
    position: relative;
    z-index: 1;
    max-width: 560px;
    margin-top: 26px;
    color: rgba(255, 255, 255, .72);
    font-weight: 300;
}

#vident-root .vd-contact-actions{
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 38px;
}

#vident-root .vd-contact-card{
    padding: 34px;
    border-radius: 42px;
    background: rgba(255, 255, 255, .78);
    border: 1px solid rgba(255, 255, 255, .86);
    backdrop-filter: blur(26px);
    box-shadow: 0 32px 90px rgba(52, 73, 94, .14);
}

#vident-root .vd-contact-card h3{
    font-family: "Playfair Display", serif;
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 24px;
    color: var(--vd-ink);
}

#vident-root .vd-contact-info{ display: grid; gap: 16px; }

#vident-root .vd-contact-row{
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .66);
    border: 1px solid rgba(52, 73, 94, .08);
}

#vident-root .vd-contact-icon{
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border-radius: 14px;
    background: rgba(52, 73, 94, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vd-base);
}

#vident-root .vd-contact-row small{
    display: block;
    color: var(--vd-muted);
    font-size: 10px;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-weight: 800;
}

#vident-root .vd-contact-row strong{
    display: block;
    margin-top: 4px;
    font-size: 14px;
    color: var(--vd-ink);
    line-height: 1.45;
}

#vident-root .vd-contact-note{
    margin-top: 22px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(199, 164, 106, .12);
    color: #7a6135;
    font-size: 13px;
    line-height: 1.7;
}

@media (max-width: 1180px) {
#vident-root .vd-gallery-bento{ grid-template-columns: 1fr 1fr; }
#vident-root .vd-gallery-item.vd-wide{ grid-column: span 2; }
#vident-root .vd-gallery-item.vd-big{ grid-row: span 2; }
#vident-root .vd-gallery-item:last-child{ grid-column: span 2; }
/* Two columns: fill the trailing empty cell in the layout. */
    #vident-root .vd-hero-grid,
    #vident-root .vd-trust-grid,
    #vident-root .vd-why-grid,
    #vident-root .vd-team-layout,
    #vident-root .vd-review-grid,
    #vident-root .vd-faq-grid,
    #vident-root .vd-contact-shell{ grid-template-columns: 1fr; }
#vident-root .vd-hero-visual{ min-height: 560px; }
#vident-root .vd-hero-stats{ grid-template-columns: repeat(2, 1fr); }
#vident-root .vd-trust-main{ grid-template-columns: 1fr; }
#vident-root .vd-why-sticky,
    #vident-root .vd-faq-left{ position: relative; top: auto; }
#vident-root .vd-team-feature{ position: relative; top: auto; }
#vident-root .vd-tech-card.vd-large,
    #vident-root .vd-tech-card.vd-mid,
    #vident-root .vd-tech-card.vd-small,
    #vident-root .vd-tech-card.vd-wide,
    #vident-root .vd-service-card.vd-featured,
    #vident-root .vd-service-card.vd-standard,
    #vident-root .vd-service-card.vd-compact,
    #vident-root .vd-service-card.vd-half{ grid-column: span 6; }
#vident-root .vd-tech-card.vd-small:last-child{ grid-column: span 6; }
#vident-root .vd-gallery-bento{ grid-template-columns: 1fr 1fr; }
#vident-root .vd-gallery-item.vd-wide{ grid-column: span 2; }
#vident-root .vd-section{ padding: 60px 48px; }
}

@media (max-width: 900px) {
#vident-root .vd-hero{ padding: 32px 40px 32px; }
#vident-root .vd-hero-title{ font-size: clamp(44px, 9vw, 80px); }
#vident-root .vd-team-feature,
    #vident-root .vd-team-feature img{ min-height: 520px; }
#vident-root .vd-hero-liquid{ display: none; }
}

@media (max-width: 760px) {
#vident-root .vd-gallery-bento{ grid-template-columns: 1fr; grid-auto-rows: auto; }
#vident-root .vd-gallery-item{ aspect-ratio: 4/3; }
#vident-root .vd-section,
    #vident-root .vd-hero,
    #vident-root .vd-contact{ padding-left: 0px; padding-right: 0px; }
#vident-root .vd-section{ padding-top: 60px; padding-bottom: 60px; }
#vident-root .vd-hero{ padding-top: 36px; }
#vident-root .vd-hero-title{ font-size: 44px; }
#vident-root .vd-hero-copy{ grid-template-columns: 1fr; }
#vident-root .vd-hero-actions .vd-btn{ width: 100%; }
#vident-root .vd-hero-visual{ min-height: 500px; }
#vident-root .vd-hero-photo{ inset: 30px 0 70px 0; }
#vident-root .vd-hero-floating-card{ right: 0; width: 200px; padding: 14px; }
#vident-root .vd-hero-floating-card .vd-num{ font-size: 36px; }
#vident-root .vd-hero-glass{ width: calc(100% - 220px); min-width: 160px; }
#vident-root .vd-hero-mini{ right: 0; bottom: 80px; }
#vident-root .vd-hero-stats{ grid-template-columns: repeat(2, 1fr); }
#vident-root .vd-trust-main{ padding: 32px; }
#vident-root .vd-section-head{ flex-direction: column; align-items: flex-start; }
#vident-root .vd-tech-bento,
#vident-root .vd-services-bento{ grid-template-columns: 1fr; }
#vident-root .vd-tech-card.vd-large,
#vident-root .vd-tech-card.vd-mid,
#vident-root .vd-tech-card.vd-small,
#vident-root .vd-tech-card.vd-wide,
#vident-root .vd-tech-card.vd-small:last-child,
#vident-root .vd-service-card.vd-featured,
#vident-root .vd-service-card.vd-standard,
#vident-root .vd-service-card.vd-compact,
#vident-root .vd-service-card.vd-half{ grid-column: span 1; }
#vident-root .vd-gallery-bento{ grid-template-columns: 1fr; }
#vident-root .vd-gallery-item.vd-big,
#vident-root .vd-gallery-item.vd-wide{ grid-column: auto; grid-row: auto; }
#vident-root .vd-team-grid{ grid-template-columns: 1fr; }
#vident-root .vd-contact-main,
    #vident-root .vd-contact-card{ padding: 26px; border-radius: 28px; }
#vident-root .vd-why-note{ margin-left: 12px; margin-right: 12px; margin-top: -60px; }
#vident-root .vd-why-image{ height: 380px; }
}

@media (max-width: 480px) {
#vident-root .vd-hero-title{ font-size: 36px; }
#vident-root .vd-section-title{ font-size: 32px; }
#vident-root .vd-hero-stats{ grid-template-columns: 1fr; }
#vident-root .vd-hero-floating-card{ display: none; }
#vident-root .vd-hero-glass{ width: calc(100% - 20px); left: 10px; bottom: 10px; }
#vident-root .vd-hero-mini{ display: none; }
}

@media (max-width: 900px) {
#vident-root .vd-hero-content{
        text-align: center;
    }
#vident-root .vd-hero-brand{
        margin-left: auto;
        margin-right: auto;
    }
#vident-root .vd-hero-title{
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
#vident-root .vd-hero-copy{
        grid-template-columns: 1fr;
        justify-items: center;
    }
#vident-root .vd-hero-copy p{
        text-align: center;
    }
#vident-root .vd-hero-actions{
        justify-content: center;
    }
}