/* ==========================================================================
   Nateo - Website
   ========================================================================== */

/* --- CSS Variables --- */
:root {
    --font-heading: 'Oswald', sans-serif;
    --font-accent: 'Playfair Display', serif;
    --font-body: 'Source Sans 3', sans-serif;
    --white: #ffffff;
    --white-90: rgba(255, 255, 255, 0.9);
    --white-70: rgba(255, 255, 255, 0.7);
    --white-40: rgba(255, 255, 255, 0.4);
    --white-20: rgba(255, 255, 255, 0.2);
    --white-10: rgba(255, 255, 255, 0.1);
    --accent: #4fc3f7;
    --accent-dark: #0288d1;
    --accent-glow: rgba(79, 195, 247, 0.3);
    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.1);
    --promo-bg: #0288d1;
    --nav-bg: rgba(0, 0, 0, 0.25);
    --nav-bg-scrolled: rgba(0, 0, 0, 0.85);
    --transition-smooth: 0.3s ease;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* ========================================
   Accessibility
   ======================================== */
.skip-link {
    position: absolute;
    top: -100px;
    left: 20px;
    z-index: 3000;
    background: var(--accent);
    color: #111;
    padding: 12px 20px;
    font-family: var(--font-heading);
    font-size: 13px;
    letter-spacing: 2px;
    border-radius: 4px;
    text-transform: uppercase;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 20px;
    outline: 3px solid var(--white);
    outline-offset: 2px;
}

*:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

/* Respect prefers-reduced-motion — schakel alle parallax en heavy anims uit */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .parallax-bg {
        transform: none !important;
        top: 0 !important;
        height: 100% !important;
    }

    .whatsapp-float::before {
        display: none !important;
    }
}

/* ========================================
   Promo Banner
   ======================================== */
.promo-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1100;
    background: linear-gradient(135deg, var(--promo-bg), #1565c0);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 50px 10px 20px;
    min-height: 42px;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.promo-banner.hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.promo-inner {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
}

.promo-text {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--white);
}

.promo-cta {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 5px 16px;
    border-radius: 2px;
    transition: all var(--transition-smooth);
}

.promo-cta:hover {
    background: var(--white);
    color: var(--promo-bg);
    border-color: var(--white);
}

.promo-close {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 22px;
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
    transition: color var(--transition-smooth);
}

.promo-close:hover {
    color: var(--white);
}

/* --- Navigation (offset for promo banner) --- */
#templatemo-nav {
    position: fixed;
    top: 42px;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--nav-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background var(--transition-smooth), top 0.4s ease;
}

#templatemo-nav.scrolled {
    background: var(--nav-bg-scrolled);
}

#templatemo-nav.banner-closed {
    top: 0;
}

.nav-container {
    max-width: 100%;
    margin: 0;
    padding: 0 30px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
}

.nav-logo {
    display: flex;
    align-items: center;
    margin-right: auto;
}

.nav-logo-img {
    height: 64px;
    width: auto;
    display: block;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 35px;
}

.nav-links a {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 2.5px;
    color: var(--white-70);
    transition: color var(--transition-smooth), opacity var(--transition-smooth);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
}

.nav-links a::after {
    content: '';
    display: block;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width var(--transition-smooth);
    margin-top: 4px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition-smooth);
}

/* ========================================
   Hero Logo
   ======================================== */
.hero-logo {
    margin-bottom: 30px;
    display: inline-block;
    position: relative;
    padding: 20px 30px;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0) 70%);
    border-radius: 12px;
}

.hero-logo-img {
    max-height: 340px;
    max-width: 90vw;
    width: auto;
    margin: 0 auto;
    filter: drop-shadow(0 6px 25px rgba(2, 136, 209, 0.5));
}

/* Overbodig sinds nieuw kleurrijk logo — verborgen ipv HTML wijzigen */
.hero-logo-circle {
    display: none;
}

/* --- Parallax Sections --- */
.parallax-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Zorg dat HTML `hidden` attribuut altijd wint van display: flex hierboven */
[hidden] {
    display: none !important;
}

.section-tall {
    min-height: auto;
}

.parallax-bg {
    position: absolute;
    top: -50%;
    left: 0;
    width: 100%;
    height: 200%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    will-change: transform;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 0;
}

/* Dark Overlay */
.parallax-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.parallax-overlay.overlay-dark {
    background: rgba(0, 0, 0, 0.62);
}

.parallax-overlay.overlay-medium {
    background: rgba(0, 0, 0, 0.50);
}

/* Content Layer */
.section-content {
    position: relative;
    z-index: 2;
    max-width: 960px;
    width: 100%;
    padding: 120px 30px 100px;
    text-align: center;
}

.content-wide {
    max-width: 1200px;
}

/* --- Typography --- */
.section-title {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: clamp(36px, 6vw, 64px);
    letter-spacing: 8px;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-title .accent {
    font-family: var(--font-accent);
    font-style: italic;
    font-weight: 400;
    letter-spacing: 2px;
}

.hero-title {
    font-weight: 400;
    letter-spacing: 10px;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: clamp(13px, 1.6vw, 16px);
    letter-spacing: 4px;
    color: var(--white-70);
    margin-bottom: 40px;
}

.caps {
    text-transform: uppercase;
}

.content-block {
    max-width: 680px;
    margin: 0 auto;
}

.content-block p {
    font-size: 17px;
    color: var(--white-90);
    margin-bottom: 20px;
    line-height: 1.85;
}

/* --- Hero Button --- */
.btn-scroll {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 4px;
    color: var(--white);
    border: 1px solid var(--white-40);
    padding: 14px 45px;
    transition: all var(--transition-smooth);
}

.btn-scroll:hover {
    background: var(--accent);
    color: #111;
    border-color: var(--accent);
}

/* --- Services Grid (6 items, 3 columns) --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.service-item {
    text-align: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    padding: 35px 25px;
    transition: all var(--transition-smooth);
}

.service-item:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(79, 195, 247, 0.1);
}

.service-icon {
    margin-bottom: 20px;
    color: var(--accent);
}

.service-item h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 3px;
    margin-bottom: 12px;
    color: var(--white);
}

.service-item p {
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--white-70);
    line-height: 1.9;
}

/* ========================================
   Single offer card (1-pakket layout)
   ======================================== */
.single-offer {
    position: relative;
    max-width: 620px;
    margin: 40px auto 60px;
    padding: 45px 48px 40px;
    background: linear-gradient(160deg, rgba(79, 195, 247, 0.12), rgba(2, 136, 209, 0.08));
    border: 1px solid rgba(79, 195, 247, 0.4);
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.35), 0 0 40px rgba(79, 195, 247, 0.12);
}

.offer-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 3px;
    color: #111;
    background: var(--accent);
    padding: 6px 20px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(79, 195, 247, 0.4);
}

.offer-title {
    font-family: var(--font-heading);
    font-size: clamp(24px, 3.5vw, 32px);
    font-weight: 400;
    letter-spacing: 5px;
    color: var(--white);
    margin-bottom: 16px;
}

.offer-tagline {
    font-size: 15px;
    color: var(--white-70);
    line-height: 1.7;
    margin-bottom: 32px;
}

.offer-price-block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.offer-price-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.offer-price-first {
    font-family: var(--font-body);
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--white-70);
    text-transform: uppercase;
}

.offer-price-free {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--accent);
    line-height: 1;
}

.offer-price-amount {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--white);
    line-height: 1;
}

.offer-price-period {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 1px;
    color: var(--white-70);
    margin-left: 4px;
}

.offer-price-divider {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 22px;
    color: var(--white-40);
    margin-top: 12px;
}

.offer-fee-note {
    font-size: 13px;
    letter-spacing: 1px;
    color: var(--accent);
    margin-bottom: 30px;
}

.offer-features {
    list-style: none;
    text-align: left;
    max-width: 400px;
    margin: 0 auto 34px;
}

.offer-features li {
    font-size: 14px;
    color: var(--white-90);
    padding: 6px 0 6px 24px;
    position: relative;
    line-height: 1.5;
}

.offer-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 600;
}

.offer-cta {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 4px;
    color: #111;
    background: var(--accent);
    border: 1px solid var(--accent);
    border-radius: 4px;
    padding: 16px 45px;
    text-transform: uppercase;
    transition: all var(--transition-smooth);
}

.offer-cta:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(79, 195, 247, 0.4);
    transform: translateY(-2px);
}

/* ========================================
   Voorbeelden van stijlen
   ======================================== */
.styles-section {
    margin-top: 60px;
    padding-top: 50px;
    border-top: 1px solid var(--white-10);
}

.styles-title {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: clamp(22px, 3vw, 30px);
    letter-spacing: 5px;
    color: var(--white);
    margin-bottom: 12px;
    text-align: center;
}

.styles-title .accent {
    font-family: var(--font-accent);
    font-style: italic;
    font-weight: 400;
    letter-spacing: 1px;
}

.styles-intro {
    font-size: 14px;
    color: var(--white-70);
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
}

.styles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    text-align: center;
}

.style-example {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 18px 18px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all var(--transition-smooth);
    text-decoration: none;
}

.style-example:hover {
    border-color: var(--accent);
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(79, 195, 247, 0.15);
}

.style-preview {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid var(--white-10);
    margin-bottom: 18px;
}

.style-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-smooth);
}

.style-example:hover .style-preview img {
    transform: scale(1.04);
}

.style-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.style-example:hover .style-overlay {
    opacity: 1;
}

.style-name {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 6px;
}

.style-desc {
    font-size: 13px;
    color: var(--white-70);
    line-height: 1.5;
}

/* ========================================
   Lanceeractie Badge (in Templates section)
   ======================================== */
.lanceeractie-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--white);
    background: linear-gradient(135deg, var(--promo-bg), #1565c0);
    padding: 10px 30px;
    border-radius: 3px;
    margin-bottom: 10px;
}

/* ========================================
   Templates Grid
   ======================================== */
.templates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
    text-align: left;
}

.template-card {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--white-20);
    border-radius: 6px;
    overflow: hidden;
    transition: all var(--transition-smooth);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.template-card:hover {
    border-color: var(--accent);
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(79, 195, 247, 0.15);
}

/* Template Preview / Mockup */
.template-preview {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    padding: 24px;
    border-bottom: 1px solid var(--white-10);
}

.template-demo-link {
    display: block;
    position: relative;
    cursor: pointer;
}

.demo-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 18px;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 4px;
}

.template-demo-link:hover .demo-overlay {
    opacity: 1;
}

.template-screenshot {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    border: 1px solid var(--white-20);
}

/* Template Badge */
.template-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    background: var(--accent);
    color: #111;
    padding: 4px 12px;
    border-radius: 2px;
}

.badge-pro {
    background: #81c784;
}

.badge-new {
    background: #ffb74d;
}

/* Template Info */
.template-info {
    padding: 28px;
}

.template-info h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 4px;
    color: var(--white);
    margin-bottom: 10px;
}

.template-info > p {
    font-size: 15px;
    color: var(--white-70);
    line-height: 1.7;
    margin-bottom: 18px;
}

/* Template Features */
.template-features {
    list-style: none;
    margin-bottom: 22px;
}

.template-features li {
    font-size: 14px;
    color: var(--white-70);
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.template-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 600;
}

/* Template Price with strikethrough */
.template-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.price-original {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 1px;
    color: var(--white-40);
    text-decoration: line-through;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--accent);
}

.price-period {
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 1px;
    color: var(--white-60);
}

.price-label {
    font-size: 13px;
    color: var(--accent);
    letter-spacing: 1px;
    font-weight: 400;
    text-transform: uppercase;
    background: rgba(79, 195, 247, 0.15);
    padding: 3px 10px;
    border-radius: 2px;
}

/* Template Button */
.btn-template {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 3px;
    color: var(--white);
    border: 1px solid var(--white-40);
    padding: 12px 30px;
    transition: all var(--transition-smooth);
}

.btn-template:hover {
    background: var(--accent);
    color: #111;
    border-color: var(--accent);
}

/* Templates note */
.templates-note {
    margin-top: 40px;
    font-size: 14px;
    color: var(--white-40);
    letter-spacing: 1px;
}

/* ========================================
   Werkwijze Grid (Steps)
   ======================================== */
.werkwijze-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 50px auto;
    max-width: 900px;
    text-align: center;
}

.werkwijze-step {
    padding: 35px 20px;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    border-radius: 6px;
    transition: all var(--transition-smooth);
}

.werkwijze-step:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(79, 195, 247, 0.1);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 300;
    color: var(--accent);
    margin-bottom: 18px;
    letter-spacing: 1px;
    transition: all var(--transition-smooth);
}

.werkwijze-step:hover .step-number {
    background: var(--accent);
    color: #111;
    transform: scale(1.08);
}

.werkwijze-step h3 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--white);
    margin-bottom: 12px;
}

.werkwijze-step p {
    font-size: 14px;
    color: var(--white-70);
    line-height: 1.7;
}

/* --- Stats Row --- */
.stats-row {
    display: flex;
    justify-content: center;
    gap: 70px;
    margin-top: 45px;
    padding-top: 40px;
    border-top: 1px solid var(--white-20);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--white-70);
}

/* --- Contact Form --- */
.contact-form-wrap {
    max-width: 640px;
    margin: 0 auto;
    padding: 40px 40px 35px;
    background: rgba(10, 10, 10, 0.72);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid var(--white-10);
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row {
    display: flex;
    gap: 18px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--white-20);
    border-radius: 4px;
    padding: 16px 20px;
    outline: none;
    transition: border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--white-40);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(79, 195, 247, 0.15);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.form-select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1L6 6L11 1' stroke='rgba(255,255,255,0.4)' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 45px;
}

.form-select option {
    background: #222;
    color: var(--white);
}

.btn-submit {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 4px;
    color: #111;
    background: var(--accent);
    border: 1px solid var(--accent);
    border-radius: 4px;
    padding: 16px 45px;
    cursor: pointer;
    transition: all var(--transition-smooth);
    align-self: flex-start;
    text-transform: uppercase;
}

.btn-submit:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(79, 195, 247, 0.3);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Contact form helper-tekst onder de submit-knop */
.form-note {
    margin-top: 18px;
    font-size: 13px;
    line-height: 1.6;
    color: var(--white-70);
    text-align: center;
}

.form-note-link {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
    word-break: break-word;
}

.form-note-link:hover {
    color: var(--white);
}

/* Honeypot — verborgen voor mensen, zichtbaar in DOM voor bots */
.honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

/* Form Messages */
.form-message {
    padding: 14px 20px;
    border-radius: 4px;
    font-size: 15px;
    letter-spacing: 0.5px;
    line-height: 1.6;
    animation: fadeInUp 0.4s ease;
}

.form-message-success {
    background: rgba(79, 195, 247, 0.15);
    border: 1px solid rgba(79, 195, 247, 0.3);
    color: var(--accent);
}

.form-message-error {
    background: rgba(244, 67, 54, 0.15);
    border: 1px solid rgba(244, 67, 54, 0.3);
    color: #ef9a9a;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Over Ons CTA --- */
.cta-box {
    margin-top: 40px;
    padding: 35px 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.cta-box p {
    font-size: 17px;
    color: var(--white-90);
    margin-bottom: 20px;
    line-height: 1.85;
}

.cta-email {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 3px;
    color: #111;
    background: var(--accent);
    border: 1px solid var(--accent);
    border-radius: 4px;
    padding: 14px 35px;
    transition: all var(--transition-smooth);
}

.cta-email:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(79, 195, 247, 0.3);
}

/* --- Footer --- */
#templatemo-footer {
    background: #0a0a0a;
    text-align: center;
    padding: 50px 20px 35px;
    border-top: 1px solid var(--white-10);
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
}

.footer-logo-img {
    max-height: 70px;
    width: auto;
    margin: 0 auto 15px;
    opacity: 0.85;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    font-family: var(--font-heading);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white-40);
    transition: color var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--accent);
}

#templatemo-footer p {
    font-size: 14px;
    color: var(--white-40);
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.footer-copy {
    margin-top: 12px;
    font-size: 13px;
}

#templatemo-footer a {
    color: var(--white-70);
    transition: color var(--transition-smooth);
}

#templatemo-footer a:hover {
    color: var(--white);
}

/* --- Privacy Page --- */
.privacy-page {
    background: #0a0a0a;
    min-height: 100vh;
}

.privacy-header {
    padding: 140px 30px 60px;
    text-align: center;
    background: linear-gradient(180deg, rgba(79, 195, 247, 0.08), transparent);
}

.privacy-content {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 30px 80px;
}

.privacy-content h2 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 3px;
    color: var(--white);
    margin: 40px 0 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--white-10);
}

.privacy-content p,
.privacy-content li {
    font-size: 15px;
    color: var(--white-70);
    line-height: 1.85;
    margin-bottom: 12px;
}

.privacy-content ul {
    list-style: none;
    padding-left: 20px;
}

.privacy-content ul li::before {
    content: '\2013';
    position: absolute;
    margin-left: -20px;
    color: var(--accent);
}

.privacy-content ul li {
    position: relative;
}

.privacy-content a {
    color: var(--accent);
}

.privacy-content a:hover {
    text-decoration: underline;
}

/* --- Scroll Reveal Animation --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered reveals for grid children */
.service-item,
.werkwijze-step,
.template-card {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.service-item.visible,
.werkwijze-step.visible,
.template-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   Loader
   =================================== */

#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
}

#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #4fc3f7;
    animation: spin 2s linear infinite;
    z-index: 1001;
}

#loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #0288d1;
    animation: spin 3s linear infinite;
}

#loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #fff;
    animation: spin 1.5s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#loader-wrapper .loader-section {
    position: fixed;
    top: 0;
    width: 51%;
    height: 100%;
    background: #0a0a0a;
    z-index: 1000;
    transform: translateX(0);
}

#loader-wrapper .loader-section.section-left {
    left: 0;
}

#loader-wrapper .loader-section.section-right {
    right: 0;
}

.loaded #loader-wrapper .loader-section.section-left {
    transform: translateX(-100%);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader-wrapper .loader-section.section-right {
    transform: translateX(100%);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader {
    opacity: 0;
    transition: all 0.3s ease-out;
}

.loaded #loader-wrapper {
    visibility: hidden;
    transform: translateY(-100%);
    transition: all 0.3s 1s ease-out;
}

/* ========================================
   Pakketvergelijking tabel
   ======================================== */
.compare-wrap {
    margin-top: 70px;
    padding-top: 50px;
    border-top: 1px solid var(--white-10);
}

.compare-title {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: clamp(24px, 3.5vw, 34px);
    letter-spacing: 5px;
    color: var(--white);
    margin-bottom: 30px;
    text-align: center;
}

.compare-title .accent {
    font-family: var(--font-accent);
    font-style: italic;
    font-weight: 400;
    letter-spacing: 1px;
}

.compare-table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid var(--white-10);
    border-radius: 6px;
    overflow: hidden;
    font-family: var(--font-body);
}

.compare-table thead th {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 3px;
    color: var(--white);
    padding: 20px 18px;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid var(--white-20);
}

.compare-table th.compare-feature-col {
    text-align: left;
}

.compare-table tbody td {
    padding: 14px 18px;
    font-size: 14px;
    color: var(--white-90);
    border-bottom: 1px solid var(--white-10);
}

.compare-table tbody tr:last-child td {
    border-bottom: none;
}

.compare-table td.compare-feature {
    text-align: left;
    color: var(--white-70);
    font-size: 13px;
    letter-spacing: 0.5px;
}

.compare-table .compare-highlight {
    background: rgba(79, 195, 247, 0.08);
    color: var(--white);
    font-weight: 400;
}

.compare-table thead th.compare-highlight {
    background: rgba(79, 195, 247, 0.16);
}

.cmp-yes {
    color: var(--accent);
    font-weight: 600;
    font-size: 18px;
}

.cmp-no {
    color: var(--white-40);
    font-size: 18px;
}

/* ========================================
   Add-ons
   ======================================== */
.addons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 40px;
    text-align: left;
}

.addon-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    padding: 28px 26px;
    transition: all var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.addon-item:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(79, 195, 247, 0.12);
}

.addon-icon {
    color: var(--accent);
    margin-bottom: 16px;
}

.addon-item h3 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--white);
    margin-bottom: 10px;
}

.addon-desc {
    font-size: 14px;
    color: var(--white-70);
    line-height: 1.65;
    margin-bottom: 18px;
    flex-grow: 1;
}

.addon-price {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 1.5px;
    color: var(--accent);
}

.addon-unit {
    font-size: 12px;
    letter-spacing: 1px;
    color: var(--white-40);
    text-transform: uppercase;
    margin-left: 4px;
}

/* ========================================
   Prijscalculator
   ======================================== */
.calc-wrap {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 30px;
    margin-top: 40px;
    text-align: left;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}

.calc-form {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--white-10);
    border-radius: 6px;
    padding: 30px;
}

.calc-field {
    margin-bottom: 22px;
}

.calc-field label {
    display: block;
    font-family: var(--font-heading);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white-70);
    margin-bottom: 8px;
}

.calc-hint {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.5px;
    text-transform: none;
    color: var(--white-40);
    margin-left: 6px;
}

.calc-field input[type="number"],
.calc-field .form-select {
    width: 100%;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--white-20);
    border-radius: 4px;
    padding: 13px 18px;
    outline: none;
    transition: border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.calc-field input[type="number"]:focus,
.calc-field .form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(79, 195, 247, 0.15);
}

.calc-field-checks {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 0;
}

.calc-check-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--white-10);
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition-smooth);
    font-size: 14px;
    color: var(--white-90);
    line-height: 1.5;
}

.calc-check-label:hover {
    border-color: var(--accent);
}

.calc-check-label input[type="checkbox"] {
    margin-top: 4px;
    accent-color: var(--accent);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.calc-check-label small {
    display: block;
    color: var(--white-40);
    font-size: 12px;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.calc-result {
    position: relative;
}

.calc-result-inner {
    position: sticky;
    top: 130px;
    background: linear-gradient(160deg, rgba(79, 195, 247, 0.15), rgba(2, 136, 209, 0.15));
    border: 1px solid rgba(79, 195, 247, 0.35);
    border-radius: 6px;
    padding: 28px;
    text-align: left;
}

.calc-result-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 18px;
}

.calc-result-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 10px;
}

.calc-result-key {
    font-size: 13px;
    letter-spacing: 1px;
    color: var(--white-70);
    text-transform: uppercase;
}

.calc-result-value {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 400;
    color: var(--white);
}

.calc-result-divider {
    height: 1px;
    background: var(--white-20);
    margin: 14px 0;
}

.calc-result-total .calc-result-key {
    color: var(--white);
    font-weight: 500;
}

.calc-result-total .calc-result-value {
    font-size: 26px;
    color: var(--accent);
    letter-spacing: 1px;
}

.calc-cta {
    display: block;
    text-align: center;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 3px;
    color: #111;
    background: var(--accent);
    border: 1px solid var(--accent);
    border-radius: 4px;
    padding: 13px 20px;
    margin-top: 22px;
    transition: all var(--transition-smooth);
}

.calc-cta:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(79, 195, 247, 0.3);
}

/* ========================================
   FAQ Accordion
   ======================================== */
.faq-list {
    max-width: 780px;
    margin: 40px auto 0;
    text-align: left;
}

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    margin-bottom: 14px;
    overflow: hidden;
    transition: border-color var(--transition-smooth);
}

.faq-item:hover,
.faq-item.open {
    border-color: var(--accent);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 24px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 1.5px;
    color: var(--white);
    text-align: left;
    transition: color var(--transition-smooth);
}

.faq-question:hover {
    color: var(--accent);
}

.faq-icon {
    position: relative;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent);
    transition: transform 0.3s ease;
}

.faq-icon::after {
    transform: rotate(90deg);
}

.faq-item.open .faq-icon::after {
    transform: rotate(0deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-item.open .faq-answer {
    max-height: 400px;
}

.faq-answer p {
    padding: 0 24px 22px;
    font-size: 15px;
    color: var(--white-70);
    line-height: 1.75;
}

/* ========================================
   404 Error Page
   ======================================== */
.error-page {
    background: #0a0a0a;
    min-height: 100vh;
    color: var(--white);
}

.error-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: radial-gradient(ellipse at center, rgba(79, 195, 247, 0.10), transparent 60%);
}

.error-content {
    text-align: center;
    max-width: 640px;
}

.error-logo {
    max-height: 80px;
    width: auto;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.error-code {
    font-family: var(--font-heading);
    font-size: clamp(90px, 18vw, 180px);
    font-weight: 300;
    letter-spacing: 12px;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 20px;
    text-shadow: 0 0 40px rgba(79, 195, 247, 0.3);
}

.error-title {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: clamp(20px, 3.5vw, 32px);
    letter-spacing: 5px;
    color: var(--white);
    margin-bottom: 20px;
}

.error-title .accent {
    font-family: var(--font-accent);
    font-style: italic;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--accent);
}

.error-text {
    font-size: 16px;
    color: var(--white-70);
    line-height: 1.75;
    margin-bottom: 35px;
}

.error-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.error-btn-alt {
    background: transparent;
    color: var(--white);
}

.error-btn-alt:hover {
    background: var(--white);
    color: #111;
    border-color: var(--white);
}

/* ========================================
   Portfolio Page
   ======================================== */
.portfolio-page {
    background: #0a0a0a;
    min-height: 100vh;
    color: var(--white);
}

.portfolio-header {
    padding: 140px 30px 60px;
    text-align: center;
    background: linear-gradient(180deg, rgba(79, 195, 247, 0.08), transparent);
}

.portfolio-intro {
    max-width: 640px;
    margin: 20px auto 0;
    font-size: 16px;
    color: var(--white-70);
    line-height: 1.75;
}

.portfolio-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 30px 80px;
}

.portfolio-cases {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.portfolio-case {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    overflow: hidden;
    transition: all var(--transition-smooth);
}

.portfolio-case:hover {
    border-color: var(--accent);
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(79, 195, 247, 0.15);
}

.portfolio-case-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-40);
    font-family: var(--font-heading);
    letter-spacing: 3px;
    font-size: 13px;
    border-bottom: 1px solid var(--white-10);
    position: relative;
    overflow: hidden;
}

.portfolio-case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-case-body {
    padding: 26px 28px;
}

.portfolio-case-body h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--white);
    margin-bottom: 8px;
}

.portfolio-case-meta {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
}

.portfolio-case-body p {
    font-size: 15px;
    color: var(--white-70);
    line-height: 1.7;
    margin-bottom: 18px;
}

.portfolio-case-link {
    font-family: var(--font-heading);
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--accent);
    text-transform: uppercase;
}

.portfolio-case-link:hover {
    color: var(--white);
}

.portfolio-cta {
    text-align: center;
    padding: 60px 20px 40px;
    margin-top: 40px;
    border-top: 1px solid var(--white-10);
}

.portfolio-cta h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    letter-spacing: 4px;
    margin-bottom: 20px;
    color: var(--white);
}

/* ========================================
   Testimonials
   ======================================== */
.testimonials-note {
    max-width: 720px;
    margin: 10px auto 40px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--white-70);
    font-style: italic;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 30px;
    text-align: left;
}

.testimonial-item {
    position: relative;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    padding: 34px 28px 28px;
    transition: all var(--transition-smooth);
}

.testimonial-item:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(79, 195, 247, 0.12);
}

.testimonial-featured {
    border-color: rgba(79, 195, 247, 0.35);
    background: linear-gradient(160deg, rgba(79, 195, 247, 0.10), rgba(2, 136, 209, 0.06));
}

.testimonial-quote-mark {
    position: absolute;
    top: 4px;
    left: 20px;
    font-family: var(--font-accent);
    font-size: 60px;
    line-height: 1;
    color: var(--accent);
    opacity: 0.35;
}

.testimonial-text {
    font-size: 15px;
    color: var(--white-90);
    line-height: 1.75;
    margin-bottom: 22px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-top: 16px;
    border-top: 1px solid var(--white-10);
}

.testimonial-name {
    font-family: var(--font-heading);
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--white);
}

.testimonial-role {
    font-size: 12px;
    letter-spacing: 1px;
    color: var(--white-40);
    text-transform: uppercase;
}

/* ========================================
   Cookie Consent Banner
   ======================================== */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 1200;
    background: rgba(10, 10, 10, 0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--white-20);
    border-radius: 8px;
    padding: 20px 24px;
    max-width: 720px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    animation: cookieSlideUp 0.5s ease;
}

@keyframes cookieSlideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.cookie-inner {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1 1 300px;
    color: var(--white-90);
}

.cookie-text strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 6px;
}

.cookie-text p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--white-70);
    margin: 0;
}

.cookie-text a {
    color: var(--accent);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition-smooth);
    border: 1px solid var(--white-40);
    background: none;
    color: var(--white);
}

.cookie-btn-decline:hover {
    border-color: var(--white);
}

.cookie-btn-accept {
    background: var(--accent);
    border-color: var(--accent);
    color: #111;
}

.cookie-btn-accept:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: var(--white);
}

/* ========================================
   WhatsApp Floating Button
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: #25D366;
    opacity: 0.4;
    z-index: -1;
    animation: waPulse 2s ease-in-out infinite;
}

@keyframes waPulse {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.15); opacity: 0; }
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

/* ========================================
   Language switcher (in nav)
   ======================================== */
.nav-lang {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 10px;
    padding-left: 20px;
    border-left: 1px solid var(--white-20);
}

.lang-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--white-40);
    padding: 4px 6px;
    transition: color var(--transition-smooth);
}

.lang-btn:hover {
    color: var(--white-70);
}

.lang-btn.active {
    color: var(--accent);
    font-weight: 500;
}

.lang-sep {
    color: var(--white-20);
    font-size: 12px;
}

/* ===================================
   Responsive
   =================================== */

@media (max-width: 991px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .templates-grid {
        grid-template-columns: 1fr;
        max-width: 550px;
        margin-left: auto;
        margin-right: auto;
    }

    .styles-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    .werkwijze-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-row {
        gap: 40px;
    }

    .addons-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .calc-wrap {
        grid-template-columns: 1fr;
    }

    .calc-result-inner {
        position: static;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    /* Promo banner mobile */
    .promo-banner {
        padding: 8px 40px 8px 16px;
    }

    .promo-text {
        font-size: 12px;
        letter-spacing: 0.5px;
    }

    .promo-cta {
        font-size: 10px;
        padding: 4px 12px;
    }

    /* Mobile Navigation */
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 30px;
        padding: 100px 30px 60px;
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
    }

    .nav-links.open {
        opacity: 1;
        visibility: visible;
    }

    .nav-links a {
        font-size: 16px;
        letter-spacing: 4px;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Disable parallax on mobile */
    .parallax-bg {
        top: 0;
        height: 100%;
    }

    .hero-logo-img {
        max-height: 240px;
    }

    .hero-logo {
        padding: 15px 20px;
    }

    .section-title {
        letter-spacing: 4px;
    }

    .hero-title {
        letter-spacing: 6px;
    }

    .section-subtitle {
        letter-spacing: 2px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .templates-grid {
        grid-template-columns: 1fr;
    }

    .single-offer {
        padding: 40px 26px 32px;
    }

    .offer-price-block {
        flex-direction: column;
        gap: 10px;
    }

    .offer-price-divider {
        margin: 0;
    }

    .styles-grid {
        grid-template-columns: 1fr;
    }

    .werkwijze-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stats-row {
        flex-direction: column;
        gap: 30px;
    }

    .form-row {
        flex-direction: column;
    }

    .btn-submit {
        align-self: stretch;
    }

    .contact-form-wrap {
        padding: 26px 22px 22px;
    }

    .lanceeractie-badge {
        font-size: 12px;
        padding: 8px 20px;
        letter-spacing: 1px;
    }

    .addons-grid {
        grid-template-columns: 1fr;
    }

    .compare-table thead th,
    .compare-table tbody td {
        padding: 12px 10px;
        font-size: 12px;
        letter-spacing: 1px;
    }

    .compare-table td.compare-feature {
        font-size: 12px;
    }

    .faq-question {
        font-size: 14px;
        padding: 16px 18px;
        letter-spacing: 1px;
    }

    .faq-answer p {
        padding: 0 18px 18px;
        font-size: 14px;
    }

    /* Cookie banner mobile */
    .cookie-consent {
        bottom: 12px;
        left: 12px;
        right: 12px;
        padding: 16px 18px;
    }

    .cookie-actions {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
        padding: 10px 14px;
        font-size: 11px;
    }

    /* WhatsApp mobile */
    .whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 18px;
        right: 18px;
    }

    /* Portfolio mobile */
    .portfolio-cases {
        grid-template-columns: 1fr;
    }

    /* Error page mobile */
    .error-actions {
        flex-direction: column;
        align-items: stretch;
    }

    /* Nav lang switcher — inside mobile menu */
    .nav-lang {
        border-left: none;
        border-top: 1px solid var(--white-20);
        padding-left: 0;
        padding-top: 20px;
        margin-left: 0;
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 20px;
    }

    .section-content {
        padding: 100px 20px 80px;
    }

    .section-title {
        letter-spacing: 3px;
    }

    .content-block p {
        font-size: 15px;
    }

    .stat-number {
        font-size: 34px;
    }

    .template-info {
        padding: 22px;
    }

    .price-amount {
        font-size: 30px;
    }
}
