/* CSS Reset & Variables */
        :root {
            /* Brand Colors */
            --primary-navy: #0A1628;
            --secondary-navy: #1E293B;
            --accent-gold: #FFD700;
            --accent-emerald: #10B981;
            --accent-platinum: #E5E7EB;
            
            /* Glass Morphism */
            --glass-bg: rgba(255, 255, 255, 0.08);
            --glass-bg-light: rgba(255, 255, 255, 0.12);
            --glass-border: rgba(255, 255, 255, 0.16);
            --glass-shadow: rgba(0, 0, 0, 0.25);
            
            /* Text Colors */
            --text-primary: #FFFFFF;
            --text-secondary: #CBD5E1;
            --text-muted: #94A3B8;
            --text-dark: #1E293B;
            
            /* Gradients */
            --gradient-primary: linear-gradient(135deg, #0A1628 0%, #1E293B 50%, #374151 100%);
            --gradient-gold: linear-gradient(135deg, #FFD700 0%, #F59E0B 100%);
            --gradient-emerald: linear-gradient(135deg, #10B981 0%, #059669 100%);
            --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
            
            /* Spacing */
            --space-xs: 0.25rem;
            --space-sm: 0.5rem;
            --space-md: 1rem;
            --space-lg: 1.5rem;
            --space-xl: 2rem;
            --space-2xl: 3rem;
            --space-3xl: 4rem;
            --space-4xl: 6rem;
            
            /* Border Radius */
            --radius-xs: 0.25rem;
            --radius-sm: 0.5rem;
            --radius-md: 0.75rem;
            --radius-lg: 1rem;
            --radius-xl: 1.5rem;
            --radius-2xl: 2rem;
            --radius-full: 9999px;
            
            /* Shadows */
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
            --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            --shadow-glow: 0 0 20px rgba(255, 215, 0, 0.3);
            
            /* Typography */
            --font-size-xs: 0.75rem;
            --font-size-sm: 0.875rem;
            --font-size-base: 1rem;
            --font-size-lg: 1.125rem;
            --font-size-xl: 1.25rem;
            --font-size-2xl: 1.5rem;
            --font-size-3xl: 1.875rem;
            --font-size-4xl: 2.25rem;
            --font-size-5xl: 3rem;
            --font-size-6xl: 3.75rem;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
            background: var(--gradient-primary);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
            min-height: 100vh;
            -webkit-text-size-adjust: 100%;
            text-size-adjust: 100%;
        }

        /* Utility Classes */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 var(--space-lg);
        }

        .text-center { text-align: center; }
        .text-left { text-align: left; }
        .text-right { text-align: right; }

        .font-light { font-weight: 300; }
        .font-normal { font-weight: 400; }
        .font-medium { font-weight: 500; }
        .font-semibold { font-weight: 600; }
        .font-bold { font-weight: 700; }
        .font-extrabold { font-weight: 800; }
        .font-black { font-weight: 900; }

        .mb-xs { margin-bottom: var(--space-xs); }
        .mb-sm { margin-bottom: var(--space-sm); }
        .mb-md { margin-bottom: var(--space-md); }
        .mb-lg { margin-bottom: var(--space-lg); }
        .mb-xl { margin-bottom: var(--space-xl); }
        .mb-2xl { margin-bottom: var(--space-2xl); }

        /* Header & Navigation */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(10, 22, 40, 0.95);
            -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--glass-border);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        }

        .nav-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: var(--space-lg) 0;
        }

        .logo {
            display: inline-flex;
            align-items: center;
            gap: var(--space-sm);
            text-decoration: none;
            transition: transform 0.3s ease;
            position: relative;
            z-index: 10;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .logo-img {
            height: 35px;
            width: auto;
            object-fit: contain;
        }

        .logo-text {
            font-size: var(--font-size-2xl);
            font-weight: 800;
            background: var(--gradient-gold);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
        }

        @media (max-width: 768px) {
            .logo-img {
                height: 30px;
            }
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: var(--space-lg);
            align-items: center;
            margin: 0;
            padding: 0;
        }

        .nav-link {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 500;
            font-size: var(--font-size-base);
            padding: var(--space-sm) var(--space-md);
            border-radius: var(--radius-md);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            display: inline-flex;
            align-items: center;
            white-space: nowrap;
        }

        .nav-link::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--gradient-gold);
            transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .nav-link:hover::before {
            width: calc(100% - 16px);
        }

        .nav-link.active::before {
            width: calc(100% - 16px);
        }

        .nav-link:hover {
            color: var(--text-primary);
            transform: translateY(-1px);
            background: var(--glass-bg);
        }

        .nav-link.active {
            color: var(--accent-gold);
            background: var(--glass-bg);
            box-shadow: 0 0 0 1px rgba(255, 215, 0, 0.2);
        }

        /* Dropdown Menu Styles */
        .has-dropdown {
            position: relative;
        }

        .dropdown-arrow {
            font-size: 0.75em;
            margin-left: 6px;
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: inline-block;
            line-height: 1;
            opacity: 0.7;
        }

        .has-dropdown:hover .dropdown-arrow,
        .has-dropdown.active .dropdown-arrow {
            transform: rotate(180deg);
            opacity: 1;
        }

        .dropdown-menu {
            position: absolute;
            top: calc(100% + 8px);
            left: 50%;
            transform: translateX(-50%) translateY(-10px);
            min-width: 240px;
            background: rgba(10, 22, 40, 0.98);
            -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius-lg);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 1001;
            padding: var(--space-sm) 0;
            list-style: none;
            margin: 0;
        }

        .dropdown-menu li {
            list-style: none;
        }

        .has-dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }

        .dropdown-link {
            display: block;
            padding: 12px 24px;
            color: var(--text-secondary);
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            font-size: var(--font-size-sm);
            font-weight: 400;
            position: relative;
            overflow: hidden;
            border-radius: var(--radius-sm);
            margin: 2px 8px;
        }

        .dropdown-link::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 3px;
            height: 0;
            background: var(--gradient-gold);
            transition: height 0.3s ease;
        }

        .dropdown-link:hover {
            color: var(--accent-gold);
            background: rgba(255, 215, 0, 0.15);
            transform: translateX(4px);
        }

        .dropdown-link:hover::before {
            height: 60%;
        }

        .cta-button {
            background: var(--gradient-gold);
            color: var(--primary-navy);
            padding: 10px 24px;
            border-radius: var(--radius-full);
            text-decoration: none;
            font-weight: 600;
            font-size: var(--font-size-sm);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
            border: none;
            cursor: pointer;
            white-space: nowrap;
        }

        .cta-button:hover {
            transform: translateY(-2px) scale(1.02);
            box-shadow: 0 8px 32px rgba(255, 215, 0, 0.5), 0 0 40px rgba(255, 215, 0, 0.3);
        }

        /* Typography System */
        .heading-1 {
            font-size: var(--font-size-6xl);
            font-weight: 800;
            line-height: 1.1;
            background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-gold) 50%, var(--accent-emerald) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .heading-2 {
            font-size: var(--font-size-5xl);
            font-weight: 700;
            line-height: 1.2;
            color: var(--text-primary);
        }

        .heading-3 {
            font-size: var(--font-size-4xl);
            font-weight: 600;
            line-height: 1.3;
            color: var(--text-primary);
        }

        .heading-4 {
            font-size: var(--font-size-3xl);
            font-weight: 600;
            line-height: 1.4;
            color: var(--text-primary);
        }

        .heading-5 {
            font-size: var(--font-size-2xl);
            font-weight: 500;
            line-height: 1.4;
            color: var(--text-primary);
        }

        .heading-6 {
            font-size: var(--font-size-xl);
            font-weight: 500;
            line-height: 1.5;
            color: var(--text-primary);
        }

        .body-large {
            font-size: var(--font-size-lg);
            color: var(--text-secondary);
            line-height: 1.7;
        }

        .body-base {
            font-size: var(--font-size-base);
            color: var(--text-secondary);
            line-height: 1.6;
        }

        .body-small {
            font-size: var(--font-size-sm);
            color: var(--text-muted);
            line-height: 1.5;
        }

        /* Button System */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: var(--space-sm);
            padding: var(--space-md) var(--space-xl);
            border: none;
            border-radius: var(--radius-lg);
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            font-size: var(--font-size-base);
            position: relative;
            overflow: hidden;
        }

        .btn-primary {
            background: var(--gradient-gold);
            color: var(--primary-navy);
            box-shadow: var(--shadow-glow);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 48px rgba(255, 215, 0, 0.4);
        }

        .btn-secondary {
            background: var(--glass-bg);
            color: var(--text-primary);
            border: 1px solid var(--glass-border);
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
        }

        .btn-secondary:hover {
            background: var(--glass-bg-light);
            transform: translateY(-2px);
            border-color: var(--accent-gold);
        }

        .btn-outline {
            background: transparent;
            color: var(--accent-gold);
            border: 2px solid var(--accent-gold);
        }

        .btn-outline:hover {
            background: var(--accent-gold);
            color: var(--primary-navy);
            transform: translateY(-2px);
        }

        .btn-ghost {
            background: transparent;
            color: var(--text-secondary);
            border: 1px solid transparent;
        }

        .btn-ghost:hover {
            color: var(--text-primary);
            background: var(--glass-bg);
        }

        .btn-lg {
            padding: var(--space-lg) var(--space-2xl);
            font-size: var(--font-size-lg);
        }

        .btn-sm {
            padding: var(--space-sm) var(--space-md);
            font-size: var(--font-size-sm);
        }

        /* Card System */
        .card {
            background: var(--glass-bg);
            -webkit-backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius-xl);
            padding: var(--space-xl);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-gold);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .card:hover::before {
            transform: scaleX(1);
        }

        .card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-2xl);
            border-color: rgba(255, 215, 0, 0.3);
        }

        .card-header {
            margin-bottom: var(--space-lg);
        }

        .card-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-gold);
            border-radius: var(--radius-xl);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: var(--font-size-3xl);
            margin-bottom: var(--space-md);
        }

        .card-title {
            font-size: var(--font-size-xl);
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: var(--space-sm);
        }

        .card-description {
            color: var(--text-secondary);
            margin-bottom: var(--space-lg);
        }

        /* Table System */
        .table-container {
            background: var(--glass-bg);
            -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-xl);
        }

        .table {
            width: 100%;
            border-collapse: collapse;
        }

        .table thead {
            background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-navy) 100%);
        }

        .table th {
            padding: var(--space-lg);
            text-align: left;
            font-weight: 600;
            color: var(--text-primary);
            font-size: var(--font-size-sm);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            border-bottom: 1px solid var(--glass-border);
        }

        .table td {
            padding: var(--space-lg);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            color: var(--text-secondary);
            vertical-align: middle;
        }

        .table tr:hover {
            background: rgba(255, 255, 255, 0.04);
        }

        .table tr:last-child td {
            border-bottom: none;
        }

        /* Status Badges */
        .badge {
            display: inline-flex;
            align-items: center;
            gap: var(--space-xs);
            padding: var(--space-xs) var(--space-sm);
            border-radius: var(--radius-full);
            font-size: var(--font-size-xs);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .badge-success {
            background: rgba(16, 185, 129, 0.2);
            color: var(--accent-emerald);
            border: 1px solid rgba(16, 185, 129, 0.3);
        }

        .badge-warning {
            background: rgba(255, 215, 0, 0.2);
            color: var(--accent-gold);
            border: 1px solid rgba(255, 215, 0, 0.3);
        }

        .badge-error {
            background: rgba(239, 68, 68, 0.2);
            color: #EF4444;
            border: 1px solid rgba(239, 68, 68, 0.3);
        }

        .badge-info {
            background: rgba(59, 130, 246, 0.2);
            color: #3B82F6;
            border: 1px solid rgba(59, 130, 246, 0.3);
        }

        /* Form System */
        .form-group {
            margin-bottom: var(--space-lg);
        }

        .form-label {
            display: block;
            margin-bottom: var(--space-sm);
            font-weight: 500;
            color: var(--text-primary);
            font-size: var(--font-size-sm);
        }

        .form-input {
            width: 100%;
            padding: var(--space-md);
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius-md);
            color: var(--text-primary);
            font-size: var(--font-size-base);
            transition: all 0.3s ease;
        }

        .form-input:focus {
            outline: none;
            border-color: var(--accent-gold);
            box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
            background: rgba(255, 255, 255, 0.08);
        }

        .form-input::placeholder {
            color: var(--text-muted);
        }

        .form-textarea {
            resize: vertical;
            min-height: 120px;
        }

        .form-select {
            appearance: none;
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23CBD5E1' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
            background-position: right 12px center;
            background-repeat: no-repeat;
            background-size: 16px;
            padding-right: 40px;
        }

        /* Stats & Metrics */
        .stat-card {
            background: var(--glass-bg);
            -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius-xl);
            padding: var(--space-xl);
            text-align: center;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .stat-card:hover {
            transform: translateY(-4px);
            border-color: var(--accent-gold);
            box-shadow: var(--shadow-xl);
        }

        .stat-number {
            display: block;
            font-size: var(--font-size-4xl);
            font-weight: 800;
            background: var(--gradient-gold);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: var(--space-sm);
        }

        .stat-label {
            color: var(--text-secondary);
            font-size: var(--font-size-sm);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            font-weight: 500;
        }

        /* Progress Bars */
        .progress-container {
            margin-bottom: var(--space-lg);
        }

        .progress-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: var(--space-sm);
        }

        .progress-label {
            font-weight: 500;
            color: var(--text-primary);
            font-size: var(--font-size-sm);
        }

        .progress-value {
            font-weight: 600;
            color: var(--accent-gold);
            font-size: var(--font-size-sm);
        }

        .progress-bar {
            width: 100%;
            height: 12px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: var(--radius-full);
            overflow: hidden;
            position: relative;
        }

        .progress-fill {
            height: 100%;
            background: var(--gradient-gold);
            border-radius: var(--radius-full);
            transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .progress-fill::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
            animation: shimmer 2s infinite;
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        /* Alert System */
        .alert {
            padding: var(--space-lg);
            border-radius: var(--radius-lg);
            margin-bottom: var(--space-lg);
            border-left: 4px solid;
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
            display: flex;
            align-items: flex-start;
            gap: var(--space-md);
        }

        .alert-success {
            background: rgba(16, 185, 129, 0.1);
            border-color: var(--accent-emerald);
            color: var(--accent-emerald);
        }

        .alert-warning {
            background: rgba(255, 215, 0, 0.1);
            border-color: var(--accent-gold);
            color: var(--accent-gold);
        }

        .alert-error {
            background: rgba(239, 68, 68, 0.1);
            border-color: #EF4444;
            color: #EF4444;
        }

        .alert-info {
            background: rgba(59, 130, 246, 0.1);
            border-color: #3B82F6;
            color: #3B82F6;
        }

        /* Grid System */
        .grid {
            display: grid;
            gap: var(--space-lg);
        }

        .grid-cols-1 { grid-template-columns: repeat(1, 1fr); }
        .grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
        .grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
        .grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
        .grid-auto-fit { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

        /* Sections */
        .section {
            padding: var(--space-4xl) 0;
            position: relative;
        }

        .section-header {
            text-align: center;
            margin-bottom: var(--space-3xl);
        }

        .section-title {
            font-size: var(--font-size-4xl);
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: var(--space-lg);
        }

        .section-subtitle {
            font-size: var(--font-size-lg);
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
        }

        /* Footer */
        .footer {
            background: linear-gradient(135deg, var(--primary-navy) 0%, #0F172A 100%);
            border-top: 1px solid var(--glass-border);
            padding: var(--space-3xl) 0 var(--space-xl);
        }

        .footer-content {
            text-align: center;
        }

        .footer-logo {
            display: flex;
            justify-content: center;
            margin-bottom: var(--space-2xl);
        }

        .footer-logo-img {
            height: 60px;
            width: auto;
            opacity: 0.9;
            transition: opacity 0.3s ease;
        }

        .footer-logo-img:hover {
            opacity: 1;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: var(--space-xl);
            margin-bottom: var(--space-xl);
            flex-wrap: wrap;
        }

        .footer-link {
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.3s ease;
            font-weight: 500;
        }

        .footer-link:hover {
            color: var(--accent-gold);
        }

        .footer-text {
            color: var(--text-muted);
            font-size: var(--font-size-sm);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-40px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(40px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .animate-fade-in-up {
            animation: fadeInUp 0.6s ease-out;
        }

        .animate-fade-in-left {
            animation: fadeInLeft 0.6s ease-out;
        }

        .animate-fade-in-right {
            animation: fadeInRight 0.6s ease-out;
        }

        /* Mobile Menu Styles */
        .mobile-menu-toggle {
            display: none;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            color: var(--accent-gold);
            width: 44px;
            height: 44px;
            border-radius: var(--radius-md);
            cursor: pointer;
            position: relative;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .mobile-menu-toggle:hover {
            background: var(--glass-bg-light);
            border-color: var(--accent-gold);
            transform: scale(1.05);
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
        }

        .mobile-menu-toggle span {
            display: block;
            width: 22px;
            height: 2px;
            background: var(--accent-gold);
            margin: 5px auto;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border-radius: 2px;
        }

        .mobile-menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .container {
                padding: 0 var(--space-md);
            }
            
            .heading-1 {
                font-size: var(--font-size-5xl);
            }
            
            .mobile-menu-toggle {
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
            }
            
            .nav-menu {
                display: none;
                position: fixed;
                top: 80px;
                left: 0;
                right: 0;
                background: rgba(10, 22, 40, 0.98);
                -webkit-backdrop-filter: blur(20px);
                backdrop-filter: blur(20px);
                border-top: 1px solid var(--glass-border);
                border-bottom: 1px solid var(--glass-border);
                flex-direction: column;
                padding: var(--space-xl) var(--space-lg);
                z-index: 999;
                box-shadow: var(--shadow-2xl);
                max-height: calc(100vh - 80px);
                overflow-y: auto;
            }
            
            .nav-menu.active,
            .nav-menu.nav-menu-open {
                display: flex;
                animation: slideDown 0.3s ease;
            }
            
            .nav-menu li {
                width: 100%;
            }
            
            .nav-link {
                width: 100%;
                padding: var(--space-md) var(--space-lg);
                border-radius: var(--radius-md);
                font-size: var(--font-size-lg);
                justify-content: space-between;
            }
            
            .nav-link:hover {
                background: var(--glass-bg-light);
            }
            
            /* Dropdown styles for mobile */
            .has-dropdown {
                position: relative;
            }
            
            .dropdown-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                background: rgba(255, 255, 255, 0.05);
                border: none;
                border-radius: var(--radius-md);
                margin-top: var(--space-sm);
                margin-left: var(--space-lg);
                padding: var(--space-sm) 0;
                box-shadow: none;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
            }
            
            .has-dropdown.active .dropdown-menu {
                max-height: 500px;
            }
            
            .dropdown-menu li a {
                padding: var(--space-sm) var(--space-lg);
                font-size: var(--font-size-base);
            }
            
            .dropdown-arrow {
                transition: transform 0.3s ease;
            }
            
            .has-dropdown.active .dropdown-arrow {
                transform: rotate(180deg);
            }
        }

        @media (max-width: 768px) {
            /* Logo Carousel - Mobile */
            .carousel-logo {
                width: 160px;
                height: 100px;
                padding: var(--space-lg);
            }
            
            .carousel-logo img {
                max-width: 120px;
                max-height: 60px;
            }

            .logo-track {
                gap: var(--space-xl);
                animation: scroll-logos 30s linear infinite;
            }

            .partners-carousel .logo-track {
                animation: scroll-logos 35s linear infinite;
            }
            
            .partners-carousel .carousel-logo {
                width: 200px;
                height: 120px;
            }
            
            .partners-carousel .carousel-logo img {
                max-width: 180px;
                max-height: 100px;
            }

            .logo-carousel {
                padding: var(--space-xl) 0;
            }

            @keyframes slideDown {
                from {
                    opacity: 0;
                    transform: translateY(-20px);
                }
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }
            
            .heading-1 {
                font-size: var(--font-size-3xl);
                line-height: 1.2;
            }
            
            .heading-2 {
                font-size: var(--font-size-2xl);
            }

            .body-large {
                font-size: var(--font-size-base);
                padding: 0 var(--space-md);
            }

            .stat-number {
                font-size: var(--font-size-3xl);
            }

            .cta-button {
                display: none;
            }
            
            .grid-cols-2,
            .grid-cols-3,
            .grid-cols-4 {
                grid-template-columns: 1fr;
                gap: var(--space-lg);
            }
            
            .table-container {
                overflow-x: auto;
            }
            
            .footer-links {
                flex-direction: column;
                gap: var(--space-sm);
            }
            
            .card {
                padding: var(--space-lg);
            }
            
            .btn {
                width: 100%;
                justify-content: center;
                padding: var(--space-md) var(--space-xl);
                font-size: var(--font-size-base);
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 var(--space-sm);
            }
            
            .section {
                padding: var(--space-2xl) 0;
            }
            
            .heading-1 {
                font-size: var(--font-size-2xl);
            }

            .heading-2 {
                font-size: var(--font-size-xl);
            }

            .stat-number {
                font-size: var(--font-size-2xl);
            }

            .table-container {
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
            }

            table {
                min-width: 500px;
            }
        }

        /* Scrollbar Styling */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: var(--primary-navy);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--gradient-gold);
            border-radius: var(--radius-sm);
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--accent-gold);
        }

        /* Testimonial Components */
        .testimonial-card {
            background: var(--glass-bg);
            -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius-xl);
            padding: var(--space-2xl);
            position: relative;
            overflow: hidden;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: var(--space-lg);
            left: var(--space-xl);
            font-size: 6rem;
            font-weight: 900;
            line-height: 1;
            background: var(--gradient-gold);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            opacity: 0.3;
        }

        .testimonial-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
            border-color: rgba(255, 215, 0, 0.3);
        }

        .testimonial-content {
            position: relative;
            z-index: 1;
            font-size: var(--font-size-lg);
            line-height: 1.8;
            color: var(--text-secondary);
            margin-bottom: var(--space-xl);
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: var(--space-md);
            padding-top: var(--space-lg);
            border-top: 1px solid var(--glass-border);
        }

        .testimonial-avatar {
            width: 60px;
            height: 60px;
            border-radius: var(--radius-full);
            background: var(--gradient-gold);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: var(--font-size-xl);
            font-weight: 700;
            color: var(--primary-navy);
            overflow: hidden;
        }

        .testimonial-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .testimonial-info {
            flex: 1;
        }

        .testimonial-name {
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 2px;
        }

        .testimonial-title {
            font-size: var(--font-size-sm);
            color: var(--text-muted);
        }

        .testimonial-company {
            font-size: var(--font-size-sm);
            color: var(--accent-gold);
            font-weight: 500;
        }

        .testimonial-rating {
            display: flex;
            gap: 4px;
            margin-left: auto;
        }

        .testimonial-rating .star {
            color: var(--accent-gold);
            font-size: var(--font-size-lg);
        }

        /* Client Logo Showcase */
        .logo-showcase {
            padding: var(--space-3xl) 0;
            background: linear-gradient(180deg, transparent 0%, var(--glass-bg) 50%, transparent 100%);
        }

        .logo-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: var(--space-3xl);
            align-items: center;
            justify-items: center;
            padding: var(--space-2xl) 0;
        }

        .logo-item {
            width: 160px;
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius-lg);
            padding: var(--space-lg);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .logo-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--gradient-glass);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .logo-item:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 0 40px rgba(255, 215, 0, 0.1);
            border-color: var(--accent-gold);
        }

        .logo-item:hover::before {
            opacity: 1;
        }

        .logo-item img {
            max-width: 90%;
            max-height: 90%;
            object-fit: contain;
            filter: brightness(0.9) contrast(1.1);
            transition: filter 0.4s ease;
            position: relative;
            z-index: 1;
        }

        .logo-item:hover img {
            filter: brightness(1.1) contrast(1.2);
        }

        /* Partners Grid */
        .partners-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: var(--space-3xl);
            align-items: center;
            justify-items: center;
            padding: var(--space-2xl) 0;
        }

        .partner-item {
            width: 180px;
            height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--glass-bg) 0%, var(--glass-bg-light) 100%);
            backdrop-filter: blur(15px);
            border: 2px solid var(--glass-border);
            border-radius: var(--radius-xl);
            padding: var(--space-xl);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .partner-item::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, var(--accent-emerald) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.4s ease;
            pointer-events: none;
        }

        .partner-item:hover {
            transform: translateY(-8px) scale(1.08);
            box-shadow: 0 15px 40px rgba(16, 185, 129, 0.2), 0 0 60px rgba(16, 185, 129, 0.1);
            border-color: var(--accent-emerald);
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, var(--glass-bg-light) 100%);
        }

        .partner-item:hover::before {
            opacity: 0.1;
        }

        .partner-item img {
            max-width: 85%;
            max-height: 85%;
            object-fit: contain;
            filter: brightness(0.95);
            transition: all 0.4s ease;
            position: relative;
            z-index: 1;
        }

        .partner-item:hover img {
            filter: brightness(1.15);
            transform: scale(1.05);
        }

        /* Logo Carousel */
        .logo-carousel {
            overflow: hidden;
            position: relative;
            padding: var(--space-3xl) 0;
            width: 100%;
        }

        .logo-track {
            display: flex;
            gap: var(--space-4xl);
            animation: scroll-logos 40s linear infinite;
            width: fit-content;
        }

        .carousel-logo {
            flex-shrink: 0;
            width: 200px;
            height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius-lg);
            padding: var(--space-xl);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .carousel-logo img {
            width: auto;
            height: auto;
            max-width: 150px;
            max-height: 70px;
            object-fit: contain;
            filter: brightness(0.9) contrast(1.1) grayscale(20%);
            transition: all 0.4s ease;
            display: block;
            margin: 0 auto;
        }

        .carousel-logo:hover {
            transform: scale(1.1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 0 40px rgba(255, 215, 0, 0.1);
            border-color: var(--accent-gold);
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, var(--glass-bg-light) 100%);
        }

        .carousel-logo:hover img {
            filter: brightness(1.1) contrast(1.2) grayscale(0%);
            transform: scale(1.05);
        }

        /* Partners carousel with different animation speed and no boxes */
        .partners-carousel .logo-track {
            animation: scroll-logos 50s linear infinite;
        }

        .partners-carousel .carousel-logo {
            background: transparent;
            border: none;
            backdrop-filter: none;
            width: 280px;
            height: 160px;
            padding: var(--space-lg);
        }

        .partners-carousel .carousel-logo img {
            max-width: 240px;
            max-height: 140px;
            filter: brightness(0.95) contrast(1.05);
        }

        .partners-carousel .carousel-logo:hover {
            box-shadow: none;
            border: none;
            background: transparent;
            transform: scale(1.15);
        }

        .partners-carousel .carousel-logo:hover img {
            filter: brightness(1.15) contrast(1.1);
            transform: none;
        }

        @keyframes scroll-logos {
            0% { 
                transform: translateX(0); 
            }
            100% { 
                transform: translateX(-50%); 
            }
        }

        /* Pause animation on hover */
        .logo-carousel:hover .logo-track {
            animation-play-state: paused;
        }

        .logo-track:hover {
            animation-play-state: paused;
        }

        /* Timeline/Process Components */
        .timeline {
            position: relative;
            padding: var(--space-2xl) 0;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            background: var(--gradient-gold);
            transform: translateX(-50%);
        }

        .timeline-item {
            display: flex;
            align-items: center;
            margin-bottom: var(--space-3xl);
            position: relative;
        }

        .timeline-item:nth-child(even) {
            flex-direction: row-reverse;
        }

        .timeline-content {
            flex: 1;
            padding: var(--space-xl);
            background: var(--glass-bg);
            -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius-lg);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .timeline-content:hover {
            transform: scale(1.02);
            box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
        }

        .timeline-dot {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 24px;
            height: 24px;
            background: var(--gradient-gold);
            border-radius: var(--radius-full);
            border: 4px solid var(--primary-navy);
            z-index: 1;
            box-shadow: 0 0 0 8px rgba(255, 215, 0, 0.2);
        }

        .timeline-date {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            top: -30px;
            font-weight: 600;
            color: var(--accent-gold);
            font-size: var(--font-size-sm);
            white-space: nowrap;
        }

        /* Process Steps */
        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: var(--space-xl);
            position: relative;
        }

        .process-step {
            text-align: center;
            position: relative;
            padding: var(--space-xl);
        }

        .process-step::after {
            content: '';
            position: absolute;
            top: 60px;
            right: -40px;
            width: 80px;
            height: 2px;
            background: var(--gradient-gold);
            opacity: 0.5;
        }

        .process-step:last-child::after {
            display: none;
        }

        .process-number {
            width: 80px;
            height: 80px;
            margin: 0 auto var(--space-lg);
            background: var(--gradient-gold);
            border-radius: var(--radius-full);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: var(--font-size-2xl);
            font-weight: 800;
            color: var(--primary-navy);
            position: relative;
            box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
        }

        .process-step:hover .process-number {
            transform: rotate(360deg) scale(1.1);
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .process-title {
            font-size: var(--font-size-xl);
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: var(--space-sm);
        }

        .process-description {
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* Pricing Tables */
        .pricing-table {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: var(--space-xl);
            align-items: stretch;
        }

        .pricing-card {
            background: var(--glass-bg);
            -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius-xl);
            padding: var(--space-2xl);
            position: relative;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
        }

        .pricing-card.featured {
            border-color: var(--accent-gold);
            transform: scale(1.05);
            box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
        }

        .pricing-card.featured::before {
            content: 'RECOMMENDED';
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--gradient-gold);
            color: var(--primary-navy);
            padding: 4px 20px;
            border-radius: var(--radius-full);
            font-size: var(--font-size-xs);
            font-weight: 700;
            letter-spacing: 0.05em;
        }

        .pricing-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-8px);
        }

        .pricing-tier {
            font-size: var(--font-size-sm);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--text-muted);
            margin-bottom: var(--space-sm);
        }

        .pricing-price {
            font-size: var(--font-size-5xl);
            font-weight: 800;
            background: var(--gradient-gold);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: var(--space-xs);
        }

        .pricing-currency {
            font-size: var(--font-size-2xl);
            vertical-align: super;
        }

        .pricing-period {
            font-size: var(--font-size-base);
            color: var(--text-secondary);
            margin-bottom: var(--space-xl);
        }

        .pricing-features {
            list-style: none;
            padding: 0;
            margin: 0 0 var(--space-xl) 0;
            flex: 1;
        }

        .pricing-feature {
            padding: var(--space-sm) 0;
            color: var(--text-secondary);
            display: flex;
            align-items: center;
            gap: var(--space-sm);
        }

        .pricing-feature::before {
            content: '✓';
            color: var(--accent-emerald);
            font-weight: 700;
            font-size: var(--font-size-lg);
        }

        .pricing-feature.disabled {
            opacity: 0.5;
            text-decoration: line-through;
        }

        .pricing-feature.disabled::before {
            content: '✗';
            color: var(--text-muted);
        }

        /* Enhanced CTA Sections */
        .cta-banner {
            background: var(--gradient-gold);
            padding: var(--space-3xl) 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-banner::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: pulse-glow 4s ease-in-out infinite;
        }

        @keyframes pulse-glow {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.1); opacity: 0.8; }
        }

        .cta-banner-content {
            position: relative;
            z-index: 1;
        }

        .cta-banner .heading-2 {
            color: var(--primary-navy);
            margin-bottom: var(--space-lg);
        }

        .cta-banner .body-large {
            color: var(--primary-navy);
            opacity: 0.9;
            margin-bottom: var(--space-xl);
        }

        .floating-cta {
            position: fixed;
            bottom: var(--space-xl);
            right: var(--space-xl);
            z-index: 100;
            animation: float-cta 3s ease-in-out infinite;
        }

        @keyframes float-cta {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .sticky-cta-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(10, 22, 40, 0.98);
            -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
            border-top: 1px solid var(--glass-border);
            padding: var(--space-md);
            z-index: 99;
            transform: translateY(100%);
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .sticky-cta-bar.visible {
            transform: translateY(0);
        }

        /* Content Layout Variants */
        .content-split {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--space-3xl);
            align-items: center;
        }

        .content-split.reverse {
            direction: rtl;
        }

        .content-split.reverse > * {
            direction: ltr;
        }

        .content-image {
            position: relative;
            overflow: hidden;
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-2xl);
        }

        .content-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .content-image:hover img {
            transform: scale(1.05);
        }

        .content-image::after {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--gradient-gold);
            opacity: 0;
            transition: opacity 0.3s ease;
            mix-blend-mode: multiply;
        }

        .content-image:hover::after {
            opacity: 0.2;
        }

        /* Feature List */
        .feature-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: var(--space-xl);
        }

        .feature-item {
            display: flex;
            gap: var(--space-md);
            align-items: flex-start;
        }

        .feature-icon {
            flex-shrink: 0;
            width: 48px;
            height: 48px;
            background: var(--gradient-gold);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: var(--font-size-xl);
            box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
        }

        .feature-content h4 {
            font-size: var(--font-size-lg);
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: var(--space-xs);
        }

        .feature-content p {
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* FAQ Accordion */
        .faq-accordion {
            border-radius: var(--radius-lg);
            overflow: hidden;
        }

        .faq-item {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            margin-bottom: var(--space-md);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            box-shadow: 0 4px 20px rgba(255, 215, 0, 0.1);
        }

        .faq-question {
            padding: var(--space-lg);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: var(--text-primary);
            background: transparent;
            border: none;
            width: 100%;
            text-align: left;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: rgba(255, 215, 0, 0.05);
        }

        .faq-question::after {
            content: '+';
            font-size: var(--font-size-xl);
            color: var(--accent-gold);
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-question::after {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
        }

        .faq-answer-content {
            padding: 0 var(--space-lg) var(--space-lg);
            color: var(--text-secondary);
            line-height: 1.8;
        }

        /* Visual Enhancements */
        .text-gradient-gold {
            background: var(--gradient-gold);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .text-gradient-emerald {
            background: var(--gradient-emerald);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .text-gradient-primary {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .highlight-box {
            background: rgba(255, 215, 0, 0.1);
            border-left: 4px solid var(--accent-gold);
            padding: var(--space-lg);
            border-radius: var(--radius-md);
            margin: var(--space-lg) 0;
        }

        .decorative-line {
            width: 80px;
            height: 4px;
            background: var(--gradient-gold);
            border-radius: var(--radius-full);
            margin: var(--space-lg) 0;
        }

        .decorative-line.center {
            margin-left: auto;
            margin-right: auto;
        }

        .hero-section {
            padding-top: 120px;
        }

        .hero-description {
            max-width: 800px;
            margin: 0 auto;
        }

        .team-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-radius: var(--radius-lg);
            margin-bottom: var(--space-lg);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-button-dark {
            background: var(--primary-navy);
            color: white;
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: var(--space-xl);
            right: var(--space-xl);
            width: 48px;
            height: 48px;
            background: var(--gradient-gold);
            border-radius: var(--radius-full);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-navy);
            font-size: var(--font-size-xl);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 30px rgba(255, 215, 0, 0.6);
        }

        /* Reading Progress Bar */
        .reading-progress {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: rgba(255, 255, 255, 0.1);
            z-index: 1001;
        }

        .reading-progress-bar {
            height: 100%;
            background: var(--gradient-gold);
            width: 0%;
            transition: width 0.2s ease;
            box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
        }

        /* Blockquote Styles */
        blockquote {
            position: relative;
            padding: var(--space-xl);
            margin: var(--space-2xl) 0;
            background: var(--glass-bg);
            border-left: 4px solid var(--accent-gold);
            border-radius: var(--radius-md);
            font-style: italic;
            font-size: var(--font-size-lg);
            color: var(--text-secondary);
        }

        blockquote::before {
            content: '"';
            position: absolute;
            top: -20px;
            left: 20px;
            font-size: 4rem;
            color: var(--accent-gold);
            opacity: 0.3;
        }

        blockquote cite {
            display: block;
            margin-top: var(--space-md);
            font-size: var(--font-size-sm);
            color: var(--text-muted);
            font-style: normal;
        }

        /* Lead Paragraph */
        .lead {
            font-size: var(--font-size-xl);
            line-height: 1.8;
            color: var(--text-secondary);
            font-weight: 300;
            margin-bottom: var(--space-xl);
        }

        /* Breadcrumbs */
        .breadcrumbs {
            display: flex;
            align-items: center;
            gap: var(--space-sm);
            padding: var(--space-md) 0;
            font-size: var(--font-size-sm);
        }

        .breadcrumb-item {
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .breadcrumb-item:hover {
            color: var(--accent-gold);
        }

        .breadcrumb-separator {
            color: var(--text-muted);
            opacity: 0.5;
        }

        .breadcrumb-item.active {
            color: var(--text-primary);
            font-weight: 500;
        }

        /* Responsive Timeline */
        @media (max-width: 768px) {
            .timeline::before {
                left: 30px;
            }

            .timeline-item {
                flex-direction: column !important;
                padding-left: 60px;
            }

            .timeline-item:nth-child(even) {
                flex-direction: column !important;
            }

            .timeline-dot {
                left: 30px;
            }

            .timeline-date {
                left: 60px;
                transform: none;
            }

            .process-step::after {
                display: none;
            }

            .content-split,
            .content-split.reverse {
                grid-template-columns: 1fr;
                direction: ltr;
            }

            .pricing-card.featured {
                transform: scale(1);
            }

            .floating-cta {
                bottom: var(--space-md);
                right: var(--space-md);
            }
        }

        /* Print Styles */
        @media print {
            .header,
            .footer,
            .btn,
            .back-to-top,
            .floating-cta,
            .sticky-cta-bar,
            .reading-progress {
                display: none !important;
            }
            
            body {
                background: white !important;
                color: black !important;
            }
            
            .card,
            .table-container {
                border: 1px solid #ccc !important;
                background: white !important;
            }
        }

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.partner-logo {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    margin-right: 2rem;
    object-fit: contain;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 0.75rem;
    padding: 1rem;
}

.partner-logo-placeholder {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    margin-right: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 0.75rem;
}

/* Page Header Styles */
.page-header {
    padding: var(--space-4xl) 0 var(--space-3xl);
    text-align: center;
    position: relative;
    background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, transparent 100%);
}

.page-badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: var(--gradient-gold);
    color: var(--primary-navy);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-bottom: var(--space-lg);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-header h1 {
    font-size: var(--font-size-5xl);
    font-weight: 800;
    margin-bottom: var(--space-lg);
    background: linear-gradient(135deg, #FFFFFF 0%, #CBD5E1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-description {
    font-size: var(--font-size-xl);
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Services Overview Section */
.services-overview {
    padding: var(--space-4xl) 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-2xl);
    margin-top: var(--space-3xl);
}

/* Service Cards */
.service-card {
    display: block;
    text-decoration: none;
    background: var(--glass-bg);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-header {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.service-icon {
    font-size: 3rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.service-title {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--text-primary);
}

.service-body {
    color: var(--text-primary);
}

.service-description {
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}

.service-highlights {
    list-style: none;
    padding: 0;
    margin-bottom: var(--space-xl);
}

.service-highlights li {
    position: relative;
    padding-left: var(--space-xl);
    margin-bottom: var(--space-md);
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    line-height: 1.6;
}

.service-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-emerald);
    font-weight: bold;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    color: var(--accent-gold);
    font-weight: 600;
    font-size: var(--font-size-base);
    transition: all 0.3s ease;
}

.service-card:hover .service-cta {
    transform: translateX(8px);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    color: var(--primary-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

/* Responsive adjustments for services */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: var(--font-size-3xl);
    }
    
    .page-description {
        font-size: var(--font-size-lg);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .service-card {
        padding: var(--space-xl);
    }
    
    .service-header {
        flex-direction: column;
        text-align: center;
    }
}
