:root {
    --lp-blue: #007cc3;
    --lp-blue-dark: #005f96;
    --lp-blue-light: #e0f2ff;
    --lp-accent: #007cc3; /* Goud/Oranje voor actie */
    --lp-text: #2c3e50;
    --lp-text-soft: #546b81;
    --lp-bg-soft: #f8fbfe;
    --lp-white: #ffffff;
    --lp-shadow-sm: 0 4px 6px rgba(0, 124, 195, 0.05);
    --lp-shadow-lg: 0 20px 40px rgba(0, 124, 195, 0.15);
    --lp-radius: 12px;
    --lp-container: 1200px;
    --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Reset & Base */
.lp-wrapper {
    font-family: 'Poppins', 'Open Sans', sans-serif; /* Probeer een modern font */
    color: var(--lp-text);
    line-height: 1.6;
    overflow-x: hidden;
    background: #fff;
}

.lp-wrapper * { box-sizing: border-box; }
.lp-container { max-width: var(--lp-container); margin: 0 auto; padding: 0 20px; position: relative; }
.relative { position: relative; }
.z-10 { z-index: 10; }

/* ================= TYPOGRAFIE ================= */
.lp-wrapper h1, .lp-wrapper h2, .lp-wrapper h3 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.lp-wrapper h1 { font-size: clamp(2.5rem, 5vw, 4rem); color: #fff; text-shadow: 0 2px 10px rgba(0,0,0,0.2); }
.lp-wrapper h2 { font-size: clamp(2rem, 4vw, 2.8rem); color: var(--lp-blue-dark); }
.lp-wrapper h3 { font-size: 1.8rem; color: var(--lp-blue); }

.lp-intro-text p { font-size: 1.15rem; color: #f0f8ff; max-width: 600px; opacity: 0.9; }
.lp-prose p { margin-bottom: 1.5em; color: var(--lp-text-soft); font-size: 1.05rem; }

.lp-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    padding: 6px 12px;
    border-radius: 50px;
    color: #fff;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    border: 1px solid rgba(255,255,255,0.3);
}

/* ================= BUTTONS MET GLARE EFFECT ================= */
.lp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s var(--ease-out);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 124, 195, 0.3);
}

/* Glare animatie */
.lp-btn::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: 0.5s;
}
.lp-btn:hover::after { left: 100%; }

.lp-btn--glow {
    background: #f9f9f9;
    color: #007cc3;
}
.lp-btn--glow:hover {
    transform: translateY(-3px);
    background: #007cc3;
    box-shadow: 0 10px 25px rgb(6 76 117);
    color: white;
}

.lp-btn--white { background: #fff; color: var(--lp-blue); }
.lp-btn--white:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }

.lp-btn--white-pulse {
    background: #fff;
    color: var(--lp-blue);
    animation: pulse-white 2s infinite;
}

.lp-btn--outline-white {
    border: 2px solid #0077be;
    color: #0077be;
    background: transparent;
    box-shadow: none;
}
.lp-btn--outline-white:hover { background: rgba(255,255,255,0.1); }

.arrow { transition: transform 0.3s; }
.lp-btn:hover .arrow { transform: translateX(5px); }

/* ================= HERO SECTION ================= */
.lp-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.lp-hero__bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
}

.lp-hero__bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    /* Parallax look: */
    transform: scale(1.1); 
}

.lp-hero__overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Moderne gradient overlay */
    background: linear-gradient(135deg, rgba(0, 95, 150, 0.85) 0%, rgba(0, 124, 195, 0.6) 100%);
}

.lp-usps-pills {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin: 30px 0;
}

.lp-pill {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}
.lp-check { color: #ffffff; font-weight: bold; }

/* Waves */
.lp-wave-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 5;
    line-height: 0;
}

/* ================= SECTIONS GENERAL ================= */
.lp-section { padding: 100px 0; position: relative; }
.lp-bg-soft { background-color: var(--lp-bg-soft); }

.lp-divider-center {
    width: 60px; height: 4px;
    background: var(--lp-accent);
    margin: 20px auto;
    border-radius: 2px;
}

.lp-section-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }

/* ================= CONTENT BLOCKS (ZIG ZAG) ================= */
.lp-grid-50-50 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.lp-img-wrapper { position: relative; }

.lp-img-wrapper img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--lp-shadow-lg);
    transition: transform 0.5s;
}

.lp-img-wrapper:hover img {
    transform: scale(1.02) rotate(1deg);
}

/* Floating Badge op afbeelding */
.lp-floating-badge {
    position: absolute;
    bottom: 30px; right: -20px;
    background: #fff;
    padding: 15px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    font-weight: 700;
    color: var(--lp-blue);
    animation: float 3s ease-in-out infinite;
    z-index: 2;
}

.lp-blob-bg {
    position: absolute;
    top: -20px; left: -20px;
    width: 100%; height: 100%;
    background: var(--lp-blue-light);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: -1;
    animation: morph 8s ease-in-out infinite;
}

.lp-check-list-visual {
    list-style: none; padding: 0; margin-top: 20px;
}
.lp-check-list-visual li {
    padding: 10px 0 10px 35px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="%23007cc3" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>') no-repeat left center;
    font-weight: 600;
    color: var(--lp-text);
}

/* ================= PERSUASION / USP WAVE SECTION ================= */
.lp-persuasion {
    background: var(--lp-blue);
    color: #fff;
    padding: 0; /* Padding handled by wave SVG height */
    position: relative;
    margin: 0;
}

.lp-wave-top { line-height: 0; margin-bottom: -2px; }
.lp-wave-top path, .lp-wave-bottom path { fill: #fff; }

.lp-persuasion__content {
    padding: 50px 20px;
    text-align: center;
}

.lp-persuasion__content p { color:white; }

.lp-persuasion__head h2 { color: #fff; margin-bottom: 50px; }

.lp-usp-grid-modern {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.lp-usp-card {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 25px;
    border-radius: 20px;
    width: 220px;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.lp-usp-card:hover {
    background: #fff;
    transform: translateY(-10px);
}

.lp-usp-card:hover span { color: var(--lp-blue); }

.lp-icon-circle {
    width: 50px; height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--lp-blue);
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.lp-usp-card span { font-weight: 600; font-size: 1.1rem; }

/* ================= REVIEWS MODERN ================= */
.lp-review-scroller {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.lp-review-modern {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--lp-shadow-sm);
    position: relative;
    transition: 0.3s;
    border-bottom: 4px solid transparent;
}

.lp-review-modern:hover {
    transform: translateY(-5px);
    box-shadow: var(--lp-shadow-lg);
    border-bottom: 4px solid var(--lp-blue);
}

.lp-quote-icon {
    font-size: 4rem; color: var(--lp-blue-light);
    position: absolute; top: 10px; left: 20px;
    font-family: serif; line-height: 1;
}

.lp-rev-text {
    position: relative; z-index: 2;
    font-style: italic;
    margin-bottom: 20px;
}

.lp-rev-footer {
    display: flex; align-items: center; gap: 15px;
}

.lp-avatar-placeholder {
    width: 45px; height: 45px;
    background: linear-gradient(135deg, var(--lp-blue), var(--lp-blue-dark));
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.lp-rev-meta strong { display: block; color: var(--lp-text); }
.lp-rev-meta small { color: #999; }

/* ================= FOOTER CTA ================= */
.lp-footer-cta-wrap {
        padding: 80px 0;
    background-color: #ffffff;
    padding: 120px 0;
    position: relative;
    color: #fff;
    text-align: center;
}

.lp-footer-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 40, 70, 0.8);
}

.lp-footer-cta-wrap h2 { color: #0077be; font-size: 3rem; margin-bottom: 10px; }
.lp-footer-cta-wrap p { font-size: 1.3rem; opacity: 0.8; margin-bottom: 40px; color: black;}

.lp-cta-buttons {
    display: flex; gap: 20px; justify-content: center; flex-wrap: wrap;
}

/* ================= ANIMATIONS (Keyframes) ================= */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes morph {
    0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
    100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
}

@keyframes pulse-white {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

/* Scroll Trigger Classes */
.lp-animate-up, .lp-animate-left, .lp-animate-right, .lp-animate-scale {
    opacity: 0;
    transition: all 0.8s var(--ease-out);
}

.lp-animate-up { transform: translateY(40px); }
.lp-animate-left { transform: translateX(-40px); }
.lp-animate-right { transform: translateX(40px); }
.lp-animate-scale { transform: scale(0.9); }

.in-view { opacity: 1; transform: translate(0) scale(1); }

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }

/* Responsive */
@media (max-width: 900px) {
    .lp-grid-50-50 { grid-template-columns: 1fr; gap: 40px; }
    .lp-reverse-mobile { flex-direction: column-reverse; display: flex; }
    .lp-hero { padding-top: 120px; text-align: center; }
    .lp-usps-pills { justify-content: center; }
    .lp-floating-badge { position: relative; bottom: auto; right: auto; margin-top: -20px; display: inline-block; }
    .lp-intro-text p { margin: 0 auto; }
}

/* ================= DYNAMIC REVIEWS STYLING ================= */

.lp-review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.lp-review-card-dynamic {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    position: relative;
    border: 1px solid rgba(0, 124, 195, 0.08); /* Heel licht blauw randje */
    box-shadow: 0 10px 30px rgba(0,0,0,0.03); /* Super zachte schaduw */
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%; /* Zorgt dat ze even hoog lijken */
}

.lp-review-card-dynamic:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 40px rgba(0, 124, 195, 0.12);
    border-color: var(--lp-blue);
}

/* Decoratieve quote icon */
.quote-icon {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 3rem;
    color: #f0f8ff; /* Bijna wit blauw */
    z-index: 0;
}

/* Header sectie */
.rev-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    position: relative; z-index: 1;
}

.rev-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--lp-blue), var(--lp-blue-dark));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0, 124, 195, 0.3);
}

.rev-meta {
    display: flex;
    flex-direction: column;
}

.rev-author {
    color: var(--lp-text);
    font-size: 1.05rem;
}

.rev-date {
    font-size: 0.85rem;
    color: #999;
}

/* Sterren */
.rev-stars {
    color: #ffb400;
    font-size: 1rem;
    margin-bottom: 15px;
    position: relative; z-index: 1;
}

/* Inhoud */
.rev-body {
    flex-grow: 1; /* Duwt de footer naar beneden */
    position: relative; z-index: 1;
}

.rev-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--lp-blue-dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.rev-content p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
}

/* Footer badge */
.rev-verified {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-size: 0.8rem;
    color: #27ae60; /* Groen */
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Blauwe outline knop (nieuw) */
.lp-btn--outline-blue {
    border: 2px solid var(--lp-blue);
    color: var(--lp-blue);
    background: transparent;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.lp-btn--outline-blue:hover {
    background: var(--lp-blue);
    color: #fff;
    transform: translateY(-2px);
}

/* Mobiel tweak */
@media (max-width: 768px) {
    .lp-review-grid {
        grid-template-columns: 1fr;
    }
}