 /* ===== SECTION LAYOUT STYLES ===== */
        #features-section {
            padding: 120px 0;
            background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
            position: relative;
            overflow: hidden;
        }

        #features-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 20%, var(--primary-50) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, var(--secondary-light) 0%, transparent 50%),
                radial-gradient(circle at 40% 60%, var(--accent-light) 0%, transparent 50%);
            pointer-events: none;
        }

        #features-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

        #section-header {
            text-align: center;
            margin-bottom: 80px;
        }

        #section-title {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
          
            transform: translateY(50px);
        }

        #section-subtitle {
            font-size: 1.25rem;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
           
            transform: translateY(30px);
        }

        /* ===== FEATURES GRID STYLES ===== */
        #features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 35px;
            margin-bottom: 60px;
        }

        /* ===== FEATURE CARD STYLES ===== */
        .feature-card {
            background: var(--bg-primary);
            border: 2px solid transparent;
            border-radius: 24px;
            padding: 0;
            position: relative;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0;
            transform: translateY(50px) rotateX(10deg);
            box-shadow: var(--shadow-medium);
            background: linear-gradient(135deg, var(--bg-primary) 0%, rgba(248, 250, 252, 0.8) 100%);
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 22px;
            padding: 2px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask-composite: xor;
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .feature-card:hover::before {
            opacity: 1;
        }

        .feature-card:hover {
            transform: translateY(-15px) rotateX(0deg);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
        }

        .feature-card-header {
            background: linear-gradient(135deg, var(--primary-50) 0%, var(--secondary-light) 100%);
            padding: 35px 30px 25px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .feature-card-header::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(37, 211, 102, 0.1) 0%, transparent 70%);
            transform: scale(0);
            transition: transform 0.6s ease;
        }

        .feature-card:hover .feature-card-header::before {
            transform: scale(1);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2.2rem;
            color: white;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            z-index: 2;
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
        }

        .feature-card-body {
            padding: 30px;
            text-align: left;
        }

        .feature-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 12px;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .feature-subtitle {
            font-size: 0.9rem;
            color: var(--text-secondary);
            text-align: center;
            margin-bottom: 25px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .feature-description {
            color: var(--text-secondary);
            margin-bottom: 25px;
            font-size: 1rem;
            line-height: 1.6;
        }

        .feature-list {
            list-style: none;
        }

        .feature-list li {
            color: var(--text-secondary);
            margin-bottom: 12px;
            padding-left: 25px;
            position: relative;
            font-size: 0.95rem;
            line-height: 1.5;
            transition: color 0.3s ease;
        }

        .feature-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 6px;
            width: 16px;
            height: 16px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .feature-list li::after {
            content: '✓';
            position: absolute;
            left: 4px;
            top: 2px;
            color: white;
            font-size: 10px;
            font-weight: bold;
        }

        .feature-card:hover .feature-list li {
            color: var(--text-primary);
        }

        .feature-badge {
            position: absolute;
            top: -10px;
            right: -10px;
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
            color: white;
            padding: 8px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
            opacity: 0;
            transform: scale(0);
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .feature-card:hover .feature-badge {
            opacity: 1;
            transform: scale(1);
        }

        /* Special layouts for different cards */
        .feature-card:nth-child(1) .feature-icon {
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
            box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
        }

        .feature-card:nth-child(3) .feature-icon {
            background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
            box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
        }

        .feature-card:nth-child(5) .feature-icon {
            background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
            box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
        }

        .feature-card:nth-child(7) .feature-icon {
            background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
            box-shadow: 0 8px 25px rgba(239, 68, 68, 0.3);
        }

        /* ===== CTA SECTION STYLES ===== */
        #cta-section {
            text-align: center;
           
            transform: translateY(30px);
            padding: 40px 0;
        }

        #cta-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            text-decoration: none;
            padding: 20px 50px;
            border-radius: 60px;
            font-weight: 700;
            font-size: 1.2rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
            position: relative;
            overflow: hidden;
            border: none;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            z-index: 10;
        }

        #cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.6s ease;
            z-index: -1;
        }

        #cta-button:hover::before {
            left: 100%;
        }

        #cta-button:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
        }

        #cta-button:active {
            transform: translateY(-2px) scale(1.02);
        }

        #cta-icon {
            transition: transform 0.3s ease;
            font-size: 1.1rem;
        }

        #cta-button:hover #cta-icon {
            transform: translateX(8px);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            #features-section {
                padding: 80px 0;
            }

            #section-title {
                font-size: 2.5rem;
            }

            #features-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .feature-card {
                padding: 0;
            }

            #features-container {
                padding: 0 15px;
            }

            #cta-button {
                padding: 18px 40px;
                font-size: 1.1rem;
            }
        }

        @media (max-width: 480px) {
            #section-title {
                font-size: 2rem;
            }

            .feature-card-header {
                padding: 25px 20px 20px;
            }

            .feature-card-body {
                padding: 25px 20px;
            }

            #cta-button {
                padding: 15px 30px;
                font-size: 1rem;
            }
        }