/*
Theme Name: Bij Voorkeur
Author: Awat
Description: Made by welday.nl
Version: 1.0
*/

/* Tailwind + fonts worden via functions.php ingeladen. */

/**
 * Globale contrast-fixes — WCAG AA (4.5:1 minimum)
 *
 * Oranje (#F38500) op wit (#fff) haalt slechts ~3.7:1.
 * Donkerder oranje (#904D00) op wit = ~8.3:1 → PASS.
 * Wordt gebruikt overal waar oranje TEKST op lichte achtergrond staat.
 */
.bv-btn-surface,
.bv-service-link {
    color: #904D00 !important;
}
.bv-btn-surface:hover {
    color: #904D00 !important;
    background: #F6F3F2 !important;
}

/**
 * Footer sub-tekst: rgba(.5) op donker = ~3.5:1, niet genoeg.
 * Al gefixed inline; deze regel zorgt voor consistentie als de
 * inline stijl ooit overschreven wordt.
 */
.bv-footer-bottom,
.bv-footer-bottom a {
    color: #A8A5A3;
}

/**
 * Voorkomen dat body-padding op desktop zichtbaar is
 * (sticky CTA is mobile-only via media query in footer.php)
 */
@media (min-width: 769px) {
    body { padding-bottom: 0 !important; }
}

/* ════════════════════════════════════════════════════════════
   UI/UX POLISH — Typografie · Spacing · Interactie · Mobile
   ════════════════════════════════════════════════════════════ */

/* ── Design tokens ───────────────────────────────────────── */
:root {
    --bv-radius-sm:   6px;
    --bv-radius-md:  10px;
    --bv-radius-lg:  12px;
    --bv-shadow-sm:  0 1px 3px rgba(0,0,0,.05), 0 1px 2px rgba(0,0,0,.04);
    --bv-shadow-md:  0 4px 16px rgba(52,107,0,.08), 0 2px 4px rgba(0,0,0,.04);
    --bv-shadow-lg:  0 12px 40px rgba(52,107,0,.14), 0 4px 8px rgba(0,0,0,.05);
    --bv-ease:       cubic-bezier(.4,0,.2,1);
    --bv-dur:        .18s;
}

/* ── Typografie schaal ───────────────────────────────────── */
/* Display / H1: 3.5rem, lh 1.1, ls -0.025em */
.bv-hero h1 {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    line-height: 1.1;
    letter-spacing: -0.025em;
}

/* Section headings / H2: 2.5rem, lh 1.2, ls -0.02em */
.bv-s h2,
.bv-cta-banner h2 {
    font-size: clamp(1.625rem, 3vw, 2.5rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

/* Body copy: lh 1.65, max 65ch */
.bv-s p,
.bv-hero-sub p,
.bv-why-item p,
.bv-service-card p,
.bv-review-quote,
.bv-cta-banner p {
    line-height: 1.65;
    max-width: 65ch;
}

/* Centered copy blocks uitlijnen */
.bv-s-head p,
.bv-cta-banner p {
    margin-left: auto;
    margin-right: auto;
}

/* ── Spacing & ritme (8rem desktop · 4rem mobiel) ────────── */
.bv-s         { padding: 128px 0; }
.bv-cta-banner { padding: 112px 0; }

@media (max-width: 1024px) {
    .bv-s         { padding: 96px 0; }
    .bv-cta-banner { padding: 96px 0; }
}
@media (max-width: 768px) {
    .bv-s         { padding: 64px 0; }
    .bv-cta-banner { padding: 64px 0; }
}
@media (max-width: 480px) {
    .bv-s         { padding: 48px 0; }
    .bv-cta-banner { padding: 48px 0; }
}

/* Witruimte rondom CTA-groepen */
.bv-hero-btns  { margin-bottom: 48px; }
.bv-cta-banner-btns { gap: 16px; }

/* ── Buttons — hover · active · focus ───────────────────── */
.bv-btn {
    transition:
        background  var(--bv-dur) var(--bv-ease),
        color       var(--bv-dur) var(--bv-ease),
        transform   var(--bv-dur) var(--bv-ease),
        box-shadow  var(--bv-dur) var(--bv-ease),
        border-color var(--bv-dur) var(--bv-ease);
    min-height: 44px; /* touch target a11y */
}
.bv-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(0,0,0,.14);
}
.bv-btn:active {
    transform: scale(0.98);
    box-shadow: none;
    transition-duration: .08s;
}
.bv-btn:focus-visible {
    outline: 3px solid var(--primary, #346B00);
    outline-offset: 3px;
    box-shadow: none;
}
.bv-btn-outline:focus-visible { outline-color: rgba(255,255,255,.8); }
.bv-btn-primary:focus-visible { outline-color: var(--primary, #346B00); }
.bv-btn-green:focus-visible   { outline-color: var(--primary, #346B00); }
.bv-btn-surface:focus-visible { outline-color: var(--primary, #346B00); }

/* Header CTA-knop */
.bv-cta-btn {
    min-height: 40px;
    transition: background var(--bv-dur) var(--bv-ease), transform var(--bv-dur) var(--bv-ease);
}
.bv-cta-btn:hover    { transform: translateY(-1px); }
.bv-cta-btn:active   { transform: scale(0.98); }
.bv-cta-btn:focus-visible {
    outline: 3px solid var(--tertiary, #F38500);
    outline-offset: 3px;
}

/* ── Service cards ───────────────────────────────────────── */
.bv-service-card {
    transition:
        box-shadow   var(--bv-dur) var(--bv-ease),
        border-color var(--bv-dur) var(--bv-ease),
        transform    var(--bv-dur) var(--bv-ease);
    border-radius: var(--bv-radius-md);
}
.bv-service-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--bv-shadow-lg);
    border-color: var(--primary-light, #69B42D);
}

/* ── Review cards ────────────────────────────────────────── */
.bv-review-card {
    transition:
        box-shadow var(--bv-dur) var(--bv-ease),
        transform  var(--bv-dur) var(--bv-ease);
    border-radius: var(--bv-radius-md);
}
.bv-review-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0,0,0,.08);
}

/* ── Sector pills ────────────────────────────────────────── */
.bv-sector-pill {
    transition:
        border-color var(--bv-dur) var(--bv-ease),
        background   var(--bv-dur) var(--bv-ease),
        transform    var(--bv-dur) var(--bv-ease);
}
.bv-sector-pill:hover { transform: translateY(-1px); }

/* ── Highlight blokken ───────────────────────────────────── */
.bv-highlight {
    transition: background var(--bv-dur) var(--bv-ease);
}
.bv-highlight:hover { background: #FAFEF5; }

/* ── Service links a11y ──────────────────────────────────── */
.bv-service-link:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 2px;
    border-radius: 3px;
}

/* ── Nav links a11y ──────────────────────────────────────── */
.bv-nav-link:focus-visible,
.bv-dropdown-btn:focus-visible,
.bv-dropdown-menu a:focus-visible {
    outline: 2px solid var(--primary, #346B00);
    outline-offset: 2px;
    border-radius: 4px;
}

/* ── Mobile: overlay met backdrop-blur ───────────────────── */
.bv-mobile-overlay {
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    background: rgba(0,0,0,.42);
    transition: opacity .25s var(--bv-ease);
}

/* Mobile panel schaduw */
.bv-mobile-panel {
    box-shadow: -8px 0 40px rgba(0,0,0,.18);
}

/* Mobile touch targets */
.bv-mobile-nav a,
.bv-mobile-accordion-btn { min-height: 44px; }

/* ── Footer social links touch targets ───────────────────── */
.bv-footer-social a {
    min-width: 40px;
    min-height: 40px;
    transition:
        color        var(--bv-dur) var(--bv-ease),
        border-color var(--bv-dur) var(--bv-ease),
        transform    var(--bv-dur) var(--bv-ease);
}
.bv-footer-social a:hover { transform: translateY(-1px); }

/* ── Contact form: focus · error · success ───────────────── */
.bv-field input,
.bv-field select,
.bv-field textarea {
    transition:
        border-color var(--bv-dur) var(--bv-ease),
        box-shadow   var(--bv-dur) var(--bv-ease);
}
.bv-field input:focus-visible,
.bv-field textarea:focus-visible {
    outline: none;
    border-color: var(--primary, #346B00);
    box-shadow: 0 0 0 3px rgba(52,107,0,.12);
}

/* Error state: border + hulptekst */
.bv-field.is-error input,
.bv-field.is-error textarea {
    border-color: #D32F2F;
    box-shadow: 0 0 0 3px rgba(211,47,47,.08);
}
.bv-field-error-msg {
    display: none;
    font-size: 12px;
    color: #D32F2F;
    margin-top: 4px;
}
.bv-field.is-error .bv-field-error-msg { display: block; }

/* Success notice */
.bv-form-success {
    background: #EEFAD8;
    border: 1.5px solid var(--primary-light, #69B42D);
    border-radius: var(--bv-radius-md);
    padding: 16px 20px;
    font-size: 14px;
    color: var(--primary, #346B00);
    font-weight: 500;
}

/* Submit button focus */
.bv-submit:focus-visible {
    outline: 3px solid var(--primary, #346B00);
    outline-offset: 3px;
}
.bv-submit:active {
    transform: scale(0.98);
    transition-duration: .08s;
}

/* ── 360px check: container min-padding ──────────────────── */
@media (max-width: 360px) {
    .bv-c { padding: 0 16px; }
    .bv-hero h1 { font-size: 1.75rem; }
    .bv-hero-btns { flex-direction: column; }
}

/* ════════════════════════════════════════════════════════════
   COMPONENT LIBRARY — 21st.dev-patronen voor BijVoorkeur
   Bruikbaar op alle pagina's via klasse-namen.
   ════════════════════════════════════════════════════════════ */

/* ── 1. HERO PATROON-OVERLAY ─────────────────────────────── */
.bv-page-hero,
.bv-hero,
.bv-cta-banner {
    position: relative;
    overflow: hidden;
}
.bv-page-hero::after,
.bv-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,.055) 1px, transparent 1px);
    background-size: 22px 22px;
    pointer-events: none;
    z-index: 0;
}
.bv-page-hero > *,
.bv-hero > * { position: relative; z-index: 1; }

/* ── 2. BREADCRUMB ───────────────────────────────────────── */
.bv-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 13px;
    margin-bottom: 20px;
    color: rgba(255,255,255,.55);
}
.bv-breadcrumb a {
    color: rgba(255,255,255,.55);
    text-decoration: none;
    transition: color var(--bv-dur) var(--bv-ease);
}
.bv-breadcrumb a:hover { color: rgba(255,255,255,.9); }
.bv-breadcrumb-sep { color: rgba(255,255,255,.3); }

/* ── 3. EYEBROW / OVERLINE ───────────────────────────────── */
.bv-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--primary, #346B00);
    margin-bottom: 10px;
}
.bv-eyebrow-light {
    color: rgba(255,255,255,.7);
}

/* ── 4. SECTION HEADER (centered) ───────────────────────── */
.bv-sh {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 56px;
}
.bv-sh h2 {
    font-family: var(--font-headline, 'Space Grotesk', sans-serif);
    font-size: clamp(1.625rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #1B1C1C;
    margin-bottom: 14px;
    line-height: 1.2;
    letter-spacing: -.02em;
}
.bv-sh p {
    font-size: 16px;
    color: #414938;
    line-height: 1.65;
    margin: 0;
}

/* ── 5. TRUST BADGES (hero) ──────────────────────────────── */
.bv-trust-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,.14);
}
.bv-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 99px;
    padding: 6px 14px 6px 10px;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,.92);
    letter-spacing: .02em;
    white-space: nowrap;
}
.bv-trust-badge svg { color: #69B42D; flex-shrink: 0; }

/* ── 6. STATS BAR ────────────────────────────────────────── */
.bv-stats-surface {
    background: var(--primary, #346B00);
    padding: 0;
}
.bv-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.bv-stat-cell {
    padding: 36px 24px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,.12);
}
.bv-stat-cell:last-child { border-right: none; }
.bv-stat-num {
    font-family: var(--font-headline, 'Space Grotesk', sans-serif);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 700;
    color: #fff;
    line-height: 1;
    letter-spacing: -.03em;
    display: block;
}
.bv-stat-label {
    font-size: 13px;
    color: rgba(255,255,255,.68);
    margin-top: 6px;
    line-height: 1.4;
    display: block;
}

/* ── 7. VERTICAL TIMELINE ────────────────────────────────── */
.bv-timeline {
    display: flex;
    flex-direction: column;
    max-width: 640px;
    margin: 0 auto;
    position: relative;
}
.bv-timeline::before {
    content: '';
    position: absolute;
    left: 23px;
    top: 48px;
    bottom: 16px;
    width: 2px;
    background: linear-gradient(to bottom, #346B00 0%, #69B42D 60%, rgba(52,107,0,.08) 100%);
    border-radius: 2px;
    z-index: 0;
}
.bv-tl-step {
    display: flex;
    gap: 24px;
    padding-bottom: 36px;
    position: relative;
}
.bv-tl-step:last-child { padding-bottom: 0; }
.bv-tl-num {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--primary, #346B00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    font-family: var(--font-headline, 'Space Grotesk', sans-serif);
    position: relative;
    z-index: 1;
    box-shadow: 0 0 0 5px #EEFAD8;
    flex-shrink: 0;
}
.bv-tl-body {
    padding-top: 10px;
    flex: 1;
}
.bv-tl-body h3 {
    font-family: var(--font-headline, 'Space Grotesk', sans-serif);
    font-size: 17px;
    font-weight: 600;
    color: #1B1C1C;
    margin-bottom: 6px;
    line-height: 1.3;
}
.bv-tl-body p {
    font-size: 14px;
    color: #414938;
    line-height: 1.65;
    margin: 0;
}

/* ── 8. BENTO GRID ───────────────────────────────────────── */
.bv-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.bv-bento-card {
    background: #fff;
    border: 1px solid #E8E5E3;
    border-radius: 14px;
    padding: 28px;
    transition: box-shadow var(--bv-dur) var(--bv-ease), transform var(--bv-dur) var(--bv-ease);
}
.bv-bento-card:hover {
    box-shadow: 0 8px 32px rgba(52,107,0,.1);
    transform: translateY(-2px);
}
.bv-bento-wide { grid-column: span 2; }
.bv-bento-card h3 {
    font-family: var(--font-headline, 'Space Grotesk', sans-serif);
    font-size: 17px;
    font-weight: 600;
    color: #1B1C1C;
    margin-bottom: 8px;
    line-height: 1.3;
}
.bv-bento-card p {
    font-size: 14px;
    color: #414938;
    line-height: 1.65;
    margin: 0;
}
.bv-bento-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #EEFAD8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary, #346B00);
    margin-bottom: 16px;
}
.bv-bento-card-green {
    background: linear-gradient(135deg, #223D00, #346B00);
    border-color: transparent;
    color: #fff;
}
.bv-bento-card-green h3,
.bv-bento-card-green p { color: #fff; }
.bv-bento-card-green p { color: rgba(255,255,255,.8); }

/* ── 9. BADGE / PILL ─────────────────────────────────────── */
.bv-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px;
    border-radius: 99px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.bv-badge-green  { background: #EEFAD8; color: #2D5A00; border: 1px solid #A3D977; }
.bv-badge-orange { background: #FFF0DC; color: #7A3800; border: 1px solid #FBC06B; }
.bv-badge-blue   { background: #EFF6FF; color: #1E40AF; border: 1px solid #93C5FD; }
.bv-badge-gray   { background: #F3F4F6; color: #374151; border: 1px solid #D1D5DB; }

/* ── 10. ALERT BOX ───────────────────────────────────────── */
.bv-alert {
    border-radius: 10px;
    padding: 18px 22px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 24px;
}
.bv-alert-warning { background: #FFF7ED; border: 1.5px solid #FED7AA; }
.bv-alert-info    { background: #EFF6FF; border: 1.5px solid #BFDBFE; }
.bv-alert-success { background: #EEFAD8; border: 1.5px solid #A3D977; }
.bv-alert-icon { flex-shrink: 0; margin-top: 1px; }
.bv-alert h4 {
    font-family: var(--font-headline, 'Space Grotesk', sans-serif);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
    line-height: 1.3;
}
.bv-alert p { font-size: 14px; line-height: 1.6; margin: 0; }
.bv-alert-warning h4, .bv-alert-warning p { color: #92400E; }
.bv-alert-info    h4, .bv-alert-info    p { color: #1E3A8A; }
.bv-alert-success h4, .bv-alert-success p { color: #14532D; }

/* ── 11. FEATURE GRID ────────────────────────────────────── */
.bv-feat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.bv-feat-item { display: flex; flex-direction: column; gap: 10px; }
.bv-feat-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #EEFAD8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary, #346B00);
    flex-shrink: 0;
}
.bv-feat-item h3 {
    font-family: var(--font-headline, 'Space Grotesk', sans-serif);
    font-size: 16px;
    font-weight: 600;
    color: #1B1C1C;
    margin: 0;
    line-height: 1.3;
}
.bv-feat-item p {
    font-size: 14px;
    color: #414938;
    line-height: 1.65;
    margin: 0;
}

/* ── 12. CHECK GRID (3-col card grid) ────────────────────── */
.bv-check-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.bv-check-card {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #fff;
    border: 1px solid #E8E5E3;
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 14px;
    color: #414938;
    line-height: 1.5;
    transition: border-color var(--bv-dur) var(--bv-ease), box-shadow var(--bv-dur) var(--bv-ease);
}
.bv-check-card:hover {
    border-color: #69B42D;
    box-shadow: 0 2px 10px rgba(52,107,0,.08);
}
.bv-check-card svg { flex-shrink: 0; margin-top: 2px; color: var(--primary, #346B00); }

/* ── 13. SMOOTH ACCORDION ───────────────────────────────── */
.bv-acc-item { border-bottom: 1px solid #E8E5E3; }
.bv-acc-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 15px;
    font-weight: 600;
    color: #1B1C1C;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body, 'Inter', sans-serif);
    gap: 16px;
    transition: color var(--bv-dur) var(--bv-ease);
    min-height: 44px;
}
.bv-acc-btn:hover { color: var(--primary, #346B00); }
.bv-acc-btn:focus-visible {
    outline: 2px solid var(--primary, #346B00);
    outline-offset: 2px;
    border-radius: 4px;
}
.bv-acc-chevron {
    flex-shrink: 0;
    color: var(--primary, #346B00);
    transition: transform .25s var(--bv-ease);
}
.bv-acc-btn[aria-expanded="true"] .bv-acc-chevron {
    transform: rotate(180deg);
}
/* CSS grid trick for smooth height animation without JS height calc */
.bv-acc-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .25s var(--bv-ease);
}
.bv-acc-body.open { grid-template-rows: 1fr; }
.bv-acc-inner { overflow: hidden; }
.bv-acc-content {
    padding-bottom: 20px;
    font-size: 14px;
    color: #414938;
    line-height: 1.75;
}

/* ── 14. GRADIENT TOP-BORDER CARD ───────────────────────── */
.bv-card-top-border {
    border-top: 3px solid transparent;
    background-image:
        linear-gradient(#fff, #fff),
        linear-gradient(90deg, var(--primary, #346B00), #69B42D);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}
.bv-card-top-border-orange {
    border-top: 3px solid transparent;
    background-image:
        linear-gradient(#fff, #fff),
        linear-gradient(90deg, #F38500, #904D00);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

/* ── 15. GRADIENT TEXT ───────────────────────────────────── */
.bv-text-gradient {
    background: linear-gradient(135deg, #346B00 0%, #69B42D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.bv-text-gradient-warm {
    background: linear-gradient(135deg, #F38500 0%, #904D00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── 16. PAGE HERO UPGRADE ───────────────────────────────── */
/* Gemeenschappelijke page hero stijlen, overschrijft per-page inline */
.bv-page-hero { background: linear-gradient(135deg, #1a3000 0%, #2d5c00 40%, #346B00 70%, #4D9600 100%); color: #fff; padding: 80px 0 72px; }
.bv-page-hero h1 {
    font-family: var(--font-headline, 'Space Grotesk', sans-serif);
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -.025em;
    line-height: 1.1;
}
.bv-page-hero p {
    font-size: 18px;
    color: rgba(255,255,255,.85);
    max-width: 600px;
    line-height: 1.65;
}
.bv-page-hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

/* ── 17. CONTACT CARD IMPROVEMENTS ──────────────────────── */
.bv-contact-card {
    transition:
        box-shadow var(--bv-dur) var(--bv-ease),
        border-color var(--bv-dur) var(--bv-ease),
        transform var(--bv-dur) var(--bv-ease);
}
.bv-contact-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(52,107,0,.1);
    border-color: #69B42D;
}

/* ── 18. LINK CARDS (diensten/NEN overzicht) ─────────────── */
.bv-link-card {
    transition:
        box-shadow var(--bv-dur) var(--bv-ease),
        border-color var(--bv-dur) var(--bv-ease),
        transform var(--bv-dur) var(--bv-ease);
    border-radius: 10px;
}
.bv-link-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52,107,0,.1);
    border-color: #69B42D;
}

/* ── 19. PROCES STEP CARDS (horizontal grid) ─────────────── */
.bv-proces-step {
    transition:
        box-shadow var(--bv-dur) var(--bv-ease),
        transform var(--bv-dur) var(--bv-ease);
}
.bv-proces-step:hover {
    box-shadow: 0 6px 20px rgba(52,107,0,.1);
    transform: translateY(-2px);
}

/* ── 20. DIENST IMAGE ────────────────────────────────────── */
.bv-dienst-img img {
    transition: transform .4s var(--bv-ease);
}
.bv-dienst-img:hover img {
    transform: scale(1.03);
}

/* ── RESPONSIVE OVERRIDES ────────────────────────────────── */
@media (max-width: 1024px) {
    .bv-bento { grid-template-columns: 1fr 1fr; }
    .bv-bento-wide { grid-column: span 1; }
    .bv-feat-grid { grid-template-columns: 1fr 1fr; }
    .bv-stats-row { grid-template-columns: 1fr 1fr; }
    .bv-stat-cell { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
    .bv-stat-cell:nth-child(2n) { border-right: none; }
    .bv-stat-cell:nth-last-child(-n+2) { border-bottom: none; }
    .bv-check-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .bv-timeline::before { left: 19px; top: 40px; }
    .bv-tl-num { width: 40px; height: 40px; min-width: 40px; font-size: 14px; }
    .bv-page-hero { padding: 64px 0 56px; }
    .bv-feat-grid { grid-template-columns: 1fr; }
    .bv-stats-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .bv-bento { grid-template-columns: 1fr; }
    .bv-check-grid { grid-template-columns: 1fr; }
    .bv-page-hero h1 { font-size: 1.75rem; }
    .bv-trust-bar { gap: 8px; }
}

