        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            overflow-x: hidden;
            line-height: 1.6;
        }
        nav {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 50px;
        }
        .logo {
            font-size: 28px;
            font-weight: 700;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 35px;
            align-items: center;
        }
        .nav-links a {
            text-decoration: none;
            color: #333;
            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: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            transition: width 0.3s;
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .cta-btn {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white !important;
            padding: 12px 30px;
            border-radius: 25px;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .cta-btn::after {
            display: none;
        }
        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
        }
        .mobile-menu {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
        }
        .mobile-menu span {
            width: 25px;
            height: 3px;
            background: #667eea;
            transition: all 0.3s;
        }
        /* Hero Section */
        .hero {
            margin-top: 80px;
            min-height: 90vh;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: moveGrid 20s linear infinite;
        }
        @keyframes moveGrid {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }
        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 50px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 1;
        }
        .hero-text h1 {
            font-size: 56px;
            color: white;
            margin-bottom: 20px;
            line-height: 1.2;
            animation: fadeInUp 0.8s ease-out;
        }
        .hero-text h1 span {
            display: block;
            background: linear-gradient(45deg, #fff, #ffd700);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero-text p {
            font-size: 20px;
            color: rgba(255,255,255,0.9);
            margin-bottom: 35px;
            animation: fadeInUp 0.8s ease-out 0.2s backwards;
        }
        .hero-buttons {
            display: flex;
            gap: 20px;
            animation: fadeInUp 0.8s ease-out 0.4s backwards;
        }
        .btn {
            padding: 15px 35px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            display: inline-block;
        }
        .btn-primary {
            background: white;
            color: #667eea;
        }
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(255,255,255,0.3);
        }
        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }
        .btn-secondary:hover {
            background: white;
            color: #667eea;
        }
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .hero-image {
            position: relative;
            animation: fadeInRight 0.8s ease-out 0.6s backwards;
        }
        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        .hero-image img {
            width: 100%;
            max-width: 600px;
            filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
        }
        /* Stats Section */
        .stats {
            background: white;
            padding: 60px 50px;
            margin-top: -50px;
            position: relative;
            z-index: 2;
        }
        .stats-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
        }
        .stat-item {
            text-align: center;
            padding: 30px;
            border-radius: 15px;
            background: linear-gradient(135deg, #f8f9ff 0%, #fff 100%);
            transition: transform 0.3s;
        }
        .stat-item:hover {
            transform: translateY(-10px);
        }
        .stat-number {
            font-size: 48px;
            font-weight: 700;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .stat-label {
            font-size: 16px;
            color: #666;
            margin-top: 10px;
        }
        /* Services Section */
        .services {
            padding: 100px 50px;
            background: linear-gradient(to bottom, white, #f8f9ff);
        }
        .section-subtitle {
            color: #667eea;
            font-weight: 600;
            font-size: 16px;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
        }
        .section-title {
            font-size: 42px;
            color: #333;
            margin-bottom: 20px;
        }
        .section-description {
            font-size: 18px;
            color: #666;
            line-height: 1.8;
        }
        .services-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        .service-card {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 5px 30px rgba(0,0,0,0.08);
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            transform: scaleX(0);
            transition: transform 0.3s;
        }
        .service-card:hover::before {
            transform: scaleX(1);
        }
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 50px rgba(102, 126, 234, 0.2);
        }
        .service-icon {
            font-size: 50px;
            margin-bottom: 20px;
        }
        .service-title {
            font-size: 24px;
            color: #333;
            margin-bottom: 15px;
            font-weight: 600;
        }
        .service-description {
            color: #666;
            line-height: 1.8;
            margin-bottom: 20px;
        }
        .service-link {
            color: #667eea;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            transition: gap 0.3s;
        }
        .service-link:hover {
            gap: 10px;
        }
        /* Why Choose Us */
        .why-us {
            padding: 100px 50px;
            background: white;
        }
        .why-us-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }
        .why-us-image {
            position: relative;
        }
        .why-us-image img {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        }
        .why-us-features {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        .feature-item {
            display: flex;
            gap: 20px;
            padding: 25px;
            background: #f8f9ff;
            border-radius: 15px;
            transition: all 0.3s;
        }
        .feature-item:hover {
            background: white;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transform: translateX(10px);
        }
        .feature-icon {
            font-size: 40px;
            flex-shrink: 0;
        }
        .feature-content h4 {
            font-size: 20px;
            color: #333;
            margin-bottom: 8px;
        }
        .feature-content p {
            color: #666;
            line-height: 1.6;
        }
        /* Pricing Preview */
        .pricing-preview {
            padding: 100px 50px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }
        .pricing-cards {
            max-width: 1400px;
            margin: 60px auto 0;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        .pricing-card {
            background: white;
            color: #333;
            padding: 40px;
            border-radius: 20px;
            text-align: center;
            transition: transform 0.3s;
            position: relative;
        }
        .pricing-card.featured {
            transform: scale(1.05);
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        }
        .pricing-badge {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
            color: white;
            padding: 8px 25px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
        }
        .pricing-card:hover {
            transform: translateY(-10px);
        }
        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }
        .pricing-name {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 15px;
            margin-top: 10px;
        }
        .pricing-price {
            font-size: 48px;
            font-weight: 700;
            color: #667eea;
            margin: 20px 0;
        }
        .pricing-price span {
            font-size: 18px;
            color: #999;
        }
        .pricing-features {
            list-style: none;
            margin: 30px 0;
            text-align: left;
        }
        .pricing-features li {
            padding: 12px 0;
            border-bottom: 1px solid #f0f0f0;
            color: #666;
        }
        .pricing-features li:last-child {
            border-bottom: none;
        }
        .pricing-features li::before {
            content: "✓";
            color: #51cf66;
            font-weight: bold;
            margin-right: 10px;
        }
        /* Testimonials */
        .testimonials {
            padding: 100px 50px;
            background: white;
        }
        .testimonials-grid {
            max-width: 1400px;
            margin: 60px auto 0;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        .testimonial-card {
            background: #f8f9ff;
            padding: 35px;
            border-radius: 20px;
            position: relative;
            transition: all 0.3s;
        }
        .testimonial-card:hover {
            background: white;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            transform: translateY(-5px);
        }
        .quote-icon {
            font-size: 50px;
            color: #667eea;
            opacity: 0.2;
            position: absolute;
            top: 20px;
            right: 30px;
        }
        .testimonial-text {
            color: #666;
            font-style: italic;
            line-height: 1.8;
            margin-bottom: 25px;
        }
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
            font-size: 20px;
        }
        .author-info h5 {
            color: #333;
            margin-bottom: 3px;
        }
        .author-info p {
            color: #999;
            font-size: 14px;
        }
        .rating {
            color: #ffc107;
            margin-bottom: 15px;
        }
        /* CTA Section */
        .cta-section {
            padding: 100px 50px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            text-align: center;
            color: white;
        }
        .cta-section h2 {
            font-size: 48px;
            margin-bottom: 20px;
        }
        .cta-section p {
            font-size: 20px;
            margin-bottom: 40px;
            opacity: 0.9;
        }
        .cta-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            gap: 15px;
            background: white;
            padding: 8px;
            border-radius: 50px;
        }
        .cta-form input {
            flex: 1;
            border: none;
            padding: 15px 25px;
            border-radius: 50px;
            font-size: 16px;
            outline: none;
        }
        .cta-form button {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            padding: 15px 40px;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s;
        }
        .cta-form button:hover {
            transform: scale(1.05);
        }
        /* Footer */
        .social-links {
            display: flex;
            gap: 15px;
        }
        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: white;
            transition: all 0.3s;
        }
        .social-links a:hover {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            transform: translateY(-3px);
        }
        /* Responsive */
        @media (max-width: 1024px) {
            .hero-content, .why-us-content {
                grid-template-columns: 1fr;
            }
            .services-grid, .pricing-cards, .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .stats-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 768px) {
            nav {
                padding: 15px 20px;
            }
            .nav-links {
                display: none;
            }
            .mobile-menu {
                display: flex;
            }
            .hero-text h1 {
                font-size: 36px;
            }
            .services-grid, .pricing-cards, .testimonials-grid, .stats-container {
                grid-template-columns: 1fr;
            }
            .cta-form {
                flex-direction: column;
                border-radius: 15px;
            }
            .cta-form input, .cta-form button {
                border-radius: 10px;
            }
        }