/* ============================================
   DE VALORE - STYLESHEET
   Kleurenpalet: Warme professionaliteit
   ============================================ */

:root {
    /* Refined Professional Palette */
    --primary-color: #0f172a;        /* Midnight Navy (Sleek & Trustworthy) */
    --primary-dark: #020617;
    --primary-light: #1e293b;
    
    --secondary-color: #b45309;      /* Refined Amber/Gold (Premium) */
    --secondary-light: #f59e0b;      /* Bright gold accent */
    --accent-color: #7f1d1d;         /* Deep Ruby Red (Sophisticated Primary Red) */
    
    /* Neutrale kleuren - High contrast & clean */
    --white: #ffffff;
    --off-white: #f8fafc;
    --light-gray: #f1f5f9;
    --gray: #64748b;
    --dark-gray: #334155;
    --black: #0f172a;
    
    /* Modern UI Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    
    /* Typography - Premium Pair */
    --font-primary: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;
    
    /* Spacing & Borders */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-full: 9999px;
    
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2.5rem;
    --spacing-xl: 4rem;
    --spacing-xxl: 6rem;
    
    /* Transitions */
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Navigation height */
    --nav-height: 80px;
}

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

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scroll-padding-top: var(--nav-height);
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--off-white);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ============================================
   SKIP LINK (Toegankelijkheid)
   ============================================ */

.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: var(--spacing-sm) var(--spacing-md);
    z-index: 10000;
    text-decoration: none;
    font-weight: 600;
    border-radius: 0 0 8px 0;
}

.skip-link:focus {
    top: 0;
}

/* ============================================
   VISUALLY HIDDEN (voor screen readers)
   ============================================ */

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================
   HONEYPOT (onzichtbaar spam veld)
   ============================================ */

.honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

/* ============================================
   CONTAINER
   ============================================ */

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

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.05);
    z-index: 1000;
    height: var(--nav-height);
    transition: all var(--transition-smooth);
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    height: calc(var(--nav-height) - 10px);
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    text-decoration: none;
    color: var(--primary-color);
    transition: transform var(--transition-fast);
}

.nav-logo:hover {
    transform: scale(1.02);
}

.nav-logo-img {
    border-radius: 20%;
    object-fit: cover;
    box-shadow: var(--shadow-sm);
}

.nav-brand {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-xs);
    align-items: center;
}

.nav-link {
    display: block;
    padding: var(--spacing-xs) var(--spacing-md);
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    position: relative;
}

.nav-link:not(.nav-link-cta)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: all var(--transition-fast);
    transform: translateX(-50%);
}

.nav-link:hover:not(.nav-link-cta)::after {
    width: 60%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link-cta {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
    margin-left: var(--spacing-sm);
}

.nav-link-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Mobile menu toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-sm);
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark-gray);
    position: relative;
    transition: var(--transition-fast);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--dark-gray);
    left: 0;
    transition: var(--transition-fast);
}

.hamburger::before {
    top: -7px;
}

.hamburger::after {
    top: 7px;
}

/* Active hamburger state */
.nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

/* ============================================
   HEADER / HERO - Split Screen Layout
   ============================================ */

.header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: calc(var(--nav-height) + var(--spacing-xl)) 0 var(--spacing-xl);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(180, 83, 9, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeInUp 0.8s ease;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--secondary-light);
    margin-bottom: var(--spacing-lg);
    backdrop-filter: blur(4px);
}

.hero-badge svg {
    flex-shrink: 0;
}

.site-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-xs);
    text-transform: uppercase;
    line-height: 1.1;
    color: var(--white);
}

.tagline {
    font-size: 1.35rem;
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--secondary-light);
    letter-spacing: 1px;
    margin-bottom: var(--spacing-md);
}

.hero-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-lg);
    max-width: 480px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-smooth);
    border: 2px solid transparent;
}

.btn-hero-primary {
    background: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
}

.btn-hero-primary:hover {
    background: var(--secondary-light);
    border-color: var(--secondary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(180, 83, 9, 0.3);
}

.btn-hero-secondary {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Hero Visual Side */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-visual-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-lg);
}

.logo {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: none;
    background: none;
    padding: 0;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
    transition: all var(--transition-smooth);
    object-fit: cover;
}

.logo:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.5);
}

.hero-stats {
    display: flex;
    gap: var(--spacing-sm);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    backdrop-filter: blur(4px);
}

.stat-icon {
    color: var(--secondary-light);
    display: flex;
    align-items: center;
}

.stat-icon svg {
    width: 16px;
    height: 16px;
}

.stat-text {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   SECTIONS (algemeen)
   ============================================ */

.section {
    padding: var(--spacing-xxl) 0;
}

.section:nth-child(even) {
    background-color: var(--white);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: var(--spacing-md);
    letter-spacing: 2px;
    position: relative;
    padding-bottom: var(--spacing-sm);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-light));
    border-radius: 2px;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: var(--spacing-xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* ============================================
   DIENSTEN SECTION
   ============================================ */

.diensten-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.dienst-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-smooth);
    border: 1px solid var(--light-gray);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.dienst-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: var(--transition-smooth);
}

.dienst-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.dienst-card:hover::before {
    opacity: 1;
}

.dienst-icon {
    width: 70px;
    height: 70px;
    background: var(--light-gray);
    color: var(--primary-color);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    transition: all var(--transition-smooth);
}

.dienst-card:hover .dienst-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: rotate(-5deg) scale(1.1);
}

.dienst-icon svg {
    width: 32px;
    height: 32px;
}

.dienst-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
}

.dienst-description {
    color: var(--gray);
    margin-bottom: var(--spacing-lg);
    line-height: 1.7;
    font-size: 1rem;
    flex-grow: 1;
}

.dienst-features {
    list-style: none;
    padding: 0;
    border-top: 1px solid var(--light-gray);
    padding-top: var(--spacing-md);
}

.dienst-features li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--dark-gray);
    font-size: 0.9rem;
    font-weight: 500;
}

.dienst-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b45309' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* ============================================
   OVER SECTION
   ============================================ */

.over-section {
    background-color: var(--white);
}

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

.over-text p {
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.over-intro {
    font-size: 1.15rem;
    color: var(--dark-gray);
}

.credentials {
    margin-top: var(--spacing-xl);
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, rgba(44, 95, 125, 0.05), rgba(74, 138, 171, 0.05));
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.credentials-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.credentials-list {
    list-style: none;
}

.credentials-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    font-size: 1.05rem;
}

.credential-icon {
    color: var(--success-color);
    font-weight: bold;
    flex-shrink: 0;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
    background-color: var(--off-white);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: var(--spacing-xl);
}

.faq-category:last-child {
    margin-bottom: 0;
}

.faq-category-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--primary-dark);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--secondary-color);
}

.faq-item {
    background: var(--white);
    border-radius: 8px;
    margin-bottom: var(--spacing-sm);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-md);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark-gray);
    transition: all var(--transition-fast);
}

.faq-question:hover {
    color: var(--primary-color);
    background-color: rgba(44, 95, 125, 0.03);
}

.faq-question[aria-expanded="true"] {
    color: var(--primary-color);
    background-color: rgba(44, 95, 125, 0.05);
}

.faq-icon {
    width: 20px;
    height: 20px;
    position: relative;
    flex-shrink: 0;
    margin-left: var(--spacing-sm);
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--primary-color);
    transition: transform var(--transition-fast);
}

.faq-icon::before {
    width: 100%;
    height: 2px;
    top: 50%;
    transform: translateY(-50%);
}

.faq-icon::after {
    width: 2px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.faq-question[aria-expanded="true"] .faq-icon::after {
    transform: translateX(-50%) rotate(90deg);
}

.faq-answer {
    display: none;
    padding: 0 var(--spacing-md) var(--spacing-md);
}

.faq-answer.open {
    display: block;
}

.faq-answer p {
    color: var(--gray);
    line-height: 1.8;
}

/* ============================================
   SAMENVATTING / IN HET KORT SECTION (AEO)
   ============================================ */

.samenvatting-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.samenvatting-section .section-title {
    color: var(--white);
}

.samenvatting-section .section-title::after {
    background: linear-gradient(90deg, var(--secondary-light), var(--secondary-color));
}

.samenvatting-section .section-intro {
    color: rgba(255, 255, 255, 0.8);
}

.samenvatting-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.samenvatting-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    backdrop-filter: blur(8px);
    transition: all var(--transition-smooth);
}

.samenvatting-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.samenvatting-card-title {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--secondary-light);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.samenvatting-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.samenvatting-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--secondary-light);
}

.samenvatting-card p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: 0.95rem;
}

.samenvatting-card a {
    color: var(--secondary-light);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.samenvatting-card a:hover {
    color: var(--white);
    text-decoration: underline;
}

.samenvatting-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.samenvatting-list li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.6;
}

.samenvatting-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-light);
    font-weight: bold;
}

.samenvatting-list-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: var(--spacing-xs);
}

.samenvatting-list-inline li {
    padding-left: 0;
    margin-bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
}

.samenvatting-list-inline li::before {
    display: none;
}

.samenvatting-contact {
    margin-top: var(--spacing-sm);
}

/* ============================================
   HERO USP BADGES
   ============================================ */

.hero-usps {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
}

.hero-usp {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    transition: all var(--transition-fast);
}

.hero-usp:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
}

.hero-usp-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-light);
}

.hero-usp-icon svg {
    width: 16px;
    height: 16px;
}

/* ============================================
   PROBLEM SECTION
   ============================================ */

.problem-section {
    background: var(--white);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    max-width: 900px;
    margin: 0 auto var(--spacing-xl);
}

.problem-card {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: var(--off-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--light-gray);
    transition: all var(--transition-smooth);
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary-color);
}

.problem-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-color), #991b1b);
    border-radius: var(--radius-md);
    color: var(--white);
}

.problem-icon svg {
    width: 24px;
    height: 24px;
}

.problem-text {
    color: var(--dark-gray);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.problem-cta {
    text-align: center;
    padding-top: var(--spacing-md);
}

.problem-cta-text {
    font-size: 1.15rem;
    color: var(--dark-gray);
    margin-bottom: var(--spacing-md);
    font-weight: 500;
}

/* ============================================
   STEPS SECTION
   ============================================ */

.steps-section {
    background: var(--off-white);
}

.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: var(--spacing-sm);
    max-width: 1100px;
    margin: 0 auto var(--spacing-xl);
}

.step-card {
    flex: 1;
    max-width: 300px;
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--light-gray);
    position: relative;
    transition: all var(--transition-smooth);
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.step-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: var(--secondary-color);
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.step-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--spacing-md);
    background: var(--light-gray);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all var(--transition-smooth);
}

.step-card:hover .step-icon {
    background: var(--primary-color);
    color: var(--white);
}

.step-icon svg {
    width: 28px;
    height: 28px;
}

.step-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

.step-description {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: var(--spacing-xl);
    color: var(--secondary-color);
}

.step-connector svg {
    width: 28px;
    height: 28px;
}

.steps-cta {
    text-align: center;
}

/* ============================================
   SUCCESS SECTION
   ============================================ */

.success-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.success-section .section-title {
    color: var(--white);
}

.success-section .section-title::after {
    background: linear-gradient(90deg, var(--secondary-light), var(--secondary-color));
}

.success-section .section-intro {
    color: rgba(255, 255, 255, 0.8);
}

.success-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    max-width: 800px;
    margin: 0 auto var(--spacing-xl);
}

.success-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    backdrop-filter: blur(4px);
    transition: all var(--transition-fast);
}

.success-item:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(4px);
}

.success-check {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-color);
    border-radius: 50%;
    color: var(--white);
}

.success-check svg {
    width: 16px;
    height: 16px;
}

.success-text {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
}

.success-cta {
    text-align: center;
}

.success-cta .btn-hero-primary {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

.success-cta .btn-hero-primary:hover {
    background: var(--secondary-light);
    color: var(--white);
    border-color: var(--secondary-light);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials-section {
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.testimonial-card {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    border: 1px solid var(--light-gray);
    transition: all var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}

.testimonial-rating {
    margin-bottom: var(--spacing-sm);
}

.testimonial-rating .star {
    color: var(--secondary-color);
    font-size: 1.25rem;
}

.testimonial-quote {
    flex-grow: 1;
    margin: 0 0 var(--spacing-md);
}

.testimonial-quote p {
    color: var(--dark-gray);
    font-size: 1rem;
    line-height: 1.7;
    font-style: italic;
    margin: 0;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding-top: var(--spacing-sm);
    border-top: 1px solid var(--light-gray);
}

.testimonial-name {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.testimonial-role {
    font-size: 0.85rem;
    color: var(--gray);
}

.testimonials-disclaimer {
    text-align: center;
    font-size: 0.85rem;
    color: var(--gray);
    font-style: italic;
}

/* Responsive adjustments for samenvatting */
@media (max-width: 1024px) {
    .samenvatting-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-grid {
        flex-wrap: wrap;
    }
    
    .step-connector {
        display: none;
    }
    
    .step-card {
        flex: 1 1 calc(50% - var(--spacing-sm));
        max-width: none;
    }
}

@media (max-width: 768px) {
    .samenvatting-grid {
        grid-template-columns: 1fr;
    }
    
    .samenvatting-card {
        padding: var(--spacing-md);
    }
    
    /* Hero USPs mobile */
    .hero-usps {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-usp {
        width: 100%;
        justify-content: center;
    }
    
    /* Problem section mobile */
    .problem-grid {
        grid-template-columns: 1fr;
    }
    
    /* Steps section mobile */
    .steps-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .step-card {
        width: 100%;
        max-width: 350px;
    }
    
    /* Success section mobile */
    .success-grid {
        grid-template-columns: 1fr;
    }
    
    /* Testimonials mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Dark mode adjustments for samenvatting */
@media (prefers-color-scheme: dark) {
    .samenvatting-section {
        background: linear-gradient(135deg, #020617 0%, #0f172a 100%);
    }
    
    .samenvatting-card {
        background: rgba(255, 255, 255, 0.03);
        border-color: rgba(255, 255, 255, 0.08);
    }
    
    .samenvatting-card:hover {
        background: rgba(255, 255, 255, 0.06);
    }
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
    background: var(--white);
    padding: var(--spacing-xxl) 0;
}

.contact-wrapper {
    background: var(--white);
    border-radius: 12px;
    padding: var(--spacing-xl);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    max-width: 700px;
    margin: 0 auto;
}

.contact-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
}

/* ============================================
   FORM STYLES
   ============================================ */

.contact-form {
    margin-bottom: var(--spacing-lg);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-input {
    width: 100%;
    padding: var(--spacing-md);
    font-size: 1rem;
    font-family: var(--font-primary);
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    background-color: var(--off-white);
    transition: all var(--transition-smooth);
    outline: none;
}

.form-input:focus {
    border-color: var(--primary-color);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(44, 95, 125, 0.1);
    transform: translateY(-2px);
}

.form-input::placeholder {
    color: var(--gray);
    opacity: 0.7;
}

textarea.form-input {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    padding: var(--spacing-md) var(--spacing-lg);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(44, 95, 125, 0.3);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(44, 95, 125, 0.4);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
}

.btn-submit:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(44, 95, 125, 0.3);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* ============================================
   FORM STATUS
   ============================================ */

.form-status {
    margin-top: var(--spacing-md);
    padding: var(--spacing-md);
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-status.success {
    background-color: rgba(40, 167, 69, 0.1);
    border: 2px solid var(--success-color);
    color: var(--success-color);
    display: block;
}

.form-status.error {
    background-color: rgba(220, 53, 69, 0.1);
    border: 2px solid var(--error-color);
    color: var(--error-color);
    display: block;
}

/* ============================================
   EMAIL LINK
   ============================================ */

.email-link {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--light-gray);
}

.email-link p {
    font-size: 1rem;
    color: var(--gray);
}

.email-anchor {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-fast);
    position: relative;
}

.email-anchor::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width var(--transition-smooth);
}

.email-anchor:hover {
    color: var(--primary-light);
}

.email-anchor:hover::after {
    width: 100%;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background-color: var(--primary-color);
    color: var(--light-gray);
    padding: var(--spacing-xl) 0 var(--spacing-lg);
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    max-width: 280px;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: var(--spacing-xs);
}

.footer-tagline {
    font-style: italic;
    color: var(--secondary-light);
    margin-bottom: var(--spacing-sm);
}

.footer-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

.footer-heading {
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--spacing-sm);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.4rem;
    line-height: 1.5;
}

.footer-cities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem 0.5rem;
}

.footer-cities li {
    margin-bottom: 0;
}

.footer-cities li:not(:last-child)::after {
    content: '•';
    margin-left: 0.5rem;
    color: var(--secondary-color);
}

.footer-contact p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--spacing-xs);
    line-height: 1.5;
}

.footer-contact a {
    color: var(--secondary-light);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-contact a:hover {
    color: var(--white);
}

/* Footer Privacy Section */
.footer-privacy {
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-privacy-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem var(--spacing-sm);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    cursor: pointer;
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 500;
    transition: all var(--transition-fast);
}

.footer-privacy-toggle:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
}

.footer-privacy-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-privacy-icon {
    width: 12px;
    height: 12px;
    position: relative;
    opacity: 0.7;
}

.footer-privacy-icon::before,
.footer-privacy-icon::after {
    content: '';
    position: absolute;
    background: currentColor;
    transition: transform var(--transition-fast);
}

.footer-privacy-icon::before {
    width: 100%;
    height: 2px;
    top: 50%;
    transform: translateY(-50%);
}

.footer-privacy-icon::after {
    width: 2px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.footer-privacy-toggle[aria-expanded="true"] .footer-privacy-icon::after {
    transform: translateX(-50%) rotate(90deg);
}

.footer-privacy-content {
    padding: var(--spacing-md);
    margin-top: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-sm);
}

.footer-privacy-content[hidden] {
    display: none;
}

.footer-privacy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
}

.footer-privacy-item h4 {
    color: var(--secondary-light);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-privacy-item p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    line-height: 1.5;
    margin: 0;
}

.footer-privacy-buttons {
    display: flex;
    gap: var(--spacing-xs);
    margin-top: var(--spacing-sm);
}

.btn-privacy-sm {
    padding: 0.35rem 0.75rem;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-privacy-sm.btn-privacy-accept {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-privacy-sm.btn-privacy-accept:hover {
    background: var(--secondary-light);
}

.btn-privacy-sm.btn-privacy-accept.active {
    background: #166534;
    cursor: default;
}

.btn-privacy-sm.btn-privacy-decline {
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-privacy-sm.btn-privacy-decline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-privacy-sm.btn-privacy-decline.active {
    background: rgba(127, 29, 29, 0.5);
    border-color: rgba(127, 29, 29, 0.8);
    color: rgba(255, 255, 255, 0.8);
    cursor: default;
}

.footer-privacy-contact {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    margin: 0;
    padding-top: var(--spacing-sm);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-privacy-contact a {
    color: var(--secondary-light);
}

.footer-privacy-contact a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.copyright {
    font-size: 0.85rem;
    opacity: 0.8;
}

.footer-credentials {
    font-size: 0.8rem;
    color: var(--secondary-light);
    opacity: 0.9;
}

/* ============================================
   COOKIE BANNER
   ============================================ */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner:not([hidden]) {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-md) var(--spacing-lg);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--spacing-md);
}

.cookie-text {
    flex: 1;
    min-width: 280px;
}

.cookie-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.cookie-description {
    font-size: 0.9rem;
    color: var(--dark-gray);
    margin: 0;
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.btn-cookie {
    padding: 0.6rem 1.25rem;
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

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

.btn-cookie-accept:hover {
    background: var(--primary-dark);
}

.btn-cookie-decline {
    background: transparent;
    color: var(--dark-gray);
    border: 1px solid var(--gray);
}

.btn-cookie-decline:hover {
    background: var(--light-gray);
    border-color: var(--dark-gray);
}

.cookie-link {
    font-size: 0.85rem;
    color: var(--gray);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color var(--transition-fast);
    white-space: nowrap;
}

.cookie-link:hover {
    color: var(--primary-color);
}

/* ============================================
   PRIVACY SECTION
   ============================================ */

.privacy-section {
    background: var(--off-white);
}

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

.privacy-block {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md) var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    border: 1px solid var(--light-gray);
}

.privacy-subtitle {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.privacy-block p {
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: var(--spacing-sm);
}

.privacy-block p:last-child {
    margin-bottom: 0;
}

.privacy-list {
    list-style: none;
    padding: 0;
    margin: var(--spacing-sm) 0 0;
}

.privacy-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
    line-height: 1.6;
}

.privacy-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 6px;
    height: 6px;
    background: var(--secondary-color);
    border-radius: 50%;
}

.privacy-buttons {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    margin-top: var(--spacing-md);
}

.btn-privacy {
    padding: 0.65rem 1.5rem;
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

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

.btn-privacy-accept:hover {
    background: var(--primary-dark);
}

.btn-privacy-decline {
    background: transparent;
    color: var(--dark-gray);
    border: 1px solid var(--gray);
}

.btn-privacy-decline:hover {
    background: var(--light-gray);
    border-color: var(--dark-gray);
}

.privacy-block a {
    color: var(--primary-color);
    text-decoration: underline;
    text-underline-offset: 2px;
}

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

/* ============================================
   COOKIE BANNER
   ============================================ */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner:not([hidden]) {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-md) var(--spacing-lg);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--spacing-md);
}

.cookie-text {
    flex: 1;
    min-width: 280px;
}

.cookie-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.cookie-description {
    font-size: 0.9rem;
    color: var(--dark-gray);
    margin: 0;
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.btn-cookie {
    padding: 0.6rem 1.25rem;
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

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

.btn-cookie-accept:hover {
    background: var(--primary-dark);
}

.btn-cookie-decline {
    background: transparent;
    color: var(--dark-gray);
    border: 1px solid var(--gray);
}

.btn-cookie-decline:hover {
    background: var(--light-gray);
    border-color: var(--dark-gray);
}

.cookie-link {
    font-size: 0.85rem;
    color: var(--gray);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color var(--transition-fast);
    white-space: nowrap;
}

.cookie-link:hover {
    color: var(--primary-color);
}

/* ============================================
   PRIVACY SECTION
   ============================================ */

.privacy-section {
    background: var(--off-white);
}

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

.privacy-block {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md) var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    border: 1px solid var(--light-gray);
}

.privacy-subtitle {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.privacy-block p {
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: var(--spacing-sm);
}

.privacy-block p:last-child {
    margin-bottom: 0;
}

.privacy-list {
    list-style: none;
    padding: 0;
    margin: var(--spacing-sm) 0 0;
}

.privacy-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
    line-height: 1.6;
}

.privacy-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 6px;
    height: 6px;
    background: var(--secondary-color);
    border-radius: 50%;
}

.privacy-buttons {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    margin-top: var(--spacing-md);
}

.btn-privacy {
    padding: 0.65rem 1.5rem;
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

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

.btn-privacy-accept:hover {
    background: var(--primary-dark);
}

.btn-privacy-decline {
    background: transparent;
    color: var(--dark-gray);
    border: 1px solid var(--gray);
}

.btn-privacy-decline:hover {
    background: var(--light-gray);
    border-color: var(--dark-gray);
}

.privacy-block a {
    color: var(--primary-color);
    text-decoration: underline;
    text-underline-offset: 2px;
}

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

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */

.reveal-init {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-init.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Specific adjustment for FAQ categories */
.faq-category.reveal-init {
    transform: translateX(-20px);
}

.faq-category.reveal-init.revealed {
    transform: translateX(0);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Desktop (1024px en kleiner) */
@media (max-width: 1024px) {
    .diensten-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablets (768px en kleiner) */
@media (max-width: 768px) {
    :root {
        font-size: 15px;
        --nav-height: 60px;
    }
    
    /* Mobile navigation */
    .nav-toggle {
        display: block;
    }
    
    .nav-menu {
        position: absolute;
        top: var(--nav-height);
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: var(--spacing-md);
        gap: var(--spacing-xs);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        display: none;
        border-top: 1px solid var(--light-gray);
    }
    
    .nav-menu.open {
        display: flex;
        animation: fadeInDown 0.3s ease;
    }
    
    .nav-link {
        padding: var(--spacing-sm);
    }
    
    .nav-link-cta {
        text-align: center;
    }
    
    /* Hero - Stack on mobile */
    .header {
        min-height: auto;
        padding: calc(var(--nav-height) + var(--spacing-lg)) 0 var(--spacing-xl);
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
        text-align: center;
    }
    
    .hero-content {
        order: 2;
    }
    
    .hero-visual {
        order: 1;
    }
    
    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .logo {
        width: 160px;
        height: 160px;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .site-title {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }
    
    .tagline {
        font-size: 1.1rem;
    }
    
    /* Sections */
    .section {
        padding: var(--spacing-xl) 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    /* Diensten */
    .diensten-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        max-width: none;
        text-align: center;
        margin-bottom: var(--spacing-sm);
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    /* Cookie banner tablet */
    .cookie-content {
        flex-direction: column;
        text-align: center;
        padding: var(--spacing-md);
    }
    
    .cookie-actions {
        justify-content: center;
    }
    
    /* Privacy section tablet */
    .privacy-block {
        padding: var(--spacing-md);
    }
    
    .privacy-buttons {
        justify-content: center;
    }
}

/* Mobiel (480px en kleiner) */
@media (max-width: 480px) {
    :root {
        font-size: 14px;
    }
    
    .header {
        padding-top: calc(var(--nav-height) + var(--spacing-md));
        padding-bottom: var(--spacing-lg);
    }
    
    .hero-container {
        gap: var(--spacing-lg);
    }
    
    .site-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .logo {
        width: 130px;
        height: 130px;
        padding: var(--spacing-sm);
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        letter-spacing: 1px;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .btn-hero {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
        width: 100%;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: var(--spacing-xs);
    }
    
    .stat-item {
        padding: 0.5rem 0.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .dienst-card {
        padding: var(--spacing-md);
    }
    
    .contact-wrapper {
        padding: var(--spacing-md);
        border-radius: 8px;
    }
    
    .contact-intro {
        font-size: 1rem;
    }
    
    .form-input {
        padding: var(--spacing-sm);
    }
    
    .btn-submit {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 1rem;
    }
    
    .faq-question {
        font-size: 1rem;
        padding: var(--spacing-sm);
    }
    
    .faq-answer {
        padding: 0 var(--spacing-sm) var(--spacing-sm);
    }
    
    /* Footer mobile */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-cities {
        justify-content: center;
    }
    
    .footer-list {
        text-align: center;
    }
    
    /* Footer privacy mobile */
    .footer-privacy-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-privacy-buttons {
        justify-content: center;
    }
    
    /* Cookie banner mobile */
    .cookie-content {
        padding: var(--spacing-sm);
        gap: var(--spacing-sm);
    }
    
    .cookie-title {
        font-size: 1rem;
    }
    
    .cookie-description {
        font-size: 0.85rem;
    }
    
    .cookie-actions {
        width: 100%;
    }
    
    .btn-cookie {
        flex: 1;
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .cookie-link {
        width: 100%;
        text-align: center;
    }
    
    /* Privacy section mobile */
    .privacy-block {
        padding: var(--spacing-sm) var(--spacing-md);
    }
    
    .privacy-subtitle {
        font-size: 1.05rem;
    }
    
    .privacy-buttons {
        flex-direction: column;
    }
    
    .btn-privacy {
        width: 100%;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

/* Focus states voor toetsenbord navigatie */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 3px solid var(--primary-light);
    outline-offset: 2px;
}

/* Reduced motion voor gebruikers met motion sensitiviteit */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* ============================================
   DARK MODE
   ============================================ */

@media (prefers-color-scheme: dark) {
    :root {
        --bg-color: #020617;     /* Very dark blue/black */
        --card-bg: #0f172a;      /* Midnight Navy */
        --border-color: #1e293b; /* Dark Slate */
        --text-color: #f1f5f9;   /* Off-white text */
        --text-muted: #94a3b8;   /* Muted Slate */
        --primary-light: #334155;
    }
    
    body {
        background-color: var(--bg-color);
        color: var(--text-color);
    }
    
    .nav {
        background: rgba(15, 23, 42, 0.85);
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav.scrolled {
        background: rgba(15, 23, 42, 0.95);
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
    }
    
    .nav-link {
        color: var(--text-color);
    }
    
    .nav-link:hover,
    .nav-link.active {
        background-color: rgba(255, 255, 255, 0.05);
        color: var(--secondary-light);
    }
    
    .nav-menu {
        background-color: var(--card-bg);
        border-top-color: var(--border-color);
        border-bottom: 1px solid var(--border-color);
        box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.6);
    }
    
    .hamburger,
    .hamburger::before,
    .hamburger::after {
        background-color: var(--text-color);
    }
    
    .section:nth-child(even),
    .over-section,
    .contact-section {
        background-color: var(--card-bg);
    }
    
    .faq-section,
    .diensten-section {
        background-color: var(--bg-color);
    }
    
    .dienst-card,
    .faq-item,
    .contact-wrapper {
        background-color: var(--card-bg);
        border-color: var(--border-color);
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    }

    .dienst-card:hover {
        border-color: var(--secondary-color);
        background-color: #162032; /* Slightly lighter than card-bg */
        box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5);
    }
    
    .dienst-title,
    .faq-category-title {
        color: var(--secondary-light);
    }
    
    .dienst-description,
    .faq-answer p,
    .contact-intro,
    .over-text p {
        color: var(--text-muted);
    }
    
    .faq-question {
        color: var(--text-color);
    }
    
    .faq-question:hover {
        background-color: rgba(255, 255, 255, 0.03);
    }
    
    .form-input {
        background-color: rgba(255, 255, 255, 0.03);
        border-color: var(--border-color);
        color: var(--text-color);
    }
    
    .form-input:focus {
        background-color: rgba(255, 255, 255, 0.08);
        border-color: var(--secondary-color);
    }
    
    .email-link {
        border-top-color: var(--border-color);
    }
    
    .email-link p {
        color: var(--text-muted);
    }
    
    .email-anchor {
        color: var(--secondary-light);
    }
    
    .email-anchor:hover {
        color: var(--secondary-color);
    }
    
    .credentials {
        background: rgba(30, 41, 59, 0.4);
        border-left-color: var(--secondary-color);
    }
    
    .credentials-title {
        color: var(--secondary-light);
    }
    
    .footer {
        background-color: #000;
        border-top: 1px solid var(--border-color);
    }
    
    .footer-heading {
        color: var(--secondary-light);
    }
    
    .footer-list li,
    .footer-contact p,
    .footer-description {
        color: var(--text-muted);
    }
    
    .dienst-features li {
        color: var(--text-muted);
    }
    
    .dienst-icon {
        background-color: var(--bg-color);
        color: var(--secondary-light);
    }
    
    .nav-link-cta {
        background: var(--secondary-color);
        color: var(--white) !important;
    }
    
    .nav-link-cta:hover {
        background: var(--secondary-light);
    }
    
    /* Ensure text visibility in dark mode */
    .section-title {
        color: var(--secondary-light);
    }
    
    .over-intro {
        color: var(--text-color);
    }

    .nav-brand {
        color: var(--white);
    }
    
    /* Cookie banner dark mode */
    .cookie-banner {
        background: var(--card-bg);
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
    }
    
    .cookie-title {
        color: var(--secondary-light);
    }
    
    .cookie-description {
        color: var(--text-muted);
    }
    
    .btn-cookie-accept {
        background: var(--secondary-color);
    }
    
    .btn-cookie-accept:hover {
        background: var(--secondary-light);
    }
    
    .btn-cookie-decline {
        color: var(--text-muted);
        border-color: var(--border-color);
    }
    
    .btn-cookie-decline:hover {
        background: rgba(255, 255, 255, 0.05);
        border-color: var(--text-muted);
    }
    
    .cookie-link {
        color: var(--text-muted);
    }
    
    .cookie-link:hover {
        color: var(--secondary-light);
    }
    
    /* Privacy section dark mode */
    .privacy-section {
        background: var(--bg-color);
    }
    
    .privacy-block {
        background: var(--card-bg);
        border-color: var(--border-color);
    }
    
    .privacy-subtitle {
        color: var(--secondary-light);
    }
    
    .privacy-block p,
    .privacy-list li {
        color: var(--text-muted);
    }
    
    .privacy-list li::before {
        background: var(--secondary-color);
    }
    
    .btn-privacy-accept {
        background: var(--secondary-color);
    }
    
    .btn-privacy-accept:hover {
        background: var(--secondary-light);
    }
    
    .btn-privacy-decline {
        color: var(--text-muted);
        border-color: var(--border-color);
    }
    
    .btn-privacy-decline:hover {
        background: rgba(255, 255, 255, 0.05);
    }
    
    .privacy-block a {
        color: var(--secondary-light);
    }
    
    .privacy-block a:hover {
        color: var(--secondary-color);
    }
    
    /* Problem section dark mode */
    .problem-section {
        background: var(--card-bg);
    }
    
    .problem-card {
        background: var(--bg-color);
        border-color: var(--border-color);
    }
    
    .problem-card:hover {
        border-color: var(--secondary-color);
    }
    
    .problem-text,
    .problem-cta-text {
        color: var(--text-muted);
    }
    
    /* Steps section dark mode */
    .steps-section {
        background: var(--bg-color);
    }
    
    .step-card {
        background: var(--card-bg);
        border-color: var(--border-color);
    }
    
    .step-card:hover {
        border-color: var(--secondary-color);
    }
    
    .step-title {
        color: var(--secondary-light);
    }
    
    .step-description {
        color: var(--text-muted);
    }
    
    .step-icon {
        background: var(--bg-color);
        color: var(--secondary-light);
    }
    
    /* Success section dark mode - already has dark background */
    
    /* Testimonials section dark mode */
    .testimonials-section {
        background: var(--card-bg);
    }
    
    .testimonial-card {
        background: var(--bg-color);
        border-color: var(--border-color);
    }
    
    .testimonial-card:hover {
        border-color: var(--secondary-color);
    }
    
    .testimonial-quote p {
        color: var(--text-muted);
    }
    
    .testimonial-name {
        color: var(--secondary-light);
    }
    
    .testimonial-role {
        color: var(--text-muted);
    }
    
    .testimonial-author {
        border-top-color: var(--border-color);
    }
    
    .testimonials-disclaimer {
        color: var(--text-muted);
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
    .nav,
    .skip-link,
    .btn-hero,
    .contact-form,
    .btn-submit,
    .faq-icon,
    .hero-visual,
    .hero-badge,
    .hero-stats,
    .cookie-banner,
    .privacy-buttons {
        display: none;
    }
    
    .header {
        background: none;
        color: #000;
        box-shadow: none;
        padding-top: var(--spacing-lg);
        min-height: auto;
    }
    
    .header::before,
    .header::after {
        display: none;
    }
    
    .hero-container {
        display: block;
    }
    
    .hero-content {
        text-align: left;
    }
    
    .site-title,
    .section-title,
    .dienst-title,
    .faq-category-title,
    .credentials-title {
        color: #000;
    }
    
    .tagline,
    .hero-subtitle,
    .hero-description {
        color: #333;
    }
    
    .footer {
        background: none;
        color: #000;
    }
    
    .dienst-card,
    .faq-item,
    .contact-wrapper,
    .credentials {
        box-shadow: none;
        border: 1px solid #ccc;
        break-inside: avoid;
    }
    
    .faq-answer {
        display: block !important;
    }
    
    .email-link {
        display: block;
    }
    
    .email-anchor {
        color: #000;
    }
    
    .email-anchor::after {
        content: " (" attr(href) ")";
        font-size: 0.9em;
    }
    
    .section {
        padding: var(--spacing-lg) 0;
    }
}
