        :root {
            /* Neue professionelle Farbpalette */
            --primary: #0f172a;
            --primary-light: #1e293b;
            --primary-dark: #020617;
            --secondary: #ef4444;
            --secondary-light: #f87171;
            --secondary-dark: #dc2626;
            --accent: #f97316;
            --accent-light: #fb923c;
            --accent-gradient: linear-gradient(135deg, #ef4444 0%, #f97316 100%);
            --primary-gradient: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
            --hero-gradient: linear-gradient(135deg, #020617 0%, #0f172a 30%, #1e293b 100%);
            
            /* Neutrale Farben */
            --white: #ffffff;
            --gray-50: #f8fafc;
            --gray-100: #f1f5f9;
            --gray-200: #e2e8f0;
            --gray-300: #cbd5e1;
            --gray-400: #94a3b8;
            --gray-500: #64748b;
            --gray-600: #475569;
            --gray-700: #334155;
            --gray-800: #1e293b;
            --gray-900: #0f172a;
            
            /* Text Farben */
            --text-primary: #0f172a;
            --text-secondary: #475569;
            --text-muted: #64748b;
            --text-light: #94a3b8;
            --text-white: #ffffff;
            
            /* Schatten */
            --shadow-xs: 0 1px 2px 0 rgb(0 0 0 / 0.05);
            --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
            --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
            --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
            --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
            --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
            --shadow-colored: 0 25px 50px -12px rgb(239 68 68 / 0.25);
            
            /* Border Radius */
            --radius-sm: 6px;
            --radius: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --radius-xl: 20px;
            --radius-2xl: 24px;
            --radius-3xl: 32px;
            
            /* Spacing */
            --space-xs: 4px;
            --space-sm: 8px;
            --space-md: 16px;
            --space-lg: 24px;
            --space-xl: 32px;
            --space-2xl: 48px;
            --space-3xl: 64px;
            --space-4xl: 80px;
            --space-5xl: 120px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        ::selection {
            background: var(--secondary);
            color: var(--white);
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 80px;
        }

        body {
            font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.7;
            color: var(--text-primary);
            background: var(--white);
            font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }

        .container {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 var(--space-lg);
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px) saturate(180%);
            border-bottom: 1px solid var(--gray-200);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: var(--shadow-lg);
        }

        .nav-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 80px;
        }

        .logo {
            font-size: 1.75rem;
            font-weight: 800;
            color: var(--primary);
            letter-spacing: -0.025em;
            display: flex;
            align-items: center;
            gap: var(--space-sm);
        }

        .logo::before {
            content: '';
            width: 32px;
            height: 32px;
            background: var(--accent-gradient);
            border-radius: var(--radius);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: var(--space-2xl);
            align-items: center;
        }

        .nav-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            padding: var(--space-sm) 0;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-gradient);
            transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-cta {
            padding: var(--space-md) var(--space-xl) !important;
            background: var(--accent-gradient) !important;
            color: var(--white) !important;
            border-radius: var(--radius-lg);
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: var(--shadow-md);
            border: none;
            cursor: pointer;
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-xl);
        }

        .nav-cta::after {
            display: none;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--text-primary);
            padding: var(--space-sm);
        }

        /* Hero Section - Optimiert für Querformat */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: var(--hero-gradient);
            position: relative;
            overflow: hidden;
            padding: var(--space-5xl) 0;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 20% 50%, rgba(239, 68, 68, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(249, 115, 22, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(239, 68, 68, 0.05) 0%, transparent 50%);
            animation: gradientShift 20s ease-in-out infinite;
        }

        @keyframes gradientShift {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.8; }
        }

        .hero-pattern {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.02"><circle cx="30" cy="30" r="2"/></g></svg>');
            background-size: 60px 60px;
        }

        .hero-container {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: var(--space-4xl);
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-content h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            line-height: 1.1;
            background: linear-gradient(135deg, var(--white) 0%, var(--gray-300) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: var(--space-xl);
            animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .hero-content .subtitle {
            font-size: 1.375rem;
            color: var(--gray-300);
            margin-bottom: var(--space-2xl);
            line-height: 1.6;
            max-width: 540px;
            animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
        }

        .hero-stats {
            display: flex;
            gap: var(--space-2xl);
            margin-bottom: var(--space-2xl);
            animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
        }

        .stat {
            text-align: left;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 800;
            color: var(--white);
            line-height: 1;
            margin-bottom: var(--space-xs);
        }

        .stat-label {
            font-size: 0.875rem;
            color: var(--gray-400);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            font-weight: 500;
        }

        .hero-buttons {
            display: flex;
            gap: var(--space-md);
            flex-wrap: wrap;
            animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: var(--space-sm);
            padding: var(--space-lg) var(--space-2xl);
            border-radius: var(--radius-lg);
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: none;
            cursor: pointer;
            white-space: nowrap;
        }

        .btn-primary {
            background: var(--accent-gradient);
            color: var(--white);
            box-shadow: var(--shadow-xl);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-colored);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            color: var(--white);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

/* Hero Section - Vollflächiges Layout */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--hero-gradient);
    position: relative;
    overflow: visible; /* Geändert von hidden */
    padding: 0; /* Kein Padding */
}

/* Hero Container - Vollbreite */
.hero-container {
    display: flex;
    position: relative;
    z-index: 2;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 0;
    height: 85vh; /* Größere Höhe */
}

/* Hero Content - Links positioniert */
.hero-content {
    position: absolute;
    top: 50%;
    left: 60px;
    transform: translateY(-50%);
    z-index: 10;
    max-width: 600px;
}

/* Hero Visual - Maximale Größe */
.hero-visual {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: -200px; /* Bild ragt nach rechts über */
}

.team-showcase {
    width: calc(100% + 200px); /* Breiter als Container */
    height: 100%;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    background: transparent;
    border: none;
}

.team-photo-hero {
    width: 100%;
    height: 100%;
    position: relative;
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%; /* Nach unten verschoben für Köpfe */
    display: block;
    filter: brightness(0.8);
}

/* Gradient-Overlay angepasst */
.team-showcase::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        rgba(2, 6, 23, 0.95) 0%, 
        rgba(2, 6, 23, 0.7) 30%, 
        rgba(2, 6, 23, 0.3) 60%, 
        transparent 100%);
    pointer-events: none;
}

/* Container Override für Hero */
.hero .container {
    max-width: none;
    padding: 0;
    width: 100%;
    height: 100%;
}

/* Tech Cards unter dem Bild */
/* .floating-tech {
    position: static; /* Nicht mehr absolute 
    display: inline-block;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-md);
    padding: var(--space-sm) var(--space-lg);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 500;
    margin: var(--space-md) var(--space-sm) 0 0;
    animation: none; /* Keine Float-Animation mehr 
}

.floating-tech:nth-child(2) {
    top: 30px;
    right: 30px;
    animation-delay: 0s;
}

.floating-tech:nth-child(3) {
    bottom: 30px;
    left: 30px;
    animation-delay: 2s;
}

.floating-tech:nth-child(4) {
    bottom: 30px;
    right: 30px;
    animation-delay: 4s;
} */

      

        @keyframes float {
            0%, 100% { 
                transform: translateY(0) rotate(0deg);
                opacity: 0.8;
            }
            50% { 
                transform: translateY(-20px) rotate(1deg);
                opacity: 1;
            }
        }

        /* Sections */
        .section {
            padding: var(--space-5xl) 0;
            position: relative;
        }

        .section-header {
            text-align: center;
            margin-bottom: var(--space-4xl);
        }

        .section-title {
            font-size: clamp(2.5rem, 4vw, 3.5rem);
            font-weight: 800;
            margin-bottom: var(--space-md);
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-subtitle {
            font-size: 1.25rem;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* About Section */
        .about {
            background: var(--gray-50);
        }

        .team-intro {
            text-align: center;
            max-width: 800px;
            margin: 0 auto var(--space-4xl);
        }

        .team-intro h3 {
            font-size: 1.5rem;
            color: var(--text-primary);
            margin-bottom: var(--space-md);
        }

        .team-intro p {
            font-size: 1.125rem;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: var(--space-2xl);
            margin-bottom: var(--space-4xl);
        }

        .team-member {
            background: var(--white);
            border-radius: var(--radius-xl);
            padding: var(--space-2xl);
            text-align: center;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--gray-200);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .team-member::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--accent-gradient);
            transform: scaleX(0);
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .team-member:hover::before {
            transform: scaleX(1);
        }

        .team-member:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-xl);
        }

        .member-photo {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            margin: 0 auto var(--space-xl);
            background: var(--accent-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 2rem;
            font-weight: 700;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }

        .member-photo::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
        }

        .member-info h3 {
            font-size: 1.375rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: var(--space-sm);
        }

        .member-role {
            font-size: 1rem;
            color: var(--secondary);
            font-weight: 600;
            margin-bottom: var(--space-md);
        }

        .member-bio {
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: var(--space-lg);
        }

        .member-skills {
            display: flex;
            flex-wrap: wrap;
            gap: var(--space-sm);
            justify-content: center;
        }

        .skill-tag {
            background: var(--gray-100);
            color: var(--text-secondary);
            padding: var(--space-xs) var(--space-md);
            border-radius: var(--radius-2xl);
            font-size: 0.8rem;
            font-weight: 500;
        }

        .tech-stack-section {
            background: var(--white);
            border-radius: var(--radius-xl);
            padding: var(--space-2xl);
            text-align: center;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--gray-200);
        }

        .tech-stack-section h3 {
            font-size: 1.5rem;
            color: var(--text-primary);
            margin-bottom: var(--space-xl);
        }

        .tech-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: var(--space-md);
        }

        .tech-item {
            background: var(--gray-50);
            border: 1px solid var(--gray-200);
            border-radius: var(--radius-lg);
            padding: var(--space-lg);
            text-align: center;
            transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .tech-item:hover {
            background: var(--white);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .tech-icon {
            font-size: 2rem;
            margin-bottom: var(--space-sm);
        }

        .tech-name {
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--text-primary);
        }

        /* Services */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: var(--space-xl);
        }

        .service-card {
            background: var(--white);
            border-radius: var(--radius-xl);
            padding: var(--space-2xl);
            border: 1px solid var(--gray-200);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            height: 100%;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--accent-gradient);
            transform: scaleX(0);
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-xl);
            border-color: var(--gray-300);
        }

        .service-header {
            display: flex;
            align-items: center;
            gap: var(--space-md);
            margin-bottom: var(--space-lg);
        }

        .service-icon {
            width: 60px;
            height: 60px;
            background: var(--accent-gradient);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .service-title {
            font-size: 1.375rem;
            font-weight: 700;
            color: var(--text-primary);
            margin: 0;
        }

        .service-description {
            color: var(--text-secondary);
            margin-bottom: var(--space-lg);
            line-height: 1.6;
        }

        .service-features {
            list-style: none;
        }

        .service-features li {
            padding: var(--space-sm) 0;
            color: var(--text-secondary);
            position: relative;
            padding-left: var(--space-xl);
            line-height: 1.5;
        }

        .service-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            top: var(--space-sm);
            color: #10b981;
            font-weight: 700;
            font-size: 1.1rem;
        }

        /* Projects */
        .projects {
            background: var(--gray-50);
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
            gap: var(--space-xl);
        }

        .project-card {
            background: var(--white);
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid var(--gray-200);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .project-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-xl);
        }

        .project-visual {
            height: 240px;
            background: var(--primary-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 4rem;
            position: relative;
            overflow: hidden;
        }

        .project-visual::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
        }

        .project-content {
            padding: var(--space-xl);
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .project-title {
            font-size: 1.375rem;
            font-weight: 700;
            margin-bottom: var(--space-md);
            color: var(--text-primary);
        }

        .project-description {
            color: var(--text-secondary);
            margin-bottom: var(--space-lg);
            line-height: 1.6;
            flex: 1;
        }

        .project-results {
            background: var(--gray-50);
            padding: var(--space-md);
            border-radius: var(--radius-md);
            margin-bottom: var(--space-lg);
        }

        .project-results h4 {
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: var(--space-sm);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .project-results p {
            font-size: 0.875rem;
            color: var(--text-secondary);
            margin: 0;
        }

        .tech-stack {
            display: flex;
            flex-wrap: wrap;
            gap: var(--space-sm);
        }

        .tech-tag {
            background: var(--gray-100);
            color: var(--text-secondary);
            padding: var(--space-xs) var(--space-md);
            border-radius: var(--radius-2xl);
            font-size: 0.8rem;
            font-weight: 500;
            border: 1px solid var(--gray-200);
        }

        /* Contact */
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--space-4xl);
        }

        .contact-form {
            background: var(--white);
            padding: var(--space-2xl);
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--gray-200);
        }

        .contact-form h3 {
            font-size: 1.5rem;
            margin-bottom: var(--space-xl);
            color: var(--text-primary);
        }

        .form-group {
            margin-bottom: var(--space-lg);
        }

        .form-label {
            display: block;
            margin-bottom: var(--space-sm);
            font-weight: 600;
            color: var(--text-primary);
            font-size: 0.9rem;
        }

        .form-input {
            width: 100%;
            padding: var(--space-md) var(--space-lg);
            border: 2px solid var(--gray-200);
            border-radius: var(--radius-md);
            font-size: 1rem;
            transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            background: var(--white);
            color: var(--text-primary);
            font-family: inherit;
        }

        .form-input:focus {
            outline: none;
            border-color: var(--secondary);
            box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
        }

        .form-input::placeholder {
            color: var(--text-light);
        }

        .contact-info {
            background: var(--primary-gradient);
            padding: var(--space-2xl);
            border-radius: var(--radius-xl);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .contact-info::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
        }

        .contact-info > * {
            position: relative;
            z-index: 2;
        }

        .contact-info h3 {
            font-size: 1.5rem;
            margin-bottom: var(--space-xl);
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: var(--space-md);
            margin-bottom: var(--space-xl);
        }

        .contact-icon {
            width: 48px;
            height: 48px;
            background: rgba(255, 255, 255, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            flex-shrink: 0;
            backdrop-filter: blur(12px);
        }

        .contact-details h4 {
            font-weight: 600;
            margin-bottom: var(--space-xs);
            font-size: 1rem;
        }

        .contact-details p {
            color: var(--gray-300);
            margin: 0;
            line-height: 1.5;
        }

        .social-links {
            margin-top: var(--space-2xl);
            padding-top: var(--space-2xl);
            border-top: 1px solid rgba(255, 255, 255, 0.2);
        }

        .social-links h4 {
            margin-bottom: var(--space-md);
        }

        .social-links-list {
            display: flex;
            gap: var(--space-md);
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: var(--radius);
            color: var(--white);
            text-decoration: none;
            transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(12px);
        }

        .social-link:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateY(-2px);
        }

        /* Footer */
        .footer {
            background: var(--text-primary);
            color: var(--white);
            padding: var(--space-4xl) 0 var(--space-xl);
            position: relative;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: var(--accent-gradient);
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: var(--space-2xl);
            margin-bottom: var(--space-2xl);
        }

        .footer-section h3 {
            font-weight: 700;
            margin-bottom: var(--space-lg);
            background: var(--accent-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .footer-description {
            color: var(--gray-400);
            line-height: 1.6;
            margin-bottom: var(--space-lg);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: var(--space-sm);
        }

        .footer-links a {
            color: var(--gray-400);
            text-decoration: none;
            transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .footer-links a:hover {
            color: var(--white);
        }

        .footer-bottom {
            text-align: center;
            padding-top: var(--space-xl);
            border-top: 1px solid var(--gray-700);
            color: var(--gray-400);
        }

        .footer-bottom a {
            color: var(--gray-400);
            text-decoration: none;
        }

        .footer-bottom a:hover {
            color: var(--white);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .container {
                padding: 0 var(--space-lg);
            }

            .hero-container {
                gap: var(--space-3xl);
            }
            
            .contact-container {
                gap: var(--space-3xl);
            }

            .footer-content {
                grid-template-columns: 1fr 1fr;
                gap: var(--space-xl);
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero-container {
                grid-template-columns: 1fr;
                gap: var(--space-2xl);
                text-align: center;
            }

            .hero-stats {
                justify-content: center;
            }

            .contact-container {
                grid-template-columns: 1fr;
                gap: var(--space-xl);
            }

            .services-grid,
            .projects-grid {
                grid-template-columns: 1fr;
            }

            .team-grid {
                grid-template-columns: 1fr;
            }

            .section {
                padding: var(--space-4xl) 0;
            }

            .team-photo-hero {
                height: 250px;
            }

            .team-image {
                height: 100%;
            }

            .team-showcase {
        height: 350px;
    }
    
    .floating-tech {
        font-size: 0.75rem;
        padding: var(--space-xs) var(--space-md);
    }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .tech-grid {
                grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
            }
        }

        @media (max-width: 640px) {
            .container {
                padding: 0 var(--space-md);
            }
            .team-showcase {
        height: 280px;
    }

            .hero-buttons {
                flex-direction: column;
                align-items: stretch;
            }

            .btn {
                justify-content: center;
            }

            .contact-form,
            .contact-info {
                padding: var(--space-xl);
            }

            .hero-stats {
                flex-direction: column;
                gap: var(--space-lg);
            }
            .team-photo-hero {
    height: 250px;
}

.team-image {
    height: 100%;
    object-fit: cover;
    object-position: center;
}
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .scroll-animate {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .scroll-animate.visible {
            opacity: 1;
            transform: translateY(0);
        }
  