:root {
            --primary-purple: #440670;
            --primary-blue: #096172;
            --light-purple: #8a2be2;
            --light-blue: #3bb5f6;
            --dark-purple: #4b0082;
            --dark-blue: #1e97af;
            --text-light: #f8fafc;
            --text-dark: #1e293b;
            --background-light: #f1f5f9;
            --white: #ffffff;
            --accent: #6a0dad;
            --accent-2: #1e97af;
            --accent-3: #bbe5fd33;
            --muted: #6b6b74;
            --card: #9e9e9e;
            --container: 1400px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: var(--background-light);
            color: var(--text-dark);
            line-height: 1.6;
        }

        .container {
            width: 90%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Styles */
        header, .dashboard-header {
            background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
            color: var(--text-light);
            padding: 0.5rem 1rem;
            max-height: 20vh;
            overflow: visible;
            box-shadow: 0 8px 12px rgba(0, 0, 0, 0.3);
            border-bottom: 2px solid #1e97af;
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
            text-align: center;
            padding: 0.5rem 0;
        }

        .brand-text {
            font-size: 1rem;
            font-weight: bold;
            color: var(--text-light);
            text-decoration: none;
        }

        .site-title {
            font-size: 1rem;
            font-weight: bold;
            color: var(--text-light);
            text-decoration: none;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .logo img {
            height: 50px;
        }

        .logo-placeholder {
            width: 50px;
            height: 50px;
            background-color: var(--white);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: var(--primary-purple);
        }

        .logo h1 {
            font-size: 1.2rem;
            color: var(--text-light);
            margin: 0;
            font-weight: 600;
        }
        /* mobiele standaard: menu verborgen en verticaal */
        .nav ul {
            display: none;
            flex-direction: column;
            gap: 1rem
        }
        /* Mobiele menu zichtbaar maken bij .show klasse */
        .nav ul.show {
            display: flex;
        }   


        @media (max-width: 768px) {
            .logo h1 {
                font-size: 1.2rem;
            }
            .mobile-menu-btn {
                display: none;
            }

        }

        /* Desktop menu: horizontaal en zichtbaar */
        @media screen and (min-width: 769px) {
        nav ul {
            display: flex !important;
            flex-direction: row;
            gap: 2rem;
        }
    }
        /* Verberg mobiele menu knop op desktop */
        .mobile-menu-btn {
            display: none;
        }

        @media (max-width: 480px) {
            .logo h1 {
                font-size: 1.2rem;
            }
        }
        
        
        ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        nav ul {
            display: none;
            flex-direction: column;
            gap: 2rem;
            align-items: center;
        }

        nav ul.show {
            display: flex;
        }

        nav a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        nav a:hover {
            color: var(--light-blue);
            
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--background-light);
            z-index: 1000;
        }





        /* Text-to-Speech Button */

        /* Container (optioneel, als de knoppen samen staan) */
.tts-controls {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 10px;
}

/* Algemene knopstijl */
.tts-controls button {
    display: flex;
    align-items: center;
    gap: 8px;

    font-size: 1rem;
    font-weight: 200;
    padding: 8px 10px;

    border: none;
    border-radius: 8px;
    cursor: pointer;

    background-color: #4c008240; /* indigo */
    color: #ffffff;

    transition: 
        background-color 0.2s ease,
        transform 0.1s ease,
        box-shadow 0.1s ease;
}

/* Hover effect */
.tts-controls button:hover {
    background-color: #3b00662a; /* donkerder indigo */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Klik effect */
.tts-controls button:active {
    transform: scale(0.97);
}

/* Focus (toegankelijkheid) */
.tts-controls button:focus-visible {
    outline: 3px solid #4c008227; /* indigo */
    outline-offset: 3px;
}

/* Specifieke kleuren per knop */
#pauseRead {
    background-color: #4c008229; /* indigo */
}

#pauseRead:hover {
    background-color: #3b006624; /* donkerder indigo */
}

#stopRead {
    background-color: #4c008229; /* indigo */
}

#stopRead:hover {
    background-color: #3b006635; /* donkerder indigo */
}

/* Mobiel vriendelijk */
@media (max-width: 600px) {
            .tts-controls {
                margin-left: 0;
                margin-top: 10px;
            }

            .tts-controls button {
                font-size: 14px;
                padding: 8px 12px;
            }
        }
        
@media (max-width: 480px) {
    .tts-controls button {
        width: 30%;
        justify-content: center;
        margin-left: 0;
    }
}


        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--primary-purple));
            color: var(--text-light);
            padding: 5rem 0;
            text-align: center;
        }

        .hero h1 {
            font-size: 3.4rem;
            margin-bottom: 1rem;
            border-bottom: 4px solid var(--light-blue);
            font-weight: bold;
        }

        .hero-left h1 {
            font-size: 3.4rem;
            margin-bottom: 1rem;
            border-bottom: 4px solid var(--light-blue);
            font-weight: bold;
        }
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.2rem;
            }
            .hero-left h1 {
                font-size: 2.2rem;
            }
        }

        .hero h2 {
            font-size: 3.2rem;
            margin-bottom: 1rem;
            border-bottom: 4px solid var(--light-blue);
            display: inline-block;
            padding-bottom: 0.5rem;
        }

        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 2rem;
            color: var(--text-light);
        }

        /* Robot Image Styling */
        .robot-wrapper {
            text-align: left;       /* centreert de robot */
            margin: 0rem 0;           /* ruimte boven en onder */
        }

        .robot-wrapper1 {
            text-align: right;       /* centreert de robot */
            margin: 0rem 0;           /* ruimte boven en onder */
        }

        @keyframes float {
            0%   { transform: rotate(20deg) translateY(0); }
            50%  { transform: rotate(20deg) translateY(-8px); }
            100% { transform: rotate(20deg) translateY(0); }
        }

        .robot-img {
            display: block;
            position: relative;
            max-width: 350px;         /* maximale breedte */
            width: 100%;              /* schaalbaar */
            height: auto;             /* behoudt verhoudingen */
            animation: float 3s ease-in-out infinite;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;          /* geeft een klikgevoel */
            margin-top: -200px;      /* optische aanpassing */
            margin-left: -120px;    /* optische aanpassing */
            filter: drop-shadow(0 8px 6px rgba(0,0,0,0.5));
        }

        .robot1-img {
            display: inline-block;
            position: relative;
            max-width: 350px;         /* maximale breedte */
            width: 100%;              /* schaalbaar */
            height: auto;             /* behoudt verhoudingen */
            animation: float 3s ease-in-out infinite;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;          /* geeft een klikgevoel */
            margin-top: -150px;      /* optische aanpassing */
            margin-right: -120px;    /* optische aanpassing */
            filter: drop-shadow(0 8px 6px rgba(0,0,0,0.5));
        }

            /* Hover-animatie */
            .robot-img:hover {
                filter: drop-shadow(0 14px 10px rgba(0,0,0,0.25));
                transition: transform 0.3s ease, filter 0.3s ease;

            }



        @media (max-width: 768px) {
            .robot-img {
                max-width: 220px; /* kleinere robot op kleine schermen */
                margin-top: -40px; /* aangepaste marge voor kleinere schermen */
                margin-left: 0; /* geen rechter marge op kleine schermen */
            }

            .robot1-img {
                max-width: 200px; /* kleinere robot op kleine schermen */
                margin-top: -30px; /* aangepaste marge voor kleinere schermen */
                margin-right: 0; /* geen rechter marge op kleine schermen */
            }
        }
/* Einde Robot Image Styling */

        .cta-button {
            display: inline-block;
            background-color: var(--light-blue);
            color: var(--text-light);
            padding: 12px 30px;
            border-radius: 40px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s;
            border: 2px solid var(--light-blue);
        }

        .cta-button:hover {
            background-color: transparent;
            border-color: var(--text-light);
        }
        
        /* End Hero Section */
        /* December Deal Section */
        .december-deal {
            
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-color: #ad0d0d;
            height: 500px;
            padding: 10px 20px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;

            text-decoration: none;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        .december-deal .december-deal-badge {
            background-color: #fff;
            color: #ad0d0d;
            padding: 8px 16px;
            border-radius: 20px;
            font-weight: 700;
            display: inline-block;
            margin-bottom: 1rem;
            padding: 0 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
        }
        .glass-box {
            background: rgba(255, 255, 255, 0.2);
            border-radius: 15px;
            border: 1.5px solid rgba(255, 255, 255, 0.3);
            margin-top: 20px;
            padding: 20px;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }
        .december-deal .december-deal-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            padding-top: 50px;
        }
       
        .december-deal h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            padding-top: 0 10px;
            color: #fff;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-align: center;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        .december-deal p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 2rem;
            color: #fff;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
        }

        .december-deal .december-deal-button {
            display: inline-block;
            background: #ad0d0d;
            color: #fff;
            padding: 12px 30px;
            margin-top: 80px;
            border-radius: 40px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s;
            border: 2px solid #ab22226f;
        }
        .december-deal .december-deal-button:hover {
            background-color: #ad0d0d;
            border-color: #fff;
        }
        .december-deal a {
            color: #fff;
            text-decoration: none;
        }
        .december-deal a:hover {
            text-decoration: underline;
        }
        @media (max-width: 768px) {
            .december-deal {
                height: auto;
                padding: 15px 5px;
            }
            .december-deal h2 {
                font-size: 2rem;
            }
            .december-deal p {
                font-size: 1rem;
            }
            .glass-box {
                padding: 10px;
            }
            .december-deal .december-deal-button {
                padding: 10px 20px;
                font-size: 1rem;
                margin-top: 40px;
                
            }
        }



        /* blog post */
        .blog-post {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
            transition: transform .16s ease;
            display: grid;
            grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
            gap: 18px;
            align-items: start;
            padding: 2rem;
            margin: 2rem 0;
        }

        .blog-post:hover {
            transform: translateY(-6px);
        }

        .blog-post .blog-thumb {
            display: block;
            overflow: hidden;
            border-radius: 10px;
        }

        .blog-post img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            display: block;
            border-radius: 8px;
        }
        .blog-post h3 {
            margin: 0 0 8px;
            font-size: 1.05rem;
            color: #111;
        }
        .blog-post p {
            margin: 0 0 12px;
            color: var(--muted, #6b6b74);
        }
        .blog-post .read-more {
            margin-left: auto;
            color: var(--accent, #6a0dad);
            font-weight: 700;
            text-decoration: none;
        }


        
        


        
        /* Pricing layout (matches index.html styling and structure) */
        .pricing-section {
            padding: 2.25rem 0 3.5rem;
        }

        .section-title {
            text-align: center;
            font-size: 2.8rem;
            margin-bottom: 2.5rem;
            color: var(--dark-purple);
        }


        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 1rem;
        }

        .price-card {
            background: #fff;
            border-radius: var(--card-radius);
            padding: 1.4rem;
            border: 3px solid rgba(75, 0, 130, 0.12);
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
            display: flex;
            flex-direction: column;
            gap: .75rem;
            min-height: 220px;
        }

        .price-card h3 {
            color: var(--primary-blue);
            font-size: 1.05rem;
            margin: 0;
        }

         .price {
            font-size: 1.9rem;
            color: var(--primary-purple);
            font-weight: 700;
        }

        .price small {
            font-size: .85rem;
            color: #666;
        }

        .price-features, .wp {
            list-style: none;
            margin-top: .6rem;
            display: flex;
            flex-direction: column;
            gap: .45rem;
            padding-left: 0;
        }

        .price-features li i {
            color: var(--primary-purple);
            min-width: 18px;
        }

        .tag-notice {
            background-color: #fff3cd;
            color: #856404;
            border: 1px solid #ffeeba;
            padding: 10px 15px;
            border-radius: 5px;
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
        }
        .websites-title h1 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    color: #3b0066;
        }


        .btn-primary {
            background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
            color: #fff;
            padding: 9px 14px;
            border-radius: 999px;
            border: 0;
            cursor: pointer;
            font-weight: 700;
        }

        .btn-secondary {
            background: transparent;
            border: 1px solid rgba(0, 0, 0, 0.08);
            padding: 8px 12px;
            border-radius: 8px;
            cursor: pointer;
        }

        .compare {
            margin-top: 1.5rem;
            background: #fff;
            border-radius: var(--card-radius);
            padding: 12px;
            border: 3px solid rgba(75, 0, 130, 0.08);
            overflow: auto;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            min-width: 680px;
        }

        th,
        td {
            padding: 10px 12px;
            text-align: left;
            border-bottom: 1px solid #eee;
        }

        th {
            background: linear-gradient(180deg, rgba(138, 43, 226, 0.06), rgba(30, 127, 138, 0.02));
            color: var(--dark-purple);
            font-weight: 700;
        }

        .pricing-contact {
            margin-top: 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
        }

        .pricing-contact a {
            color: var(--primary-purple);
            text-decoration: underline;
        }

        .pricing-contact a:hover {
            text-decoration: none;
        }

        .toekomstbestendig {
            padding: 2rem 0 3.5rem;
            text-align: center;
        }
        .toekomstbestendig h2 {
            font-size: 3.2rem;
            margin-bottom: 1rem;
            color: var(--dark-purple);
        }
        .toekomstbestendig p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 2rem;
            color: var(--text-dark);
        }
        .toekomstbestendig .cta-secondary {
            display: inline-block;
            background-color: var(--light-blue);
            color: var(--text-light);
            padding: 12px 30px;
            border-radius: 40px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s;
            border: 2px solid var(--light-blue);
        }
        .toekomstbestendig .cta-secondary:hover {
            background-color: #3b0066;
            border-color: var(--text-light);
        }
        @media (max-width: 768px) {
            .toekomstbestendig h2 {
                font-size: 1.5rem;
            }
            .toekomstbestendig p {
                font-size: 1rem;
            }
        }

        .checklist {
            margin-top: 1.5rem;
            background: #fff;
            border-radius: var(--card-radius);
            padding: 12px;
            border: 3px solid rgba(75, 0, 130, 0.08);
            overflow: auto;
            text-align: center;
        }
        .checklist h3 {
            margin-bottom: 1rem;
            color: var(--accent-2);
        }
        .checklist ul {
            list-style-position: inside;
            list-style: none;
            padding-left: 0;
            margin: 0 auto;
            text-align: center;
        }
        .checklist li {
            margin-bottom: 0.75rem;
            display: block;
            align-items: center;
            gap: 8px;
            font-size: 1rem;
            text-align: center;
        }
        .checklist li i {
            color: var(--primary-purple);
            margin-right: 8px;
        }
        .checklist .cta-secondary {
            display: inline-block;
            background-color: var(--light-blue);
            color: var(--text-light);
            padding: 12px 30px;
            border-radius: 40px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s;
            border: 2px solid var(--light-blue);
            margin-top: 1rem;
        }
        .checklist .cta-secondary:hover {
            background-color: #3b0066;
            border-color: var(--text-light);
        }
        .contact .cta-secondary {
            display: inline-block;
            background-color: var(--light-blue);
            color: var(--text-light);
            padding: 12px 30px;
            border-radius: 40px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s;
            border: 2px solid var(--light-blue);
            margin-top: 1rem;
        }
        .contact .cta-secondary:hover {
            background-color: #3b0066;
            border-color: var(--text-light);
        }
    

        @media (max-width: 480px) {
            .checklist li {
                font-size: 1rem;
            }
        }


        /* Features Section */
        .features {
            padding: 5rem 0;
        }

        .section-title {
            text-align: center;
            font-size: 2.8rem;
            margin-bottom: 3rem;
            color: var(--dark-purple);
            
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .features-grid {
            display: grid;
            /* iets kleinere kaarten op small devices */
            /* grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); */
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .feature-card {
            background-color: var(--white);
            border-radius: 10px;
            padding: 2rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
        }

        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary-purple);
            margin-bottom: 1rem;
        }

        .feature-card h3 {
            margin-bottom: 1rem;
            color: var(--dark-blue);
        }

        /* Demo Section */
        .demo, .over, .mini-cursus, .ebook {
            background: linear-gradient(135deg, var(--primary-purple));
            color: var(--text-light);
            padding: 5rem 0;
            text-align: center;
        }

        

        .demo-illustration {
            /* grid wrapper zorgt voor twee kolommen: content links, illustratie rechts */
            /* .over-grid wordt toegevoegd rond over-content + over-afbeelding */
        }
        
        .demo-grid, .over-grid {
            display: grid;
            grid-template-columns: 1fr 420px;
            /* content | illustratie (fixed max width) */
            gap: 2rem;
            align-items: center;
            justify-content: center;
        }

        .demo-content, .over-content {
            max-width: 800px;
            margin: 0;
        }

        .demo p,
        .contact p,
        .over p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }

        .over-content h2, .mini-content h2, .ebook-content h2 {
            color: var(--text-light);
        }

        .over-afbeelding {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 50px;
            padding-top: 0;
            border-radius: 50%;
        }

        .demo-illustration{
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 170px;
            padding-top: 0;

        }

        .demo-illustration img, .over-afbeelding img {
            width: 100%;
            max-width: 420px;
            /* gelijke max breedte als contact-illustration */
            height: auto;
            display: block;
        }

        .demo-form {
            background-color: var(--white);
            border-radius: 10px;
            padding: 2rem;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.9);
            max-width: 400px;
            margin: 2rem auto 0;
        }

        .demo-form h3 {
            color: var(--dark-purple);
            margin-bottom: 1.5rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
            text-align: left;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--text-dark);
            font-weight: 500;
        }

        .form-group input {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
        }

        .form-button {
            width: 100%;
            background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
            color: var(--text-light);
            border: none;
            padding: 12px;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: bold;
            cursor: pointer;
            transition: opacity 0.3s;
        }

        .form-button:hover {
            opacity: 0.9;
        }

        .demo-credentials {
            margin-top: 1rem;
            font-size: 0.9rem;
            color: var(--text-dark);
            background-color: #f0f4ff;
            padding: 10px;
            border-radius: 5px;
        }

        /* Gratis Mini-cursus Section */
        .mini-cursus {
            padding: 5rem 0;
        }
        .mini-grid, .ebook-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2.5rem;
            align-items: center;
        }
        .mini-content h3, .ebook-content h3 {
            margin-bottom: 1rem;
            color: var(--dark-purple);
        }
        .mini-content p, .ebook-content p {
            margin-bottom: 2rem;
            font-size: 1.3rem;
        }
        .mini-illustration, .ebook-illustration {
            display: flex;
            align-items: center;
            justify-content: center;
            padding-top: 1rem;
        }
        .mini-illustration img, .ebook-illustration img {
            width: 100%;
            max-width: 360px;
            height: auto;
            display: block;
            border-radius: 10px;
        }

        /* Zorg dat op mobiele schermen de illustratie boven de content komt */
        @media (max-width: 768px) {
    /* Als .mini-grid twee kolommen heeft, stapelen we naar één kolom */
    .mini-grid, .ebook-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        align-items: start;
    }

    /* Plaats illustratie vooraan in de flow zodat hij boven de h2 staat */
    .mini-illustration, .ebook-illustration {
        order: -1;
        width: 100%;
        padding-top: 0.5rem;
        margin-bottom: 0.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Maak mini-illustration gelijk aan contact-illustration op mobile */
    .mini-illustration img,
    .contact-illustration img {
        max-width: 360px;
        width: 100%;
        height: auto;
        display: block;
        border-radius: 10px;
    }

    /* Extra small devices: iets smaller percentage */
    @media (max-width: 640px) {
        .mini-illustration img,
        .contact-illustration img {
            max-width: 70%;
        }
    }

    /* Kleine spacing tweak voor de titel onder de afbeelding */
    .mini-content h2 {
        margin-top: 0.25rem;
    }
}

        /* Contact Section */
        .contact {
            padding: 5rem 0;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2.5rem;
            align-items: center;
        }

        .contact-info h3 {
            margin-bottom: 1rem;
            color: var(--dark-purple);
        }

        .contact-info p {
            margin-bottom: 2rem;
        }

        .contact-details {
            margin-top: 2rem;
        }

        .contact-detail {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }

        .contact-icon {
            margin-right: 10px;
            color: var(--primary-blue);
        }

        .contact-wrapper {
            display: flex;
            gap: 2rem;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            /* voor mobiel */
        }

        .contact-illustration {
            display: flex;
            align-items: center;
            justify-content: center;
            padding-top: 1rem;
        }

        .contact-illustration img{
            width: 100%;
            max-width: 420px;
            height: auto;
            display: block;
        }

        /* Zorg dat feature-iconen ook goed schalen op kleine schermen */
        .feature-icon {
            font-size: 2.2rem;
        }

        .contact-form {
            background-color: var(--white);
            border-radius: 10px;
            padding: 2rem;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.09);
        }

        /* blog */
        .blog-hero {
padding: 28px 0 8px;
border-bottom: 1px solid rgba(0,0,0,0.04);
}
.blog-hero h1 { margin: 0 0 6px; color: var(--accent, #6a0dad); font-size: 2rem; }
.blog-hero p { margin: 0; color: var(--muted, #6b6b74); }

.blog-layout {
display: grid;
grid-template-columns: 1fr 320px;
gap: 28px;
margin-top: 22px;
}

/* Main column */
.blog-main { min-width: 0; }

.blog-tools {
display: flex;
gap: 12px;
align-items: center;
margin-bottom: 18px;
flex-wrap:wrap;
}

 .post-list {
            display: grid;
            gap: 18px;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        }

        /* Card: image on top to avoid flex truncation issues */
        .post-card {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 28px rgba(11, 22, 55, 0.04);
            transition: transform .16s ease;
            display: flex;
            flex-direction: column;
            min-height: 180px;
        }

        .post-card:hover {
            transform: translateY(-6px);
        }

        .post-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
        }

        .post-body {
            padding: 14px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            flex: 1 1 auto;
            min-width: 0;
        }

        .post-title {
            margin: 0;
            font-size: 1.05rem;
            line-height: 1.25;
        }

        .post-title a {
            color: inherit;
            text-decoration: none;
        }

        .post-excerpt {
            margin: 0;
            color: var(--muted, #6b6b74);
            line-height: 1.5;
            word-break: break-word;
            hyphens: auto;
        }

        .post-meta {
            display: flex;
            gap: 8px;
            align-items: center;
            color: var(--muted, #6b6b74);
            font-size: 0.9rem;
            margin-top: auto;
        }

        .read-more {
            margin-left: auto;
            color: var(--accent, #6a0dad);
            font-weight: 700;
            text-decoration: none;
        }

        /* Tools */
        .blog-tools {
            display: flex;
            gap: 12px;
            align-items: center;
            margin-bottom: 18px;
            flex-wrap: wrap;
        }





.search-input {
flex: 1 1 360px;
padding: 10px 12px;
border: 1px solid #e6e6e6;
border-radius: 10px;
background: #fff;
font-size: 0.95rem;
}
.tag-list { display:flex; gap:8px; flex-wrap:wrap; }
.tag {
background: transparent;
border: 1px solid rgba(0,0,0,0.06);
padding: 6px 10px;
border-radius: 999px;
cursor: pointer;
font-weight:600;
color:var(--muted);
}
.tag.active, .tag:hover { background: linear-gradient(90deg,var(--accent),var(--accent-2)); color:#fff;
border-color:transparent; }

.sidebar .card {
            margin-bottom: 16px;
        }



/* Posts grid */
.blog-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 18px;
}

/* Post card */
.post-card {
display: flex;
gap: 14px;
background: #fff;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 8px 26px rgba(11,22,55,0.04);
transition: transform 160ms ease, box-shadow 160ms ease;
}
.post-card:hover { transform: translateY(-6px); box-shadow: 0 18px 46px rgba(11,22,55,0.08); }

.post-thumb {
width: 220px;
height: 150px;
object-fit:cover;
display:block;
}
.post-thumb-link { display:block; flex: 0 0 220px; overflow:hidden; }

.post-body { padding: 14px 16px; display:flex; flex-direction:column; justify-content:space-between; }
.post-title { margin: 0 0 8px; font-size: 1.05rem; color: #111; }
.post-title a { text-decoration:none; color:inherit; }
.post-excerpt { margin: 0 0 12px; color: var(--muted); }

.post-meta { display:flex; gap:8px; align-items:center; font-size:0.9rem; color:var(--muted); }
.meta-sep { opacity:0.45; }
.read-more { margin-left: auto; text-decoration:none; color:var(--accent); font-weight:700; }

/* Sidebar */
.sidebar { position: relative; }
.sidebar-section { margin-bottom: 16px; }
.recent-list, .category-list { list-style:none; margin:0; padding:0; }
.recent-list li + li, .category-list li + li { margin-top: 8px; }
.recent-list a { text-decoration:none; color: #111; }
.category-list button { background:transparent; border:0; color:var(--muted); cursor:pointer; padding:6px 0; }

/* Pagination */
.pagination { display:flex; gap:8px; justify-content:flex-start; margin:20px 0; }

/* Small screens */
@media (max-width: 1024px) {
.blog-grid, .post-card, .post-body { grid-template-columns: 1fr; }
.post-thumb { width: 160px; height: 120px; }
.post-thumb-link { flex: 0 0 160px; }
}

@media (max-width: 768px) {
.blog-layout { grid-template-columns: 1fr; }
.sidebar { order: 2; }
.blog-main { order: 1; }
.search-input { flex-basis: 100%; }
.post-thumb, .post-thumb-link { width: 120px; height: 90px; flex: 0 0 120px; }
}


/* Accessibility / reduced motion */
@media (prefers-reduced-motion: reduce) {
.post-card { transition: none; }
}

        /* Footer */
        footer {
            background-color: var(--dark-purple);
            color: var(--text-light);
            padding: 3rem 0 1rem;
        }

        .footer-column {
            margin-bottom: 2rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-column h4 {
            margin-bottom: 1rem;
            color: var(--light-blue);
        }

        .footer-column ul {
            display: block;
            padding-left: 0;
            margin: 0;
        }

        .footer-column ul li {
            margin-bottom: 0.5rem;
        }

        .footer-column a {
            color: var(--text-light);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-column a:hover {
            color: var(--light-blue);
        }

        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Dashboard Styles */
        .dashboard {
            display: none;
            padding: 2rem 0;
        }

        .dashboard-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
        }

        .dashboard-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
        }

        .dashboard-card {
            background-color: var(--white);
            border-radius: 10px;
            padding: 1.5rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        }

        .dashboard-card h3 {
            margin-bottom: 1rem;
            color: var(--dark-blue);
        }

        .chart-placeholder {
            height: 200px;
            background-color: #f0f4ff;
            border-radius: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--dark-blue);
            font-weight: bold;
        }

        .a {
            color: var(--light-blue);
        }

        .logout-btn {
            background-color: var(--light-blue);
            color: var(--text-light);
            border: none;
            padding: 8px 16px;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .logout-btn:hover {
            background-color: var(--dark-blue);
        }

        .quote-left {
            display: flex;
            align-items: flex-start;
            justify-content: flex-start;
            text-align: left;
            color: var(--light-blue);
            /* jouw accentkleur */
            font-style: italic;
            font-size: 1.5em;
            max-width: 800px;
            margin: 2rem 0;


            padding: 2rem 0;
        }

        .quote-left i {
            font-size: 1.5em;
            margin-right: 0.5rem;
            margin-top: 0.2em;
        }

        /* Diensten Sections Styling */
        .diensten-onepager section {
            padding: 5rem 0;
            position: relative;
            overflow: hidden;
        }

        .diensten-onepager section:nth-child(odd) {
            background: linear-gradient(135deg, var(--primary-purple));
            color: var(--text-light);
        }

        .diensten-onepager section:nth-child(even) {
            background: var(--white);
            color: var(--text-dark);
        }

        .diensten-content {
            display: grid;
            grid-template-columns: 1fr 400px;
            gap: 3rem;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        
        .dienst-info h2 {
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            color: var(--dark-purple);
            text-align: ;
        }

        .dienst-info p {
            font-size: 1.2rem;
            line-height: 1.6;
            margin-bottom: 2rem;
            text-align: left;
        }

        .dienst-illustration {
            position: relative;
            height: auto;
            min-height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .dienst-illustration img {
            max-width: 100%;
            height: auto;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        .features-list {
            list-style: none;
            margin-top: 2rem;
        }

        .features-list li {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }

        .features-list li i {
            color: var(--light-blue);
            font-size: 1.2rem;
        }

        .carousel-control-next,
.carousel-control-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 60;
  color: #fff;
  background: linear-gradient(135deg, rgba(106,13,173,0.95), rgba(30,127,138,0.95)); /* huisstijl gradient */
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
  opacity: 0.98;
  font-size: 1.2rem;
}

/* positionering */
.carousel-control-prev { left: 12px; }
.carousel-control-next { right: 12px; }

/* hover / active / focus states */
.carousel-control-next:hover,
.carousel-control-prev:hover {
  transform: translateY(-50%) scale(1.06);
  opacity: 1;
}

.carousel-control-next:active,
.carousel-control-prev:active {
  transform: translateY(-50%) scale(0.98);
}

.carousel-control-next:focus,
.carousel-control-prev:focus {
  outline-offset: 3px;
}

/* icoon styling binnen knop (bijv. ‹ › of fa-icons) */
.carousel-control-next::before,
.carousel-control-prev::before {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
}

/* als je font-awesome gebruikt: zorg dat iconen goed schalen */
.carousel-control-next i,
.carousel-control-prev i {
  font-size: 1.15rem;
  line-height: 1;
  pointer-events: none;
  color: #4b0082; /* donkerpaars voor contrast */
}

/* mobiel: iets kleiner en dichter bij rand */
@media (max-width: 768px) {
  .carousel-control-next,
  .carousel-control-prev {
    width: 40px;
    height: 40px;
  }
  .carousel-control-prev { left: 8px; }
  .carousel-control-next { right: 8px; }
}

@media (min-width: 768px) {
  .carousel-btn {
    font-size: 1.2rem; /* niet groter maken op desktop */
    padding: 0.5rem;
  }
}

/* Responsive Design voor diensten */
        @media (max-width: 992px) {
            .diensten-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .dienst-illustration {
                min-height: 180px;
                padding: 15px;
            }

            .dienst-illustration img {
                max-width: 80%;
            }
        }

         @media (max-width: 768px) {
            .diensten-onepager section {
                padding: 3rem 0;
            }

            .dienst-info h2 {
                font-size: 2rem;
            }

            .dienst-illustratie {
                height: 200px;
                order: -1;
            }

            .dienst-illustration {
                min-height: 150px;
                padding: 10px;
            }

            .dienst-illustration img {
                max-width: 70%;
            }

            .logo img {
                height: 40px;
            }
        }

         @media (max-width: 480px) {
            .dienst-illustration {
                min-height: 120px;
            }

            .dienst-illustration img {
                max-width: 60%;
            }

            .logo img {
                height: 35px;
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
    /* Zorg dat header hoogte bekend is (pas indien nodig) */
    :root { --header-height: 30px; }

    header {
                width: 100%;
                height: auto;
                margin: 0;
                padding: 1rem 1.5rem;
                align-items: center;
                display: flex;
                flex-direction: row;
                justify-content: space-between;
            }
    header .container {
                max-width: 1400px;
                width: 100%;
                margin: 0 auto;
                padding: 0 2rem
            }

    .header-content {
                width: 100%;
                display: flex;
                padding: 0;
                gap: 1rem;
                justify-content: space-between;
                align-items: center;
                flex-wrap: wrap;

            }
    .logo {
                display: flex;
                align-items: center;
                gap: 1rem;
                
            }
    .logo img {
                height: 40px;
            }
    .site-title {
  font-size: 1.2rem;
  margin: 0;
  color: white; /* of jouw merk-kleur */
}

   

nav ul {
        display: flex;              /* standaard verbergen */
        position: fixed;               /* fixed zodat het boven content verschijnt */
        top: calc(var(--header-height) + 8px); /* net onder de header */
        right: 12px;
        flex-direction: column;
        gap: 1rem;
        min-width: 200px;
        padding: 0.75rem 1rem;
        border-radius: 0.5rem;
        background: linear-gradient(135deg, rgba(106,13,173,0.95), rgba(30,127,138,0.95));
        box-shadow: 0 10px 25px rgba(0,0,0,0.18);
        z-index: 200;
    }

   

    /* Wanneer de .show klasse wordt toegevoegd via JS, toon het menu */
    nav ul.show {
        display: flex;
    }

nav a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: opacity 0.2s ease;
}

nav a:hover {
  opacity: 0.8;
}


    .mobile-menu-btn {
        display: block; /* toon op mobiel */
        background: transparent;
        border: none;
        color: var(--text-light);
        font-size: 1.2rem;
        cursor: pointer;
        padding: 6px;
        border-radius: 6px;
    }
    .mobile-menu-btn:hover {
        background: rgba(255, 255, 255, 0.1);
    }
    @media (max-width: 600px) {
    .logo,
    .logo-text {
        display: none;
    }

  header {
    height: 50px; /* of wat je prettig vindt */
    padding: 10px;
  }
}
    @media (max-width: 768px) {
  .mobile-menu-btn {
    display: block; /* toon op mobiel */
    position: absolute;
    height: auto;
    top: 1rem;
    right: 1rem;
  }

  nav ul {
    display: none; /* verberg menu standaard op mobiel */
    flex-direction: column;
    background-color: white;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    padding: 1rem;
    z-index: 999;
  }

  nav ul.active {
    display: flex; /* toon menu als actief */
  }
}


    /* Zorg dat contact- en demo-secties stapelen */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .demo-grid, .over-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Plaats illustratie bovenaan voor mobiel (optioneel) */
            .contact-illustration,
            .dienst-illustration,
            .over-afbeelding {
                order: -1;
                display: flex;
            }
            
        .hero h2 {
                font-size: 2.8rem;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            /* Demo: stapel op mobiele schermen, illustratie boven de form */
            .demo-grid, .over-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .demo-illustration, .over-afbeelding {
                order: -1;
            }

            .over-afbeelding img {
                max-width: 70%;
                border-radius: 50%;
            }
}

@media (max-width: 768px) {
  .quote-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .quote-section img {
    max-width: 200px;
    margin-bottom: 1rem;
  }
}

/* Responsive tweak */
@media (max-width: 768px) {
  .cta-button {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 1.1rem;
    padding: 1rem;
    margin: 1rem 0;
  }
}

/* Forceer desktop nav zichtbaar en horizontaal */
@media (min-width: 769px) {
  .mobile-menu-btn { display: none !important; }

  /* pak zowel nav ul als .nav ul om eerdere regels te overrulen */
  nav ul,
  .nav ul {
    display: flex !important;
    flex-direction: row !important;
    gap: 2rem;
    align-items: center;
    position: static !important;
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    width: auto !important;
    right: auto !important;
    z-index: 1000;
  }

  nav ul li,
  .nav ul li {
    display: inline-block;
  }

  nav a {
    display: inline-block;
    padding: 0;
    color: var(--text-light);
  }
}

/* --- Extra responsive: tablet / portrait --- */
/* Tablet landscape (<= 1024px) */
@media (max-width: 1024px) {
  /* Hero */
  .hero { padding: 4rem 0; }
  .hero h2 { font-size: 2.4rem; }
  .hero p { font-size: 1.1rem; max-width: 640px; }

  /* Grids: meestal 2 kolommen op tablets */
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .pricing-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
  .demo-grid, .over-grid { grid-template-columns: 1fr 360px; gap: 1.5rem; }

  /* Illustraties/middelen iets kleiner */
  .demo-illustration img,
  .over-afbeelding img,
  .contact-illustration img,
  .dienst-illustration img { max-width: 360px; }

  /* Pricing table op tablet: maak scroll minder nodig */
  table { min-width: 100%; }

  /* Footer: houd kolommen maar maak tekst kleiner indien nodig */
  .footer-column { padding-right: 0.25rem; }
}

/* Narrow tablets and large phones (<= 900px) */
@media (max-width: 900px) {
  .hero h2 { font-size: 2.1rem; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .feature-card { padding: 1.5rem; }
  .demo-form, .contact-form { max-width: 360px; margin: 1.5rem auto 0; }
  .dashboard-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
}

/* Portrait orientation tweaks for medium and small screens */
@media (orientation: portrait) and (max-width: 1024px) {
  /* Maak alles meer verticaal en leesbaar in portrait */
  .header-content { padding: 0.5rem 0; }
  .logo h1 { font-size: 1rem; }
  .hero { padding: 3rem 0; }
  .hero h2 { font-size: 1.95rem; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .demo-grid, .over-grid { grid-template-columns: 1fr; }
  .over-afbeelding img { max-width: 70%; }
  .demo-illustration img { max-width: 70%; }
  .contact-illustration img { max-width: 70%; }
  .footer-content { grid-template-columns: 1fr; text-align: center; }
}

/* Small screens fallback (<= 600px) - tighten spacing */
@media (max-width: 600px) {
  .hero h2 { font-size: 1.8rem; }
  .hero p { font-size: 1rem; padding: 0 8px; }
  .logo img { height: 36px; }
  .logo h1 { font-size: 0.95rem; }
  .features-grid, .pricing-grid { gap: 1rem; }
  .demo-form, .contact-form { padding: 1.25rem; }
  .over-afbeelding { margin-top: 20px; }
  .over-afbeelding img { max-width: 80%; border-radius: 50%; }
  .carousel-control-next, .carousel-control-prev { width: 36px; height: 36px; font-size: 1rem; }
  table { font-size: 0.95rem; }
}

/* Ensure navigation visibility for mid-size devices:
   keep desktop-style horizontal on sufficiently wide screens,
   and ensure collapsed/fixed menu behaves on narrower screens. */
@media (min-width: 769px) and (max-width: 1200px) {
  nav ul { display: flex !important; gap: 1.25rem; align-items: center; flex-wrap: wrap; }
  .mobile-menu-btn { display: none !important; }
  nav a { padding: 6px 8px; font-size: 0.95rem; }
}

/* Minor accessibility / spacing tweaks */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}

/* End additions */

/* Blog section — verplaatst vanaf index.html, volledig responsive */

/* basisvariabelen (gebruik bestaande :root indien al gedefinieerd) */
:root {
  --blog-gap: 18px;
}

/* container spacing */
.blog {
  padding: 40px 0;
}

.blog .section-title {
  margin-bottom: 18px;
  font-size: 2.8rem;
  color: var(--accent, #6a0dad);
}

/* responsive grid voor posts */
.blog-posts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--blog-gap);
  align-items: start;
}

/* individuele post card */
.blog-post {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(11,22,55,0.04);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform .16s ease, box-shadow .16s ease;
}

.blog-post:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(11,22,55,0.06);
}

/* thumbnail */
.blog-thumb {
  display: block;
  width: 100%;
  flex: 0 0 auto;
}
.blog-thumb img {
  width: 100%;
  height: 180px; /* desktop default */
  object-fit: cover;
  display: block;
}

/* body/content binnen card */
.blog-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1 1 auto;
  min-height: 0;
}

.blog-body h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.25;
}
.blog-body h3 a {
  color: inherit;
  text-decoration: none;
}

/* excerpt */
.blog-body p {
  margin: 0;
  color: var(--muted, #6b6b74);
  line-height: 1.45;
  font-size: 0.96rem;
  overflow-wrap: break-word;
}

/* meta / read more row */
.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  font-size: 0.92rem;
  color: var(--muted, #6b6b74);
}
.blog-meta a {
  color: var(--accent, #6a0dad);
  text-decoration: none;
  font-weight: 700;
}

/* small devices: stacked single column & smaller images */
@media (max-width: 900px) {
  .blog-thumb img {
    height: 160px;
  }
  .blog-body {
    padding: 14px;
  }
}

/* mobile devices: smaller text and images */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.5rem;
  }
}

/* very small devices: single column layout, readable spacing */
@media (max-width: 640px) {
  .blog-posts {
    grid-template-columns: 1fr;
  }
  .blog-thumb img {
    height: 140px;
  }
  .blog .section-title {
    font-size: 1.5rem;
  }
  .blog-body p {
    font-size: 0.95rem;
  }
  .blog-body h3 {
    font-size: 1rem;
  }
}

/* accessibility: reduce motion */
@media (prefers-reduced-motion: reduce) {
  .blog-post, .blog-post:hover { transform: none; transition: none; }
}

/* Decemberdeal / pagina-specifieke styles
   Verplaatst uit decemberdeal.html en uitgebreid met responsive rules
*/

/* kleurvariabelen (voeg niet toe als al in bestand aanwezig) */
:root{
  --accent:#6a0dad;
  --accent-2:#1e7f8a;
  --muted:#6b6b74;
  --card:#fff;
  --container:1100px;
}

/* container */
.dd-container{
  max-width:var(--container);
  margin:36px auto;
  padding:20px;
  box-sizing:border-box;
}

/* hero */
.dd-hero{
  display:flex;
  gap:22px;
  align-items:center;
  background:linear-gradient(90deg, rgba(106,13,173,0.06), rgba(30,127,138,0.03));
  padding:28px;
  border-radius:12px;
  box-shadow:0 12px 30px rgba(11,22,55,.05);
}
.dd-hero-left{ flex:1; min-width:0; }
.dd-title{ margin:0; font-size:2rem; color:var(--accent); line-height:1.05; }
.dd-lead{ margin:8px 0 0; color:var(--muted); font-size:1rem; }
.dd-cta-row{ margin-top:16px; display:flex; gap:12px; flex-wrap:wrap; }

/* buttons */
.btn-primary{
  background:var(--accent);
  color:#fff;
  padding:12px 18px;
  border-radius:40px;
  text-decoration:none;
  font-weight:700;
  display:inline-block;
  border:0;
}
.btn-secondary{
  background:transparent;
  border:2px solid rgba(106,13,173,0.12);
  color:var(--accent);
  padding:10px 16px;
  border-radius:10px;
  text-decoration:none;
  font-weight:700;
}

/* badge */
.dd-badge{
  flex:0 0 160px;
  background:linear-gradient(180deg,var(--accent),var(--accent-2));
  color:#fff;
  padding:18px;
  border-radius:10px;
  text-align:center;
  font-weight:800;
  box-shadow:0 8px 20px rgba(106,13,173,.12);
}
.dd-badge small{ display:block; font-weight:600; opacity:.95; }

/* features / pricing */
.features-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:16px; margin:22px 0; }
.feature{ background:var(--card); padding:14px; border-radius:10px; box-shadow:0 8px 20px rgba(11,22,55,.04); }

.pricing-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:16px; margin:22px 0; }
.price-card{ background:var(--card); border-radius:10px; padding:16px; box-shadow:0 8px 24px rgba(11,22,55,.04); display:flex; flex-direction:column; justify-content:space-between; min-height:200px; }
.price-card h4{ margin:0 0 8px; }
.price-old{ color:#b0b0b5; text-decoration:line-through; font-weight:700; }
.price-new{ color:var(--accent); font-size:1.4rem; font-weight:900; margin-top:6px; }
.cta-strong{ display:block; margin-top:18px; background:linear-gradient(90deg,var(--accent),var(--accent-2)); color:#fff; padding:14px 18px; border-radius:12px; text-align:center; text-decoration:none; font-size:1.05rem; font-weight:900; }

/* hero image */
.hero-image{ width:100%; max-height:260px; object-fit:cover; border-radius:8px; display:block; margin-top:18px; }

/* contact / form */
.form-grid{
  display:grid;
  grid-template-columns:1fr 320px;
  gap:16px;
  align-items:start;
}
.form-column{ display:flex; flex-direction:column; gap:10px; }
.form-group{ display:flex; flex-direction:column; gap:6px; }
.form-group input, .form-group textarea{
  padding:10px;
  border:1px solid #e6e6e6;
  border-radius:8px;
  font-size:1rem;
  width:100%;
  box-sizing:border-box;
}
.form-actions{ display:flex; gap:10px; flex-wrap:wrap; }

/* info / aside cards */
.info-card{
  background:#fff;
  padding:12px;
  border-radius:10px;
  box-shadow:0 8px 20px rgba(11,22,55,.04);
}

/* FAQ */
.faq{ margin-top:22px; }
.faq summary{ cursor:pointer; padding:10px; background:#f7f7fb; border-radius:8px; margin-bottom:8px; }

/* footer */
.site-footer{ text-align:center; padding:24px 12px; color:var(--muted); font-size:.95rem; }

/* small responsive adjustments */
@media (max-width:900px){
  .dd-hero{ flex-direction:column; align-items:stretch; }
  .dd-badge{ width:100%; text-align:center; order:2; }
  .dd-hero-left{ order:1; }
  .form-grid{ grid-template-columns:1fr; }
  .hero-image{ max-height:220px; }
}
@media (max-width:640px){
  .dd-title{ font-size:1.45rem; }
  .dd-lead{ font-size:.98rem; }
  .hero-image{ max-height:180px; }
  .dd-hero{ padding:18px; gap:12px; }
  .btn-primary, .btn-secondary{ padding:10px 12px; font-size:.95rem; }
  .price-card{ padding:14px; }
  .form-group input, .form-group textarea{ font-size:.95rem; padding:10px; }
  .dd-container{ padding:16px; margin:20px auto; }
  .info-card{ padding:10px; }
}

/* reduce motion */
@media (prefers-reduced-motion: reduce){
  *{ transition:none !important; }
}

/* Templates pagina stijlen */
 .templates-container {
            max-width: 1200px;
            margin: 28px auto;
            padding: 0 16px;
        }

        .templates-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            margin-bottom: 18px;
        }

        .templates-header h1 {
            margin: 0;
            font-size: 1.25rem;
        }



        .templates-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 18px;
        }

        .template-card {
            background: var(--card, #fff);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 22px rgba(11, 22, 55, 0.06);
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .template-thumb {
            width: 100%;
            height: 160px;
            object-fit: cover;
            display: block;
            background: #f3f4f6;
        }

        .template-body {
            padding: 14px;
            display: flex;
            gap: 12px;
            flex-direction: column;
            flex: 1;
        }

        .template-title {
            font-weight: 700;
            margin: 0 0 6px;
            color: var(--text-dark, #111);
            font-size: 1rem;
        }

        .template-desc {
            margin: 0 0 12px;
            color: var(--muted, #6b7280);
            font-size: 0.95rem;
            flex: 1;
        }

        .template-actions {
            display: flex;
            gap: 8px;
            align-items: center;
        }

        .btn {
            display: inline-block;
            padding: 8px 12px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 700;
            font-size: 0.95rem;
            border: none;
            cursor: pointer;
        }

        .btn-primary {
            background: linear-gradient(90deg, #6a0dad, #1e7f8a);
            color: #fff;
            border-radius: 40px;
        }

        .btn-ghost {
            background: transparent;
            border: 1px solid rgba(0, 0, 0, 0.06);
            color: var(--text-dark, #111);
        }

        /* Preview modal (simple, accessible) */
        .preview-modal {
            position: fixed;
            inset: 0;
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 4000;
            background: rgba(8, 10, 15, 0.55);
            padding: 24px;
        }

        .preview-modal.show {
            display: flex;
        }

        .preview-frame-wrap {
            width: 100%;
            max-width: 1100px;
            height: 84vh;
            background: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 18px 50px rgba(8, 10, 15, 0.35);
            display: flex;
            flex-direction: column;
        }

        .preview-toolbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 8px 12px;
            background: linear-gradient(90deg, #f8fafc, #fff);
            border-bottom: 1px solid rgba(0, 0, 0, 0.04);
        }

        .preview-toolbar .title {
            font-weight: 700;
            color: #111;
            font-size: 0.95rem;
        }

        .preview-iframe {
            width: 100%;
            height: 100%;
            border: 0;
            flex: 1;
        }

        .close-btn {
            background: transparent;
            border: none;
            font-size: 1.25rem;
            cursor: pointer;
            padding: 6px;
        }

        @media (max-width:768px) {
            .preview-frame-wrap {
                height: 90vh;
                max-width: 100%;
            }

            .template-thumb {
                height: 140px;
            }
        }

/* Consultancy pagina stijlen */
        .consultancy-hero {
  display: flex;
  gap: 24px;
  align-items: center;
  background: linear-gradient(90deg, rgba(106,13,173,0.04), rgba(30,127,138,0.02));
  padding: 36px;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(11,22,55,0.05);
}
.consultancy-hero .left {
  flex: 1 1 auto;
  min-width: 0;
}
.consultancy-hero h1 {
  margin: 0 0 10px 0;
  font-size: 2rem;
  color: var(--accent);
  line-height: 1.05;
}
.consultancy-hero p.lead {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  max-width: 70ch;
}
.consultancy-cta {
  margin-top: 16px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.consultancy-hero .figure {
  width: 320px;
  flex: 0 0 320px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(11,22,55,0.04);
}
.consultancy-hero .figure img { width:100%; height:100%; object-fit:cover; display:block; }

/* Services */
.consultancy-services { margin-top: 28px; display:grid; gap:18px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.service {
  background: var(--card);
  padding: 16px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(11,22,55,0.04);
  display:flex;
  flex-direction:column;
  gap:10px;
}
.service .icon { font-size:1.5rem; color:var(--accent); }

/* Process */
.consultancy-process { margin-top: 28px; display:flex; flex-direction:column; gap:14px; }
.process-steps { display:grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap:14px; }
.step { background:var(--card); padding:14px; border-radius:10px; box-shadow:0 8px 20px rgba(11,22,55,0.04); }
.step .num { background:linear-gradient(90deg,var(--accent),var(--accent-2)); color:#fff; width:36px; height:36px; display:inline-grid; place-items:center; border-radius:8px; font-weight:800; margin-right:10px; }

/* Testimonials */
.consultancy-testimonials { margin-top:28px; }
.testimonial { background:var(--card); padding:14px; border: 2px solid #4b0082; border-radius:10px; box-shadow:0 8px 20px rgba(11,22,55,0.2); }

/* Contact / form */
.consultancy-contact { margin-top:28px; }
.contact-grid { display:grid; grid-template-columns:1fr 360px; gap:16px; align-items:start; }
.contact-column { display:flex; flex-direction:column; gap:10px; }
.form-group { display:flex; flex-direction:column; gap:6px; }
.form-group input, .form-group textarea {
  padding:10px; border:1px solid #e6e6e6; border-radius:8px; font-size:1rem; width:100%; box-sizing:border-box;
}
.contact-aside { display:flex; flex-direction:column; gap:12px; }
.info-card { background:var(--card); padding:12px; border-radius:10px; box-shadow:0 8px 20px rgba(11,22,55,0.04); }

/* Checklist */
.consultancy-checklist{
  margin-top:28px;
  background:var(--card);
  border:1px solid #ececf1;
  border-radius:12px;
  padding:22px 20px;
  box-shadow:0 8px 24px rgba(11,22,55,.05);
  display:flex;
  flex-direction:column;
  gap:12px;
}
.consultancy-checklist h2{
  margin:0;
  font-size:1.15rem;
  line-height:1.25;
  color:#1a1a1f;
}
.consultancy-checklist p{margin:0;color:var(--muted);max-width:70ch;}
.consultancy-checklist .btn{width:fit-content;}
@media (max-width:640px){
  .consultancy-checklist{padding:18px;}
}

/* Small utilities */
.kicker { color:var(--muted); font-weight:600; font-size:.95rem; }

/* Responsive */
@media (max-width: 1024px) {
  .consultancy-hero { flex-direction:column; align-items:stretch; }
  .consultancy-hero .figure { width:100%; flex:none; max-height:320px; order:2; }
}
@media (max-width: 820px) {
  .contact-grid { grid-template-columns:1fr; }
  .consultancy-hero h1 { font-size:1.6rem; }
  .consultancy-hero p.lead { font-size:.98rem; }
  .consultancy-hero .figure img { max-height:240px; object-fit:cover; }
}
@media (max-width: 640px) {
  .container { padding:18px; }
  .consultancy-hero { padding:18px; gap:12px; }
  .consultancy-hero h1 { font-size:1.4rem; }
  .form-group input, .form-group textarea { font-size:.95rem; padding:10px; }
  .consultancy-hero .figure img { max-height:180px; }
  .services-grid { gap:12px; }
}

/* reduce motion */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}

/* --- eBook page specific styles --- */
.ebook-page .ebook-hero{ padding:48px 0; }
.ebook-hero-inner{ display:flex; gap:28px; align-items:center; }
.ebook-hero .cover img{ width:260px; max-width:32vw; border-radius:8px; box-shadow:0 12px 30px rgba(11,22,55,0.08); }
.ebook-hero .hero-content{ max-width:720px; }
.ebook-hero .kicker{ color:var(--muted); font-weight:700; display:inline-block; margin-bottom:8px; }
.ebook-hero h1{ margin:6px 0 8px; color:var(--accent); font-size:2rem; }
.ebook-hero .lead{ margin-bottom:12px; color:var(--muted); }
.inline-form{ display:inline-flex; gap:8px; align-items:center; }
.inline-form input[type="email"]{ padding:10px 12px; border-radius:8px; border:1px solid #e6e6e6; min-width:220px; }
.inline-form input.invalid{ outline:2px solid #ff6b6b; }
.ebook-excerpt{ padding:28px 0; }
.ebook-author{ padding:18px 0; border-top:1px solid #f0f0f3; border-bottom:1px solid #f0f0f3; }
.ebook-author .avatar{ width:84px; height:84px; border-radius:999px; object-fit:cover; margin-right:14px; }
.author-inner{ display:flex; gap:14px; align-items:center; }
.ebook-testimonials{ padding:18px 0; }
.testi-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:12px; }
.testi-grid blockquote{ background:var(--card); padding:12px; border-radius:8px; }
.ebook-cta{ padding:28px 0; }
.btn.large{ padding:14px 28px; font-size:1.05rem; }
.thanks{ margin-top:12px; color:var(--accent); font-weight:700; }

@media (max-width: 820px){
    .ebook-hero-inner{ flex-direction:column; align-items:center; text-align:center; }
    .ebook-hero .cover img{ width:220px; }
    .inline-form input[type="email"]{ min-width:160px; }
}

/* end eBook styles */

/* Tools pagina stijlen */
/* Hero */
.tools-hero {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.tools-hero h1 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  color: #3b0066;
}


.tools-hero p {
  font-size: 1.2rem;
  color: #555;
}

/* CTA */
        .btn {
            display: inline-block;
            background: #4b0082;
            color: #fff;
            padding: 0.9rem 1.6rem;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            transition: opacity .2s ease;
        }

/* Grid */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.tool-card {
  border: 1px solid #e5e5e5;
  padding: 2rem;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.tool-card .icon {
  margin-bottom: 1rem;
  color: #1e7f8a; /* Zet hier jouw merk-kleur */
}
.tool-card .icon svg {
  opacity: 0.85;
}

.tool-card .icon svg {
  display: block;
  width: 2.6rem;
  height: 2.6rem;
}

.tool-card .icon svg {
  transition: all 0.3s ease;
  opacity: 0.85;
  stroke-dasharray: 100;
  stroke-dashoffset: 0;
}

.tool-card:hover .icon svg {
  transform: translateY(-2px);
  opacity: 1;
  stroke-dashoffset: -100;
}


.tool-card h2 {
  font-size: 1.5rem;
  color: #3b0066;
}

.tool-card:hover {
  border-color: #3b0066;
  transform: translateY(-4px);
}

.tool-card h2 {
  margin-bottom: 0.5rem;
}

.tool-card p {
  margin-bottom: 1.5rem;
  color: #444;
}

/* Disabled cards */
.tool-card.disabled {
  opacity: 0.6;
  pointer-events: none;
}

.cta.disabled {
  border-color: #aaa;
  color: #aaa;
}

/* Links section */
.tools-links {
  max-width: 600px;
  margin: 0 auto;
}

.tools-links h3 {
  margin-bottom: 1rem;
    color: #3b0066;
}

.tools-links ul {
  list-style: none;
  padding: 0;
}

.tools-links li {
  margin-bottom: 0.5rem;
}

.tools-links a {
  text-decoration: none;
  color: #000;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.tools-links a:hover {
  border-color: #000;
}

/* Responsive */
@media (max-width: 768px) {
  .tools-hero h1 {
    font-size: 1.8rem;
  }

  .tools-hero p {
    font-size: 1rem;
    padding:0 1rem;
  }

  .tools-links {
    padding: 0 1rem;
  }
  

}
