    /* Reset and base styles */
    *, *::before, *::after {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    :root {
        --primary: #16a34a;
        --primary-dark: #16a34a;
        --primary-light: #16a34a;
        --secondary: #10b981;
        --accent: #f43f5e;
        --dark: #111827;
        --dark-medium: #1f2937;
        --medium: #4b5563;
        --light-medium: #9ca3af;
        --light: #f3f4f6;
        --white: #ffffff;
    }

    body {
        font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, sans-serif;
        line-height: 1.6;
        color: var(--dark);
        background-color: var(--white);
        overflow-x: hidden;
    }

    /* Utility classes */
    .container {
        width: 100%;
        padding: 0 120px;
    }

    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.875rem 1.75rem;
        font-weight: 600;
        border-radius: 9999px;
        transition: all 0.3s ease;
        cursor: pointer;
        text-decoration: none;
    }

    .btn-primary {
        background: linear-gradient(135deg, #16a34a 0%, #1ac95a 100%);;
        color: var(--white);
        box-shadow: 0 10px 20px -10px rgba(99, 102, 241, 0.5);
    }

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 15px 25px -10px rgba(99, 102, 241, 0.6);
    }

    .btn-secondary {
        background: var(--white);
        color: var(--primary);
        border: 2px solid var(--primary-light);
    }

    .btn-secondary:hover {
        background: rgba(99, 102, 241, 0.05);
        transform: translateY(-2px);
    }

    .btn-icon {
        margin-left: 0.5rem;
        transition: transform 0.2s ease;
    }

    .btn:hover .btn-icon {
        transform: translateX(3px);
    }

    /* Header */
    .header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 100;
        padding: 1.5rem 0;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .header-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .logo {
        font-size: 1.75rem;
        font-weight: 800;
        color: var(--dark);
        text-decoration: none;
        display: flex;
        align-items: center;
    }

    .logo-icon {
        background: linear-gradient(135deg, #16a34a 0%, #1ac95a 100%);;
        width: 32px;
        height: 32px;
        border-radius: 0.375rem;
        margin-right: 0.75rem;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
    }

    .nav {
        display: flex;
        align-items: center;
        gap: 2.5rem;
    }

    .nav-link {
        color: var(--medium);
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }

    .nav-link:hover {
        color: var(--primary);
    }

    .nav-link.active {
        color: var(--primary);
        font-weight: 600;
    }

    .header-buttons {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    /* Hero section */
    .hero {
        padding: 5rem 0 6rem;
        position: relative;
        overflow: hidden;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: -300px;
        right: -300px;
        width: 600px;
        height: 600px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, rgba(99, 102, 241, 0) 70%);
        z-index: -1;
    }

    .hero::after {
        content: '';
        position: absolute;
        bottom: -200px;
        left: -200px;
        width: 500px;
        height: 500px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0) 70%);
        z-index: -1;
    }

    .hero-container {
        display: flex;
        align-items: center;
        gap: 4rem;
    }

    .hero-content {
        flex: 1;
        max-width: 600px;
    }

    .hero-badge {
        display: inline-flex;
        align-items: center;
        padding: 0.5rem 1rem;
        background: rgb(22, 163, 74, 0.1);
        border-radius: 9999px;
        color: var(--primary);
        font-weight: 600;
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
    }

    .hero-badge-icon {
        margin-right: 0.5rem;
    }

    .hero-title {
        font-size: 3.75rem;
        line-height: 1.3;
        font-weight: 800;
        margin-bottom: 1rem;
        background: #111827;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .hero-description {
        font-size: 1.25rem;
        color: rgb(0, 0, 0, 0.6);
        margin-bottom: 2.5rem;
        max-width: 540px;
    }

    .hero-buttons {
        display: flex;
        gap: 1rem;
        margin-bottom: 2.5rem;
    }

    .hero-stats {
        display: flex;
        gap: 2.5rem;
    }

    .hero-stat {
        display: flex;
        flex-direction: column;
    }

    .hero-stat-value {
        font-size: 2rem;
        font-weight: 700;
        color: var(--dark);
        margin-bottom: 0.25rem;
    }

    .hero-stat-label {
        font-size: 0.875rem;
        color: var(--light-medium);
    }

    .hero-image {
        flex: 1;
        position: relative;
    }

    .hero-image-main {
        width: 100%;
        height: auto;
        border-radius: 1.5rem;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
        transition: all 0.5s ease;
    }

    .hero-image-main:hover {
        transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
    }

    .hero-image::before {
        content: '';
        position: absolute;
        top: -20px;
        left: -20px;
        width: 100%;
        height: 100%;
        border-radius: 1.5rem;
        background: linear-gradient(135deg, #16a34a 0%, #3bf689 100%);;
        z-index: -1;
        opacity: 0.5;
    }

    .hero-image::after {
        content: '';
        position: absolute;
        bottom: -20px;
        right: -20px;
        width: 70%;
        height: 70%;
        border-radius: 1.5rem;
        background: linear-gradient(135deg, #121220 0%, #0505e2 100%);;
        z-index: -1;
        opacity: 0.3;
    }

    /* Features section */
    .features {
        padding: 8rem 0;
        position: relative;
    }

    .features-header {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 5rem;
    }

    .features-title-small {
        font-size: 1rem;
        font-weight: 600;
        color: var(--primary);
        text-transform: uppercase;
        letter-spacing: 0.1em;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .features-title-small::before,
    .features-title-small::after {
        content: '';
        height: 1px;
        width: 30px;
        background: var(--primary-light);
        margin: 0 1rem;
    }

    .features-title {
        font-size: 3rem;
        font-weight: 800;
        margin-bottom: 1.5rem;
        color: var(--dark);
    }

    .features-description {
        font-size: 1.25rem;
        color: var(--medium);
        max-width: 600px;
        margin: 0 auto;
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
        position: relative;
    }

    .features-grid::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background-image: radial-gradient(var(--light-medium) 1px, transparent 1px);
        background-size: 20px 20px;
        opacity: 0.1;
        z-index: -1;
    }

    .feature-card {
        background: var(--white);
        border-radius: 1.5rem;
        padding: 3rem;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);;
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    }

    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(135deg, #6366f1 0%, #1a60c9 100%);;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .feature-card:nth-child(2)::before {
        background: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);;
    }

    .feature-card:nth-child(3)::before {
        background: linear-gradient(135deg, #f43f5e 0%, #8b5cf6 100%);;
    }

    .feature-card:hover::before {
        opacity: 1;
    }

    .feature-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 70px;
        height: 70px;
        border-radius: 0.75rem;
        margin-bottom: 2rem;
        position: relative;
    }

    .feature-icon-bg {
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 0.75rem;
        background: linear-gradient(135deg, #6366f1 0%, #1a60c9 100%);;
        opacity: 0.1;
    }

    .feature-card:nth-child(2) .feature-icon-bg {
        background: linear-gradient(135deg, #16a34a 0%, #138a3f 100%);;
    }

    .feature-card:nth-child(3) .feature-icon-bg {
        background: linear-gradient(135deg, #f43f5e 0%, #8b5cf6 100%);;
    }

    .feature-icon svg {
        width: 32px;
        height: 32px;
        color: #6366f1;
        z-index: 1;
    }

    .feature-card:nth-child(2) .feature-icon svg {
        color: var(--secondary);
    }

    .feature-card:nth-child(3) .feature-icon svg {
        color: var(--accent);
    }

    .feature-title {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: var(--dark);
    }

    .feature-description {
        color: var(--medium);
        margin-bottom: 2rem;
        flex-grow: 1;
    }

    .feature-list {
        list-style: none;
        margin-bottom: 2rem;
    }

    .feature-list-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 1rem;
        color: var(--medium);
    }

    .feature-list-icon {
        color: #6366f1;
        margin-right: 0.75rem;
        flex-shrink: 0;
        margin-top: 0.25rem;
    }

    .feature-card:nth-child(2) .feature-list-icon {
        color: var(--secondary);
    }

    .feature-card:nth-child(3) .feature-list-icon {
        color: var(--accent);
    }

    .feature-link {
        display: inline-flex;
        align-items: center;
        color: #6366f1;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.2s ease;
        margin-top: auto;
    }

    .feature-card:nth-child(2) .feature-link {
        color: var(--secondary);
    }

    .feature-card:nth-child(3) .feature-link {
        color: var(--accent);
    }

    .feature-link:hover {
        opacity: 0.8;
    }

    .feature-link-icon {
        margin-left: 0.5rem;
        transition: transform 0.2s ease;
    }

    .feature-link:hover .feature-link-icon {
        transform: translateX(3px);
    }

    .features::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C92AC' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        z-index: 0;
    }

    
    /* Responsive styles */
    @media (max-width: 1200px) {
        .hero-title {
            font-size: 3.25rem;
        }
        
        .features-title, .showcase-title, .cta-title {
            font-size: 2.5rem;
        }
    }

    @media (max-width: 992px) {
        .hero-container {
            flex-direction: column;
            gap: 4rem;
        }
        
        .hero-content {
            max-width: 100%;
            text-align: center;
        }
        
        .hero-description {
            margin-left: auto;
            margin-right: auto;
        }
        
        .hero-buttons {
            justify-content: center;
        }
        
        .hero-stats {
            justify-content: center;
        }
        
        .features-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .showcase-badge-3 {
            display: none;
        }
    }

    @media (max-width: 768px) {
        .header {
            padding: 1rem 0;
        }
        
        .nav {
            display: none;
        }
        
        .hero {
            padding: 8rem 0 4rem;
        }
        
        .hero-title {
            font-size: 2.5rem;
        }
        
        .hero-description {
            font-size: 1.125rem;
        }
        
        .features, .showcase, .cta {
            padding: 5rem 0;
        }
        
        .features-title, .showcase-title, .cta-title {
            font-size: 2rem;
        }
        
        .features-description, .showcase-description, .cta-description {
            font-size: 1.125rem;
        }
        
        .features-grid {
            grid-template-columns: 1fr;
        }
        
        .showcase-badge-1, .showcase-badge-2 {
            display: none;
        }
        .features-navigation-container-end{
            display: none !important;
        }
        .feature-card{
            padding: 2rem 1rem;
        }
    }

    @media (max-width: 576px) {
        .container {
            padding: 0 1.5rem;
        }
        
        .hero-title {
            font-size: 2rem;
        }
        
        .hero-buttons {
            flex-direction: column;
            width: 100%;
        }
        
        .hero-buttons .btn {
            width: 100%;
        }
        
        .hero-stats {
            flex-direction: column;
            gap: 1.5rem;
            align-items: center;
        }
        
        .cta-buttons {
            flex-direction: column;
            width: 100%;
            max-width: 300px;
            margin: 0 auto;
        }
        
        .cta-buttons .btn {
            width: 100%;
        }
    }