/* ================================================
   ROHR-FIX GÖPPINGEN - SHARED STYLES
   Header, Mobile Nav, Footer, Base
   ================================================ */

/* Self-hosted Inter Variable Font */
@font-face {
    font-family: 'Inter';
    src: url('assets/fonts/Inter-Variable.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}


/* ================================================
   GLOBAL / HEADER / MOBILE NAV / HERO
   ================================================ */

* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; overflow-x: hidden; background: #0a0a0a; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

        .skip-link { position: absolute; top: -100%; left: 0; background: #06b6d4; color: white; padding: 12px 24px; z-index: 10000; font-weight: 600; border-radius: 0 0 8px 0; transition: top 0.3s; }
        .skip-link:focus { top: 0; }

        /* ============================
           DESKTOP HEADER
           ============================ */
        .header-desktop { 
            display: block;
            position: fixed; 
            top: 0; left: 0; right: 0; 
            z-index: 1000; 
            padding: 0 32px; 
            transition: all 0.3s ease; 
        }
        .header-desktop-inner { 
            max-width: 1400px; 
            margin: 0 auto; 
            display: flex; 
            align-items: center; 
            justify-content: space-between; 
            padding: 18px 0; 
            transition: all 0.3s ease; 
        }
        .header-desktop.scrolled { 
            background: linear-gradient(180deg, rgb(10, 30, 45) 0%, rgb(8, 45, 58) 100%); 
            backdrop-filter: blur(20px); 
            -webkit-backdrop-filter: blur(20px); 
            box-shadow: 0 4px 30px rgba(0,0,0,0.3); 
        }
        .header-desktop.scrolled::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, rgba(6,182,212,0.5), rgba(20,184,166,0.5), rgba(6,182,212,0.5), transparent);
            background-size: 200% 100%;
            animation: headerGlow 4s linear infinite;
        }
        @keyframes headerGlow {
            0% { background-position: 200% 0; }
            100% { background-position: -200% 0; }
        }
        .header-desktop.scrolled .header-desktop-inner { padding: 12px 0; }

        .header-right { display: flex; align-items: center; gap: 16px; }

        .nav-desktop { display: flex; align-items: center; gap: 6px; }
        .nav-link { position: relative; display: flex; align-items: center; gap: 6px; padding: 10px 20px; color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.9375rem; font-weight: 500; border-radius: 100px; transition: all 0.25s ease; }
        .nav-link:hover { color: white; background: rgba(255,255,255,0.08); }

        /* Active Page Pill */
        .nav-active { background: rgba(6, 182, 212, 0.15); border: 1px solid rgba(6, 182, 212, 0.3); color: #22d3ee !important; font-weight: 600; }
        .nav-active:hover { background: rgba(6, 182, 212, 0.25); border-color: rgba(6, 182, 212, 0.5); }

        /* Leistungen Dropdown */
        .nav-dropdown { position: relative; }
        .nav-has-sub { cursor: pointer; }
        .nav-has-sub svg { width: 16px; height: 16px; stroke: currentColor; transition: transform 0.25s ease; flex-shrink: 0; }
        .nav-dropdown:hover .nav-has-sub svg { transform: rotate(180deg); }
        .nav-dropdown:hover .nav-has-sub { color: white; background: rgba(255,255,255,0.08); }

        .dropdown-menu { 
            position: absolute; 
            top: calc(100% + 12px); 
            left: 50%; 
            transform: translateX(-50%) translateY(10px); 
            width: 420px; 
            background: linear-gradient(180deg, rgba(15, 23, 42, 0.98) 0%, rgba(10, 20, 35, 0.98) 100%); 
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            border: 1px solid rgba(255, 255, 255, 0.1); 
            border-radius: 20px; 
            box-shadow: 0 25px 60px -12px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(6, 182, 212, 0.1); 
            padding: 0;
            opacity: 0; 
            visibility: hidden; 
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
            z-index: 100;
            overflow: hidden;
        }
        .nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }

        .dropdown-grid { padding: 8px; }

        .dropdown-item { 
            display: flex; 
            align-items: center;
            gap: 14px;
            padding: 14px 16px; 
            color: rgba(255, 255, 255, 0.8); 
            text-decoration: none; 
            border-radius: 12px; 
            transition: all 0.2s ease; 
        }
        .dropdown-item:hover { 
            background: rgba(6, 182, 212, 0.1);
            color: white;
        }
        .dropdown-item + .dropdown-item {
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }
        .dropdown-item:hover + .dropdown-item,
        .dropdown-item + .dropdown-item:hover {
            border-top-color: transparent;
        }

        .dropdown-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(6, 182, 212, 0.1);
            border: 1px solid rgba(6, 182, 212, 0.15);
            border-radius: 10px;
            flex-shrink: 0;
            transition: all 0.2s ease;
        }
        .dropdown-item:hover .dropdown-icon {
            background: rgba(6, 182, 212, 0.2);
            border-color: rgba(6, 182, 212, 0.3);
        }
        .dropdown-icon svg {
            width: 18px;
            height: 18px;
            stroke: #22d3ee;
        }

        .dropdown-text {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }
        .dropdown-text strong {
            font-size: 0.9rem;
            font-weight: 600;
            color: white;
        }
        .dropdown-text small {
            font-size: 0.775rem;
            color: rgba(255, 255, 255, 0.45);
            font-weight: 400;
        }

        .dropdown-footer {
            padding: 12px 16px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            background: rgba(255, 255, 255, 0.02);
        }
        .dropdown-all {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 10px;
            color: #22d3ee;
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 600;
            border-radius: 10px;
            transition: all 0.2s ease;
        }
        .dropdown-all:hover {
            background: rgba(6, 182, 212, 0.1);
        }
        .dropdown-all svg {
            width: 16px;
            height: 16px;
            transition: transform 0.2s ease;
        }
        .dropdown-all:hover svg {
            transform: translateX(4px);
        }

        /* CTA + Hamburger: gleiche Höhe (44px) */
        .header-cta { display: inline-flex; align-items: center; justify-content: center; gap: 8px; height: 44px; padding: 0 24px; background: linear-gradient(135deg, #06b6d4 0%, #14b8a6 100%); color: white; text-decoration: none; font-size: 0.9rem; font-weight: 700; border-radius: 100px; box-shadow: 0 8px 25px -8px rgba(6,182,212,0.5); transition: all 0.3s ease; white-space: nowrap; }
        .header-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 30px -8px rgba(6,182,212,0.6); }
        .header-cta svg { width: 17px; height: 17px; }

        /* ============================
           MOBILE HEADER
           ============================ */
        .header-mobile {
            display: none;
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 1000;
            padding: 12px 16px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .header-mobile.scrolled {
            background: linear-gradient(180deg, rgb(10, 30, 45) 0%, rgb(8, 45, 58) 100%);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            box-shadow: 0 4px 30px rgba(0,0,0,0.3);
        }
        .header-mobile.scrolled::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, rgba(6,182,212,0.5), rgba(20,184,166,0.5), rgba(6,182,212,0.5), transparent);
            background-size: 200% 100%;
            animation: headerGlow 4s linear infinite;
        }

        .header-mobile-inner {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 56px;
            gap: 12px;
        }

        .mobile-actions {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .mobile-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            height: 44px;
            padding: 0 18px;
            background: linear-gradient(135deg, #06b6d4 0%, #14b8a6 100%);
            color: white;
            text-decoration: none;
            font-size: 0.8125rem;
            font-weight: 700;
            border-radius: 100px;
            box-shadow: 0 6px 20px -6px rgba(6,182,212,0.5);
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .mobile-cta svg {
            width: 16px;
            height: 16px;
            flex-shrink: 0;
        }

        @media (max-width: 400px) {
            .mobile-cta span { display: none; }
            .mobile-cta { width: 44px; padding: 0; border-radius: 100px; }
        }

        .mobile-logo {
            position: relative;
            display: flex;
            align-items: center;
            text-decoration: none;
            min-width: 0;
            overflow: hidden;
        }

        .mobile-logo img {
            height: 44px;
            width: auto;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }
        .mobile-logo .logo-white {
            display: block;
            opacity: 1;
        }
        .mobile-logo .logo-color {
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }

        /* ============================
           HAMBURGER
           ============================ */
        .menu-toggle {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 44px;
            height: 44px;
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: 14px;
            cursor: pointer;
            z-index: 1100;
            transition: all 0.3s ease;
            position: relative;
            flex-shrink: 0;
        }

        .menu-toggle:hover {
            background: rgba(255,255,255,0.12);
        }

        .menu-toggle span {
            display: block;
            width: 22px;
            height: 2px;
            background: white;
            border-radius: 2px;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            position: absolute;
        }

        .menu-toggle span:nth-child(1) { transform: translateY(-7px); }
        .menu-toggle span:nth-child(3) { transform: translateY(7px); }

        .menu-toggle.active span:nth-child(1) { transform: rotate(45deg); background: #0e7490; }
        .menu-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
        .menu-toggle.active span:nth-child(3) { transform: rotate(-45deg); background: #0e7490; }

        /* ============================
           MOBILE NAV
           ============================ */
        .nav-mobile { 
            display: block; 
            position: fixed; 
            top: 0; left: 0; right: 0; bottom: 0; 
            background: linear-gradient(165deg, #f0fdfa 0%, #e0f7fa 40%, #b2ebf2 100%);
            z-index: 1050; 
            opacity: 0; 
            visibility: hidden; 
            transform: translateX(100%);
            transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                        visibility 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                        transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .nav-mobile.active { 
            opacity: 1; 
            visibility: visible; 
            transform: translateX(0);
        }

        .nav-mobile-container {
            display: flex;
            flex-direction: column;
            height: 100%;
            padding-top: 20px;
        }

        /* ============================
           NEXT LEVEL ANIMATION
           ============================ */
        .animation-container {
            flex-shrink: 0;
            height: 220px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: visible;
        }

        /* Scene 1: Pipe Animation */
        .scene-pipe {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 1;
            transition: opacity 0.6s ease-out;
        }

        .nav-mobile.active.scene-complete .scene-pipe {
            opacity: 0;
            pointer-events: none;
        }

        .pipe-svg {
            width: 280px;
            height: 180px;
            overflow: visible;
        }

        /* Pipe Gradients */
        .pipe-body {
            fill: url(#pipeMetalGrad);
        }

        .pipe-highlight {
            fill: url(#pipeHighlightGrad);
        }

        .pipe-shadow {
            fill: rgba(0,0,0,0.15);
        }

        /* Valve Wheel */
        .valve-wheel {
            transform-origin: 200px 70px;
        }

        .nav-mobile.active .valve-wheel {
            animation: valveTurn 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
            animation-delay: 0.8s;
        }

        @keyframes valveTurn {
            0% { transform: rotate(0deg); }
            20% { transform: rotate(60deg); }
            40% { transform: rotate(40deg); }
            60% { transform: rotate(100deg); }
            80% { transform: rotate(85deg); }
            100% { transform: rotate(120deg); }
        }

        /* Water Drops */
        .water-drop {
            fill: url(#waterDropGrad);
            filter: drop-shadow(0 2px 4px rgba(6, 182, 212, 0.3));
            opacity: 0;
        }

        .nav-mobile.active .water-drop {
            animation: dropFall 0.9s cubic-bezier(0.55, 0, 1, 0.45) infinite;
        }

        .nav-mobile.active .water-drop:nth-child(1) { animation-delay: 0s; }
        .nav-mobile.active .water-drop:nth-child(2) { animation-delay: 0.3s; }
        .nav-mobile.active .water-drop:nth-child(3) { animation-delay: 0.6s; }

        @keyframes dropFall {
            0% {
                opacity: 0;
                transform: translateY(0) scaleY(0.8);
            }
            10% {
                opacity: 1;
                transform: translateY(0) scaleY(1);
            }
            60% {
                opacity: 1;
                transform: translateY(45px) scaleY(1.2);
            }
            80% {
                opacity: 0.5;
                transform: translateY(55px) scaleY(0.6) scaleX(1.5);
            }
            100% {
                opacity: 0;
                transform: translateY(60px) scaleY(0.2) scaleX(2);
            }
        }

        /* Splash Ripples */
        .splash-ripple {
            fill: none;
            stroke: #06b6d4;
            stroke-width: 1.5;
            opacity: 0;
            transform-origin: center;
        }

        .nav-mobile.active .splash-ripple {
            animation: rippleExpand 0.9s ease-out infinite;
        }

        .nav-mobile.active .splash-ripple:nth-child(1) { animation-delay: 0.6s; }
        .nav-mobile.active .splash-ripple:nth-child(2) { animation-delay: 0.9s; }
        .nav-mobile.active .splash-ripple:nth-child(3) { animation-delay: 1.2s; }

        @keyframes rippleExpand {
            0% {
                opacity: 0.8;
                transform: scale(0.3);
            }
            100% {
                opacity: 0;
                transform: scale(2);
            }
        }

        /* Stop drops after valve closes */
        .nav-mobile.active.valve-closed .water-drop {
            animation: dropFallSlow 1.5s cubic-bezier(0.55, 0, 1, 0.45) forwards;
        }

        @keyframes dropFallSlow {
            0% {
                opacity: 1;
                transform: translateY(0) scaleY(1);
            }
            100% {
                opacity: 0;
                transform: translateY(60px) scaleY(0.2) scaleX(2);
            }
        }

        .nav-mobile.active.valve-closed .splash-ripple {
            animation: none;
            opacity: 0;
        }

        /* Checkmark appears after valve closed */
        .valve-checkmark {
            opacity: 0;
            transform: scale(0);
            transform-origin: center;
        }

        .nav-mobile.active.valve-closed .valve-checkmark {
            animation: checkmarkPop 0.4s ease-out forwards;
            animation-delay: 0.3s;
        }

        @keyframes checkmarkPop {
            0% {
                opacity: 0;
                transform: scale(0.5);
            }
            100% {
                opacity: 1;
                transform: scale(1);
            }
        }

        .checkmark-path {
            stroke-dasharray: 30;
            stroke-dashoffset: 30;
        }

        .nav-mobile.active.valve-closed .checkmark-path {
            animation: drawCheckmark 0.4s ease forwards;
            animation-delay: 0.5s;
        }

        @keyframes drawCheckmark {
            to { stroke-dashoffset: 0; }
        }

        /* Scene 2: Logo Reveal */
        .scene-logo {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transform: translateY(40px) scale(0.8);
            pointer-events: none;
        }

        .nav-mobile.active.scene-complete .scene-logo {
            opacity: 1;
            transform: translateY(0) scale(1) rotate(-2deg);
            pointer-events: auto;
            animation: logoReveal 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
        }

        @keyframes logoReveal {
            0% {
                opacity: 0;
                transform: translateY(40px) scale(0.8) rotate(0deg);
            }
            50% {
                opacity: 1;
                transform: translateY(-10px) scale(1.05) rotate(-3deg);
            }
            100% {
                opacity: 1;
                transform: translateY(0) scale(1) rotate(-2deg);
            }
        }

        .logo-toast {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
        }

        .logo-toast img {
            height: 60px;
            width: auto;
            filter: drop-shadow(0 8px 25px rgba(6, 182, 212, 0.25));
            animation: none;
        }

        .nav-mobile.active.scene-complete .logo-toast img {
            animation: logoFloat 3s ease-in-out infinite;
            animation-delay: 0.8s;
        }

        @keyframes logoFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
        }

        .logo-underline {
            width: 160px;
            height: 24px;
            margin-top: -2px;
        }

        .underline-path {
            fill: none;
            stroke: url(#underlineGrad);
            stroke-width: 3.5;
            stroke-linecap: round;
            stroke-dasharray: 200;
            stroke-dashoffset: 200;
        }

        .nav-mobile.active.scene-complete .underline-path {
            animation: drawUnderline 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
            animation-delay: 0.4s;
        }

        @keyframes drawUnderline {
            to { stroke-dashoffset: 0; }
        }

        .logo-tagline {
            font-size: 0.75rem;
            color: #0e7490;
            font-weight: 700;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            margin-top: 10px;
            opacity: 0;
            transform: translateY(10px);
        }

        .nav-mobile.active.scene-complete .logo-tagline {
            animation: taglineFade 0.5s ease forwards;
            animation-delay: 0.8s;
        }

        @keyframes taglineFade {
            to { 
                opacity: 1; 
                transform: translateY(0);
            }
        }

        /* Sparkle effects */
        .sparkle {
            position: absolute;
            width: 6px;
            height: 6px;
            background: #06b6d4;
            border-radius: 50%;
            opacity: 0;
            filter: blur(1px);
        }

        .nav-mobile.active.scene-complete .sparkle {
            animation: sparkle 1.5s ease-in-out infinite;
        }

        .sparkle:nth-child(1) { top: 25%; left: 20%; animation-delay: 0s; }
        .sparkle:nth-child(2) { top: 30%; right: 25%; animation-delay: 0.3s; }
        .sparkle:nth-child(3) { bottom: 35%; left: 30%; animation-delay: 0.6s; }
        .sparkle:nth-child(4) { bottom: 30%; right: 20%; animation-delay: 0.9s; }

        @keyframes sparkle {
            0%, 100% { opacity: 0; transform: scale(0); }
            50% { opacity: 0.8; transform: scale(1); }
        }

        /* ============================
           MENU ITEMS - Fixed size, scrollable container
           ============================ */
        .nav-mobile-scroll {
            flex: 1;
            overflow-y: auto;
            overflow-x: hidden;
            padding: 24px 24px 0;
            margin-top: 16px;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            min-height: 0; /* Important for flex scroll */
        }
        .nav-mobile-scroll::-webkit-scrollbar { display: none; }

        .nav-mobile-inner {
            max-width: 400px;
            margin: 0 auto;
            padding-bottom: 20px;
        }

        .nav-mobile-link {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 18px 0;
            color: #1e3a5f;
            text-decoration: none;
            font-size: 1.0625rem;
            font-weight: 600;
            border-bottom: 1px solid rgba(0, 100, 120, 0.1);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0;
            transform: translateX(-30px);
        }

        .nav-mobile.active .nav-mobile-link {
            animation: menuSlideIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
        }

        .nav-mobile.active .nav-mobile-link:nth-child(1) { animation-delay: 0.1s; }
        .nav-mobile.active .nav-mobile-link:nth-child(2) { animation-delay: 0.15s; }
        .nav-mobile.active .nav-mobile-link:nth-child(3) { animation-delay: 0.2s; }
        .nav-mobile.active .nav-mobile-link:nth-child(4) { animation-delay: 0.25s; }
        .nav-mobile.active .nav-mobile-link:nth-child(5) { animation-delay: 0.3s; }
        .nav-mobile.active .nav-mobile-link:nth-child(6) { animation-delay: 0.35s; }
        .nav-mobile.active .nav-mobile-link:nth-child(7) { animation-delay: 0.4s; }
        .nav-mobile.active .nav-mobile-link:nth-child(8) { animation-delay: 0.45s; }
        .nav-mobile.active .nav-mobile-link:nth-child(9) { animation-delay: 0.5s; }
        .nav-mobile.active .nav-mobile-link:nth-child(10) { animation-delay: 0.55s; }
        .nav-mobile.active .nav-mobile-link:nth-child(11) { animation-delay: 0.6s; }
        .nav-mobile.active .nav-mobile-link:nth-child(12) { animation-delay: 0.65s; }

        /* Section Header (Leistungen parent) */
        .nav-mobile-section {
            font-size: 0.75rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: #0891b2;
            padding-bottom: 10px;
            border-bottom-color: rgba(6, 182, 212, 0.15);
            margin-top: 4px;
        }

        .nav-mobile-section .menu-icon {
            color: #06b6d4;
        }

        /* Sub Items (indented) */
        .nav-mobile-sub {
            padding-left: 38px;
            padding-top: 12px;
            padding-bottom: 12px;
            font-size: 0.95rem;
            font-weight: 500;
            color: #3a5a7a;
            border-bottom-color: rgba(0, 100, 120, 0.06);
        }

        .nav-mobile-sub .menu-icon {
            width: 18px;
            height: 18px;
            opacity: 0.7;
        }

        .nav-mobile-sub:hover {
            padding-left: 44px;
        }

        @keyframes menuSlideIn {
            to { opacity: 1; transform: translateX(0); }
        }

        .nav-mobile-link:hover {
            color: #0891b2;
            padding-left: 8px;
        }

        .nav-mobile-link:last-child {
            border-bottom: none;
        }

        .menu-icon {
            width: 22px;
            height: 22px;
            flex-shrink: 0;
            color: #0891b2;
            transition: all 0.3s ease;
        }

        .nav-mobile-link:hover .menu-icon {
            color: #0e7490;
            transform: scale(1.1);
        }

        /* ============================
           FOOTER
           ============================ */
        .nav-mobile-footer {
            flex-shrink: 0;
            padding: 20px 24px 32px;
            background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.6) 100%);
            opacity: 0;
            transform: translateY(30px);
            position: relative;
        }

        /* Scroll indicator - fade shadow above footer */
        .nav-mobile-footer::before {
            content: '';
            position: absolute;
            bottom: 100%;
            left: 0;
            right: 0;
            height: 60px;
            background: linear-gradient(180deg, transparent 0%, rgba(240, 253, 250, 0.95) 100%);
            pointer-events: none;
        }

        .nav-mobile.active .nav-mobile-footer {
            animation: footerSlideUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
            animation-delay: 0.6s;
        }

        @keyframes footerSlideUp {
            to { opacity: 1; transform: translateY(0); }
        }

        .footer-row {
            max-width: 400px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 12px;
        }

        .footer-cta {
            flex: 1;
            min-width: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            padding: 16px 24px;
            background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
            color: white;
            text-decoration: none;
            font-size: 1.0625rem;
            font-weight: 700;
            border-radius: 14px;
            box-shadow: 0 10px 30px -8px rgba(6,182,212,0.4);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .footer-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 40px -8px rgba(6,182,212,0.5);
        }

        .footer-cta svg {
            width: 20px;
            height: 20px;
        }

        .footer-close {
            width: 56px;
            height: 56px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 80, 100, 0.08);
            border: none;
            border-radius: 14px;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            flex-shrink: 0;
        }

        .footer-close:hover {
            background: rgba(0, 80, 100, 0.12);
            transform: scale(1.05);
        }

        .footer-close svg {
            width: 24px;
            height: 24px;
            color: #0e7490;
        }

        @supports (padding-bottom: env(safe-area-inset-bottom)) {
            .nav-mobile-footer {
                padding-bottom: calc(32px + env(safe-area-inset-bottom));
            }
        }

        /* ============================

/* ==============================
   RESPONSIVE & HEADER UPGRADES
   ============================== */

        /* ============================
           RESPONSIVE
           ============================ */
        @media (max-width: 1024px) { 
            .header-desktop { display: none; }
            .header-mobile { display: block; }
        }

        @media (min-width: 1025px) {
            .header-desktop { display: block; }
            .header-mobile { display: none !important; }
            
            /* Mobile Nav als Slide-in Fenster auf Desktop */
            .nav-mobile {
                left: auto;
                right: 0;
                width: 450px;
                transform: translateX(100%);
                opacity: 1;
                visibility: hidden;
                transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s ease;
                box-shadow: -20px 0 60px rgba(0,0,0,0.3);
                border-left: 1px solid rgba(0,0,0,0.1);
            }
            .nav-mobile.active {
                transform: translateX(0);
                visibility: visible;
            }
            
            /* Desktop Overlay für Click-Outside */
            .desktop-nav-overlay {
                display: block;
                position: fixed;
                top: 0;
                left: 0;
                right: 450px;
                bottom: 0;
                background: rgba(0,0,0,0.5);
                backdrop-filter: blur(4px);
                z-index: 1049;
                opacity: 0;
                visibility: hidden;
                transition: opacity 0.3s ease, visibility 0.3s ease;
                cursor: pointer;
            }
            .desktop-nav-overlay.active {
                opacity: 1;
                visibility: visible;
            }
        }
        
        /* Overlay auf Mobile ausblenden */
        @media (max-width: 1024px) {
            .desktop-nav-overlay {
                display: none !important;
            }
        }

        @media (min-width: 1025px) and (max-width: 1200px) {
            .nav-link { padding: 9px 14px; font-size: 0.875rem; }
            .nav-active { padding: 9px 16px; }
            .header-cta { height: 40px; padding: 0 18px; font-size: 0.8125rem; }
            .desktop-menu-toggle { width: 40px; height: 40px; }
            .logo img { height: 40px; }
        }

        @media (min-width: 1800px) { 
            .text-container { max-width: 800px; padding: 3rem 4rem 3.5rem; } 
            .headline { font-size: 4rem; } 
            .subheadline { font-size: 1.25rem; } 
            .btn { padding: 1.125rem 2rem; font-size: 1.0625rem; } 
            .services-list { gap: 24px 50px; } 
            .service-item { font-size: 1.0625rem; gap: 12px; } 
            .service-item .check { width: 28px; height: 28px; }
            .service-item .check svg { width: 15px; height: 15px; }
            .experience-badge { font-size: 1rem; padding: 16px 28px; }
            .logo img { height: 55px; } 
            .nav-link { font-size: 1rem; padding: 12px 22px; } 
            .header-cta { height: 48px; padding: 0 28px; font-size: 0.95rem; }
            .desktop-menu-toggle { width: 48px; height: 48px; } 
        }

        @media (max-width: 768px) { 
            .van-bg .desktop-img { display: none; } 
            .van-bg .mobile-img { display: block; } 
            .van-overlay { background: linear-gradient(180deg, rgba(10,15,26,0.6) 0%, rgba(10,15,26,0.1) 30%, rgba(10,15,26,0.05) 50%, rgba(10,15,26,0.4) 70%, rgba(10,15,26,0.95) 100%); } 
            .hero-content { padding: calc(70px + 4vh) 16px 0; } 
            .text-container { padding: 1.75rem 1.5rem 2rem; border-radius: 1.5rem; max-width: 100%; } 
            .logo-badge { padding: 0.625rem 1.25rem; margin-bottom: 1.25rem; } 
            .logo-badge .brand { font-size: 0.9rem; } 
            .logo-badge .location, .logo-badge .divider { display: none; } 
            .headline { font-size: clamp(1.75rem, 7vw, 2.5rem); margin-bottom: 0.875rem; } 
            .subheadline { font-size: 0.9rem; margin-bottom: 1.5rem; } 
            .cta-container { flex-direction: column; width: 100%; } 
            .btn { width: 100%; padding: 0.9rem 1.5rem; font-size: 0.9375rem; } 
            
            /* Bottom bar - relative on mobile for proper flow */
            .bottom-bar { 
                position: relative;
                padding: 24px 16px 28px; 
                margin-top: auto;
            } 
            .bottom-content { gap: 16px; flex-direction: column; align-items: center; } 
            .services-list { 
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                gap: 12px 24px; 
            }
            .service-item { font-size: 0.875rem; gap: 8px; } 
            .service-item .check { width: 24px; height: 24px; } 
            .service-item .check svg { width: 13px; height: 13px; }
            .experience-badge { padding: 12px 20px; font-size: 0.875rem; } 
            .experience-badge .icon { font-size: 1.25rem; }
            .glow-accent { width: 350px; height: 350px; top: 5%; } 
            
            /* Hero layout adjustment */
            .hero { min-height: 100vh; min-height: 100dvh; }
            .hero-content { 
                flex: 1;
                padding-bottom: 0;
            }
        }

        @media (max-width: 400px) { 
            .hero-content { padding: calc(70px + 3vh) 12px 0; } 
            .text-container { padding: 1.5rem 1.25rem 1.75rem; border-radius: 1.25rem; } 
            .logo-badge { padding: 0.5rem 1rem; } 
            .headline { font-size: 1.5rem; } 
            .subheadline { font-size: 0.85rem; } 
            .btn { padding: 0.8rem 1.25rem; font-size: 0.875rem; border-radius: 0.75rem; } 
            .bottom-bar { padding: 20px 12px 24px; } 
            .services-list { gap: 10px 20px; }
            .service-item { font-size: 0.8125rem; } 
            .service-item .check { width: 22px; height: 22px; } 
            .service-item .check svg { width: 12px; height: 12px; }
            .experience-badge { padding: 10px 16px; font-size: 0.8125rem; } 
            .mobile-logo img { height: 38px; }
            .animation-container { height: 180px; }
            .pipe-svg { width: 240px; height: 150px; }
            .menu-toggle { width: 44px; height: 44px; }
            .footer-cta { padding: 14px 20px; font-size: 1rem; }
            .footer-close { width: 52px; height: 52px; }
            .logo-toast img { height: 50px; }
            .logo-underline { width: 130px; }
        }

        @media (max-width: 340px) {
            .hero-content { padding: calc(65px + 2vh) 10px 0; }
            .text-container { padding: 1.25rem 1rem 1.5rem; }
            .headline { font-size: 1.35rem; }
            .subheadline { font-size: 0.8rem; }
            .btn { padding: 0.75rem 1rem; font-size: 0.8125rem; }
            .bottom-bar { padding: 18px 10px 22px; }
            .services-list { gap: 8px 16px; }
            .service-item { font-size: 0.75rem; }
            .service-item .check { width: 20px; height: 20px; }
            .service-item .check svg { width: 11px; height: 11px; }
            .experience-badge { padding: 8px 14px; font-size: 0.75rem; }
            .mobile-logo img { height: 34px; }
        }

        /* Stacked footer buttons on very narrow screens */
        @media (max-width: 320px) {
            .footer-row { flex-direction: column; }
            .footer-cta { width: 100%; min-width: unset; }
            .footer-close { width: 100%; height: 48px; }
        }

        @media (max-height: 700px) { 
            .animation-container { height: 160px; } 
            .pipe-svg { width: 220px; height: 140px; } 
            .logo-toast img { height: 50px; }
        }

        @media (max-height: 550px) { 
            .animation-container { height: 130px; } 
            .pipe-svg { width: 180px; height: 115px; } 
            .logo-toast img { height: 42px; }
            .logo-underline { width: 110px; }
        }

        @media (prefers-reduced-motion: reduce) { 
            *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; } 
        }

        /* ============================================
           HEADER UPGRADE - Clean Look
           ============================================ */
        
        /* LOGO TRANSITION: White → Color bei Sticky */
        .logo {
            position: relative;
            display: flex;
            align-items: center;
            height: 48px;
            text-decoration: none;
            z-index: 1001;
        }
        .logo img {
            height: 48px;
            width: auto;
            transition: opacity 0.4s ease, height 0.3s ease;
        }
        .logo .logo-white {
            display: block;
            opacity: 1;
        }
        .logo .logo-color {
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }
        
        /* Bei Scrolled: White Logo beibehalten */
        .header-desktop.scrolled .logo .logo-white {
            opacity: 1;
        }
        .header-desktop.scrolled .logo .logo-color {
            opacity: 0;
        }
        .header-desktop.scrolled .logo img {
            height: 36px;
        }
        
        /* DESKTOP HEADER - Clean Look ohne Kasten */
        .header-desktop {
            background: linear-gradient(180deg, rgba(10,15,26,0.6) 0%, rgba(10,15,26,0.2) 60%, transparent 100%);
        }
        
        .header-desktop-inner {
            padding: 20px 0;
            position: relative;
            z-index: 1;
        }
        .header-desktop.scrolled .header-desktop-inner {
            padding: 12px 0;
        }
        
        /* Header Actions Container */
        .header-actions {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        /* Desktop Hamburger Menu Button - öffnet Mobile Menu */
        .desktop-menu-toggle {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .desktop-menu-toggle:hover {
            background: rgba(255,255,255,0.1);
            border-color: rgba(255,255,255,0.2);
            transform: scale(1.05);
        }
        .desktop-menu-toggle svg {
            width: 20px;
            height: 20px;
            color: white;
            transition: all 0.3s ease;
        }
        .desktop-menu-toggle:hover svg {
            color: #22d3ee;
        }
        .header-desktop.scrolled .desktop-menu-toggle {
            background: rgba(6, 182, 212, 0.1);
            border-color: rgba(6, 182, 212, 0.2);
        }
        .header-desktop.scrolled .desktop-menu-toggle svg {
            color: #22d3ee;
        }
        
        /* ============================================
           MOBILE HEADER UPGRADE
           ============================================ */
        
        /* Mobile Logo Transition */
        .mobile-logo {
            position: relative;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .mobile-logo .logo-white,
        .mobile-logo .logo-color {
            transition: opacity 0.4s ease, transform 0.3s ease;
        }
        .mobile-logo .logo-color {
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }
        .mobile-logo .logo-white {
            opacity: 1;
        }
        .header-mobile.scrolled .mobile-logo .logo-white {
            opacity: 1;
        }
        .header-mobile.scrolled .mobile-logo .logo-color {
            opacity: 0;
        }
        
        /* Mobile Non-Sticky: Größer und luftiger */
        .header-mobile {
            padding: 12px 20px;
        }
        .header-mobile-inner {
            position: relative;
            padding: 0;
            height: 56px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        /* Menu Toggle Positioning */
        .header-mobile .menu-toggle {
            position: relative;
            right: 0;
            z-index: 10;
        }
        
        /* Mobile Actions Spacing */
        .mobile-actions {
            gap: 10px;
        }



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

/* ============================
           FOOTER
           ============================ */
        .footer {
            position: relative;
            overflow: hidden;
        }

        /* Jobs-Banner & Emergency-Strip: dunkles Design */
        .jobs-banner,
        .emergency-strip {
            color: white;
        }
        .jobs-banner h2,
        .jobs-banner h3 {
            color: white;
        }
        .jobs-banner p,
        .jobs-banner span,
        .jobs-banner .jobs-text {
            color: rgba(255, 255, 255, 0.9);
        }
        .jobs-banner .jobs-hint {
            color: rgba(255, 255, 255, 0.75);
        }

        /* Footer-Main: dark design */
        .footer-main {
            color: rgba(255, 255, 255, 0.7);
        }

        /* ============================
           JOBS BANNER
           ============================ */
        .jobs-banner {
            position: relative;
            padding: 60px 24px;
            background: linear-gradient(135deg, #0e7490 0%, #0891b2 50%, #06b6d4 100%);
            overflow: hidden;
        }

        .jobs-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(255,255,255,0.08) 0%, transparent 40%);
            pointer-events: none;
        }

        .jobs-container {
            max-width: 1100px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
            position: relative;
            z-index: 1;
        }

        .jobs-content {
            flex: 1;
        }

        .jobs-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 100px;
            font-size: 0.8125rem;
            font-weight: 700;
            color: white;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 16px;
        }

        .jobs-badge svg {
            width: 16px;
            height: 16px;
        }

        .jobs-title {
            font-size: clamp(1.5rem, 3vw, 2rem);
            font-weight: 900;
            color: white;
            margin-bottom: 12px;
        }

        .jobs-text {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.7;
            margin-bottom: 12px;
            max-width: 550px;
        }

        .jobs-hint {
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.75);
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .jobs-hint svg {
            width: 16px;
            height: 16px;
            flex-shrink: 0;
        }

        .btn-jobs {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 18px 32px;
            background: white;
            border-radius: 14px;
            font-size: 1rem;
            font-weight: 800;
            color: #0e7490;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px -8px rgba(0, 0, 0, 0.25);
            flex-shrink: 0;
        }

        .btn-jobs:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 15px 40px -8px rgba(0, 0, 0, 0.3);
        }

        .btn-jobs svg {
            width: 20px;
            height: 20px;
        }

        /* ============================
           MAIN FOOTER
           ============================ */
        .footer-main {
            background: #0a0f1a;
            padding: 64px 24px 0;
        }

        .footer-container {
            max-width: 1100px;
            margin: 0 auto;
        }

        /* Footer Grid */
        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr;
            gap: 48px;
            padding-bottom: 48px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        /* Brand Column */
        .footer-col-brand .footer-logo {
            display: inline-block;
            margin-bottom: 16px;
        }

        .footer-col-brand .footer-logo img {
            height: 40px;
            width: auto;
        }

        .footer-tagline {
            font-size: 0.9375rem;
            color: rgba(255, 255, 255, 0.45);
            line-height: 1.6;
            margin: 0 0 24px;
        }

        .footer-contact-info {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .footer-contact-info a,
        .footer-contact-info span {
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.5);
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .footer-contact-info a:hover {
            color: #22d3ee;
        }

        .footer-phone {
            font-size: 1.125rem !important;
            font-weight: 700;
            color: white !important;
            letter-spacing: 0.01em;
        }

        .footer-phone:hover {
            color: #22d3ee !important;
        }

        /* Link Columns */
        .footer-column h4 {
            font-size: 0.75rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.35);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 20px;
        }

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

        .footer-links a {
            display: inline-block;
            padding: 5px 0;
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .footer-links a:hover {
            color: white;
        }

        /* Footer Bottom */
        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 24px 0;
        }

        .footer-copyright {
            font-size: 0.8125rem;
            color: rgba(255, 255, 255, 0.3);
        }

        .footer-legal {
            display: flex;
            gap: 24px;
        }

        .footer-legal a {
            font-size: 0.8125rem;
            color: rgba(255, 255, 255, 0.3);
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .footer-legal a:hover {
            color: rgba(255, 255, 255, 0.7);
        }

        /* Notdienst Indicator */
        .footer-notdienst {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.8125rem;
            color: rgba(255, 255, 255, 0.5);
        }

        .footer-notdienst a {
            color: white;
            font-weight: 700;
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .footer-notdienst a:hover {
            color: #22d3ee;
        }

        .footer-notdienst-dot {
            display: inline-block;
            width: 8px;
            height: 8px;
            background: #ef4444;
            border-radius: 50%;
            animation: notdienst-pulse 2s ease-in-out infinite;
        }

        @keyframes notdienst-pulse {
            0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4); }
            50% { opacity: 0.6; box-shadow: 0 0 0 4px rgba(239, 68, 68, 0); }
        }

        /* ============================
           WATER PARTICLES (Jobs Banner)
           ============================ */
        .water-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            pointer-events: none;
            z-index: 0;
        }

        .jobs-banner .particle {
            position: absolute;
            width: 6px;
            height: 6px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            box-shadow: 0 0 12px rgba(255, 255, 255, 0.15);
            animation: particleFloat linear infinite;
            opacity: 0;
        }

        @keyframes particleFloat {
            0% { opacity: 0; transform: translateY(0) translateX(0); }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { opacity: 0; transform: translateY(-100vh) translateX(50px); }
        }

        .jobs-banner .particle:nth-child(1) { left: 8%; animation-duration: 18s; animation-delay: 0s; bottom: 0; }
        .jobs-banner .particle:nth-child(2) { left: 20%; animation-duration: 22s; animation-delay: 2s; width: 4px; height: 4px; bottom: 10%; }
        .jobs-banner .particle:nth-child(3) { left: 35%; animation-duration: 20s; animation-delay: 1s; width: 8px; height: 8px; bottom: 5%; }
        .jobs-banner .particle:nth-child(4) { left: 50%; animation-duration: 24s; animation-delay: 4s; bottom: 15%; }
        .jobs-banner .particle:nth-child(5) { left: 65%; animation-duration: 19s; animation-delay: 3s; width: 5px; height: 5px; bottom: 0; }
        .jobs-banner .particle:nth-child(6) { left: 80%; animation-duration: 21s; animation-delay: 2s; width: 7px; height: 7px; bottom: 8%; }

        /* ============================
           RESPONSIVE
           ============================ */
        @media (max-width: 900px) {
            .jobs-container {
                flex-direction: column;
                text-align: center;
            }

            .jobs-text {
                max-width: 100%;
            }

            .jobs-hint {
                justify-content: center;
            }

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

        @media (max-width: 600px) {
            .jobs-banner {
                padding: 50px 20px;
            }

            .jobs-title {
                font-size: 1.375rem;
            }

            .jobs-text {
                font-size: 0.9375rem;
            }

            .btn-jobs {
                width: 100%;
                justify-content: center;
                padding: 16px 24px;
            }

            .footer-main {
                padding: 48px 20px 0;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 36px;
                text-align: center;
            }

            .footer-col-brand {
                text-align: center;
            }

            .footer-col-brand .footer-logo {
                display: flex;
                justify-content: center;
            }

            .footer-tagline {
                margin-left: auto;
                margin-right: auto;
                max-width: 300px;
            }

            .footer-contact-info {
                align-items: center;
            }

            .footer-links {
                align-items: center;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 16px;
                text-align: center;
            }

            .footer-notdienst {
                justify-content: center;
            }
        }

        @media (max-width: 400px) {
            .jobs-banner {
                padding: 40px 16px;
            }

            .jobs-badge {
                font-size: 0.75rem;
            }

            .jobs-title {
                font-size: 1.25rem;
            }

            .jobs-text,
            .jobs-hint {
                font-size: 0.875rem;
            }

            .footer-main {
                padding: 40px 16px 0;
            }

            .footer-column h4 {
                font-size: 0.6875rem;
            }

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

            .footer-copyright,
            .footer-legal a,
            .footer-notdienst {
                font-size: 0.75rem;
            }

            .footer-legal {
                gap: 16px;
            }
        }
