/* ========================*/
/* Update: 2025-07-05 0938 */
/* ========================*/

/* ===== VARIABLES ===== */
:root {
    --primary-color: #FF5722;
    --primary-color-light: #fa7045;
    --secondary-color: #3CBCB4;
    --accent-color: #FF9800;
    --dark-color: #1A2530;
    --darker-color: #111722;
    --darkest-color: #0d1219;
    --light-color: #f5f5f5;
    --text-color: #e0e0e0;
    --dark-text-color: #333;
    --card-bg-color: #232d3d;
    --section-bg-color: #1a2435;
    --border-radius: 5px;
    --box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    --transition: all 0.3s ease;
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color), #2A9D8F);
    --gradient-dark: linear-gradient(135deg, var(--dark-color), #2C3E50);
    --gradient-section: linear-gradient(135deg, var(--darkest-color), var(--darker-color));
    
    /* Image paths */
    /* for local: /img/rooster_01.png */ 
    /* for remote: /static/dist/images/landing/rooster_01.png */
    --hero-bg-image: url('/static/dist/images/landing/rooster_01.png');
    
    /* Spacing variables */
    --spacing-xs: 0.25em;
    --spacing-sm: 0.5em;
    --spacing-md: 1em;
    --spacing-lg: 1.5em;
    --spacing-xl: 2em;
    
    /* Font sizes */
    --font-xs: 0.7em;
    --font-sm: 0.85em;
    --font-md: 1em;
    --font-lg: 1.2em;
    --font-xl: 1.4em;
    --font-xxl: 1.8em;
}
/* ========================*/

/* ===== RESET & BASE STYLES ===== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    min-width: 320px;
    overflow-x: auto;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--darker-color);
    background-image: linear-gradient(to bottom, var(--darkest-color), var(--darker-color));
    background-attachment: fixed;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

    a:hover {
        color: var(--secondary-color);
    }

ul {
    list-style: none;
}

.quote-card h3 {
    font-size: 1.1rem;
}

.product-card h3 {
    font-size: 1.3em;
    margin-bottom: 15px;
    color: var(--text-color);
}

.contact-info h3 {
    font-size: 1.8em;
    margin-bottom: 30px;
    color: var(--text-color);
}


h4 {
    color: var(--text-color);
    font-size: 1.1em;
    margin: 1em 0 1em 0;    
}

/* ===== LAYOUT COMPONENTS ===== */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    min-width: 320px;    
}

.hero + .section {
    padding-top: calc(var(--spacing-xl) * 2);
}

.section {
    padding: calc(var(--spacing-xl) * 1.2) 0 calc(var(--spacing-xl) * 2);
    scroll-margin-top: 100px;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    color: var(--light-color);
    position: relative;
    font-size: 2.2rem;   
    word-wrap: break-word;
}
    .section-title::after {
        content: '';
        display: block;
        width: 50px;
        height: 3px;
        background: var(--gradient-primary);
        margin: 15px auto 0;
    }

.sub-section {
        text-align: center;
        margin-bottom: 40px;
        color: var(--light-color);
        position: relative;
        font-size: 1.5rem;   
        word-wrap: break-word;
}
  .sub-section::after {
            content: '';
            display: block;
            width: 50px;
            height: 3px;
            background: var(--gradient-primary);
            margin: 15px auto 0;
        }

/* ===== BUTTONS & INTERACTIVE ELEMENTS ===== */

.btn-goto-functions {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.8em 1.5em;
    border-radius: var(--border-radius);
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: 1em;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(.4,2,.6,1);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

    .btn-goto-functions:hover, .btn-goto-functions:focus-visible {
        background: rgba(255, 255, 255, 0.15);
        transform: translateY(-1px);
        color: #fff;
        border-color: rgba(255, 255, 255, 0.3);
    }

    .btn-goto-functions:hover::after,
    .btn-goto-functions:focus-visible::after {
        transform: translateY(2px);
    }

.btn {
    display: inline-block;
    background: linear-gradient(135deg, #ffa040 0%, #ff5722 100%);
    color: white;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 1em;
    transition: background 0.25s cubic-bezier(.4,2,.6,1), color 0.25s, box-shadow 0.25s;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 123, 44, 0.18);
}

    .btn:hover, .btn:focus-visible {
        background: linear-gradient(135deg, #ff8800 0%, #e65100 100%);
        color: white;
        transform: translateY(-1px);
        box-shadow: 0 8px 24px rgba(255, 123, 44, 0.22);
    }

/* ===== HEADER  ===== */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(13, 18, 25, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    padding: 10px 0;
    min-width: 320px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

header.header-hidden {
    transform: translateY(-100%);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-width: 320px;
    
}

.logo {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10;
}

    .logo a {
        display: flex;
        align-items: center;
        text-decoration: none;
        color: inherit;
    }

    .logo-img {
        height: 2.9em;
        margin-right: 10px;
    }

    .logo h1 {
        font-weight: 700;
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-shadow: none;
    }

/* ===== HEADER & NAVIGATION ===== */
nav {
        margin-left: auto;
    }
    
    nav ul {
        display: flex;    
        gap: 25px;
        margin: 0;
        padding: 0;
    }
    
    nav ul li {
        margin: 0;
    }
    
        nav ul li a {
            color: rgba(255, 255, 255, 0.9);
            font-weight: 600;
            position: relative;
            padding: .3em 0;
            font-size: 1.0625em;
            transition: color 0.2s ease;
            white-space: nowrap;
        }
    
        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -3px;
            left: 0;
            background: linear-gradient(90deg, var(--secondary-color) 0%, rgba(60, 188, 180, 0.8) 100%);
            transition: width 0.2s ease-out;
            }
    
            nav ul li a:hover::after,
            nav ul li a.active::after {
                width: 100%;
            }
    
            nav ul li a:hover,
            nav ul li a.active {
                color: var(--secondary-color);
            }
    
            nav ul li a.active {
                color: var(--secondary-color);
                font-weight: 700;
            }    

.menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
	background: transparent;
}

    .menu-toggle .bar {
        height: 3px;
        width: 100%;
        background-color: #fff;
        border-radius: 10px;
        transition: var(--transition);
        box-shadow: 0 1px 4px rgba(0,0,0,0.18);
        opacity: 0.98;
    }

        .menu-toggle.active .bar:nth-child(1) {
            transform: translateY(9px) rotate(45deg);
        }

        .menu-toggle.active .bar:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active .bar:nth-child(3) {
            transform: translateY(-9px) rotate(-45deg);
        }

    .menu-toggle:hover, .menu-toggle:focus-visible, .menu-toggle:active {

        border-radius: 8px;
        transition: background 0.2s;
    }	


/* ===== HERO SECTION ===== */
.hero {
    min-height: 10em;
    height: auto;    
    background: linear-gradient(rgba(13, 18, 25, 0.97), rgba(0, 0, 0, 0.96)), var(--hero-bg-image) no-repeat center center/cover;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    text-align: center;    
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
                rgba(0, 0, 0, 0.3) 0%,
                rgba(26, 37, 48, 0.4) 30%,
                rgba(51, 158, 182, 0.3) 70%,
                rgba(47, 155, 181, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-content h2 {
    font-size: 2.1rem;
    color: var(--light-color);
    margin-bottom: .6em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.05rem;
    margin-bottom: 30px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}


/* ===== VIDEO SECTION ===== */

.video-container {
    position: relative;    
    padding-bottom: 53.5%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 55.5em;
    margin: 0 auto;
    margin-bottom: 4em;
    background-color: var(--card-bg-color);
    border-radius: var(--border-radius);    
    transition: transform 0.2s ease;
}

    .video-wrapper{    
        overflow: hidden;
        aspect-ratio: 16/9;
        border: 0;            
        pointer-events: none;
    }

    .video-wrapper iframe{
        border: 0;
        width: 300%;
        height: 100%;
        margin-left: -100%;
    }

  /* Not in use 
.video-progress-bar {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: .35em;
    background: transparent;
    z-index: 11;    
    overflow: hidden;
}

    .video-progress-bar-inner {
        height: 100%;
        width: 0%;
        background: linear-gradient(90deg, var(--dark-text-color), var(--secondary-color));
        opacity: 0.85;   
        transition: width 0.1s linear;
    }
*/

/* ===== ICONS ===== */
.icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

    .calendar-icon {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%23FF5722' d='M128 0c17.7 0 32 14.3 32 32V64H288V32c0-17.7 14.3-32 32-32s32 14.3 32 32V64h48c26.5 0 48 21.5 48 48v48H0V112C0 85.5 21.5 64 48 64H96V32c0-17.7 14.3-32 32-32zM0 192H448V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V192zm64 80v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16H80c-8.8 0-16 7.2-16 16zm128 0v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16zm160 0v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16zM64 368v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16H80c-8.8 0-16 7.2-16 16zm128 0v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16zm160 0v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16z'/%3E%3C/svg%3E");
    }

    .bell-icon {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%23FF5722' d='M224 0c-17.7 0-32 14.3-32 32V51.2C119 66 64 130.6 64 208v18.8c0 47-17.3 92.4-48.5 127.6l-7.4 8.3c-8.4 9.4-10.4 22.9-5.3 34.4S19.4 416 32 416H416c12.6 0 24-7.4 29.2-18.9s3.1-25-5.3-34.4l-7.4-8.3C401.3 319.2 384 273.9 384 226.8V208c0-77.4-55-142-128-156.8V32c0-17.7-14.3-32-32-32zm45.3 493.3c12-12 18.7-28.3 18.7-45.3H224 160c0 17 6.7 33.3 18.7 45.3s28.3 18.7 45.3 18.7s33.3-6.7 45.3-18.7z'/%3E%3C/svg%3E");
    }

    .user-icon {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%23FF5722' d='M224 256A128 128 0 1 0 224 0a128 128 0 1 0 0 256zm-45.7 48C79.8 304 0 383.8 0 482.3C0 498.7 13.3 512 29.7 512H418.3c16.4 0 29.7-13.3 29.7-29.7C448 383.8 368.2 304 269.7 304H178.3z'/%3E%3C/svg%3E");
    }

    .lock-icon {
        width: 17px;
        height: 17px;
        margin-right: 0.8em;
        margin-left: 0.1em;        
        vertical-align: middle;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%23e0e0e0' d='M400 224h-24V144C376 64.5 311.5 0 232 0S88 64.5 88 144v80H64c-35.3 0-64 28.7-64 64v160c0 35.3 28.7 64 64 64h336c35.3 0 64-28.7 64-64V288c0-35.3-28.7-64-64-64zM136 144c0-52.9 43.1-96 96-96s96 43.1 96 96v80H136v-80zm272 304c0 17.7-14.3 32-32 32H72c-17.7 0-32-14.3-32-32V288c0-17.7 14.3-32 32-32h336c17.7 0 32 14.3 32 32v160zm-160-80c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32z'/%3E%3C/svg%3E");
    }


/* ===== PRODUCTS SECTION ===== */

.products-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 57em;
    margin: 0 auto;
    padding: 0 0.5em;
}

.product-card {
    flex: 1 1 310px;
    min-width: 225px;
    max-width: 350px;
    min-height: 21.5em;
    margin: 0 0.5em;    
    border-top: 0.3em solid var(--dark-color);
    background-color: var(--card-bg-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    width: 100%;    
    max-width: 100%;
    padding: var(--spacing-xl) var(--spacing-lg);    
    font-size: 1.05em;
}
.product-card ul, .product-card p {
    font-size: .96em;
}

    .product-card.in-development::after {
        content: "In ontwikkeling";
        position: absolute;
        top: var(--spacing-sm);
        right: var(--spacing-sm);
        background: var(--secondary-color);
        color: white;
        padding: var(--spacing-xs) var(--spacing-sm);
        border-radius: var(--border-radius);
        font-size: var(--font-xs);
        opacity: 0.9;
    }

    .product-card:hover,
    .pricing-card:hover {

        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

    .product-card.active
    {
        position: relative;
        border-top: none;
        background-color: var(--card-bg-color);
    }

    .product-card.active::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 0.3em;
        background: linear-gradient(to right, var(--primary-color) 80%, rgba(255, 145, 0, 0.637));
        border-top-left-radius: 0.2em;
        border-top-right-radius: 0.2em;
    }

    .product-card.active:hover {
        border-top-color: var(--primary-color);
    }

    .product-icon {
        margin-bottom: .9em;
        padding-top: .7em;
    }

    .product-icon .icon {
        width: 50px;
        height: 50px;
    }


    .product-card p {
        flex-grow: 1;        
    }

    .product-card ul li {
        
        color: var(--text-color);
        font-family: inherit;
        margin: 0;
        padding: 0;
        line-height: 1.6;
        list-style: none;
    }

/* ===== GALLERY SECTION ===== */
.gallery-container {
    max-width: 59.5em;    
    margin: 0 auto;
    margin-top: 4em;
    position: relative;
    padding: 0 .6em;    
    
}

.gallery-main {
    position: relative;
    border-radius: var(--border-radius);    
    overflow: hidden;
    margin-bottom: 1em;    
    width: 100%;

}
    .gallery-main img {
        width: 54em;
        margin: 0 auto;
        height: 100%;
        object-fit: contain;
        display: block;
        transition: filter 0.3s ease;        
    }

    #main-image
    {
        max-width: 100%;
        height: auto;
   
        object-fit: contain;
        background-color: var(--card-bg-color); 
        border-radius: var(--border-radius);
    }


.gallery-thumbnails {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 10px;
}

    .thumbnail
    {
        height: 5.7em;
        object-fit: cover;
        cursor: pointer;
        border-radius: 4px;
        border-bottom: .2em solid transparent;
        transition: all 0.3s ease;
        opacity: 0.7;
    }

    .thumbnail:hover {
        opacity: 1;
        transform: translateY(-2px);
    }

    .thumbnail.active {
        border-color: var(--primary-color);
        opacity: 1;
        transform: translateY(-2px);
    }

.gallery-caption {
    text-align: center;
    margin-top: 10px;
    color: var(--text-color);
    font-style: italic;
}

    /* Side arrows voor gallery */
    .side-arrow {
        position: absolute;
        bottom: 0; 
        transform: none;
        width: 4em;
        height: 4em;
        background: none;
        border: none;
        outline: none;
        opacity: 0;
        transition: opacity 0.2s, filter 0.2s;
        z-index: 4;
        cursor: pointer;
        pointer-events: none;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .gallery-main:hover .side-arrow,
    .side-arrow:focus-visible {
        opacity: 0.5;
        pointer-events: auto;
    }
    .arrow-left {
        left: 1.9em;
        background: url('data:image/svg+xml;utf8,<svg width="32" height="32" xmlns="http://www.w3.org/2000/svg"><polyline points="20,8 10,16 20,24" fill="none" stroke="white" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center center/60% 60%;
    }
    .arrow-right {
        right: 1.9em;
        background: url('data:image/svg+xml;utf8,<svg width="32" height="32" xmlns="http://www.w3.org/2000/svg"><polyline points="12,8 22,16 12,24" fill="none" stroke="white" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center center/60% 60%;
    }
    .side-arrow:active,
    .side-arrow:focus-visible {
        filter: drop-shadow(0 0 6px #fff);
        opacity: 1;
    }

    .side-arrow:focus,
    .side-arrow:focus-visible {
        outline: none !important;
        box-shadow: none !important;
    }

    .gallery-half {
        position: absolute;
        top: 0;
        width: 50%;
        height: 100%;
        z-index: 3;
        cursor: pointer;
    }
    .gallery-half.left {
        left: 0;
    }
    .gallery-half.right {
        right: 0;
    }

/* ===== CONTACT SECTION ===== */       
.contact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 20px;
}
    .contact-content p {
        font-size: 1em;
    }

.contact-info {
    width: 100%;
    margin-bottom: 1em;
}


.contact-info p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 0;
}

.contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info ul li {
    font-size: 1.1em;
    margin: 10px 0;
    color: var(--text-color);
}

.contact-details {
    display: flex;
    align-items: center;
    justify-content: center;    
    margin-top: 30px;
}

.contact-details span {
    color: var(--text-color);
    font-size: 1rem;
}

.contact-details .icon {
    width: 30px;
    height: 30px;
}

/* ===== FOOTER ===== */
footer {
    background: var(--gradient-dark);
    color: white;
    padding: 3em 0 1.5em;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20em, 26em));
    gap: 1em;
    font-size: .9em;
    margin-bottom: .5em;
    justify-content: center;
    text-align: center;
}

.footer-content h3 {
    margin-bottom: 20px;
    font-size: 1.1em;
    position: relative;
    padding-bottom: 10px;
    text-align: center;
}

.footer-content h3::after {    
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-content p {
    margin-bottom: 10px;
    font-size: 1em;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    text-align: center;
    justify-content: center;
    padding-top: 1.1em;
    font-size: .9em;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 1.1em;
	word-spacing: .1em;
}

    .footer-small {
        color: #ccc;
        word-spacing: .25em;
        font-size: 0.9em;
    }

    .footer-bottom a {
        color: white;
        text-decoration: underline;    
        text-decoration-color: rgba(255, 255, 255, 0.5);
        transition: color 0.2s, text-decoration-color 0.2s;
    }
    .footer-bottom a:hover,
    .footer-bottom a:focus-visible {
        text-decoration-color: #fff;
    }

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    :root {
        --spacing-md: 0.8em;
        --spacing-lg: 1.2em;
        --spacing-xl: 1.8em;
    }
    
    .container { padding: 0 1.5em; }
    .pricing-grid { 
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    .about-content,
    .contact-content,
    .intro-text {
        flex-direction: column;
    }
}

@media (max-width: 768px)
{
    :root
	{
        --spacing-md: 0.7em;
        --spacing-lg: 1em;
        --spacing-xl: 1.5em;
        --font-lg: 1.1em;
        --font-xl: 1.2em;
    }
    .container { 
        width: 100%;
        padding: 0 var(--spacing-md);
    }    
    header
	{
		padding: var(--spacing-sm) 0;
	}
    
    .logo h1 {
        font-size: 1.5rem;   
        
    }

    nav ul {
        gap: var(--spacing-sm);
    }
    nav ul li a {
        font-size: .9em;
        padding: 3px 0;
    }
 }
    
    .hero {
        min-height: auto;
        padding: 100px 20px 40px;
        h2 { 
            font-size: 2rem;
            margin: 0 auto 15px;
            max-width: 100%;
            padding: 0 10px;
        }
        p {
            font-size: 1rem;
            margin: 0 auto 25px;
            max-width: 100%;
            padding: 0 10px;
    }
    }
    
    .section { padding: calc(var(--spacing-xl) * 1) 0 calc(var(--spacing-xl) * 1.5); }
    
    .hero + .section {
        padding-top: calc(var(--spacing-xl) * 1.5);
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
        padding: 0 var(--spacing-sm);           
    }
    
    .product-card {
        padding: var(--spacing-lg);
        min-width: unset;
        min-height: unset;
    }
    
    .product-icon .icon {
        width: 35px;
        height: 35px;
    }
    
    .technical-specs {
        padding: 1.5em;
        h3 { font-size: 1.2em; }
        li { font-size: 0.95em; }
    }
    
    .intro-text {
        font-size: 1rem;
        padding: 0 1rem;
        margin-bottom: 2rem;
    }
    
    .contact-cta {
        margin-top: 20rem;        
        padding: 1.5rem;   
    }
    
    .technical-specs {
        padding: 1.5em;
    }

    .support-grid {
        grid-template-columns: 1fr;
        gap: 1.5em;
    }
    
    .support-section {
        padding: 1.5rem;
    }

    .quotes-grid {
        gap: 1.5rem;
    }
    .quote-card {
        flex: 1 1 100%;
        min-width: auto;
        max-width: none;
        min-height: 16em;
        padding: var(--spacing-lg);
    }
    .quote-icon {
        font-size: 1em;
    }
    .section-subtitle {
        font-size: 1em;
        margin-bottom: 1.5rem;
    }
   

@media (max-width: 480px) {
    :root {
        --spacing-md: 0.6em;
        --spacing-lg: 0.8em;
        --spacing-xl: 1.2em;
        --font-lg: 1rem;
        --font-xl: 1.1rem;
    }
    
    .container { 
        width: 100%;
        padding: 0 var(--spacing-xs);
        min-width: 100%;
    }
    
    header .container { 
        padding: 0 .5em;
    }
    
    nav ul {
        align-items: center;
    }
    .logo {
        margin-left: 10px;
    }
    nav ul li:not(:last-child) {
        margin: 0 .2em;
    }
    nav ul li:last-child a {
        border: none !important;
        background: transparent !important;
        color: var(--primary-color) !important;
        box-shadow: none;
        padding: 5px 14px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-content {
        h2 { 
            font-size: 1.5rem;
            padding: 0;
        }
        p { padding: 0; }
    }
    
    section { 
        width: 100%;
        overflow-x: hidden;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-xs);
        padding: 0 var(--spacing-xs);
    }
    
    .product-card {
        padding: 0.7em 0.4em;        
        max-width: 98vw;
        min-width: 0;
    }
    
    .product-card h3 {
        font-size: 1.05em;
    }
   
   
    .pricing-card {
        .price { font-size: 1rem; }
        .price-description { font-size: 0.5rem; }
        .implementation-note { 
            font-size: 0.8rem;
            margin-top: 0.6em;
            padding-top: 0.6em;
        }
    }   
    
    .technical-specs {
        padding: 1.2em;
        li {
            padding-left: 1.5em;
            &::before {
                width: 6px;
                height: 6px;
            }
        }
    }

    .logo h1 {
        display: block;
    }

    nav ul li:last-child a:hover, nav ul li:last-child a:focus-visible {
        background: transparent !important;
        color: var(--primary-color) !important;
    }
    nav ul li:last-child a .inloggen-text {
        display: inline;
    }
    .inloggen-icon.user-icon {
        display: none !important;
    }
    
    .support-section {
        font-size: 0.95em;
    }

    .quote-card {
        padding: var(--spacing-md);
        min-height: 14em;
    }
    .quote-card p {
        font-size: 0.9rem;
    }
    .quote-author {
        font-size: 0.85rem;
    }
    .section-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 320px) {
    body {
        min-width: 100%;
        overflow-x: hidden;
    }
    
    .container {
        width: 100%;
        min-width: 100%;
        padding: 0 var(--spacing-xs);
    }

    header .container { padding: 0 var(--spacing-xs); }

    nav ul {
        gap: 1px;
        li a {
            font-size: 0.8125em;
            padding: 3px 1px;
            letter-spacing: -0.3px;
        }
    }
}

/* ===== UTILITY CLASSES ===== */
.bg-light {
    background-color: var(--section-bg-color);
    background-image: linear-gradient(to bottom, 
        rgba(26, 37, 48, 0.95), 
        rgba(13, 18, 25, 0.96));
}

.bg-dark {
    background: var(--darker-color);
}

.gradient-section {
    background: linear-gradient(135deg, 
        rgba(13, 18, 25, 0.95), 
        rgba(26, 37, 48, 0.93));
}

/* ===== LOADING STATES ===== */
.gallery-container::after {
    content: "Afbeelding laden...";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #888;
    display: none;
}

.gallery-container.loading::after {
    display: block;
}

.howitworks-item {
    margin-bottom: 30px;
}

.technical-specs ul {
    list-style: disc;
    padding-left: 20px;
    margin: 15px 0;
    color: var(--text-color);
}

.technical-specs li {
    margin: 10px 0;
    line-height: 1.6;
}

.technical-specs li small {
    display: inline;
    font-size: 1.0em;
}

.technical-specs small {
    color: var(--text-color);
    opacity: 0.8;
}

.technical-specs li.software::before {
    background: var(--secondary-color);
    opacity: 0.9;
}


/* ===== QUOTES SECTION ===== */
.section-subtitle {
    text-align: center;
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.quote-card {
    background: var(--card-bg-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: var(--spacing-xl) var(--spacing-lg);
    margin: 0 0.5em 1.5em 0.5em;
    max-width: 54em;
    font-size: 1em;
    padding: 2em;    
    border-radius: var(--border-radius);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);       
    background: linear-gradient(135deg, rgba(35, 45, 61, 1) 70%, rgba(0, 0, 0, 0.5) 100%), no-repeat center center/cover;
}

    .quote-author {
        color: var(--secondary-color);
        font-size: 0.95em;
        font-style: normal;
        margin-top: 0.5em;
    }

.quote-card-single {
    margin: 2.5em auto 2.5em auto;
    align-items: flex-start;
    text-align: left;
    padding: var(--spacing-xl) var(--spacing-xl);
}

.quote-card-single .quote-icon {
    display: inline-block;
    font-size: 1.3em;
    margin: 0;
    vertical-align: middle;
    font-style: normal;
}

.quote-icon {
    font-size: 2.2em;
    margin-bottom: 0.7em;
}

    .student-icon {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='8' y='14' width='32' height='24' rx='2' fill='%23FF5722'/%3E%3Crect x='12' y='10' width='24' height='8' rx='2' fill='%23FF9800'/%3E%3Crect x='14' y='18' width='20' height='16' rx='1' fill='white'/%3E%3Crect x='16' y='20' width='16' height='2' rx='1' fill='%23FF5722'/%3E%3Crect x='16' y='24' width='14' height='2' rx='1' fill='%23FF9800'/%3E%3Crect x='16' y='28' width='16' height='2' rx='1' fill='%23FF9800'/%3E%3Crect x='12' y='12' width='2' height='4' rx='1' fill='%23FF5722'/%3E%3Crect x='34' y='12' width='2' height='4' rx='1' fill='%23FF5722'/%3E%3C/svg%3E");
    }
    .teacher-icon {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='6' y='10' width='36' height='24' rx='4' fill='%233CBCB4'/%3E%3Crect x='10' y='14' width='28' height='16' rx='2' fill='white'/%3E%3Crect x='36' y='36' width='6' height='4' rx='1' fill='%23FF5722'/%3E%3Crect x='6' y='36' width='6' height='4' rx='1' fill='%23FF5722'/%3E%3C/svg%3E");
    }
    .concierge-icon {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cg transform='rotate(45 24 24)' fill='%23FDD835'%3E%3Cpath fill-rule='evenodd' d='M24 22 C18.477 22 14 17.523 14 12 S 18.477 2 24 2 s 10 4.477 10 10 s -4.477 10 -10 10 Z M 24 17 C 21.239 17 19 14.761 19 12 S 21.239 7 24 7 s 5 2.239 5 5 s -2.239 5 -5 5 Z'/%3E%3Cpath d='M21 21.5 L27 21.5 L27 38 L15 38 L15 33 L21 33 Z'/%3E%3C/g%3E%3C/svg%3E");
    }
    .staff-icon {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='8' y='20' width='32' height='20' rx='2' fill='%233CBCB4'/%3E%3Crect x='12' y='12' width='24' height='8' rx='2' fill='%23FF5722'/%3E%3Crect x='14' y='26' width='4' height='4' rx='1' fill='white'/%3E%3Crect x='22' y='26' width='4' height='4' rx='1' fill='white'/%3E%3Crect x='30' y='26' width='4' height='4' rx='1' fill='white'/%3E%3Crect x='14' y='32' width='4' height='4' rx='1' fill='white'/%3E%3Crect x='22' y='32' width='4' height='4' rx='1' fill='white'/%3E%3Crect x='30' y='32' width='4' height='4' rx='1' fill='white'/%3E%3C/svg%3E");
    }

    .quote-icon.student-icon,
    .quote-icon.teacher-icon,
    .quote-icon.concierge-icon,
    .quote-icon.staff-icon {
        width: 1.5em;
        height: 1.5em;
        min-width: 1.5em;
        min-height: 1.5em;
        display: inline-block;
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
        vertical-align: middle;
        margin-right: 0em;
        }

.quote-card-single p {
    display: flex;
    align-items: center;
    font-style: italic;
    color: var(--text-color);
    font-size: 1.05em;
    margin: 0.5em 0 0.5em 0.5em;
    line-height: 1.5;
    padding: 0;
    gap: 0.3em;
}

    .quote-card-single .quote-author {
        color: var(--secondary-color);
        font-size: 1.em;
        font-style: normal;
        font-weight: 500;
        margin: 0.2em 2.5em 0.2em .5em;
        opacity: 0.85;
        min-width: 90px;
        display: inline-block;
    }

    .quote-card-single .quote-text {
        color: var(--text-color);
        font-style: italic;
        font-weight: 400;
        font-size: 1em;
        margin: 0;
        display: inline;
    }

/* ===== PRODUCT SECTION ===== */
.products-grid {
    max-width: 1000px;
    margin: 0 auto;
    gap: 20px 7px;
}

.product-card {
    max-width: 280px;
    padding: 20px;
}

.howitworks-content {
    max-width: 800px;
    margin: 0 auto;
}

/* ===== PRICING SECTION ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 1.5em auto 3em auto;
    max-width: 61em;
    padding: 0 1em;
}

    .pricing-card {
        background: rgba(35, 45, 61, 0.98);
        border: 1.5px solid rgba(60, 188, 180, 0.08);
        box-shadow: 0 4px 18px rgba(0,0,0,0.10);
        transition: 
        box-shadow 0.25s cubic-bezier(.4,2,.6,1), 
        transform 0.25s cubic-bezier(.4,2,.6,1);
        margin: 0 0.5em;
    }
    
    .pricing-card.active
    {
        position: relative;
        border: none;
        background-color: var(--card-bg-color);
    }

    .pricing-card.active::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 0.3em;
        background: linear-gradient(to right, var(--primary-color) 80%, rgba(255, 145, 0, 0.733));
        border-top-left-radius: 0.2em;
        border-top-right-radius: 0.2em;
    }

    .pricing-card h3 {
        font-size: var(--font-xl);
        margin-bottom: var(--spacing-sm);
        color: var(--text-color);
    }

    .pricing-card .price {
        font-size: var(--font-lg);
        font-weight: bold;
        color: var(--primary-color);
        margin: var(--spacing-sm) 0;
    }

    .pricing-card .price-description {
        font-size: var(--font-md);
        color: var(--text-color);
        opacity: 0.9;
        line-height: 1.5;
        padding: 0 var(--spacing-sm);
        margin-bottom: 0;
    }

.implementation-note {
    font-size: var(--font-md);
    color: var(--secondary-color);
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(60, 188, 180, 0.2);
    font-weight: 500;
}

/* Media queries voor kleinere schermen */
@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
        padding: 0 var(--spacing-sm);
    }
    
    .pricing-card {
        min-width: unset;
        min-height: unset;
        padding: var(--spacing-lg);
    }
    
    .pricing-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5em;
    }
    
    .pricing-card .price {
        font-size: 1.1rem;
        margin: 0.5em 0;
    }
    
    .pricing-card .price-description {
        font-size: .9rem;
        margin-bottom: 0.5em;
    }
    
    .pricing-card .implementation-note {
        font-size: 0.85rem;
        margin-top: 0.8em;
        padding-top: 0.8em;
    }    
}

@media (max-width: 480px) {
    .pricing-grid {
        gap: var(--spacing-xs);
        padding: 0 var(--spacing-xs);
    }
    
    .pricing-card {
        padding: var(--spacing-md);
    }
    
    .pricing-card h3 {
        font-size: 1.1rem;
    }
    
    .pricing-card .price {
        font-size: 1.05rem;
    }    
    
    .pricing-card .implementation-note {
        font-size: 0.95em;
        margin-top: 0.6em;
        padding-top: 0.6em;
    }
    
    .product-icon .icon {
        width: 2.6em;
        height: 2.6em;
    }

    .logo h1 {
        display: block;
    }
}

/* ===== TECHNICAL SPECS SECTION ===== */
.technical-specs {
    max-width: 58em;
    margin: 3em auto 2em auto;
    background: none;
    box-shadow: none;
    border: none;
    padding: 2em 2em 1.5em 2em;
}

.technical-specs h3,
.technical-specs .technical-specs-intro {
    text-align: left;
    margin-left: 0.2em;
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 1.5px solid var(--primary-color);
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    padding: 0.5em 1.2em 0.3em 1.2em;
    display: inline-flex;
    align-items: center;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    box-shadow: none;
    font-weight: 600;
}
.btn-outline:hover, .btn-outline:focus-visible {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-1px);
    border-color: var(--primary-color);
}
.btn-outline[aria-expanded="true"] {
    background: transparent;
    color: var(--primary-color);
}
#arrow {
    font-size: 1.1em;
    margin-left: 0.3em;
    transition: transform 0.2s;
}
.btn-outline[aria-expanded="true"] #arrow {
    transform: rotate(180deg);
}

.technical-specs-intro {
    color: var(--text-color);
    line-height: 1.6;
}

.requirements-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2em;
    margin-top: 1.5em;
    padding: 1em 1.5em 1.5em 1.5em;
    border-top: 1px solid rgba(255, 255, 255, 0.1);    
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);    
}

.technical-specs ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.technical-specs li {
    margin: 1.5em 0;
    padding-left: 1.5em;
    position: relative;
    color: var(--text-color);
    line-height: 1.6;
}

.technical-specs li::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.8;
}

.technical-specs li.software::before {
    background: var(--secondary-color);
}

.technical-specs small {
    display: block;
    color: var(--text-color);
    opacity: 0.7;
    margin-top: 0.5em;
    font-style: italic;
    font-size: 0.9em;
}

    @media (max-width: 768px) {
        .requirements-grid {
            grid-template-columns: 1fr;
            gap: 1.5em;
        }
        
        .technical-specs {
            padding: 1.5em;
        }
    }

.support-section {
    padding: 2rem 1em 2em 2rem;
    background-color: var(--card-bg-color);    
    border-radius: var(--border-radius);
    margin: 4rem 0;
    box-shadow: var(--box-shadow);
    max-width: 58em;
    margin: 0 auto; 
    border-bottom: 2px solid #0d1219;
}

h3 {
        color: var(--text-color);
        margin-bottom: 1.5rem;
        font-size: 1.1em;
    }

    .support-grid
    {        
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2em;
        margin-top: 1.5em;
        padding: 1em 1.5em 1.5em 1.5em;
        border-top: 1px solid rgba(255, 255, 255, 0.1); 
        border-bottom: 1px solid rgba(255, 255, 255, 0.1); 
    }

    
        @media (max-width: 768px) {
            .support-grid {
                grid-template-columns: 1fr;
                gap: 1.5em;
            }
            
            .support-section {
                padding: 1.5em;
            }
        }


    .support-section ul {
        list-style: none;
        padding-left: 0;
        margin: 0;
    }

        .support-section li {
            margin: 1em 0;
            padding-left: 1.5em;
            position: relative;
            color: var(--text-color);
            line-height: 1.6;
        }

        .support-section li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0.5em;
            width: .5em;
            height: .5em;
            background: var(--primary-color);
            border-radius: 50%;
            opacity: 0.8;
        }

        .support-section li.software::before {
            background: var(--secondary-color);
        }
        
        .support-section .support-column:first-child ul li::before {
            background: var(--secondary-color);
        }

        .support-section .support-column:last-child ul li::before {
            background: var(--primary-color);
        }


    .support-note {
        text-align: center;
        font-size: .9em;        
        padding-top: 1em;
        color: var(--text-color);
        opacity: 0.5;
        font-style: italic;        
    }


.intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
}
.contact-cta {
    text-align: center;
    margin: 3em auto 0 auto;
    max-width: 58em;
    padding: 1em;    
}

    .contact-cta p {
        color: var(--text-color);
        margin-bottom: 1.5em; 
        line-height: 1.6;
    }

    .contact-cta p a
    {
        text-decoration: underline;
        color: var(--text-color);
        transition: var(--transition);
    }

    .contact-cta .btn {
        display: inline-block;
        margin-top: 1rem;
    }

/* ===== INLOGGEN BUTTON ===== */
nav ul li:last-child a {
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.1) 0%, rgba(255, 87, 34, 0.05) 100%);
    color: var(--text-color) !important;
    border: 1px solid #b42f17;
    border-radius: 5px;
    padding: 5px 14px;
    font-weight: 600;
    margin-left: 18px;
    box-shadow: none;
    transition: all 0.25s cubic-bezier(.4,2,.6,1);
    text-decoration: none !important;
    position: relative;
    font-size: .95em;
}

nav ul li:last-child a:hover, nav ul li:last-child a:focus-visible {
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.2) 0%, rgba(255, 87, 34, 0.1) 100%);
    color: var(--primary-color) !important;
    text-decoration: none;
    box-shadow: none;
}

nav ul li:last-child a::after {
    display: none !important;
}

.btn-outline span[id$="arrow"] {
    display: inline-block;
    vertical-align: middle;
    margin-left: 0.3em;
    font-size: 1em;
    line-height: 1;
}

.details-collapsible {
    display: none;    
}

.inloggen-text {
    display: inline;
}

.inloggen-icon {
  display: none;
}


@media (max-width: 350px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* ======================================== */
/*      Small sreen en mobile MENUs         */
/* ======================================== */

@media (max-width: 900px) {

/* Hide navigation menu */
  nav ul
  {
    display: none;
  }

  .menu-toggle
  {
    display: flex;
    position: absolute;
    right: 1.5em;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1201;
  }
	  .menu-toggle span
	  {
		background: transparent;
	  }
	  /* Verberg Inloggen voor mobiel */
	  nav ul li:last-child
	  {
		display: none;
	  }

/* Show mobile navigation menu in mobile modus*/

  nav.active ul {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 80vw;
    height: 100vh;
    background: rgba(20, 25, 35, 0.98);
    justify-content: center;
    align-items: center;
    gap: 2.2em;
    z-index: 1200;
    transition: background 0.3s;
    box-shadow: -5px 0 15px rgba(0,0,0,0.2);
    border-left: 2.5px solid var(--darker-color);
    overflow-y: auto;
  }

  nav.active ul li {
    margin: 0;
  }
  
   nav.active ul {
	    border-left: 2.5px solid var(--darker-color);		
   }
  nav.active ul li a  {
    font-size: 1.3em;
    color: #fff;
    padding: 0.7em 2em;
    background: none;	
    transition: background 0.2s, color 0.2s;
    text-align: center;
    display: block;    
  }
  
  nav.active ul li a:hover {
    background: rgba(255,255,255,0.08);
    color: var(--primary-color);
  }
  nav.active::before {
    content: '';
    position: fixed;
    top: 0; 
    left: 0; 
    right: 0; 
    bottom: 0;
    background: rgba(20,25,35,0.5);
    z-index: 1199;
    pointer-events: none;
    width: 20vw;	
  }
  nav.active ul li:last-child a {
    text-align: center;
    margin: 0 auto;
    display: block;	
  }
  nav.active ~ .menu-toggle {
    position: fixed !important;
    top: 24px !important;
    right: 24px !important;
    transform: none !important;
    z-index: 1300 !important;
  }
  
  .pricing-card.active {
    border-top: 0;
  }


  nav.active ul li a:focus-visible {
    outline: 2.5px solid #fff;
    outline-offset: 2px;
    border-radius: 7px;
    background: rgba(255,255,255,0.08);
    }

}

@media (max-width: 768px) {
    .intro-text {
        font-size: 1rem;
        padding: 0 var(--spacing-md);
        margin-bottom: 2rem;
    }    
    .contact-cta {
        margin-top: 2rem;
        padding: 1.5rem;
    }    
    .contact-cta p {
        font-size: 1rem;
    }
}

@media (max-width: 600px) {
    .side-arrow {
        width: 2em;
        height: 2em;                
    }
    .arrow-left {
        left: 0.1em;
    }
    .arrow-right {
        right: 0.1em;
    }
    .support-note
	{
		font-size: .85em;
        max-width: 25em;        
        margin: 0 auto;        
	}
    
    /* Verbeter quotes layout voor mobiel */
    .quote-card-single p {
        display: block;
        text-align: left;
        margin: 1em 0.5em;
    }
    
    /* Icoon en naam naast elkaar */
    .quote-card-single .quote-icon {
        display: inline-block;
        vertical-align: middle;
        margin: 0 0.3em 0 0.5em;
        width: 1.2em;
        height: 1.2em;
    }
    
    .quote-card-single .quote-author {
        display: inline-block;
        vertical-align: middle;
        margin: 0;
        min-width: auto;
        font-size: 0.95em;
    }
    
    .quote-card-single .quote-text {
        display: block;
        margin: 0.5em 0.5em 2rem 0.5em;
        font-size: 0.95em;
        line-height: 1.4;
    }
}

