/* ============================================
   ACSFLOW ENTERPRISE DESIGN SYSTEM 2025
   Ultra-Professional, Robust, AI-Powered
   ============================================ */

/* ============================================
   CSS VARIABLES - ENTERPRISE PALETTE
   ============================================ */
:root {
    /* Enterprise Primary - Deep Tech Blue */
    --primary: #0A2540;
    --primary-light: #1A365D;
    --primary-accent: #0066FF;
    --primary-glow: rgba(0, 102, 255, 0.15);
    
    /* Enterprise Secondary - Sophisticated Purple */
    --secondary: #635BFF;
    --secondary-light: #7A73FF;
    --secondary-dark: #4B44CC;
    
    /* AI/Innovation Colors */
    --ai-primary: #7C3AED;
    --ai-secondary: #A855F7;
    --ai-tertiary: #C084FC;
    --ai-gradient: linear-gradient(135deg, #7C3AED 0%, #A855F7 50%, #EC4899 100%);
    --ai-glow: 0 0 60px rgba(124, 58, 237, 0.3);
    --ai-surface: linear-gradient(135deg, #0F0720 0%, #1A0B2E 50%, #16082A 100%);
    
    /* Neutral Palette - Premium Grays */
    --white: #FFFFFF;
    --gray-25: #FCFCFD;
    --gray-50: #F9FAFB;
    --gray-100: #F2F4F7;
    --gray-200: #EAECF0;
    --gray-300: #D0D5DD;
    --gray-400: #98A2B3;
    --gray-500: #667085;
    --gray-600: #475467;
    --gray-700: #344054;
    --gray-800: #1D2939;
    --gray-900: #101828;
    --gray-950: #0C111D;
    
    /* Status Colors - Enterprise */
    --success: #12B76A;
    --success-light: #ECFDF3;
    --success-dark: #027A48;
    --warning: #F79009;
    --warning-light: #FFFAEB;
    --error: #F04438;
    --error-light: #FEF3F2;
    --info: #0BA5EC;
    --info-light: #F0F9FF;
    
    /* Legacy Variable Aliases (for compatibility) */
    --primary-color: #0066FF;
    --success-color: #12B76A;
    --warning-color: #F79009;
    --error-color: #F04438;
    --info-color: #0BA5EC;
    
    /* Premium Gradients */
    --gradient-primary: linear-gradient(135deg, #0A2540 0%, #1A365D 100%);
    --gradient-hero: linear-gradient(135deg, #0A2540 0%, #0F3460 50%, #1A365D 100%);
    --gradient-blue: linear-gradient(135deg, #0066FF 0%, #0052CC 100%);
    --gradient-premium: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-dark: linear-gradient(180deg, #0C111D 0%, #1D2939 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    
    /* Shadows - Layered Depth */
    --shadow-xs: 0 1px 2px rgba(16, 24, 40, 0.05);
    --shadow-sm: 0 1px 3px rgba(16, 24, 40, 0.1), 0 1px 2px rgba(16, 24, 40, 0.06);
    --shadow-md: 0 4px 8px -2px rgba(16, 24, 40, 0.1), 0 2px 4px -2px rgba(16, 24, 40, 0.06);
    --shadow-lg: 0 12px 16px -4px rgba(16, 24, 40, 0.08), 0 4px 6px -2px rgba(16, 24, 40, 0.03);
    --shadow-xl: 0 20px 24px -4px rgba(16, 24, 40, 0.08), 0 8px 8px -4px rgba(16, 24, 40, 0.03);
    --shadow-2xl: 0 24px 48px -12px rgba(16, 24, 40, 0.18);
    --shadow-3xl: 0 32px 64px -12px rgba(16, 24, 40, 0.24);
    --shadow-primary: 0 20px 40px -10px rgba(0, 102, 255, 0.35);
    --shadow-ai: 0 20px 40px -10px rgba(124, 58, 237, 0.35);
    --shadow-card: 0 1px 3px rgba(16, 24, 40, 0.1), 0 1px 2px rgba(16, 24, 40, 0.06);
    --shadow-card-hover: 0 20px 25px -5px rgba(16, 24, 40, 0.1), 0 8px 10px -6px rgba(16, 24, 40, 0.1);
    
    /* Border Radius - Refined */
    --radius-xs: 4px;
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 20px;
    --radius-3xl: 24px;
    --radius-full: 9999px;
    
    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --transition-fast: 150ms var(--ease-out);
    --transition-normal: 250ms var(--ease-out);
    --transition-slow: 400ms var(--ease-out);
    --transition-slower: 600ms var(--ease-out);
    
    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
    
    /* Spacing Scale */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
}

/* ============================================
   BASE STYLES - ENTERPRISE FOUNDATION
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: 'kern' 1, 'liga' 1;
}

body {
    font-family: var(--font-sans);
    background-color: var(--white);
    color: var(--gray-900);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

/* Selection styling */
::selection {
    background: var(--primary-accent);
    color: var(--white);
}

/* ============================================
   TYPOGRAPHY - ENTERPRISE GRADE
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--gray-900);
}

.title.is-1 { font-size: 3.5rem; font-weight: 800; }
.title.is-2 { font-size: 2.5rem; font-weight: 700; }
.title.is-3 { font-size: 2rem; font-weight: 700; }
.title.is-4 { font-size: 1.5rem; font-weight: 600; }
.title.is-5 { font-size: 1.25rem; font-weight: 600; }
.title.is-6 { font-size: 1rem; font-weight: 600; }

.subtitle {
    color: var(--gray-600);
    font-weight: 400;
}

/* ============================================
   NAVBAR - PREMIUM ENTERPRISE
   ============================================ */
.navbar {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid var(--gray-200);
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    min-height: 72px;
    transition: all var(--transition-normal);
    box-shadow: none;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
    border-bottom-color: transparent;
}

.navbar > .container {
    max-width: 1400px;
    margin: 0 auto;
}

.navbar-brand .navbar-item {
    padding: 0.5rem 0;
}

.navbar-brand .logo-text {
    font-size: 1.6rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.03em;
}

.navbar-item {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--gray-700) !important;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    position: relative;
}

.navbar-item:hover {
    color: var(--primary-accent) !important;
    background: var(--gray-50) !important;
}

.navbar-item.is-active {
    color: var(--primary-accent) !important;
    font-weight: 600;
}

.navbar-item.is-active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--primary-accent);
    border-radius: var(--radius-full);
}

/* Navbar CTA Button */
.navbar .btn-primary {
    background: var(--gradient-blue);
    color: white !important;
    font-weight: 600;
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
}

.navbar .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-primary);
}

/* ============================================
   HERO SECTION - ENTERPRISE EXCELLENCE
   ============================================ */
.hero-modern {
    background: var(--gradient-hero);
    position: relative;
    padding: 12rem 0 10rem;
    margin-top: 72px;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

/* Premium Grid Pattern */
.hero-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

/* Animated Gradient Orbs */
.hero-modern::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgba(0, 102, 255, 0.15) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-5%, 5%) rotate(5deg); }
    50% { transform: translate(5%, -5%) rotate(-5deg); }
    75% { transform: translate(-3%, -3%) rotate(3deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
    margin-bottom: 2rem;
}

.hero-badge .pulse {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

/* Hero Title */
.hero-modern .title.is-1 {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .hero-modern .title.is-1 {
        font-size: 2.5rem;
    }
}

.hero-modern .title.is-1 .gradient-text {
    background: linear-gradient(135deg, #60A5FA 0%, #A78BFA 50%, #F472B6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Subtitle */
.hero-modern .subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-weight: 400;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 500;
}

.trust-badge i {
    color: var(--success);
}

/* ============================================
   BUTTONS - PREMIUM ENTERPRISE
   ============================================ */
.btn-primary,
.btn-secondary,
.btn-ai,
.btn-expert {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-blue);
    color: white !important;
    box-shadow: var(--shadow-md), 0 4px 14px -3px rgba(0, 102, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), 0 8px 25px -5px rgba(0, 102, 255, 0.5);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: transparent;
    color: var(--gray-700) !important;
    border: 2px solid var(--gray-300);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    border-color: var(--primary-accent);
    color: var(--primary-accent) !important;
    background: var(--primary-glow);
    transform: translateY(-2px);
}

/* AI Button - Premium Gradient */
.btn-ai {
    background: var(--ai-gradient);
    color: white !important;
    box-shadow: var(--shadow-md), 0 4px 14px -3px rgba(124, 58, 237, 0.4);
}

.btn-ai:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), var(--shadow-ai);
}

.btn-ai-cta {
    background: var(--ai-gradient);
    color: white;
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: var(--radius-xl);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-xl), var(--shadow-ai);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn-ai-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-ai-cta:hover::before {
    left: 100%;
}

.btn-ai-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-2xl), 0 25px 50px -10px rgba(124, 58, 237, 0.4);
}

/* Expert Button */
.btn-expert {
    background: var(--gradient-premium);
    color: white !important;
    box-shadow: var(--shadow-md);
}

.btn-expert:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

/* ============================================
   SECTIONS - ENTERPRISE LAYOUT
   ============================================ */
.section-modern {
    padding: 7rem 0;
    position: relative;
}

.section-light {
    background: var(--gray-50);
}

.section-dark {
    background: var(--gradient-dark);
    color: white;
}

.section-dark .title {
    color: white;
}

.section-dark .subtitle {
    color: var(--gray-400);
}

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.section-header .section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--primary-glow);
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.section-header .title {
    margin-bottom: 1rem;
}

.section-header .subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
}

/* ============================================
   CARDS - PREMIUM ENTERPRISE
   ============================================ */
.card-modern {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-blue);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.card-modern:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
    border-color: var(--gray-300);
}

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

/* Feature Cards */
.feature-card-detailed {
    height: 100%;
}

.feature-card-detailed .feature-header {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.feature-card-detailed .icon-gradient {
    width: 64px !important;
    height: 64px !important;
    min-width: 64px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.15) 0%, rgba(99, 91, 255, 0.1) 100%) !important;
    border-radius: 12px !important;
    color: #0066FF !important;
    flex-shrink: 0 !important;
}

.feature-card-detailed .icon-gradient i {
    font-size: 1.75rem !important;
    color: #0066FF !important;
}

.feature-card-detailed .feature-description {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.feature-card-detailed .feature-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-accent);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: gap var(--transition-fast);
}

.feature-card-detailed .feature-learn-more:hover {
    gap: 0.75rem;
}

/* Highlighted Card */
.feature-card-highlighted {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    border: none;
}

.feature-card-highlighted .title,
.feature-card-highlighted .feature-description {
    color: white;
}

.feature-card-highlighted .icon-gradient {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.feature-card-highlighted .feature-learn-more {
    color: rgba(255, 255, 255, 0.9);
}

/* Security Badges */
.security-badges {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.security-badge {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   HIGHLIGHT BOX - PREMIUM
   ============================================ */
.highlight-box {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    position: relative;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 2rem;
    right: 2rem;
    height: 4px;
    background: var(--gradient-blue);
    border-radius: var(--radius-full);
}

/* ============================================
   AI SECTION - PREMIUM ENTERPRISE
   ============================================ */
.section-ai {
    background: var(--ai-surface);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

/* AI Background Effects */
.section-ai::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(236, 72, 153, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(168, 85, 247, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* Animated Grid */
.section-ai::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(124, 58, 237, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(124, 58, 237, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
}

/* AI Hero Section */
.ai-hero-section {
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(124, 58, 237, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--ai-tertiary);
    margin-bottom: 2rem;
}

.ai-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .ai-title {
        font-size: 2.25rem;
    }
}

.ai-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* AI Value Banner */
.ai-value-banner {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem 2.5rem;
    background: rgba(124, 58, 237, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: var(--radius-2xl);
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.ai-value-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ai-gradient);
    border-radius: var(--radius-lg);
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.ai-value-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* AI Outcomes */
.ai-outcomes {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.ai-outcome-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
}

.ai-outcome-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    font-size: 1.25rem;
}

.ai-outcome-icon.decrease {
    background: rgba(16, 185, 129, 0.2);
    color: #34D399;
}

.ai-outcome-icon.increase {
    background: rgba(59, 130, 246, 0.2);
    color: #60A5FA;
}

.ai-outcome-text {
    display: flex;
    flex-direction: column;
}

.ai-outcome-metric {
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.ai-outcome-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.25rem;
}

/* AI Section Title */
.ai-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* AI Cards */
.ai-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-2xl);
    padding: 2.5rem;
    height: 100%;
    position: relative;
    z-index: 2;
    transition: all var(--transition-normal);
    overflow: hidden;
}

.ai-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--ai-gradient);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.ai-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(124, 58, 237, 0.3);
    transform: translateY(-5px);
}

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

.ai-card-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(124, 58, 237, 0.15);
    line-height: 1;
    letter-spacing: -0.05em;
}

.ai-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2) 0%, rgba(168, 85, 247, 0.2) 100%);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: var(--radius-xl);
    font-size: 1.75rem;
    color: var(--ai-tertiary);
    margin-bottom: 1.5rem;
}

.ai-icon-special {
    background: var(--ai-gradient);
    border: none;
    color: white;
}

.ai-icon-revenue {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(96, 165, 250, 0.2) 100%);
    border-color: rgba(59, 130, 246, 0.3);
    color: #60A5FA;
}

.ai-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.ai-card-description {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.ai-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.ai-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.ai-feature-list li i {
    color: var(--ai-secondary);
    font-size: 0.85rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.ai-card-result {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: rgba(124, 58, 237, 0.15);
    border-radius: var(--radius-lg);
    color: var(--ai-tertiary);
    font-size: 0.9rem;
    font-weight: 500;
}

.ai-card-result i {
    color: #FBBF24;
}

/* Large AI Card */
.ai-card-large {
    padding: 3rem;
}

.ai-card-revenue {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(96, 165, 250, 0.05) 100%);
    border-color: rgba(59, 130, 246, 0.15);
}

/* AI Integration Section */
.ai-integration-section {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-2xl);
    padding: 3rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.ai-integration-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.ai-integration-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.ai-integration-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ai-integration-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.ai-integration-list li i {
    color: var(--ai-secondary);
}

.ai-integration-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.ai-tech-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all var(--transition-fast);
}

.ai-tech-badge:hover {
    background: rgba(124, 58, 237, 0.2);
    border-color: rgba(124, 58, 237, 0.4);
}

/* AI Bottom Message */
.ai-bottom-message {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 2;
}

.ai-message-main {
    font-size: 1.5rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1rem;
}

.ai-message-sub {
    font-size: 1.25rem;
    color: white;
    line-height: 1.7;
}

.ai-message-sub strong {
    color: var(--ai-tertiary);
}

/* ============================================
   PERFORMANCE SECTION - ENTERPRISE
   ============================================ */
.performance-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    padding: 2rem;
    height: 100%;
    transition: all var(--transition-normal);
}

.performance-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.performance-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-blue);
    border-radius: var(--radius-lg);
    color: white;
    margin-bottom: 1.5rem;
}

.performance-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.metric-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.75rem;
    background: rgba(0, 102, 255, 0.15);
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    font-weight: 500;
    color: #60A5FA;
}

/* Stats Section */
.performance-stats-section {
    padding: 3rem 0;
}

.stats-card {
    padding: 2rem;
}

.stats-number {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #60A5FA 0%, #A78BFA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   FOOTER - ENTERPRISE PREMIUM
   ============================================ */
.footer-modern {
    background: var(--gray-950);
    color: var(--gray-400);
    padding: 5rem 0 2rem;
    position: relative;
}

.footer-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray-700), transparent);
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-brand .logo-text {
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    display: block;
}

.footer-description {
    color: var(--gray-500);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-title {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-800);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-800);
    border-radius: var(--radius-md);
    color: var(--gray-400);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--primary-accent);
    color: white;
    transform: translateY(-2px);
}

/* ============================================
   FORMS - ENTERPRISE PREMIUM
   ============================================ */
.input,
.textarea,
select {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--gray-900);
    background: var(--white);
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
    outline: none;
}

.input:focus,
.textarea:focus,
select:focus {
    border-color: var(--primary-accent);
    box-shadow: 0 0 0 4px var(--primary-glow);
}

.input::placeholder,
.textarea::placeholder {
    color: var(--gray-400);
}

.label {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

/* Dark form inputs */
.section-dark .input,
.section-dark .textarea,
.section-dark select {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    color: white;
}

.section-dark .input:focus,
.section-dark .textarea:focus {
    border-color: var(--primary-accent);
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.2);
}

.section-dark .input::placeholder,
.section-dark .textarea::placeholder {
    color: var(--gray-500);
}

.section-dark .label {
    color: var(--gray-300);
}

/* ============================================
   CONTACT PAGE SPECIFIC
   ============================================ */
.btn-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--success);
    color: white !important;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-md), 0 4px 14px -3px rgba(16, 185, 129, 0.4);
}

.btn-call:hover {
    background: var(--success-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), 0 8px 25px -5px rgba(16, 185, 129, 0.5);
}

.btn-resources {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem 1.5rem;
    background: transparent;
    color: var(--primary-accent) !important;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--primary-accent);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.btn-resources:hover {
    background: var(--primary-accent);
    color: white !important;
    transform: translateY(-2px);
}

/* ============================================
   CLIENT LOGOS SECTION
   ============================================ */
.client-logo-card {
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-normal);
}

.client-logo-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-card-hover);
}

.client-logo {
    max-height: 60px;
    width: auto;
    margin-bottom: 1.5rem;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all var(--transition-normal);
}

.client-logo-card:hover .client-logo {
    filter: grayscale(0%);
    opacity: 1;
}

.client-info h4 {
    color: var(--gray-900);
}

/* ============================================
   ANIMATIONS - PREMIUM
   ============================================ */
.animate-fadeInUp {
    animation: fadeInUp 0.8s var(--ease-out) forwards;
}

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

/* Staggered animations */
.animate-fadeInUp:nth-child(1) { animation-delay: 0.1s; }
.animate-fadeInUp:nth-child(2) { animation-delay: 0.2s; }
.animate-fadeInUp:nth-child(3) { animation-delay: 0.3s; }
.animate-fadeInUp:nth-child(4) { animation-delay: 0.4s; }

/* Scroll reveal animations */
[data-delay="100"] { animation-delay: 0.1s; }
[data-delay="200"] { animation-delay: 0.2s; }
[data-delay="300"] { animation-delay: 0.3s; }
[data-delay="400"] { animation-delay: 0.4s; }
[data-delay="500"] { animation-delay: 0.5s; }
[data-delay="600"] { animation-delay: 0.6s; }

/* ============================================
   RESPONSIVE - MOBILE OPTIMIZED
   ============================================ */
@media (max-width: 1024px) {
    .section-modern {
        padding: 5rem 0;
    }
    
    .hero-modern {
        padding: 8rem 0 6rem;
    }
    
    .ai-outcomes {
        gap: 1.5rem;
    }
    
    .ai-card {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-modern {
        padding: 6rem 0 4rem;
        min-height: auto;
    }
    
    .hero-modern .title.is-1 {
        font-size: 2.25rem;
    }
    
    .hero-modern .subtitle {
        font-size: 1.1rem;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 1rem;
    }
    
    .section-modern {
        padding: 4rem 0;
    }
    
    .highlight-box {
        padding: 2rem;
    }
    
    .ai-value-banner {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .ai-outcomes {
        flex-direction: column;
        align-items: center;
    }
    
    .ai-outcome-item {
        width: 100%;
        max-width: 300px;
    }
    
    .stats-number {
        font-size: 2.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.has-text-gradient {
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.has-text-ai-gradient {
    background: var(--ai-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-effect {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Remove old animate-on-scroll to prevent issues */
.animate-on-scroll {
    opacity: 1 !important;
    transform: none !important;
}

/* ============================================
   ICON GRADIENT FOR FEATURES - GLOBAL STYLES
   ============================================ */

/* Force Font Awesome icons to be visible */
.fas, .fab, .far, .fal, .fad {
    display: inline-block !important;
    font-style: normal !important;
    font-variant: normal !important;
    text-rendering: auto !important;
    -webkit-font-smoothing: antialiased !important;
}

.icon-gradient {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 64px !important;
    height: 64px !important;
    min-width: 64px !important;
    min-height: 64px !important;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.15) 0%, rgba(99, 91, 255, 0.1) 100%) !important;
    border-radius: 12px !important;
    color: #0066FF !important;
    flex-shrink: 0 !important;
    overflow: visible !important;
}

.icon-gradient i,
.icon-gradient .fas,
.icon-gradient .fab,
.icon-gradient .far,
.icon.is-large.icon-gradient i,
.icon.is-large.icon-gradient .fas {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    font-size: 1.75rem !important;
    line-height: 1 !important;
    color: #0066FF !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    -moz-osx-font-smoothing: grayscale !important;
    -webkit-font-smoothing: antialiased !important;
}

/* Bulma icon size override */
.icon.is-large {
    width: 64px !important;
    height: 64px !important;
    min-width: 64px !important;
    min-height: 64px !important;
    overflow: visible !important;
}

.icon.is-large.icon-gradient {
    width: 64px !important;
    height: 64px !important;
}

/* Override any fa-Xx size classes */
.icon-gradient .fa-2x,
.icon-gradient .fa-3x,
.icon-gradient .fa-4x {
    font-size: 1.75rem !important;
    color: #0066FF !important;
}

/* ============================================
   SCROLL PROGRESS INDICATOR
   ============================================ */
.scroll-progress {
    position: fixed;
    top: 72px;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--gradient-blue);
    z-index: 999;
    transition: width 0.1s linear;
}

/* ============================================
   PREMIUM ENHANCEMENTS - ENTERPRISE POLISH
   ============================================ */

/* Glassmorphism Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-xl);
}

/* Premium Hover Lift Effect */
.hover-lift {
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

/* Gradient Border Animation */
.gradient-border {
    position: relative;
    border-radius: var(--radius-xl);
    background: var(--white);
}

.gradient-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: calc(var(--radius-xl) + 2px);
    background: var(--gradient-blue);
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.gradient-border:hover::before {
    opacity: 1;
}

/* Enterprise Badge Style */
.enterprise-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.08) 0%, rgba(26, 54, 93, 0.08) 100%);
    border: 1px solid rgba(10, 37, 64, 0.15);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* AI Shimmer Effect */
.ai-shimmer {
    position: relative;
    overflow: hidden;
}

.ai-shimmer::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(124, 58, 237, 0.1),
        transparent
    );
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

/* Tech Stack Logos Hover */
.footer-tech-item:hover img {
    filter: grayscale(0%) brightness(1.5) !important;
    opacity: 1 !important;
}

/* Premium Input Focus Ring */
.input:focus,
.textarea:focus {
    outline: none;
    border-color: var(--primary-accent);
    box-shadow: 0 0 0 4px var(--primary-glow), var(--shadow-sm);
}

/* Smooth Page Transitions */
.page-transition {
    animation: pageIn 0.5s var(--ease-out);
}

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

/* Number Counter Animation Ready */
.stats-number {
    font-variant-numeric: tabular-nums;
}

/* Premium Link Underline Effect */
.premium-link {
    position: relative;
    text-decoration: none;
}

.premium-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-accent);
    transition: width var(--transition-normal);
}

.premium-link:hover::after {
    width: 100%;
}

/* Card Glow Effect on Hover */
.card-glow:hover {
    box-shadow: 
        var(--shadow-card-hover),
        0 0 40px rgba(0, 102, 255, 0.08);
}

/* Section Divider */
.section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray-300), transparent);
    margin: 4rem 0;
}

/* Loading Skeleton */
.skeleton {
    background: linear-gradient(90deg, var(--gray-200) 25%, var(--gray-100) 50%, var(--gray-200) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
    border-radius: var(--radius-md);
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Tooltip */
.tooltip {
    position: relative;
}

.tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    padding: 0.5rem 0.75rem;
    background: var(--gray-900);
    color: white;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    border-radius: var(--radius-md);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
}

.tooltip:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-12px);
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .navbar,
    .footer-modern,
    .btn-primary,
    .btn-secondary {
        display: none !important;
    }
    
    .hero-modern {
        background: white !important;
        color: black !important;
        margin-top: 0 !important;
        padding: 2rem 0 !important;
    }
}
