/*
 * LP-styles — extra styling voor Meta Ads-landingspagina's.
 * Bouwt voort op style.css. Geen ronde hoeken, donkere achtergrond, eigen typografie.
 */

/* === LP Proof Bar === */
.lp-proof-bar {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.lp-proof-bar__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.lp-proof-bar__item {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}
.lp-proof-bar__number {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    font-size: 42px;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 8px;
}
.lp-proof-bar__label {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
    .lp-proof-bar {
        padding: 24px 0;
    }
    .lp-proof-bar__list {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .lp-proof-bar__item {
        flex-direction: row;
        align-items: baseline;
        gap: 12px;
        width: 100%;
    }
    .lp-proof-bar__number {
        font-family: 'Raleway', sans-serif;
        font-weight: 400;
        font-size: 26px;
        flex-shrink: 0;
        min-width: 100px;
    }
    .lp-proof-bar__label {
        font-family: 'Raleway', sans-serif;
        font-weight: 400;
        font-size: 13px;
    }
}

/*
 * === Portfolio block — globale verbetering ===
 * Geldt voor de hele website, niet alleen LPs.
 * Uniforme 16:10 aspect-ratio + duidelijke spacing tussen items, kolommen
 * en image-text.
 */
.product-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 32px;
    padding: 16px 0;
}
.product-item {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    margin: 0;
    gap: 16px;
}
.product-item-pic {
    aspect-ratio: 16 / 10 !important;
    overflow: hidden;
    height: auto !important;
    width: 100% !important;
}
.product-item-pic .swiper-slide {
    width: 100% !important;
    height: 100% !important;
    aspect-ratio: auto !important;
    top: 0 !important;
    left: 0 !important;
    overflow: hidden;
}
.product-item-pic .swiper-slide.hover {
    position: absolute !important;
    inset: 0 !important;
    height: 100% !important;
    max-height: 100% !important;
    transform: none !important;
}
.product-item-pic .swiper-slide img,
.product-item-pic > img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block;
}
.product-item-info {
    display: flex !important;
    flex-direction: column;
    gap: 8px;
    padding: 0 4px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 0 !important;
}
.product-item-title {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.3;
    color: #fff;
    margin: 0;
}
.product-item-desc {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}

@media (max-width: 900px) {
    .product-content {
        gap: 48px 24px;
    }
}
@media (max-width: 640px) {
    .product-content {
        grid-template-columns: 1fr;
        gap: 56px;
        padding: 16px 0;
    }
}

/*
 * === LP materialen (USPs): grotere, uniforme foto's ===
 */
body:has(.lp-proof-bar) .home-material-item {
    display: flex;
    flex-direction: column;
}
body:has(.lp-proof-bar) .home-material-item .home-material-pic {
    aspect-ratio: 4 / 3 !important;
    overflow: hidden;
    margin-bottom: 20px;
    height: auto !important;
    width: 100%;
}
body:has(.lp-proof-bar) .home-material-item .home-material-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
body:has(.lp-proof-bar) .home-material-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 8px;
}
body:has(.lp-proof-bar) .home-material-desc {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
}

/* === LP mobile materialen-block (USPs): 1 kolom === */
@media (max-width: 768px) {
    body:has(.lp-proof-bar) .home-material {
        display: grid;
        grid-template-columns: 1fr;
        gap: 48px;
    }
    body:has(.lp-proof-bar) .home-material-item {
        width: 100%;
        max-width: 100%;
    }
}

/* === LP FAQ ===
 * Hergebruikt bestaande accordion-CSS (+/− animatie via ::before/::after).
 * Voegt alleen lichte tweaks toe.
 */
.lp-faq .accordion {
    margin-top: 0;
}
.lp-faq .accordion + .accordion {
    margin-top: 0;
}
.lp-faq .accordion-body {
    padding-top: 8px;
    padding-bottom: 8px;
}
.lp-faq .accordion-body .sentence {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .lp-faq .accordion-body .sentence {
        font-size: 14px;
    }
}

/*
 * === LP comparison without +/- icons ===
 * Voor pagina's waar de vergelijking gaat over keuzes (beide goed),
 * niet over pro/contra. Anchor #vergelijking signaleert deze intent.
 */
#vergelijking .compare-table-td::before {
    content: none !important;
    background: none !important;
    background-image: none !important;
    width: 0 !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
}
#vergelijking .compare-table-tr .compare-table-td {
    padding-left: 16px;
    padding-right: 16px;
}
#vergelijking .compare-table-tr .compare-table-td:first-child {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
}

/* === LP Guarantees === */
.lp-guarantees {
    padding: 64px 0;
}
.lp-guarantees__title {
    margin-bottom: 40px;
}
.lp-guarantees__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.lp-guarantees--3 .lp-guarantees__grid {
    grid-template-columns: repeat(3, 1fr);
}
.lp-guarantees--2 .lp-guarantees__grid {
    grid-template-columns: repeat(2, 1fr);
}
.lp-guarantees__item {
    display: flex;
    flex-direction: column;
    padding: 28px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.lp-guarantees__label {
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 12px;
}
.lp-guarantees__value {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    font-size: 28px;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 12px;
}
.lp-guarantees__desc {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}

@media (max-width: 1024px) {
    .lp-guarantees__grid,
    .lp-guarantees--3 .lp-guarantees__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .lp-guarantees__grid,
    .lp-guarantees--3 .lp-guarantees__grid,
    .lp-guarantees--2 .lp-guarantees__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .lp-guarantees {
        padding: 40px 0;
    }
}
