        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            overflow-x: hidden;
            background: #ffffff;
            color: #1a1a1a;
        }

        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* Navigation - Same as home.html */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1.5rem 5%;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        nav.scrolled {
            padding: 1rem 5%;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            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;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: #1a1a1a;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: #667eea;
        }

        .cta-button {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
        }

        /* Hero Section */
        .page-hero {
            min-height: 60vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            position: relative;
            overflow: hidden;
            padding: 8rem 5% 4rem;
        }

        .floating-shape {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
            animation: float 6s ease-in-out infinite;
        }

        .shape1 { width: 300px; height: 300px; top: 10%; left: 10%; animation-delay: 0s; }
        .shape2 { width: 200px; height: 200px; top: 60%; right: 15%; animation-delay: 2s; }
        .shape3 { width: 150px; height: 150px; bottom: 10%; left: 30%; animation-delay: 4s; }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-30px); }
        }

        .hero-content {
            max-width: 1400px;
            text-align: center;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease forwards;
            animation-delay: 0.2s;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .page-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .page-hero p {
            font-size: 1.3rem;
            color: #4a5568;
            max-width: 800px;
            margin: 0 auto;
        }

        /* Section Styles */
        .section-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease;
        }

        .section-header.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .section-header h2 {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: #1a1a1a;
        }

        .section-header p {
            font-size: 1.2rem;
            color: #4a5568;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Main Features Grid */
        * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #ffffff;
    color: #1a1a1a;
    overflow-x: hidden;
}

/* Features Section */
.features-section {
    padding: 4rem 0;
    background: #ffffff;
}

.features-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 5%;
}

.features-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.features-header p {
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto;
}

/* Scroll Container */
.scroll-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
}

/* Gradient overlays for smooth edges */
.scroll-container::before,
.scroll-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.scroll-container::before {
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.scroll-container::after {
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

/* Cards Wrapper - Horizontal Scrolling Animation */
.cards-wrapper {
    display: flex;
    gap: 2rem;
    animation: scroll 40s linear infinite;
    width: fit-content;
}

/* Pause animation on hover */
.cards-wrapper:hover {
    animation-play-state: paused;
}

/* Infinite Scroll Animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-320px * 6 - 12rem));
    }
}

/* Feature Card */
.feature-card {
    min-width: 320px;
    max-width: 320px;
    padding: 2rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
    background: linear-gradient(135deg, #f8f9fc 0%, #d4dce9 100%);
}

/* Card Icon */
.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.feature-card:hover .card-icon {
    transform: scale(1.15) rotate(5deg);
}

/* Card Title */
.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

/* Card Description */
.feature-card p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    color: #4a5568;
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .features-header h2 {
        font-size: 2rem;
    }
    
    .features-header p {
        font-size: 1rem;
    }
    
    .feature-card {
        min-width: 280px;
        max-width: 280px;
        padding: 1.5rem;
    }
    
    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-280px * 6 - 12rem));
        }
    }
    
    .scroll-container::before,
    .scroll-container::after {
        width: 50px;
    }
}

@media (max-width: 480px) {
    .feature-card {
        min-width: 260px;
        max-width: 260px;
    }
    
    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-260px * 6 - 12rem));
        }
    }
}
        .main-features {
            padding: 8rem 5%;
            background: white;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }

        .feature-card {
            padding: 1.0rem;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            border-radius: 16px;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .feature-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
        }

        .feature-icon {
            font-size: 2.4rem;
            margin-bottom: 0.5rem;
        }

        .feature-card h3 {
            font-size: 1.35rem;
            margin-bottom: 0.4rem;
            color: #1a1a1a;
        }

        .feature-card p {
            color: #4a5568;
            line-height: 1.4;
            margin-bottom: 1.6rem;
            font-size: 0.88rem;
        }

        .feature-benefits {
            list-style: none;
            margin-top: 0.6rem;
        }

        .feature-benefits li {
            padding: 0.25rem 0;
            color: #2d3748;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 0.82rem;
        }

        .feature-benefits li:before {
            content: "✓";
            color: #667eea;
            font-weight: bold;
            font-size: 1.2rem;
        }

        /* Feature Comparison Section */
        .feature-comparison {
            padding: 1rem 3%;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        }

        .comparison-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .comparison-card {
            background: white;
            padding: 1.5rem;
            border-radius: 16px;
            text-align: center;
            opacity: 0;
            transform: scale(0.95);
            transition: all 0.6s ease;
        }

        .comparison-card.visible {
            opacity: 1;
            transform: scale(1);
        }

        .comparison-card:hover {
            transform: scale(1.05);
            box-shadow: 0 20px 60px rgba(102, 126, 234, 0.15);
        }

        .comparison-icon {
            font-size: 2.4rem;
            margin-bottom: 1.5rem;
        }

        .comparison-card h3 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            color: #1a1a1a;
        }

        .comparison-value {
            font-size: 2rem;
            font-weight: 700;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.3rem;
        }

        .comparison-label {
            color: #64748b;
            font-size: 0.9rem;
        }

        /* Detailed Feature Sections */
        .detailed-feature {
            padding: 8rem 5%;
        }

        .detailed-feature:nth-child(even) {
            background: white;
        }

        .detailed-feature:nth-child(odd) {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        }

        .feature-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .feature-content.reverse {
            direction: rtl;
        }

        .feature-content.reverse > * {
            direction: ltr;
        }

        .feature-text {
            opacity: 0;
            transform: translateX(-30px);
            transition: all 0.8s ease;
        }

        .feature-text.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .feature-visual {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 10px;
            height: 280px;
            max-width: 420px;
            width: 100%;
            border-radius: 12px;
            margin-left: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 5rem;
            opacity: 0;
            transform: translateX(30px);
            transition: all 0.8s ease;
        }

        .feature-visual.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .feature-text h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: #1a1a1a;
        }

        .feature-text p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #4a5568;
            margin-bottom: 2rem;
        }

        .feature-highlights {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .highlight-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .highlight-icon {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .highlight-text h4 {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            color: #1a1a1a;
        }

        .highlight-text p {
            font-size: 0.95rem;
            color: #64748b;
            margin: 0;
        }

        /* Integration Section */
        .integrations {
            padding: 8rem 5%;
            background: white;
        }

        .integration-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .integration-item {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            padding: 2rem;
            border-radius: 12px;
            text-align: center;
            transition: all 0.3s ease;
            opacity: 0;
            transform: scale(0.9);
            transition: all 0.5s ease;
        }

        .integration-item.visible {
            opacity: 1;
            transform: scale(1);
        }

        .integration-item:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
        }

        .integration-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .integration-name {
            font-weight: 600;
            color: #1a1a1a;
            font-size: 0.95rem;
        }

        /* CTA Section */
        .cta-section {
            padding: 8rem 5%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            text-align: center;
            color: white;
        }

        .cta-content {
            max-width: 800px;
            margin: 0 auto;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .cta-content.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .cta-content h2 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
        }

        .cta-content p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.95;
        }

        .primary-btn {
            background: white;
            color: #667eea;
            padding: 1rem 2.5rem;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }

        .primary-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
        }

        /* Footer */
        footer {
            background: #1a202c;
            color: white;
            padding: 3rem 5%;
            text-align: center;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #667eea;
        }

        /* Scroll Progress Bar */
        .progress-bar {
            position: fixed;
            top: 0;
            left: 0;
            height: 4px;
            background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
            z-index: 9999;
            transition: width 0.1s ease;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .page-hero h1 {
                font-size: 2.5rem;
            }

            .page-hero p {
                font-size: 1.1rem;
            }

            .section-header h2 {
                font-size: 2rem;
            }

            .nav-links {
                display: none;
            }

            .feature-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .feature-content.reverse {
                direction: ltr;
            }

            .feature-visual {
                height: 300px;
                font-size: 5rem;
            }

            .feature-highlights {
                grid-template-columns: 1fr;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }
        }
  