  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #00A9E0;
            --secondary: #0088CC;
            --accent: #FF8C00;
            --dark: #1A1A1A;
            --light: #F5FBFF;
            --shadow: rgba(0, 169, 224, 0.15);
        }

        body {
            font-family: 'DM Sans', sans-serif;
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
            background: var(--light);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid rgba(0, 169, 224, 0.1);
            box-shadow: 0 2px 20px rgba(0, 169, 224, 0.08);
            animation: slideDown 0.5s ease-out;
        }

        @keyframes slideDown {
            from {
                transform: translateY(-100%);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 0;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo {
            font-family: 'Archivo Black', sans-serif;
            font-size: 28px;
            text-transform: uppercase;
            letter-spacing: -1px;
            display: flex;
            flex-direction: column;
            line-height: 0.9;
        }

        .logo .cleaner {
            color: var(--primary);
            font-size: 20px;
        }

        .logo .fumi {
            color: var(--accent);
            font-size: 28px;
        }

        .nav-links {
            display: flex;
            gap: 40px;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* Hero Section */
        .hero {
            margin-top: 80px;
            min-height: 90vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #00A9E0 0%, #0088CC 50%, #006BA6 100%);
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -15%;
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(255, 140, 0, 0.2) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 20s ease-in-out infinite;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -20%;
            left: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255, 140, 0, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 15s ease-in-out infinite reverse;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            50% { transform: translate(-50px, -50px) rotate(180deg); }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            animation: fadeInUp 0.8s ease-out 0.2s both;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero h1 {
            font-family: 'Archivo Black', sans-serif;
            font-size: clamp(42px, 6vw, 72px);
            color: white;
            line-height: 1.1;
            margin-bottom: 24px;
            text-transform: uppercase;
            letter-spacing: -2px;
        }

        .hero h1 span {
            color: var(--accent);
            display: block;
        }

        .hero p {
            font-size: clamp(18px, 2vw, 22px);
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 40px;
            max-width: 600px;
            animation: fadeInUp 0.8s ease-out 0.4s both;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            animation: fadeInUp 0.8s ease-out 0.6s both;
        }

        .btn {
            padding: 16px 40px;
            font-size: 18px;
            font-weight: 700;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.3s;
            cursor: pointer;
            border: none;
            font-family: 'DM Sans', sans-serif;
            display: inline-block;
        }

        .btn-primary {
            background: var(--accent);
            color: white;
            box-shadow: 0 8px 24px rgba(255, 140, 0, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 32px rgba(255, 140, 0, 0.5);
            background: #FF9900;
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-secondary:hover {
            background: white;
            color: var(--primary);
            transform: translateY(-3px);
        }

        /* Services Section */
        .services {
            padding: 120px 0;
            background: var(--light);
            position: relative;
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-tag {
            display: inline-block;
            padding: 8px 24px;
            background: rgba(0, 169, 224, 0.15);
            color: var(--primary);
            border-radius: 50px;
            font-weight: 700;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 16px;
        }

        .section-title {
            font-family: 'Archivo Black', sans-serif;
            font-size: clamp(36px, 5vw, 56px);
            color: var(--primary);
            margin-bottom: 24px;
            letter-spacing: -1px;
        }

        .section-description {
            font-size: 20px;
            color: rgba(26, 26, 26, 0.7);
            max-width: 700px;
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .service-card {
            background: white;
            padding: 48px 36px;
            border-radius: 24px;
            box-shadow: 0 4px 24px var(--shadow);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            transform: scaleX(0);
            transition: transform 0.4s;
            transform-origin: left;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px var(--shadow);
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-icon {
            font-size: 48px;
            margin-bottom: 24px;
            display: block;
        }

        .service-card h3 {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 16px;
        }

        .service-card p {
            color: rgba(26, 26, 26, 0.7);
            line-height: 1.7;
        }

        /* Benefits Section */
        .benefits {
            padding: 120px 0;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .benefits::after {
            content: '';
            position: absolute;
            bottom: -10%;
            left: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255, 140, 0, 0.15) 0%, transparent 70%);
            border-radius: 50%;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 48px;
            position: relative;
            z-index: 2;
        }

        .benefit-item {
            text-align: center;
        }

        .benefit-number {
            font-family: 'Archivo Black', sans-serif;
            font-size: 56px;
            color: var(--accent);
            margin-bottom: 16px;
            display: block;
        }

        .benefit-item h3 {
            font-size: 24px;
            margin-bottom: 12px;
            font-weight: 700;
        }

        .benefit-item p {
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.6;
        }

        /* Process Section */
        .process {
            padding: 120px 0;
            background: var(--light);
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 32px;
            margin-top: 60px;
        }

        .step {
            background: white;
            padding: 40px 32px;
            border-radius: 20px;
            position: relative;
            border: 2px solid transparent;
            transition: all 0.3s;
        }

        .step:hover {
            border-color: var(--primary);
            transform: scale(1.02);
            box-shadow: 0 8px 32px var(--shadow);
        }

        .step-number {
            position: absolute;
            top: -20px;
            left: 32px;
            width: 48px;
            height: 48px;
            background: var(--accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 20px;
            color: white;
            box-shadow: 0 4px 16px rgba(255, 140, 0, 0.3);
        }

        .step h3 {
            font-size: 22px;
            color: var(--primary);
            margin-bottom: 12px;
            margin-top: 20px;
        }

        .step p {
            color: rgba(26, 26, 26, 0.7);
            line-height: 1.6;
        }

        /* CTA Section */
        .cta-section {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--accent) 0%, #FF9900 100%);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(0, 169, 224, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            transform: translate(-50%, -50%);
        }

        .cta-content {
            position: relative;
            z-index: 2;
        }

        .cta-section h2 {
            font-family: 'Archivo Black', sans-serif;
            font-size: clamp(32px, 5vw, 48px);
            color: white;
            margin-bottom: 24px;
            letter-spacing: -1px;
        }

        .cta-section p {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Contact Form */
        .contact-form {
            max-width: 500px;
            margin: 0 auto;
            display: grid;
            gap: 20px;
        }

        .form-group {
            position: relative;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 16px 20px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 12px;
            font-size: 16px;
            font-family: 'DM Sans', sans-serif;
            background: rgba(255, 255, 255, 0.95);
            transition: all 0.3s;
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: var(--primary);
            background: white;
        }

        .contact-form textarea {
            resize: vertical;
            min-height: 120px;
        }

        .contact-form .btn-primary {
            background: var(--primary);
            box-shadow: 0 8px 24px rgba(0, 169, 224, 0.4);
        }

        .contact-form .btn-primary:hover {
            background: var(--secondary);
            box-shadow: 0 12px 32px rgba(0, 169, 224, 0.5);
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: rgba(255, 255, 255, 0.8);
            padding: 60px 0 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 48px;
            margin-bottom: 48px;
        }

        .footer-section h3 {
            color: white;
            font-size: 20px;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .footer-section p,
        .footer-section a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            line-height: 2;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            color: var(--primary);
        }

        .footer-logo {
            font-family: 'Archivo Black', sans-serif;
            font-size: 24px;
            margin-bottom: 16px;
            display: flex;
            flex-direction: column;
            line-height: 0.9;
        }

        .footer-logo .cleaner {
            color: var(--primary);
        }

        .footer-logo .fumi {
            color: var(--accent);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.5);
        }

        /* Mobile Menu Toggle */
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 28px;
            color: var(--primary);
            cursor: pointer;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 92px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 92px);
                background: white;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: left 0.3s;
                gap: 24px;
                box-shadow: 0 4px 20px rgba(0, 169, 224, 0.1);
            }

            .nav-links.active {
                left: 0;
            }

            .menu-toggle {
                display: block;
            }

            .hero {
                min-height: 80vh;
                padding: 40px 0;
            }

            .cta-buttons {
                flex-direction: column;
            }

            .btn {
                width: 100%;
                text-align: center;
            }
        }

        /* Animations on scroll */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease-out;
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }
        
        .logo-img {
                height: 60px;
            }
            