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

        body {
            font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: #0a0a0a;
            color: #ffffff;
            overflow-x: hidden;
        }

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

        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
        }

        .hero-content h1 {
            font-size: clamp(3rem, 8vw, 8rem);
            font-weight: 200;
            letter-spacing: -0.02em;
            margin-bottom: 2rem;
            opacity: 0;
            transform: translateY(50px);
        }

        .hero-tagline {
            font-size: clamp(1.2rem, 2.5vw, 2rem);
            font-weight: 300;
            color: #888;
            max-width: 600px;
            margin: 0 auto;
            opacity: 0;
            transform: translateY(30px);
        }

        .about {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 8rem 0;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-text {
            font-size: clamp(1.5rem, 3vw, 2.5rem);
            line-height: 1.4;
            font-weight: 300;
            opacity: 0;
            transform: translateX(-50px);
        }

        .about-description {
            font-size: 1.1rem;
            line-height: 1.6;
            color: #aaa;
            opacity: 0;
            transform: translateX(50px);
        }

        .services {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 8rem 0;
            background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            margin-top: 4rem;
        }

        .service-card {
            padding: 2rem;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            backdrop-filter: blur(10px);
            opacity: 0;
            transform: translateY(50px);
        }

        .service-card h3 {
            font-size: 1.5rem;
            font-weight: 400;
            margin-bottom: 1rem;
            color: #fff;
        }

        .service-card p {
            color: #bbb;
            line-height: 1.6;
        }

        .section-title {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 200;
            text-align: center;
            margin-bottom: 2rem;
            opacity: 0;
            transform: translateY(30px);
        }

        .contact {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .contact-content {
            max-width: 600px;
        }

        .contact-email {
            font-size: clamp(1.5rem, 3vw, 2.5rem);
            font-weight: 300;
            color: #fff;
            text-decoration: none;
            border-bottom: 2px solid transparent;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
        }

        .contact-email:hover {
            border-bottom-color: #fff;
            color: #ccc;
        }

        .contact-name {
            font-size: 1.2rem;
            color: #888;
            margin-top: 2rem;
            opacity: 0;
            transform: translateY(20px);
        }


        .scroll-indicator {
            position: fixed;
            top: 0;
            left: 0;
            height: 4px;
            background: linear-gradient(90deg, #fff 0%, #888 100%);
            transform-origin: left;
            transform: scaleX(0);
            z-index: 1000;
        }


        @media (max-width: 768px) {
            .about-content {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }
            
            .about-text,
            .about-description {
                transform: translateY(30px);
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
        }