:root {
    --primary-blue: #1B4965;
    --accent-yellow: #F9C80E;
    --text-dark: #333;
    --bg-light: #F8F9FA;
    --white: #FFFFFF;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

header {
    background: var(--white);
    padding: 0.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

header ul li a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-blue);
    cursor: pointer;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease;
    border: none;
}

.btn-primary {
    background: var(--accent-yellow);
    color: var(--primary-blue);
}

.btn-cta {
    background: var(--accent-yellow);
    color: var(--primary-blue);
    padding: 1rem 2rem;
    font-size: 1.2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.btn-outline {
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
}

/* 1. Hero Section */
.hero {
    background: linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 100%), url('../images/bg hero.png');
    background-size: cover;
    background-position: center;
    color: var(--white);
    min-height: calc(100vh - 100px); /* Vult het hele scherm minus de hogere header hoogte */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
    text-align: center;
}

.hero-content {
    max-width: 1100px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.subtext {
    font-size: 1.4rem;
    margin-bottom: 2rem;
}

/* 2. Homepage Sections */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 3rem;
}

.how-it-works {
    padding: 6rem 0;
    background: var(--bg-light);
}

.why-us {
    padding: 8rem 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.step {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-10px);
}

.step .icon-box {
    width: 80px;
    height: 80px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-blue);
    font-size: 2rem;
}

.step h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.step p {
    color: #666;
}

/* 3. How it Works Page */
.how-it-works-page {
    background: var(--light-bg);
}

.page-hero {
    background: var(--primary-blue);
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.page-hero p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

.process-steps {
    padding: 6rem 0;
}

.step-card {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 6rem;
    background: var(--white);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.step-card.reverse {
    flex-direction: row-reverse;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 40px;
    font-size: 8rem;
    font-weight: 900;
    color: var(--primary-blue);
    opacity: 0.05;
    line-height: 1;
}

.step-content {
    flex: 1;
    z-index: 1;
}

.step-content h3 {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.step-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
}

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--primary-blue);
}

.check-list li i {
    color: #25D366;
    font-size: 1.2rem;
}

.step-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.placeholder-img {
    width: 100%;
    height: 300px;
    background: var(--bg-light);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.placeholder-img i {
    font-size: 5rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.img-caption {
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Dimensions & Specs Section */
.specs-section {
    padding: 6rem 0;
    background: var(--white);
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.spec-image-container {
    position: relative;
    background: #fdfdfd;
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid #efefef;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 450px;
}

.placeholder-img {
    width: 280px;
    height: 190px;
    background: #0a0a0a;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 2px solid #333;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Verwijder de oude dimension-label styles die voor de chaos zorgden */
.dimension-label {
    position: absolute;
    background: #1B4965;
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 12px;
    z-index: 20;
    white-space: nowrap;
}

.dim-width { 
    top: -40px; 
    left: 50%; 
    transform: translateX(-50%); 
}

.dim-width::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #1B4965;
}

.dim-height { 
    right: -85px; 
    top: 50%; 
    transform: translateY(-50%) rotate(90deg); 
}

.dim-height::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #1B4965;
}

.spec-list {
    list-style: none;
    padding: 0;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 1.2rem 0;
    border-bottom: 1px solid #eee;
}

.spec-item strong {
    color: var(--primary-blue);
}

.spec-item span {
    color: #666;
    font-weight: 600;
}

/* Safety Info */
.safety-info {
    padding: 6rem 0;
    background: var(--bg-light);
}

.safety-info h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 4rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.info-box {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.info-box:hover {
    transform: translateY(-10px);
}

.info-box i {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.info-box h4 {
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.info-box p {
    color: #666;
    font-size: 0.95rem;
}

@media (max-width: 992px) {
    .step-card, .step-card.reverse {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }
}

/* 2. How it Works */

/* Mobile Optimizations - 2026 Strategy */
@media (max-width: 768px) {
    /* Global Container Adjustments */
    .container {
        padding: 0 1.25rem;
    }

    /* Typography scale for Mobile */
    h1 { font-size: 2.2rem !important; }
    h2 { font-size: 1.8rem !important; }
    h3 { font-size: 1.5rem !important; }

    /* How it Works Page - Mobile Fixes */
    .step-card {
        flex-direction: column !important;
        gap: 1.5rem;
        padding: 1.5rem;
        margin-bottom: 3rem;
        text-align: center;
    }

    .step-number {
        font-size: 5rem;
        top: -10px;
        left: 20px;
    }

    .check-list li {
        justify-content: center;
    }

    .specs-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .dim-height {
        right: 10px; /* Bring inside for mobile screens */
    }

    /* Grid-3 (Safety Info & Trust Boxes) */
    .grid-3 {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    .info-box {
        padding: 2rem 1.5rem;
    }

    /* Hero Sections across all pages */
    .page-hero {
        padding: 4rem 1rem !important;
    }

    /* Products Grid */
    .products-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    .product-card.featured {
        transform: scale(1); /* Disable scale on mobile to prevent overflow */
        margin-top: 1rem;
    }

    /* Footer adjustments */
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-info p {
        margin: 1rem auto;
    }

    .footer-contact .btn-whatsapp {
        width: 100%;
        justify-content: center;
    }

    /* Sticky Mobile CTA adjustment */
    .mobile-sticky-cta {
        padding: 12px 15px;
    }
}

/* Base Variable Overrides for 2026 Look */
:root {
    --primary-color: #1B4965;
    --secondary-color: #F9C80E;
    --text-dark: #1a1a1a;
    --light-bg: #f8fcfc;
}

.text-left {
    text-align: left;
    margin-bottom: 2rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benefit-card {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateX(10px);
}

.benefit-icon {
    font-size: 1.8rem;
    color: var(--primary-blue);
    background: var(--white);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    flex-shrink: 0;
}

.benefit-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-blue);
}

.benefit-content p {
    font-size: 1rem;
    color: #666;
}

.why-visual {
    position: relative;
    padding: 2rem;
}

.savings-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--accent-yellow);
    padding: 1.5rem;
    border-radius: 50%;
    width: 130px;
    height: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    z-index: 2;
    transform: rotate(15deg);
}

.savings-badge .amount {
    font-size: 1.8rem;
    font-weight: 800;
}

.savings-badge .label {
    font-size: 0.75rem;
    font-weight: 700;
}

.visual-stack {
    position: relative;
}

.visual-box {
    background: var(--primary-blue);
    color: var(--white);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.visual-box i {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--accent-yellow);
}

.visual-box p {
    font-size: 1.2rem;
    font-weight: 700;
}

.accent-box {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--white);
    color: var(--primary-blue);
    padding: 1.5rem 2rem;
    border: 2px solid var(--primary-blue);
}

.accent-box i {
    font-size: 1.5rem;
    margin-right: 0.5rem;
    margin-bottom: 0;
    vertical-align: middle;
}

.accent-box p {
    display: inline-block;
    font-size: 1rem;
}

/* 4. Calculator */
.calculator-section {
    background: var(--primary-blue);
    color: var(--white);
    padding: 6rem 0;
}

.calculator-card {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255,255,255,0.05);
    padding: 3rem;
    border-radius: 25px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
}

.slider {
    width: 100%;
    margin: 2.5rem 0;
    -webkit-appearance: none;
    height: 8px;
    border-radius: 5px;
    background: rgba(255,255,255,0.2);
    outline: none;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: var(--accent-yellow);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.price-display {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--accent-yellow);
}

.result {
    background: var(--accent-yellow);
    color: var(--primary-blue);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 1rem;
}

.result p {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.result h3 {
    font-size: 2.5rem;
    font-weight: 900;
}

/* 5. Products */
.products {
    padding: 7rem 0;
    background: var(--white);
}

.cta-section {
    padding: 8rem 0;
    margin-bottom: 2rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.product-card {
    border: 1px solid #eee;
    padding: 2.5rem;
    border-radius: 25px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: var(--white);
    display: flex;
    flex-direction: column;
}

.product-card:hover { 
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: var(--accent-yellow);
}

.product-card.featured {
    border: 2px solid var(--accent-yellow);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transform: scale(1.05);
    z-index: 5;
}

.product-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.product-image-container {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.product-image-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 15px;
}

.product-card h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.product-card p {
    color: #666;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--primary-blue);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 800;
}

.product-card.featured .badge {
    background: var(--accent-yellow);
    color: var(--primary-blue);
}

.price {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    color: var(--primary-blue);
}

/* 7. Reviews */
.reviews {
    padding: 6rem 0;
    background: var(--bg-light);
    text-align: center;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.review-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-10px);
}

.review-card .stars {
    color: var(--accent-yellow);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.review-card .quote {
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.review-card .author-info {
    margin-top: auto;
    border-top: 1px solid #f0f0f0;
    padding-top: 1rem;
}

.review-card .author-info strong {
    display: block;
    color: var(--primary-blue);
    font-size: 1rem;
}

.profile-tag {
    display: block;
    font-size: 0.8rem;
    color: #888;
    margin: 0.2rem 0;
}

.verified {
    display: block;
    font-size: 0.75rem;
    color: #25D366;
    margin-top: 0.3rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .trust-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        gap: 1.5rem;
    }

    .check-item {
        width: 100%;
    }
}

@media (max-width: 992px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}
.checklist {
    padding: 2rem 0 6rem 0;
}

.trust-box {
    background: var(--white);
    border: 1px solid #eee;
    padding: 2.5rem;
    border-radius: 20px;
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.check-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.check-item .check-icon {
    font-size: 2rem;
    color: #25D366;
    flex-shrink: 0;
}

.check-text-content strong {
    display: block;
    font-size: 1.1rem;
    color: var(--primary-blue);
    margin-bottom: 0.2rem;
}

.check-text-content p {
    font-size: 0.9rem;
    color: #888;
    margin: 0;
}

.check-item span { 
    color: var(--primary-blue);
    font-weight: 700;
}

/* 7. Reviews */
.reviews {
    padding: 4rem 0;
    background: var(--bg-light);
}

.review-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    max-width: 600px;
    margin: 2rem auto;
}

.quote {
    font-style: italic;
    font-size: 1.2rem;
}

.author { font-weight: 700; margin-top: 1rem; }

.ig-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.ig-box {
    background: #e0e0e0;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}

/* Footer Upgrade */
footer {
    background: var(--white);
    color: var(--text-dark);
    padding: 5rem 0 2rem;
    border-top: 1px solid #eee;
    min-height: auto; /* Verwijder de 100vh */
    display: block;
}

/* What is Included Section */
.what-is-included {
    padding: 6rem 0;
    background: #fdfdfd;
}

.what-is-included h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 4rem;
    text-align: center;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.include-item {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid #f0f0f0;
}

.include-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: var(--primary-blue);
}

.include-item i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    display: block;
}

.include-item p {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.1rem;
    margin: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 3rem;
    align-items: flex-start;
}

.footer-info p {
    margin-top: 1.5rem;
    color: #666;
    max-width: 300px;
}

footer h4 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

footer a { 
    color: #555; 
    text-decoration: none; 
    transition: color 0.3s ease;
}

footer a:hover { 
    color: var(--primary-blue);
}

footer ul { 
    list-style: none; 
}

footer ul li { 
    margin-bottom: 0.8rem; 
}

.footer-contact .btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    padding: 0.8rem 1.5rem;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    color: #666;
}

.footer-contact a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
}

/* Contact Page Styles */
.contact-page {
    background: #fdfdfd;
}

.contact-hero {
    background: var(--primary-blue);
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
}

.contact-content {
    padding: 5rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 4rem;
    align-items: flex-start;
}

.form-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    border: 1px solid #eee;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--primary-blue);
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 1.1rem;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    background: #fafafa;
    transition: all 0.3s ease;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: var(--primary-blue);
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 4px rgba(27, 73, 101, 0.05);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-info-wrapper {
    padding-top: 1rem;
}

.info-block h3 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.contact-method i {
    font-size: 1.5rem;
    color: var(--primary-blue);
    background: var(--bg-light);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.contact-method div span {
    display: block;
    font-size: 0.85rem;
    color: #888;
}

.contact-method a {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-decoration: none;
}

.trust-list {
    margin-top: 4rem;
}

.trust-point {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.trust-point i {
    color: #25D366;
    font-size: 1.25rem;
    margin-top: 0.3rem;
}

.trust-point strong {
    display: block;
    color: var(--primary-blue);
    margin-bottom: 0.2rem;
}

.trust-point p {
    font-size: 0.95rem;
    color: #666;
}

.w-100 {
    width: 100%;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-hero {
        padding: 4rem 0;
    }
    
    .contact-hero h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 600px) {
    .form-card {
        padding: 2rem;
    }
}

.footer-bottom {
    text-align: center;
    margin-top: 5rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
    font-size: 0.9rem;
    color: #999;
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
}

.chat-main-btn {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.chat-main-btn:hover {
    transform: scale(1.1);
    background: #23587a;
}

.chat-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff3b30;
    color: white;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-options {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 280px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.chat-options.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.chat-header {
    background: var(--primary-blue);
    color: white;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.chat-avatar {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.chat-header div {
    line-height: 1.2;
}

.chat-header strong {
    display: block;
    font-size: 1rem;
}

.chat-header span {
    font-size: 0.8rem;
    opacity: 0.8;
}

.chat-body {
    padding: 1.25rem;
}

.chat-body p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1.25rem;
}

.chat-opt {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 10px;
    transition: background 0.2s ease;
    border: 1px solid #eee;
}

.chat-opt:last-child {
    margin-bottom: 0;
}

.chat-opt:hover {
    background: #f8f9fa;
}

.chat-opt.wa {
    color: #25D366;
}

.chat-opt i {
    font-size: 1.1rem;
    width: 20px;
}

@media (max-width: 600px) {
    .chat-widget {
        bottom: 15px;
        right: 15px;
    }
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    padding-bottom: 3rem;
}

.product-card.premium {
    border: 2px solid #ffd700;
}

.product-badge.gold {
    background: linear-gradient(45deg, #ffd700, #ff8c00);
    color: #000;
    font-weight: 800;
}

@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* Page Templates */
.page-hero {
    background: var(--primary-blue);
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
}

.page-hero h1 { font-size: 3rem; margin-bottom: 1rem; }
.page-hero p { font-size: 1.25rem; opacity: 0.9; max-width: 800px; margin: 0 auto; }

/* How it Works Page */
.process-steps { padding: 5rem 0; }
.step-detail-grid { display: flex; flex-direction: column; gap: 4rem; }
.step-card { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.step-card.reverse { direction: rtl; }
.step-card.reverse .step-content { direction: ltr; }
.step-number { font-size: 5rem; font-weight: 800; color: rgba(27, 73, 101, 0.1); margin-bottom: -1rem; }
.step-content h3 { font-size: 2rem; color: var(--primary-blue); margin-bottom: 1.5rem; }
.check-list { list-style: none; margin-top: 1.5rem; }
.check-list li { margin-bottom: 0.8rem; display: flex; align-items: center; gap: 10px; }
.check-list i { color: #25D366; }
.placeholder-img { background: #f0f4f8; height: 350px; border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 5rem; color: var(--primary-blue); }

/* About Page */
.mission-vision { padding: 5rem 0; }
.values-list { margin-top: 2rem; }
.value-item { margin-bottom: 1.5rem; display: flex; gap: 15px; }
.value-item i { color: var(--primary-blue); margin-top: 5px; }

/* Products Page */
.products-page .products { padding: 5rem 0; background: #fff; }
.product-specs { display: flex; flex-direction: column; gap: 8px; margin: 1.5rem 0; color: #666; font-size: 0.9rem; }
.product-price { display: flex; align-items: center; justify-content: space-between; margin-top: 2rem; border-top: 1px solid #eee; padding-top: 1.5rem; }
.price { font-size: 1.5rem; font-weight: 800; color: var(--primary-blue); }
.price small { font-size: 0.8rem; font-weight: 400; color: #999; }
.include-item { padding: 2rem; background: #f9f9f9; border-radius: 15px; }
.include-item i { font-size: 2.5rem; color: var(--primary-blue); margin-bottom: 1rem; display: block; }

/* Mobile Responsive */
@media (max-width: 768px) {
    header ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 2rem;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
        gap: 1.5rem;
    }

    header ul.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        background-position: right center; /* Toont de rechterkant van de afbeelding op mobiel */
        background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/bg hero.png');
        background-size: cover;
        background-position: right center;
    }
    .steps-grid, .grid-2, .products-grid, .ig-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    .grid-4 {
        grid-template-columns: 1fr 1fr;
    }
    .hero h1 { font-size: 2.2rem; }
    header ul { display: none; }
}