* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background: linear-gradient(135deg, #f8f9fa 0%, #eef2f7 100%);
            color: #2d3748;
            line-height: 1.7;
            overflow-x: hidden;
        }
        
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 30px;
        }
        
        /* Header Styles */
        header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            color: white;
            padding: 18px 0;
            box-shadow: 0 4px 20px rgba(26, 54, 93, 0.08);
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid rgba(77, 192, 181, 0.1);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 2rem;
            font-weight: 800;
            color: #1a365d;
            letter-spacing: -0.5px;
            position: relative;
            padding: 8px 0;
        }
        
        .logo span {
            color: #4dc0b5;
            position: relative;
        }
        
        .logo::after {
            content: '';
            position: absolute;
            width: 30px;
            height: 4px;
            background: linear-gradient(90deg, #4dc0b5, #2d4b8f);
            bottom: 0;
            left: 0;
            border-radius: 2px;
        }
        
        nav ul {
            display: flex;
            list-style: none;
            gap: 32px;
        }
        
        nav ul li a {
            color: #1a365d;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            padding: 10px 0;
            position: relative;
            transition: all 0.3s ease;
            letter-spacing: -0.2px;
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, #4dc0b5, #2d4b8f);
            bottom: -5px;
            left: 0;
            border-radius: 3px;
            transition: width 0.3s ease;
        }
        
        nav ul li a:hover {
            color: #4dc0b5;
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #2d4b8f 0%, #1a365d 100%);
            color: white;
            padding: 120px 0;
            text-align: center;
            margin-bottom: 80px;
            position: relative;
            overflow: hidden;
            border-radius: 0 0 40px 40px;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            top: -150px;
            right: -150px;
        }
        
        .hero::after {
            content: '';
            position: absolute;
            width: 200px;
            height: 200px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 50%;
            bottom: -100px;
            left: -100px;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            font-weight: 800;
            letter-spacing: -1px;
            line-height: 1.2;
            position: relative;
            z-index: 1;
        }
        
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 40px;
            opacity: 0.9;
            font-weight: 300;
            line-height: 1.6;
        }
        
        .cta-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #4dc0b5 0%, #3aa89d 100%);
            color: white;
            padding: 16px 36px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: none;
            cursor: pointer;
            font-size: 1.1rem;
            letter-spacing: 0.5px;
            box-shadow: 0 8px 25px rgba(77, 192, 181, 0.3);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.7s ease;
            z-index: -1;
        }
        
        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(77, 192, 181, 0.4);
        }
        
        .cta-button:hover::before {
            left: 100%;
        }
        
        /* Content Sections */
        section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 70px;
        }
        
        .section-title h2 {
            font-size: 2.8rem;
            color: #1a365d;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
            font-weight: 800;
            letter-spacing: -0.5px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 6px;
            background: linear-gradient(90deg, #4dc0b5, #2d4b8f);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 3px;
        }
        
        .section-title p {
            color: #718096;
            max-width: 700px;
            margin: 30px auto 0;
            font-size: 1.2rem;
            line-height: 1.6;
        }
        
        /* Features Section */
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-bottom: 80px;
        }
        
        .feature-card {
            background: white;
            border-radius: 20px;
            padding: 40px 35px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid rgba(77, 192, 181, 0.1);
            position: relative;
            overflow: hidden;
        }
        
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #4dc0b5, #2d4b8f);
            border-radius: 20px 20px 0 0;
        }
        
        .feature-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 50px rgba(26, 54, 93, 0.12);
        }
        
        .feature-icon {
            background: linear-gradient(135deg, rgba(77, 192, 181, 0.1) 0%, rgba(77, 192, 181, 0.2) 100%);
            width: 90px;
            height: 90px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            color: #4dc0b5;
            font-size: 2.2rem;
            transition: all 0.3s ease;
        }
        
        .feature-card:hover .feature-icon {
            transform: scale(1.1);
            background: linear-gradient(135deg, #4dc0b5 0%, #3aa89d 100%);
            color: white;
        }
        
        .feature-card h3 {
            font-size: 1.6rem;
            margin-bottom: 20px;
            color: #1a365d;
            font-weight: 700;
        }
        
        .feature-card p {
            color: #718096;
            line-height: 1.7;
            font-size: 1.05rem;
        }
        
        /* Benefits Section */
        .benefits-container {
            display: flex;
            flex-wrap: wrap;
            gap: 35px;
            margin-bottom: 80px;
        }
        
        .benefit {
            flex: 1;
            min-width: 320px;
            background: white;
            padding: 40px 35px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            border: 1px solid rgba(77, 192, 181, 0.1);
            transition: transform 0.3s ease;
        }
        
        .benefit:hover {
            transform: translateY(-10px);
        }
        
        .benefit h3 {
            color: #1a365d;
            margin-bottom: 25px;
            font-size: 1.5rem;
            font-weight: 700;
            position: relative;
            padding-bottom: 15px;
        }
        
        .benefit h3::after {
            content: '';
            position: absolute;
            width: 40px;
            height: 4px;
            background: linear-gradient(90deg, #4dc0b5, #2d4b8f);
            bottom: 0;
            left: 0;
            border-radius: 2px;
        }
        
        .benefit ul {
            list-style: none;
        }
        
        .benefit li {
            margin-bottom: 15px;
            padding-left: 30px;
            position: relative;
            color: #4a5568;
        }
        
        .benefit li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #4dc0b5;
            font-weight: bold;
            background: rgba(77, 192, 181, 0.1);
            width: 22px;
            height: 22px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
        }
        
        /* Dynamic Features Section */
        .dynamic-features {
            background: linear-gradient(135deg, #f8f9fa 0%, #eef2f7 100%);
            border-radius: 30px;
            padding: 60px 50px;
            margin-bottom: 80px;
            border: 1px solid rgba(77, 192, 181, 0.1);
        }
        
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }
        
        .feature-item {
            background: white;
            padding: 30px 25px;
            border-radius: 16px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.04);
            transition: all 0.3s ease;
            border: 1px solid rgba(77, 192, 181, 0.05);
            text-align: center;
        }
        
        .feature-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(26, 54, 93, 0.1);
            border-color: rgba(77, 192, 181, 0.2);
        }
        
        .feature-item i {
            color: #4dc0b5;
            font-size: 2.5rem;
            margin-bottom: 20px;
            background: rgba(77, 192, 181, 0.1);
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }
        
        .feature-item h4 {
            color: #1a365d;
            margin-bottom: 12px;
            font-size: 1.3rem;
            font-weight: 700;
        }
        
        .feature-item p {
            color: #718096;
            font-size: 1rem;
            line-height: 1.6;
        }
        
        /* Example Websites Section */
        .examples-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #eef2f7 100%);
            border-radius: 30px;
            margin: 80px 0;
            padding: 80px 0;
        }
        
        .examples-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 35px;
            margin-bottom: 50px;
        }
        
        .example-card {
            background: white;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0,0,0,0.07);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid rgba(77, 192, 181, 0.1);
            position: relative;
        }
        
        .example-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 25px 50px rgba(26, 54, 93, 0.15);
        }
        
        .example-image {
            height: 220px;
            background: linear-gradient(135deg, rgba(77, 192, 181, 0.1) 0%, rgba(77, 192, 181, 0.2) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4.5rem;
            color: #1a365d;
            position: relative;
            overflow: hidden;
        }
        
        .example-image::before {
            content: '';
            position: absolute;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
            transform: translateX(-100%);
            transition: transform 0.8s ease;
        }
        
        .example-card:hover .example-image::before {
            transform: translateX(100%);
        }
        
        .example-tag {
            position: absolute;
            top: 20px;
            right: 20px;
            background: linear-gradient(90deg, #4dc0b5, #2d4b8f);
            color: white;
            padding: 8px 18px;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            box-shadow: 0 5px 15px rgba(77, 192, 181, 0.3);
        }
        
        .example-content {
            padding: 30px;
        }
        
        .example-content h3 {
            color: #1a365d;
            margin-bottom: 15px;
            font-size: 1.5rem;
            font-weight: 700;
        }
        
        .example-content p {
            color: #718096;
            margin-bottom: 20px;
            font-size: 1rem;
            line-height: 1.6;
        }
        
        .example-features {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 25px;
        }
        
        .example-feature {
            background: rgba(77, 192, 181, 0.1);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            color: #2d4b8f;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .example-card:hover .example-feature {
            background: rgba(77, 192, 181, 0.2);
            transform: translateY(-2px);
        }
        
        .example-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: #4dc0b5;
            font-weight: 700;
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.3s ease;
            padding: 8px 0;
        }
        
        .example-link:hover {
            color: #2d4b8f;
            gap: 15px;
        }
        
        .view-more-container {
            text-align: center;
            margin-top: 60px;
        }
        
        /* Technology Stack Section */
        .tech-stack {
            background: linear-gradient(135deg, #1a365d 0%, #2d4b8f 100%);
            color: white;
            border-radius: 30px;
            padding: 80px 50px;
            margin: 80px 0;
        }
        
        .tech-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .tech-item {
            background: rgba(255, 255, 255, 0.1);
            padding: 25px 20px;
            border-radius: 16px;
            text-align: center;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .tech-item:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(77, 192, 181, 0.3);
        }
        
        .tech-item i {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: #4dc0b5;
        }
        
        .tech-item h4 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .tech-item p {
            opacity: 0.9;
            font-size: 0.95rem;
        }
        
        /* Pricing Section */
        .pricing-card {
            background: white;
            max-width: 700px;
            margin: 0 auto;
            padding: 60px 50px;
            border-radius: 30px;
            box-shadow: 0 25px 50px rgba(0,0,0,0.08);
            text-align: center;
            border: 1px solid rgba(77, 192, 181, 0.1);
            position: relative;
            overflow: hidden;
        }
        
        .pricing-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 8px;
            background: linear-gradient(90deg, #4dc0b5, #2d4b8f);
        }
        
        .pricing-card h3 {
            color: #1a365d;
            font-size: 2rem;
            margin-bottom: 15px;
            font-weight: 800;
        }
        
        .pricing-card > p {
            color: #718096;
            font-size: 1.2rem;
            margin-bottom: 30px;
        }
        
        .price {
            font-size: 3.5rem;
            color: #1a365d;
            font-weight: 800;
            margin: 25px 0;
            position: relative;
            display: inline-block;
        }
        
        .price span {
            font-size: 1.2rem;
            color: #718096;
            font-weight: 500;
        }
        
        .pricing-card ul {
            list-style: none;
            text-align: left;
            margin-bottom: 40px;
            padding-left: 20px;
        }
        
        .pricing-card ul li {
            margin-bottom: 18px;
            padding-left: 35px;
            position: relative;
            color: #4a5568;
            font-size: 1.1rem;
        }
        
        .pricing-card ul li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #4dc0b5;
            font-weight: bold;
            background: rgba(77, 192, 181, 0.1);
            width: 26px;
            height: 26px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #1a365d 0%, #2d4b8f 100%);
            color: white;
            text-align: center;
            padding: 100px 40px;
            border-radius: 40px;
            margin: 100px 0;
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            top: -200px;
            right: -200px;
        }
        
        .cta-section::after {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 50%;
            bottom: -150px;
            left: -150px;
        }
        
        .cta-section h2 {
            font-size: 3rem;
            margin-bottom: 25px;
            font-weight: 800;
            letter-spacing: -1px;
            position: relative;
            z-index: 1;
        }
        
        .cta-section p {
            max-width: 750px;
            margin: 0 auto 40px;
            opacity: 0.9;
            font-size: 1.3rem;
            line-height: 1.6;
            position: relative;
            z-index: 1;
        }
        
        /* Footer */
        footer {
            background: linear-gradient(135deg, #0f1c33 0%, #1a2b4a 100%);
            color: #cbd5e0;
            padding: 80px 0 40px;
            border-radius: 40px 40px 0 0;
            position: relative;
        }
        
        footer::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #4dc0b5, #2d4b8f);
            top: 0;
            left: 0;
            border-radius: 40px 40px 0 0;
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 60px;
            gap: 40px;
        }
        
        .footer-column {
            flex: 1;
            min-width: 250px;
        }
        
        .footer-column h3 {
            color: white;
            margin-bottom: 25px;
            font-size: 1.5rem;
            font-weight: 700;
            position: relative;
            padding-bottom: 15px;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            width: 40px;
            height: 4px;
            background: linear-gradient(90deg, #4dc0b5, #2d4b8f);
            bottom: 0;
            left: 0;
            border-radius: 2px;
        }
        
        .footer-column p {
            color: #a0aec0;
            line-height: 1.7;
            margin-bottom: 20px;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 15px;
        }
        
        .footer-column ul li a {
            color: #cbd5e0;
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .footer-column ul li a:hover {
            color: #4dc0b5;
            transform: translateX(5px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid #2a3a5a;
            font-size: 0.95rem;
            color: #a0aec0;
        }
        
        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero h1 {
                font-size: 3rem;
            }
            
            .section-title h2 {
                font-size: 2.5rem;
            }
            
            .examples-container {
                grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            }
        }
        
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                gap: 20px;
            }
            
            nav ul {
                gap: 20px;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .hero {
                padding: 80px 0;
                border-radius: 0 0 30px 30px;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
            
            .features {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .examples-container {
                grid-template-columns: 1fr;
            }
            
            .dynamic-features {
                padding: 40px 25px;
            }
            
            .tech-stack {
                padding: 40px 25px;
            }
            
            .cta-section h2 {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 480px) {
            .container {
                padding: 0 20px;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .cta-button {
                padding: 14px 30px;
                font-size: 1rem;
            }
            
            .pricing-card {
                padding: 40px 25px;
            }
            
            .price {
                font-size: 3rem;
            }
        }
        
        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }
        
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }
        
        ::-webkit-scrollbar-thumb {
            background: linear-gradient(135deg, #4dc0b5, #2d4b8f);
            border-radius: 10px;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(135deg, #3aa89d, #1a365d);
        }