* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-dark: #0A0F1C;
            --secondary-dark: #1A2332;
            --card-dark: #232B3A;
            --accent-blue: #2196F3;
            --deep-blue: #1565C0;
            --water-blue: #03A9F4;
            --cyan-accent: #00BCD4;
            --text-light: #E8EAED;
            --text-gray: #B3B8C4;
            --text-dark: #2C3E50;
            --white: #FFFFFF;
            --gradient-blue: linear-gradient(135deg, #1565C0 0%, #2196F3 50%, #03A9F4 100%);
            --gradient-dark: linear-gradient(135deg, #0A0F1C 0%, #1A2332 100%);
            --section-padding: 100px 0;
            --border-radius: 16px;
            --shadow-elegant: 0 20px 60px rgba(0, 0, 0, 0.3);
            --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.2);
        }
        
       body {
            background: #121212;
            color: white;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            overflow-x: hidden;
            line-height: 1.6;
        }

        .hero-section {
            height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(180deg, #121212 0%, #1a1a1a 50%, #121212 100%);
            overflow: hidden;
        }

        .hero-phone {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 1;
            animation: imacFloat 6s ease-in-out infinite;
            filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.25));
        }

        .imac-container {
            width: 800px;
            height: 520px;
            position: relative;
            transform-style: preserve-3d;
            perspective: 1500px;
        }

        .imac-screen {
            width: 100%;
            height: 450px;
            background: linear-gradient(145deg, #2a2a2a, #1a1a1a, #242424);
            border-radius: 12px;
            position: relative;
            box-shadow: 
                0 20px 50px rgba(0, 0, 0, 0.3),
                inset 0 3px 0 rgba(255, 255, 255, 0.05),
                0 0 0 3px rgba(0, 0, 0, 0.8);
            border: 2px solid rgba(255, 255, 255, 0.08);
        }

        .screen-bezel {
            position: absolute;
            top: 15px;
            left: 15px;
            right: 15px;
            bottom: 15px;
            background: linear-gradient(135deg, #000, #0a0a0a, #000);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.9);
        }

        .screen-content {
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, #001122 0%, #002244 30%, #001133 70%, #001122 100%);
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .screen-glow {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse at center, rgba(0, 170, 255, 0.12), transparent 75%);
            opacity: 0;
            transition: all 1s ease;
        }

        .power-indicator {
            position: absolute;
            bottom: 20px;
            right: 20px;
            width: 6px;
            height: 6px;
            background: rgba(0, 170, 255, 0.7);
            border-radius: 50%;
            animation: powerPulse 3s ease-in-out infinite;
        }

        .imac-stand {
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 80px;
            background: linear-gradient(145deg, #f5f5f5, #e0e0e0, #f0f0f0);
            clip-path: polygon(30% 0%, 70% 0%, 85% 100%, 15% 100%);
            box-shadow: 
                0 8px 25px rgba(0, 0, 0, 0.15),
                inset 0 2px 0 rgba(255, 255, 255, 0.8),
                inset 0 -2px 0 rgba(0, 0, 0, 0.1);
        }

        .imac-base {
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 15px;
            background: linear-gradient(145deg, #f8f8f8, #e8e8e8, #f0f0f0);
            border-radius: 50px;
            box-shadow: 
                0 5px 20px rgba(0, 0, 0, 0.2),
                inset 0 2px 0 rgba(255, 255, 255, 0.9),
                inset 0 -1px 0 rgba(0, 0, 0, 0.1);
        }

        .imac-reflection {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
                125deg,
                rgba(255, 255, 255, 0.12) 0%,
                transparent 30%,
                transparent 70%,
                rgba(255, 255, 255, 0.06) 100%
            );
            border-radius: 12px;
            pointer-events: none;
        }

        .screen-scanlines {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: repeating-linear-gradient(
                0deg,
                transparent 0px,
                rgba(255, 255, 255, 0.02) 1px,
                transparent 2px
            );
            border-radius: 8px;
            opacity: 0.3;
        }

        .hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
            max-width: 1000px;
            padding: 0 2rem;
        }

        .hero-title {
            font-size: 4rem;
            font-weight: bold;
            background: linear-gradient(90deg, #ffffff 0%, #00aaff 50%, #ffffff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1.5rem;
            animation: fadeInUp 1s ease-out 0.5s both;
        }

        .hero-subtitle {
            font-size: 1.5rem;
            color: #cccccc;
            margin-bottom: 2rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            animation: fadeInUp 1s ease-out 0.8s both;
        }

        .hero-button {
            background: linear-gradient(90deg, #00aaff, #0088cc);
            color: black;
            padding: 1rem 2rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            animation: fadeInUp 1s ease-out 1.1s both;
        }

        .hero-button:hover {
            transform: scale(1.05);
            box-shadow: 0 20px 40px rgba(0, 170, 255, 0.25);
        }

        .scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 2s infinite;
            z-index: 10;
        }

        .scroll-mouse {
            width: 24px;
            height: 40px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 20px;
            display: flex;
            justify-content: center;
            align-items: flex-start;
            padding-top: 8px;
        }

        .scroll-dot {
            width: 4px;
            height: 12px;
            background: rgba(255, 255, 255, 0.6);
            border-radius: 2px;
            animation: pulse 1s infinite;
        }

        .section {
            padding: 5rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-title {
            font-size: 3rem;
            font-weight: bold;
            text-align: center;
            margin-bottom: 1.5rem;
            background: linear-gradient(90deg, #00aaff, #ffffff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-subtitle {
            font-size: 1.25rem;
            color: #999999;
            text-align: center;
            margin-bottom: 4rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

        .service-card {
            background: linear-gradient(135deg, #1e1e1e, #2a2a2a);
            border-radius: 1rem;
            padding: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(50px);
            animation: slideInUp 0.6s ease forwards;
        }

        .service-card:hover {
            transform: translateY(-10px) scale(1.02);
            border-color: rgba(0, 170, 255, 0.3);
            box-shadow: 0 20px 40px rgba(0, 170, 255, 0.1);
        }

        .service-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            display: block;
        }

        .service-title {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #ffffff;
        }

        .service-description {
            color: #999999;
            line-height: 1.6;
        }

        .features-section {
            background: linear-gradient(90deg, #1a1a1a, #1e1e1e);
            margin: 5rem 0;
        }

        .features-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
            padding: 5rem 2rem;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 2rem;
            opacity: 0;
            transform: translateX(-30px);
            animation: slideInLeft 0.6s ease forwards;
        }

        .feature-dot {
            width: 8px;
            height: 8px;
            background: #00aaff;
            border-radius: 50%;
            margin-top: 12px;
            margin-right: 1rem;
            flex-shrink: 0;
            animation: pulse 2s infinite;
        }

        .feature-content h4 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: #ffffff;
        }

        .feature-content p {
            color: #999999;
        }

.feature-visual {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, rgba(0, 170, 255, 0.2), rgba(0, 136, 204, 0.1));
    border-radius: 2rem;
    border: 1px solid rgba(0, 170, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    animation: featurePulse 3s infinite;
    position: relative;
    overflow: hidden; /* Beibehalten, um sicherzustellen, dass nichts aus dem Container herausragt */
}

/* NEU: Hier stylen wir das <img>-Tag innerhalb von .feature-visual */
.feature-visual img {
    width: 100%;       /* Das Bild nimmt die volle Breite des Containers ein */
    height: 100%;      /* Das Bild nimmt die volle Höhe des Containers ein */
    object-fit: contain; /* <-- WICHTIGSTE ÄNDERUNG: Skaliert das Bild so, dass es komplett in den Container passt, ohne beschnitten zu werden. */
                         /* Das kann zu leeren Rändern (Letterboxing/Pillarboxing) führen, wenn das Seitenverhältnis von Bild und Container nicht übereinstimmt. */
    display: block;    /* Entfernt möglichen Leerraum unter dem Bild */
    border-radius: 2rem; /* Optional: Damit das Bild die gleichen abgerundeten Ecken hat wie der Container */
}


.feature-visual::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 170, 255, 0.1), transparent);
    animation: shimmer 2s infinite;
}

        .process-section {
            padding: 5rem 2rem;
        }

        .process-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .process-steps {
            display: flex;
            overflow-x: auto;
            gap: 1.5rem;
            padding: 2rem 0;
            scroll-behavior: smooth;
        }

        .process-step {
            flex-shrink: 0;
            width: 320px;
            padding: 2rem;
            border-radius: 1rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: #1e1e1e;
            transition: all 0.5s ease;
            cursor: pointer;
        }

        .process-step.active {
            background: linear-gradient(135deg, rgba(0, 170, 255, 0.2), rgba(0, 136, 204, 0.1));
            border-color: rgba(0, 170, 255, 0.5);
            transform: scale(1.02);
        }

        .process-step:hover {
            transform: scale(1.05);
        }

        .step-number {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: #2a2a2a;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            margin-bottom: 1rem;
            transition: all 0.3s ease;
        }

        .process-step.active .step-number {
            background: #00aaff;
            color: black;
        }

        .step-title {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #ffffff;
        }

        .step-description {
            color: #999999;
        }

        .reviews-section {
            background: linear-gradient(90deg, #1a1a1a, #1e1e1e);
            padding: 5rem 2rem;
        }

        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .review-card {
            background: linear-gradient(135deg, rgba(30, 30, 30, 0.8), rgba(42, 42, 42, 0.6));
            backdrop-filter: blur(20px);
            border-radius: 1rem;
            padding: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            opacity: 0;
            transform: scale(0.9);
            animation: scaleIn 0.5s ease forwards;
        }

        .review-card:hover {
            border-color: rgba(0, 170, 255, 0.3);
            transform: scale(1.02);
        }

        .review-header {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }

        .review-avatar {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, #00aaff, #0088cc);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: black;
            font-weight: bold;
            margin-right: 1rem;
        }

        .review-info h4 {
            font-weight: 600;
            margin-bottom: 0.25rem;
            color: #ffffff;
        }

        .review-stars {
            color: #ffd700;
        }

        .review-text {
            color: #cccccc;
            font-style: italic;
        }

        .contact-section {
            padding: 5rem 2rem;
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .contact-form {
            background: linear-gradient(135deg, #1e1e1e, #2a2a2a);
            border-radius: 2rem;
            padding: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .form-title {
            font-size: 1.5rem;
            font-weight: bold;
            color: #00aaff;
            margin-bottom: 2rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-input, .form-textarea {
            width: 100%;
            background: #121212;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 0.75rem;
            padding: 0.75rem 1rem;
            color: white;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .form-input:focus, .form-textarea:focus {
            outline: none;
            border-color: #00aaff;
            box-shadow: 0 0 0 2px rgba(0, 170, 255, 0.2);
        }

        .form-input::placeholder, .form-textarea::placeholder {
            color: #666666;
        }

        .form-textarea {
            resize: none;
            min-height: 120px;
        }

        .form-button {
            width: 100%;
            background: linear-gradient(90deg, #00aaff, #0088cc);
            color: black;
            border: none;
            border-radius: 0.75rem;
            padding: 0.75rem;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .form-button:hover {
            transform: scale(1.02);
            box-shadow: 0 10px 20px rgba(0, 170, 255, 0.25);
        }

        .contact-info {
            background: linear-gradient(135deg, #1e1e1e, #2a2a2a);
            border-radius: 2rem;
            padding: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .contact-details {
            margin-bottom: 2rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
            color: #ffffff;
        }

        .contact-dot {
            width: 24px;
            height: 24px;
            background: #00aaff;
            border-radius: 50%;
            margin-right: 1rem;
            animation: pulse 2s infinite;
            flex-shrink: 0;
        }

        .map-placeholder {
            width: 100%;
            height: 250px;
            background: linear-gradient(135deg, rgba(0, 170, 255, 0.2), rgba(0, 136, 204, 0.1));
            border-radius: 1rem;
            border: 1px solid rgba(0, 170, 255, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .map-marker {
            width: 16px;
            height: 16px;
            background: #00aaff;
            border-radius: 50%;
            animation: mapPulse 2s infinite;
        }

        .map-label {
            position: absolute;
            bottom: 1rem;
            left: 1rem;
            font-size: 0.875rem;
            color: #999999;
        }

        .footer {
            background: #0a0a0a;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 3rem 2rem;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .footer-section h3 {
            color: #00aaff;
            font-size: 1.25rem;
            margin-bottom: 1rem;
        }

        .footer-section h4 {
            margin-bottom: 1rem;
            color: #ffffff;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.5rem;
            color: #999999;
            font-size: 0.875rem;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .footer-section ul li:hover {
            color: #00aaff;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 2rem;
            padding-top: 2rem;
            text-align: center;
            color: #999999;
            font-size: 0.875rem;
        }

        /* iMac Animations */
        @keyframes imacFloat {
            0%, 100% {
                transform: translate(-50%, -50%) rotateY(-3deg) rotateX(2deg) scale(1);
            }
            33% {
                transform: translate(-50%, -50%) rotateY(3deg) rotateX(-1deg) scale(1.01);
            }
            66% {
                transform: translate(-50%, -50%) rotateY(-1deg) rotateX(1deg) scale(1.005);
            }
        }

        @keyframes powerPulse {
            0%, 100% {
                opacity: 0.7;
                transform: scale(1);
                box-shadow: 0 0 8px rgba(0, 170, 255, 0.4);
            }
            50% {
                opacity: 1;
                transform: scale(1.3);
                box-shadow: 0 0 15px rgba(0, 170, 255, 0.8);
            }
        }

        @keyframes screenPulse {
            0%, 100% {
                opacity: 0.8;
            }
            50% {
                opacity: 1;
            }
        }

        @keyframes glassShimmer {
            0%, 100% {
                transform: translateX(-100%) skewX(-20deg);
                opacity: 0;
            }
            50% {
                transform: translateX(100%) skewX(-20deg);
                opacity: 0.6;
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateX(-50%) translateY(0);
            }
            40% {
                transform: translateX(-50%) translateY(-10px);
            }
            60% {
                transform: translateX(-50%) translateY(-5px);
            }
        }

        @keyframes pulse {
            0% {
                opacity: 1;
            }
            50% {
                opacity: 0.5;
            }
            100% {
                opacity: 1;
            }
        }

        @keyframes featurePulse {
            0% {
                box-shadow: 0 0 0 0 rgba(0, 170, 255, 0.4);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(0, 170, 255, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(0, 170, 255, 0);
            }
        }

        @keyframes shimmer {
            0% {
                transform: translateX(-100%) translateY(-100%) rotate(45deg);
            }
            100% {
                transform: translateX(100%) translateY(100%) rotate(45deg);
            }
        }

        @keyframes mapPulse {
            0% {
                transform: scale(1);
                opacity: 1;
            }
            50% {
                transform: scale(1.2);
                opacity: 0.7;
            }
            100% {
                transform: scale(1);
                opacity: 1;
            }
        }
       
       
         /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(10, 15, 28, 0);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(33, 150, 243, 0.1);
            z-index: 1000;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
    
        .navbar.scrolled {
            background: rgba(10, 15, 28, 0.98);
            box-shadow: var(--shadow-elegant);
            border-bottom: 1px solid rgba(33, 150, 243, 0.2);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 60px;
        }



        .logo {
            font-size: 32px;
            font-weight: 700;
            background: var(--gradient-blue);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
            transition: all 0.3s ease;
            letter-spacing: -0.5px;
        }

        .logo:hover {
            transform: scale(1.05);
            filter: brightness(1.2);
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 40px;
        }

        .nav-menu a {
            text-decoration: none;
            color: var(--text-light);
            font-weight: 500;
            font-size: 15px;
            transition: all 0.3s ease;
            position: relative;
            padding: 8px 0;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background: var(--gradient-blue);
            transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .nav-menu a:hover,
        .nav-menu a.active {
            color: var(--water-blue);
        }

        .nav-menu a:hover::after,
        .nav-menu a.active::after {
            width: 100%;
        }

        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .mobile-menu-toggle span {
            width: 28px;
            height: 2px;
            background: var(--accent-blue);
            margin: 4px 0;
            transition: 0.3s;
            border-radius: 2px;
        }

        
  /* Mobile Optimizations */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    padding: 20px;
    border-top: 1px solid rgba(33, 150, 243, 0.2);
    z-index: 999;
  }

  .nav-menu.active {
    display: flex;
    animation: fadeInDown 0.3s ease;
  }

  .mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
  }

  .mobile-menu-toggle span {
    width: 24px;
    height: 3px;
    background: white;
    border-radius: 2px;
  }
}

@media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            .mobile-menu-toggle {
                display: flex;
                background-color: #000;
            }
        }




                /* iMac Animations */
        @keyframes imacFloat {
            0%, 100% {
                transform: translate(-50%, -50%) rotateY(-3deg) rotateX(2deg) scale(1);
            }
            33% {
                transform: translate(-50%, -50%) rotateY(3deg) rotateX(-1deg) scale(1.01);
            }
            66% {
                transform: translate(-50%, -50%) rotateY(-1deg) rotateX(1deg) scale(1.005);
            }
        }

        @keyframes powerPulse {
            0%, 100% {
                opacity: 0.7;
                transform: scale(1);
                box-shadow: 0 0 8px rgba(0, 170, 255, 0.4);
            }
            50% {
                opacity: 1;
                transform: scale(1.3);
                box-shadow: 0 0 15px rgba(0, 170, 255, 0.8);
            }
        }

        @keyframes screenPulse {
            0%, 100% {
                opacity: 0.8;
            }
            50% {
                opacity: 1;
            }
        }

        @keyframes glassShimmer {
            0%, 100% {
                transform: translateX(-100%) skewX(-20deg);
                opacity: 0;
            }
            50% {
                transform: translateX(100%) skewX(-20deg);
                opacity: 0.6;
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateX(-50%) translateY(0);
            }
            40% {
                transform: translateX(-50%) translateY(-10px);
            }
            60% {
                transform: translateX(-50%) translateY(-5px);
            }
        }

        @keyframes pulse {
            0% {
                opacity: 1;
            }
            50% {
                opacity: 0.5;
            }
            100% {
                opacity: 1;
            }
        }

        @keyframes featurePulse {
            0% {
                box-shadow: 0 0 0 0 rgba(0, 170, 255, 0.4);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(0, 170, 255, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(0, 170, 255, 0);
            }
        }

        @keyframes shimmer {
            0% {
                transform: translateX(-100%) translateY(-100%) rotate(45deg);
            }
            100% {
                transform: translateX(100%) translateY(100%) rotate(45deg);
            }
        }

        @keyframes mapPulse {
            0% {
                transform: scale(1);
                opacity: 1;
            }
            50% {
                transform: scale(1.2);
                opacity: 0.7;
            }
            100% {
                transform: scale(1);
                opacity: 1;
            }
        }

        /* Mobile Optimizations */
        @media (max-width: 768px) {

            
            .hero-title {
                font-size: 2.5rem;
                line-height: 1.1;
            }

            .hero-subtitle {
                font-size: 1.1rem;
                padding: 0 1rem;
            }

            .hero-button {
                padding: 0.875rem 1.5rem;
                font-size: 1rem;
                margin-top: 1rem;
            }

            /* Mobile iMac Animation */
           .imac-container {
            width: 700px;
            max-width: 1000px;
            height: auto;
            aspect-ratio: 4 / 3;
            transform: scale(0.85);
            margin: 0 auto;
        }

        .imac-stand {
            width: 15vw;
            max-width: 45px;
            height: 20vw;
            max-height: 60px;
        }

        .imac-base {
            width: 30vw;
            max-width: 90px;
            height: 4vw;
            max-height: 12px;
        }

        .hero-phone {
            animation: mobileImacFloat 5s ease-in-out infinite;
        }

            .section {
                padding: 3rem 1.5rem;
            }

            .section-title {
                font-size: 2rem;
                margin-bottom: 1rem;
            }

            .section-subtitle {
                font-size: 1rem;
                margin-bottom: 2rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .service-card {
                padding: 1.5rem;
                margin: 0 0.5rem;
            }

            .service-icon {
                font-size: 2.5rem;
            }

            .service-title {
                font-size: 1.1rem;
            }

            .features-container {
                grid-template-columns: 1fr;
                gap: 2rem;
                padding: 3rem 1.5rem;
            }

            .feature-visual {
                height: 250px;
                font-size: 3rem;
            }

            .contact-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .contact-form, .contact-info {
                padding: 1.5rem;
                border-radius: 1.5rem;
            }

            .form-input, .form-textarea, .form-button {
                font-size: 16px; /* Prevents zoom on iOS */
                padding: 1rem;
            }

            .process-steps {
                padding-left: 1rem;
                gap: 1rem;
            }

            .process-step {
                width: 280px;
                padding: 1.5rem;
            }

            .footer-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }

            .reviews-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .review-card {
                margin: 0 0.5rem;
                padding: 1.5rem;
            }

            /* Touch-friendly adjustments */
            .hero-button, .form-button {
                min-height: 48px;
                touch-action: manipulation;
            }

            .process-step {
                touch-action: pan-x;
            }

            /* Reduce motion for mobile performance */
            .service-card, .review-card, .feature-item {
                animation-duration: 0.4s;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 2rem;
            }

            .hero-subtitle {
                font-size: 1rem;
            }

        .imac-container {
            width: 670px;
            max-width: 1000px;
            aspect-ratio: 4 / 3;
            height: auto;
            transform: scale(0.75);
        }

        .imac-stand {
            width: 18vw;
            max-width: 40px;
            height: 22vw;
            max-height: 50px;
        }

        .imac-base {
            width: 32vw;
            max-width: 80px;
            height: 4vw;
            max-height: 10px;
        }

            .section {
                padding: 2rem 1rem;
            }

            .section-title {
                font-size: 1.75rem;
            }

            .service-card {
                padding: 1rem;
                margin: 0;
            }

            .process-step {
                width: 240px;
                padding: 1rem;
            }

            .contact-form, .contact-info {
                padding: 1rem;
            }

            .footer-container {
                grid-template-columns: 1fr;
                text-align: center;
            }
        }

        /* Touch device optimizations */
        @media (hover: none) and (pointer: coarse) {
            .service-card:hover,
            .review-card:hover,
            .process-step:hover {
                transform: none;
            }

            .service-card:active,
            .review-card:active {
                transform: scale(0.98);
                transition: transform 0.1s ease;
            }

            .hero-button:hover,
            .form-button:hover {
                transform: none;
            }

            .hero-button:active,
            .form-button:active {
                transform: scale(0.96);
                transition: transform 0.1s ease;
            }

            /* Disable complex animations on touch devices for better performance */
            .glass-effect {
                display: none;
            }

            .feature-visual::before {
                display: none;
            }
        }

        /* Landscape mobile optimization */
        @media (max-width: 768px) and (orientation: landscape) {
            .hero-section {
                height: 100vh;
                min-height: 500px;
            }

            .laptop-container {
                transform: scale(0.6);
            }

            .hero-content {
                margin-top: -2rem;
            }

            .hero-title {
                font-size: 2rem;
            }

            .hero-subtitle {
                font-size: 0.9rem;
            }
        }

        /* Mobile iMac Animation */
        @keyframes mobileImacFloat {
            0%, 100% {
                transform: translate(-50%, -50%) rotateY(-2deg) rotateX(1deg) scale(0.8);
            }
            50% {
                transform: translate(-50%, -50%) rotateY(2deg) rotateX(-1deg) scale(0.82);
            }
        }

        /* iOS Safari specific fixes */
        @supports (-webkit-touch-callout: none) {
            .hero-section {
                height: 100vh;
                height: -webkit-fill-available;
            }

            .form-input, .form-textarea {
                -webkit-appearance: none;
                border-radius: 0.75rem;
            }

            .hero-button, .form-button {
                -webkit-appearance: none;
                -webkit-tap-highlight-color: transparent;
            }
        }

        /* Stagger animations for cards */
        .service-card:nth-child(1) { animation-delay: 0.1s; }
        .service-card:nth-child(2) { animation-delay: 0.2s; }
        .service-card:nth-child(3) { animation-delay: 0.3s; }
        .service-card:nth-child(4) { animation-delay: 0.4s; }
        .service-card:nth-child(5) { animation-delay: 0.5s; }
        .service-card:nth-child(6) { animation-delay: 0.6s; }

        .feature-item:nth-child(1) { animation-delay: 0.2s; }
        .feature-item:nth-child(2) { animation-delay: 0.4s; }
        .feature-item:nth-child(3) { animation-delay: 0.6s; }

        .review-card:nth-child(1) { animation-delay: 0.2s; }
        .review-card:nth-child(2) { animation-delay: 0.4s; }
        .review-card:nth-child(3) { animation-delay: 0.6s; }

        /* Parallax Effect */
        .parallax {
            transition: transform 0.1s ease-out;
        }

