/* DGG Limburg - Shared Design System */
:root {
    --primary-green: #00652D;
    --primary-green-light: #008D36;
    --accent-green: #95C11F;
    --orange: #F9B122;
    --orange-dark: #E94E1B;
    --blue: #009FE3;
    --navy: #1B2A4E;
    --navy-light: #243656;
    --white: #FFFFFF;
    --off-white: #F5F7FA;
    --light-gray: #E8EAED;
    --text-dark: #1A1A1A;
    --text-medium: #4A4A4A;
    --text-light: #6B7280;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.15);
    --transition: 0.3s ease;
    --max-width: 1200px;
    --header-height: 80px;
    --header-height-scrolled: 64px;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

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

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: height var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
    height: var(--header-height-scrolled);
    box-shadow: var(--shadow-md);
}

.header-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity var(--transition);
}

.logo img {
    height: 48px;
    width: auto;
    transition: height var(--transition);
}

.site-header.scrolled .logo img {
    height: 40px;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header-nav a {
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color var(--transition);
    position: relative;
}

.header-nav a:hover {
    color: var(--primary-green);
}

.header-nav a:not(.btn):not(.header-phone)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width var(--transition);
}

.header-nav a:not(.btn):not(.header-phone):hover::after {
    width: 100%;
}

.header-phone {
    font-weight: 600;
    color: var(--primary-green) !important;
}

/* ===== CONTAINER ===== */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition), color var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(249, 177, 34, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 177, 34, 0.5);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.btn-secondary:hover {
    background: var(--primary-green);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--navy);
    box-shadow: var(--shadow-sm);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.05rem;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
    padding: 16px 0;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: var(--header-height);
}

.breadcrumb a {
    color: var(--primary-green);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, rgba(27, 42, 78, 0.88) 0%, rgba(0, 101, 45, 0.82) 100%),
                url('/hero-foto.webp');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 80px 0 60px;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--white);
}

.hero h1 span {
    color: var(--accent-green);
}

.hero .subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 24px;
    max-width: 650px;
    line-height: 1.7;
}

.hero .urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(249, 177, 34, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 32px;
}

/* ===== SECTION STYLING ===== */
.section {
    padding: 80px 0;
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: rgba(0, 101, 45, 0.1);
    color: var(--primary-green);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
}

.section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 12px;
}

.section p {
    color: var(--text-medium);
    margin-bottom: 16px;
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 800px;
}

/* ===== STATS GRID ===== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.stat-card {
    background: var(--white);
    border-radius: 12px;
    padding: 28px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--primary-green);
    transition: transform var(--transition), box-shadow var(--transition);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.stat-card .number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-green);
    display: block;
}

.stat-card .label {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-top: 4px;
}

/* ===== ARGUMENT LIST ===== */
.argument-list {
    list-style: none;
    margin: 24px 0;
}

.argument-list li {
    padding: 16px 0 16px 40px;
    position: relative;
    border-bottom: 1px solid var(--light-gray);
    color: var(--text-medium);
    font-size: 1.05rem;
    line-height: 1.7;
}

.argument-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20px;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    border-radius: 50%;
}

.argument-list li::after {
    content: '\2713';
    position: absolute;
    left: 5px;
    top: 19px;
    color: var(--white);
    font-weight: bold;
    font-size: 0.85rem;
}

.argument-list li strong {
    color: var(--text-dark);
}

/* ===== INFO BOX ===== */
.info-box {
    background: var(--white);
    border-left: 4px solid var(--orange);
    padding: 24px;
    border-radius: 0 12px 12px 0;
    margin: 24px 0;
    box-shadow: var(--shadow-sm);
}

.info-box.warning {
    border-left-color: var(--orange-dark);
    background: #FFF8F0;
}

.info-box.green {
    border-left-color: var(--primary-green);
    background: #F0F9F4;
}

.info-box strong {
    color: var(--navy);
}

.info-box p {
    font-size: 0.95rem;
}

/* ===== CTA BLOCK ===== */
.cta-block {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    color: var(--white);
    padding: 48px;
    border-radius: 16px;
    text-align: center;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.cta-block::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: radial-gradient(ellipse at right, rgba(255,255,255,0.1) 0%, transparent 60%);
}

.cta-block h2 {
    color: var(--white);
    margin-bottom: 12px;
    position: relative;
}

.cta-block p {
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto 24px;
    position: relative;
}

/* ===== TWO COLUMN ===== */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* ===== NEARBY SECTION ===== */
.nearby-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
    padding: 60px 0;
}

.nearby-section h2 {
    color: var(--white);
    margin-bottom: 24px;
}

.city-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.city-link {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: background-color var(--transition), color var(--transition), border-color var(--transition);
    border: 1px solid rgba(255,255,255,0.2);
}

.city-link:hover {
    background: var(--orange);
    color: var(--navy);
    border-color: var(--orange);
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--navy);
    color: var(--white);
    padding: 60px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.site-footer h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.site-footer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--transition);
}

.site-footer a:hover {
    color: var(--orange);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.95rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ===== ARTICLE STYLES (Blog) ===== */
.article-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: calc(var(--header-height) + 40px) 24px 60px;
    color: var(--white);
}

.article-hero-inner {
    max-width: 800px;
    margin: 0 auto;
}

.article-hero .breadcrumb {
    margin-top: 0;
    color: rgba(255,255,255,0.6);
}

.article-hero .breadcrumb a {
    color: rgba(255,255,255,0.8);
}

.article-hero .breadcrumb a:hover {
    color: var(--orange);
}

.article-hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--white);
}

.article-hero .subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
}

.article-meta {
    margin-top: 20px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

.article-meta span {
    margin-right: 20px;
}

.article-body {
    max-width: 800px;
    margin: 0 auto;
    padding: 48px 24px 60px;
}

.article-body h2 {
    font-size: 1.5rem;
    color: var(--navy);
    margin: 40px 0 16px;
    font-weight: 700;
    line-height: 1.3;
}

.article-body h3 {
    font-size: 1.2rem;
    color: var(--primary-green);
    margin: 32px 0 12px;
    font-weight: 600;
}

.article-body p {
    margin-bottom: 16px;
    color: var(--text-medium);
    font-size: 1.05rem;
    line-height: 1.7;
}

.article-body ul, .article-body ol {
    margin: 12px 0 20px 24px;
    color: var(--text-medium);
}

.article-body li {
    margin-bottom: 8px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.article-body strong {
    color: var(--text-dark);
}

.article-body a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 500;
}

.article-body a:hover {
    text-decoration: underline;
}

/* ===== HIGHLIGHT BOX (Article) ===== */
.highlight-box {
    background: var(--off-white);
    border-left: 4px solid var(--orange);
    padding: 24px 28px;
    margin: 28px 0;
    border-radius: 0 12px 12px 0;
}

.highlight-box.warning {
    border-left-color: var(--orange-dark);
    background: #FFF8F0;
}

.highlight-box.green {
    border-left-color: var(--primary-green);
    background: #F0F9F4;
}

.highlight-box p {
    margin-bottom: 8px;
}

.highlight-box p:last-child {
    margin-bottom: 0;
}

/* ===== DATA TABLE ===== */
.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 0.95rem;
}

.data-table th {
    background: var(--navy);
    color: var(--white);
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
}

.data-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--light-gray);
    color: var(--text-medium);
}

.data-table tr:nth-child(even) {
    background: var(--off-white);
}

.data-table .negative {
    color: var(--orange-dark);
    font-weight: 600;
}

/* ===== RELATED ARTICLES ===== */
.related-articles {
    background: var(--off-white);
    padding: 60px 24px;
}

.related-articles-inner {
    max-width: 800px;
    margin: 0 auto;
}

.related-articles h3 {
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 20px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

.related-card {
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
    border-left: 4px solid var(--primary-green);
}

.related-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.related-card h4 {
    font-size: 0.95rem;
    color: var(--navy);
    margin-bottom: 6px;
    line-height: 1.4;
}

.related-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* ===== GEMEENTE GRID (Parkstad) ===== */
.gemeente-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 24px 0;
}

.gemeente-card {
    background: var(--white);
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary-green);
    transition: transform var(--transition), box-shadow var(--transition);
}

.gemeente-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.gemeente-card h4 {
    color: var(--navy);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.gemeente-card p {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-bottom: 0;
    line-height: 1.6;
}

/* ===== COMPARISON CARDS ===== */
.compare-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 28px 0;
}

.compare-card {
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    padding: 28px;
    position: relative;
    transition: box-shadow var(--transition);
}

.compare-card:hover {
    box-shadow: var(--shadow-md);
}

.compare-card.popular {
    border-color: var(--orange);
}

.compare-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background: var(--orange);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 20px;
}

.compare-card h4 {
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 4px;
}

.compare-card .price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 12px;
}

.compare-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.compare-card li {
    font-size: 0.9rem;
    padding: 6px 0;
    border-bottom: 1px solid var(--light-gray);
    color: var(--text-medium);
}

.compare-card li:last-child {
    border-bottom: none;
}

/* ===== DECISION BOX ===== */
.decision-box {
    background: var(--off-white);
    border-radius: 12px;
    padding: 28px;
    margin: 28px 0;
}

.decision-box h4 {
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 16px;
}

.decision-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid var(--light-gray);
}

.decision-row:last-child {
    border-bottom: none;
}

.decision-label {
    flex: 1;
    font-size: 0.95rem;
    color: var(--text-medium);
}

.decision-answer {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary-green);
    min-width: 120px;
    text-align: right;
}

/* ===== TIMELINE ===== */
.timeline {
    margin: 32px 0;
    position: relative;
    padding-left: 32px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--light-gray);
}

.timeline-item {
    position: relative;
    margin-bottom: 28px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -28px;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--orange);
    border: 3px solid var(--white);
    box-shadow: var(--shadow-sm);
}

.timeline-item.delayed::before {
    background: var(--orange-dark);
}

.timeline-item h4 {
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 4px;
}

.timeline-item p {
    font-size: 0.95rem;
    color: var(--text-medium);
    margin-bottom: 0;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .two-col {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-nav {
        display: none;
    }

    .header-nav.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 24px;
        box-shadow: var(--shadow-lg);
        gap: 16px;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        padding: 60px 0 40px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .section {
        padding: 50px 0;
    }

    .section h2 {
        font-size: 1.6rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .cta-block {
        padding: 32px 20px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .article-hero {
        padding: calc(var(--header-height) + 20px) 20px 40px;
    }

    .article-body {
        padding: 32px 20px 48px;
    }

    .data-table {
        font-size: 0.85rem;
    }

    .data-table th, .data-table td {
        padding: 8px 10px;
    }

    .compare-grid {
        grid-template-columns: 1fr;
    }

    .decision-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .decision-answer {
        text-align: left;
    }

    .gemeente-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .btn-large {
        padding: 14px 24px;
        font-size: 1rem;
    }

    .breadcrumb {
        margin-top: 60px;
    }
}

/* ============================================================
   HOMEPAGE-SPECIFIC STYLES
   ============================================================ */

/* ===== ACCESSIBILITY ===== */
.skip-to-content {
    position: absolute;
    top: -100%;
    left: 0;
    background: var(--primary-green);
    color: var(--white);
    padding: 12px 24px;
    z-index: 10000;
    font-weight: 600;
    text-decoration: none;
}

.skip-to-content:focus {
    top: 0;
}

/* ===== LANGUAGE SWITCHER ===== */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-right: 16px;
    background: var(--off-white);
    border-radius: 8px;
    padding: 4px;
}

.lang-btn {
    background: transparent;
    border: none;
    padding: 6px 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-medium);
    cursor: pointer;
    border-radius: 6px;
    transition: color var(--transition), background-color var(--transition), box-shadow var(--transition);
    text-transform: uppercase;
    min-width: 44px;
    min-height: 44px;
}

.lang-btn:hover { color: var(--primary-green); }

.lang-btn.active {
    background: var(--white);
    color: var(--primary-green);
    box-shadow: var(--shadow-sm);
}

/* Language transition effects */
[data-i18n] { transition: opacity 0.3s ease, transform 0.3s ease; }
.lang-switching [data-i18n] { opacity: 0; transform: translateY(-8px); }
.lang-switched [data-i18n] { animation: langFadeIn 0.4s ease forwards; }
@keyframes langFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Limburgs button */
.lang-btn-lim { position: relative; }
.lang-btn-lim::before {
    content: '\01F3AD';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    line-height: 1;
    animation: hatBounce 2s ease-in-out infinite;
}
.lang-btn-lim.active::before { animation: hatCelebrate 0.5s ease-in-out; }
@keyframes hatBounce {
    0%, 100% { transform: translateX(-50%) translateY(0) rotate(0deg); }
    50% { transform: translateX(-50%) translateY(-3px) rotate(5deg); }
}
@keyframes hatCelebrate {
    0% { transform: translateX(-50%) scale(1) rotate(0deg); }
    25% { transform: translateX(-50%) scale(1.3) rotate(-10deg); }
    50% { transform: translateX(-50%) scale(1.3) rotate(10deg); }
    75% { transform: translateX(-50%) scale(1.2) rotate(-5deg); }
    100% { transform: translateX(-50%) scale(1) rotate(0deg); }
}

/* ===== HOMEPAGE NAV ===== */
.home-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: height var(--transition), box-shadow var(--transition);
}

.home-nav.scrolled {
    height: var(--header-height-scrolled);
    box-shadow: var(--shadow-md);
}

.home-nav.scrolled .logo img {
    height: 40px;
}

.header-cta {
    white-space: nowrap;
}

.mobile-phone-link {
    display: none;
    font-weight: 600;
    color: var(--primary-green);
    text-decoration: none;
    font-size: 1.2rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
    padding: 8px;
}

.mobile-menu-phone {
    display: block;
    text-align: center;
    margin-top: 12px;
    color: var(--primary-green);
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color var(--transition);
    position: relative;
}

.nav-links a:hover { color: var(--primary-green); }

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width var(--transition);
}

.nav-links a:hover::after { width: 100%; }

/* ===== HOMEPAGE HERO ===== */
.home-hero {
    min-height: 100vh;
    padding: calc(var(--header-height) + 40px) 24px 60px;
    background: linear-gradient(135deg, rgba(27, 42, 78, 0.9) 0%, rgba(0, 101, 45, 0.85) 100%),
                url('hero-foto.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
}

.hero-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-content {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(249, 177, 34, 0.3);
}

.home-hero h1 {
    font-size: 3rem;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 24px;
    font-weight: 800;
}

.home-hero h1 span { color: var(--accent-green); }

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 32px;
    max-width: 520px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-score {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.15);
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.2);
}

.trust-score-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--orange);
}

.trust-score-text {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.3;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.9);
}

.hero-visual {
    position: relative;
    opacity: 0;
    transform: translateX(30px);
    animation: fadeInRight 0.8s ease 0.3s forwards;
}

.hero-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 30px 24px 24px;
    color: white;
}

.hero-image-overlay h3 { font-size: 1.25rem; margin-bottom: 4px; }
.hero-image-overlay p { font-size: 0.9rem; opacity: 0.9; }

/* ===== HOMEPAGE SECTIONS ===== */
.section-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 16px;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Waarom kiezen */
.waarom-kiezen { background: var(--white); }
.waarom-kiezen section, .waarom-kiezen { padding: 100px 24px; }

.waarom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.waarom-content h2 {
    font-size: 2.25rem;
    color: var(--primary-green);
    margin-bottom: 24px;
    font-weight: 700;
}

.waarom-content p {
    color: var(--text-medium);
    margin-bottom: 24px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.waarom-image { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg); }
.waarom-image img { width: 100%; height: 400px; object-fit: cover; display: block; }

/* Voordelen */
.voordelen { background: var(--off-white); padding: 100px 24px; }

.voordelen-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.voordeel-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: 12px;
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
    opacity: 0;
    transform: translateY(30px);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--orange);
}

.voordeel-card.visible { opacity: 1; transform: translateY(0); }
.voordeel-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.voordeel-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: white;
}

.voordeel-card h3 { font-size: 1.15rem; color: var(--navy); margin-bottom: 12px; font-weight: 700; }
.voordeel-card p { color: var(--text-medium); font-size: 0.95rem; line-height: 1.6; }

/* Thuisbatterij */
.thuisbatterij { background: var(--white); position: relative; padding: 100px 24px; }

.thuisbatterij-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.thuisbatterij-image { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg); }
.thuisbatterij-image img { width: 100%; height: 450px; object-fit: cover; display: block; }

.thuisbatterij-content h2 { font-size: 2rem; color: var(--navy); margin-bottom: 24px; font-weight: 700; }
.thuisbatterij-list { list-style: none; }

.thuisbatterij-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
    padding: 16px;
    background: var(--off-white);
    border-radius: 12px;
    border-left: 4px solid var(--orange);
}

.thuisbatterij-item-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.thuisbatterij-item-content h4 { font-size: 1rem; color: var(--navy); margin-bottom: 4px; font-weight: 600; }
.thuisbatterij-item-content p { color: var(--text-medium); font-size: 0.9rem; margin: 0; }

/* Product Showcase */
.producten {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: white;
    padding: 100px 24px;
}

.producten .section-badge { background: rgba(255,255,255,0.15); color: white; }
.producten .section-title { color: white; }
.producten .section-subtitle { color: rgba(255,255,255,0.85); }

.producten-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.product-card {
    background: rgba(255,255,255,0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: transform var(--transition), background-color var(--transition);
    border: 1px solid rgba(255,255,255,0.1);
}

.product-card:hover { transform: translateY(-8px); background: rgba(255,255,255,0.15); }

.product-card-image {
    height: 200px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.product-card-image img { max-height: 160px; width: auto; object-fit: contain; }
.product-card-content { padding: 24px; }
.product-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.product-card p { font-size: 0.9rem; opacity: 0.85; line-height: 1.6; }

/* Ready Set Go */
.ready-set-go {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    color: white;
    position: relative;
    overflow: hidden;
    padding: 100px 24px;
}

.ready-set-go::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: radial-gradient(ellipse at right, rgba(255,255,255,0.1) 0%, transparent 60%);
}

.ready-set-go .section-badge { background: rgba(255,255,255,0.2); color: var(--white); }
.ready-set-go .section-title { color: var(--white); }
.ready-set-go .section-subtitle { color: rgba(255,255,255,0.9); }

.stappen-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
}

.stap-card {
    background: rgba(255,255,255,0.1);
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    border: 1px solid rgba(255,255,255,0.2);
}

.stap-card.visible { opacity: 1; transform: translateY(0); }

.stap-number {
    width: 64px;
    height: 64px;
    background: var(--white);
    color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-md);
}

.stap-card h3 { font-size: 1.25rem; margin-bottom: 12px; font-weight: 700; }
.stap-card p { opacity: 0.9; font-size: 0.95rem; line-height: 1.6; }

/* Over Ons */
.over-ons { background: var(--off-white); padding: 100px 24px; }

.over-ons-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.over-ons-text h2 { font-size: 2.25rem; color: var(--navy); margin-bottom: 24px; }
.over-ons-text p { color: var(--text-medium); margin-bottom: 20px; font-size: 1.05rem; line-height: 1.7; }

.over-ons-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--navy);
}

.feature-item span { color: var(--orange); font-size: 1.25rem; }
.over-ons-image { position: relative; }
.over-ons-image img { border-radius: 20px; box-shadow: var(--shadow-lg); width: 100%; height: 450px; object-fit: cover; }

.over-ons-stats {
    position: absolute;
    bottom: -30px;
    left: 30px;
    right: 30px;
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-item { text-align: center; }
.stat-number { font-size: 2rem; font-weight: 800; display: block; line-height: 1; color: var(--primary-green); }
.stat-label { font-size: 0.85rem; color: var(--text-medium); margin-top: 4px; }

/* Certificaten */
.certificaten { background: var(--white); padding: 60px 24px; }
.certificaten-container { max-width: var(--max-width); margin: 0 auto; }
.certificaten-title { text-align: center; font-size: 1rem; color: var(--text-light); margin-bottom: 32px; text-transform: uppercase; letter-spacing: 2px; }

.certificaten-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.certificaten-grid img { height: 60px; width: auto; opacity: 0.7; transition: opacity var(--transition), filter var(--transition); filter: grayscale(30%); }
.certificaten-grid img:hover { opacity: 1; filter: grayscale(0%); }

/* Reviews */
.reviews { background: var(--navy); color: white; padding: 100px 24px; }
.reviews .section-badge { background: rgba(255,255,255,0.15); color: white; }
.reviews .section-title { color: white; }
.reviews .section-subtitle { color: rgba(255,255,255,0.85); }

.reviews-slider {
    position: relative;
    overflow: hidden;
}

.reviews-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card {
    background: rgba(255,255,255,0.1);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
    flex: 0 0 calc(33.333% - 16px);
    min-width: 0;
    transition: background-color var(--transition);
}

.review-card.visible { opacity: 1; }
.review-card:hover { background: rgba(255,255,255,0.15); }

.reviews-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.reviews-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.reviews-nav-btn:hover {
    background: rgba(255,255,255,0.2);
    border-color: var(--orange);
    color: var(--orange);
}

.reviews-dots {
    display: flex;
    gap: 8px;
}

.reviews-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.reviews-dot.active {
    background: var(--orange);
    transform: scale(1.2);
}

.review-stars { color: var(--orange); font-size: 1.25rem; margin-bottom: 16px; }
.review-text { color: rgba(255,255,255,0.9); font-style: italic; margin-bottom: 20px; font-size: 1rem; line-height: 1.7; }

.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.review-name { font-weight: 600; color: white; }
.review-location { font-size: 0.9rem; color: rgba(255,255,255,0.7); }

.reviews-summary {
    text-align: center;
    margin-top: 48px;
    padding: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    border: 1px solid rgba(255,255,255,0.1);
}

.reviews-summary-score { font-size: 4rem; font-weight: 800; color: var(--orange); line-height: 1; }
.reviews-summary-info { text-align: left; }
.reviews-summary-stars { color: var(--orange); font-size: 1.5rem; margin-bottom: 8px; }
.reviews-summary-text { font-size: 1rem; color: rgba(255,255,255,0.85); }

/* ===== CONTACT SECTION ===== */
.contact { background: var(--off-white); padding: 100px 24px; }

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info .section-badge { margin-bottom: 16px; }
.contact-info h2 { font-size: 2.25rem; color: var(--navy); margin-bottom: 24px; }
.contact-info > p { color: var(--text-medium); margin-bottom: 32px; font-size: 1.1rem; line-height: 1.7; }

.contact-details { display: flex; flex-direction: column; gap: 20px; }

.contact-item { display: flex; align-items: flex-start; gap: 16px; }

.contact-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-item-content h4 { font-size: 1rem; color: var(--navy); margin-bottom: 4px; font-weight: 600; }
.contact-item-content p { color: var(--text-medium); margin: 0; font-size: 0.95rem; }

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--light-gray);
}

.contact-form h3 { font-size: 1.5rem; color: var(--text-dark); margin-bottom: 8px; }
.contact-form > p { color: #333; margin-bottom: 32px; }

.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; font-size: 0.95rem; }

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color var(--transition);
    background: var(--white);
    color: var(--text-dark);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }

.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: var(--primary-green); box-shadow: 0 0 0 3px rgba(0, 101, 45, 0.2); }

.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input.error { border-color: #E53935; }
.error-message { color: #E53935; font-size: 0.85rem; margin-top: 6px; display: none; }
.form-group input.error + .error-message { display: block; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { margin-top: 24px; }
.form-submit .btn { width: 100%; }
.form-note { text-align: center; margin-top: 16px; color: var(--text-medium); font-size: 0.9rem; }

.form-success { display: none; text-align: center; padding: 40px; }
.form-success.show { display: block; }

.form-success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2.5rem;
    color: white;
}

.form-success h3 { color: var(--navy); margin-bottom: 12px; }
.form-success p { color: var(--text-medium); }

/* Step Form */
.form-steps { display: flex; justify-content: center; margin-bottom: 32px; gap: 8px; }
.form-step-indicator { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.step-label { font-size: 0.75rem; color: var(--text-light); font-weight: 500; }

.step-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    background: var(--light-gray);
    color: var(--text-medium);
    transition: all 0.3s ease;
}

.step-circle.active,
.step-circle.completed { background: var(--primary-green); color: var(--white); }

.step-line { width: 60px; height: 3px; background: var(--light-gray); transition: background 0.3s ease; }
.step-line.active { background: var(--primary-green); }

.form-step-content { display: none; }
.form-step-content.active { display: block; animation: fadeInUp 0.4s ease; }

/* Address Preview */
.address-preview {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    color: var(--white);
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 24px;
}

.address-preview-content { display: flex; gap: 16px; align-items: stretch; }
.address-preview-info { flex: 1; display: flex; flex-direction: column; }
.address-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.address-preview h4 { font-size: 0.75rem; color: rgba(255,255,255,0.85); margin: 0; text-transform: uppercase; letter-spacing: 0.5px; }
.address-preview p { font-size: 1rem; font-weight: 500; margin: 0 0 12px 0; line-height: 1.4; color: var(--white); flex-grow: 1; }

.address-preview .edit-btn {
    background: rgba(255,255,255,0.2);
    border: none;
    color: var(--white);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    cursor: pointer;
    transition: background 0.2s;
}

.address-preview .edit-btn:hover { background: rgba(255,255,255,0.35); }

.address-preview-map {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: rgba(255,255,255,0.1);
}

.address-preview-map img { width: 100%; height: 100%; object-fit: cover; }

.vestiging-badge {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 6px;
    background: rgba(255,255,255,0.2);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    margin-top: 12px;
    margin-right: 8px;
}

.vestiging-badge.limburg { background: rgba(249, 177, 34, 0.3); }
.vestiging-badge.schaijk { background: rgba(255,255,255,0.2); }

.form-row-3 { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 16px; }

.postcode-lookup-btn {
    background: var(--primary-green);
    color: var(--white);
    border: none;
    padding: 14px 24px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.postcode-lookup-btn:hover { background: var(--primary-green-light); }
.postcode-lookup-btn:disabled { background: var(--light-gray); cursor: not-allowed; }

.postcode-lookup-btn.loading::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid var(--white);
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 0.8s linear infinite;
    margin-left: 8px;
    vertical-align: middle;
}

@keyframes spin { to { transform: rotate(360deg); } }

.form-error-banner {
    background: #FEE2E2;
    border: 1px solid #FECACA;
    color: #991B1B;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: 0.9rem;
    display: none;
}

.form-error-banner.visible { display: block; }

.btn-back {
    background: transparent;
    border: 2px solid var(--navy);
    color: var(--navy);
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-back:hover { background: var(--navy); color: var(--white); }

.form-buttons { display: flex; gap: 12px; margin-top: 24px; }
.form-buttons .btn { flex: 1; }

.input-with-addon { display: flex; gap: 8px; }
.input-with-addon input { flex: 1; }

/* Privacy checkbox */
.privacy-checkbox { margin-top: 16px; }
.privacy-checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--text-medium);
    cursor: pointer;
}
.privacy-checkbox input[type="checkbox"] { margin-top: 2px; flex-shrink: 0; width: 18px; height: 18px; accent-color: var(--primary-green); }
.privacy-checkbox a { color: var(--primary-green); text-decoration: underline; }

/* ===== HOMEPAGE FOOTER ===== */
.home-footer {
    background: var(--navy);
    color: var(--white);
    padding: 60px 24px 24px;
}

.footer-container { max-width: var(--max-width); margin: 0 auto; }

.footer-grid {
    display: grid;
    gap: 40px;
    margin-bottom: 40px;
}

.home-footer .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
}

.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo img { height: 40px; filter: brightness(0) invert(1); }
.footer-brand p { color: rgba(255,255,255,0.7); font-size: 0.95rem; line-height: 1.7; }

.footer-column h4 { font-size: 1.1rem; margin-bottom: 20px; color: var(--white); }
.footer-column ul { list-style: none; }
.footer-column li { margin-bottom: 12px; }
.footer-column a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.95rem; transition: color var(--transition); }
.footer-column a:hover { color: var(--orange); }

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.footer-contact-item span { color: var(--orange); font-size: 1.1rem; }

.footer-social { display: flex; gap: 12px; margin-top: 24px; }

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: background-color var(--transition);
    font-size: 0.9rem;
}

.footer-social a:hover { background: var(--orange); }

.home-footer .footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    text-align: left;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
}

.home-footer .footer-bottom p { color: rgba(255,255,255,0.5); font-size: 0.9rem; }

.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.9rem; transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--white); }

/* ===== FOOTER NEWSLETTER ===== */
.footer-newsletter {
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 32px 0;
    margin-bottom: 24px;
}
.newsletter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.newsletter-text h4 { color: var(--white); font-size: 1.1rem; margin-bottom: 6px; }
.newsletter-text p { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin: 0; }
.newsletter-form { flex-shrink: 0; }
.newsletter-input-group { display: flex; gap: 0; }
.newsletter-input {
    padding: 12px 16px;
    border: 1px solid rgba(255,255,255,0.2);
    border-right: none;
    border-radius: 8px 0 0 8px;
    background: rgba(255,255,255,0.08);
    color: var(--white);
    font-size: 0.95rem;
    width: 260px;
    outline: none;
    transition: border-color var(--transition), background-color var(--transition);
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-input:focus { border-color: var(--orange); background: rgba(255,255,255,0.12); }
.newsletter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--orange);
    color: var(--navy);
    border: none;
    border-radius: 0 8px 8px 0;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color var(--transition), color var(--transition), opacity var(--transition);
    white-space: nowrap;
}
.newsletter-btn:hover { background: #e5a31e; }
.newsletter-btn:disabled { opacity: 0.7; cursor: not-allowed; }
.newsletter-btn.success { background: var(--primary-green); color: var(--white); }
.newsletter-privacy { color: rgba(255,255,255,0.4); font-size: 0.8rem; margin-top: 8px; }
.newsletter-privacy a { color: rgba(255,255,255,0.5); text-decoration: underline; }
.newsletter-privacy a:hover { color: var(--white); }

@media (max-width: 768px) {
    .newsletter-inner { flex-direction: column; gap: 16px; text-align: center; }
    .newsletter-input { width: 100%; min-width: 0; }
    .newsletter-input-group { width: 100%; }
    .newsletter-form { width: 100%; }
}

/* ===== MOBILE MENU (Homepage) ===== */
.mobile-menu {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
}

.mobile-menu.active { display: block; }
.mobile-menu .nav-links { flex-direction: column; gap: 16px; }
.mobile-menu .btn { width: 100%; margin-top: 16px; }

/* ===== STICKY CTA (Mobile) ===== */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 12px 24px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    z-index: 999;
    text-align: center;
}

.sticky-cta .btn { width: 100%; }

/* ===== SCROLL TRIGGER BANNER ===== */
.scroll-trigger-banner {
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--navy);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
    white-space: nowrap;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.scroll-trigger-banner.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}


/* ===== WHATSAPP FLOAT BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 997;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 80px;
        right: 16px;
        width: 50px;
        height: 50px;
    }
    .whatsapp-float svg { width: 24px; height: 24px; }
}

/* ===== HOMEPAGE RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-container,
    .waarom-grid,
    .thuisbatterij-grid,
    .over-ons-content,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .hero-container { text-align: center; }
    .hero-visual { max-width: 500px; margin: 0 auto; }
    .hero-subtitle { margin: 0 auto 32px; }
    .hero-cta { justify-content: center; }
    .hero-trust { justify-content: center; }

    .voordelen-grid { grid-template-columns: repeat(2, 1fr); }
    .producten-grid { grid-template-columns: repeat(2, 1fr); }
    .stappen-grid { grid-template-columns: 1fr; gap: 24px; }
    .review-card { flex: 0 0 calc(50% - 12px); }

    .reviews-summary { flex-direction: column; gap: 20px; }
    .reviews-summary-info { text-align: center; }

    .home-footer .footer-grid { grid-template-columns: repeat(2, 1fr); }

    .waarom-image img,
    .thuisbatterij-image img,
    .over-ons-image img { height: 350px; }

    .over-ons-stats { position: relative; bottom: 0; left: 0; right: 0; margin-top: 24px; }
}

@media (max-width: 768px) {
    .nav-links, .header-cta, .lang-switcher { display: none; }
    .mobile-phone-link { display: block; }
    .mobile-menu-btn { display: block; }
    .sticky-cta { display: block; }
    body { padding-bottom: 70px; }

    .home-hero { padding-top: calc(var(--header-height) + 30px); }
    .home-hero h1 { font-size: 2rem; }
    .hero-subtitle { font-size: 1rem; }
    .section-title { font-size: 1.85rem; }

    .voordelen-grid, .producten-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .home-footer .footer-grid { grid-template-columns: 1fr; gap: 32px; }

    .home-footer .footer-bottom { flex-direction: column; text-align: center; }
    .over-ons-features { grid-template-columns: 1fr; }
    .over-ons-stats { grid-template-columns: 1fr; gap: 16px; }
    .certificaten-grid { gap: 24px; }
    .certificaten-grid img { height: 40px; }
    .address-preview-content { flex-direction: column; }
    .address-preview-map { width: 100%; height: 120px; order: -1; }

    .review-card { flex: 0 0 calc(100% - 0px); padding: 24px; }
    .reviews-nav-btn { width: 36px; height: 36px; font-size: 1.25rem; }

    .scroll-trigger-banner { bottom: 80px; font-size: 0.85rem; padding: 12px 20px; }
}

@media (max-width: 480px) {
    .home-hero h1 { font-size: 1.75rem; }
    .hero-cta { flex-direction: column; }
    .hero-cta .btn { width: 100%; }
    .contact-form-wrapper { padding: 24px; }
    .trust-score { width: 100%; justify-content: center; }
}

/* ===== FOCUS VISIBLE (keyboard users) ===== */
:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 2px;
}

/* ===== REDUCED MOTION (vestibular disorders) ===== */
@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;
    }
    .voordeel-card, .stap-card, .review-card {
        opacity: 1 !important;
        transform: none !important;
    }
}
