
    /* =============================================
       GLOBAL BUTTON STYLES
       Button 1 (Primary/Filled): .coco-btn-primary
       Button 2 (Ghost/Outline): .coco-btn-ghost
       ============================================= */
    .coco-hero-btn,
    .clc-btn,
    .home-btn,
    .ka-cta-btn,
    .ka-contact-cta,
    .cu-intro-btn,
    .cp-btn,
    .ch-btn,
    .coco-cta-button,
    .ck-submit {
        border-radius: 0 !important;
    }

    /* =============================================
       GLOBAL CARD STYLES - No rounded corners
       ============================================= */
    .coco-port-card,
    .coco-home-card,
    .coco-list-card,
    .coco-portfolio-section,
    .coco-stat-card,
    .coco-benefits-card,
    .ka-benefit-card,
    .ck-info-card {
        border-radius: 0 !important;
    }

    /* =============================================
       BREAKDANCE CONTAINER OVERRIDE
       Make section-container full-width when it holds
       coco plugin content. This eliminates the need 
       for 100vw breakout hacks entirely.
       ============================================= */
    .bde-section:has(.coco-home-page-wrap) > .section-container,
    .bde-section:has(.coco-archive-hero) > .section-container,
    .bde-section:has(.coco-footer) > .section-container,
    .bde-section:has(.cu-full-width-bg) > .section-container,
    .bde-section:has(.coco-modern-layout) > .section-container,
    .bde-section:has(.im-section) > .section-container,
    .bde-section:has(.coco-stats-section) > .section-container,
    .bde-section:has(.coco-benefits-wrap) > .section-container {
        max-width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .bde-section:has(.coco-archive-hero) > .section-container,
    .bde-section:has(.coco-home-page-wrap) > .section-container {
        padding-top: 0 !important;
    }

    /* PORTFOLIO HOME GRID FIX */
    .coco-portfolio-home-grid { 
        display: grid !important; 
        grid-template-columns: repeat(4, 1fr) !important; 
        gap: 25px !important; 
        margin: 40px auto !important; 
        max-width: 1400px !important;
    }
    @media (max-width: 1200px) { .coco-portfolio-home-grid { grid-template-columns: repeat(3, 1fr) !important; } }
    @media (max-width: 900px) { .coco-portfolio-home-grid { grid-template-columns: repeat(2, 1fr) !important; } }
    @media (max-width: 560px) { .coco-portfolio-home-grid { grid-template-columns: 1fr !important; } }

    .coco-port-card { 
        position: relative; 
        height: 450px; 
        overflow: hidden; 
        box-shadow: 0 10px 25px rgba(0,0,0,0.1); 
        background: #3b5273; 
        display: block;
        text-decoration: none !important;
    }
    .cp-image { 
        width: 100%; 
        height: 100%; 
        background-size: cover; 
        background-position: center; 
        transition: transform 0.6s, opacity 0.4s; 
    }
    .cp-content { 
        position: absolute !important; 
        top: 0 !important; left: 0 !important; width: 100% !important; height: 100% !important; 
        display: flex !important; flex-direction: column !important; justify-content: flex-end !important; 
        padding: 30px !important; 
        background: linear-gradient(to top, rgba(59, 82, 115, 0.9) 0%, rgba(59, 82, 115, 0.4) 30%, transparent 60%) !important; 
        color: #fff !important; z-index: 2 !important; 
    }

    /* ARCHIVE PAGE FIXES */
    .coco-archive-hero { 
        width: 100% !important; 
        position: relative !important;
        height: 100vh !important;
        min-height: 830px !important;
        background-size: cover !important; 
        background-position: center bottom !important; 
        background-repeat: no-repeat !important;
        display: flex !important; 
        align-items: center !important; 
        justify-content: flex-start !important; 
        padding-bottom: 12% !important;
        margin-bottom: 80px !important; 
        margin-top: 0 !important;
        animation: cocoFadeIn 1.2s ease-out;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }

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

    @keyframes cocoSlideInLeft {
        from { opacity: 0; transform: translateX(-50px); }
        to { opacity: 1; transform: translateX(0); }
    }

    .cah-overlay h1 { animation: cocoSlideInLeft 1s ease-out 0.3s both; }
    .cah-overlay p { animation: cocoSlideInLeft 1s ease-out 0.5s both; }
    .coco-hero-btns { animation: cocoSlideInLeft 1s ease-out 0.7s both; }

    .coco-list-card { 
        display: flex; 
        background: #fff; 
        overflow: hidden; 
        margin-bottom: 40px; 
        box-shadow: 0 10px 30px rgba(0,0,0,0.05); 
        min-height: 400px;
        border: 1px solid #e2e8f0;
        transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    }
    .coco-list-card:hover {
        transform: translateY(-10px) scale(1.01);
        box-shadow: 0 20px 40px rgba(59, 82, 115, 0.15);
    }
    .clc-image { 
        flex: 0 0 45%; 
        background-size: cover; 
        background-position: center; 
        min-height: 400px; 
        transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
    }
    .coco-list-card:hover .clc-image {
        transform: scale(1.05);
    }
    .clc-btn { 
        align-self: flex-start; 
        padding: 14px 35px; 
        background: #3b5273; 
        color: #fff !important; 
        text-decoration: none !important; 
        font-weight: 700; 
        text-transform: uppercase; 
        font-size: 0.9rem;
        letter-spacing: 1px;
        border: 2px solid #3b5273;
        transition: all 0.25s ease;
    }
    .clc-btn:hover {
        background: #2c3e50;
        border-color: #2c3e50;
        transform: translateY(-2px);
    }

    .clc-badge {
        position: absolute;
        top: 20px;
        right: 20px;
        background: #3b5273;
        color: #fff;
        padding: 6px 15px;
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        border-radius: 0;
        z-index: 10;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }

    .coco-list-card:nth-child(even) .clc-badge {
        right: 20px;
        left: auto;
    }

    @media (max-width: 992px) {
        .clc-badge { left: 15px; top: 15px; }
        .coco-list-card:nth-child(even) .clc-badge { left: 15px; }
    }

    .coco-port-card { 
        position: relative; 
        height: 450px; 
        overflow: hidden; 
        box-shadow: 0 10px 25px rgba(0,0,0,0.1); 
        background: #3b5273; 
        display: block;
        text-decoration: none !important;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .cp-image { 
        width: 100%; 
        height: 100%; 
        background-size: cover; 
        background-position: center; 
        transition: transform 1.2s cubic-bezier(0.2, 1, 0.3, 1), filter 0.4s ease; 
    }
    
    /* Reveal on Scroll */
    .coco-reveal {
        opacity: 1;
        transform: translateY(0);
        transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
    }
    
    /* We'll add this class via JS only if IntersectionObserver is supported */
    .coco-reveal-ready .coco-reveal:not(.is-visible) {
        opacity: 0;
        transform: translateY(30px);
    }
    
    .coco-reveal.is-visible {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
    .herosectiongradient {
        position: relative !important;
    }
    .herosectiongradient::before {
        content: "" !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        background: linear-gradient(to right, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.8) 30%, rgba(255,255,255,0) 70%) !important;
        pointer-events: none !important;
        z-index: 1 !important;
    }
    .herosectiongradient > * {
        position: relative !important;
        z-index: 4 !important;
    }

    /* ZIGZAG IMAGE LAYER — sits above overlay, below content */
    .herosectiongradient::after {
        content: "" !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        background-image: url('https://coco-real.weareweblabs.com/wp-content/uploads/2026/02/Design-ohne-Titel-2026-02-25T153707.051.png') !important;
        background-size: cover !important;
        background-position: center bottom !important;
        background-repeat: no-repeat !important;
        pointer-events: none !important;
        z-index: 3 !important;
    }

    /* Specific Zigzag for Unternehmen, Karriere, Portfolio */
    .coco-portfolio-hero::after,
    .coco-unternehmen-hero::after,
    .coco-karriere-hero::after {
        background-image: url('https://coco-real.weareweblabs.com/wp-content/uploads/2026/02/Design-ohne-Titel-2026-02-25T161639.598-1.png') !important;
    }

    /* DARK OVERLAY VARIANT */
    body.coco-dark-hero .herosectiongradient::before {
        background: linear-gradient(to right, rgba(10,20,40,0.92) 0%, rgba(10,20,40,0.70) 35%, rgba(10,20,40,0.15) 75%) !important;
    }
    body.coco-dark-hero .coco-archive-hero::before {
        background: rgba(10,20,40,0.70) !important;
    }
    body.coco-dark-hero .cah-overlay h1,
    body.coco-dark-hero .cah-overlay .cah-eyebrow,
    body.coco-dark-hero .cah-overlay p {
        color: #ffffff !important;
        text-shadow: 0 1px 4px rgba(0,0,0,0.4) !important;
    }

    /* Secondary Button in Dark Mode (Hero only) */
    body.coco-dark-hero .coco-archive-hero .coco-hero-btn--ghost,
    body.coco-dark-hero .coco-home-page-wrap .coco-hero-btn--ghost {
        color: #ffffff !important;
        border-color: #ffffff !important;
    }
    body.coco-dark-hero .coco-archive-hero .coco-hero-btn--ghost:hover,
    body.coco-dark-hero .coco-home-page-wrap .coco-hero-btn--ghost:hover {
        background: #ffffff !important;
        color: #3b5273 !important;
    }

    /* LIGHT GRAY OVERLAY VARIANT */
    body.coco-gray-hero .herosectiongradient::before {
        background: linear-gradient(to right, rgba(71,85,105,0.85) 0%, rgba(71,85,105,0.6) 35%, rgba(71,85,105,0.15) 75%) !important;
    }
    body.coco-gray-hero .coco-archive-hero::before {
        background: linear-gradient(to right, rgba(71,85,105,0.88) 0%, rgba(71,85,105,0.65) 35%, rgba(71,85,105,0.18) 75%) !important;
    }
    body.coco-gray-hero .cah-overlay h1,
    body.coco-gray-hero .cah-overlay .cah-eyebrow,
    body.coco-gray-hero .cah-overlay p {
        color: #ffffff !important;
        text-shadow: 0 1px 3px rgba(0,0,0,0.25) !important;
    }
    body.coco-gray-hero .coco-archive-hero .coco-hero-btn--ghost,
    body.coco-gray-hero .coco-home-page-wrap .coco-hero-btn--ghost {
        color: #ffffff !important;
        border-color: #ffffff !important;
    }
    body.coco-gray-hero .coco-archive-hero .coco-hero-btn--ghost:hover,
    body.coco-gray-hero .coco-home-page-wrap .coco-hero-btn--ghost:hover {
        background: #ffffff !important;
        color: #3b5273 !important;
    }

    /* NEW PORTFOLIO ITEM LAYOUT - CLEAN SIDE-BY-SIDE WITH SLIDER */
    .coco-portfolio-item {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        background: #fff !important;
        margin-bottom: 100px !important;
        border-radius: 0 !important;
        position: relative !important;
        border: 1px solid #e2e8f0 !important;
        min-height: 600px !important;
    }
    .coco-portfolio-item:nth-child(even) {
        direction: rtl !important;
    }
    .coco-portfolio-item:nth-child(even) .cpi-content,
    .coco-portfolio-item:nth-child(even) .cpi-image-slider,
    .coco-portfolio-item:nth-child(even) .cpi-slider-dots,
    .coco-portfolio-item:nth-child(even) .cpi-slider-prev,
    .coco-portfolio-item:nth-child(even) .cpi-slider-next {
        direction: ltr !important;
    }

    /* PROJECT ARCHIVE SPECIFIC STYLES */
    .coco-list-card {
        display: flex !important;
        flex-direction: row !important;
        align-items: stretch !important;
        background: #fff !important;
        margin-bottom: 80px !important;
        border-radius: 0 !important;
        border: 1px solid #e2e8f0 !important;
        min-height: 450px !important;
        height: auto !important;
        overflow: visible !important;
    }
    .coco-list-card:nth-child(even) {
        flex-direction: row-reverse !important;
    }
    .clc-content {
        flex: 1 1 50% !important;
        padding: 50px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        min-width: 0 !important;
        background: #fff !important;
        position: relative !important;
        z-index: 2 !important;
    }
    .clc-image {
        flex: 1 1 50% !important;
        position: relative !important;
        min-height: 450px !important;
        background-size: cover !important;
        background-position: center center !important;
        display: block !important;
        z-index: 1 !important;
    }
    .clc-meta-overlay {
        position: absolute !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        background: linear-gradient(to top, rgba(59, 82, 115, 0.9) 0%, rgba(59, 82, 115, 0.4) 60%, transparent 100%) !important;
        padding: 25px !important;
        display: flex !important;
        gap: 20px !important;
        color: #fff !important;
        z-index: 5 !important;
    }
    .clc-meta-overlay div {
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
        font-size: 0.9rem !important;
        font-weight: 500 !important;
    }
    .clc-meta-overlay .dashicons {
        font-size: 18px !important;
        width: 18px !important;
        height: 18px !important;
        color: #9cbfe4 !important;
    }
    .clc-title {
        font-size: 2.2rem !important;
        font-weight: 800 !important;
        color: #3b5273 !important;
        margin-bottom: 15px !important;
    }
    .clc-title a { text-decoration: none !important; color: inherit !important; }
    .clc-sub {
        font-size: 0.85rem !important;
        font-weight: 700 !important;
        color: #9cbfe4 !important;
        text-transform: uppercase !important;
        letter-spacing: 1.5px !important;
        margin-bottom: 20px !important;
    }
    .clc-excerpt {
        font-size: 1rem !important;
        line-height: 1.6 !important;
        color: #64748b !important;
        margin-bottom: 30px !important;
    }
    .clc-btn {
        display: inline-block !important;
        padding: 12px 25px !important;
        background: #3b5273 !important;
        color: #fff !important;
        font-size: 0.8rem !important;
        font-weight: 700 !important;
        text-transform: uppercase !important;
        letter-spacing: 1px !important;
        text-decoration: none !important;
        align-self: flex-start !important;
        transition: background 0.3s !important;
    }
    .clc-btn:hover { background: #2c3e50 !important; }

    @media (max-width: 992px) {
        .coco-list-card, .coco-list-card:nth-child(even) { 
            display: flex !important;
            flex-direction: column !important;
            min-height: auto !important;
            height: auto !important;
            width: 100% !important;
            max-width: 100% !important;
            overflow: visible !important;
            direction: ltr !important;
        }
        .clc-image { 
            height: 350px !important; 
            min-height: 350px !important; 
            order: 1 !important; 
            width: 100% !important; 
            flex: none !important;
            max-width: 100% !important;
        }
        .clc-content { 
            order: 2 !important;
            padding: 40px 25px !important; 
            width: 100% !important; 
            flex: none !important;
            display: flex !important;
            flex-direction: column !important;
            max-width: 100% !important;
            min-height: auto !important;
            opacity: 1 !important;
            visibility: visible !important;
            position: relative !important;
            z-index: 5 !important;
            background: #fff !important;
        }
        .clc-meta-overlay { padding: 15px !important; gap: 10px !important; flex-wrap: wrap !important; }
    }
    
    /* Main Image Slider */
    .cpi-image-slider {
        width: 100% !important;
        height: 100% !important;
        position: relative !important;
        overflow: hidden !important;
        background: #f1f5f9 !important;
    }
    .cpi-main-img {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        opacity: 0 !important;
        transition: opacity 0.6s ease-in-out !important;
        z-index: 1 !important;
    }
    .cpi-main-img.active {
        opacity: 1 !important;
        z-index: 2 !important;
    }
    .cpi-main-img img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    /* Slider Navigation */
    .cpi-slider-prev, .cpi-slider-next {
        position: absolute !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        z-index: 10 !important;
        background: rgba(255,255,255,0.4) !important;
        border: none !important;
        width: 40px !important;
        height: 40px !important;
        cursor: pointer !important;
        font-size: 24px !important;
        color: #3b5273 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        transition: all 0.2s !important;
        opacity: 0 !important; /* Hidden by default */
        unicode-bidi: bidi-override !important;
    }
    .cpi-image-slider:hover .cpi-slider-prev, 
    .cpi-image-slider:hover .cpi-slider-next {
        opacity: 1 !important;
    }
    .cpi-slider-prev:hover, .cpi-slider-next:hover {
        background: rgba(255,255,255,0.9) !important;
    }
    .cpi-slider-prev { left: 15px !important; right: auto !important; direction: ltr !important; }
    .cpi-slider-next { right: 15px !important; left: auto !important; direction: ltr !important; }
    
    /* Slider Dots */
    .cpi-slider-dots {
        position: absolute !important;
        bottom: 20px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        z-index: 10 !important;
        display: flex !important;
        gap: 8px !important;
    }
    .cpi-dot {
        width: 8px !important;
        height: 8px !important;
        background: rgba(255,255,255,0.5) !important;
        border-radius: 50% !important; /* Dots are allowed to be round */
        cursor: pointer !important;
        transition: all 0.3s !important;
        border: 1px solid rgba(0,0,0,0.1) !important;
    }
    .cpi-dot.active {
        background: #fff !important;
        transform: scale(1.3) !important;
        box-shadow: 0 0 10px rgba(0,0,0,0.2) !important;
    }

    .cpi-content {
        padding: 60px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
    }
    .cpi-title {
        font-size: 2.8rem !important;
        font-weight: 900 !important;
        color: #3b5273 !important;
        margin: 0 0 10px 0 !important;
        line-height: 1.1 !important;
        text-transform: uppercase !important;
    }
    .cpi-sub {
        font-size: 0.9rem !important;
        font-weight: 700 !important;
        color: #9cbfe4 !important;
        text-transform: uppercase !important;
        letter-spacing: 2px !important;
        margin-bottom: 25px !important;
    }
    .cpi-text {
        font-size: 1.1rem !important;
        line-height: 1.7 !important;
        color: #475569 !important;
    }

    @media (max-width: 1024px) {
        .coco-portfolio-item { grid-template-columns: 1fr !important; min-height: auto !important; }
        .coco-portfolio-item:nth-child(even) { direction: ltr !important; }
        .cpi-image-slider { height: 400px !important; }
        .cpi-content { padding: 40px 25px !important; }
        .cpi-title { font-size: 2.2rem !important; }
    }

    /* OVERLAY SWITCHER FLOATING BUTTON */
    #coco-overlay-switcher {
        position: fixed !important;
        bottom: 28px !important;
        right: 28px !important;
        z-index: 99999 !important;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    }
    #coco-overlay-toggle {
        width: 48px !important;
        height: 48px !important;
        border-radius: 50% !important;
        background: #3b5273 !important;
        border: none !important;
        cursor: pointer !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-shadow: 0 4px 16px rgba(0,0,0,0.25) !important;
        transition: background 0.2s, transform 0.15s !important;
        padding: 0 !important;
        color: #fff !important;
    }
    #coco-overlay-toggle:hover {
        background: #2c3f5a !important;
        transform: scale(1.08) !important;
    }
    #coco-overlay-toggle svg {
        width: 22px !important;
        height: 22px !important;
        fill: none !important;
        stroke: #fff !important;
        stroke-width: 1.8 !important;
        stroke-linecap: round !important;
        stroke-linejoin: round !important;
    }
    #coco-overlay-popover {
        position: absolute !important;
        bottom: 58px !important;
        right: 0 !important;
        background: #fff !important;
        border-radius: 12px !important;
        box-shadow: 0 8px 32px rgba(0,0,0,0.18) !important;
        padding: 16px !important;
        width: 230px !important;
        opacity: 0 !important;
        transform: translateY(8px) scale(0.97) !important;
        pointer-events: none !important;
        transition: opacity 0.2s, transform 0.2s !important;
    }
    #coco-overlay-popover.is-open {
        opacity: 1 !important;
        transform: translateY(0) scale(1) !important;
        pointer-events: auto !important;
    }
    #coco-overlay-popover-title {
        font-size: 11px !important;
        font-weight: 700 !important;
        text-transform: uppercase !important;
        letter-spacing: 1.2px !important;
        color: #8a9ab0 !important;
        margin: 0 0 12px 0 !important;
    }
    .coco-switcher-subtitle {
        font-size: 11px !important;
        font-weight: 700 !important;
        text-transform: uppercase !important;
        letter-spacing: 1.2px !important;
        color: #8a9ab0 !important;
        margin: 0 0 12px 0 !important;
    }
    .coco-switcher-divider {
        height: 1px !important;
        background: #e2e8f0 !important;
        margin: 10px 0 12px !important;
    }
    .coco-overlay-option {
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
        width: 100% !important;
        padding: 10px 12px !important;
        border: 1.5px solid #e2e8f0 !important;
        border-radius: 8px !important;
        background: #f8fafc !important;
        cursor: pointer !important;
        font-size: 13px !important;
        font-weight: 500 !important;
        color: #3b5273 !important;
        margin-bottom: 8px !important;
        transition: border-color 0.15s, background 0.15s !important;
        text-align: left !important;
    }
    .coco-overlay-option:last-child {
        margin-bottom: 0 !important;
    }
    .coco-overlay-option:hover {
        border-color: #3b5273 !important;
        background: #eef2f7 !important;
    }
    .coco-overlay-option.is-active {
        border-color: #3b5273 !important;
        background: #3b5273 !important;
        color: #fff !important;
    }
    .coco-overlay-option .coco-opt-swatch {
        width: 28px !important;
        height: 20px !important;
        border-radius: 4px !important;
        flex-shrink: 0 !important;
        border: 1px solid rgba(0,0,0,0.1) !important;
    }
    .coco-overlay-option .coco-opt-swatch.swatch-light {
        background: linear-gradient(to right, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.3) 100%) !important;
        border-color: #cbd5e1 !important;
    }
    .coco-overlay-option .coco-opt-swatch.swatch-dark {
        background: linear-gradient(to right, rgba(10,20,40,0.92) 0%, rgba(10,20,40,0.15) 100%) !important;
    }
    .coco-overlay-option .coco-opt-swatch.swatch-gray {
        background: linear-gradient(to right, rgba(133,146,166,0.78) 0%, rgba(133,146,166,0.22) 100%) !important;
        border-color: #94a3b8 !important;
    }
    .coco-overlay-option .coco-opt-swatch.swatch-old {
        background: linear-gradient(to right, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.3) 100%) !important;
        border-color: #cbd5e1 !important;
    }
    .coco-overlay-option .coco-opt-swatch.swatch-new {
        background: linear-gradient(to right, #3b5273 0%, #5f7fa8 100%) !important;
    }
    .coco-overlay-option .coco-opt-swatch.swatch-logo-left {
        background: linear-gradient(to right, #94a3b8 0%, #cbd5e1 100%) !important;
    }
    .coco-overlay-option .coco-opt-swatch.swatch-logo-right {
        background: linear-gradient(to right, #3b5273 0%, #9cbfe4 100%) !important;
    }
    body.coco-header-logo-right .bde-container-link-16-118.bde-container-link.breakdance-link {
        order: 2 !important;
    }
    /* Header/layout spacing is controlled by Breakdance templates. */

    /* PROJEKTE LISTE FIXES (Restore beautiful layout) */
        .coco-main-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; box-sizing: border-box !important; }
    .coco-list-card { 
        display: flex !important; 
        flex-direction: row !important;
        align-items: stretch !important;
        background: #fff; 
        overflow: hidden; 
        margin-bottom: 100px; 
        box-shadow: 0 10px 30px rgba(0,0,0,0.05); 
        min-height: 450px;
        border: 1px solid #e2e8f0;
        position: relative;
        counter-increment: project-counter;
    }
    .coco-list-card::before {
        content: counter(project-counter, decimal-leading-zero);
        position: absolute;
        bottom: -20px;
        right: 20px;
        font-size: 8rem;
        font-weight: 900;
        color: rgba(59, 82, 115, 0.03);
        line-height: 1;
        z-index: 1;
        pointer-events: none;
    }
    .coco-list-card:nth-child(even) { flex-direction: row-reverse !important; }
    .coco-list-card:nth-child(even)::before { right: auto; left: 20px; }
    
    .clc-content {
        flex: 0 0 50% !important;
        width: 50% !important;
        max-width: 50% !important;
        min-width: 0 !important;
        padding: 60px 80px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        background: #fff;
        position: relative;
        z-index: 2;
        overflow: hidden;
    }
        position: relative;
        z-index: 2;
    }
    .clc-title { font-size: 2.8rem !important; margin: 0 0 15px 0 !important; color: #3b5273 !important; font-weight: 800 !important; line-height: 1.1 !important; text-transform: none !important; }
    .clc-title a { text-decoration: none; color: #3b5273 !important; transition: color 0.3s; }
    .clc-title a:hover { color: #9cbfe4; }
    .cu-h2 { color: #3b5273 !important; }
    .clc-sub { font-size: 1.1rem !important; color: #9cbfe4 !important; text-transform: uppercase !important; letter-spacing: 2px !important; margin-bottom: 30px !important; font-weight: 700 !important; display: flex; align-items: center; gap: 15px; }
    .clc-sub::after { content: ''; height: 2px; width: 40px; background: #9cbfe4; }
    .clc-excerpt { font-size: 1.15rem; line-height: 1.8; color: #475569; margin-bottom: 40px; }
    .clc-btn { 
        align-self: flex-start; 
        padding: 14px 35px; 
        background: #3b5273; 
        color: #fff !important; 
        text-decoration: none !important; 
        font-weight: 700; 
        text-transform: uppercase; 
        font-size: 0.85rem;
        transition: all 0.25s ease;
        letter-spacing: 1px;
        border: 2px solid #3b5273;
    }
    .clc-btn:hover { background: #2c3e50; border-color: #2c3e50; transform: translateY(-2px); }
    .clc-meta { display: flex; gap: 40px; margin-top: 40px; padding-top: 35px; border-top: 1px solid #f1f5f9; color: #64748b; font-size: 0.9rem; margin-bottom: 40px; }
    .clc-meta div { display: flex; align-items: center; gap: 12px; }
    .clc-meta .dashicons { color: #9cbfe4; font-size: 22px; width: 22px; height: 22px; }
    .clc-meta span { line-height: 1.4; font-weight: 500; }
    .clc-image {
        flex: 0 0 50% !important;
        width: 50% !important;
        max-width: 50% !important;
        min-width: 0 !important;
        align-self: stretch !important;
        display: block !important;
        height: auto !important;
        background-size: cover !important;
        background-repeat: no-repeat !important;
        background-position: center center !important;
        min-height: 450px;
        position: relative;
    }
    .clc-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, rgba(59, 82, 115, 0.1), transparent); opacity: 0; transition: opacity 0.4s; }
    .coco-list-card:hover .clc-image::after { opacity: 1; }

    @media (max-width: 992px) {
        .coco-list-card { margin-bottom: 60px; flex-direction: column-reverse !important; min-height: auto; }
        .clc-content,
        .clc-image { flex: none !important; width: 100% !important; max-width: 100% !important; }
        .clc-image { height: 300px; }
        .clc-content { padding: 40px 30px; }
        .clc-title { font-size: 2.2rem !important; }
        .clc-meta { gap: 20px; flex-wrap: wrap; }
        .coco-list-card::before { font-size: 5rem; bottom: 10px; right: 10px; }
    }
    .cah-content {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 40px;
        width: 100%;
        position: relative;
        z-index: 2;
    }
    .cah-overlay { 
        background: transparent !important; 
        padding: 0 !important; 
        text-align: left !important; 
        color: #3b5273 !important; 
        border-radius: 0 !important; 
        max-width: 600px;
        backdrop-filter: none !important;
    }
    .cah-overlay h1 { 
        font-size: 4rem !important; 
        color: #3b5273 !important; 
        margin: 0 0 20px 0 !important; 
        font-weight: 800 !important;
        line-height: 1.1 !important;
    }
    .cah-overlay p {
        font-size: 1.2rem !important;
        color: #334155 !important;
        margin: 0 !important;
        line-height: 1.6 !important;
    }
    .coco-karriere-hero .cah-overlay {
        max-width: none !important;
    }
    .coco-karriere-hero .cah-overlay h1 {
        white-space: nowrap !important;
        font-size: clamp(1.6rem, 5.2vw, 4rem) !important;
    }
    .coco-home-page-wrap .coco-archive-hero .cah-overlay h1 {
        white-space: nowrap !important;
        font-size: clamp(1.6rem, 6vw, 4.5rem) !important;
    }
    .coco-hero-btns {
        display: flex;
        gap: 14px;
        margin-top: 30px;
        flex-wrap: wrap;
    }
    .coco-hero-btn {
        display: inline-block;
        padding: 14px 30px;
        background: #3b5273;
        color: #fff !important;
        border: 2px solid #3b5273;
        text-decoration: none !important;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 0.85rem;
        font-weight: 700;
        transition: all .25s ease;
    }
    .coco-hero-btn:hover {
        background: #2c3e50;
        border-color: #2c3e50;
        color: #fff !important;
        transform: translateY(-2px);
    }
    .coco-hero-btn--ghost {
        background: transparent;
        color: #3b5273 !important;
    }
    .coco-hero-btn--ghost:hover {
        background: #3b5273;
        color: #fff !important;
        border-color: #3b5273;
    }
    
    .coco-portfolio-nav { 
        background: transparent; 
        border-bottom: none; 
        position: relative; 
        z-index: 1; 
        padding: 20px 0; 
        box-shadow: none;
    }
    .coco-portfolio-nav .coco-container { 
        display: flex; 
        justify-content: center; 
        gap: 40px; 
    }
    .coco-portfolio-nav a { 
        text-decoration: none; 
        color: #3b5273 !important; 
        font-weight: 700 !important; 
        text-transform: uppercase !important; 
        font-size: 0.85rem !important; 
        letter-spacing: 1.5px !important;
        transition: color 0.3s !important;
        padding: 5px 0 !important;
        border-bottom: 2px solid transparent !important;
    }
    .coco-portfolio-nav a:hover { 
        color: #9cbfe4 !important; 
        border-bottom-color: #9cbfe4 !important;
    }

    .coco-portfolio-section { 
        margin-bottom: 100px; 
        background: #fff; 
        overflow: hidden; 
        box-shadow: 0 10px 25px rgba(0,0,0,0.05); 
    }
    .cps-flex { display: grid; grid-template-columns: 1fr 1fr; }
    .cps-image-side { min-height: 400px; position: relative; }
    .cps-main-img { 
        position: absolute; 
        top: 0; left: 0; width: 100%; height: 100%; 
        background-size: cover; 
        background-position: center; 
    }
    .cps-text-side { padding: 60px; }
    .cps-title { font-size: 2.5rem !important; color: #3b5273 !important; margin-bottom: 10px !important; }
    .cps-sub { font-size: 1.2rem !important; color: #9cbfe4 !important; text-transform: uppercase !important; margin-bottom: 25px !important; }
    
    .cps-gallery { 
        display: flex !important; 
        gap: 15px !important; 
        padding: 20px !important; 
        background: #f8fafc; 
        border-top: 1px solid #e2e8f0; 
        overflow-x: auto !important;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none;  /* IE/Edge */
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    .cps-gallery::-webkit-scrollbar { display: none; } /* Chrome/Safari */
    
    .cps-gal-item { 
        flex: 0 0 calc(33.333% - 10px);
        height: 250px; 
        overflow: hidden; 
        scroll-snap-align: start;
    }
    @media (max-width: 900px) { .cps-gal-item { flex: 0 0 calc(50% - 8px); } }
    @media (max-width: 600px) { .cps-gal-item { flex: 0 0 85%; } }
    
    .cps-gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
    .cps-gal-item:hover img { transform: scale(1.05); }
    /* UNTERNEHMEN SEITE FIXES */
    .coco-unternehmen-layout { background: #fff; }
    .coco-standorte-grid { 
        display: grid; 
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
        gap: 30px; 
        margin-top: 40px; 
    }
    .coco-standort-card { 
        background: #f8fafc; 
        padding: 30px; 
        border: 1px solid #e2e8f0; 
        transition: transform 0.3s;
    }
    .coco-standort-card:hover { transform: translateY(-5px); border-color: #9cbfe4; }
    .coco-standort-card h4 { color: #3b5273 !important; margin: 0 0 15px 0 !important; font-size: 1.2rem !important; border-bottom: 2px solid #9cbfe4; display: inline-block; padding-bottom: 5px; }
    .coco-standort-card p { font-size: 0.95rem; line-height: 1.5; color: #475569; margin: 0; }
    
    .coco-history-section { overflow: hidden; }
    .coco-history-timeline-wrap {
        position: relative;
        padding-top: 20px;
        padding-bottom: 10px;
    }
    .coco-history-line {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        width: 2px;
        background: #d6e0ed;
        transform: translateX(-50%);
        z-index: 1;
    }
    .coco-history-line-progress {
        display: block;
        width: 100%;
        height: 0;
        background: #9cbfe4;
        transition: height 0.15s linear;
    }
    .coco-history-item {
        position: relative;
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 110px;
        margin-bottom: 90px;
    }
    .coco-history-item.is-right .coco-history-media { order: 2; }
    .coco-history-item.is-right .coco-history-copy { order: 1; }
    .coco-history-dot {
        position: absolute;
        left: 50%;
        top: 50%;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        border: 3px solid #d6e0ed;
        background: #fff;
        transform: translate(-50%, -50%);
        z-index: 2;
        transition: all 0.25s ease;
    }
    .coco-history-item.is-active .coco-history-dot {
        border-color: #9cbfe4;
        background: #9cbfe4;
        box-shadow: 0 0 0 6px rgba(156, 191, 228, 0.18);
    }
    .coco-history-photo {
        width: 100%;
        max-height: 360px;
        object-fit: cover;
        box-shadow: var(--coco-shadow);
    }
    .coco-history-copy { z-index: 3; }
    .coco-history-period {
        display: inline-block;
        margin-bottom: 12px;
        padding: 8px 16px;
        background: #3b5273;
        color: #fff;
        font-size: 0.9rem;
        font-weight: 800;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .coco-standorte-section {
        background: #3b5273;
        color: #fff;
        padding: 100px 0;
        margin: 80px 0;
    }
    .coco-standorte-section h2, .coco-standorte-section h3 { color: #fff !important; }
    .coco-standorte-flex {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
    }
    .coco-map-img img { width: 100%; filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3)); }
    .coco-standorte-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .coco-standort-item h4 { 
        color: #9cbfe4 !important; 
        margin: 0 0 10px 0 !important; 
        font-size: 1.1rem !important; 
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    .coco-standort-item p { font-size: 0.9rem; line-height: 1.4; opacity: 0.9; }

    .coco-partner-flex { 
        display: flex; 
        justify-content: center; 
        gap: 40px; 
        flex-wrap: wrap; 
        margin-top: 40px; 
        align-items: center;
    }
    .coco-partner-flex img { max-height: 50px; transition: all 0.3s; }
    
    .cu-full-width-bg {
        width: 100% !important;
        position: relative !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        box-sizing: border-box !important;
    }

    @media (max-width: 992px) {
        .coco-standorte-flex { grid-template-columns: 1fr; gap: 40px; }
        .coco-history-line { display: none; }
        .coco-history-item {
            grid-template-columns: 1fr;
            gap: 18px;
            margin-bottom: 42px;
            border: none !important;
            padding: 0 !important;
        }
        .coco-history-item.is-right .coco-history-media,
        .coco-history-item.is-right .coco-history-copy {
            order: initial;
        }
        .coco-history-dot { display: none; }
        .coco-history-photo {
            max-height: 210px;
        }
        .coco-history-period {
            margin-bottom: 10px;
            font-size: 0.72rem;
            padding: 5px 10px;
        }
    }
    /* CONSISTENT RESPONSIVE TUNING (ALL SUBPAGES) */
    @media (max-width: 1200px) {
        .cah-content { padding: 0 30px; }
        .cah-overlay h1 { font-size: 3.2rem !important; }
        .cah-overlay p { font-size: 1.1rem !important; }
    }
    @media (max-width: 992px) {
        .coco-archive-hero {
            height: 100vh !important;
            min-height: 830px !important;
            padding-bottom: 12% !important;
            margin-top: 0 !important;
            margin-bottom: 56px !important;
            background-size: cover !important;
            background-position: center top !important;
            position: relative !important;
            overflow: hidden !important;
        }
        .coco-archive-hero::before {
            content: "" !important;
            position: absolute !important;
            inset: 0 !important;
            background: rgba(255,255,255,0.65) !important;
            z-index: 1 !important;
            pointer-events: none !important;
        }
        .cah-content { padding: 0 24px !important; }
        .cah-overlay { max-width: 100% !important; }
        .cah-overlay h1 { font-size: 2.6rem !important; margin-bottom: 14px !important; }
        .cah-overlay p { font-size: 1.05rem !important; line-height: 1.5 !important; }

        .coco-portfolio-nav .coco-container {
            justify-content: flex-start;
            gap: 18px;
            overflow-x: auto;
            flex-wrap: nowrap;
            padding: 0 20px;
        }
        .coco-portfolio-nav a { flex: 0 0 auto; }

        .cps-flex { grid-template-columns: 1fr !important; }
        .cps-image-side { min-height: 300px !important; }
        .cps-text-side { padding: 36px 28px !important; }
        .coco-portfolio-section { margin-bottom: 56px !important; }

        .cu-two-col,
        .cu-two-col.cu-reverse { flex-direction: column !important; gap: 30px !important; margin-bottom: 42px !important; }
        .cu-h2 { font-size: 2.1rem !important; }
        .cu-lead { margin-bottom: 30px !important; font-size: 1.08rem !important; line-height: 1.6 !important; }
        .cu-text { font-size: 1rem !important; line-height: 1.7 !important; }
        .cu-loc-grid { grid-template-columns: 1fr !important; gap: 14px !important; }
        .cu-logo-track { gap: 40px !important; }
    }
    @media (max-width: 600px) {
        .coco-archive-hero {
            height: 100vh !important;
            min-height: 830px !important;
            padding-bottom: 12% !important;
            margin-top: 0 !important;
            margin-bottom: 40px !important;
            background-size: cover !important;
            background-position: center top !important;
        }
        .coco-archive-hero::before {
            background: rgba(255,255,255,0.65) !important;
        }
        .cah-content { padding: 0 16px !important; }
        .cah-overlay { max-width: 92% !important; }
        .cah-overlay h1 { font-size: 2rem !important; margin-bottom: 10px !important; }
        .cah-overlay p { font-size: 1rem !important; }
        .coco-hero-btns { margin-top: 18px !important; gap: 10px !important; }
        .coco-hero-btn { padding: 12px 16px !important; font-size: 0.78rem !important; }

        .coco-main-container { padding: 0 14px !important; }
        .clc-content { padding: 28px 20px !important; }
        .clc-title { font-size: 1.7rem !important; }
        .clc-sub { font-size: 0.95rem !important; margin-bottom: 14px !important; }
        .clc-excerpt { font-size: 1rem !important; margin-bottom: 20px !important; }
        .clc-meta { flex-direction: column; gap: 10px; margin-top: 20px; padding-top: 18px; }
        .clc-image { height: 240px !important; min-height: 240px !important; }

        .cps-text-side { padding: 26px 20px !important; }
        .cps-title { font-size: 1.7rem !important; }
        .cps-sub { font-size: 0.95rem !important; margin-bottom: 12px !important; }
        .cps-text { font-size: 1rem !important; line-height: 1.65 !important; }

        .cu-section { padding: 56px 0 !important; }
        .cu-wrap { padding: 0 16px !important; }
        .cu-h2 { font-size: 1.8rem !important; }
        .cu-lead { font-size: 1rem !important; margin-bottom: 24px !important; }
        .cu-logo-track img { height: 34px !important; max-height: 34px !important; }
        .coco-standorte-section { padding: 60px 0 !important; margin: 50px 0 !important; }
        .coco-standorte-list { grid-template-columns: 1fr !important; }
    }
    

/* MODERN CI VARS (Updated from Brandbook) */
:root { 
    --coco-dark: #3b5273; 
    --coco-blue: #3b5273;
    --coco-light-blue: #9cbfe4; /* Hellblau aus Brandbook */
    --coco-accent: #e74c3c;
    --coco-bg: #f8fafc;
    --coco-white: #ffffff;
    --coco-text: #334155;
    --coco-text-light: #64748b;
    --coco-border: #e2e8f0;
    --coco-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

/* OVERRIDE BREAKDANCE GLOBALS & CI STYLES */
.coco-modern-layout { 
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
    color: var(--coco-text) !important;
    background: var(--coco-bg) !important;
    line-height: 1.6 !important;
}

.coco-modern-layout .coco-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; position: relative; }

/* HERO */
.coco-modern-layout .coco-hero { 
    height: 70vh; 
    min-height: 500px; 
    background-size: cover; 
    background-position: center bottom; 
    position: relative; 
    display: flex; 
    align-items: flex-end;
    color: #fff !important;
}
.coco-modern-layout .coco-hero-overlay { 
    width: 100%; 
    padding: 100px 0 60px; 
    background: linear-gradient(to top, rgba(59, 82, 115, 0.95) 0%, rgba(59, 82, 115, 0.4) 50%, transparent 100%); 
}

/* Specific Overrides for Breakdance Headings */
.coco-modern-layout .coco-title,
.coco-modern-layout h1.coco-title { 
    font-size: 3.5rem !important; 
    font-weight: 800 !important; 
    margin: 0 0 10px !important; 
    line-height: 1.1 !important; 
    color: var(--coco-white) !important;
    text-transform: none !important;
}

.coco-modern-layout .coco-subtitle,
.coco-modern-layout h2.coco-subtitle { 
    font-size: 1.5rem !important; 
    font-weight: 400 !important; 
    color: var(--coco-light-blue) !important; 
    margin: 0 !important; 
    text-transform: uppercase !important; 
    letter-spacing: 1px !important; 
}

.coco-modern-layout .coco-badge { 
    position: absolute; top: -40px; right: 20px; 
    background: var(--coco-accent) !important; 
    color: #fff !important; 
    padding: 10px 25px !important; 
    font-weight: 700 !important; 
    text-transform: uppercase !important; 
    letter-spacing: 1px !important;
    box-shadow: var(--coco-shadow) !important;
}

/* INFO BAR */
.coco-modern-layout .coco-info-bar { background: var(--coco-white) !important; padding: 30px 0; border-bottom: 1px solid var(--coco-border); box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05); }
.coco-modern-layout .coco-info-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.coco-modern-layout .coco-info-item { display: flex; align-items: center; gap: 15px; }
.coco-modern-layout .coco-info-item .dashicons { font-size: 24px; width: 24px; height: 24px; color: var(--coco-blue) !important; }
.coco-modern-layout .coco-info-item strong { display: block; font-size: 0.75rem; text-transform: uppercase; color: var(--coco-text-light) !important; letter-spacing: 0.5px; }
.coco-modern-layout .coco-info-item span { font-size: 1rem; font-weight: 600; color: var(--coco-dark) !important; }

/* MAIN CONTENT */
.coco-modern-layout .coco-main-section { padding: 80px 0; }
.coco-modern-layout .coco-content-flex { display: grid; grid-template-columns: 1fr 380px; gap: 60px; align-items: start; }
.coco-modern-layout .coco-section-label { 
    font-size: 0.85rem !important; text-transform: uppercase !important; letter-spacing: 2px !important; color: var(--coco-light-blue) !important; 
    margin-bottom: 20px !important; font-weight: 700 !important; display: block;
}
.coco-modern-layout .coco-section-label.center { text-align: center; margin-bottom: 40px; }
.coco-modern-layout .coco-description { font-size: 1.15rem !important; color: var(--coco-text) !important; margin-bottom: 50px; }

/* FEATURES */
.coco-modern-layout .coco-feature-list ul { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; padding: 0; list-style: none; }
.coco-modern-layout .coco-feature-list li { position: relative; padding-left: 30px; font-weight: 500; }
.coco-modern-layout .coco-feature-list li:before { 
    content: '\f147'; font-family: dashicons; position: absolute; left: 0; 
    color: var(--coco-blue) !important; font-size: 20px; 
}

/* SIDEBAR & CONTACT */
.coco-modern-layout .coco-sidebar { position: sticky; top: 100px; }
.coco-modern-layout .coco-contact-card { 
    background: var(--coco-white) !important; padding: 40px; 
    box-shadow: var(--coco-shadow); border: 1px solid var(--coco-border);
}
.coco-modern-layout .coco-contact-header { display: flex; align-items: center; gap: 20px; margin-bottom: 30px; }
.coco-modern-layout .coco-contact-avatar { width: 70px; height: 70px; border-radius: 50%; background-size: cover; background-position: center; border: 3px solid var(--coco-bg); }
.coco-modern-layout .coco-contact-name h4 { margin: 0 !important; font-size: 1.2rem !important; color: var(--coco-dark) !important; }
.coco-modern-layout .coco-contact-name span { font-size: 0.85rem !important; color: var(--coco-text-light) !important; }
.coco-modern-layout .coco-contact-intro { font-size: 1rem !important; margin-bottom: 25px !important; color: var(--coco-text) !important; }
.coco-modern-layout .coco-contact-links { margin-bottom: 30px; }
.coco-modern-layout .coco-contact-link { 
    display: flex; align-items: center; gap: 10px; color: var(--coco-blue) !important; 
    text-decoration: none !important; margin-bottom: 12px !important; font-weight: 600 !important; transition: color 0.2s;
}
.coco-modern-layout .coco-contact-link:hover { color: var(--coco-accent) !important; }
.coco-modern-layout .coco-cta-button { 
    display: block; width: 100%; padding: 16px; background: var(--coco-blue) !important; 
    color: #fff !important; text-align: center; border: 2px solid var(--coco-blue);
    font-weight: 700 !important; text-transform: uppercase !important; text-decoration: none !important;
    letter-spacing: 1px; transition: all 0.25s ease;
}
.coco-modern-layout .coco-cta-button:hover { background: #2c3e50 !important; border-color: #2c3e50; transform: translateY(-2px); }

/* GALLERY */
.coco-modern-layout .coco-gallery-section { padding: 80px 0; background: var(--coco-white) !important; }
.coco-modern-layout .coco-gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.coco-modern-layout .coco-gallery-item { overflow: hidden; height: 250px; }
.coco-modern-layout .coco-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.coco-modern-layout .coco-gallery-item:hover img { transform: scale(1.08); }
.coco-modern-layout .coco-gallery-item.item-0 { grid-column: span 2; grid-row: span 2; height: 520px; }

/* SLIDER SECTION */
.coco-modern-layout .coco-slider-section { padding: 80px 0; }
.coco-modern-layout .coco-slider-track { display: flex; gap: 20px; overflow-x: auto; padding: 20px 0; scrollbar-width: none; }
.coco-modern-layout .coco-slider-track::-webkit-scrollbar { display: none; }
.coco-modern-layout .coco-slider-item { flex: 0 0 400px; height: 280px; overflow: hidden; box-shadow: var(--coco-shadow); }
.coco-modern-layout .coco-slider-item img { width: 100%; height: 100%; object-fit: cover; }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .coco-modern-layout .coco-content-flex { grid-template-columns: 1fr; }
    .coco-modern-layout .coco-sidebar { position: static; }
    .coco-modern-layout .coco-info-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .coco-modern-layout .coco-title { font-size: 2.5rem !important; }
}
@media (max-width: 768px) {
    .coco-modern-layout .coco-hero { height: 50vh; }
    .coco-modern-layout .coco-info-grid { grid-template-columns: 1fr; }
    .coco-modern-layout .coco-gallery-grid { grid-template-columns: 1fr 1fr; }
    .coco-modern-layout .coco-gallery-item.item-0 { grid-column: span 2; height: 300px; }
    .coco-modern-layout .coco-feature-list ul { grid-template-columns: 1fr; }
    .coco-modern-layout .coco-slider-item { flex: 0 0 300px; }
}

/* ARCHIV LISTE (UPDATING FOR CI) */
.coco-home-grid { display:grid; grid-template-columns:repeat(auto-fit, minmax(300px, 1fr)); gap:30px; }
.coco-home-card { position:relative; height:400px; display:block; overflow:hidden; box-shadow:var(--coco-shadow); }
.ch-bg { position:absolute; top:0; left:0; width:100%; height:100%; background-size:cover; background-position:center; transition:transform 0.5s, opacity 0.5s; }
.ch-bg--dark { opacity:0; }
body.coco-new-images .coco-home-card.has-dark-bg .ch-bg--light { opacity:0; }
body.coco-new-images .coco-home-card.has-dark-bg .ch-bg--dark { opacity:1; }
body.coco-new-images .coco-port-card.has-dark-bg .ch-bg--light { opacity:0 !important; }
body.coco-new-images .coco-port-card.has-dark-bg .ch-bg--dark { opacity:1 !important; }
.coco-home-card:hover .ch-bg { transform:scale(1.05); }

    .coco-archive-hero { 
    width: 100% !important; 
    position: relative !important; 
    height: 100vh !important;
    min-height: 830px !important;
    background-size: cover !important; 
    background-position: center bottom !important; 
    display: flex !important; 
    align-items: center !important; 
    justify-content: flex-start !important; 
    padding-bottom: 12% !important;
    margin-bottom: 80px !important;
    margin-top: 0 !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
}
.cah-overlay { background:transparent; padding:0; text-align:left; color:#3b5273; border-radius:0; backdrop-filter: none; }
.cah-overlay h1 { margin:0 0 10px 0; font-size:3.5rem; color:#fff; font-weight:800; }
.cah-overlay p { font-size: 1.2rem; color: var(--coco-light-blue); margin: 0; }

/* PORTFOLIO NAV (ANKER) */
.coco-portfolio-nav { background: transparent; border-bottom: none; position: relative; z-index: 1; padding: 15px 0; box-shadow: none; }
.coco-portfolio-nav .coco-container { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; }
.coco-portfolio-nav a { text-decoration: none; color: var(--coco-dark); font-weight: 700; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 1px; transition: color 0.3s; }
.coco-portfolio-nav a:hover { color: var(--coco-light-blue); }

/* PORTFOLIO HOME GRID */
.coco-portfolio-home-grid { display:grid !important; width:100% !important; max-width:100% !important; box-sizing:border-box; margin:40px 0 !important; gap:25px; grid-template-columns:repeat(4, minmax(0, 1fr)) !important; align-items:stretch; }
.bde-shortcode > .coco-portfolio-home-grid { width:100% !important; max-width:100% !important; }
.coco-portfolio-home-grid > * { min-width:0; }
@media (max-width: 1200px) { .coco-portfolio-home-grid { grid-template-columns:repeat(3, minmax(0, 1fr)) !important; } }
@media (max-width: 900px) { .coco-portfolio-home-grid { grid-template-columns:repeat(2, minmax(0, 1fr)) !important; } }
@media (max-width: 560px) { .coco-portfolio-home-grid { grid-template-columns:1fr !important; } }
.coco-port-card { position: relative; height: 450px; overflow: hidden; box-shadow: var(--coco-shadow); background: var(--coco-dark); display: block; width: 100%; text-decoration: none !important; }
.cp-image { width: 100%; height: 100%; background-size: cover; background-position: center; transition: transform 0.6s, opacity 0.4s; }

/* PORTFOLIO ARCHIVE */
.coco-portfolio-section { margin-bottom: 100px; background: #fff; overflow: hidden; box-shadow: var(--coco-shadow); }
.coco-portfolio-section:nth-child(even) .cps-flex { direction: rtl; }
.coco-portfolio-section:nth-child(even) .cps-text-side { direction: ltr; }
.cps-flex { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.cps-image-side { position: relative; min-height: 400px; }
.cps-main-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; border-left: 8px solid var(--coco-dark); }
.cps-text-side { padding: 60px; display: flex; flex-direction: column; justify-content: center; }
.cps-title { font-size: 2.5rem !important; color: var(--coco-dark) !important; margin-bottom: 10px !important; font-weight: 800 !important; }
.cps-sub { font-size: 1.2rem !important; color: var(--coco-light-blue) !important; text-transform: uppercase !important; letter-spacing: 1px !important; margin-bottom: 25px !important; font-weight: 600 !important; }
.cps-text { font-size: 1.1rem; line-height: 1.7; color: var(--coco-text); }
.cps-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding: 10px; background: var(--coco-bg); border-top: 1px solid var(--coco-border); }
.cps-gal-item { height: 200px; overflow: hidden; }
.cps-gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.cps-gal-item:hover img { transform: scale(1.05); }

    @media (max-width: 992px) {
        .cps-flex { grid-template-columns: 1fr; }
        .cps-image-side { height: 300px; order: 1; }
        .cps-text-side { order: 2; padding: 40px 30px; }
        .cps-title { font-size: 2rem !important; }
    }

    /* UNTERNEHMEN PAGE */
    .cu-section { padding: 80px 0; }
        .cu-wrap { max-width: 1200px; margin: 0 auto; padding: 0 20px; box-sizing: border-box !important; }
    .cu-narrow { max-width: 900px; }
    .cu-text-center { text-align: center !important; }
    .cu-h2 { font-size: 2.5rem; font-weight: 800; color: #3b5273; margin: 0 0 20px; line-height: 1.2; }
    .cu-lead { font-size: 1.2rem; color: #3b5273; font-weight: 500; line-height: 1.7; max-width: 900px; margin: 0 auto 50px; }
    .cu-text { font-size: 1.1rem; color: #475569; line-height: 1.8; }
    .cu-full-img { width: 100%; height: auto; display: block; margin-bottom: 40px; }
    /* UNTERNEHMEN EDITORIAL V3 LAYOUT */
    .cu-section-intro-v3 {
        background: #fff;
        padding: 120px 0;
        overflow: hidden;
    }
    .cu-v3-grid {
        display: grid;
        grid-template-columns: 1.1fr 0.9fr;
        gap: 100px;
        align-items: flex-start;
    }
    .cu-v3-content { min-width: 0; }
    .cu-v3-media-col {
        display: flex;
        flex-direction: column;
        gap: 24px;
        min-width: 0;
    }
    .cu-v3-kicker {
        display: block;
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 3px;
        color: #9cbfe4;
        font-weight: 700;
        margin-bottom: 25px;
    }
    .cu-v3-title {
        font-size: 4rem;
        font-weight: 900;
        color: #3b5273;
        line-height: 1;
        margin: 0 0 40px 0;
    }
    .cu-v3-lead {
        font-size: 1.4rem;
        line-height: 1.6;
        color: #1e293b;
        font-weight: 600;
        margin-bottom: 35px;
        position: relative;
        padding-left: 30px;
        border-left: 4px solid #9cbfe4;
    }
    .cu-v3-text {
        font-size: 1.1rem;
        line-height: 1.9;
        color: #475569;
        margin-bottom: 60px;
    }
    .cu-v3-stats {
        display: flex;
        gap: 60px;
        padding-top: 50px;
        border-top: 1px solid #e2e8f0;
    }
    .cu-v3-stat strong {
        display: block;
        font-size: 2.8rem;
        font-weight: 300;
        color: #3b5273;
        line-height: 1;
        margin-bottom: 10px;
    }
    .cu-v3-stat span {
        display: block;
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        color: #94a3b8;
        font-weight: 700;
    }
    .cu-v3-media { position: relative; }
    .cu-v3-media-col .cu-v3-stats {
        margin-top: 0;
        padding-top: 24px;
    }
    .cu-v3-img {
        width: 100%;
        height: 750px;
        object-fit: cover;
        box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    }

    @media (max-width: 1200px) {
        .cu-v3-grid { gap: 60px; }
        .cu-v3-title { font-size: 3rem; }
        .cu-v3-img { height: 600px; }
    }

    @media (max-width: 992px) {
        .cu-v3-grid {
            grid-template-columns: 1fr;
            gap: 60px;
        }
        .cu-v3-media-col { display: contents; }
        .cu-v3-stats { order: 2; }
        .cu-v3-media { order: 3; }
        .cu-v3-img { height: 450px; }
        .cu-v3-stats { gap: 40px; }
    }

    @media (max-width: 600px) {
        .cu-section-intro-v3 { padding: 80px 0; }
        .cu-v3-title { font-size: 2.5rem; }
        .cu-v3-lead { font-size: 1.2rem; padding-left: 20px; }
        .cu-v3-stats { flex-direction: column; gap: 35px; }
        .cu-v3-stat strong { font-size: 2.4rem; }
    }
    .cu-kicker { display: inline-block; font-size: .78rem; text-transform: uppercase; letter-spacing: 1.6px; font-weight: 700; color: #9cbfe4; margin-bottom: 14px; }
    .cu-lead-left { text-align: left; margin: 0 0 18px !important; max-width: none; }
    .cu-facts { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px; margin: 28px 0; }
    .cu-fact { background: #f8fafc; border: 1px solid #e2e8f0; padding: 12px 10px; text-align: center; }
    .cu-fact strong { display: block; color: #3b5273; font-size: 1.2rem; line-height: 1.1; }
    .cu-fact span { display: block; color: #64748b; font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .7px; margin-top: 6px; }
    .cu-intro-btn { display: inline-block; padding: 13px 26px; background: #3b5273; color: #fff !important; border: 2px solid #3b5273; text-decoration: none !important; text-transform: uppercase; letter-spacing: 1px; font-size: .82rem; font-weight: 700; transition: all .25s ease; }
    .cu-intro-btn:hover { background: #2c3e50; border-color: #2c3e50; transform: translateY(-2px); }
    .cu-intro-media { position: relative; }
    .cu-two-col { display: flex; gap: 60px; align-items: center; margin-bottom: 60px; }
    .cu-two-col.cu-reverse { flex-direction: row-reverse; }
    .cu-col { flex: 1; min-width: 0; }
    .cu-col-text { display: flex; align-items: center; }
    .cu-dark-section { background: #3b5273; padding: 80px 0; color: #fff; }
    .cu-dark-section .cu-h2,
    .cu-dark-section h2 { color: #fff !important; }
    .cu-dark-section p { color: #cbd5e1 !important; }
    .cu-map-col { position: relative; }
    .cu-map-wrap {
        width: 100%;
        max-width: 430px;
        margin: 0 auto;
        aspect-ratio: 3 / 4;
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        position: relative;
        filter: drop-shadow(0 12px 30px rgba(0,0,0,0.30));
    }
    .cu-map-pin {
        position: absolute;
        transform: translate(-50%, -100%);
        background: transparent;
        border: 0;
        padding: 0;
        cursor: pointer;
        z-index: 10;
    }
    .cu-map-pin:hover { z-index: 100; }
    .cu-pin-dot {
        width: 24px;
        height: 24px;
        border-radius: 50% 50% 50% 0;
        background: #5f789f;
        transform: rotate(-45deg);
        position: relative;
        box-shadow: 0 5px 12px rgba(0,0,0,0.3);
        border: 2px solid rgba(255,255,255,0.2);
        display: block;
    }
    .cu-pin-dot::after {
        content: "";
        position: absolute;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #fff;
        top: 6px;
        left: 6px;
    }
    .cu-pin-tooltip {
        position: absolute;
        left: 50%;
        bottom: calc(100% + 14px);
        transform: translateX(-50%) translateY(8px) scale(.98);
        background: rgba(255,255,255,0.98);
        color: #3b5273;
        border: 1px solid rgba(59, 82, 115, 0.14);
        padding: 0;
        min-width: 320px;
        max-width: 400px;
        display: flex;
        overflow: hidden;
        box-shadow: 0 16px 32px rgba(7, 17, 36, 0.28);
        backdrop-filter: blur(6px);
        opacity: 0;
        pointer-events: none;
        transition: opacity .22s ease, transform .22s ease;
        z-index: 99;
    }
    .cu-pin-img {
        width: 120px;
        height: 120px;
        object-fit: cover;
        flex-shrink: 0;
    }
    .cu-pin-content {
        padding: 15px 18px;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: left;
    }
    .cu-pin-tooltip strong {
        display: block;
        margin-bottom: 4px;
        font-size: 1rem;
        font-weight: 800;
        text-transform: uppercase;
        color: #3b5273;
    }
    .cu-pin-tooltip span {
        font-size: 0.85rem;
        color: #475569;
        line-height: 1.4;
    }
    .cu-pin-tooltip::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: -7px;
        width: 12px;
        height: 12px;
        transform: translateX(-50%) rotate(45deg);
        background: #fff;
        border-right: 1px solid rgba(59, 82, 115, 0.14);
        border-bottom: 1px solid rgba(59, 82, 115, 0.14);
    }
    .cu-map-pin:hover .cu-pin-tooltip,
    .cu-map-pin:focus-visible .cu-pin-tooltip,
    .cu-map-pin:focus .cu-pin-tooltip {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
    }
    .cu-loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 10px; }
    .cu-logo-slider {
        overflow: hidden;
        margin-top: 40px;
        position: relative;
    }
    .cu-logo-slider::before,
    .cu-logo-slider::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: 56px;
        z-index: 3;
        pointer-events: none;
    }
    .cu-logo-slider::before {
        left: 0;
        background: linear-gradient(to right, #fff 0%, rgba(255, 255, 255, 0) 100%);
    }
    .cu-logo-slider::after {
        right: 0;
        background: linear-gradient(to left, #fff 0%, rgba(255, 255, 255, 0) 100%);
    }
    .cu-logo-track { display: flex; align-items: center; gap: 0; animation: cu-scroll 35s linear infinite; width: max-content; }
    .cu-logo-slider:hover .cu-logo-track { animation-play-state: paused; }
    .cu-logo-track .cu-partner-logo {
        height: 100px;
        width: auto;
        max-width: 250px;
        object-fit: contain;
        object-position: center;
        filter: grayscale(100%);
        opacity: 0.7;
        transition: all 0.3s;
        flex-shrink: 0;
        margin: 0 40px;
    }
    .cu-logo-track .cu-partner-logo:hover { filter: none; opacity: 1; }
    @keyframes cu-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
    @media (max-width: 1024px) {
        .cu-dark-section .cu-wrap { flex-direction: column !important; }
        .cu-col-text { width: 100% !important; margin-bottom: 40px; }
        .cu-map-col { width: 100% !important; display: flex !important; justify-content: center !important; }
        .cu-map-wrap { 
            display: block !important; 
            visibility: visible !important; 
            opacity: 1 !important; 
            max-width: 430px !important; 
            width: 100% !important;
            margin: 0 auto !important;
        }
    }
    @media (max-width: 768px) {
        .cu-intro-grid { grid-template-columns: 1fr; gap: 24px; }
        .cu-intro-grid { grid-template-columns: 1fr; gap: 50px; }
        .cu-intro-copy { padding: 28px 22px; }
        .cu-facts { grid-template-columns: 1fr; gap: 10px; margin: 22px 0; }
        .cu-intro-media::before { left: -8px; bottom: -8px; width: 70%; height: 70%; }
        .cu-intro-img { min-height: 260px; }
        .cu-intro-btn { width: 100%; text-align: center; }
        .cu-dark-section.cu-full-width-bg { display: block !important; visibility: visible !important; opacity: 1 !important; height: auto !important; min-height: 300px !important; }
        .cu-map-wrap { max-width: 100% !important; width: 100% !important; aspect-ratio: 3/4 !important; background-size: contain !important; margin-bottom: 30px !important; display: block !important; visibility: visible !important; opacity: 1 !important; min-height: 450px !important; transform: none !important; transform-origin: center center; }
        .cu-pin-dot { width: 16px; height: 16px; }
        .cu-pin-dot::after { width: 5px; height: 5px; top: 4px; left: 4px; }
        .cu-map-pin:active .cu-pin-tooltip,
        .cu-map-pin:focus .cu-pin-tooltip {
            opacity: 1 !important;
            transform: translateX(-50%) translateY(0) scale(1) !important;
            display: flex !important;
            pointer-events: auto !important;
        }
        .cu-pin-tooltip { min-width: 260px; max-width: 280px; }
        .cu-pin-img { width: 80px; height: 80px; }
        .cu-two-col, .cu-two-col.cu-reverse { flex-direction: column !important; gap: 30px !important; display: flex !important; }
        .cu-h2 { font-size: 2rem; }
        .cu-loc-grid { grid-template-columns: 1fr; }
        .cu-logo-slider::before,
        .cu-logo-slider::after { width: 28px; }
        .cu-logo-track { gap: -30px !important; }
        .cu-logo-track .cu-partner-logo {
            width: 280px !important;
            height: 120px !important;
            max-width: 280px !important;
            max-height: 120px !important;
            min-width: 280px !important;
            min-height: 120px !important;
            margin: 0 -30px !important;
        }
        .cu-logos img { height: 40px; }
        .cu-logos { gap: 30px; }
    }
    
            .coco-portfolio-home-grid.coco-phg,
            .coco-home-grid.coco-hg {
                display:grid !important;
                width:100% !important;
                max-width:100% !important;
                margin:40px 0 !important;
                gap:25px !important;
                grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
                align-items:stretch !important;
                box-sizing:border-box !important;
            }
            .coco-portfolio-home-grid.coco-phg { grid-template-columns:repeat(2, minmax(0, 1fr)) !important; }
            .coco-home-grid.coco-hg { grid-template-columns:repeat(3, minmax(0, 1fr)) !important; }

            .coco-portfolio-home-grid.coco-phg > *,
            .coco-home-grid.coco-hg > * { min-width:0; }

            .coco-port-card,
            .coco-home-card {
                position:relative !important;
                display:block !important;
                width:100% !important;
                height:clamp(320px, 36vw, 450px) !important;
                overflow:hidden !important;
                text-decoration:none !important;
                background:#3b5273 !important;
                box-shadow:0 10px 25px rgba(0,0,0,0.12) !important;
            }
            .coco-home-card.no-link { cursor:default !important; }
            .coco-port-card { height: clamp(260px, 28vw, 340px) !important; }
            .coco-home-card { height: 400px !important; }

            .cp-image,
            .ch-bg {
                position:absolute !important;
                inset:0 !important;
                background-size:cover !important;
                background-position:center !important;
                transition:transform .6s ease, opacity .4s ease !important;
            }
            .cp-content,
            .ch-overlay {
                position:absolute !important;
                inset:0 !important;
                display:flex !important;
                flex-direction:column !important;
                justify-content:flex-end !important;
                padding:30px !important;
                background:linear-gradient(to top, rgba(59, 82, 115, 0.9) 0%, rgba(59, 82, 115, 0.4) 30%, transparent 60%) !important;
                color:#fff !important;
                z-index:2 !important;
                box-sizing: border-box !important;
            }
            .cp-content h3,
            .ch-overlay h3 {
                position: absolute !important;
                bottom: 30px !important;
                left: 30px !important;
                right: 30px !important;
                margin: 0 !important;
                font-size:1.35rem !important;
                line-height:1.2 !important;
                color:#fff !important;
                text-transform:uppercase !important;
                letter-spacing:1px !important;
                font-weight: 700 !important;
                text-shadow: 0 2px 4px rgba(0,0,0,0.5) !important;
                transition: transform 0.4s cubic-bezier(0.2, 1, 0.3, 1) !important;
                transform: translateY(0) !important;
                z-index: 10 !important;
            }
            .coco-port-card:hover h3,
            .coco-home-card:hover h3,
            .coco-port-card.is-touch-active h3,
            .coco-home-card.is-touch-active h3 {
                transform: translateY(-140px) !important;
            }
            .cp-hover-desc,
            .ch-overlay p {
                position: absolute !important;
                left: 30px !important;
                right: 30px !important;
                bottom: 85px !important;
                margin: 0 !important;
                color:#cbd9e8 !important;
                font-size:.95rem !important;
                line-height:1.45 !important;
                opacity: 0 !important;
                transform: translateY(20px) !important;
                transition: all 0.4s ease !important;
                display: -webkit-box !important;
                -webkit-line-clamp: 3 !important;
                -webkit-box-orient: vertical !important;
                overflow: hidden !important;
                z-index: 11 !important;
            }
            .cp-btn,
            .ch-btn {
                position: absolute !important;
                left: 50% !important;
                transform: translateX(-50%) translateY(20px) !important;
                bottom: 30px !important;
                margin: 0 !important;
                display:inline-block !important;
                padding:10px 28px !important;
                white-space: nowrap !important;
                border:1px solid #fff !important;
                color:#fff !important;
                font-size:.78rem !important;
                font-weight:700 !important;
                letter-spacing:1px !important;
                opacity: 0 !important;
                transform: translateX(-50%) translateY(20px) !important;
                transition: all 0.4s ease 0.1s !important;
                z-index: 12 !important;
            }
            .coco-port-card:hover .cp-image,
            .coco-home-card:hover .ch-bg,
            .coco-port-card.is-touch-active .cp-image,
            .coco-home-card.is-touch-active .ch-bg { transform:scale(1.1) !important; opacity:.4 !important; }
            body.coco-new-images .coco-home-card.has-dark-bg:hover .ch-bg--light,
            body.coco-new-images .coco-home-card.has-dark-bg.is-touch-active .ch-bg--light { opacity:0 !important; }
            body.coco-new-images .coco-home-card.has-dark-bg:hover .ch-bg--dark,
            body.coco-new-images .coco-home-card.has-dark-bg.is-touch-active .ch-bg--dark { opacity:.4 !important; }
            body.coco-new-images .coco-port-card.has-dark-bg:hover .ch-bg--light,
            body.coco-new-images .coco-port-card.has-dark-bg.is-touch-active .ch-bg--light { opacity:0 !important; }
            body.coco-new-images .coco-port-card.has-dark-bg:hover .ch-bg--dark,
            body.coco-new-images .coco-port-card.has-dark-bg.is-touch-active .ch-bg--dark { opacity:.4 !important; }

            .coco-port-card:hover .cp-content,
            .coco-home-card:hover .ch-overlay,
            .coco-port-card.is-touch-active .cp-content,
            .coco-home-card.is-touch-active .ch-overlay { background: linear-gradient(to top, rgba(59, 82, 115, 0.95) 0%, rgba(59, 82, 115, 0.6) 50%, rgba(59, 82, 115, 0.2) 100%) !important; }

            .coco-port-card:hover .cp-hover-desc,
            .coco-home-card:hover .ch-overlay p,
            .coco-port-card.is-touch-active .cp-hover-desc,
            .coco-home-card.is-touch-active .ch-overlay p {
                opacity: 1 !important;
                transform: translateY(0) !important;
            }
            .coco-port-card:hover .cp-btn,
            .coco-home-card:hover .ch-btn,
            .coco-port-card.is-touch-active .cp-btn,
            .coco-home-card.is-touch-active .ch-btn {
                opacity: 1 !important;
                transform: translateX(-50%) translateY(0) !important;
            }

            @media (max-width: 1100px){
                .coco-portfolio-home-grid.coco-phg,
                .coco-home-grid.coco-hg { grid-template-columns:repeat(2, minmax(0, 1fr)) !important; }
            }
            @media (max-width: 640px){
                .coco-portfolio-home-grid.coco-phg,
                .coco-home-grid.coco-hg { grid-template-columns:1fr !important; }
            }

        

    /* KONTAKT PAGE */
    .ck-section { padding: 80px 0; font-family: 'Maven Pro', sans-serif !important; }
    .ck-section * { font-family: 'Maven Pro', sans-serif !important; }
        .ck-wrap { max-width: 1200px; margin: 0 auto; padding: 0 20px; box-sizing: border-box !important; }
    .ck-text-center { text-align: center; }

    .ck-h2 {
        font-size: 2.5rem !important; font-weight: 800 !important;
        color: #3b5273 !important; margin: 0 0 25px !important;
        line-height: 1.2 !important;
    }
    .ck-lead {
        font-size: 1.15rem; color: #475569; font-weight: 400;
        line-height: 1.8; max-width: 800px; margin: 0 auto;
    }

    .ck-contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; align-items: stretch !important; }

    /* FORM BOX */
    .ck-form-box {
        background: #fff; border: 1px solid #e2e8f0; padding: 50px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.04);
        height: 100% !important;
        display: flex !important; flex-direction: column !important;
    }
    .ck-form { flex: 1 !important; display: flex !important; flex-direction: column !important; }
    .ck-field:has(textarea) { flex: 1 !important; display: flex !important; flex-direction: column !important; }
    .ck-field:has(textarea) textarea { flex: 1 !important; }
    
    .ck-form-title {
        font-size: 1.5rem !important; font-weight: 700 !important;
        color: #3b5273 !important; margin: 0 0 10px !important;
    }
    .ck-form-subtitle {
        font-size: 0.95rem; color: #9cbfe4; font-weight: 500;
        margin: 0 0 30px; padding-bottom: 25px;
        border-bottom: 2px solid #f1f5f9;
    }
    .ck-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
    .ck-field { margin-bottom: 22px; }
    .ck-field label {
        display: block; font-size: 0.8rem; font-weight: 700;
        color: #3b5273 !important; margin-bottom: 8px;
        text-transform: uppercase; letter-spacing: 0.8px;
    }
    .ck-field input,
    .ck-field textarea {
        width: 100%; padding: 14px 18px;
        border: 2px solid #e2e8f0; background: #f8fafc;
        font-size: 1rem; color: #3b5273;
        transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
        outline: none; font-family: 'Maven Pro', sans-serif !important;
    }
    .ck-field input:focus,
    .ck-field textarea:focus {
        border-color: #3b5273; background: #fff;
        box-shadow: 0 0 0 3px rgba(59, 82, 115, 0.08);
    }
    .ck-field textarea { resize: vertical; min-height: 150px; }
    .ck-checkbox { margin-bottom: 30px !important; }
    .ck-checkbox,
    .ck-checkbox * { display: initial !important; }
    .ck-checkbox label {
        display: flex !important; gap: 12px !important; align-items: flex-start !important;
        font-size: 0.88rem !important; font-weight: 400 !important;
        text-transform: none !important; letter-spacing: 0 !important;
        color: #475569 !important; line-height: 1.6 !important; cursor: pointer !important;
        margin-bottom: 0 !important; width: 100% !important;
    }
    .ck-checkbox label span {
        display: inline !important; flex: 1 !important;
    }
    .ck-checkbox input[type="checkbox"] {
        display: inline-block !important;
        margin-top: 4px !important; width: 18px !important; height: 18px !important;
        min-width: 18px !important; accent-color: #3b5273; flex-shrink: 0 !important;
        appearance: checkbox !important; -webkit-appearance: checkbox !important;
    }
    .ck-checkbox a { color: #3b5273 !important; text-decoration: underline !important; font-weight: 600 !important; }
    .ck-checkbox a:hover { color: #9cbfe4 !important; }

    .ck-submit {
        display: inline-block; padding: 18px 50px;
        background: #3b5273; color: #fff;
        border: none; cursor: pointer;
        font-size: 0.95rem; font-weight: 700;
        text-transform: uppercase; letter-spacing: 1.5px;
        transition: all 0.3s;
        font-family: 'Maven Pro', sans-serif !important;
        margin-top: 20px !important;
    }
    .ck-submit:hover {
        background: #2c3e50; transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(59, 82, 115, 0.3);
    }

    /* SUCCESS / ERROR MESSAGES */
    .ck-msg { padding: 18px 22px; margin-bottom: 25px; font-size: 0.95rem; font-weight: 600; }
    .ck-msg-success { background: #ecfdf5; color: #065f46; border-left: 4px solid #10b981; }
    .ck-msg-error { background: #fef2f2; color: #991b1b; border-left: 4px solid #ef4444; }

    /* INFO SIDE */
    .ck-info-side { display: flex; flex-direction: column; gap: 20px; height: 100% !important; }
    .ck-info-card {
        background: #f8fafc; border: 1px solid #e2e8f0;
        padding: 30px 28px; transition: all 0.3s;
        position: relative;
    }
    .ck-info-card:last-child { flex: 1 !important; display: flex !important; flex-direction: column !important; justify-content: center !important; }
    .ck-info-card:hover {
        border-color: #9cbfe4; transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.07);
    }
    .ck-info-icon {
        width: 48px; height: 48px; background: #3b5273;
        display: flex; align-items: center; justify-content: center;
        margin-bottom: 16px; color: #fff;
    }
    .ck-info-card h4 {
        font-size: 1.1rem !important; font-weight: 700 !important;
        color: #3b5273 !important; margin: 0 0 10px !important;
    }
    .ck-info-card p {
        font-size: 0.95rem; color: #475569;
        line-height: 1.6; margin: 0 0 5px;
    }
    .ck-section .ck-info-card a,
    .ck-section .ck-info-card a:link,
    .ck-section .ck-info-card a:visited {
        color: #1e293b !important;
        text-decoration: none !important;
        font-weight: 600;
        font-size: 1rem;
        transition: color 0.3s;
    }
    .ck-section .ck-info-card a:hover,
    .ck-section .ck-info-card a:focus,
    .ck-section .ck-info-card a:active {
        color: #3b5273 !important;
    }

    .ck-info-card-dark {
        background: #3b5273; border-color: #3b5273;
    }
    .ck-info-card-dark h4 { color: #fff !important; }
    .ck-info-card-dark p { color: #cbd5e1; }
    .ck-info-card-dark strong { color: #fff; }
    .ck-section .ck-info-card-dark a,
    .ck-section .ck-info-card-dark a:link,
    .ck-section .ck-info-card-dark a:visited {
        color: #fff !important;
    }
    .ck-section .ck-info-card-dark a:hover,
    .ck-section .ck-info-card-dark a:focus,
    .ck-section .ck-info-card-dark a:active {
        color: #dbeafe !important;
    }
    .ck-info-card-dark:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(59, 82, 115, 0.4);
    }

    .ck-press-inner { display: flex; align-items: center; gap: 25px; }
    .ck-press-text { flex: 1; min-width: 0; }
    .ck-press-avatar {
        width: 140px; height: 140px;
        border-radius: 50%; object-fit: cover;
        border: 3px solid rgba(255,255,255,0.2);
        flex-shrink: 0;
    }

    /* MAP */
    .ck-map-section { background: #fff; padding-bottom: 0; }
    .ck-map-section .ck-h2 { margin-bottom: 10px !important; }
    .ck-map-lead { font-size: 1rem; color: #64748b; margin: 0 auto 40px; }
    .ck-map-container { overflow: hidden; line-height: 0; }
    .ck-map-container iframe { width: 100%; height: 480px; border: none; display: block; }

    /* RESPONSIVE */
    @media (max-width: 992px) {
        .ck-section { padding: 64px 0; }
        .ck-h2 { font-size: 2.2rem !important; }
        .ck-lead { font-size: 1.05rem; line-height: 1.7; }
        .ck-contact-grid { grid-template-columns: 1fr; gap: 40px; }
        .ck-form-box { padding: 40px 30px; }
        .ck-info-card { padding: 24px 22px; }
        .ck-info-side { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
        .ck-map-container iframe { height: 380px; }
    }
    @media (max-width: 600px) {
        .ck-section { padding: 40px 0; }
        .ck-wrap { padding: 0 !important; width: 100% !important; max-width: 100% !important; }
        .ck-form-row { grid-template-columns: 1fr; gap: 0; }
        .ck-form-box { 
            padding: 35px 20px !important; 
            border-radius: 0; 
            border-left: none; 
            border-right: none; 
            width: 100% !important; 
            box-sizing: border-box !important; 
            margin: 0 !important; 
            box-shadow: none;
        }

        .ck-field { margin-bottom: 20px; }
        .ck-field input, .ck-field textarea { 
            padding: 15px; 
            font-size: 16px; 
            width: 100% !important; 
            box-sizing: border-box !important; 
            border-radius: 0;
        }
        .ck-h2 { font-size: 1.8rem !important; margin-bottom: 15px !important; padding: 0 20px; }
        .ck-lead { font-size: 1rem; line-height: 1.6; margin-bottom: 35px; padding: 0 20px; }
        .ck-form-title { font-size: 1.4rem !important; }
        .ck-form-subtitle { margin: 0 0 20px; padding-bottom: 20px; font-size: 0.9rem; }
        
        .ck-info-side { grid-template-columns: 1fr; gap: 15px; width: 100% !important; padding: 0 20px; box-sizing: border-box; }
        .ck-info-card { padding: 25px 20px; width: 100% !important; box-sizing: border-box !important; }
        .ck-press-inner { flex-direction: column; text-align: center; gap: 20px; }
        .ck-press-avatar { width: 120px; height: 120px; }
        
        .ck-map-container iframe { height: 300px; }
        .ck-submit { 
            width: 100%; 
            text-align: center; 
            padding: 18px; 
            margin-top: 15px !important; 
        }
        .ck-checkbox { margin-top: 10px; }
        .ck-checkbox label { font-size: 0.85rem !important; line-height: 1.5 !important; }
    }
    

    /* KARRIERE PAGE */
    .ka-section { padding: 80px 0; font-family: 'Maven Pro', sans-serif !important; }
    .ka-section * { font-family: 'Maven Pro', sans-serif !important; }
        .ka-wrap { max-width: 1200px; margin: 0 auto; padding: 0 20px; box-sizing: border-box !important; }
    .ka-text-center { text-align: center; }

    .ka-h2 {
        font-size: 2.5rem !important; font-weight: 800 !important;
        color: #3b5273 !important; margin: 0 0 25px !important;
        line-height: 1.2 !important;
    }
    .ka-lead {
        font-size: 1.15rem; color: #475569; font-weight: 400;
        line-height: 1.8; max-width: 800px; margin: 0 auto;
    }

    /* BANNER IMAGE */
    .ka-banner-img {
        width: 100%; height: 580px;
        background-size: cover; background-position: center 35%;
    }

    /* HIGHLIGHT */
    .ka-highlight-section { background: #f8fafc; }
    .ka-highlight-text {
        font-size: 1.25rem; color: #3b5273; font-weight: 500;
        line-height: 1.8; max-width: 900px; margin: 0 auto 40px;
    }
    .ka-cta-btn {
        display: inline-block; padding: 18px 50px;
        background: #3b5273; color: #fff !important;
        text-decoration: none !important;
        font-size: 0.95rem; font-weight: 700;
        text-transform: uppercase; letter-spacing: 1.5px;
        transition: all 0.3s;
    }
    .ka-cta-btn:hover {
        background: #2c3e50; transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(59, 82, 115, 0.3);
    }

    /* BENEFITS */
    .ka-benefits-section { background: #fff; }
    .ka-benefits-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 26px;
        margin-top: 50px;
    }
    .ka-benefit-card {
        background: #fff;
        border: 1px solid #d9e3ef;
        border-radius: 18px;
        padding: 34px;
        transition: all 0.3s;
        box-shadow: 0 10px 26px rgba(15, 35, 64, 0.07);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        min-height: 100%;
        position: relative;
        overflow: hidden;
    }
    .ka-benefit-card::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        height: 5px;
        background: linear-gradient(90deg, #3b5273 0%, #8faed3 100%);
    }
    .ka-benefit-card:nth-child(1)::before { background: linear-gradient(90deg, #3b5273 0%, #6f8db2 100%); }
    .ka-benefit-card:nth-child(2)::before { background: linear-gradient(90deg, #445d81 0%, #89a9d0 100%); }
    .ka-benefit-card:nth-child(3)::before { background: linear-gradient(90deg, #51698d 0%, #8bb0dc 100%); }
    .ka-benefit-card:nth-child(4)::before { background: linear-gradient(90deg, #5f789f 0%, #9cbfe4 100%); }
    .ka-benefit-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 14px 32px rgba(15, 35, 64, 0.12);
        border-color: #c9d7e8;
    }
    .ka-benefit-icon {
        width: 58px;
        height: 58px;
        background: #1a2b4a;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        margin-bottom: 18px;
        flex-shrink: 0;
        border-radius: 12px;
        box-shadow: 0 10px 22px rgba(26, 43, 74, 0.22);
    }
    .ka-benefit-card h3 {
        font-size: 1.3rem !important;
        font-weight: 700 !important;
        color: #1f365a !important;
        margin: 0 0 16px !important;
        max-width: 100%;
    }
    .ka-benefit-card ul {
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    .ka-benefit-card ul li {
        position: relative;
        padding-left: 22px;
        font-size: 1rem;
        color: #475569;
        line-height: 1.45;
        margin-bottom: 10px;
    }
    .ka-benefit-card ul li::before {
        content: "";
        position: absolute;
        left: 0;
        top: 8px;
        width: 7px;
        height: 7px;
        background: #9cbfe4;
        border-radius: 50%;
        box-shadow: 0 0 0 3px rgba(156, 191, 228, 0.2);
    }
    .ka-benefit-note {
        font-size: 1.1rem; color: #64748b; font-weight: 400;
        max-width: 700px; margin: 0 auto;
    }
    .ka-benefit-note strong { color: #3b5273; }
    .ka-benefit-card ul li sup {
        font-size: 0.72em;
        line-height: 1;
        margin-left: 2px;
        color: #3b5273;
        font-weight: 700;
    }
    .ka-benefit-legend {
        margin: 0 auto 14px;
        max-width: 760px;
        font-size: 0.95rem;
        color: #475569;
        background: #f7fafc;
        border: 1px solid #e2e8f0;
        border-radius: 12px;
        padding: 10px 14px;
        text-align: center;
    }
    .ka-benefit-legend sup {
        color: #1a2b4a;
        font-weight: 700;
    }

    /* JOBS SECTION */
    .ka-jobs-section {
        background: #3b5273; padding: 80px 0 60px;
    }
    .ka-jobs-section .ka-h2 { color: #fff !important; }
    .ka-iframe-container {
        background: #fff; padding: 40px;
        margin-top: 40px; min-height: 400px;
        overflow: visible;
    }
    .ka-iframe-container iframe {
        width: 100%;
        min-height: 1200px;
        height: auto;
        border: none;
        overflow: visible !important;
    }

    /* CONTACT */
    .ka-contact-box {
        max-width: 700px; margin: 40px auto 0;
        background: #fff; border: 1px solid #e2e8f0;
        padding: 50px; text-align: center;
        transition: all 0.3s;
    }
    .ka-contact-box:hover {
        border-color: #9cbfe4;
        box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    }
    .ka-contact-inner {
        display: flex; align-items: center; gap: 35px;
        text-align: left; margin-bottom: 30px;
    }
    .ka-contact-avatar {
        width: 130px; height: 130px;
        border-radius: 50%; object-fit: cover;
        border: 4px solid #f1f5f9; flex-shrink: 0;
    }
    .ka-contact-info h3 {
        font-size: 0.85rem !important; font-weight: 700 !important;
        color: #9cbfe4 !important; text-transform: uppercase !important;
        letter-spacing: 1.5px !important; margin: 0 0 8px !important;
    }
    .ka-contact-name {
        font-size: 1.4rem !important; font-weight: 800 !important;
        color: #3b5273 !important; margin: 0 0 4px !important;
    }
    .ka-contact-role {
        font-size: 1rem; color: #64748b; margin: 0 0 18px !important;
    }
    .ka-contact-links {
        display: flex; flex-direction: column; gap: 8px;
    }
    .ka-contact-links a {
        display: inline-flex; align-items: center; gap: 10px;
        color: #3b5273 !important; text-decoration: none !important;
        font-size: 0.95rem; font-weight: 600;
        transition: color 0.3s;
    }
    .ka-contact-links a:hover { color: #9cbfe4 !important; }
    .ka-contact-links svg { color: #9cbfe4; flex-shrink: 0; }

    .ka-contact-cta {
        display: inline-block; padding: 16px 45px;
        background: #3b5273; color: #fff !important;
        text-decoration: none !important;
        font-size: 0.9rem; font-weight: 700;
        text-transform: uppercase; letter-spacing: 1.5px;
        transition: all 0.3s;
    }
    .ka-contact-cta:hover {
        background: #2c3e50; transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(59, 82, 115, 0.3);
    }

    /* RESPONSIVE */
    @media (max-width: 992px) {
        .ka-section { padding: 64px 0; }
        .ka-h2 { font-size: 2.2rem !important; }
        .ka-lead { font-size: 1.05rem; line-height: 1.7; }
        .ka-highlight-text { font-size: 1.1rem; line-height: 1.7; margin-bottom: 28px; }
        .ka-iframe-container { padding: 26px; margin-top: 30px; }
        .ka-contact-box { padding: 38px 30px; }
        .ka-benefits-grid { grid-template-columns: 1fr; gap: 20px; }
        .ka-benefit-card { padding: 30px 24px !important; border-radius: 16px; }
        .ka-benefit-card .ka-benefit-icon { width: 52px !important; height: 52px !important; margin-bottom: 14px !important; border-radius: 10px; }
        .ka-banner-img { height: 420px; }
    }
    @media (max-width: 600px) {
        .ka-section { padding: 50px 0; }
        .ka-wrap { padding: 0 16px; }
        .ka-h2 { font-size: 2rem !important; }
        .ka-lead { font-size: 1rem; line-height: 1.65; }
        .ka-highlight-text { font-size: 1rem; line-height: 1.65; }
        .ka-cta-btn { width: 100%; text-align: center; padding: 14px 20px; }
        .ka-benefit-card { padding: 26px 20px !important; }
        .ka-benefit-card h3 { font-size: 1.15rem !important; }
        .ka-benefit-card ul li { font-size: 0.96rem; padding-left: 20px; margin-bottom: 9px; }
        .ka-benefit-legend { font-size: 0.9rem; line-height: 1.5; padding: 10px 12px; }
        .ka-benefit-note { font-size: 1rem; line-height: 1.65; }
        .ka-contact-inner { flex-direction: column; text-align: center; }
        .ka-contact-avatar { width: 105px; height: 105px; }
        .ka-contact-links { align-items: center; }
        .ka-contact-links a { justify-content: center; }
        .ka-iframe-container { padding: 20px; }
        .ka-contact-box { padding: 30px 20px; }
        .ka-contact-cta { width: 100%; text-align: center; }
    }
    
    .coco-home-page-wrap { 
        font-family: 'Maven Pro', sans-serif !important; 
        width: 100% !important; 
        margin: 0 !important;
        padding: 0 !important;
        box-sizing: border-box !important;
    }
        .coco-home-page-wrap .coco-hero-btn {
            display: inline-block;
            padding: 14px 30px;
            background: #3b5273;
            color: #fff !important;
            border: 2px solid #3b5273;
            font-size: 0.85rem;
            font-weight: 700;
            text-decoration: none !important;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.25s ease;
        }
        .coco-home-page-wrap .coco-hero-btn:hover {
            background: #2c3e50;
            border-color: #2c3e50;
            color: #fff !important;
            transform: translateY(-2px);
        }
        .coco-home-page-wrap .coco-hero-btn--ghost {
            background: transparent;
            color: #3b5273 !important;
            border: 2px solid #3b5273;
        }
        .coco-home-page-wrap .coco-hero-btn--ghost:hover {
            background: #3b5273;
            color: #fff !important;
            border-color: #3b5273;
        }
        .coco-home-page-wrap .home-h2 {
            color: #3b5273 !important;
            font-weight: 800 !important;
            font-size: 2.5rem !important;
        }
    
@media (max-width: 992px) {
            .career-content { text-align: center; }
            .career-img-wrap { order: 2; }
        }
        @media (max-width: 1024px) {
            .career-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
            .coco-home-page-wrap section { padding: 60px 0 !important; }
            .home-h2 { font-size: 2.2rem !important; }
            .cah-overlay h1 { font-size: 2.8rem !important; }
        }
        @media (max-width: 768px) {
            .home-section .home-wrap { grid-template-columns: 1fr !important; gap: 40px !important; }
            .insta-mock-grid { grid-template-columns: 1fr 1fr !important; gap: 10px !important; }
            .insta-item { border-radius: 0 !important; }
            .career-benefits-modern-grid { grid-template-columns: 1fr; gap: 12px; }
            .cbm-card { border-radius: 0 !important; }
            .cbm-icon-box { border-radius: 0 !important; }
        }
    
.coco-benefits-wrap {
            max-width: 1200px;
            margin: 60px auto;
            padding: 40px 20px;
            font-family: 'Montserrat', sans-serif;
            color: #1a2b4a;
        }
        .coco-benefits-title {
            text-align: center;
            margin-bottom: 60px;
        }
        .coco-benefits-title h2 {
            font-size: 3rem !important;
            font-weight: 800 !important;
            color: #1a2b4a !important;
            margin-bottom: 20px !important;
            text-transform: none !important;
        }
        .coco-benefits-title p {
            font-size: 1.2rem;
            color: #64748b;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        .benefits-pillars-caption {
            text-align: center;
            margin: -20px 0 30px;
            font-size: 1rem;
            color: #64748b;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 26px;
        }
        .benefit-quadrant {
            padding: 34px !important;
            display: flex !important;
            flex-direction: column !important;
            align-items: flex-start !important;
            text-align: left !important;
            position: relative !important;
            background: #fff !important;
            box-sizing: border-box !important;
            border: 1px solid #d9e3ef !important;
            border-radius: 18px !important;
            box-shadow: 0 10px 26px rgba(15, 35, 64, 0.07);
            overflow: hidden;
        }
        .benefit-quadrant::before {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            height: 5px;
            background: linear-gradient(90deg, #3b5273 0%, #8faed3 100%);
        }
        .quad-tl::before { background: linear-gradient(90deg, #3b5273 0%, #6f8db2 100%); }
        .quad-tr::before { background: linear-gradient(90deg, #445d81 0%, #89a9d0 100%); }
        .quad-bl::before { background: linear-gradient(90deg, #51698d 0%, #8bb0dc 100%); }
        .quad-br::before { background: linear-gradient(90deg, #5f789f 0%, #9cbfe4 100%); }
        .benefit-icon {
            background: #1a2b4a !important;
            color: #fff !important;
            width: 58px !important;
            height: 58px !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            margin-bottom: 18px !important;
            border-radius: 12px;
            box-shadow: 0 10px 22px rgba(26, 43, 74, 0.22);
        }
        .benefit-icon .dashicons {
            font-size: 32px !important;
            width: 32px !important;
            height: 32px !important;
            color: #fff !important;
        }
        
        .benefit-quadrant h3 {
            font-size: 1.28rem !important;
            font-weight: 800 !important;
            color: #1a2b4a !important;
            margin: 0 0 16px 0 !important;
            text-transform: none !important;
            letter-spacing: 0 !important;
        }
        
        .benefit-list {
            list-style: none !important;
            padding: 0 !important;
            margin: 0 !important;
        }
        
        .benefit-list li {
            font-size: 1rem;
            line-height: 1.45;
            margin-bottom: 10px;
            color: #475569;
            display: flex;
            align-items: flex-start;
            gap: 10px;
            text-align: left;
        }
        .benefit-item-icon {
            color: #5f789f !important;
            width: 18px !important;
            height: 18px !important;
            font-size: 18px !important;
            margin-top: 2px;
            flex-shrink: 0;
        }
        .benefit-item-text sup {
            font-size: 0.72em;
            line-height: 1;
            margin-left: 2px;
            color: #3b5273;
            font-weight: 700;
        }
        .benefits-legend {
            margin: 22px auto 0;
            max-width: 980px;
            font-size: 0.95rem;
            color: #475569;
            background: #f7fafc;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            padding: 14px 16px;
            text-align: center;
        }
        .benefits-legend sup {
            color: #1a2b4a;
            font-weight: 700;
        }
        
        @media (max-width: 992px) {
            .benefits-grid { grid-template-columns: 1fr; gap: 18px; }
            .benefit-quadrant { 
                padding: 28px 20px !important; 
            }
            .benefits-pillars-caption { margin: -12px 0 22px; font-size: 0.9rem; }
            .benefits-legend { text-align: left; }
        }
    
.draggable-pin { cursor: move !important; }
        .cu-map-admin-bar { position: absolute; top: -40px; left: 0; right: 0; display: flex; align-items: center; z-index: 20; }
        
.im-section { padding: 100px 0; background: #fff; font-family: 'Maven Pro', sans-serif !important; color: #334155; line-height: 1.8; }
                .im-wrap { max-width: 900px; margin: 0 auto; padding: 0 20px; word-wrap: break-word; overflow-wrap: break-word; }
        .im-h1 { font-size: 3rem; font-weight: 800; color: #3b5273; margin-bottom: 10px; line-height: 1.1; }
        .im-date { font-size: 1rem; color: #9cbfe4; margin-bottom: 60px; font-weight: 600; }
        .im-block { margin-bottom: 40px; }
        .im-block h2 { font-size: 1.5rem; color: #3b5273; margin-bottom: 20px; font-weight: 700; border-bottom: 2px solid #f1f5f9; padding-bottom: 10px; }
        .im-block h3 { font-size: 1.2rem; color: #3b5273; margin-bottom: 15px; font-weight: 700; }
        .im-block p { margin-bottom: 15px; }
        .im-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 40px; }
        .im-label { font-weight: 700; color: #3b5273; display: block; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; margin-bottom: 5px; }
        .im-link { color: #1e293b !important; text-decoration: underline !important; font-weight: 600 !important; transition: all 0.3s ease !important; }
        .im-link:hover { color: #3b5273 !important; text-decoration: none !important; }
        
        @media (max-width: 768px) {
            .im-section { padding: 60px 0; }
            .im-h1 { font-size: 2.2rem; }
            .im-grid { grid-template-columns: 1fr; gap: 20px; }
        }
    
    .home-section { 
        padding: 100px 0 !important; 
        position: relative !important; 
        overflow: hidden !important; 
        width: 100% !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }
                .home-wrap { max-width: 1200px; margin: 0 auto; padding: 0 20px; box-sizing: border-box !important; }
        .career-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
        .career-heading { color: #3b5273 !important; font-size: 2.5rem !important; text-align: left !important; overflow-wrap: break-word !important; word-break: break-word !important; hyphens: auto !important; }
        .career-intro {
            font-size: 1.15rem;
            line-height: 1.6;
            color: #475569;
            margin-bottom: 35px;
        }
        .career-benefits-modern-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
            margin-bottom: 35px;
        }
        @media (max-width: 768px) {
            .career-benefits-modern-grid {
                grid-template-columns: 1fr;
                justify-items: center;
            }
            .cbm-card {
                width: 100%;
                max-width: 400px;
                justify-content: flex-start;
            }
        }
        .cbm-card {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 14px 16px;
            background: #ffffff;
            border: none;
            border-radius: 0;
            box-shadow: none;
            transition: none;
            text-decoration: none !important;
            color: inherit !important;
        }
        .cbm-card:hover {
            transform: none;
            box-shadow: none;
            border-color: transparent;
            text-decoration: none !important;
            color: inherit !important;
        }
        .cbm-icon-box {
            width: 42px;
            height: 42px;
            min-width: 42px;
            background: #f1f5f9;
            color: #3b5273;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 0;
        }
        .cbm-icon-box .dashicons {
            font-size: 20px;
            width: 20px;
            height: 20px;
        }
        .cbm-text {
            display: flex;
            flex-direction: column;
            line-height: 1.3;
        }
        .cbm-text strong {
            font-size: 0.95rem;
            color: #1e293b;
            font-weight: 700;
        }
        .cbm-text span {
            font-size: 0.8rem;
            color: #64748b;
        }
        .home-h2 { font-size: 3rem !important; color: #3b5273 !important; font-weight: 800 !important; margin-bottom: 30px !important; line-height: 1.1 !important; }
        .home-lead { font-size: 1.25rem !important; color: #334155 !important; line-height: 1.6 !important; margin-bottom: 40px !important; max-width: 800px; }
        .home-btn { 
            display: inline-block; 
            padding: 14px 35px; 
            background: #3b5273; 
            color: #fff !important; 
            text-decoration: none !important; 
            font-weight: 700; 
            text-transform: uppercase; 
            letter-spacing: 1px;
            font-size: 0.85rem;
            border: 2px solid #3b5273;
            transition: all 0.25s ease;
            cursor: pointer;
        }
        .home-btn:hover { background: #2c3e50; border-color: #2c3e50; transform: translateY(-2px); }
        
        /* Stats Section */
        .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 60px; }
        .stat-item { text-align: center; }
        .stat-num { font-size: 3.5rem; font-weight: 800; color: #3b5273; margin-bottom: 10px; display: block; }
        .stat-label { font-size: 1rem; color: #64748b; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
        
        /* Portfolio Section */
        .port-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; margin-top: 60px; }
        .port-card { 
            position: relative; 
            height: 500px; 
            background-size: cover; 
            background-position: center; 
            display: flex; 
            align-items: flex-end; 
            padding: 40px; 
            text-decoration: none !important;
            overflow: hidden;
            border-radius: 0;
        }
        .port-card::before { 
            content: ""; 
            position: absolute; 
            top: 0; left: 0; width: 100%; height: 100%; 
            background: linear-gradient(to top, rgba(59, 82, 115, 0.9) 0%, rgba(59, 82, 115, 0) 60%); 
            transition: opacity 0.3s ease;
            z-index: 1;
        }
        .port-card:hover::before { opacity: 0.95; }
        .port-card-content { position: relative; z-index: 2; color: #fff; }
        .port-card h3 { font-size: 2rem !important; color: #fff !important; margin: 0 0 15px 0 !important; font-weight: 700 !important; }
        .port-card p { font-size: 1.1rem; margin-bottom: 25px; opacity: 0.9; }
        
        /* Portfolio Home Grid Fix (when using [portfolio_home]) */
        /* Removed duplicate CSS - using global styles from portfolio_home shortcode definition */
        
        /* Projects Section */
        .proj-home-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 60px; }
        .proj-home-card { background: #fff; border: 1px solid #e2e8f0; transition: all 0.3s ease; text-decoration: none !important; display: block; overflow: hidden; }
        .proj-home-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
        .phc-img { height: 250px; background-size: cover; background-position: center; transition: transform 0.5s ease; }
        .proj-home-card:hover .phc-img { transform: scale(1.1); }
        .phc-content { padding: 30px; background: #fff; position: relative; z-index: 2; }
        .phc-content h4 { font-size: 1.25rem !important; color: #3b5273 !important; margin: 0 0 10px 0 !important; font-weight: 700 !important; text-transform: uppercase; }
        .phc-content p { color: #64748b; margin: 0; font-size: 1rem; }

        /* Social Section */
        .social-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
        .social-item { aspect-ratio: 4 / 5; background-size: cover; background-position: center; position: relative; }
        .social-item:hover::after { content: "Instagram"; position: absolute; top:0; left:0; width:100%; height:100%; background:rgba(59, 82, 115, 0.7); color:#fff; display:flex; align-items:center; justify-content:center; font-weight:700; }

        @media (max-width: 992px) {
            .stats-grid { grid-template-columns: repeat(2, 1fr); }
            .port-grid { grid-template-columns: 1fr; }
            .proj-home-grid { grid-template-columns: 1fr; }
            .home-h2 { font-size: 2.5rem !important; }
        }
    
.coco-portfolio-home-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; margin-top: 60px; }
        @media (max-width: 768px) { .coco-portfolio-home-grid { grid-template-columns: 1fr; } }
    
    .coco-footer { 
            background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)), url('https://coco-real.weareweblabs.com/wp-content/uploads/2026/02/background_footer.jpg');
            background-size: cover;
            background-position: center top;
            background-repeat: no-repeat;
            background-attachment: scroll;
            color: #334155; 
            padding: clamp(200px, 24vw, 360px) 0 60px; 
            font-family: 'Maven Pro', sans-serif !important;
            width: 100% !important;
            position: relative !important;
            margin-top: 0 !important;
            overflow: hidden;
            background-color: transparent;
            border-bottom: none !important;
            margin-bottom: -1px !important;
            box-sizing: border-box !important;
        }
        .coco-prefooter-cta {
            width: 100% !important;
            padding: 100px 0 60px;
            background: #fff;
        }
        .coco-prefooter-wrap {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .coco-prefooter-card {
            background: #1e293b;
            color: #fff;
            padding: 80px 60px;
            position: relative;
            overflow: hidden;
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 60px;
            align-items: center;
            min-height: 400px;
            border-radius: 0;
            border: none;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1) !important;
        }
        .coco-prefooter-card::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(59, 82, 115, 0.2) 0%, transparent 100%);
            z-index: 1;
        }
        .coco-prefooter-content {
            position: relative;
            z-index: 2;
            max-width: 100%;
        }
        .coco-prefooter-kicker {
            display: inline-block;
            margin-bottom: 30px;
            color: #9cbfe4;
            font-size: 0.9rem;
            letter-spacing: 4px;
            text-transform: uppercase;
            font-weight: 800;
            position: relative;
            padding-left: 60px;
        }
        .coco-prefooter-kicker::before {
            content: "";
            position: absolute;
            left: 0;
            top: 50%;
            width: 40px;
            height: 2px;
            background: #9cbfe4;
            transform: translateY(-50%);
        }
        .coco-prefooter-title {
            margin: 0;
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            line-height: 1;
            font-weight: 900;
            color: #fff !important;
            letter-spacing: -0.04em;
            text-transform: uppercase;
        }
        .coco-prefooter-right {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .coco-prefooter-text {
            margin: 0 0 50px;
            color: rgba(255, 255, 255, 0.7);
            font-size: clamp(1.1rem, 1.4vw, 1.3rem);
            line-height: 1.7;
            font-weight: 400;
            max-width: 500px;
        }
        .coco-prefooter-actions {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        .coco-prefooter-card .coco-hero-btn {
            background: #3b5273;
            color: #fff !important;
            border: none;
            padding: 22px 44px;
            font-size: 1rem;
            font-weight: 700;
            border-radius: 0;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: all 0.4s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
        }
        .coco-prefooter-card .coco-hero-btn:hover {
            background: #fff;
            color: #1e293b !important;
            transform: translateY(-5px);
        }
        .coco-prefooter-card .coco-hero-btn--ghost {
            background: transparent !important;
            color: #fff !important;
            border: 2px solid rgba(255, 255, 255, 0.2) !important;
        }
        .coco-prefooter-card .coco-hero-btn--ghost:hover {
            background: rgba(255, 255, 255, 0.1) !important;
            border-color: #fff !important;
            color: #fff !important;
        }
        .coco-prefooter-bg-icon {
            position: absolute;
            right: -100px;
            top: 50%;
            width: 600px;
            height: 600px;
            color: rgba(255, 255, 255, 0.02);
            z-index: 1;
            pointer-events: none;
            transform: translateY(-50%) rotate(-10deg);
        }
        .coco-prefooter-bg-icon svg {
            width: 100%;
            height: 100%;
        }

        @media (max-width: 1200px) {
            .coco-prefooter-card { gap: 40px; padding: 80px 5%; }
            .coco-prefooter-title { font-size: 3.5rem; }
        }
        @media (max-width: 992px) {
            .coco-prefooter-card { 
                grid-template-columns: 1fr; 
                text-align: left; 
                gap: 40px;
                padding: 80px 40px;
            }
            .coco-prefooter-text { max-width: 100%; }
            .coco-prefooter-bg-icon { width: 400px; height: 400px; right: -50px; }
        }
        @media (max-width: 600px) {
            .coco-prefooter-cta { padding: 60px 0 0; }
            .coco-prefooter-card { padding: 60px 30px; min-height: auto; }
            .coco-prefooter-title { font-size: 2.5rem; }
            .coco-prefooter-kicker { margin-bottom: 20px; padding-left: 50px; }
            .coco-prefooter-kicker::before { width: 35px; }
            .coco-prefooter-actions .coco-hero-btn { width: 100%; }
        }

        @media (max-width: 1200px) {
            .coco-prefooter-title { font-size: 2.8rem; }
            .coco-prefooter-card { padding: 60px; }
        }
        @media (max-width: 992px) {
            .coco-prefooter-cta { padding: 80px 0 40px; }
            .coco-prefooter-card { padding: 50px 40px; flex-direction: column; text-align: center; justify-content: center; }
            .coco-prefooter-content { max-width: 100%; }
            .coco-prefooter-actions { justify-content: center; }
            .coco-prefooter-bg-icon { width: 300px; height: 300px; right: -30px; bottom: -30px; }
        }
        @media (max-width: 600px) {
            .coco-prefooter-wrap { padding: 0 20px; }
            .coco-prefooter-card { padding: 40px 25px; }
            .coco-prefooter-title { font-size: 2rem !important; }
            .coco-prefooter-actions { flex-direction: column; gap: 12px; }
            .coco-prefooter-card .coco-hero-btn { width: 100%; }
        }
        /* Fix for Breakdance section container gap */
        body .bde-section .section-container:has(.coco-footer) {
            padding-bottom: 0 !important;
            margin-bottom: 0 !important;
        }
        body .bde-section:has(.coco-footer) {
            padding-bottom: 0 !important;
            margin-bottom: 0 !important;
        }
        .coco-footer-wrap { max-width: 1400px; margin: 0 auto; padding: 0 40px; position: relative; z-index: 2; width: 100%; box-sizing: border-box; }
        .coco-footer-grid { display: grid; grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr; gap: 60px; margin-bottom: 60px; margin-top: 0; }
        
        .cf-logo { max-width: 200px; margin-bottom: 45px; display: block; }
        .cf-logo img { width: 100%; height: auto; }
        
        .cf-col h4 { 
            color: #3b5273; 
            font-size: 1.1rem; 
            font-weight: 800; 
            margin-bottom: 40px; 
            position: relative; 
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .cf-col h4::after { 
            content: ''; 
            position: absolute; 
            left: 0; 
            bottom: -15px; 
            width: 45px; 
            height: 4px; 
            background: #9cbfe4; 
            border-radius: 2px;
        }
        
        .cf-col ul { list-style: none; padding: 0; margin: 0; }
        .cf-col ul li { margin-bottom: 20px; }
        .cf-nav-col ul li a,
        .cf-legal-col ul li a { 
            color: #3b5273 !important; 
            text-decoration: none !important; 
            font-size: 1.05rem !important; 
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important; 
            font-weight: 400 !important; 
            display: inline-block !important;
        }
        .cf-nav-col ul li a:hover,
        .cf-legal-col ul li a:hover { 
            color: #9cbfe4 !important; 
            transform: translateX(10px) !important; 
        }
        
        .cf-contact-item { display: flex; gap: 15px; margin-bottom: 35px; align-items: flex-start; }
        .cf-contact-item .dashicons { 
            color: #3b5273; 
            font-size: 20px !important; 
            width: 20px !important; 
            height: 20px !important; 
            display: inline-flex !important; 
            align-items: center; 
            justify-content: center; 
            margin-top: 4px;
            transition: all 0.3s ease;
        }
        .cf-contact-item:hover .dashicons {
            color: #9cbfe4;
            transform: scale(1.2);
        }
        .cf-contact-text { font-size: 1.05rem; line-height: 1.6; color: #475569; }
        .cf-contact-text strong { 
            display: block; 
            color: #3b5273; 
            font-size: 0.75rem; 
            text-transform: uppercase; 
            letter-spacing: 2px; 
            margin-bottom: 6px; 
            font-weight: 800;
        }
        .cf-contact-text a { color: #3b5273 !important; text-decoration: none !important; transition: all 0.3s !important; font-weight: 600 !important; }
        .cf-contact-text a:hover { color: #9cbfe4 !important; }
        
        .coco-footer-bottom { 
            border-top: 2px solid rgba(59, 82, 115, 0.06); 
            padding-top: 50px; 
            display: flex; 
            justify-content: space-between; 
            align-items: center; 
            gap: 30px;
            flex-wrap: wrap; /* Allow wrapping on smaller screens */
        }
        .cf-copyright { font-size: 1rem; color: #64748b; font-weight: 500; letter-spacing: 0.5px; }
        
        .cf-social-links { display: flex !important; gap: 20px !important; }
        .cf-social-icon { 
            width: 50px !important; height: 50px !important; 
            background: #3b5273 !important; 
            display: flex !important; align-items: center !important; justify-content: center !important; 
            border-radius: 15px !important; color: #fff !important; text-decoration: none !important; 
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important; 
            font-size: 24px !important;
            box-shadow: 0 10px 20px rgba(59, 82, 115, 0.15) !important;
        }
        .cf-social-icon .cf-social-label {
            font-size: 22px !important;
            font-weight: 800 !important;
            line-height: 1 !important;
            letter-spacing: 0.5px !important;
            text-transform: uppercase !important;
        }
        .cf-social-icon:hover { 
            background: #9cbfe4 !important; 
            transform: translateY(-8px) scale(1.1) !important; 
            color: #3b5273 !important; 
            box-shadow: 0 15px 30px rgba(156, 191, 228, 0.4) !important;
        }

        /* Made by Weblabs Styling */
        .cf-made-by-wrap {
            margin-top: 5px;
        }
        .cf-made-by-text {
            text-decoration: none;
            color: #64748b !important;
            opacity: 0.8;
            transition: all 0.3s ease;
            font-size: 0.8rem;
        }
        .cf-made-by-text:hover {
            opacity: 1;
            color: #3b5273 !important;
            text-decoration: underline;
        }

        @media (max-width: 1024px) {
            .coco-prefooter-wrap { padding: 0 30px; }
            .coco-prefooter-cta { padding: 56px 0 30px; }
            .coco-prefooter-card { padding: 30px 24px; }
            .coco-footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
        }
        @media (max-width: 600px) {
            .coco-prefooter-wrap { padding: 0 20px; }
            .coco-prefooter-cta { padding: 46px 0 20px; }
            .coco-prefooter-card { padding: 24px 18px; }
            .coco-prefooter-card::before { right: -120px; top: -150px; width: 280px; height: 280px; }
            .coco-prefooter-kicker { font-size: 0.68rem; letter-spacing: 0.1em; }
            .coco-prefooter-title { font-size: 1.45rem !important; }
            .coco-prefooter-text { font-size: 0.95rem; line-height: 1.6; }
            .coco-prefooter-actions { gap: 10px; }
            .coco-prefooter-card .coco-hero-btn { width: 100%; text-align: center; justify-content: center; }
            .coco-footer { padding: 120px 0 30px; text-align: left; overflow: hidden !important; background-size: contain; background-repeat: no-repeat; background-position: center top; }
            .coco-footer-wrap { padding: 0 25px !important; box-sizing: border-box !important; max-width: 100% !important; overflow: hidden !important; }
            .coco-footer-grid { 
                display: grid !important;
                grid-template-columns: 1fr 1fr !important;
                gap: 35px 20px !important;
                align-items: flex-start !important;
                max-width: 100% !important;
                overflow: hidden !important;
            }
            
            /* Logo & Intro - Full Width */
            .cf-col:first-child { grid-column: 1 / -1; margin-bottom: 0; width: 100%; text-align: left; }
            .cf-col:first-child .cf-logo { margin: 0 0 15px 0; max-width: 180px; }
            .cf-col:first-child .cf-contact-text { margin: 0; font-size: 0.9rem; line-height: 1.6; max-width: 100% !important; text-align: left !important; }
            
            /* Navigation & Rechtliches - Side by Side */
            .cf-nav-col, .cf-legal-col { 
                grid-column: span 1;
                text-align: left;
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                overflow: hidden;
                min-width: 0;
            }
            
            .cf-col h4 { font-size: 0.95rem !important; margin-bottom: 28px !important; letter-spacing: 1.5px !important; width: 100%; text-align: left !important; }
            .cf-col h4::after { left: 0; transform: none; width: 22px; bottom: -12px !important; }
            .cf-col ul { padding: 0 !important; margin: 0 !important; list-style: none !important; width: 100% !important; }
            .cf-col ul li { margin-bottom: 10px !important; font-size: 0.9rem !important; width: 100% !important; text-align: left !important; }
            .cf-nav-col ul li a, .cf-legal-col ul li a { color: #3b5273 !important; font-weight: 400 !important; display: block !important; width: 100% !important; overflow: hidden !important; text-overflow: ellipsis !important; white-space: nowrap !important; }
            
            /* Contact section - Full Width & Compact */
            .cf-contact-col { 
                grid-column: 1 / -1;
                width: 100%; 
                background: transparent !important;
                margin: 0; 
                padding: 20px 0 0; 
                border-top: 1px solid rgba(59, 82, 115, 0.1);
                display: flex;
                flex-direction: column;
                align-items: flex-start;
            }
            .cf-contact-col h4 { text-align: left !important; margin-bottom: 18px !important; }
            .cf-contact-col h4::after { left: 0; transform: none; }

            .cf-address-item { margin-bottom: 20px !important; display: flex; flex-direction: row !important; align-items: flex-start !important; gap: 10px !important; text-align: left !important; width: 100% !important; max-width: none; margin-left: 0 !important; margin-right: 0 !important; }
            .cf-address-item .dashicons { margin-top: 3px !important; width: 18px !important; height: 18px !important; font-size: 18px !important; }
            .cf-address-item .cf-contact-text { font-size: 0.9rem !important; }
            .cf-address-item .cf-contact-text strong { display: none !important; }

            .cf-contact-row { 
                display: flex; 
                justify-content: flex-start; 
                gap: 25px; 
                flex-wrap: wrap;
                width: 100%;
                margin-top: 5px;
            }
            .cf-contact-row .cf-contact-item { margin: 0 !important; flex-direction: row !important; align-items: center !important; gap: 8px !important; text-align: left !important; }
            .cf-contact-row .cf-contact-item .dashicons { 
                margin: 0 !important;
                width: 18px !important;
                height: 18px !important;
                font-size: 18px !important;
                flex-shrink: 0;
            }
            .cf-contact-row .cf-contact-text { font-size: 0.85rem !important; text-align: left !important; }
            .cf-contact-row .cf-contact-text strong { display: none !important; }
            
            .coco-footer-bottom { 
                margin-top: 30px; 
                padding-top: 20px;
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
            .cf-social-links { order: -1; margin-bottom: 5px; gap: 12px; justify-content: flex-start; width: 100%; }
            .cf-social-icon { width: 40px !important; height: 40px !important; font-size: 20px !important; border-radius: 12px !important; }
            .cf-copyright { font-size: 0.8rem; text-align: left; }
        }
    
.coco-stats-section { 
            padding: 80px 0; 
            background: transparent; 
            font-family: 'Maven Pro', sans-serif !important;
            width: 100% !important;
            box-sizing: border-box !important;
        }
        .coco-stats-grid { 
            display: grid !important; 
            grid-template-columns: repeat(4, 1fr) !important; 
            gap: 30px !important; 
            max-width: 1200px !important; 
            margin: 0 auto !important; 
            padding: 0 20px !important; 
            box-sizing: border-box !important;
        }

/* FINAL HERO HEIGHT GUARD FOR SMALLER LAPTOPS */
@media (max-height: 920px) and (min-width: 993px) {
    .coco-archive-hero {
        min-height: 830px !important;
    }
    .coco-modern-layout .coco-hero {
        min-height: 640px !important;
        height: auto !important;
    }
}

/* FINAL MOBILE OVERRIDE: Projekte cards always image first */
@media (max-width: 992px) {
    .coco-main-container .coco-list-card,
    .coco-main-container .coco-list-card:nth-child(even) {
        display: flex !important;
        flex-direction: column !important;
        direction: ltr !important;
        min-height: auto !important;
        height: auto !important;
        overflow: visible !important;
    }
    .coco-main-container .coco-list-card .clc-image {
        order: 1 !important;
        width: 100% !important;
        max-width: 100% !important;
        min-height: 320px !important;
        height: 320px !important;
        flex: none !important;
        display: block !important;
    }
    .coco-main-container .coco-list-card .clc-content {
        order: 2 !important;
        width: 100% !important;
        max-width: 100% !important;
        flex: none !important;
        display: flex !important;
        flex-direction: column !important;
        opacity: 1 !important;
        visibility: visible !important;
        background: #fff !important;
        z-index: 3 !important;
        position: relative !important;
    }
}
        .coco-stat-card { 
            background: #fff !important; 
            padding: 50px 20px !important; 
            text-align: center !important; 
            box-shadow: 0 20px 50px rgba(59, 82, 115, 0.08) !important; 
            display: flex !important; 
            flex-direction: column !important; 
            align-items: center !important; 
            justify-content: center !important;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
            border: 1px solid #f1f5f9 !important;
        }
        .coco-stat-card:hover { 
            transform: translateY(-10px) !important; 
            box-shadow: 0 30px 60px rgba(59, 82, 115, 0.12) !important;
            border-color: #9cbfe4 !important;
        }
        
        .coco-stat-icon { 
            margin-bottom: 25px !important; 
            color: #3b5273 !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
        }
        .coco-stat-icon .dashicons { 
            font-size: 36px !important; 
            width: 36px !important; 
            height: 36px !important; 
            line-height: 1 !important;
        }
        
        .coco-stat-number { 
            font-size: 3.2rem !important; 
            font-weight: 600 !important; 
            color: #3b5273 !important; 
            line-height: 1 !important; 
            margin-bottom: 12px !important; 
            display: block !important;
            -webkit-text-fill-color: #3b5273 !important;
        }
        .coco-stat-label { 
            font-size: 0.75rem !important; 
            font-weight: 500 !important; 
            color: #3b5273 !important; 
            text-transform: uppercase !important; 
            letter-spacing: 1.2px !important; 
            margin: 0 !important;
            opacity: 0.7;
        }
        
        @media (max-width: 1024px) {
            .coco-stats-grid { grid-template-columns: repeat(2, 1fr) !important; }
        }
        @media (max-width: 600px) {
            .coco-stats-section { padding: 40px 0 !important; }
            .coco-stats-grid { grid-template-columns: 1fr !important; gap: 20px !important; padding: 0 15px !important; }
            .coco-stat-card { padding: 40px 20px !important; }
            .coco-stat-number { font-size: 3rem !important; }
        }
    