/* Nunito — latin-ext (Hausschrift, self-hosted) */
        @font-face {
            font-family: 'Nunito';
            font-style: normal;
            font-weight: 300 700;
            font-display: swap;
            src: url(../fonts/nunito-latin-ext.woff2) format('woff2');
            unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
        }
        /* Nunito — latin (Hausschrift, self-hosted) */
        @font-face {
            font-family: 'Nunito';
            font-style: normal;
            font-weight: 300 700;
            font-display: swap;
            src: url(../fonts/nunito-latin.woff2) format('woff2');
            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+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
        }
        :root {
            --primary-dark: #1d2b62;
            --primary: #2a3d8c;
            --primary-light: #3d52ad;
            --accent-green: #03a64e;
            --accent-green-light: #25bc66;
            --accent-green-dark: #02863f;
            --text-dark: #1a1a2e;
            --text-medium: #4a4a5a;
            --text-light: #6b7280;
            --bg-white: #ffffff;
            --bg-light: #f8f9fc;
            --bg-section: #f0f2f8;
            --border-light: #e2e6ef;
            --shadow-sm: 0 1px 3px rgba(26, 39, 68, 0.08);
            --shadow-md: 0 4px 16px rgba(26, 39, 68, 0.1);
            --shadow-lg: 0 8px 32px rgba(26, 39, 68, 0.12);
            --shadow-xl: 0 16px 48px rgba(26, 39, 68, 0.16);
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --radius-xl: 24px;
        }

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

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 80px;
        }

        body {
            font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            background: var(--bg-white);
            -webkit-font-smoothing: antialiased;
        }

        /* ===== NAVIGATION ===== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(29, 43, 98, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            background: rgba(29, 43, 98, 0.98);
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            color: #fff;
        }

        .nav-logo img {
            height: 40px;
            width: auto;
            object-fit: contain;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 4px;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: rgba(255, 255, 255, 0.8);
            font-size: 14px;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: var(--radius-sm);
            transition: all 0.2s ease;
        }

        .nav-links a:hover {
            color: #fff;
            background: rgba(255, 255, 255, 0.1);
        }

        .nav-cta {
            background: var(--accent-green) !important;
            color: #fff !important;
            padding: 10px 20px !important;
            font-weight: 600 !important;
        }

        .nav-cta:hover {
            background: var(--accent-green-light) !important;
        }

        .nav-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 4px;
        }

        .nav-toggle span {
            display: block;
            width: 24px;
            height: 2px;
            background: #fff;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        /* ===== HERO ===== */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 80%;
            height: 200%;
            background: radial-gradient(circle, rgba(74, 140, 92, 0.15) 0%, transparent 60%);
            pointer-events: none;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 120px;
            background: linear-gradient(to top, var(--bg-white), transparent);
            pointer-events: none;
        }

        .hero-grid {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
            background-size: 60px 60px;
            pointer-events: none;
        }

        .hero-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 120px 24px 48px;
            display: grid;
            grid-template-columns: 1.1fr 1fr;
            gap: 64px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-stats-row {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px 96px;
            position: relative;
            z-index: 1;
        }

        .scroll-indicator {
            position: fixed;
            bottom: 24px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 90;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            color: #fff;
            text-decoration: none;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            padding: 10px 14px;
            border-radius: 999px;
            background: rgba(26, 41, 72, 0.55);
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
            animation: scroll-fade 2.4s ease-in-out infinite;
            transition: opacity 0.35s ease, visibility 0.35s ease;
        }

        .scroll-indicator.is-hidden {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }

        .scroll-indicator:hover {
            color: #fff;
        }

        .scroll-indicator .mouse {
            width: 26px;
            height: 42px;
            border: 2px solid currentColor;
            border-radius: 14px;
            position: relative;
        }

        .scroll-indicator .mouse::before {
            content: '';
            position: absolute;
            top: 7px;
            left: 50%;
            transform: translateX(-50%);
            width: 3px;
            height: 7px;
            background: currentColor;
            border-radius: 2px;
            animation: scroll-wheel 1.8s ease-in-out infinite;
        }

        @keyframes scroll-wheel {
            0%   { transform: translate(-50%, 0); opacity: 1; }
            60%  { transform: translate(-50%, 14px); opacity: 0; }
            100% { transform: translate(-50%, 0); opacity: 0; }
        }

        @keyframes scroll-fade {
            0%, 100% { opacity: 0.6; }
            50%      { opacity: 1; }
        }

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

        .hero-content {
            color: #fff;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(74, 140, 92, 0.2);
            border: 1px solid rgba(74, 140, 92, 0.3);
            padding: 6px 16px;
            border-radius: 100px;
            font-size: 13px;
            font-weight: 500;
            color: var(--accent-green-light);
            margin-bottom: 24px;
        }

        .hero-badge::before {
            content: '';
            width: 6px;
            height: 6px;
            background: var(--accent-green-light);
            border-radius: 50%;
        }

        .hero h1 {
            font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
            font-size: clamp(36px, 5vw, 56px);
            font-weight: 700;
            line-height: 1.15;
            margin-bottom: 24px;
            letter-spacing: -0.5px;
        }

        .hero h1 .highlight {
            background: linear-gradient(135deg, var(--accent-green-light), #5ad98e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 18px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.75);
            margin-bottom: 40px;
            max-width: 520px;
        }

        .hero-actions {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 28px;
            border-radius: var(--radius-sm);
            font-size: 15px;
            font-weight: 600;
            text-decoration: none;
            border: none;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .btn-primary {
            background: var(--accent-green);
            color: #fff;
            box-shadow: 0 4px 16px rgba(74, 140, 92, 0.4);
        }

        .btn-primary:hover {
            background: var(--accent-green-light);
            transform: translateY(-2px);
            box-shadow: 0 6px 24px rgba(74, 140, 92, 0.5);
        }

        .btn-outline {
            background: transparent;
            color: #fff;
            border: 1.5px solid rgba(255, 255, 255, 0.3);
        }

        .btn-outline:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.5);
        }

        .hero-visual {
            position: relative;
        }

        .hero-mascot {
            display: block;
            width: 100%;
            max-width: 480px;
            aspect-ratio: 1 / 1;
            margin: 0 auto 36px;
            border-radius: 28px;
            object-fit: cover;
            border: 4px solid rgba(255, 255, 255, 0.15);
            box-shadow: 0 28px 70px rgba(0, 0, 0, 0.4),
                        0 0 0 10px rgba(74, 140, 92, 0.12);
            animation: mascot-float 5s ease-in-out infinite;
        }

        @keyframes mascot-float {
            0%, 100% { transform: translateY(0); }
            50%      { transform: translateY(-10px); }
        }

        .hero-keywords {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 16px 28px;
        }

        .hero-keyword {
            font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
            font-size: clamp(16px, 1.8vw, 22px);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }

        .hero-keyword.green {
            color: var(--accent-green-light);
        }

        .hero-keyword.white {
            color: #fff;
        }

        .hero-keyword.light {
            color: rgba(255, 255, 255, 0.5);
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 0;
        }

        .hero-stat {
            text-align: center;
            padding: 20px;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-md);
        }

        .hero-stat-number {
            font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
            font-size: 28px;
            font-weight: 700;
            color: var(--accent-green-light);
        }

        .hero-stat-label {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.6);
            margin-top: 4px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* ===== SECTIONS ===== */
        .section {
            padding: 100px 24px;
        }

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

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

        .section-header {
            text-align: center;
            max-width: 680px;
            margin: 0 auto 64px;
        }

        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--accent-green);
            margin-bottom: 16px;
        }

        .section-label::before,
        .section-label::after {
            content: '';
            width: 20px;
            height: 1.5px;
            background: var(--accent-green);
            opacity: 0.4;
        }

        .section-title {
            font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
            font-size: clamp(28px, 3.5vw, 40px);
            font-weight: 700;
            color: var(--primary-dark);
            line-height: 1.25;
            margin-bottom: 16px;
        }

        .section-desc {
            font-size: 17px;
            color: var(--text-light);
            line-height: 1.7;
        }

        /* ===== PRODUCTS ===== */
        .products-grid {
            display: flex;
            flex-direction: column;
            gap: 48px;
        }

        .product-group {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .product-group-modules {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-top: -1px;
            padding: 24px 24px 24px 24px;
            background: linear-gradient(to bottom, var(--bg-section), var(--bg-white));
            border: 1px solid var(--border-light);
            border-top: none;
            border-radius: 0 0 var(--radius-lg) var(--radius-lg);
        }

        .product-group-modules-label {
            grid-column: 1 / -1;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--accent-green);
            padding-bottom: 8px;
            border-bottom: 1px solid var(--border-light);
            margin-bottom: 4px;
        }

        .product-card--module {
            display: flex;
            flex-direction: column;
            background: var(--bg-white);
            border-radius: var(--radius-md);
            overflow: hidden;
            border: 1px solid var(--border-light);
            border-left: 3px solid var(--accent-green);
            transition: all 0.3s ease;
        }

        .product-card--module:hover {
            box-shadow: var(--shadow-lg);
            border-color: var(--border-light);
            border-left-color: var(--accent-green);
            transform: translateY(-2px);
        }

        .product-card--module .product-card-image {
            min-height: 200px;
            height: 200px;
        }

        .product-card--module .product-card-body {
            padding: 20px 24px;
        }

        .product-card--module .product-card-title {
            font-size: 18px;
            margin-bottom: 2px;
        }

        .product-card--module .product-card-tagline {
            font-size: 13px;
            margin-bottom: 12px;
        }

        .product-card--module .product-card-desc {
            font-size: 14px;
            margin-bottom: 14px;
        }

        .product-card--module .product-features {
            grid-template-columns: 1fr;
            gap: 6px;
        }

        .product-card--module .product-features li {
            font-size: 12px;
        }

        @media (max-width: 768px) {
            .product-group-modules {
                grid-template-columns: 1fr;
            }
        }

        .product-card {
            display: grid;
            grid-template-columns: 1fr 1fr;
            background: var(--bg-white);
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 1px solid var(--border-light);
            transition: all 0.3s ease;
        }

        .product-card:nth-child(even) {
            direction: rtl;
        }

        .product-card:nth-child(even) > * {
            direction: ltr;
        }

        .product-card:hover {
            box-shadow: var(--shadow-xl);
            border-color: transparent;
        }

        .product-card-image {
            position: relative;
            min-height: 360px;
            overflow: hidden;
            background: var(--bg-white);
            cursor: pointer;
        }

        .product-card-image img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top left;
            transition: transform 0.4s ease;
        }

        .product-card:hover .product-card-image img {
            transform: scale(1.03);
        }

        .product-card-image::after {
            content: '🔍 Klicken zum Vergrößern';
            position: absolute;
            bottom: 12px;
            right: 12px;
            background: rgba(26, 41, 72, 0.75);
            color: #fff;
            font-size: 12px;
            padding: 6px 12px;
            border-radius: 6px;
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

        .product-card-image:hover::after {
            opacity: 1;
        }

        /* Lightbox */
        .lightbox {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 3000;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
            align-items: center;
            justify-content: center;
            padding: 24px;
            cursor: pointer;
        }

        .lightbox.is-open {
            display: flex;
        }

        .lightbox img {
            max-width: 95%;
            max-height: 90vh;
            object-fit: contain;
            border-radius: 12px;
            box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
        }

        .lightbox-close {
            position: absolute;
            top: 24px;
            right: 32px;
            background: none;
            border: none;
            color: #fff;
            font-size: 36px;
            cursor: pointer;
            line-height: 1;
            opacity: 0.8;
            transition: opacity 0.2s;
        }

        .lightbox-close:hover {
            opacity: 1;
        }


        .product-card-body {
            padding: 32px;
        }

        .product-brand-logo {
            display: block;
            height: 34px;
            width: auto;
            margin-bottom: 12px;
        }

        .iq-cta-row {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-top: 24px;
        }

        .iq-info {
            flex: 1;
            padding: 16px 22px;
            background: #d9f1e4;
            border-radius: var(--radius-md);
        }

        .iq-info p {
            font-size: 14px;
            line-height: 1.5;
            color: var(--text-dark);
            margin-bottom: 6px;
        }

        .iq-mascot {
            width: 160px;
            height: auto;
            flex-shrink: 0;
        }

        .iq-info-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-weight: 700;
            color: var(--accent-green-dark);
            text-decoration: none;
            transition: gap 0.2s ease;
        }

        .iq-info-link:hover {
            gap: 11px;
        }

        .product-more {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 18px;
            font-weight: 700;
            color: var(--accent-green);
            text-decoration: none;
            transition: gap 0.2s ease;
        }

        .product-more:hover {
            gap: 12px;
            color: var(--accent-green-dark);
        }

        .product-card-title {
            font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .product-card-title .prefix {
            color: var(--accent-green);
        }

        .product-card-tagline {
            font-size: 14px;
            color: var(--text-light);
            font-style: italic;
            margin-bottom: 16px;
        }

        .product-card-desc {
            font-size: 15px;
            color: var(--text-medium);
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .product-features {
            list-style: none;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px;
        }

        .product-features li {
            font-size: 13px;
            color: var(--text-medium);
            display: flex;
            align-items: flex-start;
            gap: 8px;
        }

        .product-features li::before {
            content: '';
            flex-shrink: 0;
            width: 18px;
            height: 18px;
            margin-top: 2px;
            background: var(--accent-green);
            -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='currentColor'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z'/%3E%3C/svg%3E") center/contain no-repeat;
            mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='currentColor'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z'/%3E%3C/svg%3E") center/contain no-repeat;
        }

        /* ===== ABOUT ===== */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .about-content h3 {
            font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
            font-size: 32px;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 20px;
        }

        .about-content p {
            font-size: 16px;
            color: var(--text-medium);
            line-height: 1.8;
            margin-bottom: 16px;
        }

        .about-list {
            list-style: none;
            margin-top: 24px;
        }

        .about-list li {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            padding: 16px 0;
            border-bottom: 1px solid var(--border-light);
        }

        .about-list li:last-child {
            border-bottom: none;
        }

        .about-list-icon {
            flex-shrink: 0;
            width: 44px;
            height: 44px;
            background: linear-gradient(135deg, rgba(74, 140, 92, 0.1), rgba(74, 140, 92, 0.05));
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .about-list-icon svg {
            width: 22px;
            height: 22px;
            color: var(--accent-green);
        }

        .about-list-text {
            font-size: 15px;
            color: var(--text-medium);
            line-height: 1.6;
        }

        .about-visual {
            position: relative;
        }

        .about-card {
            background: linear-gradient(135deg, var(--primary-dark), var(--primary));
            border-radius: var(--radius-xl);
            padding: 48px;
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .about-card::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -20%;
            width: 60%;
            height: 160%;
            background: radial-gradient(circle, rgba(74, 140, 92, 0.2) 0%, transparent 60%);
        }

        .about-card-quote {
            font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
            font-size: 20px;
            line-height: 1.6;
            margin-bottom: 32px;
            position: relative;
            z-index: 1;
        }

        .about-card-author {
            display: flex;
            align-items: center;
            gap: 16px;
            position: relative;
            z-index: 1;
        }

        .about-card-avatar {
            width: 90px;
            height: 90px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.15);
            overflow: hidden;
            flex-shrink: 0;
            border: 2px solid rgba(255, 255, 255, 0.25);
        }

        .about-card-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center top;
            display: block;
        }

        .about-card-name {
            font-weight: 600;
            font-size: 16px;
        }

        .about-card-role {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.6);
        }

        /* ===== TEAM ===== */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 28px;
        }

        .team-card {
            background: var(--bg-white);
            border: 1px solid var(--border-light);
            border-radius: var(--radius-lg);
            padding: 24px 20px 28px;
            text-align: center;
            transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
        }

        .team-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
            border-color: rgba(74, 140, 92, 0.3);
        }

        .team-photo {
            width: 100%;
            aspect-ratio: 1 / 1;
            border-radius: var(--radius-md);
            background: #e8eaf0;
            overflow: hidden;
            margin-bottom: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .team-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 20%;
            display: block;
        }

        .team-photo.is-placeholder img {
            object-fit: contain;
            object-position: center;
        }

        .team-name {
            font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
            font-size: 17px;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 6px;
            line-height: 1.3;
        }

        .team-role {
            font-size: 13px;
            color: var(--accent-green-dark);
            font-weight: 500;
            letter-spacing: 0.02em;
        }

        @media (max-width: 1024px) {
            .team-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 720px) {
            .team-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 18px;
            }
        }

        @media (max-width: 420px) {
            .team-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ===== ADVANTAGES ===== */
        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .advantage-card {
            background: var(--bg-white);
            border: 1px solid var(--border-light);
            border-radius: var(--radius-md);
            padding: 32px;
            transition: all 0.3s ease;
        }

        .advantage-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
            border-color: transparent;
        }

        .advantage-icon {
            width: 52px;
            height: 52px;
            background: linear-gradient(135deg, rgba(74, 140, 92, 0.12), rgba(74, 140, 92, 0.04));
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .advantage-icon svg {
            width: 26px;
            height: 26px;
            color: var(--accent-green);
        }

        .advantage-title {
            font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
            font-size: 18px;
            font-weight: 600;
            color: var(--primary-dark);
            margin-bottom: 10px;
        }

        .advantage-desc {
            font-size: 14px;
            color: var(--text-light);
            line-height: 1.7;
        }

        /* ===== CONTACT ===== */
        .contact-wrapper {
            background: linear-gradient(135deg, var(--primary-dark), var(--primary));
            border-radius: var(--radius-xl);
            padding: 80px;
            position: relative;
            overflow: hidden;
        }

        .contact-wrapper::before {
            content: '';
            position: absolute;
            top: -40%;
            right: -10%;
            width: 50%;
            height: 180%;
            background: radial-gradient(circle, rgba(74, 140, 92, 0.15) 0%, transparent 60%);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            position: relative;
            z-index: 1;
        }

        .contact-content {
            color: #fff;
        }

        .contact-content h3 {
            font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .contact-content p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 16px;
            line-height: 1.7;
            margin-bottom: 40px;
        }

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

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

        .contact-item-icon {
            flex-shrink: 0;
            width: 44px;
            height: 44px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .contact-item-icon svg {
            width: 20px;
            height: 20px;
            color: var(--accent-green-light);
        }

        .contact-item-label {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.5);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 4px;
        }

        .contact-item-value {
            color: #fff;
            font-size: 16px;
            font-weight: 500;
        }

        .contact-item-value a {
            color: #fff;
            text-decoration: none;
            transition: color 0.2s;
        }

        .contact-item-value a:hover {
            color: var(--accent-green-light);
        }

        .contact-form-card {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: var(--radius-lg);
            padding: 40px;
        }

        .contact-form-title {
            font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
            font-size: 20px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 24px;
        }

        .form-group {
            margin-bottom: 16px;
        }

        .form-group label {
            display: block;
            font-size: 13px;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 6px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 16px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: var(--radius-sm);
            color: #fff;
            font-family: inherit;
            font-size: 15px;
            transition: border-color 0.2s;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255, 255, 255, 0.35);
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent-green-light);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }

        .btn-form {
            width: 100%;
            padding: 14px;
            background: var(--accent-green);
            color: #fff;
            border: none;
            border-radius: var(--radius-sm);
            font-family: inherit;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
        }

        .btn-form:hover {
            background: var(--accent-green-light);
        }

        /* ===== FEATURED PARTNER ===== */
        .partner-featured {
            position: relative;
            display: grid;
            grid-template-columns: 1.3fr 1fr;
            gap: 48px;
            align-items: center;
            margin-top: 48px;
            padding: 56px 56px;
            background: var(--primary-dark);
            border-radius: var(--radius-lg);
            color: #fff;
            overflow: hidden;
            text-decoration: none;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            isolation: isolate;
        }

        .partner-featured-video {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -2;
            pointer-events: none;
        }

        .partner-featured::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(26, 41, 72, 0.82) 0%, rgba(45, 74, 107, 0.78) 100%);
            z-index: -1;
            pointer-events: none;
        }

        .partner-featured::after {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
            background-size: 48px 48px;
            pointer-events: none;
        }

        .partner-featured-logo {
            display: block;
            width: 220px;
            max-width: 60%;
            height: auto;
            margin-bottom: 20px;
        }

        .partner-featured:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 48px rgba(26, 41, 72, 0.25);
        }

        .partner-featured-content {
            position: relative;
            z-index: 1;
        }

        .partner-featured-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--accent-green-light);
            margin-bottom: 20px;
            padding: 6px 14px;
            background: rgba(74, 140, 92, 0.18);
            border: 1px solid rgba(74, 140, 92, 0.4);
            border-radius: 100px;
        }

        .partner-featured h3 {
            font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
            font-size: clamp(24px, 2.6vw, 34px);
            font-weight: 700;
            line-height: 1.2;
            margin: 0 0 16px;
            color: #fff;
        }

        .partner-featured h3 .accent {
            color: var(--accent-green-light);
        }

        .partner-featured-tagline {
            font-size: 16px;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.85);
            margin: 0 0 28px;
            max-width: 560px;
        }

        .partner-featured-cta {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 26px;
            background: var(--accent-green);
            color: #fff;
            border-radius: var(--radius-md);
            font-weight: 600;
            font-size: 15px;
            transition: background 0.2s ease, transform 0.2s ease;
        }

        .partner-featured:hover .partner-featured-cta {
            background: var(--accent-green-light);
            transform: translateX(4px);
        }

        .partner-featured-visual {
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .partner-featured-stat {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 16px 20px;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: var(--radius-md);
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
        }

        .partner-featured-stat-num {
            font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
            font-size: 32px;
            font-weight: 700;
            color: var(--accent-green-light);
            line-height: 1;
            min-width: 48px;
        }

        .partner-featured-stat-text {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.4;
        }

        @media (max-width: 860px) {
            .partner-featured {
                grid-template-columns: 1fr;
                padding: 40px 32px;
                gap: 32px;
            }
        }

        /* ===== PARTNER / LINKS ===== */
        .partners-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 16px;
            margin-top: 48px;
        }

        .partner-card {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 20px 22px;
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            text-decoration: none;
            color: var(--primary-dark);
            transition: all 0.25s ease;
            position: relative;
            overflow: hidden;
        }

        .partner-card::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: var(--accent-green);
            transform: scaleY(0);
            transform-origin: bottom;
            transition: transform 0.25s ease;
        }

        .partner-card:hover {
            border-color: var(--accent-green);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(26, 41, 72, 0.08);
        }

        .partner-card:hover::before {
            transform: scaleY(1);
            transform-origin: top;
        }

        .partner-card-icon {
            flex-shrink: 0;
            width: 36px;
            height: 36px;
            border-radius: 8px;
            background: rgba(74, 140, 92, 0.1);
            color: var(--accent-green);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .partner-card-icon svg {
            width: 18px;
            height: 18px;
        }

        .partner-card-logo {
            flex-shrink: 0;
            width: 160px;
            height: 88px;
            display: flex;
            align-items: center;
            justify-content: center;
            filter: grayscale(30%);
            transition: filter 0.25s ease;
        }

        .partner-card:hover .partner-card-logo {
            filter: grayscale(0%);
        }

        .partner-card-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        .partner-card-logo.is-inverted img {
            filter: invert(1);
        }

        .partner-card:hover .partner-card-logo.is-inverted img {
            filter: invert(1);
        }

        .partner-card-name {
            font-size: 15px;
            font-weight: 600;
            line-height: 1.3;
        }

        /* ===== WHATSAPP CHAT BUBBLE ===== */
        .wa-bubble {
            position: fixed;
            top: 50%;
            right: 28px;
            z-index: 100;
        }

        .wa-bubble-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: #25D366;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .wa-bubble-btn:hover {
            transform: scale(1.08);
            box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
        }

        .wa-bubble-btn svg {
            width: 32px;
            height: 32px;
            fill: #fff;
        }

        .wa-chat {
            display: none;
            position: absolute;
            bottom: 72px;
            right: 0;
            width: 340px;
            background: #fff;
            border-radius: 16px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
            overflow: hidden;
            animation: wa-slide-up 0.25s ease;
        }

        .wa-chat.is-open {
            display: block;
        }

        @keyframes wa-slide-up {
            from { opacity: 0; transform: translateY(12px); }
            to   { opacity: 1; transform: translateY(0); }
        }

        .wa-chat-header {
            background: #075E54;
            color: #fff;
            padding: 16px 20px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .wa-chat-header-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #25D366;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .wa-chat-header-avatar svg {
            width: 22px;
            height: 22px;
            fill: #fff;
        }

        .wa-chat-header-info {
            flex: 1;
        }

        .wa-chat-header-name {
            font-weight: 700;
            font-size: 15px;
        }

        .wa-chat-header-status {
            font-size: 12px;
            opacity: 0.85;
        }

        .wa-chat-header-close {
            background: none;
            border: none;
            color: #fff;
            font-size: 22px;
            cursor: pointer;
            opacity: 0.8;
            line-height: 1;
        }

        .wa-chat-header-close:hover {
            opacity: 1;
        }

        .wa-chat-body {
            padding: 20px;
            background: #ECE5DD;
            min-height: 80px;
        }

        .wa-chat-msg {
            background: #fff;
            border-radius: 0 12px 12px 12px;
            padding: 10px 14px;
            font-size: 14px;
            line-height: 1.5;
            color: #333;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
            max-width: 85%;
        }

        .wa-chat-msg-time {
            font-size: 11px;
            color: #999;
            text-align: right;
            margin-top: 4px;
        }

        .wa-chat-input {
            display: flex;
            gap: 8px;
            padding: 12px 16px;
            background: #f0f0f0;
            border-top: 1px solid #ddd;
        }

        .wa-chat-input input {
            flex: 1;
            border: none;
            border-radius: 20px;
            padding: 10px 16px;
            font-size: 14px;
            background: #fff;
            outline: none;
        }

        .wa-chat-input button {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: none;
            background: #25D366;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: background 0.2s;
        }

        .wa-chat-input button:hover {
            background: #1ebe5a;
        }

        .wa-chat-input button svg {
            width: 20px;
            height: 20px;
            fill: #fff;
        }

        @media (max-width: 480px) {
            .wa-chat {
                width: calc(100vw - 32px);
                right: -12px;
            }
        }

        /* ===== KÖLN BANNER ===== */
        .koeln-banner {
            position: relative;
            width: 100%;
            height: 280px;
            overflow: hidden;
            background: var(--primary-dark);
        }

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

        .koeln-banner::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, rgba(26, 41, 72, 0.35) 0%, rgba(26, 41, 72, 0.75) 100%);
            pointer-events: none;
        }

        .koeln-banner-content {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
            padding: 24px;
            z-index: 1;
        }

        .koeln-banner-content .eyebrow {
            font-size: 17px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #fff;
            margin-bottom: 12px;
        }

        .koeln-banner-content h2 {
            font-size: clamp(28px, 4vw, 44px);
            font-weight: 700;
            margin: 0 0 8px;
            line-height: 1.15;
        }

        .koeln-banner-content p {
            font-size: 16px;
            opacity: 0.9;
            max-width: 640px;
            margin: 0;
        }

        @media (max-width: 768px) {
            .koeln-banner { height: 220px; }
        }

        /* ===== FOOTER ===== */
        .footer {
            background: var(--primary-dark);
            color: rgba(255, 255, 255, 0.6);
            padding: 64px 24px 32px;
        }

        .footer-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 48px;
            margin-bottom: 48px;
        }

        .footer-brand {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .footer-brand-name {
            display: block;
        }

        .footer-brand-name img {
            height: 38px;
            width: auto;
            object-fit: contain;
        }

        .footer-brand p {
            font-size: 14px;
            line-height: 1.7;
        }

        .footer-col h4 {
            color: #fff;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }

        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .footer-col a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.2s;
        }

        .footer-col a:hover {
            color: var(--accent-green-light);
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            padding-top: 32px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
        }

        .footer-bottom a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer-bottom a:hover {
            color: var(--accent-green-light);
        }

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

        /* ===== REVEAL ANIMATION ===== */
        .reveal-on-scroll {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .reveal-on-scroll.revealed {
            opacity: 1;
            transform: translateY(0);
        }

        /* ===== MOBILE NAV ===== */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 72px;
            left: 0;
            right: 0;
            background: var(--primary-dark);
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding: 16px 24px 24px;
            z-index: 999;
        }

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

        .mobile-menu a {
            display: block;
            padding: 12px 0;
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

        .mobile-menu a:last-child {
            border-bottom: none;
        }

        .mobile-menu a:hover {
            color: var(--accent-green-light);
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .hero-container {
                grid-template-columns: 1fr;
                gap: 48px;
                text-align: center;
            }

            .hero-subtitle {
                margin-left: auto;
                margin-right: auto;
            }

            .hero-actions {
                justify-content: center;
            }

            .product-card {
                grid-template-columns: 1fr;
            }

            .product-card:nth-child(even) {
                direction: ltr;
            }

            .product-card-image {
                min-height: 220px;
            }

            .about-grid {
                grid-template-columns: 1fr;
                gap: 48px;
            }

            .contact-grid {
                grid-template-columns: 1fr;
                gap: 48px;
            }

            .contact-wrapper {
                padding: 48px;
            }

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

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

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

            .nav-toggle {
                display: flex;
            }

            .hero {
                min-height: auto;
                padding-top: 40px;
            }

            .hero-container {
                padding: 100px 24px 60px;
            }

            .hero-stats {
                grid-template-columns: repeat(3, 1fr);
                gap: 12px;
            }

            .hero-stat {
                padding: 16px 8px;
            }

            .hero-stat-number {
                font-size: 22px;
            }

            .section {
                padding: 64px 24px;
            }

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

            .product-features {
                grid-template-columns: 1fr;
            }

            .contact-wrapper {
                padding: 32px;
                border-radius: var(--radius-lg);
            }

            .contact-form-card {
                padding: 24px;
            }

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

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

        @media (max-width: 480px) {
            .hero-keyword {
                font-size: 24px;
            }

            .hero-stats {
                grid-template-columns: 1fr;
            }
        }
