@charset "UTF-8";

/* =====================================================
   WERKPLEKBEHEER LANDING PAGE v2.1
   Cobytes brand: #383158 (navy), #FF785C (coral), #F5F5F7 (light)
   Conversion-optimised layout
   ===================================================== */

/* ---- HERO ---- */
.wp-hero {
    background: linear-gradient(135deg, #e8ecf1 0%, #d4dbe2 50%, #e0e5eb 100%);
    padding: 180px 0 80px;
    position: relative;
    overflow: hidden;
}

.wp-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.wp-hero__content {
    position: relative;
    z-index: 2;
}

.wp-hero__title {
    font-family: "obvia", sans-serif;
    font-size: clamp(36px, 5vw, 72px);
    font-weight: 700;
    color: #383158;
    line-height: 1.1;
    margin: 0 0 16px;
}

.wp-hero__subtitle {
    font-size: clamp(18px, 2.5vw, 28px);
    font-weight: 600;
    color: #FF785C;
    line-height: 1.3;
    margin: 0 0 16px;
}

.wp-hero__intro {
    font-size: 17px;
    line-height: 1.6;
    color: #555;
    margin: 0 0 28px;
    max-width: 520px;
}

.wp-hero__buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.wp-hero__badges {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.wp-hero__csat {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.wp-hero__badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 14px 20px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    text-decoration: none;
    color: inherit;
}

.wp-hero__badge--link:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.wp-hero__badge-value {
    font-family: "obvia", sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #FF785C;
    line-height: 1;
}

.wp-hero__badge-label {
    font-size: 13px;
    font-weight: 600;
    color: #383158;
}

.wp-hero__csat-score {
    font-family: "obvia", sans-serif;
    font-size: 44px;
    font-weight: 700;
    color: #383158;
    line-height: 1;
}

.wp-hero__csat-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.wp-hero__csat-stars {
    display: flex;
    gap: 2px;
}

.wp-hero__csat-label {
    font-size: 14px;
    font-weight: 600;
    color: #383158;
}

.wp-hero__csat-sub {
    font-size: 12px;
    color: #999;
}

.wp-hero__image {
    position: relative;
    z-index: 1;
}

.wp-hero__img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    object-position: center right;
    display: block;
}

@media (max-width: 900px) {
    .wp-hero {
        padding: 120px 0 40px;
    }
    .wp-hero__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .wp-hero__image {
        max-height: 300px;
        overflow: hidden;
    }
    .wp-hero__img {
        max-height: 300px;
    }
    .wp-hero__trust {
        flex-direction: column;
        gap: 12px;
    }
}

/* ---- STATS BAR ---- */
.wp-stats-bar {
    background: #383158;
    padding: 0;
}

.wp-stats-bar__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.wp-stats-bar__item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 16px;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.wp-stats-bar__item:last-child {
    border-right: none;
}

.wp-stats-bar__icon {
    flex-shrink: 0;
}

.wp-stats-bar__text {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    line-height: 1.4;
}

@media (max-width: 900px) {
    .wp-stats-bar__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .wp-stats-bar__item:nth-child(2) {
        border-right: none;
    }
    .wp-stats-bar__item:nth-child(1),
    .wp-stats-bar__item:nth-child(2) {
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
}

@media (max-width: 500px) {
    .wp-stats-bar__grid {
        grid-template-columns: 1fr;
    }
    .wp-stats-bar__item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .wp-stats-bar__item:last-child {
        border-bottom: none;
    }
}

/* ---- PROBLEEM & OPLOSSING ---- */
.wp-probleem {
    padding: 80px 0;
    background: #fff;
}

.wp-probleem__grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 60px;
    align-items: start;
}

.wp-probleem__photo {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.wp-probleem__title {
    font-family: "obvia", sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #383158;
    margin: 0 0 24px;
}

.wp-probleem__text {
    margin-bottom: 28px;
}

.wp-probleem__text p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin: 0 0 16px;
}

.wp-probleem__text strong {
    color: #FF785C;
    font-weight: 600;
}

@media (max-width: 768px) {
    .wp-probleem__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .wp-probleem__photo {
        max-width: 300px;
        aspect-ratio: 4/3;
    }
}

/* ---- USP GRID ---- */
.wp-usps {
    padding: 80px 0;
    background: #F5F5F7;
}

.wp-usps__title {
    font-family: "obvia", sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #383158;
    text-align: center;
    margin: 0 0 48px;
}

.wp-usps__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.wp-usp {
    background: #fff;
    border: 1px solid #e6e8ee;
    border-radius: 12px;
    padding: 32px 24px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.wp-usp:hover {
    border-color: #FF785C;
    box-shadow: 0 8px 24px rgba(255, 120, 92, 0.12);
}

.wp-usp__icon {
    margin-bottom: 16px;
}

.wp-usp__icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.wp-usp__title {
    font-size: 18px;
    font-weight: 700;
    color: #383158;
    margin: 0 0 10px;
}

.wp-usp__text {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

@media (max-width: 900px) {
    .wp-usps__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 550px) {
    .wp-usps__grid {
        grid-template-columns: 1fr;
    }
}

/* ---- TESTIMONIAL ---- */
.wp-testimonial {
    padding: 60px 0;
    background: linear-gradient(135deg, #383158 0%, #4a4270 100%);
}

.wp-testimonial__wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.wp-testimonial__photo {
    flex: 0 0 auto;
}

.wp-testimonial__img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255,255,255,0.2);
    display: block;
}

.wp-testimonial__content {
    flex: 1;
    min-width: 0;
}

.wp-testimonial__quote {
    font-size: 20px;
    font-style: italic;
    line-height: 1.6;
    color: #fff;
    margin: 0 0 20px;
    padding: 0;
    border: none;
}

.wp-testimonial__author {
    display: flex;
    flex-direction: column;
    font-style: normal;
    color: #fff;
}

.wp-testimonial__author strong {
    font-size: 16px;
}

.wp-testimonial__author span {
    font-size: 13px;
    opacity: 0.7;
}

@media (max-width: 600px) {
    .wp-testimonial__wrapper {
        flex-direction: column;
        text-align: center;
    }
    .wp-testimonial__quote {
        font-size: 18px;
    }
    .wp-testimonial__author {
        align-items: center;
    }
}

/* ---- CONTACT / SCHEDULER ---- */
.wp-contact {
    padding: 80px 0;
    background: #F5F5F7;
}

.wp-contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.wp-contact__title {
    font-family: "obvia", sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #383158;
    margin: 0 0 16px;
}

.wp-contact__intro {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin: 0 0 28px;
}

.wp-contact__details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.wp-contact__detail {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: #fff;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s;
}

.wp-contact__detail:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.wp-contact__detail svg {
    flex-shrink: 0;
}

.wp-contact__detail strong {
    display: block;
    font-size: 13px;
    color: #999;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wp-contact__detail span {
    display: block;
    font-size: 17px;
    font-weight: 600;
    color: #383158;
}

.wp-contact__availability {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #27ae60;
    padding: 12px 16px;
}

.wp-contact__scheduler {
    background: #fff;
    border-radius: 16px;
    padding: 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    overflow: hidden;
}

.wp-contact__scheduler iframe {
    display: block;
    border-radius: 12px;
}

@media (max-width: 900px) {
    .wp-contact__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ---- USE CASES ---- */
.wp-usecases {
    padding: 80px 0;
    background: #fff;
}

.wp-usecases__title {
    font-family: "obvia", sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #383158;
    text-align: center;
    margin: 0 0 12px;
}

.wp-usecases__intro {
    font-size: 17px;
    color: #666;
    text-align: center;
    margin: 0 0 48px;
}

.wp-usecases__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.wp-usecase {
    text-align: center;
    padding: 36px 24px;
    background: #F5F5F7;
    border-radius: 12px;
    transition: background 0.2s, box-shadow 0.2s;
}

.wp-usecase:hover {
    background: #fff;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.wp-usecase__icon {
    margin-bottom: 16px;
}

.wp-usecase__icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.wp-usecase__title {
    font-size: 18px;
    font-weight: 700;
    color: #383158;
    margin: 0 0 10px;
}

.wp-usecase__text {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

@media (max-width: 768px) {
    .wp-usecases__grid {
        grid-template-columns: 1fr;
    }
}

/* ---- CASE STUDY ---- */
.wp-case {
    padding: 60px 0;
    background: linear-gradient(135deg, #f0f4ff 0%, #e8f0fe 100%);
}

.wp-case__wrapper {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.wp-case__label {
    display: inline-block;
    background: #FF785C;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wp-case__title {
    font-family: "obvia", sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #383158;
    margin: 0 0 16px;
    line-height: 1.3;
}

.wp-case__intro {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin: 0 0 24px;
}

/* ---- FAQ ---- */
.wp-faq {
    padding: 80px 0;
    background: #fff;
}

.wp-faq__header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 16px;
}

.wp-faq__title {
    font-family: "obvia", sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #383158;
    margin: 0;
}

.wp-faq__link {
    font-size: 14px;
    color: #FF785C;
    text-decoration: none;
    font-weight: 500;
}

.wp-faq__link:hover {
    text-decoration: underline;
}

.wp-faq__list {
    max-width: 800px;
}

.wp-faq__item {
    border-bottom: 1px solid #e6e8ee;
}

.wp-faq__question {
    display: block;
    padding: 20px 0;
    font-size: 17px;
    font-weight: 600;
    color: #383158;
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 30px;
}

.wp-faq__question::-webkit-details-marker {
    display: none;
}

.wp-faq__question::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: 300;
    color: #FF785C;
    transition: transform 0.2s;
}

.wp-faq__item[open] .wp-faq__question::after {
    content: "−";
}

.wp-faq__answer {
    padding: 0 0 20px;
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

.wp-faq__answer p {
    margin: 0 0 12px;
}

.wp-faq__answer p:last-child {
    margin-bottom: 0;
}

/* ---- FINAL CTA ---- */
.wp-final-cta {
    padding: 60px 0;
    background: #383158;
}

.wp-final-cta__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.wp-final-cta__title {
    font-family: "obvia", sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
}

.wp-final-cta__text {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    margin: 0;
}

.wp-final-cta__buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .wp-final-cta__wrapper {
        flex-direction: column;
        text-align: center;
    }
    .wp-final-cta__buttons {
        justify-content: center;
    }
}

/* ---- BROCHURE POPUP ---- */
.brochure-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.brochure-popup.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.brochure-popup__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
}

.brochure-popup__content {
    position: relative;
    background: #fff;
    padding: 48px;
    border-radius: 16px;
    max-width: 480px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.brochure-popup__close {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    color: #999;
    line-height: 1;
}

.brochure-popup__close:hover {
    color: #333;
}

.brochure-popup__content h3 {
    font-size: 24px;
    color: #383158;
    margin: 0 0 12px;
}

.brochure-popup__content p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 24px;
}

.brochure-popup__form {
    background: #F5F5F7;
    padding: 32px;
    border-radius: 8px;
}
