
        /* ====== GLOBAL VARIABLES & RESET ====== */
        :root {
            --primary-blue: #0F4082;
            --primary-dark: #0B1020;
            --accent-blue: #2f57c4;
            --accent-teal: #00D4AA;
            --light-bg: #F7F9FC;
            --text-dark: #222;
            --text-gray: #555;
            --text-light: #888;
            --white: #FFFFFF;
            --shadow-light: 0 8px 32px rgba(0, 0, 0, 0.1);
            --shadow-medium: 0 20px 40px rgba(0, 0, 0, 0.15);
            --shadow-heavy: 0 40px 80px rgba(0, 0, 0, 0.25);
            --ease-out-quint: cubic-bezier(0.23, 1, 0.32, 1);
            --ease-in-out-quint: cubic-bezier(0.86, 0, 0.07, 1);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
            scroll-padding-top: 80px;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            overflow-x: hidden;
            background: var(--light-bg);
            position: relative;
        }
        
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 10% 20%, rgba(47, 87, 196, 0.05) 0%, transparent 20%),
                radial-gradient(circle at 90% 80%, rgba(0, 212, 170, 0.05) 0%, transparent 20%);
            pointer-events: none;
            z-index: -1;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            line-height: 1.2;
        }
        
        h1 { font-size: 2.5rem; }
        h2 { font-size: 2rem; }
        h3 { font-size: 1.5rem; }
        h4 { font-size: 1.1rem; }
        
        @media (max-width: 768px) {
            h1 { font-size: 2rem; }
            h2 { font-size: 1.75rem; }
            h3 { font-size: 1.25rem; }
        }
        
        section {
            padding: 80px 0;
            position: relative;
        }
        
        @media (max-width: 768px) {
            section {
                padding: 50px 0;
            }
        }
        
        .gradient-text {
            background: linear-gradient(90deg, var(--accent-blue), var(--accent-teal));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: inline-block;
        }
        
        /* ====== ENHANCED HEADER WITH GLASS EFFECT ====== */
        .header-area {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 15px 0;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .header-area.scrolled {
            padding: 10px 0;
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }
        
        .academy-main-menu {
            background: transparent !important;
        }
        
        /* Logo Size Fix */
        .academy-logo img {
            height: 40px;
            width: auto;
            object-fit: contain;
        }
        
        /* ====== GLASSMORPHISM UTILITY CLASSES ====== */
        .glass-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            box-shadow: var(--shadow-light);
            transition: all 0.4s var(--ease-in-out-quint);
            position: relative;
            overflow: hidden;
        }
        
        .glass-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
        }
        
        .glass-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-medium);
            border-color: rgba(255, 255, 255, 0.3);
        }
        
        /* ====== OPTIMIZED PROFESSIONAL HERO SECTION ====== */
        .hero-section {
            position: relative;
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
            padding: 120px 0 60px;
            overflow: hidden;
            min-height: auto;
            display: flex;
            align-items: center;
        }
        
        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 1;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        /* Hero Badges */
        .hero-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 25px;
        }
        
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.15);
            padding: 8px 16px;
            border-radius: 50px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .hero-badge span {
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--white);
        }
        
        .hero-badge .ai-tag {
            background: linear-gradient(90deg, var(--accent-teal), #2af598);
            padding: 4px 12px;
            border-radius: 20px;
            color: var(--primary-dark);
            font-weight: 700;
        }
        
        /* Hero Title */
        .hero-title {
            margin-bottom: 20px;
        }
        
        .hero-main-headline {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--white);
            line-height: 1.1;
            margin-bottom: 5px;
        }
        
        @media (min-width: 992px) {
            .hero-main-headline {
                font-size: 2.5rem;
            }
        }
        
        .hero-sub-headline {
            font-size: 1.8rem;
            font-weight: 300;
            background: linear-gradient(90deg, var(--accent-teal), #2af598);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.1;
        }
        
        /* Benefits Grid */
        .hero-benefits {
            margin: 25px 0;
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-bottom: 25px;
        }
        
        .benefit-card {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 15px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            transition: all 0.3s ease;
        }
        
        .benefit-card:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-3px);
        }
        
        .benefit-icon {
            width: 35px;
            height: 35px;
            background: linear-gradient(135deg, var(--accent-teal), #2af598);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1rem;
            margin-bottom: 10px;
        }
        
        .benefit-card h3 {
            color: var(--white);
            font-size: 1.5rem;
            margin-bottom: 3px;
            line-height: 1;
        }
        
        .benefit-card p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.85rem;
            margin-bottom: 3px;
        }
        
        .benefit-card small {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.7rem;
        }
        
        /* Hero Description */
        .hero-description {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1rem;
            line-height: 1.6;
            max-width: 500px;
            margin-bottom: 25px;
        }
        
        /* Hero CTA */
        .hero-cta {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            margin-bottom: 25px;
        }
        
        /* Social Proof */
        .hero-social-proof {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .social-proof-content {
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .reviews {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .stars {
            color: #FFD700;
            font-size: 1rem;
        }
        
        .reviews p {
            color: rgba(255, 255, 255, 0.9);
            margin: 0;
            font-size: 0.85rem;
        }
        
        /* Professional Buttons */
        .btn-primary, .btn-outline-light {
            padding: 14px 28px;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 12px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s var(--ease-in-out-quint);
            border: none;
            cursor: pointer;
        }
        
        .btn-primary {
            background: linear-gradient(90deg, var(--accent-blue), var(--accent-teal));
            color: var(--white);
            box-shadow: 0 8px 25px rgba(47, 87, 196, 0.3);
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(47, 87, 196, 0.4);
        }
        
        .btn-outline-light {
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.3);
            color: var(--white);
        }
        
        .btn-outline-light:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: var(--white);
            transform: translateY(-3px);
        }
        
        /* Professional Dashboard */
        .hero-dashboard {
            position: relative;
            height: 500px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-heavy);
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.15);
        }
        
        .dashboard-header {
            padding: 15px;
            background: rgba(255, 255, 255, 0.12);
            display: flex;
            align-items: center;
            gap: 12px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .dashboard-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }
        
        .dashboard-dot.red { background: #FF5F57; }
        .dashboard-dot.yellow { background: #FFBD2E; }
        .dashboard-dot.green { background: #28CA42; }
        
        .dashboard-title {
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.85rem;
            flex: 1;
        }
        
        .dashboard-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            grid-template-rows: repeat(3, 1fr);
            gap: 15px;
            padding: 20px;
            height: calc(100% - 50px);
        }
        
        .dashboard-card {
            background: rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            padding: 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            flex-direction: column;
        }
        
        .dashboard-card h4 {
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.8rem;
            margin-bottom: 8px;
        }
        
        .dashboard-metric {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--accent-teal);
            margin: 5px 0;
            line-height: 1;
        }
        
        .dashboard-trend {
            display: flex;
            align-items: center;
            gap: 4px;
            font-size: 0.75rem;
            margin-top: 3px;
        }
        
        .trend-up { color: #00D4AA; }
        
        .dashboard-progress {
            height: 4px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 2px;
            overflow: hidden;
            margin-top: 10px;
        }
        
        .progress-bar {
            height: 100%;
            background: linear-gradient(90deg, var(--accent-blue), var(--accent-teal));
            border-radius: 2px;
        }
        
        .ai-insights {
            grid-column: 1 / -1;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            padding: 12px;
            display: flex;
            align-items: center;
            gap: 12px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .ai-icon {
            color: var(--accent-teal);
            font-size: 1.2rem;
        }
        
        .ai-insights p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.8rem;
            margin: 0;
            flex: 1;
        }
        
        .ai-status {
            color: var(--accent-teal);
            font-size: 0.7rem;
            font-weight: 600;
        }
        
        .dashboard-status {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 10px 15px;
            background: rgba(255, 255, 255, 0.05);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .status-item {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.8);
        }
        
        .status-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #28CA42;
        }
        
        /* ====== CLIENT LOGOS SECTION - REDUCED SIZE ====== */
        .clients-section {
            padding: 60px 0;
            background: linear-gradient(135deg, var(--light-bg) 0%, #ffffff 100%);
        }
        
        .client-logos {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 20px;
            align-items: center;
            justify-items: center;
        }
        
        .client-logos img {
            max-height: 90px;
            width: auto;
            object-fit: contain;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.3s ease;
        }
        
        .client-logos img:hover {
            filter: grayscale(0%);
            opacity: 1;
        }
        
        /* ====== WHY CHOOSE OSCORM SECTION ====== */
        .why-section {
            padding: 80px 0;
            position: relative;
        }
        
        .why-card {
            background: var(--white);
            border-radius: 20px;
            padding: 30px;
            height: 100%;
            border: 1px solid rgba(0, 0, 0, 0.1);
            transition: all 0.5s var(--ease-in-out-quint);
            box-shadow: var(--shadow-light);
        }
        
        .why-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-medium);
        }
        
        .why-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--accent-blue), var(--accent-teal));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: var(--white);
            font-size: 1.5rem;
        }
        
        .why-card h3 {
            margin-bottom: 15px;
            color: var(--primary-dark);
            font-size: 1.3rem;
        }
        
        .why-card p {
            color: var(--text-gray);
            line-height: 1.7;
            font-size: 0.95rem;
        }
        
        /* ====== FIXED AI SECTION WITH BETTER ALIGNMENT ====== */
        .ai-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
            color: var(--white);
            position: relative;
        }
        
        .ai-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 30%, rgba(0, 212, 170, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(47, 87, 196, 0.1) 0%, transparent 50%);
        }
        
        /* AI Graphic Container - IMPROVED ALIGNMENT */
        .ai-graphic-container {
            position: relative;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .ai-graphic {
            width: 100%;
            max-width: 500px;
            height: auto;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            padding: 30px;
        }
        
        .ai-graphic-title {
            font-size: 1.2rem;
            color: var(--accent-teal);
            margin-bottom: 25px;
            font-weight: 600;
            text-align: center;
            letter-spacing: 0.5px;
        }
        
        /* AI Process Flow - Better spacing */
        .ai-process-flow {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            margin-bottom: 35px;
        }
        
        .ai-process-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
            flex: 1;
        }
        
        .ai-process-icon {
            width: 70px;
            height: 70px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-teal);
            font-size: 1.8rem;
            border: 2px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }
        
        .ai-process-step:hover .ai-process-icon {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-5px);
        }
        
        .ai-process-arrow {
            color: rgba(255, 255, 255, 0.3);
            font-size: 2rem;
            margin: 0 10px;
        }
        
        .ai-process-label {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.9);
            text-align: center;
            font-weight: 500;
            line-height: 1.4;
        }
        
        /* AI Dashboard Metrics - Added to fill space professionally */
        .ai-dashboard-metrics {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 20px;
        }
        
        .ai-metric-card {
            background: rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            padding: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }
        
        .ai-metric-card:hover {
            background: rgba(255, 255, 255, 0.12);
            transform: translateY(-3px);
        }
        
        .ai-metric-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }
        
        .ai-metric-icon {
            color: var(--accent-teal);
            font-size: 1.2rem;
        }
        
        .ai-metric-header h4 {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.9);
            margin: 0;
        }
        
        .ai-metric-value {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--accent-teal);
            line-height: 1;
            margin-bottom: 5px;
        }
        
        .ai-metric-label {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.7);
        }
        
        /* Professional Status Bar - Replaced "Live Processing" */
        .ai-system-status {
            margin-top: 25px;
            padding: 15px;
            background: rgba(0, 212, 170, 0.1);
            border-radius: 12px;
            border: 1px solid rgba(0, 212, 170, 0.2);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .status-info {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .status-indicator {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--accent-teal);
            animation: pulse 2s infinite;
        }
        
        .status-text {
            font-size: 0.9rem;
            color: var(--accent-teal);
            font-weight: 500;
        }
        
        .status-detail {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.7);
        }
        
        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }
        
        /* AI Features - Better alignment with graphic */
        .ai-features {
            display: grid;
            gap: 30px;
            height: 100%;
            align-content: center;
        }
        
        .ai-feature {
            display: flex;
            align-items: flex-start;
            gap: 20px;
        }
        
        .ai-feature-icon {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-teal);
            font-size: 1.5rem;
            flex-shrink: 0;
            border: 1px solid rgba(255, 255, 255, 0.2);
            margin-top: 5px;
        }
        
        .ai-feature-content {
            flex: 1;
        }
        
        .ai-feature-content h4 {
            color: var(--white);
            margin-bottom: 12px;
            font-size: 1.3rem;
        }
        
        .ai-feature-content p {
            color: rgba(255, 255, 255, 0.85);
            margin: 0;
            font-size: 1rem;
            line-height: 1.6;
        }
        
        /* ====== OPTIMIZED SERVICES GRID ====== */
        .services-section {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--light-bg) 0%, #f0f4f9 100%);
            position: relative;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .service-card-lg {
            grid-column: span 2;
        }
        
        .service-card {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            height: 280px;
            cursor: pointer;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .service-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            transform: scale(1.03);
        }
        
        .service-card:hover .service-image {
            transform: scale(1.05);
        }
        
        .service-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, 
                rgba(11, 16, 32, 0.95) 0%, 
                rgba(11, 16, 32, 0.7) 50%, 
                transparent 100%);
            padding: 30px 25px 25px;
            color: var(--white);
            transform: translateY(0);
            transition: opacity 0.4s ease;
            opacity: 0;
        }
        
        .service-card:hover .service-overlay {
            opacity: 1;
        }
        
        .service-icon {
            width: 55px;
            height: 55px;
            background: linear-gradient(135deg, var(--accent-teal), #2af598);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
            color: var(--white);
            font-size: 1.3rem;
            box-shadow: 0 8px 20px rgba(0, 212, 170, 0.3);
            transition: transform 0.3s ease;
        }
        
        .service-card:hover .service-icon {
            transform: scale(1.05);
        }
        
        .service-title {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: var(--white);
            font-weight: 700;
        }
        
        .service-meta {
            display: flex;
            gap: 15px;
            margin-bottom: 15px;
            font-size: 0.85rem;
            opacity: 0.9;
        }
        
        .service-meta span {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .service-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--accent-teal);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            padding: 6px 0;
            position: relative;
            font-size: 0.9rem;
        }
        
        .service-cta:hover {
            gap: 12px;
        }
        
        .service-cta i {
            transition: transform 0.3s ease;
        }
        
        .service-cta:hover i {
            transform: translateX(3px);
        }
        
        /* ====== TESTIMONIALS SECTION ====== */
        .testimonials-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8fafc 0%, var(--light-bg) 100%);
        }
        
        .testimonial-card {
            background: var(--white);
            border-radius: 20px;
            padding: 30px;
            height: 100%;
            border: 1px solid rgba(0, 0, 0, 0.1);
            position: relative;
            transition: all 0.4s var(--ease-in-out-quint);
            box-shadow: var(--shadow-light);
        }
        
        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-medium);
        }
        
        .testimonial-quote {
            position: absolute;
            top: 20px;
            right: 20px;
            color: var(--accent-teal);
            opacity: 0.1;
            font-size: 4rem;
            font-family: Georgia, serif;
        }
        
        .testimonial-text {
            font-size: 1rem;
            line-height: 1.7;
            color: var(--text-dark);
            margin-bottom: 25px;
            position: relative;
            z-index: 1;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--accent-teal);
            transition: transform 0.4s ease;
        }
        
        .testimonial-card:hover .author-avatar {
            transform: scale(1.1);
        }
        
        .author-info h4 {
            margin: 0;
            color: var(--primary-dark);
            font-size: 1rem;
        }
        
        .author-info p {
            margin: 0;
            color: var(--text-gray);
            font-size: 0.9rem;
        }
        
        /* ====== FAQ SECTION ====== */
        .faq-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--light-bg) 0%, #ffffff 100%);
        }
        
        .faq-item {
            background: var(--white);
            border: 1px solid rgba(0, 0, 0, 0.1);
            border-radius: 12px;
            margin-bottom: 15px;
            overflow: hidden;
            transition: all 0.4s ease;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        }
        
        .faq-item:hover {
            border-color: var(--accent-blue);
            box-shadow: var(--shadow-light);
        }
        
        .faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: transparent;
        }
        
        .faq-question h4 {
            margin: 0;
            color: var(--primary-dark);
            font-size: 1rem;
            flex: 1;
        }
        
        .faq-icon {
            transition: all 0.4s var(--ease-in-out-quint);
            color: var(--accent-blue);
            font-size: 0.9rem;
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.5s var(--ease-in-out-quint);
            color: var(--text-gray);
            line-height: 1.7;
        }
        
        .faq-item.active .faq-answer {
            padding: 0 20px 20px;
            max-height: 500px;
        }
        
        .faq-item.active .faq-icon {
            transform: rotate(180deg);
            color: var(--accent-teal);
        }
        
        /* ====== REDESIGNED CTA SECTION ====== */
        .cta-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
            position: relative;
        }
        
        .cta-card {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            padding: 40px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
        }
        
        .cta-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
        }
        
        .cta-title {
            color: var(--white);
            margin-bottom: 15px;
            font-size: 2rem;
            font-weight: 800;
            line-height: 1.2;
        }
        
        .cta-subtitle {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.1rem;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }
        
        .cta-badges {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin: 20px 0 30px;
            flex-wrap: wrap;
        }
        
        .cta-badge {
            background: rgba(255, 255, 255, 0.15);
            padding: 10px 20px;
            border-radius: 50px;
            font-size: 0.9rem;
            color: var(--white);
            display: flex;
            align-items: center;
            gap: 8px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }
        
        .cta-badge:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }
        
        .cta-badge i {
            font-size: 1rem;
            color: var(--accent-teal);
        }
        
        .cta-actions {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 30px;
        }
        
        .cta-button {
            padding: 14px 30px;
            font-size: 0.95rem;
            font-weight: 600;
            border-radius: 12px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s var(--ease-in-out-quint);
            min-width: 180px;
            justify-content: center;
            border: 2px solid transparent;
        }
        
        .cta-button-primary {
            background: linear-gradient(90deg, var(--accent-teal), #2af598);
            color: var(--primary-dark);
            box-shadow: 0 10px 25px rgba(0, 212, 170, 0.3);
        }
        
        .cta-button-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(0, 212, 170, 0.4);
            border-color: rgba(255, 255, 255, 0.3);
        }
        
        .cta-button-secondary {
            background: rgba(255, 255, 255, 0.1);
            color: var(--white);
            border: 2px solid rgba(255, 255, 255, 0.3);
        }
        
        .cta-button-secondary:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
            border-color: var(--white);
        }
        
        .cta-button-tertiary {
            background: rgba(255, 255, 255, 0.95);
            color: var(--primary-dark);
            border: 2px solid rgba(255, 255, 255, 0.3);
        }
        
        .cta-button-tertiary:hover {
            background: var(--white);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
        }
        
        .cta-note {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.85rem;
            margin-top: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        
        /* ====== FOOTER ====== */
        .custom-footer {
            background: var(--primary-dark);
            color: var(--white);
            padding: 60px 0 30px;
            position: relative;
        }
        
        .footer-col {
            margin-bottom: 30px;
        }
        
        .footer-heading {
            font-size: 1.1rem;
            margin-bottom: 20px;
            color: var(--white);
            font-weight: 600;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--accent-teal);
        }
        
        .footer-social-section {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 40px;
            padding-top: 25px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .social-icons {
            display: flex;
            gap: 20px;
            align-items: center;
        }
        
        .social-icons a {
            color: var(--white);
            font-size: 1.3rem;
            transition: all 0.3s ease;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
        }
        
        .social-icons a:hover {
            color: var(--accent-teal);
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-3px);
        }
        
        /* Back to Top Button */
        .back-to-top-wrapper {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        
        .back-to-top {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--white);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 600;
            padding: 10px 20px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 25px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
            white-space: nowrap;
        }
        
        .back-to-top:hover {
            background: rgba(255, 255, 255, 0.2);
            color: var(--accent-teal);
            transform: translateY(-3px);
            border-color: var(--accent-teal);
        }
        
        .back-to-top i {
            font-size: 1rem;
            transition: transform 0.3s ease;
        }
        
        .back-to-top:hover i {
            transform: translateY(-2px);
        }
        
        .copyright {
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.85rem;
        }
        
        /* ====== RESPONSIVE STYLES ====== */
        @media (max-width: 1200px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .service-card-lg {
                grid-column: span 2;
            }
            
            .hero-dashboard {
                height: 360px;
            }
            
            .dashboard-metric {
                font-size: 1.6rem;
            }
            
            .ai-graphic {
                height: 400px;
            }
        }
        
        @media (max-width: 992px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .service-card-lg {
                grid-column: span 2;
            }
            
            .hero-section .row {
                flex-direction: column-reverse;
            }
            
            .hero-dashboard {
                margin-bottom: 40px;
                height: 350px;
            }
            
            .benefits-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .ai-graphic-container {
                margin-bottom: 40px;
            }
            
            .ai-graphic {
                height: 380px;
            }
            
            .ai-process-flow {
                max-width: 400px;
                margin: 0 auto 30px;
            }
            
            .ai-process-icon {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }
            
            .footer-social-section {
                flex-direction: column;
                gap: 20px;
                align-items: flex-start;
            }
            
            .back-to-top-wrapper {
                width: 100%;
                justify-content: space-between;
            }
            
            .cta-title {
                font-size: 1.8rem;
            }
        }
        
        @media (max-width: 768px) {
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .service-card-lg {
                grid-column: span 1;
            }
            
            .service-card {
                height: 250px;
            }
            
            .hero-main-headline {
                font-size: 1.8rem;
            }
            
            .hero-sub-headline {
                font-size: 1.5rem;
            }
            
            .benefits-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }
            
            .hero-cta {
                flex-direction: column;
            }
            
            .btn-primary, .btn-outline-light {
                width: 100%;
                justify-content: center;
            }
            
            .hero-dashboard {
                height: 320px;
            }
            
            .dashboard-grid {
                padding: 15px;
                gap: 12px;
            }
            
            .dashboard-metric {
                font-size: 1.4rem;
            }
            
            .client-logos {
                grid-template-columns: repeat(3, 1fr);
                gap: 15px;
            }
            
            .ai-graphic {
                height: 350px;
            }
            
            .ai-process-flow {
                gap: 5px;
            }
            
            .ai-process-icon {
                width: 50px;
                height: 50px;
                font-size: 1.3rem;
            }
            
            .ai-process-arrow {
                font-size: 1.5rem;
            }
            
            .ai-dashboard-metrics {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .ai-metric-value {
                font-size: 1.6rem;
            }
            
            .cta-card {
                padding: 30px 20px;
            }
            
            .cta-title {
                font-size: 1.6rem;
            }
            
            .cta-subtitle {
                font-size: 1rem;
            }
            
            .cta-actions {
                flex-direction: column;
                align-items: center;
            }
            
            .cta-button {
                width: 100%;
                max-width: 300px;
            }
            
            .cta-badges {
                flex-direction: column;
                gap: 10px;
                align-items: center;
            }
            
            .cta-badge {
                width: 100%;
                max-width: 250px;
                justify-content: center;
            }
            
            .footer-social-section {
                align-items: center;
                text-align: center;
            }
            
            .back-to-top-wrapper {
                flex-direction: column;
                gap: 15px;
                align-items: center;
            }
        }
        
        @media (max-width: 576px) {
            .service-card {
                height: 220px;
            }
            
            .hero-badges {
                flex-direction: column;
                gap: 8px;
            }
            
            .hero-badge {
                justify-content: center;
            }
            
            .hero-dashboard {
                height: 300px;
            }
            
            .client-logos {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            
            .client-logos img {
                max-height: 30px;
            }
            
            .ai-graphic {
                height: 320px;
                padding: 20px;
            }
            
            .ai-process-flow {
                flex-direction: column;
                gap: 20px;
            }
            
            .ai-process-arrow {
                transform: rotate(90deg);
            }
            
            .ai-system-status {
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }
            
            .ai-feature {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
            
            .ai-feature-icon {
                align-self: center;
            }
            
            .cta-card {
                padding: 25px 15px;
            }
            
            .cta-title {
                font-size: 1.4rem;
            }
            
            .cta-subtitle {
                font-size: 0.95rem;
            }
            
            .cta-button {
                padding: 12px 20px;
                font-size: 0.9rem;
            }
        }
        
        /* ====== NAVIGATION ARROWS ====== */
        .page-navigation {
            position: fixed;
            right: 20px;
            bottom: 20px;
            z-index: 999;
        }
        
        .nav-arrow {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, var(--accent-blue), var(--accent-teal));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.1rem;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(10px);
            visibility: hidden;
            box-shadow: 0 4px 15px rgba(47, 87, 196, 0.3);
        }
        
        .nav-arrow.show {
            opacity: 1;
            transform: translateY(0);
            visibility: visible;
        }
        
        .nav-arrow:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(47, 87, 196, 0.4);
        }
        
        /* ====== IMAGE OPTIMIZATION ====== */
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        
        /* Button fixes for Next.js */
        .custom-btn.glass-card {
          background: linear-gradient(90deg, var(--accent-blue), var(--accent-teal)) !important;
          color: white !important;
          border: none !important;
          font-weight: 600 !important;
          padding: 12px 28px !important;
          transition: all 0.3s ease !important;
        }

        .custom-btn.glass-card:hover {
            background: linear-gradient(90deg, var(--accent-teal), var(--accent-blue)) !important;
            transform: translateY(-2px) !important;
            box-shadow: 0 10px 25px rgba(47, 87, 196, 0.3) !important;
        }
        
        /* Remove problematic animation classes */
        .will-change, .reveal-element, .stagger-child {
            /* These classes are removed to prevent Next.js hydration issues */
        }
        
