/* ==========================*/
/* EduDisplay Starter CSS    */
/* Update: 2026-02-19 18:27  */
/* ==========================*/

/* ===== 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));

    /* Totale duur van één loop (Stap 1 → 2 → 3); keyframe-% zijn % van deze tijd */
    --action-cycle-duration: 15s;
    --narrowcasting-cycle-duration: 22s;
    --wachtwoordreset-cycle-duration: 20s;

    /* 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;
}

ul {
    list-style: none;
}

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);
}

h4 {
    color: var(--text-color);
    font-size: 1.05em;
    margin: 1em 0 1em 0;
    font-weight: 600;
}

h3 {
    color: var(--text-color);
    font-size: 1.05em;
    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) * 0.5);
}

.section {
    padding: calc(var(--spacing-xl) * 0.7) 0 calc(var(--spacing-xl) * 1.1);
    scroll-margin-top: 120px; /* Increased to match JavaScript offset for proper alignment with section titles */
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
    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;
}

/* Functies-sectie: titel direct boven product-grid */
#product.section {
    padding-top: calc(var(--spacing-xl) * 1.2);
}

.sub-section {
    text-align: center;
    margin-bottom: 40px;
    color: var(--light-color);
    position: relative;
    font-size: 1.5rem;
    word-wrap: break-word;
    /* Altijd zichtbaar - geen fade-in animatie om ontbrekende titels te voorkomen */
    opacity: 1 !important;
    transform: none !important;
}

.sub-section::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
    margin: 15px auto 0;
}

/* ===== COMBINED OFFER (SOFTWARE + HARDWARE) ===== */
.combined-offer {
    background: rgba(35, 45, 61, 0.98);
    border: 1.5px solid rgba(60, 188, 180, 0.12);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
    border-radius: var(--border-radius);
    padding: 2em 2em 2.25em;
    margin: 0 auto 3em;
    max-width: 51em;
}

.combined-offer-title {
    text-align: center;
    color: var(--light-color);
    font-size: 1.5rem;
    margin-bottom: 0.5em;
}

.combined-offer-intro {
    text-align: center;
    color: var(--text-color);
    opacity: 0.95;
    font-size: var(--font-md);
    line-height: 1.5;
    margin: 0 auto 1.75em;
    max-width: 36em;
}

.combined-offer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2em 3em;
    margin: 0 auto 1em;
    max-width: 45em;
    align-items: start;
}

.combined-offer-column {
    display: flex;
    flex-direction: column;
}

/* Desktop: eerste kolom iets meer ruimte links */
@media (min-width: 769px) {
    .combined-offer-column:first-child {
        padding-left: 1.25em;
    }
}

.combined-offer-subtitle {
    color: var(--light-color);
    font-size: 1.05rem;
    margin-bottom: 0.8em;
    font-weight: 600;
    min-height: 2.2em;
    line-height: 1.35;
}

.combined-offer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Software-kolom: vinkjes oranje; Hardware-kolom: vinkjes groen */
.combined-offer-column:first-child .combined-offer-list li::before {
    color: var(--primary-color);
}

.combined-offer-list li {
    position: relative;
    padding-left: 1.75em;
    margin-bottom: 0.6em;
    color: var(--text-color);
    font-size: var(--font-md);
    line-height: 1.45;
}

.combined-offer-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.1em;
}

.combined-offer-list li em {
    font-style: italic;
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.7);
}

.combined-offer-list li a {
    color: var(--text-color);
    text-decoration: underline;
    text-decoration-thickness: 0.5px;
    text-decoration-color: rgba(255, 255, 255, 0.6);
    text-underline-offset: 2px;
}

.combined-offer-list li a:hover {
    color: var(--light-color);
    text-decoration-color: rgba(255, 255, 255, 0.6);
    text-decoration-thickness: 0.5px;
}

.combined-offer-details-section {
    margin-top: 0.4em;
    padding-top: 0.35em;
    text-align: center;
}

.combined-offer-details-section .btn-outline-in-frame {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-color);
    font-weight: normal;
    opacity: 0.9;
}

.combined-offer-details-section .btn-outline-in-frame:hover,
.combined-offer-details-section .btn-outline-in-frame:focus-visible {
    background-color: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--light-color);
    opacity: 1;
}

.combined-offer-details-section .details-collapsible {
    text-align: left;
    margin-top: 1em;
    padding: 0 0.5em;
}

.combined-offer-details-section .requirements-grid {
    max-width: 100%;
    padding: 1em 0.5em 1em 0.5em;
}

/* Kopjes in details: wit; extra ruimte naar de lijst */
.combined-offer-details-section .requirements-column.software h4,
.combined-offer-details-section .requirements-column.hardware h4 {
    color: var(--light-color);
    margin-bottom: 1.5em;
}

/* Em in details (optioneel, etc.): lichter en kleiner */
.combined-offer-details-section .support-section li em {
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.7);
}

.combined-offer-cta {
    text-align: center;
    margin-top: 2.25em;
}

.combined-offer-cta-intro {
    margin: 0 0 0.5em 0;
    color: var(--text-color);
    font-size: 1.05em;
    opacity: 0.9;
}

.combined-offer-cta-spacer {
    margin: 0 0 1.25em 0;
    height: 0;
}

.combined-offer-cta .btn {
    display: inline-block;
}


/* ===== 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);
    margin-bottom: 0;
}

.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);
}

.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);
}

.btn-outline span[id$="arrow"] {
    display: inline-block;
    vertical-align: middle;
    margin-left: 0.3em;
    font-size: 1em;
    line-height: 1;
}

/* ===== HEADER & NAVIGATION ===== */
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;
}

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;
}

/* Overlay achter het mobiele menu; klik sluit het menu */
.menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 1198;
    background: transparent;
    pointer-events: none;
    transition: background 0.3s ease;
}

.menu-overlay.active {
    pointer-events: auto;
    background: rgba(0, 0, 0, 0.4);
}

/* Inloggen-knop in navigatie */
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;
}

.inloggen-text {
    display: inline;
}

.inloggen-icon {
    display: none;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 20em;
    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 45px;
    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,
.hero-title {
    font-size: 2rem;
    color: var(--light-color);
    margin-bottom: 1.3em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Titels wisselen bij mode: korte fade - beide op exact dezelfde positie */
.hero-title-wrap {
    position: relative;
    min-height: 1.2em;
}

.hero-title {
    transition: opacity 0.35s ease;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0;
    width: 100%;
}

.hero-title-rooster {
    opacity: 1;
    position: relative;
}

.hero-title-narrowcasting {
    opacity: 0;
    pointer-events: none;
}

.hero[data-mode="narrowcasting"] .hero-title-rooster {
    opacity: 0;
    pointer-events: none;
    position: absolute;
}

.hero[data-mode="narrowcasting"] .hero-title-narrowcasting {
    opacity: 1;
    pointer-events: auto;
    position: relative;
}

.hero-title-wachtwoordreset {
    opacity: 0;
    pointer-events: none;
}

.hero[data-mode="wachtwoordreset"] .hero-title-rooster,
.hero[data-mode="wachtwoordreset"] .hero-title-narrowcasting {
    opacity: 0;
    pointer-events: none;
    position: absolute;
}

.hero[data-mode="wachtwoordreset"] .hero-title-wachtwoordreset {
    opacity: 1;
    pointer-events: auto;
    position: relative;
}

.hero-content p {
    font-size: 1.05rem;
    margin-bottom: .5em;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}


/* ===== VIDEO SECTION ===== */
.video-container {
    max-width: 55.5em;
    margin: 0 auto;
    margin-bottom: 2.5em;
    background-color: var(--card-bg-color);
    border-radius: var(--border-radius);
    transition: transform 0.2s ease;
}

/* Video + quotes 10% kleiner */
.voordelen-blok {
    /* Align width with gallery container */
    max-width: 56.6em;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 .6em;
}

/* Video: geen afronding onderaan, sluit direct aan op quote-card */
.video-container-quotes {
    position: relative;
    padding-bottom: 42.7%;
    height: 0;
    overflow: hidden;
    width: 100%;
    max-width: 90%;
    margin: 0 auto 0;
    background-color: transparent;
    border-radius: 0;
}

.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%;
}

.video-wrapper-quotes iframe#youtube-player-quotes {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    pointer-events: auto !important;
    transform: none !important;
    object-fit: contain !important;
    opacity: 1 !important;
    transition: opacity 0.3s ease-in-out !important;
}

.video-wrapper-quotes iframe#youtube-player-quotes.loading {
    opacity: 0 !important;
}

/* ===== QUOTES SECTION ===== */
.quote-card {
    background: linear-gradient(135deg, rgba(35, 45, 61, 1) 70%, rgba(0, 0, 0, 0.5) 100%), no-repeat center center/cover;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
    padding: 2em;
    margin: 0 0.5em 1.5em 0.5em;
    max-width: 55.5em;
    font-size: 1em;
}

.quote-author {
    color: var(--secondary-color);
    font-size: 0.95em;
    font-style: normal;
    margin-top: 0.5em;
}

/* Quote-blok direct onder video: boven recht (geen afronding), zelfde breedte, één schaduw onderaan */
.quote-card-single {
    margin: 0 auto 2em;
    align-items: flex-start;
    text-align: left;
    padding: 1.5em var(--spacing-xl);
    background: var(--card-bg-color);
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    width: 100%;
    max-width: 90%;
}

.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");
}

.quote-icon.student-icon,
.quote-icon.teacher-icon,
.quote-icon.concierge-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: 1em;
    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;
}

/* ===== 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");
}

/* ===== PRODUCTS SECTION ===== */

.product-card h3 {
    font-size: 1.24em;
    margin-bottom: 15px;
    color: var(--text-color);
}

.products-grid {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    max-width: 56.6em;
    margin: 0 auto;
    padding: 0 .6em;
}

.product-card {
    flex: 1 1 310px;
    min-width: 105px;
    max-width: 280px;
    min-height: 18.5em;
    margin: 0;
    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%;
    padding: 20px;
    font-size: 1em;
}

.product-card ul,
.product-card p {
    font-size: .91em;
}

.product-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Klikbare product cards: hand cursor en hover highlight */
.product-card[data-mode]:not(.active) {
    cursor: pointer;
}

.product-card[data-mode]:not(.active):hover {
    background-color: rgba(35, 45, 61, 0.95);
    box-shadow: 0 8px 20px rgba(60, 188, 180, 0.15), 0 15px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.product-card[data-mode]:not(.active):active {
    transform: translateY(0);
}

.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, rgba(60, 188, 180, 0.7) 80%, rgba(60, 188, 180, 0.5));
    border-top-left-radius: 0.2em;
    border-top-right-radius: 0.2em;
    box-shadow: 0 1px 3px rgba(60, 188, 180, 0.15);
}


.product-icon {
    margin-bottom: .1em;
    padding-top: .7em;
}

.product-icon .icon {
    width: 42.75px;
    height: 42.75px;
}

.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: 56.6em;
    margin: 0 auto;
    margin-top: 2.5em;
    position: relative;
    padding: 0 .6em;
}

/* Galerij: grote afbeelding 10% kleiner; thumbnails 7% kleiner */
.gallery-container.gallery-galerij .gallery-main {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.gallery-container.gallery-galerij .gallery-thumbnails {
    max-width: 92.6%;
    margin-left: auto;
    margin-right: auto;
}

.gallery-main {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 1em;
    width: 100%;
}

/* Caption above main image, filled via data-overlay on thumbnails – niet klikbaar (geen slide-wissel) */
.gallery-main-caption {
    position: relative;
    z-index: 5;
    pointer-events: auto;
    width: 100%;
    margin-bottom: 0.75em;
    padding: 0.65em 1em 0.85em;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1em;
    font-weight: 500;
    text-align: center;
    text-shadow: none;
    min-height: 2.5em;
    line-height: 1.5;
    box-sizing: border-box;
}

.gallery-main img {
    width: 100%;
    margin: 0 auto;
    height: auto;
    display: block;
    transition: filter 0.3s ease;
}

#main-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    background-color: transparent;
    border-radius: var(--border-radius);
}


.gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
    justify-content: center;
    padding: 0 11.5px;
    max-width: 100%;
}

.thumbnail {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    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);
}

/* 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;
}

/* Gallery loading state */
.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;
}

/* ===== 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-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-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 ===== */
/* Breakpoints: 992, 768, 480, 320, 350, 600, 900; tablet 769–1024; desktop 1025+ */

/* --- max-width: 992px --- */
@media (max-width: 992px) {
    :root {
        --spacing-md: 0.8em;
        --spacing-lg: 1.2em;
        --spacing-xl: 1.8em;
    }

    .container {
        padding: 0 1.5em;
    }

    .contact-content {
        flex-direction: column;
    }
}

/* --- max-width: 768px (header, nav, variables) --- */
@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;
    }

    footer .container {
        padding-left: .5em;
        padding-right: .5em;
    }

    /* Hero, section, products, support, quotes */
    .hero {
        min-height: auto;
        padding: 6em .4em 3.5em;
    }

    .hero h2 {
        font-size: 2rem;
        margin: 0 auto 15px;
        max-width: 94%;
        padding: 0 1px;
    }

    .hero p {
        font-size: 0.9rem;
        margin: 0 auto 15px;
        max-width: 100%;
        padding: 0 10px;
    }

    .section {
        padding: calc(var(--spacing-xl) * 0.7) 0 calc(var(--spacing-xl) * 1.2);
    }

    .hero+.section {
        padding-top: calc(var(--spacing-xl) * 0.4);
    }


    .products-grid {
        /* iPad portrait / small tablets: slightly narrower + centered */
        gap: 12px;
        width: 85%;
        max-width: 42em;
        margin-left: auto;
        margin-right: auto;
        padding: 0;
        flex-wrap: wrap;
        justify-content: center;
    }

    .product-card {
        /* Force 2-up layout on iPad mini (768px) */
        flex: 0 0 calc(50% - 6px);
        width: calc(50% - 6px);
        max-width: calc(50% - 6px);
        margin: 0;
        padding: var(--spacing-lg);
        min-width: unset;
        min-height: unset;
    }

    .product-icon .icon {
        width: 33.25px;
        height: 33.25px;
    }

    .support-grid {
        grid-template-columns: 1fr;
        gap: 1.5em;
    }

    .support-section {
        padding: 1.5rem;
    }

    .quote-card {
        flex: 1 1 100%;
        min-width: auto;
        max-width: none;
        min-height: 12em;
        padding: var(--spacing-lg);
    }

    .quote-icon {
        font-size: 1em;
    }

    .sub-section {
        font-size: 1.3rem;
    }
}

/* --- max-width: 1024px (products grid) --- */
@media (max-width: 1024px) {
    .products-grid {
        flex-wrap: wrap;
        justify-content: center;
        max-width: 56.6em;
        margin-left: auto;
        margin-right: auto;
        padding: 0 .6em;
        gap: 16px;
    }
}

/* --- tablet 769px–1024px (products grid) --- */
@media (min-width: 769px) and (max-width: 1024px) {
    .products-grid {
        width: 85%;
        max-width: 48em;
        margin-left: auto;
        margin-right: auto;
        padding: 0;
        gap: 16px;
        justify-content: center;
    }

    .product-card {
        flex: 0 0 calc(50% - 8px);
        width: calc(50% - 8px);
        max-width: calc(50% - 8px);
    }
}

/* --- desktop 1025px+ (products grid) --- */
@media (min-width: 1025px) {
    .products-grid {
        width: 100%;
        max-width: 56.6em;
        padding: 0 .6em;
        gap: 16px;
    }

    /* Desktop: make each feature card slightly narrower */
    .product-card {
        flex: 1 1 295px;
        max-width: 245px;
    }
}

/* --- max-width: 480px --- */
@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!important;
                    
    }
    .hero {
        padding-left: 0!important;
        padding-right: 0!important;
    }
    .logo {
        margin-top: 0.15em!important;
        margin-left: 1.3em!important;
    }

    /* Quotes video responsive voor kleine schermen - geen gap tussen video en quote */
    .video-container-quotes {
        width: 100%;
        max-width: 100%;
        margin: 1em auto 0;
        height: 13em;
        padding: 0;
        margin-bottom: 0;
    }

    .voordelen-blok {
        padding: 0;
    }

    .voordelen-blok .quote-card-single {
        max-width: 100%;
        margin-top: 0;
    }

    /* Zorg dat er geen gap is tussen video en quote-card */
    .voordelen-blok .video-container-quotes + .quote-card-single {
        margin-top: 0 !important;
    }

    /* Gallery responsive voor kleine schermen */
    .gallery-container {
        padding: 0 var(--spacing-xs);
    }

    .gallery-thumbnails {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        padding: 0 var(--spacing-xs);
    }

    /* Video container responsive voor kleine schermen */
    .video-container {
        padding: 0 var(--spacing-xs);
    }

    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,
    .hero .hero-title {
        font-size: 1.5rem;
        padding: 0;
        max-width: 94%;
    }

    .hero {
        padding-left: 0.2em;
        padding-right: 0.2em;
    }

    .hero .container {
        padding-left: 0.2em;
        padding-right: 0.2em;
    }

    .hero-content p {
        padding: 0;
        margin-bottom: 15px;
        font-size: .9rem;
    }

    section {
        width: 100%;
        overflow-x: hidden;
    }

    .products-grid {
        gap: 8px;
        padding: 0 1em;
        justify-content: center;
        flex-wrap: nowrap;
    }

    .product-card {
        flex: 0 0 calc(50% - 4px);
        width: calc(50% - 4px);
        max-width: calc(50% - 4px);
        margin: 0;
        padding: 0.7em 0.5em;
        min-width: 0;
        font-size: 0.9em;
    }

    .product-card h3 {
        font-size: 0.95em;
        margin-bottom: 0.4em;
    }

    .product-card p {
        font-size: 0.81em;
        line-height: 1.4;
    }

    .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;
        padding-left: var(--spacing-xs);
        padding-right: var(--spacing-xs);
    }

    .quote-card {
        padding: var(--spacing-md);
        min-height: 14em;
        width: 98%;
        max-width: 98%;
    }

    .quote-card p {
        font-size: 0.9rem;
    }

    .quote-author {
        font-size: 0.85rem;
    }

    .sub-section {
        font-size: 1.15rem;
    }
}

@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;
    }

    nav ul 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));
}

.gradient-section {
    background: linear-gradient(135deg,
            rgba(13, 18, 25, 0.95),
            rgba(26, 37, 48, 0.93));
}

@media (max-width: 768px) {
    .combined-offer {
        padding: 1.5em 1.25em;
        margin-bottom: 2.5em;
    }

    .combined-offer-grid {
        grid-template-columns: 1fr;
        gap: 1.5em;
        margin-bottom: 1.75em;
    }

    .combined-offer-title {
        font-size: 1.3rem;
    }

    .combined-offer-intro {
        font-size: 0.95rem;
        margin-bottom: 1.5em;
    }
}

@media (max-width: 480px) {
    .combined-offer {
        padding: 1.25em 1em;
        margin-bottom: 2em;
    }

    .combined-offer-title {
        font-size: 1.2rem;
    }

    .combined-offer-list li {
        font-size: 0.9rem;
    }

    .product-icon .icon {
        width: 2.6em;
        height: 2.6em;
    }
}

/* ===== SUPPORT & REQUIREMENTS ===== */
.requirements-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2em;
    margin-top: .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);
    text-align: left;
}

@media (max-width: 768px) {
    .requirements-grid {
        grid-template-columns: 1fr;
        gap: 1.5em;
    }
}

.support-section {
    padding: 1rem 1rem 1rem 2rem;
    background-color: var(--card-bg-color);
    border-radius: var(--border-radius);
    margin: 0 auto;
    box-shadow: var(--box-shadow);
    max-width: 51em;
    border-bottom: 1px solid rgba(13, 18, 25, 0.5);
}

/* Iets meer nadruk op de titelregel van elk requirement (niet te vet) */
.support-section .req-title {
    font-weight: 600;
}

.support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2em;
    margin-top: 0.2em;
    padding: 1em 2rem 1.5em 2rem;
    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: 2em;
    position: relative;
    color: var(--text-color);
    line-height: 1.6;
    font-size: 1em;
}

.support-section li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: .5em;
    height: .5em;
    background: var(--secondary-color);
    border-radius: 50%;
    opacity: 0.8;
}

.support-section li.software::before {
    background: var(--primary-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;
}

/* Zeer kleine schermen: cards onder elkaar */
@media (max-width: 350px) {
    .products-grid {
        flex-direction: column;
        align-items: center;
        padding: 0 1em;
    }

    .product-card {
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
    }
}

/* ======================================== */
/*      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 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;
    }

    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: 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 {
        padding: 1.5em var(--spacing-xs);
    }

    .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;
    }
}

/* ===== FAQ SECTION ===== */
.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1em;
}

.faq-header h3 {
    margin: 0;
    flex: 1;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-header h3:hover {
    color: var(--primary-color);
}

.faq-content {
    display: none;
    margin-top: 1.5em;
}

.faq-content .link-faq-light {
    color: #fff;
    text-decoration: underline;
    text-decoration-thickness: 0.5px;
    text-decoration-color: rgba(255, 255, 255, 0.6);
    text-underline-offset: 2px;
    transition: color 0.2s, text-decoration-color 0.2s;
}

.faq-content .link-faq-light:hover {
    color: var(--light-color);
    text-decoration-color: rgba(255, 255, 255, 0.7);
}

.faq-toggle {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.5em;
    font-size: 0.9em;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 2em;
    min-height: 2em;
}

.faq-toggle:hover {
    opacity: 1;
}

.faq-arrow {
    transition: transform 0.3s ease;
    font-size: 1.2em;
}

.faq-toggle[aria-expanded="true"] .faq-arrow {
    transform: rotate(180deg);
}

.faq-details {
    margin-top: .7em;
    padding-top: .7em;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Toon FAQ content wanneer uitgeklapt */
.support-section.expanded .faq-content {
    display: block;
}

/* Mobile responsive voor FAQ header */
@media (max-width: 768px) {
    .faq-header {
        flex-direction: row;
        align-items: center;
        gap: 0.5em;
    }

    .faq-header h3 {
        margin: 0;
        flex: 1;
        line-height: 1.3;
    }

    .faq-toggle {
        align-self: center;
        min-width: 1.8em;
        min-height: 1.8em;
        padding: 0.3em;
    }

    .faq-arrow {
        font-size: 1em;
    }
}

/* ===== SCROLL-TRIGGERED ANIMATIONS ===== */
@media (prefers-reduced-motion: reduce) {
    .fade-in-up,
    .fade-in,
    .slide-in-left,
    .slide-in-right {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* Initial states - elements start hidden/translated */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: transform, opacity;
}

.fade-in {
    opacity: 0;
    transition: opacity 0.6s ease-out;
    will-change: opacity;
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: transform, opacity;
}

.slide-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: transform, opacity;
}

/* Active states - when element comes into view */
.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in.visible {
    opacity: 1;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered animation delays for grid elements */
.fade-in-up[data-delay="1"] {
    transition-delay: 0.1s;
}

.fade-in-up[data-delay="2"] {
    transition-delay: 0.2s;
}

.fade-in-up[data-delay="3"] {
    transition-delay: 0.3s;
}

.fade-in-up[data-delay="4"] {
    transition-delay: 0.4s;
}

.fade-in[data-delay="1"] {
    transition-delay: 0.1s;
}

.fade-in[data-delay="2"] {
    transition-delay: 0.2s;
}

.fade-in[data-delay="3"] {
    transition-delay: 0.3s;
}

.fade-in[data-delay="4"] {
    transition-delay: 0.4s;
}