    /* ==========================================
       CSS VARIABLES & BASE
    ========================================== */
    #dc-footer-static {
        --dc-primary: #F28C1B;
        --dc-secondary: #1A1A2E;
        --dc-primary-rgb: 242, 140, 27;
        --dc-secondary-rgb: 26, 26, 46;
        --dc-bg: #ffffff;
        --dc-text: #475569;
        --dc-text-light: #64748b;
        --dc-border: #e8ecf1;
    }

    #dc-footer-static * {
        box-sizing: border-box;
    }

    /* ==========================================
       ANIMATIONS
    ========================================== */
    @keyframes dcFooterShimmer {
        0% { transform: translateX(-100%); }
        100% { transform: translateX(100%); }
    }

    @keyframes dcFooterFloat {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-8px); }
    }

    @keyframes dcFooterPulse {
        0%, 100% { box-shadow: 0 0 0 0 rgba(242, 140, 27, 0.3); }
        50% { box-shadow: 0 0 0 12px rgba(242, 140, 27, 0); }
    }

    @keyframes dcFooterGradientShift {
        0% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
    }

    /* ==========================================
       MAIN FOOTER
    ========================================== */
    #dc-footer-static .dc-footer {
        position: relative;
        overflow: hidden;
        background: var(--dc-bg);
    }

    /* ==========================================
       CTA BANNER SECTION
    ========================================== */
    #dc-footer-static .dc-footer__cta {
        position: relative;
        padding: 0 24px;
        margin-top: -40px;
        margin-bottom: 60px;
        z-index: 5;
    }

    #dc-footer-static .dc-footer__cta-inner {
        max-width: 1400px;
        margin: 0 auto;
        background: linear-gradient(135deg, var(--dc-secondary), #2d2d50, var(--dc-secondary));
        background-size: 200% 200%;
        animation: dcFooterGradientShift 8s ease infinite;
        border-radius: 24px;
        padding: 48px 56px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
        position: relative;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(26, 26, 46, 0.3);
    }

    #dc-footer-static .dc-footer__cta-inner::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(242, 140, 27, 0.12) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

    #dc-footer-static .dc-footer__cta-inner::after {
        content: '';
        position: absolute;
        bottom: -30%;
        left: -10%;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(242, 140, 27, 0.08) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

    #dc-footer-static .dc-footer__cta-content {
        position: relative;
        z-index: 2;
        flex: 1;
    }

    #dc-footer-static .dc-footer__cta-eyebrow {
        font-family: 'Lobster', cursive;
        font-size: 18px;
        color: var(--dc-primary);
        margin-bottom: 8px;
    }

    #dc-footer-static .dc-footer__cta-title {
        font-family: 'DM Sans', sans-serif;
        font-size: 28px;
        font-weight: 800;
        color: #ffffff;
        margin: 0 0 8px 0;
        line-height: 1.3;
    }

    #dc-footer-static .dc-footer__cta-desc {
        font-size: 15px;
        color: rgba(255, 255, 255, 0.7);
        margin: 0;
        line-height: 1.6;
    }

    #dc-footer-static .dc-footer__cta-actions {
        display: flex;
        gap: 16px;
        position: relative;
        z-index: 2;
        flex-shrink: 0;
    }

    #dc-footer-static .dc-footer__cta-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 16px 32px;
        border-radius: 14px;
        font-size: 15px;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        cursor: pointer;
        border: none;
    }

    #dc-footer-static .dc-footer__cta-btn--primary {
        background: linear-gradient(135deg, var(--dc-primary), #e07a0f, var(--dc-primary));
        background-size: 200% 200%;
        color: #ffffff;
        box-shadow: 0 8px 24px rgba(242, 140, 27, 0.35);
    }

    #dc-footer-static .dc-footer__cta-btn--primary::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        transition: none;
    }

    #dc-footer-static .dc-footer__cta-btn--primary:hover {
        background-position: 100% 0;
        transform: translateY(-2px);
        box-shadow: 0 12px 32px rgba(242, 140, 27, 0.45);
    }

    #dc-footer-static .dc-footer__cta-btn--primary:hover::before {
        animation: dcFooterShimmer 0.8s ease forwards;
    }

    #dc-footer-static .dc-footer__cta-btn--secondary {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        color: #ffffff;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    #dc-footer-static .dc-footer__cta-btn--secondary:hover {
        background: rgba(255, 255, 255, 0.18);
        transform: translateY(-2px);
        border-color: rgba(255, 255, 255, 0.35);
    }

    #dc-footer-static .dc-footer__cta-btn svg {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
    }

    /* ==========================================
       GOOGLE MAPS SECTION
    ========================================== */
    #dc-footer-static .dc-footer__map-section {
        padding: 0 24px 60px;
    }

    #dc-footer-static .dc-footer__map-container {
        max-width: 1400px;
        margin: 0 auto;
    }

    #dc-footer-static .dc-footer__map-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 28px;
        gap: 20px;
    }

    #dc-footer-static .dc-footer__map-title-group {
        display: flex;
        align-items: center;
        gap: 16px;
    }

    #dc-footer-static .dc-footer__map-pin {
        width: 52px;
        height: 52px;
        border-radius: 16px;
        background: linear-gradient(135deg, var(--dc-primary), #f9a94d);
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 8px 24px rgba(242, 140, 27, 0.25);
        animation: dcFooterFloat 4s ease-in-out infinite;
        flex-shrink: 0;
    }

    #dc-footer-static .dc-footer__map-pin svg {
        width: 24px;
        height: 24px;
        color: #ffffff;
    }

    #dc-footer-static .dc-footer__map-label {
        font-family: 'Lobster', cursive;
        font-size: 16px;
        color: var(--dc-primary);
        margin-bottom: 2px;
    }

    #dc-footer-static .dc-footer__map-title {
        font-family: 'DM Sans', sans-serif;
        font-size: 22px;
        font-weight: 800;
        color: var(--dc-secondary);
        margin: 0;
    }

    #dc-footer-static .dc-footer__map-address {
        font-size: 14px;
        color: var(--dc-text-light);
        display: flex;
        align-items: center;
        gap: 8px;
    }

    #dc-footer-static .dc-footer__map-address svg {
        width: 16px;
        height: 16px;
        color: var(--dc-primary);
        flex-shrink: 0;
    }

    #dc-footer-static .dc-footer__map-frame {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
        border: 2px solid var(--dc-border);
        transition: all 0.4s ease;
    }

    #dc-footer-static .dc-footer__map-frame:hover {
        box-shadow: 0 16px 50px rgba(0, 0, 0, 0.12);
        border-color: rgba(242, 140, 27, 0.3);
    }

    #dc-footer-static .dc-footer__map-frame iframe {
        display: block;
        width: 100%;
        height: 320px;
        border: none;
    }

    /* Floating badge on map */
    #dc-footer-static .dc-footer__map-badge {
        position: absolute;
        bottom: 20px;
        left: 20px;
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(16px);
        border-radius: 14px;
        padding: 14px 20px;
        display: flex;
        align-items: center;
        gap: 12px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        z-index: 3;
        border: 1px solid rgba(242, 140, 27, 0.15);
    }

    #dc-footer-static .dc-footer__map-badge-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #22c55e;
        animation: dcFooterPulse 2s ease-in-out infinite;
        flex-shrink: 0;
    }

    #dc-footer-static .dc-footer__map-badge-text {
        font-size: 13px;
        font-weight: 600;
        color: var(--dc-secondary);
    }

    /* ==========================================
       MAIN FOOTER CONTENT
    ========================================== */
    #dc-footer-static .dc-footer__main {
        background: var(--dc-bg);
        position: relative;
        padding: 0 0 50px;
        overflow: hidden;
    }

    #dc-footer-static .dc-footer__main::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--dc-border), rgba(242, 140, 27, 0.2), var(--dc-border), transparent);
    }

    #dc-footer-static .dc-footer__container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 24px;
        position: relative;
        z-index: 2;
    }

    /* ==========================================
       USP BAR - Modern card style
    ========================================== */
    #dc-footer-static .dc-footer__usps {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
        margin-bottom: 56px;
        padding: 44px 0;
        border-bottom: 1px solid var(--dc-border);
    }

    #dc-footer-static .dc-footer__usp {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 18px 20px;
        border-radius: 16px;
        background: #f8fafc;
        border: 1px solid var(--dc-border);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        cursor: default;
    }

    #dc-footer-static .dc-footer__usp:hover {
        background: #ffffff;
        border-color: rgba(242, 140, 27, 0.25);
        box-shadow: 0 8px 24px rgba(242, 140, 27, 0.08);
        transform: translateY(-3px);
    }

    #dc-footer-static .dc-footer__usp-icon {
        width: 46px;
        height: 46px;
        border-radius: 13px;
        background: linear-gradient(135deg, var(--dc-primary), #f9a94d);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        box-shadow: 0 4px 14px rgba(242, 140, 27, 0.2);
        transition: all 0.4s ease;
    }

    #dc-footer-static .dc-footer__usp:hover .dc-footer__usp-icon {
        transform: scale(1.08) rotate(-3deg);
    }

    #dc-footer-static .dc-footer__usp-icon svg {
        width: 20px;
        height: 20px;
        color: #ffffff;
    }

    #dc-footer-static .dc-footer__usp-content {
        flex: 1;
        min-width: 0;
    }

    #dc-footer-static .dc-footer__usp-text {
        font-size: 14px;
        font-weight: 700;
        color: var(--dc-secondary);
        line-height: 1.3;
        display: block;
    }

    #dc-footer-static .dc-footer__usp-sub {
        font-size: 12px;
        color: var(--dc-text-light);
        margin-top: 2px;
        display: block;
    }

    /* ==========================================
       4-COLUMN GRID
    ========================================== */
    #dc-footer-static .dc-footer__grid {
        display: grid;
        grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
        gap: 40px;
    }

    /* ==========================================
       BRAND COLUMN
    ========================================== */
    #dc-footer-static .dc-footer__brand {
        padding-right: 30px;
    }

    #dc-footer-static .dc-footer__logo {
        display: inline-block;
        margin-bottom: 20px;
        transition: all 0.4s ease;
    }

    #dc-footer-static .dc-footer__logo:hover {
        transform: scale(1.03);
    }

    #dc-footer-static .dc-footer__logo img {
        width: 180px;
        height: auto;
    }

    #dc-footer-static .dc-footer__about {
        font-size: 14px;
        line-height: 1.75;
        color: var(--dc-text-light);
        margin-bottom: 24px;
    }

    /* Social icons row */
    #dc-footer-static .dc-footer__socials {
        display: flex;
        gap: 10px;
    }

    #dc-footer-static .dc-footer__social-link {
        width: 40px;
        height: 40px;
        border-radius: 12px;
        background: #f1f5f9;
        border: 1px solid var(--dc-border);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        text-decoration: none;
    }

    #dc-footer-static .dc-footer__social-link:hover {
        background: linear-gradient(135deg, var(--dc-primary), #f9a94d);
        border-color: transparent;
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(242, 140, 27, 0.3);
    }

    #dc-footer-static .dc-footer__social-link svg {
        width: 18px;
        height: 18px;
        color: var(--dc-text-light);
        transition: color 0.3s ease;
    }

    #dc-footer-static .dc-footer__social-link:hover svg {
        color: #ffffff;
    }

    /* ==========================================
       COLUMN TITLES
    ========================================== */
    #dc-footer-static .dc-footer__column-title {
        font-family: 'DM Sans', sans-serif;
        font-size: 16px;
        font-weight: 800;
        color: var(--dc-secondary);
        margin: 0 0 24px 0;
        position: relative;
        display: inline-flex;
        align-items: center;
        gap: 10px;
    }

    #dc-footer-static .dc-footer__column-title::before {
        content: '';
        width: 4px;
        height: 20px;
        border-radius: 4px;
        background: linear-gradient(180deg, var(--dc-primary), #f9a94d);
        flex-shrink: 0;
    }

    /* ==========================================
       LINK LISTS
    ========================================== */
    #dc-footer-static .dc-footer__links {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    #dc-footer-static .dc-footer__links li {
        margin-bottom: 10px;
    }

    #dc-footer-static .dc-footer__links a {
        font-size: 14px;
        color: var(--dc-text-light);
        text-decoration: none;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 4px 0;
        position: relative;
    }

    #dc-footer-static .dc-footer__links a::before {
        content: '';
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--dc-border);
        transition: all 0.3s ease;
        flex-shrink: 0;
    }

    #dc-footer-static .dc-footer__links a:hover {
        color: var(--dc-primary);
        transform: translateX(6px);
    }

    #dc-footer-static .dc-footer__links a:hover::before {
        background: var(--dc-primary);
        box-shadow: 0 0 8px rgba(242, 140, 27, 0.4);
    }

    /* ==========================================
       CONTACT ITEMS
    ========================================== */
    #dc-footer-static .dc-footer__contact-item {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 18px;
        padding: 12px 14px;
        border-radius: 12px;
        background: #f8fafc;
        border: 1px solid var(--dc-border);
        transition: all 0.3s ease;
    }

    #dc-footer-static .dc-footer__contact-item:hover {
        background: #ffffff;
        border-color: rgba(242, 140, 27, 0.2);
        box-shadow: 0 4px 16px rgba(242, 140, 27, 0.06);
    }

    #dc-footer-static .dc-footer__contact-icon {
        width: 34px;
        height: 34px;
        border-radius: 10px;
        background: linear-gradient(135deg, var(--dc-primary), #f9a94d);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        box-shadow: 0 4px 12px rgba(242, 140, 27, 0.2);
    }

    #dc-footer-static .dc-footer__contact-icon svg {
        width: 15px;
        height: 15px;
        color: #ffffff;
    }

    #dc-footer-static .dc-footer__contact-content {
        flex: 1;
        min-width: 0;
    }

    #dc-footer-static .dc-footer__contact-label {
        font-size: 11px;
        font-weight: 700;
        color: var(--dc-primary);
        text-transform: uppercase;
        letter-spacing: 0.8px;
        margin-bottom: 2px;
    }

    #dc-footer-static .dc-footer__contact-value {
        font-size: 13px;
        color: var(--dc-text);
        line-height: 1.5;
    }

    #dc-footer-static .dc-footer__contact-value a {
        color: var(--dc-text);
        text-decoration: none;
        transition: color 0.3s ease;
    }

    #dc-footer-static .dc-footer__contact-value a:hover {
        color: var(--dc-primary);
    }

    /* ==========================================
       BOTTOM BAR
    ========================================== */
    #dc-footer-static .dc-footer__bottom {
        background: var(--dc-secondary);
        padding: 24px 0;
        position: relative;
        z-index: 2;
    }

    #dc-footer-static .dc-footer__bottom::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--dc-primary), #f9a94d, var(--dc-primary));
        background-size: 200% 100%;
        animation: dcFooterGradientShift 4s linear infinite;
    }

    #dc-footer-static .dc-footer__bottom-inner {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
    }

    #dc-footer-static .dc-footer__copyright {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.45);
        margin: 0;
    }

    #dc-footer-static .dc-footer__copyright a {
        color: var(--dc-primary);
        text-decoration: none;
        font-weight: 600;
        transition: color 0.3s ease;
    }

    #dc-footer-static .dc-footer__copyright a:hover {
        color: #f9a94d;
    }

    #dc-footer-static .dc-footer__bottom-nav {
        display: flex;
        flex-wrap: wrap;
        gap: 6px 20px;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    #dc-footer-static .dc-footer__bottom-nav a {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.45);
        text-decoration: none;
        transition: all 0.3s ease;
        position: relative;
    }

    #dc-footer-static .dc-footer__bottom-nav a::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--dc-primary), #f9a94d);
        transition: width 0.3s ease;
        border-radius: 2px;
    }

    #dc-footer-static .dc-footer__bottom-nav a:hover {
        color: #ffffff;
    }

    #dc-footer-static .dc-footer__bottom-nav a:hover::after {
        width: 100%;
    }

    /* ==========================================
       RESPONSIVE
    ========================================== */
    @media (max-width: 1024px) {
        #dc-footer-static .dc-footer__cta-inner {
            flex-direction: column;
            text-align: center;
            padding: 40px 32px;
        }

        #dc-footer-static .dc-footer__usps {
            grid-template-columns: repeat(2, 1fr);
        }

        #dc-footer-static .dc-footer__grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 36px;
        }

        #dc-footer-static .dc-footer__brand {
            grid-column: span 2;
            max-width: 600px;
            padding-right: 0;
        }
    }

    @media (max-width: 768px) {
        #dc-footer-static .dc-footer__cta {
            margin-top: 0;
            padding-top: 40px;
        }

        #dc-footer-static .dc-footer__cta-inner {
            padding: 32px 24px;
            border-radius: 20px;
        }

        #dc-footer-static .dc-footer__cta-title {
            font-size: 22px;
        }

        #dc-footer-static .dc-footer__cta-actions {
            flex-direction: column;
            width: 100%;
        }

        #dc-footer-static .dc-footer__cta-btn {
            justify-content: center;
            width: 100%;
        }

        #dc-footer-static .dc-footer__map-header {
            flex-direction: column;
            align-items: flex-start;
        }

        #dc-footer-static .dc-footer__map-frame iframe {
            height: 250px;
        }

        #dc-footer-static .dc-footer__map-badge {
            display: none;
        }

        #dc-footer-static .dc-footer__main {
            padding: 0 0 32px;
        }

        /* USPs: compact 2-col grid */
        #dc-footer-static .dc-footer__usps {
            grid-template-columns: repeat(2, 1fr);
            gap: 8px;
            margin-bottom: 28px;
            padding: 28px 0;
        }

        #dc-footer-static .dc-footer__usp {
            padding: 12px 14px;
            border-radius: 12px;
            gap: 10px;
        }

        #dc-footer-static .dc-footer__usp-icon {
            width: 36px;
            height: 36px;
            border-radius: 10px;
        }

        #dc-footer-static .dc-footer__usp-icon svg {
            width: 16px;
            height: 16px;
        }

        #dc-footer-static .dc-footer__usp:hover {
            transform: none;
        }

        /* Grid: brand full-width, diensten+info side-by-side, contact full-width with items in row */
        #dc-footer-static .dc-footer__grid {
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        #dc-footer-static .dc-footer__brand {
            grid-column: 1 / -1;
            display: flex;
            align-items: center;
            gap: 20px;
            padding-right: 0;
            padding-bottom: 24px;
            border-bottom: 1px solid var(--dc-border);
        }

        #dc-footer-static .dc-footer__logo {
            margin-bottom: 0;
            flex-shrink: 0;
        }

        #dc-footer-static .dc-footer__logo img {
            width: 110px;
        }

        #dc-footer-static .dc-footer__about {
            font-size: 13px;
            line-height: 1.6;
            margin-bottom: 0;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        #dc-footer-static .dc-footer__socials {
            display: none;
        }

        /* Diensten + Informatie columns side-by-side */
        #dc-footer-static .dc-footer__column-title {
            font-size: 14px;
            margin-bottom: 14px;
        }

        #dc-footer-static .dc-footer__column-title::before {
            width: 3px;
            height: 16px;
        }

        #dc-footer-static .dc-footer__links li {
            margin-bottom: 6px;
        }

        #dc-footer-static .dc-footer__links a {
            font-size: 13px;
            padding: 2px 0;
        }

        #dc-footer-static .dc-footer__links a::before {
            width: 4px;
            height: 4px;
        }

        /* Contact column: full width, 3 items naast elkaar */
        #dc-footer-static .dc-footer__column:last-child {
            grid-column: 1 / -1;
            padding-top: 20px;
            border-top: 1px solid var(--dc-border);
        }

        #dc-footer-static .dc-footer__column:last-child .dc-footer__column-title {
            display: none;
        }

        #dc-footer-static .dc-footer__column:last-child {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
        }

        #dc-footer-static .dc-footer__contact-item {
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 16px 10px;
            margin-bottom: 0;
            border-radius: 14px;
            gap: 8px;
            background: #f8fafc;
            border: 1px solid var(--dc-border);
            transition: all 0.3s ease;
        }

        #dc-footer-static .dc-footer__contact-item:hover {
            border-color: rgba(242, 140, 27, 0.25);
            background: #fff;
        }

        #dc-footer-static .dc-footer__contact-icon {
            width: 38px;
            height: 38px;
            border-radius: 12px;
        }

        #dc-footer-static .dc-footer__contact-content {
            text-align: center;
        }

        #dc-footer-static .dc-footer__contact-label {
            font-size: 10px;
            letter-spacing: 0.6px;
        }

        #dc-footer-static .dc-footer__contact-value {
            font-size: 12px;
            word-break: break-all;
        }

        /* Bottom bar */
        #dc-footer-static .dc-footer__bottom-inner {
            flex-direction: column;
            text-align: center;
            gap: 12px;
        }

        #dc-footer-static .dc-footer__bottom-nav {
            justify-content: center;
        }

        #dc-footer-static .dc-footer__copyright {
            font-size: 12px;
        }

        #dc-footer-static .dc-footer__bottom-nav a {
            font-size: 12px;
        }
    }

    /* 1200px: CTA banner max-width adjustment */
    @media (max-width: 1200px) {
        #dc-footer-static .dc-footer__cta-inner {
            max-width: 1100px;
            padding: 40px 40px;
        }
    }

    /* 480px: Extra compact for small phones */
    @media (max-width: 480px) {
        #dc-footer-static .dc-footer__cta {
            padding: 0 16px;
        }

        #dc-footer-static .dc-footer__cta-inner {
            padding: 24px 18px;
            border-radius: 16px;
        }

        #dc-footer-static .dc-footer__cta-title {
            font-size: 20px;
        }

        #dc-footer-static .dc-footer__cta-desc {
            font-size: 13px;
        }

        #dc-footer-static .dc-footer__cta-btn {
            padding: 12px 20px;
            font-size: 13px;
            border-radius: 12px;
        }

        #dc-footer-static .dc-footer__map-section {
            padding: 0 16px 32px;
        }

        #dc-footer-static .dc-footer__map-frame iframe {
            height: 200px;
        }

        #dc-footer-static .dc-footer__map-pin {
            width: 40px;
            height: 40px;
            border-radius: 12px;
        }

        #dc-footer-static .dc-footer__map-title {
            font-size: 18px;
        }

        #dc-footer-static .dc-footer__container {
            padding: 0 16px;
        }

        /* USPs: single column on very small screens */
        #dc-footer-static .dc-footer__usps {
            grid-template-columns: 1fr;
            gap: 6px;
            margin-bottom: 20px;
            padding: 20px 0;
        }

        #dc-footer-static .dc-footer__usp {
            padding: 10px 12px;
            border-radius: 10px;
        }

        #dc-footer-static .dc-footer__usp-icon {
            width: 32px;
            height: 32px;
            border-radius: 8px;
        }

        #dc-footer-static .dc-footer__usp-text {
            font-size: 13px;
        }

        #dc-footer-static .dc-footer__usp-sub {
            font-size: 11px;
        }

        /* Grid: diensten+info stay side-by-side, contact stays 3-col */
        #dc-footer-static .dc-footer__grid {
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        #dc-footer-static .dc-footer__brand {
            flex-direction: column;
            text-align: center;
            gap: 12px;
            padding-bottom: 16px;
        }

        #dc-footer-static .dc-footer__logo img {
            width: 100px;
        }

        #dc-footer-static .dc-footer__about {
            -webkit-line-clamp: 2;
            font-size: 12px;
        }

        /* Contact column: 3 compact cards naast elkaar */
        #dc-footer-static .dc-footer__column:last-child {
            grid-template-columns: repeat(3, 1fr);
            gap: 6px;
            padding-top: 16px;
        }

        #dc-footer-static .dc-footer__contact-item {
            padding: 12px 6px;
            border-radius: 10px;
        }

        #dc-footer-static .dc-footer__contact-icon {
            width: 32px;
            height: 32px;
            border-radius: 8px;
        }

        #dc-footer-static .dc-footer__contact-icon svg {
            width: 14px;
            height: 14px;
        }

        #dc-footer-static .dc-footer__contact-label {
            font-size: 9px;
        }

        #dc-footer-static .dc-footer__contact-value {
            font-size: 10px;
        }

        /* Bottom bar compact */
        #dc-footer-static .dc-footer__bottom {
            padding: 16px 0;
        }

        #dc-footer-static .dc-footer__bottom-inner {
            gap: 8px;
        }

        #dc-footer-static .dc-footer__bottom-nav {
            gap: 4px 12px;
        }

        #dc-footer-static .dc-footer__bottom-nav a,
        #dc-footer-static .dc-footer__copyright {
            font-size: 11px;
        }
    }
