:root {
            --gold-primary: #A27C2E;
            --gold-dark: #9E7428;
            --gold-light: #E6D94C;
            --black-bg: #0a0a0a;
            --black-card: #111111;
            --black-light: #1a1a1a;
            --white: #ffffff;
            --white-80: rgba(255, 255, 255, 0.8);
            --white-60: rgba(255, 255, 255, 0.6);
            --white-40: rgba(255, 255, 255, 0.4);
        }
        
        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            background: var(--black-bg);
            color: var(--white);
            line-height: 1.6;
        }
        
        h1, h2, h3, h4 { font-family: 'Playfair Display', serif; }
        
        .text-gradient {
            background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        
        /* Scroll Reveal Animation */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }
        
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }
        
        .reveal-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.6s ease;
        }
        
        .reveal-left.active {
            opacity: 1;
            transform: translateX(0);
        }
        
        .reveal-right {
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.6s ease;
        }
        
        .reveal-right.active {
            opacity: 1;
            transform: translateX(0);
        }
        
        .reveal-scale {
            opacity: 0;
            transform: scale(0.9);
            transition: all 0.6s ease;
        }
        
        .reveal-scale.active {
            opacity: 1;
            transform: scale(1);
        }
        
        /* Header - Minimal Style */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 20px 40px;
            background: transparent;
            transition: all 0.3s ease;
        }
        
        .header.scrolled {
            background: rgba(10, 10, 10, 0.9);
            backdrop-filter: blur(20px);
            padding: 15px 40px;
            border-bottom: 1px solid rgba(162, 124, 46, 0.1);
        }
        
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .logo { 
            display: flex;
            align-items: center;
        }
        
        .nav-menu { 
            display: flex; 
            gap: 35px; 
            list-style: none; 
        }
        
        .nav-menu a { 
            color: var(--white-80); 
            text-decoration: none; 
            font-size: 15px;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .nav-menu a:hover { 
            color: var(--gold-primary); 
        }
        
        /* Hero - ATOBU Style mit Gold Branding */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 120px 0 80px;
            position: relative;
            overflow: hidden;
        }
        
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(162, 124, 46, 0.15);
            border: 1px solid rgba(162, 124, 46, 0.3);
            padding: 8px 16px;
            border-radius: 30px;
            font-size: 13px;
            color: var(--gold-primary);
            margin-bottom: 25px;
        }
        
        .hero-badge svg {
            width: 14px;
            height: 14px;
        }
        
        .badge-highlight {
            color: var(--gold-primary);
            font-weight: 600;
        }
        
        .text-gold {
            color: var(--gold-primary);
            font-weight: 600;
        }
        
        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .hero-content h1 {
            font-family: 'Inter', sans-serif;
            font-size: 56px;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: -1px;
            color: var(--white);
        }
        
        .hero-content h1 .highlight-box {
            background: var(--gold-primary);
            color: var(--black-bg);
            padding: 0 12px;
            border-radius: 4px;
        }
        
        .hero-subtitle {
            font-size: 16px;
            color: var(--white-60);
            margin-bottom: 25px;
            line-height: 1.6;
            max-width: 500px;
        }
        
        .hero-badges-row {
            display: flex;
            gap: 30px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }
        
        .hero-check {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: var(--white-60);
        }
        
        .hero-check svg {
            width: 18px;
            height: 18px;
            color: var(--gold-primary);
            flex-shrink: 0;
        }
        
        .btn-gold {
            background: var(--gold-primary);
            color: var(--black-bg);
            padding: 14px 28px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s;
        }
        
        .btn-gold:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(162, 124, 46, 0.4);
        }
        
        .hero-buttons {
            display: flex;
            gap: 15px;
            margin-bottom: 40px;
        }
        
        .btn-primary {
            background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
            color: var(--black-bg);
            padding: 14px 28px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s;
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(162, 124, 46, 0.3);
        }
        
        .btn-secondary {
            background: transparent;
            color: var(--white);
            padding: 14px 28px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            border: 1px solid rgba(255,255,255,0.2);
            transition: all 0.3s;
        }
        
        .btn-secondary:hover {
            border-color: var(--gold-primary);
            color: var(--gold-primary);
        }
        
        .hero-usps {
            display: flex;
            flex-direction: column;
            gap: 12px;
            align-items: flex-start;
        }
        
        .hero-usp {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            color: var(--white-80);
            font-size: 15px;
            text-align: left;
        }
        
        .hero-usp span {
            line-height: 1.5;
        }
        
        .hero-usp-icon {
            width: 22px;
            height: 22px;
            background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .hero-usp-icon svg {
            width: 12px;
            height: 12px;
            color: var(--black-bg);
        }
        
        .hero-visual {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .hero-video-container {
            position: relative;
            width: 100%;
            max-width: 500px;
            aspect-ratio: 16/10;
            border-radius: 20px;
            overflow: hidden;
            background: linear-gradient(135deg, rgba(162,124,46,0.1), rgba(158,116,40,0.05));
            border: 1px solid rgba(162,124,46,0.2);
        }
        
        .hero-video-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 70px;
            height: 70px;
            background: rgba(255,255,255,0.95);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 10px 40px rgba(0,0,0,0.3);
        }
        
        .play-button:hover {
            transform: translate(-50%, -50%) scale(1.05);
            background: var(--gold-primary);
        }
        
        .play-button svg {
            width: 24px;
            height: 24px;
            color: var(--black-bg);
            margin-left: 4px;
        }
        
        /* BAFA Verifizierte Section */
        .bafa-verified-section {
            padding: 15px 0;
            background: var(--black-bg);
        }
        
        .bafa-verified-badge {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            background: linear-gradient(135deg, rgba(162,124,46,0.08), rgba(158,116,40,0.03));
            border: 1px solid rgba(162,124,46,0.15);
            border-radius: 16px;
            padding: 20px 35px;
            max-width: 420px;
            margin: 0 auto;
        }
        
        .bafa-verified-icon {
            flex-shrink: 0;
        }
        
        .bafa-verified-flag {
            display: flex;
            flex-direction: column;
            width: 4px;
            height: 45px;
            border-radius: 2px;
            overflow: hidden;
            flex-shrink: 0;
        }
        
        .flag-stripe {
            flex: 1;
        }
        .flag-stripe.black { background: #000; }
        .flag-stripe.red { background: #DD0000; }
        .flag-stripe.gold { background: #FFCE00; }
        
        .bafa-verified-text {
            text-align: left;
        }
        
        .bafa-verified-label {
            font-size: 11px;
            color: var(--gold-primary);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-weight: 600;
        }
        
        .bafa-verified-title {
            font-size: 22px;
            font-weight: 700;
            color: var(--white);
            margin: 2px 0;
        }
        
        .bafa-verified-subtitle {
            font-size: 13px;
            color: var(--white-50);
        }
        
        /* BAFA Badge Section */
        .bafa-badge-section {
            padding: 25px 0;
            background: rgba(255,255,255,0.02);
            border-top: 1px solid rgba(255,255,255,0.05);
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }
        
        .bafa-badge-large {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 25px;
            background: linear-gradient(135deg, rgba(162,124,46,0.1), rgba(158,116,40,0.05));
            border: 1px solid rgba(162,124,46,0.2);
            border-radius: 20px;
            padding: 35px 50px;
            max-width: 500px;
            margin: 0 auto;
        }
        
        .bafa-badge-icon {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .german-flag-vertical {
            width: 6px;
            height: 60px;
            display: flex;
            flex-direction: column;
            border-radius: 2px;
            overflow: hidden;
        }
        
        .german-flag-vertical .flag-black { flex: 1; background: #000; }
        .german-flag-vertical .flag-red { flex: 1; background: #DD0000; }
        .german-flag-vertical .flag-gold { flex: 1; background: #FFCE00; }
        
        .bafa-badge-content {
            text-align: left;
        }
        
        .bafa-badge-label {
            font-size: 14px;
            color: var(--gold-primary);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
        }
        
        .bafa-badge-title {
            font-size: 28px;
            font-weight: 700;
            color: var(--white);
            margin: 5px 0;
        }
        
        .bafa-badge-subtitle {
            font-size: 16px;
            color: var(--white-60);
        }
        
        /* Hero Visual Graphic - Screenshot Style */
        .hero-graphic {
            position: relative;
            width: 100%;
            max-width: 380px;
            aspect-ratio: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255,255,255,0.02);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 24px;
            padding: 50px;
            overflow: visible;
        }
        
        /* Deutschlandkarte Styles */
        .de-map-container {
            position: relative;
            width: 100%;
            max-width: 500px;
            height: 500px;
            margin: 0 auto;
        }
        
        .de-map {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            height: 100%;
            opacity: 0.8;
        }
        
        .map-pin {
            position: absolute;
            z-index: 10;
        }
        
        .map-pulse {
            width: 12px;
            height: 12px;
            background: var(--gold-primary);
            border-radius: 50%;
            position: relative;
            animation: mapPulse 2s ease-out infinite;
        }
        
        .map-pulse::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 30px;
            height: 30px;
            border: 2px solid var(--gold-primary);
            border-radius: 50%;
            animation: mapPulseRing 2s ease-out infinite;
        }
        
        @keyframes mapPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.2); }
        }
        
        @keyframes mapPulseRing {
            0% { transform: translate(-50%, -50%) scale(0.5); opacity: 1; }
            100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
        }
        
        .map-card {
            position: absolute;
            background: rgba(17, 17, 17, 0.95);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 8px;
            padding: 6px 10px;
            display: flex;
            align-items: center;
            gap: 8px;
            backdrop-filter: blur(10px);
            white-space: nowrap;
            animation: mapCardFloat 3s ease-in-out infinite;
            box-shadow: 0 4px 20px rgba(0,0,0,0.4);
        }
        
        .map-card-left { right: 15px; top: -8px; }
        .map-card-right { left: 15px; top: -8px; }
        
        @keyframes mapCardFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
        }
        
        .map-card-icon {
            width: 22px;
            height: 22px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .map-card-icon.gold { background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark)); }
        .map-card-icon.red { background: linear-gradient(135deg, #E74C3C, #C0392B); }
        
        .map-card-icon svg {
            width: 11px;
            height: 11px;
            color: var(--white);
        }
        
        .map-card-text { text-align: left; }
        
        .map-card-title {
            font-size: 10px;
            font-weight: 600;
            color: var(--white);
            margin-bottom: 1px;
        }
        
        .map-card-sub {
            font-size: 9px;
            color: var(--white-60);
        }
        
        /* Hero Keywords */
        .hero-keywords {
            display: flex;
            gap: 30px;
            margin-top: 30px;
            padding-top: 25px;
            border-top: 1px solid rgba(255,255,255,0.08);
        }
        
        .keyword-item {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }
        
        .keyword-label {
            font-size: 10px;
            color: var(--white-40);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-weight: 500;
        }
        
        .keyword-value {
            font-size: 18px;
            font-weight: 700;
            color: var(--white);
            letter-spacing: 0.5px;
        }
        
        @media (max-width: 768px) {
            .hero-keywords {
                flex-wrap: wrap;
                gap: 20px;
            }
            .keyword-value {
                font-size: 16px;
            }
        }
        
        /* Partner Logos Marquee */
        .partners-marquee {
            padding: 15px 0;
            background: transparent;
            border: none;
            overflow: hidden;
            margin-top: -60px;
            position: relative;
            z-index: 10;
        }
        
        .partners-track {
            display: flex;
            gap: 80px;
            animation: marqueeScroll 15s linear infinite;
            width: max-content;
        }
        
        .partners-marquee:hover .partners-track {
            animation-play-state: paused;
        }
        
        @keyframes marqueeScroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-33.33%); }
        }
        
        .partner-item {
            flex-shrink: 0;
            height: 40px;
            opacity: 0.5;
            transition: opacity 0.3s;
            display: flex;
            align-items: center;
            color: var(--white);
        }
        
        .partner-item:hover {
            opacity: 1;
        }
        
        .partner-item img {
            height: 100%;
            width: auto;
            object-fit: contain;
            filter: brightness(1.1);
            transition: filter 0.3s, opacity 0.3s;
        }
        
        .partner-item:hover img {
            filter: brightness(1.3);
        }
        
        .graphic-badge {
            position: absolute;
            background: rgba(17, 17, 17, 0.9);
            border: 1px solid rgba(162, 124, 46, 0.3);
            border-radius: 12px;
            padding: 12px 18px;
            backdrop-filter: blur(10px);
        }
        
        .graphic-badge-top {
            top: 0;
            right: 0;
        }
        
        .graphic-badge-bottom {
            bottom: 0;
            left: 0;
        }
        
        .graphic-badge-value {
            font-size: 20px;
            font-weight: 700;
            color: var(--gold-primary);
        }
        
        .graphic-badge-label {
            font-size: 12px;
            color: var(--white-60);
        }
        
        .hero-partner {
            opacity: 0.6;
            transition: opacity 0.3s;
        }
        
        .hero-partner:hover {
            opacity: 1;
        }
        
        @media (max-width: 992px) {
            .hero-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .hero-visual {
                order: -1;
            }
            .hero-usps {
                align-items: center;
            }
            .hero-buttons {
                justify-content: center;
            }
        }
            border: 1px solid rgba(255,255,255,0.2);
            transition: all 0.3s;
        }
        
        .btn-login:hover {
            border-color: var(--gold-primary);
            color: var(--gold-light);
        }
        
        .btn-primary {
            background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
            color: var(--black-bg);
            padding: 14px 28px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: none;
            cursor: pointer;
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(162, 124, 46, 0.4);
        }
        
        .btn-primary:active {
            transform: translateY(0);
        }
        }
        
        .btn-primary:hover {
            background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
            transform: translateY(-2px);
        }
        
        /* Hero */
        .hero {
            padding: 80px 0;
            text-align: center;
            position: relative;
        }
        
        /* Problem Section */
        .problem-section {
            padding: 80px 0;
        }
        
        .problem-card {
            background: rgba(255,255,255,0.03);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 24px;
            padding: 50px;
        }
        
        .problem-header {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 25px;
        }
        
        .problem-icon {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .problem-icon svg {
            width: 24px;
            height: 24px;
            stroke: var(--black-bg);
            fill: none;
            stroke-width: 2;
        }
        
        .problem-header h2 {
            font-size: 28px;
            line-height: 1.3;
        }
        
        .problem-text {
            color: var(--white-60);
            margin-bottom: 20px;
        }
        
        .problem-highlight {
            background: linear-gradient(90deg, rgba(162,124,46,0.2), rgba(158,116,40,0.1));
            border: 1px solid rgba(162,124,46,0.3);
            border-radius: 12px;
            padding: 16px 20px;
            margin-bottom: 25px;
        }
        
        .highlight-accent {
            color: var(--gold-light);
            font-weight: 600;
        }
        
        /* Conversion Section */
        .conversion-section {
            padding: 100px 0;
            background: var(--black-bg);
        }
        
        .conversion-header {
            text-align: center;
            margin-bottom: 60px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .conversion-header h2 {
            font-size: 42px;
            margin-bottom: 25px;
            line-height: 1.2;
        }
        
        .conversion-header p {
            color: var(--white-60);
            font-size: 17px;
            line-height: 1.7;
        }
        
        .conversion-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }
        
        .conversion-card {
            position: relative;
            background: linear-gradient(180deg, rgba(162,124,46,0.08) 0%, rgba(10,10,10,0.5) 100%);
            border: 1px solid rgba(162,124,46,0.2);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            overflow: hidden;
            transition: all 0.4s ease;
        }
        
        .conversion-card:hover {
            transform: translateY(-8px);
            border-color: rgba(162,124,46,0.4);
            box-shadow: 0 20px 50px rgba(162,124,46,0.15);
        }
        
        .conversion-card-bg {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 120px;
            height: 120px;
            background: radial-gradient(circle, rgba(162,124,46,0.2) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        
        .conversion-icon {
            position: relative;
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, rgba(162,124,46,0.2), rgba(162,124,46,0.05));
            border: 1px solid rgba(162,124,46,0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            box-shadow: 0 0 30px rgba(162,124,46,0.2);
        }
        
        .conversion-icon svg {
            width: 32px;
            height: 32px;
            color: var(--gold-primary);
        }
        
        .conversion-card h3 {
            font-size: 22px;
            font-weight: 600;
            color: var(--white);
            margin-bottom: 12px;
        }
        
        .conversion-card p {
            font-size: 14px;
            color: var(--white-50);
            line-height: 1.6;
        }
        
        @media (max-width: 992px) {
            .conversion-grid {
                grid-template-columns: 1fr;
            }
            .conversion-header h2 {
                font-size: 32px;
            }
        }
        
        /* Stats Section */
        .stats-section {
            padding: 100px 0;
            background: var(--black-bg);
        }
        
        .stats-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .stats-header h2 {
            font-size: 42px;
            margin: 15px 0 20px;
        }
        
        .stats-header p {
            color: var(--white-60);
            max-width: 600px;
            margin: 0 auto;
            font-size: 16px;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }
        
        .stats-card {
            background: rgba(255,255,255,0.02);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .stats-card:hover {
            background: rgba(162,124,46,0.05);
            border-color: rgba(162,124,46,0.2);
            transform: translateY(-5px);
        }
        
        .stats-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
        }
        
        .stats-icon svg {
            width: 28px;
            height: 28px;
            color: var(--black-bg);
        }
        
        .stats-value {
            font-size: 48px;
            font-weight: 700;
            color: var(--gold-primary);
            margin-bottom: 10px;
            font-family: 'Playfair Display', serif;
        }
        
        .stats-title {
            font-size: 18px;
            font-weight: 600;
            color: var(--white);
            margin-bottom: 8px;
        }
        
        .stats-desc {
            font-size: 14px;
            color: var(--white-50);
        }
        
        @media (max-width: 992px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 576px) {
            .stats-grid {
                grid-template-columns: 1fr;
            }
        }
        
        .leads-foundation {
            margin-bottom: 30px;
        }
        
        .leads-foundation h3 {
            font-size: 20px;
            margin-bottom: 15px;
        }
        
        .foundation-check {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--gold-light);
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .foundation-check svg {
            width: 20px;
            height: 20px;
            stroke: var(--gold-light);
            fill: none;
            stroke-width: 2;
        }
        
        .foundation-list {
            list-style: none;
        }
        
        .foundation-list li {
            position: relative;
            padding-left: 20px;
            margin-bottom: 10px;
            color: var(--white-70);
            text-decoration: underline;
            text-decoration-color: rgba(162,124,46,0.5);
            text-underline-offset: 4px;
        }
        
        .foundation-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 10px;
            width: 6px;
            height: 6px;
            background: var(--gold-primary);
            border-radius: 50%;
        }
        
        /* Testimonials Section */
        .testimonials {
            padding: 100px 0;
            background: var(--black-bg);
        }
        
        .testimonials-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .testimonials-header h2 {
            font-size: 42px;
            margin: 15px 0 20px;
        }
        
        .testimonials-header p {
            color: var(--white-60);
            max-width: 600px;
            margin: 0 auto;
            font-size: 16px;
        }
        
        .testimonials-carousel {
            position: relative;
            max-width: 800px;
            margin: 0 auto 40px;
            min-height: 350px;
        }
        
        .testimonial-card {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 24px;
            padding: 40px 50px;
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.5s ease;
            pointer-events: none;
        }
        
        .testimonial-card.active {
            opacity: 1;
            transform: translateX(0);
            pointer-events: auto;
        }
        
        .testimonial-card.prev {
            opacity: 0;
            transform: translateX(-50px);
        }
        
        .quote-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }
        
        .quote-icon svg {
            width: 24px;
            height: 24px;
            color: var(--black-bg);
        }
        
        .testimonial-stars {
            display: flex;
            gap: 5px;
            margin-bottom: 25px;
        }
        
        .testimonial-stars svg {
            width: 18px;
            height: 18px;
            color: var(--gold-primary);
        }
        
        .testimonial-text {
            font-size: 20px;
            line-height: 1.6;
            color: var(--white-80);
            font-style: italic;
            margin-bottom: 30px;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .author-avatar {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: var(--black-bg);
            font-size: 16px;
        }
        
        .author-name {
            font-weight: 600;
            color: var(--white);
            font-size: 16px;
        }
        
        .author-role {
            font-size: 14px;
            color: var(--white-50);
        }
        
        .author-company {
            font-size: 14px;
            color: var(--gold-primary);
        }
        
        .testimonials-nav {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            margin-bottom: 50px;
        }
        
        .nav-btn {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            color: var(--white-60);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }
        
        .nav-btn:hover {
            background: rgba(162,124,46,0.2);
            border-color: var(--gold-primary);
            color: var(--gold-primary);
        }
        
        .nav-btn svg {
            width: 20px;
            height: 20px;
        }
        
        /* Contact Section */
        .contact-section {
            padding: 100px 0;
            background: var(--black-bg);
        }
        
        .contact-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .contact-header h2 {
            font-size: 42px;
            margin: 15px 0 20px;
        }
        
        .contact-header p {
            color: var(--white-60);
            max-width: 600px;
            margin: 0 auto;
            font-size: 16px;
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 40px;
            max-width: 1100px;
            margin: 0 auto;
        }
        
        .contact-form-wrapper {
            background: rgba(255,255,255,0.02);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 20px;
            padding: 35px;
        }
        
        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        
        .form-group.full-width {
            grid-column: 1 / -1;
        }
        
        .form-group label {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--white-70);
            font-size: 14px;
        }
        
        .form-group label svg {
            color: var(--gold-primary);
        }
        
        .form-group input,
        .form-group textarea {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 10px;
            padding: 14px 16px;
            color: var(--white);
            font-size: 15px;
            transition: all 0.3s;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--gold-primary);
            background: rgba(162,124,46,0.05);
        }
        
        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: var(--white-40);
        }
        
        .submit-btn {
            background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
            color: var(--black-bg);
            border: none;
            border-radius: 10px;
            padding: 16px 28px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: all 0.3s;
        }
        
        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(162,124,46,0.3);
        }
        
        .form-note {
            text-align: center;
            color: var(--white-40);
            font-size: 12px;
            margin-top: 5px;
        }
        
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .info-card {
            background: rgba(255,255,255,0.02);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 20px;
            padding: 25px;
        }
        
        .info-card h3 {
            font-size: 18px;
            margin-bottom: 20px;
            color: var(--white);
        }
        
        .info-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 16px;
        }
        
        .info-item:last-child {
            margin-bottom: 0;
        }
        
        .info-icon {
            width: 36px;
            height: 36px;
            background: rgba(162,124,46,0.15);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .info-icon svg {
            width: 18px;
            height: 18px;
            color: var(--gold-primary);
        }
        
        .info-label {
            font-size: 12px;
            color: var(--white-50);
            margin-bottom: 2px;
        }
        
        .info-value {
            font-size: 14px;
            color: var(--white);
        }
        
        .booking-card {
            background: rgba(255,255,255,0.02);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 20px;
            padding: 25px;
        }
        
        .booking-icon {
            width: 44px;
            height: 44px;
            background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
        }
        
        .booking-icon svg {
            width: 22px;
            height: 22px;
            color: var(--black-bg);
        }
        
        .booking-card h4 {
            font-size: 16px;
            margin-bottom: 8px;
            color: var(--white);
        }
        
        .booking-card p {
            font-size: 14px;
            color: var(--white-50);
            margin-bottom: 15px;
        }
        
        .booking-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background: transparent;
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 10px;
            padding: 14px 20px;
            color: var(--white);
            font-size: 14px;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .booking-btn:hover {
            border-color: var(--gold-primary);
            color: var(--gold-primary);
        }
        
        .rating-card {
            background: rgba(255,255,255,0.02);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 20px;
            padding: 20px 25px;
            text-align: center;
        }
        
        .rating-stars {
            display: flex;
            justify-content: center;
            gap: 4px;
            margin-bottom: 10px;
        }
        
        .rating-stars svg {
            width: 18px;
            height: 18px;
            color: var(--gold-primary);
        }
        
        .rating-text {
            font-size: 14px;
            color: var(--white-60);
        }
        
        .rating-score {
            color: var(--gold-primary);
            font-weight: 600;
        }
        
        .rating-count {
            color: var(--white);
            font-weight: 500;
        }
        
        @media (max-width: 992px) {
            .contact-grid {
                grid-template-columns: 1fr;
            }
            .form-row {
                grid-template-columns: 1fr;
            }
        }
        
        .testimonials-dots {
            display: flex;
            gap: 8px;
        }
        
        .dot {
            width: 8px;
            height: 8px;
            border-radius: 4px;
            background: rgba(255,255,255,0.2);
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .dot.active {
            width: 24px;
            background: var(--gold-primary);
        }
        
        .dot:hover {
            background: var(--gold-primary);
        }
        

        .solution-statement {
            margin-bottom: 30px;
        }
        
        .solution-statement h3 {
            font-size: 20px;
            margin-bottom: 15px;
        }
        
        .solution-statement p {
            color: var(--white-60);
            margin-bottom: 12px;
        }
        
        .solution-highlight {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: var(--gold-light);
            font-weight: 600;
        }
        
        .solution-highlight svg {
            width: 16px;
            height: 16px;
            stroke: var(--gold-light);
            fill: none;
            stroke-width: 2;
        }
        
        .additional-services {
            background: linear-gradient(90deg, rgba(162,124,46,0.1), rgba(158,116,40,0.05));
            border: 1px solid rgba(162,124,46,0.2);
            border-radius: 16px;
            padding: 25px;
        }
        
        .additional-services p {
            font-weight: 600;
            color: var(--white-80);
            margin-bottom: 15px;
        }
        
        .additional-services ul {
            list-style: none;
        }
        
        .additional-services li {
            position: relative;
            padding-left: 20px;
            margin-bottom: 8px;
            color: var(--white-70);
            text-decoration: underline;
            text-decoration-color: rgba(162,124,46,0.5);
            text-underline-offset: 4px;
        }
        
        .additional-services li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 10px;
            width: 6px;
            height: 6px;
            background: var(--gold-primary);
            border-radius: 50%;
        }
        
        /* Partners */
        .partners {
            padding: 30px 0;
            border-top: 1px solid rgba(255,255,255,0.05);
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }
        
        .partners-grid {
            display: flex;
            justify-content: center;
            gap: 50px;
            align-items: center;
        }
        
        .partner-item {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .partner-badge-google svg {
            height: 40px;
            width: auto;
        }
        
        .partner-badge-trustpilot {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .partner-badge-trustpilot svg {
            height: 32px;
            width: auto;
        }
        
        .rating-text {
            font-size: 14px;
            font-weight: 600;
            color: var(--gold-light);
        }
        
        .partner-badge-meta svg {
            height: 40px;
            width: auto;
        }
        
        .partner-badge-bafa {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .bafa-text {
            display: flex;
            flex-direction: column;
        }
        
        .bafa-label {
            font-size: 10px;
            color: var(--white-50);
        }
        
        .bafa-title {
            font-size: 12px;
            font-weight: 600;
            color: var(--white);
        }
        
        /* BAFA */
        .bafa {
            padding: 80px 0;
            text-align: center;
        }
        
        .bafa-card {
            background: linear-gradient(135deg, rgba(162,124,46,0.1), rgba(158,116,40,0.05));
            border: 1px solid rgba(162,124,46,0.2);
            border-radius: 24px;
            padding: 50px 40px;
            max-width: 750px;
            margin: 0 auto;
        }
        
        .bafa-header {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .bafa-badge-large {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .bafa-label-group {
            text-align: left;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }
        
        .bafa-label {
            font-size: 13px;
            color: var(--gold-primary);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .bafa-sublabel {
            font-size: 15px;
            color: var(--white-80);
            font-weight: 500;
        }
        
        .bafa h2 { 
            font-size: 36px; 
            margin-bottom: 20px;
            line-height: 1.3;
        }
        
        .bafa-description { 
            color: var(--white-60); 
            margin-bottom: 30px;
            font-size: 17px;
            max-width: 550px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* Vorteile - Screenshot Style */
        .vorteile {
            padding: 80px 0;
            background: var(--black-bg);
        }
        
        .vorteile-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .vorteile-header h2 {
            font-size: 32px;
            font-weight: 600;
        }
        
        .vorteile-rows {
            display: flex;
            flex-direction: column;
            gap: 50px;
        }
        
        .vorteile-row {
            display: flex;
            justify-content: space-between;
            position: relative;
        }
        
        .vorteile-row::before {
            content: '';
            position: absolute;
            top: 20px;
            left: 12.5%;
            right: 12.5%;
            height: 1px;
            background: var(--gold-primary);
            z-index: 0;
        }
        
        .vorteile-item {
            flex: 1;
            text-align: center;
            padding: 0 15px;
            position: relative;
            z-index: 1;
        }
        
        .vorteile-circle {
            width: 40px;
            height: 40px;
            background: var(--gold-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }
        
        .vorteile-circle svg {
            width: 20px;
            height: 20px;
            color: var(--black-bg);
        }
        
        .vorteile-item p {
            color: var(--white-70);
            font-size: 14px;
            line-height: 1.6;
            max-width: 220px;
            margin: 0 auto;
        }
        
        @media (max-width: 992px) {
            .vorteile-row {
                flex-wrap: wrap;
                gap: 30px;
            }
            .vorteile-row::before {
                display: none;
            }
            .vorteile-item {
                flex: 0 0 50%;
            }
        }
        
        @media (max-width: 576px) {
            .vorteile-item {
                flex: 0 0 100%;
            }
        }
        
        .bafa-benefits {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 30px;
            max-width: 350px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .bafa-benefit {
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--white-80);
            font-size: 15px;
        }
        
        .bafa-benefit svg {
            color: var(--gold-primary);
            flex-shrink: 0;
        }
        
        .german-flag {
            width: 4px;
            height: 50px;
            display: flex;
            flex-direction: column;
        }
        .flag-black { flex: 1; background: #000; }
        .flag-red { flex: 1; background: #DD0000; }
        .flag-gold { flex: 1; background: #FFCE00; }
        
        /* Services */
        .services {
            padding: 80px 0;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-label {
            color: var(--gold-primary);
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 2px;
            display: block;
            margin-bottom: 10px;
        }
        
        .section-header h2 {
            font-size: 36px;
            margin-bottom: 15px;
        }
        
        .section-header p {
            color: var(--white-60);
            max-width: 500px;
            margin: 0 auto;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        
        .service-card {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 12px;
            padding: 30px;
        }
        
        .service-icon {
            width: 50px;
            height: 50px;
            border-radius: 10px;
            background: rgba(162,124,46,0.1);
            border: 1px solid rgba(162,124,46,0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }
        
        .service-icon svg {
            width: 24px;
            height: 24px;
            stroke: var(--gold-light);
            fill: none;
            stroke-width: 2;
        }
        
        .service-card h3 {
            font-size: 18px;
            margin-bottom: 10px;
        }
        
        .service-card p {
            font-size: 14px;
            color: var(--white-60);
            margin-bottom: 15px;
        }
        
        .service-features {
            list-style: none;
        }
        
        .service-features li {
            font-size: 13px;
            color: var(--white-50);
            padding: 4px 0;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .service-features li::before {
            content: '';
            width: 5px;
            height: 5px;
            background: var(--gold-primary);
            border-radius: 50%;
        }
        
        /* About */
        .about {
            padding: 80px 0;
        }
        
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .about h2 {
            font-size: 36px;
            margin-bottom: 20px;
        }
        
        .about p {
            color: var(--white-60);
            margin-bottom: 15px;
        }
        
        .about em {
            color: var(--gold-light);
            font-style: italic;
        }
        
        .profile-card {
            background: var(--black-card);
            border-radius: 16px;
            padding: 30px;
            text-align: center;
        }
        
        .profile-img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(162,124,46,0.2), rgba(230,217,76,0.1));
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            border: 2px solid rgba(162,124,46,0.3);
        }
        
        .profile-photo {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--gold-primary);
            box-shadow: 0 0 30px rgba(162, 124, 46, 0.3);
        }
        
        .profile-name {
            font-size: 24px;
            margin-bottom: 5px;
        }
        
        .profile-role {
            color: var(--gold-primary);
            font-size: 14px;
            margin-bottom: 12px;
        }
        
        .profile-linkedin {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--white-60);
            font-size: 14px;
            text-decoration: none;
            transition: all 0.3s;
            padding: 8px 16px;
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 20px;
        }
        
        .profile-linkedin:hover {
            color: var(--gold-primary);
            border-color: var(--gold-primary);
        }
        
        .profile-linkedin svg {
            color: #0A66C2;
        }
        
        /* Footer */
        .footer {
            padding: 60px 0 30px;
            border-top: 1px solid rgba(255,255,255,0.05);
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-desc {
            color: var(--white-50);
            font-size: 14px;
            margin: 15px 0;
        }
        
        .footer h4 {
            font-size: 16px;
            margin-bottom: 20px;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: var(--white-50);
            text-decoration: none;
            font-size: 14px;
        }
        
        .footer-links a:hover {
            color: var(--gold-light);
        }
        
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.05);
            font-size: 13px;
            color: var(--white-40);
        }
/* === Hamburger Menu & Strategy Call Button === */
.nav-cta-btn {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--black-bg);
    padding: 9px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    transition: all 0.3s;
}
.nav-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(162,124,46,0.4);
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-cta-btn { display: none; }
    .nav-menu {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(10,10,10,0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        padding: 16px 0;
        border-bottom: 1px solid rgba(162,124,46,0.2);
        z-index: 999;
    }
    .nav-menu.open { display: flex; }
    .nav-menu li { padding: 0; }
    .nav-menu a {
        display: block;
        padding: 14px 28px;
        font-size: 16px;
        border-bottom: 1px solid rgba(255,255,255,0.04);
    }
}

/* ================================================
   MOBILE OPTIMIERUNG – EDP Marketing
   Vollständige Responsive Styles (max-width: 768px)
   ================================================ */

@media (max-width: 768px) {

    /* === GLOBAL === */
    .container {
        padding: 0 16px;
    }

    h1 { font-size: 32px !important; }
    h2 { font-size: 26px !important; }
    h3 { font-size: 20px !important; }

    /* === HEADER === */
    .header-inner {
        padding: 0 16px;
    }
    .hamburger { display: flex; }
    .nav-cta-btn { display: none; }
    .nav-menu {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(10,10,10,0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        padding: 16px 0;
        border-bottom: 1px solid rgba(162,124,46,0.2);
        z-index: 999;
    }
    .nav-menu.open { display: flex; }
    .nav-menu li { padding: 0; }
    .nav-menu a {
        display: block;
        padding: 14px 24px;
        font-size: 16px;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    /* === HERO === */
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    .hero-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 40px;
    }
    .hero-visual { order: -1; }
    .hero-content h1 {
        font-size: 32px !important;
        line-height: 1.2;
    }
    .hero-subtitle {
        font-size: 15px;
        margin: 0 auto;
        max-width: 90%;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    .hero-usps {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .hero-badges-row {
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
    }
    .hero-keywords {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
    }
    .hero-graphic { display: none; }

    /* === PARTNERS === */
    .partners-marquee {
        margin-top: -20px;
    }
    .partner-item img {
        height: 28px;
    }
    .partners-track { gap: 50px; }

    /* === PROBLEM === */
    .problem-section { padding: 60px 0; }
    .problem-grid {
        grid-template-columns: 1fr !important;
        gap: 16px;
    }

    /* === CONVERSION === */
    .conversion-section { padding: 60px 0; }
    .conversion-grid {
        grid-template-columns: 1fr !important;
        gap: 16px;
    }

    /* === SERVICES === */
    .services { padding: 60px 0; }
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 16px;
    }
    .service-card { padding: 24px 20px; }

    /* === ABOUT === */
    .about { padding: 60px 0; }
    .about-grid {
        grid-template-columns: 1fr !important;
        gap: 40px;
        text-align: center;
    }
    .profile-card {
        margin: 0 auto;
        max-width: 280px;
    }
    .profile-photo {
        width: 180px !important;
        height: 180px !important;
    }

    /* === VORTEILE === */
    .vorteile { padding: 60px 0; }
    .vorteile-grid {
        grid-template-columns: 1fr !important;
        gap: 16px;
    }
    .vorteile-row {
        grid-template-columns: 1fr !important;
        gap: 16px;
    }

    /* === STATS / ACHIEVEMENTS === */
    .stats-section { padding: 60px 0; }
    .stats-grid {
        grid-template-columns: 1fr !important;
        gap: 16px;
    }
    .stat-number { font-size: 40px !important; }

    /* === TESTIMONIALS === */
    .testimonials { padding: 60px 0; }
    .testimonials-carousel { min-height: 360px; }
    .testimonial-card { padding: 28px 20px; }
    .testimonial-text { font-size: 15px !important; }
    .testimonials-nav { gap: 12px; }

    /* === BAFA === */
    .bafa { padding: 60px 0; }
    .bafa-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
        text-align: center;
    }
    .bafa-verified-section { padding: 40px 0; }
    .bafa-badges {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    /* === CONTACT === */
    .contact-section { padding: 60px 0; }
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }
    .contact-form-wrapper {
        padding: 24px 16px !important;
    }
    .form-row {
        grid-template-columns: 1fr !important;
        gap: 16px;
    }
    .submit-btn {
        width: 100%;
        justify-content: center;
    }
    .booking-card { padding: 24px 20px; }
    .booking-btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    /* === FOOTER === */
    .footer { padding: 50px 0 30px; }
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        font-size: 13px;
    }

    /* === SECTION LABELS === */
    .section-label { font-size: 11px; }

    /* === TRUSTED COMPANIES === */
    .company-names {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }
}

/* === TABLET (769px – 992px) === */
@media (min-width: 769px) and (max-width: 992px) {
    .hero-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .services-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .stats-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .conversion-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 30px; }
    .about-grid { grid-template-columns: 1fr 1fr !important; gap: 40px; }
    .contact-grid { grid-template-columns: 1fr !important; }
}

/* === SMALL PHONES (max-width: 480px) === */
@media (max-width: 480px) {
    .hero-content h1 { font-size: 26px !important; }
    h2 { font-size: 22px !important; }
    .container { padding: 0 12px; }
    .hero { padding: 90px 0 50px; }
    .stat-number { font-size: 34px !important; }
    .btn-primary, .btn-secondary {
        font-size: 14px;
        padding: 12px 20px;
    }
}
