
        /* Hero Section */
        .hero-section {
            padding: 5rem 1rem;
            background: var(--gradient-secondary);
            text-align: center;
        }

        .hero-section h1 {
            font-size: 3rem;
            font-weight: 700;
            color: var(--foreground);
            margin-bottom: 1.5rem;
        }

        /* Container */
        .container {
            max-width: 80rem;
            margin: 0 auto;
            padding: 0 1rem;
        }

        

        /* Tabs */
        .tabs-container {
            margin-top: 4rem;
        }

        .tabs-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0.25rem;
            background-color: var(--muted);
            padding: 0.25rem;
            border-radius: 0.5rem;
            margin-bottom: 3rem;
        }

        @media (min-width: 1024px) {
            .tabs-list {
                grid-template-columns: repeat(5, 1fr);
            }
        }

        .tab-trigger {
            padding: 0.75rem 1rem;
            background: transparent;
            border: none;
            border-radius: 0.375rem;
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--muted-foreground);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .tab-trigger:hover {
            background-color: rgba(255, 255, 255, 0.5);
        }

        .tab-trigger.active {
            background-color: white;
            color: var(--foreground);
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        }

        .tab-content {
            display: none;
        }

        .tab-content.active {
            display: block;
            animation: fadeIn 0.3s ease-in;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        

        .feature-section-title {
            font-size: 1.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 1rem;
        }

        .feature-section-description {
            color: var(--muted-foreground);
            text-align: center;
            max-width: 42rem;
            margin: 0 auto 3rem;
        }

        /* Feature Grid */
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
        }

        /* Card */
        .card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 0.75rem;
            box-shadow: var(--shadow-card);
            transition: all 0.3s ease;
        }

        .card:hover {
            box-shadow: var(--shadow-primary);
        }

        .card-header {
            padding: 1.5rem;
        }

        .card-content {
            padding: 0 1.5rem 1.5rem;
        }

        .icon-wrapper {
            width: 2.5rem;
            height: 2.5rem;
            background: var(--gradient-primary);
            border-radius: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 0.75rem;
        }

        .icon {
            width: 1.25rem;
            height: 1.25rem;
            color: white;
        }

   

        .card-description {
            color: var(--muted-foreground);
            font-size: 1rem;
        }

        /* Benefits Section */
        .benefits-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            align-items: center;
        }

        @media (min-width: 1024px) {
            .benefits-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        .benefit-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .benefit-icon {
            width: 2rem;
            height: 2rem;
            background: var(--gradient-primary);
            border-radius: 9999px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 0.25rem;
        }

        .benefit-icon svg {
            width: 1rem;
            height: 1rem;
            color: white;
        }

        .benefit-content h3 {
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .benefit-content p {
            color: var(--muted-foreground);
        }

        .cta-card {
            background: var(--gradient-primary);
            border-radius: 1rem;
            padding: 2rem;
            text-align: center;
            color: white;
        }

        .cta-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .cta-card p {
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 1.5rem;
        }

        .cta-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }     

    

        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2rem;
            }

            .hero-section p {
                font-size: 1rem;
            }

            .section-title {
                font-size: 2rem;
            }
        }