        :root {
            --primary: #E6007E;
            --secondary: #4A0048;
            --dark: #1a1a1a;
        }

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

        body {
            font-family: 'Inter', sans-serif;
            background: linear-gradient(135deg, #1a1a1a 0%, #2d1b3d 100%);
            color: white;
            line-height: 1.6;
            overflow-x: hidden;
        }

        .gradient-text {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* Contact Bar */
        .fixed-contact-bar {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1001;
            background: #1a1a1a;
            padding: 8px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
.contact-container {
    width: 100%;
    padding: 0 20px;
    display: flex;
    justify-content: flex-end;
}

.contact-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
}

.contact-text {
    color: #fff;
    font-size: 0.875rem;
    white-space: nowrap;
}

.contact-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-links a {
    color: white;
    font-size: 18px;
    transition: color 0.3s;
}

.contact-links a:hover {
    color: #E6007E;
}
        /* Navigation */
        nav {
            position: fixed;
            top: 40px;
            width: 100%;
            z-index: 1000;
            background: rgba(17, 24, 39, 0.95);
            backdrop-filter: blur(8px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

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

        nav a img {
            height: 4rem;
        }

        #menu {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        #menu a {
            transition: color 0.3s;
            color: white;
            text-decoration: none;
        }

        #menu a:hover {
            color: var(--primary);
        }

        #menu-btn {
            display: none;
        }
/* ===== GEO/AIEO Gradient Morph Button ===== */
.geo-gradient-morph {
    position: relative;
    background: linear-gradient(135deg, #E6007E 0%, #9333EA 50%, #60A5FA 100%);
    background-size: 200% 200%;
    padding: 10px 24px !important;
    border-radius: 25px;
    font-weight: 600;
    color: white !important;
    margin-left: auto;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(230, 0, 126, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    animation: gradientMorph 5s ease infinite;
}

.geo-gradient-morph:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 30px rgba(230, 0, 126, 0.6);
    animation-play-state: paused;
}

.magic-icon {
    animation: magicWand 2s ease-in-out infinite;
}

/* Animationen */
@keyframes gradientMorph {
    0%, 100% { 
        background-position: 0% 50%; 
    }
    50% { 
        background-position: 100% 50%; 
    }
}

@keyframes magicWand {
    0%, 100% { 
        transform: rotate(-15deg);
    }
    50% { 
        transform: rotate(15deg);
    }
}

/* Mobile Anpassungen */
@media screen and (max-width: 768px) {
    .geo-gradient-morph {
        margin-left: 0;
        width: 100%;
        justify-content: flex-start;  /* Links ausrichten statt center */
        text-align: left;  /* Text linksbündig */
        /* Button-Styling entfernen auf Mobile */
        background: none !important;
        padding: 1rem !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        animation: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    }
    
    .geo-gradient-morph:hover {
        transform: none !important;
        box-shadow: none !important;
    }
    
    #menu.active .geo-gradient-morph {
        margin-top: 0;
        border-top: none;
    }
    
    /* Flagge auch linksbündig */
    #menu.active #language-toggle-mobile {
        justify-content: flex-start !important;
        padding-left: 1rem !important;
    }
}
        /* Hero Section */
#home {
            padding-top: 140px !important;
            min-height: 70vh;
            padding-bottom: 3rem !important;
        }
		
		#home {
            position: relative;
            overflow: hidden;
        }

        /* Animierter Gradient Hintergrund */
#home::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: 
                radial-gradient(circle at center, 
                    rgba(230, 0, 126, 0.08) 0%, 
                    transparent 50%);
            animation: pulseGlow 8s ease-in-out infinite;
            z-index: 0;
        }

        /* Zweite Animationsebene */
        #home::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: 
                radial-gradient(circle at center, 
                    rgba(230, 0, 126, 0.15) 0%, 
                    transparent 50%);
            animation: pulseGlow 8s ease-in-out infinite;
            z-index: 0;
        }

        @keyframes rotateGradient {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }

        @keyframes pulseGlow {
            0%, 100% {
                transform: scale(1);
                opacity: 0.3;
            }
            50% {
                transform: scale(1.2);
                opacity: 0.6;
            }
        }

        #home > * {
            position: relative;
            z-index: 1;
        }

        /* GEO Teaser Box - THE HOOK */
.geo-teaser {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(230, 0, 126, 0.15);
            border-radius: 20px;
            padding: 32px;
            margin: 40px 0;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
            transition: all 0.4s ease;
        }
        
        .geo-teaser:hover {
            border-color: rgba(230, 0, 126, 0.3);
            background: rgba(255, 255, 255, 0.03);
        }
		
.geo-teaser::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(230, 0, 126, 0.02), transparent 70%);
            animation: rotate 30s linear infinite;
            opacity: 0.6;
        }

        @keyframes pulse-border {
            0%, 100% { border-color: var(--primary); box-shadow: 0 0 20px rgba(230, 0, 126, 0.3); }
            50% { border-color: var(--secondary); box-shadow: 0 0 40px rgba(230, 0, 126, 0.6); }
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .new-badge {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        /* Compact Services Grid */
        .service-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 32px;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .service-card:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: var(--primary);
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(230, 0, 126, 0.2);
        }

        .service-icon {
            font-size: 3rem;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 16px;
        }

/* Social Proof - Improved with Animations */
.stat-box {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-box:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(230, 0, 126, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-box:hover::before {
    transform: scaleX(1);
}

.stat-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 0.75rem;
    display: block;
    stroke: #E6007E;
    transition: all 0.3s ease;
}

.stat-box:hover .stat-icon {
    transform: scale(1.15) rotate(5deg);
    stroke: #E6007E;
    filter: drop-shadow(0 0 8px rgba(230, 0, 126, 0.6));
}

/* GEO Feature Icons */
        .geo-feature-icon {
            width: 64px;
            height: 64px;
            margin: 0 auto 1rem;
            stroke: #E6007E;
            stroke-width: 2;
            filter: drop-shadow(0 0 12px rgba(230, 0, 126, 0.4));
            transition: all 0.4s ease;
        }

        .geo-feature-icon:hover {
            transform: scale(1.15) translateY(-5px);
            stroke: #FF1493;
            filter: drop-shadow(0 0 20px rgba(230, 0, 126, 0.8));
        }

        .geo-teaser .text-center:hover .geo-feature-icon {
            animation: iconBounce 0.6s ease;
        }

        @keyframes iconBounce {
            0%, 100% { transform: scale(1) translateY(0); }
            50% { transform: scale(1.1) translateY(-8px); }
        }

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    line-height: 1;
}

/* GEO Info Icons */
        .geo-info-icon {
            width: 56px;
            height: 56px;
            margin: 0 auto 1rem;
            stroke: #E6007E;
            stroke-width: 2;
            filter: drop-shadow(0 0 10px rgba(230, 0, 126, 0.3));
            transition: all 0.3s ease;
        }

        .geo-info-icon:hover {
            transform: scale(1.1) rotate(-5deg);
            stroke: #FF1493;
            filter: drop-shadow(0 0 16px rgba(230, 0, 126, 0.6));
        }
/* SVG Gradient Definition - einmal irgendwo im CSS einfügen */
svg defs {
    display: none;
}

        /* Mobile Menu */
        @media (max-width: 768px) {
            #menu-btn {
                display: block;
                background: none;
                border: none;
                color: white;
                font-size: 1.5rem;
                cursor: pointer;
            }

            #menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(17, 24, 39, 0.98);
                flex-direction: column;
                padding: 1rem;
                gap: 0;
            }

            #menu.active {
                display: flex;
            }

            #menu a {
                padding: 1rem;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            #home {
                padding-top: 120px !important;
            }

            .geo-teaser {
                padding: 16px;
            }
        }
		/* Container für zentrierte Inhalte */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

        /* ===== KONFIGURATOR STYLES ===== */
        .header {
            padding: 2rem 0;
            text-align: center;
            background: rgba(17, 24, 39, 0.8);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid rgba(230, 0, 126, 0.3);
        }

        .header h1 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .header p {
            color: #9ca3af;
            font-size: 1.125rem;
        }

        /* Progress Steps */
        .progress-container {
            margin-bottom: 3rem;
        }

        .progress-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            margin-bottom: 2rem;
        }

        .progress-line {
            position: absolute;
            top: 20px;
            left: 0;
            right: 0;
            height: 3px;
            background: rgba(255, 255, 255, 0.1);
            z-index: 1;
        }

        .progress-line-active {
            position: absolute;
            top: 20px;
            left: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            z-index: 2;
            transition: width 0.5s ease;
        }

        .step {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            z-index: 3;
            flex: 1;
            cursor: pointer;
        }

        .step-circle {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            border: 3px solid rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            margin-bottom: 0.5rem;
            transition: all 0.3s ease;
        }

        .step.active .step-circle {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-color: var(--primary);
            transform: scale(1.1);
            box-shadow: 0 0 20px rgba(230, 0, 126, 0.5);
        }

        .step.completed .step-circle {
            background: var(--primary);
            border-color: var(--primary);
        }

        .step-label {
            font-size: 0.875rem;
            color: #9ca3af;
            text-align: center;
        }

        .step.active .step-label {
            color: white;
            font-weight: 600;
        }

        /* Main Layout */
        .main-layout {
            display: grid;
            grid-template-columns: 1fr 400px;
            gap: 2rem;
        }

        /* Step Content */
        .step-content {
            display: none;
        }

        .step-content.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }

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

        .content-card {
            background: rgba(17, 24, 39, 0.8);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 2rem;
            margin-bottom: 2rem;
        }

        .section-title {
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .section-subtitle {
            color: #9ca3af;
            margin-bottom: 2rem;
        }

        /* Package Cards */
        .package-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
        }

        .package-card {
            background: rgba(31, 41, 55, 0.8);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .package-card::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 12px;
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }

        .package-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(230, 0, 126, 0.3);
        }

        .package-card.selected {
            border-color: var(--primary);
            box-shadow: 0 10px 30px rgba(230, 0, 126, 0.4);
        }

        .package-card.selected::before {
            opacity: 1;
        }

        .package-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 1rem;
        }

        .package-name {
            font-size: 1.25rem;
            font-weight: 600;
        }

        .package-price {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
        }

        .package-badge {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            padding: 0.25rem 0.75rem;
            border-radius: 999px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            margin-top: 0.5rem;
        }

        .package-features {
            list-style: none;
            margin-top: 1rem;
        }

        .package-features li {
            display: flex;
            align-items: center;
            color: #d1d5db;
            margin-bottom: 0.5rem;
            font-size: 0.875rem;
        }

        .package-features li i {
            color: var(--primary);
            margin-right: 0.5rem;
        }

        /* Checkbox Options */
        .option-item {
            background: rgba(31, 41, 55, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            padding: 1rem;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .option-item:hover {
            background: rgba(31, 41, 55, 0.8);
            border-color: var(--primary);
        }

        .option-item.selected {
            background: rgba(230, 0, 126, 0.1);
            border-color: var(--primary);
        }

        .option-info {
            flex: 1;
        }

        .option-name {
            font-weight: 600;
            margin-bottom: 0.25rem;
        }

        .option-description {
            font-size: 0.875rem;
            color: #9ca3af;
        }

        .option-price {
            font-weight: 600;
            color: var(--primary);
            margin-right: 1rem;
        }

        /* Custom Checkbox */
        .custom-checkbox {
            width: 24px;
            height: 24px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .option-item.selected .custom-checkbox {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-color: var(--primary);
        }

        .custom-checkbox i {
            display: none;
            color: white;
            font-size: 0.75rem;
        }

        .option-item.selected .custom-checkbox i {
            display: block;
        }

        /* Summary Sidebar */
        .summary-sidebar {
            position: sticky;
            top: 2rem;
        }

        .summary-card {
            background: rgba(17, 24, 39, 0.95);
            backdrop-filter: blur(10px);
            border: 2px solid var(--primary);
            border-radius: 16px;
            padding: 2rem;
        }

        .summary-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .summary-items {
            margin-bottom: 1.5rem;
            max-height: 300px;
            overflow-y: auto;
        }

        .summary-item {
            display: flex;
            justify-content: space-between;
            padding: 0.75rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.875rem;
        }

        .summary-item:last-child {
            border-bottom: none;
        }

        .summary-item-name {
            color: #d1d5db;
        }

        .summary-item-price {
            color: white;
            font-weight: 600;
        }

        .summary-total {
            border-top: 2px solid var(--primary);
            padding-top: 1rem;
            margin-top: 1rem;
        }

        .summary-total-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 0.5rem;
        }

        .summary-total-label {
            font-size: 1.125rem;
            font-weight: 600;
        }

        .summary-total-amount {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
        }

        /* Navigation Buttons */
        .nav-buttons {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
        }

.btn-primary, .btn-secondary {
            flex: 1;
            padding: 1rem 2rem;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            font-size: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(230, 0, 126, 0.3);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.15);
        }

        /* Form Styles */
        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-label {
            display: block;
            color: white;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .form-input, .form-textarea {
            width: 100%;
            padding: 0.75rem 1rem;
            background: rgba(31, 41, 55, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            color: white;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-input:focus, .form-textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(230, 0, 126, 0.1);
        }

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

        /* Success/Error Messages */
        .message-box {
            padding: 1.5rem;
            border-radius: 8px;
            margin-bottom: 2rem;
            display: none;
        }

        .message-box.show {
            display: block;
            animation: slideDown 0.3s ease;
        }

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

        .message-success {
            background: rgba(16, 185, 129, 0.1);
            border: 1px solid rgba(16, 185, 129, 0.3);
            color: #10b981;
        }

        .message-error {
            background: rgba(239, 68, 68, 0.1);
            border: 1px solid rgba(239, 68, 68, 0.3);
            color: #ef4444;
        }

        /* ===== TESTIMONIALS STYLES ===== */
        .testimonial-card {
            background: rgba(31, 41, 55, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 2rem;
            position: relative;
            transition: all 0.3s ease;
        }

        .testimonial-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary);
            box-shadow: 0 20px 40px rgba(230, 0, 126, 0.2);
        }

        .testimonial-card:hover::before {
            transform: scaleX(1);
        }

        .quote-icon {
            font-size: 3rem;
            color: var(--primary);
            opacity: 0.2;
            position: absolute;
            top: 1rem;
            right: 1rem;
        }

        .stars {
            color: #FFD700;
        }

        .rating-container {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }

        /* ===== FEATURE SHOWCASE STYLES ===== */
        .feature-card {
            background: linear-gradient(135deg, rgba(230, 0, 126, 0.1), rgba(74, 0, 72, 0.1));
            border: 1px solid rgba(230, 0, 126, 0.3);
            border-radius: 1rem;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(135deg, transparent, rgba(230, 0, 126, 0.1), transparent);
            transform: rotate(45deg);
            transition: all 0.6s ease;
        }

        .feature-card:hover::before {
            left: 100%;
        }

        .feature-card:hover {
            transform: scale(1.05);
            border-color: var(--primary);
            box-shadow: 0 10px 30px rgba(230, 0, 126, 0.3);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
            transition: all 0.3s ease;
        }

        .feature-card:hover .feature-icon {
            transform: rotateY(360deg);
        }

        @media (max-width: 768px) {
            .main-layout {
                grid-template-columns: 1fr;
            }

            .summary-sidebar {
                position: relative;
                top: 0;
            }

            .progress-steps {
                flex-direction: column;
                gap: 1rem;
            }

            .progress-line, .progress-line-active {
                display: none;
            }
        }
		        /* Mobile Anpassungen - OPTIMIERT */
        @media screen and (max-width: 768px) {
            /* Verhindere horizontales Scrollen */
            html, body {
                overflow-x: hidden !important;
                max-width: 100vw !important;
                width: 100% !important;
            }
            
            /* Kontaktleiste auf mobil ausblenden */
            .fixed-contact-bar {
                display: none;
            }
            
            /* Navigation */
            nav {
                top: 0;
                width: 100%;
            }
            
            nav .container {
                padding: 12px 1rem;
                width: 100%;
                max-width: 100%;
            }
            
            nav a img {
                height: 2.5rem;
            }
            
            /* Mobiler Menü Button */
            #menu-btn {
                display: block;
                color: white;
                font-size: 1.5rem;
                background: transparent;
                border: none;
                padding: 0.5rem;
                cursor: pointer;
            }
            
            /* Mobiles Menü versteckt */
            #menu {
                display: none;
            }
            
            /* Mobiles Menü aktiv */
            #menu.active {
                display: flex !important;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(17, 24, 39, 0.98);
                backdrop-filter: blur(12px);
                padding: 0;
                gap: 0;
                box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
            }
            
            #menu.active a {
                padding: 1rem;
                width: 100%;
                text-align: left;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }
            
            #menu.active a:last-child {
                border-bottom: none;
            }
            
/* Sprachumschalter im mobilen Menü */
            #menu.active #language-toggle-mobile {
                display: flex !important;
                justify-content: center;
                align-items: center;
                padding: 1rem;
                border-top: 1px solid rgba(255, 255, 255, 0.1);
                width: 100%;
            }
            
            #menu.active #language-flag-mobile {
                width: 40px;
                height: auto;
                cursor: pointer;
                transition: transform 0.3s ease;
            }
            
            /* Desktop-Flagge auf Mobile verstecken */
            #language-toggle-desktop {
                display: none !important;
            }			
            /* Container Padding - WICHTIG */
            .container {
                padding-left: 1rem !important;
                padding-right: 1rem !important;
                max-width: 100% !important;
                overflow-x: hidden;
                width: 100%;
            }
/* --- Impressum Service Mobile Optimierung --- */

/* Verhindert, dass die große Box auf kleinen Bildschirmen zu breit wird */
@media (max-width: 992px) {
    #impressum-service div[style*="padding: 60px"] {
        padding: 40px 25px !important; /* Weniger Abstand am Rand auf Tablets */
    }
    
    #impressum-service h2 {
        font-size: 34px !important; /* Kleinere Überschrift für Tablets */
    }
}

@media (max-width: 768px) {
    /* Stapelt die linke Inhaltsseite und die rechte Preisbox untereinander */
    #impressum-service div[style*="display: flex"] {
        flex-direction: column !important;
        gap: 40px !important;
    }

    #impressum-service div[style*="flex: 0 1 400px"] {
        flex: 1 1 auto !important;
        width: 100% !important; /* Preisbox nimmt volle Breite ein */
        padding: 40px 25px !important;
    }

    #impressum-service h2 {
        font-size: 28px !important; /* Kleinere Überschrift für Handys */
        text-align: center;
    }

    #impressum-service p {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    /* Zentriert das "Maximale Diskretion" Label auf Mobile */
    #impressum-service div[style*="align-self: flex-start"] {
        align-self: center !important;
        text-align: center;
    }

    /* Die Vorteils-Liste einspaltig auf dem Handy */
    #impressum-service div[style*="display: grid"] {
        grid-template-columns: 1fr !important;
    }

    /* Den unteren Hinweis (Schloss) zentrieren */
    #impressum-service div[style*="display: flex; align-items: center; gap: 15px"] {
        justify-content: center !important;
    }
    
    /* Die 99€ etwas kleiner auf dem Handy, damit es nicht bricht */
    #impressum-service div[style*="font-size: 84px"] {
        font-size: 64px !important;
    }
}