:root {
    --lp-primary: #007cc3;
    --lp-primary-dark: #005f96;
    --lp-text: #333333;
    --lp-text-light: #666666;
    --lp-bg-light: #f4f8fb; /* Heel licht blauw/grijs */
    --lp-white: #ffffff;
    --lp-radius: 8px;
    --lp-container-width: 1200px;
    --lp-spacing: 80px;
}

/* Reset & Base binnen de LP wrapper om conflicten te voorkomen */
.lp-main-wrapper {
    font-family: 'Open Sans', sans-serif; /* Of jouw thema font */
    color: var(--lp-text);
    line-height: 1.6;
    overflow-x: hidden;
}

.lp-main-wrapper * {
    box-sizing: border-box;
}

.lp-container {
    max-width: var(--lp-container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Knoppen */
.lp-btn {
    display: inline-block;
    padding: 12px 24px;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--lp-radius);
    transition: background 0.3s ease, transform 0.2s;
}

.lp-btn:hover {
    transform: translateY(-2px);
}

.lp-btn--primary {
    background-color: var(--lp-primary);
    color: var(--lp-white);
}

.lp-btn--primary:hover {
    background-color: var(--lp-primary-dark);
    color: var(--lp-white);
}

.lp-btn--white {
    background-color: var(--lp-white);
    color: var(--lp-primary);
}

.lp-btn--white:hover {
    background-color: #eee;
}

/* Typografie Helpers */
.lp-subtitle {
    display: block;
    color: var(--lp-primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

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

.lp-section-header h2 {
    font-size: 2.2rem;
    color: var(--lp-primary);
    margin-bottom: 15px;
}

/* ================= HERO ================= */
.lp-hero {
    padding: 60px 0;
    background: linear-gradient(to right, #fff 50%, var(--lp-bg-light) 50%);
}

.lp-hero__grid {
    display: flex;
    align-items: center;
    gap: 40px;
}

.lp-hero__content {
    flex: 1;
}

.lp-hero__content h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #222;
}

.lp-hero-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.lp-hero-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-weight: 500;
}

.lp-hero__image-wrapper {
    flex: 1;
}

.lp-hero__img {
    width: 100%;
    height: auto;
    border-radius: var(--lp-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* ================= BOATS ================= */
.lp-boats-section {
    padding: var(--lp-spacing) 0;
}
/* Hierin wordt jouw bestaande section-boten geladen. 
   Zorg evt dat de styling daarvan goed werkt binnen .lp-container */

/* ================= CONTENT BLOCKS ================= */
.lp-content-block {
    padding: var(--lp-spacing) 0;
}

.lp-bg-light {
    background-color: var(--lp-bg-light);
}

.lp-grid-50-50 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.lp-content-img img {
    width: 100%;
    border-radius: var(--lp-radius);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.lp-prose p {
    margin-bottom: 1em;
    color: var(--lp-text-light);
}

/* ================= OVERTUIGING (BOEK NU) ================= */
.lp-persuasion {
    padding: 60px 0;
    background-color: var(--lp-primary);
    color: var(--lp-white);
    margin: 40px 0;
}

.lp-persuasion__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.lp-persuasion__text h3 {
    color: var(--lp-white);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.lp-usp-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.lp-usp-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.lp-usp-icon {
    background: rgba(255,255,255,0.2);
    width: 30px; 
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.lp-persuasion__action {
    text-align: center;
    min-width: 250px;
}

.lp-small-note {
    display: block;
    font-size: 0.8rem;
    margin-top: 10px;
    opacity: 0.8;
}

/* ================= REVIEWS ================= */
.lp-reviews {
    padding: var(--lp-spacing) 0;
}

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

.lp-review-card {
    background: var(--lp-white);
    padding: 25px;
    border-radius: var(--lp-radius);
    border: 1px solid #eee;
}

.lp-review-head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.lp-review-stars {
    color: #ffb400;
    margin-bottom: 10px;
}

.lp-center-btn {
    text-align: center;
}

.lp-link-arrow {
    color: var(--lp-primary);
    font-weight: 600;
    text-decoration: none;
}

/* ================= FOOTER CTA ================= */
.lp-footer-cta {
    text-align: center;
    padding: 60px 0;
    background: #fff;
    border-top: 1px solid #eee;
}

.lp-footer-cta h2 {
    color: var(--lp-primary);
    margin-bottom: 20px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .lp-hero { background: #fff; }
    .lp-hero__grid, 
    .lp-grid-50-50,
    .lp-persuasion__inner {
        flex-direction: column;
        grid-template-columns: 1fr;
    }

    .lp-reverse-mobile {
        flex-direction: column-reverse;
    }
    
    .lp-hero__content h1 { font-size: 2rem; }
    
    .lp-persuasion__action { width: 100%; }
    .lp-btn { width: 100%; text-align: center; }
}