/* Minor style adjustments for the example */
        .navbar-brand img {
            height: 30px; /* Adjust as needed */
            margin-right: 10px;
        }
        
        /* Modern Innovative Features Hero */
        .innovative-features-hero {
            padding: 120px 0 80px;
            background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
            position: relative;
            overflow: hidden;
        }
        
        .innovative-features-hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, rgba(249, 115, 22, 0.05) 100%);
            pointer-events: none;
        }
        
        .features-content {
            max-width: 600px;
            position: relative;
            z-index: 2;
        }
        
        .features-content h1 {
            font-size: 3rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 2rem;
            color: #1a1a1a;
        }
        
        .features-content p.lead {
            font-size: 1.25rem;
            color: #6b7280;
            line-height: 1.6;
            margin-bottom: 3rem;
        }
        
        .features-list {
            list-style: none;
            padding: 0;
        }
        
        .features-list li {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1.5rem 0;
            border-bottom: 1px solid rgba(229, 231, 235, 0.5);
            position: relative;
        }
        
        .features-list li:last-child {
            border-bottom: none;
        }
        
        .feature-bullet {
            width: 12px;
            height: 12px;
            background: linear-gradient(45deg, #f59e0b, #f97316);
            border-radius: 50%;
            margin-top: 0.5rem;
            flex-shrink: 0;
            box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
        }
        
        .feature-content h3 {
            font-size: 1.25rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 0.5rem;
        }
        
        .feature-content p {
            color: #6b7280;
            font-size: 0.95rem;
            line-height: 1.6;
            margin: 0;
        }
        
        .features-image {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .dashboard-preview {
            background: white;
            border-radius: 24px;
            padding: 2.5rem;
            box-shadow: 0 25px 80px rgba(0,0,0,0.08);
            position: relative;
            max-width: 450px;
            width: 100%;
            border: 1px solid rgba(229, 231, 235, 0.3);
        }
        
        .dashboard-preview::before {
            content: '';
            position: absolute;
            top: -1px;
            left: -1px;
            right: -1px;
            bottom: -1px;
            background: linear-gradient(135deg, #f59e0b, #f97316);
            border-radius: 24px;
            z-index: -1;
            opacity: 0.1;
        }
        
        .growth-stats {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 2rem;
        }
        
        .stat-item {
            text-align: left;
        }
        
        .stat-item h4 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 0.25rem;
        }
        
        .stat-item p {
            font-size: 0.875rem;
            color: #6b7280;
            margin: 0;
        }
        
        .growth-indicator {
            font-size: 3.5rem;
            font-weight: 800;
            color: #10b981;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            justify-content: center;
            margin-bottom: 1.5rem;
        }
        
        .growth-indicator i {
            font-size: 2rem;
        }
        
        .chart-bars {
            display: flex;
            align-items: end;
            gap: 0.5rem;
            height: 100px;
            margin-top: 1.5rem;
            justify-content: center;
        }
          
        .chart-bar {
            background: linear-gradient(to top, #f59e0b, #f97316);
            border-radius: 6px 6px 0 0;
            width: 24px;
            animation: growBar 2s ease-out forwards;
            box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
        }
        
        @keyframes growBar {
            from { height: 0; }
            to { height: var(--bar-height); }
        }
        
        .chart-period {
            text-align: center;
            margin-top: 1rem;
            color: #6b7280;
            font-size: 0.875rem;
        }
        
        /* Analytics overlay image */
        .analytics-overlay {
            position: absolute;
            top: 20px;
            right: -30px;
            z-index: 3;
            opacity: 0.9;
        }
        
        .analytics-overlay img {
            width: 180px;
            height: 180px;
            object-fit: cover;
            border-radius: 16px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
            border: 3px solid white;
        }
        
        .affordable-pricing {
            padding: 100px 0;
            background: white;
        }
        
        .pricing-intro {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .pricing-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            box-shadow: 0 15px 50px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            border: 2px solid transparent;
            position: relative;
            height: 100%;
        }
        
        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 60px rgba(0,0,0,0.15);
        }
        
        .pricing-card.featured {
            border-color: #6f42c1;
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            color: white;
        }
        
        .pricing-card.featured::before {
            content: 'Most Popular';
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: #6f42c1;
            color: white;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: bold;
        }
        
        .price-amount {
            font-size: 3rem;
            font-weight: bold;
            color: #1a1a1a;
            margin-bottom: 10px;
        }
        
        .pricing-card.featured .price-amount {
            color: white;
        }
        
        .price-period {
            color: #666;
            font-size: 1.1rem;
            margin-bottom: 30px;
        }
        
        .pricing-card.featured .price-period {
            color: #ccc;
        }
        
        .features-included {
            list-style: none;
            padding: 0;
            margin-bottom: 40px;
        }
        
        .features-included li {
            padding: 12px 0;
            display: flex;
            align-items: center;
            gap: 15px;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }
        
        .pricing-card.featured .features-included li {
            border-bottom-color: rgba(255,255,255,0.1);
        }
        
        .feature-icon {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: #28a745;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.8rem;
            flex-shrink: 0;
        }
        
        .pricing-btn {
            width: 100%;
            padding: 15px;
            border-radius: 10px;
            font-weight: bold;
            transition: all 0.3s ease;
        }
        
        .pricing-btn.primary {
            background: #6f42c1;
            color: white;
            border: none;
        }
        
        .pricing-btn.primary:hover {
            background: #5a2d9c;
            transform: translateY(-2px);
        }
        
        .pricing-btn.secondary {
            background: transparent;
            color: #1a1a1a;
            border: 2px solid #1a1a1a;
        }
        
        .pricing-btn.secondary:hover {
            background: #1a1a1a;
            color: white;
        }
        
        .faq-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }
        
        .faq-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .faq-columns {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }
        
        .faq-column h5 {
            color: #6f42c1;
            font-weight: bold;
            margin-bottom: 30px;
            padding-bottom: 10px;
            border-bottom: 2px solid #6f42c1;
        }
        
        .faq-item {
            background: white;
            border-radius: 10px;
            margin-bottom: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }
        
        .faq-item:hover {
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .faq-question {
            padding: 20px;
            font-weight: 600;
            color: #333;
            cursor: pointer;
            display: flex;
            justify-content: between;
            align-items: center;
            border: none;
            background: none;
            width: 100%;
            text-align: left;
        }
        
        .faq-answer {
            padding: 0 20px 20px;
            color: #666;
            display: none;
        }
        
        .faq-item.active .faq-answer {
            display: block;
        }
        
        .faq-item.active .faq-question::after {
            transform: rotate(180deg);
        }
        
        .faq-question::after {
            content: '▼';
            font-size: 0.8rem;
            color: #6f42c1;
            transition: transform 0.3s ease;
        }
        
        .boost-revenue {
            padding: 100px 0;
            background: linear-gradient(135deg, #6f42c1, #8b5cf6);
            color: white;
            text-align: center;
        }
        
        .boost-content {
            max-width: 600px;
            margin: 0 auto;
        }
        
        .boost-percentage {
            font-size: 5rem;
            font-weight: 800;
            margin-bottom: 20px;
            text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
        }
        
        @media (max-width: 768px) {
            .faq-columns {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .boost-percentage {
                font-size: 3.5rem;
            }        }
        
        /* PEA PREMIUM Section Styles */
        .pea-premium {
            background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
            position: relative;
            overflow: hidden;
        }
        
        .pea-premium::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.2);
            z-index: 1;
        }
        
        .pea-premium .container {
            position: relative;
            z-index: 2;
        }
        
        .premium-content h2 {
            font-weight: 800;
            letter-spacing: -0.02em;
        }
        
        .premium-content .btn {
            font-weight: 600;
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
        }
        
        .premium-content .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(0,0,0,0.3);
        }
        
        .premium-image img {
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            transition: transform 0.3s ease;
        }
        
        .premium-image:hover img {
            transform: scale(1.02);
        }
        
        @media (max-width: 991px) {
            .premium-content {
                text-align: center;
                margin-bottom: 3rem;
            }
            
            .pea-premium h2 {
                font-size: 2.5rem;
            }        }
        
        /* Client Testimonials Section Styles */
        .client-testimonials-section {
            background: #f8f9fa;
        }
        
        .testimonials-content h2 {
            font-weight: 800;
            line-height: 1.2;
        }
        
        .testimonials-content .btn {
            font-weight: 600;
            box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
            transition: all 0.3s ease;
        }
        
        .testimonials-content .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(139, 92, 246, 0.4);
        }
        
        .avatar-stack {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: -15px;
        }
        
        .avatar {
            width: 60px;
            height: 60px;
            border: 4px solid white;
            margin-left: -15px;
            transition: transform 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        
        .avatar:first-child {
            margin-left: 0;
        }
        
        .avatar:hover {
            transform: scale(1.1) translateY(-5px);
            z-index: 10;
            position: relative;
        }
        
        .trust-badge {
            margin: 20px 0;
        }
        
        .trust-badge p {
            color: #6c757d;
            font-size: 1rem;
        }
        
        .navigation-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
        }
        
        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #dee2e6;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .dot.active {
            background: #343a40;
        }
        
        .dot:hover {
            background: #6c757d;
            transform: scale(1.2);
        }
        
        @media (max-width: 991px) {
            .testimonials-content {
                text-align: center;
                margin-bottom: 3rem;
            }
            
            .testimonials-content h2 {
                font-size: 2.5rem;
            }
            
            .avatar {
                width: 50px;
                height: 50px;
                margin-left: -10px;
            }
        }

        @media (max-width: 768px) {
            .innovative-features-hero {
                padding: 80px 0 60px;
            }
            
            .features-content h1 {
                font-size: 2.25rem;
            }
            
            .features-content p.lead {
                font-size: 1.125rem;
            }
            
            .dashboard-preview {
                padding: 2rem;
                margin-top: 3rem;
            }
            
            .growth-indicator {
                font-size: 3rem;
            }
            
            .analytics-overlay {
                position: static;
                margin-top: 2rem;
                text-align: center;
            }
            
            .analytics-overlay img {
                width: 150px;
                height: 150px;
            }
        }