/* --- Split-Screen VS Section --- */
.comparison-vs-section {
    padding: 100px 5%;
    background-color: #fff;
}

.vs-header {
    text-align: center;
    margin-bottom: 50px;
}

.vs-header h2 {
    font-size: 2.2rem;
    color: var(--brand-dark);
    margin-bottom: 10px;
    text-decoration-line: underline;
    text-decoration-color: orange;
    text-decoration-thickness: 5px;
    text-underline-offset: 10px;
}

/* DESKTOP */
.vs-container {
    display: flex;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    overflow: hidden;
}

.vs-side {
    flex: 1;
    padding: 60px 50px;
}

.vs-others {
    background-color: #f8f9fa;
}

.vs-bready {
    background-color: var(--brand-dark);
    color: #fff;
}

/* TITLES */
.side-title {
    font-size: 1.6rem;
    margin-bottom: 30px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.vs-others .side-title { color: #888; }
.vs-bready .side-title { color: var(--brand-yellow); }

/* LIST */
.vs-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vs-list li {
    padding: 18px 0;
    display: flex;
    align-items: center;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.vs-bready .vs-list li {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.vs-list li i {
    margin-right: 15px;
    font-size: 1.2rem;
}

.vs-others li i { color: #ff4d4d; }
.vs-bready li i { color: var(--brand-yellow); }

/* DIVIDER */
.vs-divider {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: var(--brand-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: var(--brand-dark);
    box-shadow: 0 0 0 8px #fff;
    z-index: 10;
}

/* ---------- MOBILE FIX ---------- */
@media (max-width: 850px) {
    .comparison-vs-section {
        padding: 60px 5%;
    }

    .vs-container {
        flex-direction: column;
        box-shadow: none;
        background: transparent;
        gap: 20px;
    }

    .vs-divider {
        display: none;
    }

    .vs-side {
        padding: 30px 20px;
        border-radius: 15px;
    }

    /* 🔥 IMPORTANT: BREADY FIRST */
    .vs-bready {
        order: 1;
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }

    .vs-others {
        order: 2;
        opacity: 0.7;
        border: 1px dashed #ccc;
        background: #fafafa;
    }

    .side-title {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }

    .vs-list li {
        font-size: 0.95rem;
        padding: 12px 0;
    }
}

.services-header h2 {
    font-size: 2.5rem;
    color: var(--brand-dark);
    text-decoration-line: underline;
    text-decoration-color: orange;
    text-decoration-thickness: 5px;
    text-underline-offset: 10px;
}

/* EXTRA SMALL */
@media (max-width: 480px) {
    .side-title {
        font-size: 1.1rem;
    }

    .vs-list li {
        font-size: 0.9rem;
    }
}

/* --- Reviews Section --- */
.reviews-section { padding: 80px 10%; text-align: center; }

.google-rating .stars { color: #fbbc05; font-size: 1.5rem; }

.reviews-grid { 
    display: flex; 
    gap: 30px; 
    justify-content: center; 
    flex-wrap: wrap; 
    margin: 40px 0; 
}

.review-card { 
    background: white; 
    padding: 30px; 
    border-radius: 12px; 
    text-align: left; 
    flex: 1; 
    min-width: 300px; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.05); 
    position: relative;
    border: 1px solid #f0f0f0;
}

.user-info { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; }
.user-info img { width: 50px; border-radius: 50%; }
.google-icon { position: absolute; top: 25px; right: 25px; color: var(--google-blue); font-size: 1.3rem; }


/* --- Over Ons (Asymmetrical Bento Dashboard Grid) --- */
.about-section {
    padding: 100px 8%;
    background-color: var(--brand-grey, #f5f6f9);
}

.about-bento-container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 30px;
    max-width: 1140px;
    margin: 0 auto;
}

/* Basis box instellingen */
.bento-box {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

/* Blok 1: Hoofdtekst */
.bento-text-main {
    grid-column: span 7;
    text-align: left;
}

.bento-text-main .about-header h2 {
    font-size: 2.3rem;
    color: var(--brand-dark, #111);
    margin-bottom: 25px;
    display: inline-block;
    text-decoration-line: underline;
    text-decoration-color: orange;
    text-decoration-thickness: 5px; 
    text-underline-offset: 8px;    
}

.bento-lead {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--brand-dark, #222);
    line-height: 1.6;
    margin-bottom: 20px;
}

.bento-text-main p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #444;
}

/* Blok 2: Nieuwe Clean Fotogrid (Rechts) */
.bento-gallery-grid {
    grid-column: span 5;
    padding: 20px;
    background: #fff;
    display: flex;
    align-items: center;
}

.clean-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    width: 100%;
    height: 100%;
}

.grid-photo {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.grid-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.grid-photo:hover img {
    transform: scale(1.04);
}

/* Grote afbeelding links, twee kleintjes rechts gecentreerd */
.img-1 {
    grid-row: span 2;
    height: 320px;
}
.img-2, .img-3 {
    height: 152px;
}

/* Blok 3: Onderste Dashboard Rij met Badges */
.bento-stats-deck {
    grid-column: span 12;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 30px;
}

.bento-stat-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px 20px;
    border-right: 1px solid #eee;
}

.bento-stat-card:last-child {
    border-right: none;
}

.stat-icon {
    font-size: 1.8rem;
    color: var(--brand-yellow, #f5b041);
    background: var(--brand-dark, #111);
    width: 55px;
    height: 55px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-data {
    text-align: left;
}

.stat-data h3 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--brand-dark, #111);
}

.stat-data p {
    margin: 2px 0 0 0;
    font-size: 0.9rem;
    color: #666;
}

/* ---------- BENTO RESPONSIVE SYSTEM ---------- */
@media (max-width: 991px) {
    .about-section {
        padding: 60px 4%;
    }

    .about-bento-container {
        gap: 20px;
    }

    .bento-text-main, .bento-gallery-grid {
        grid-column: span 12; /* Volledige breedte op tablets */
    }
    
    .clean-grid-wrapper {
        height: auto;
    }
    
    .img-1 {
        height: 280px;
    }
    .img-2, .img-3 {
        height: 132px;
    }
}

/* 📱 Mobiel Scherm Fix voor de Badges */
@media (max-width: 768px) {
    .bento-stats-deck {
        grid-template-columns: repeat(3, 1fr); /* Forceert 3 kolommen horizontaal */
        gap: 10px;
        padding: 20px 10px;
    }

    .bento-stat-card {
        flex-direction: column; /* Icon/Logo boven, tekst eronder */
        justify-content: center;
        align-items: center;
        text-align: center;
        border-right: 1px solid #eee; /* Lichte scheidingslijn tussen de kolommen */
        padding: 5px 0;
    }

    .bento-stat-card:last-child {
        border-right: none; /* Geen lijn na de laatste badge */
    }

    .stat-icon {
        width: 45px;
        height: 45px;
        font-size: 1.4rem;
        margin-bottom: 10px; /* Ruimte tussen logo en tekst */
    }

    .stat-data {
        text-align: center;
    }

    .stat-data h3 {
        font-size: 1rem; /* Iets compacter voor mobiel scherm */
    }

    .stat-data p {
        font-size: 0.75rem;
        line-height: 1.2;
    }
}

@media (max-width: 480px) {
    .bento-box {
        padding: 20px;
    }

    .bento-text-main .about-header h2 {
        font-size: 1.9rem;
    }
    
    .img-1 {
        height: 200px;
    }
    .img-2, .img-3 {
        height: 92px;
    }
    
    .stat-data h3 {
        font-size: 0.9rem;
    }
    .stat-data p {
        font-size: 0.7rem;
    }
}