/* Amazing Font System */
:root {
    /* Primary Font Stacks */
    --font-primary: 'Space Grotesk', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-secondary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-tech: 'Orbitron', 'JetBrains Mono', 'SF Mono', Monaco, 'Cascadia Code', monospace;
    --font-futuristic: 'Exo 2', 'Space Grotesk', 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, monospace;
    
    /* Font Weights */
    --font-light: 300;
    --font-regular: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    --font-extrabold: 800;
    --font-black: 900;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: #1a1a1a;
    font-weight: var(--font-regular);
    letter-spacing: -0.01em;
    background: 
        radial-gradient(ellipse at top left, rgba(102, 126, 234, 0.02) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(118, 75, 162, 0.02) 0%, transparent 50%),
        #ffffff;
    overflow-x: hidden;
    position: relative;
}

body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

body.menu-open::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    z-index: 99997;
    pointer-events: none;
}

/* Dynamic background particles */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.03) 0%, transparent 20%),
        radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.03) 0%, transparent 20%),
        radial-gradient(circle at 40% 40%, rgba(102, 126, 234, 0.02) 0%, transparent 30%);
    animation: backgroundShift 20s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes backgroundShift {
    0%, 100% { transform: translateX(0) translateY(0) scale(1); }
    25% { transform: translateX(20px) translateY(-20px) scale(1.05); }
    50% { transform: translateX(-10px) translateY(30px) scale(0.95); }
    75% { transform: translateX(30px) translateY(10px) scale(1.02); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', 'Exo 2', 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.015em;
    color: var(--text-primary);
    text-rendering: optimizeLegibility;
}

h1 {
    font-size: var(--font-size-5xl);
    font-weight: 800;
    letter-spacing: -0.025em;
}
h2 {
    font-size: var(--font-size-3xl);
    font-weight: 700;
}
h3 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
}
h4, h5, h6 {
    font-size: var(--font-size-xl);
    font-weight: 600;
}

p, li, span, label, input, textarea, select, button, a, .text-body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    letter-spacing: -0.01em;
    color: var(--text-primary);
}

code, pre, .font-mono {
    font-family: 'JetBrains Mono', 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, monospace;
    font-size: 1em;
    background: #f8fafc;
    color: #3b4252;
    border-radius: 4px;
    padding: 0.1em 0.3em;
}

strong, b {
    font-weight: 700;
}

em, i {
    font-style: italic;
}

.gradient-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(99, 102, 241, 0.3),
        0 4px 16px rgba(99, 102, 241, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transform: translateZ(0);
    will-change: transform, box-shadow;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-secondary);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
    transform: scale(1.1);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.btn-primary:hover::before {
    opacity: 1;
    transform: scale(1);
}

.btn-primary:hover::after {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 
        0 25px 50px rgba(99, 102, 241, 0.4),
        0 12px 24px rgba(99, 102, 241, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    color: white;
}

.btn-primary:active {
    transform: translateY(-2px) scale(1.01);
    transition: all 0.1s ease;
    color: white;
}

/* Ensure all text inside primary buttons is white */
.btn-primary,
.btn-primary *,
.btn-primary span,
.btn-primary::before,
.btn-primary::after {
    color: #ffffff !important;
}

.btn-secondary {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    border: 1px solid rgba(102, 126, 234, 0.2);
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-secondary:hover {
    background: rgba(102, 126, 234, 0.15);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-outline:hover {
    background: #667eea;
    color: white;
    transform: translateY(-1px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
    border-radius: 16px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1), 
                0 1px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, background;
}

/* Add scroll effect for navbar */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    box-shadow: 0 2px 0 rgba(255, 255, 255, 0.2), 
                0 4px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-tech);
    font-weight: var(--font-extrabold);
    font-size: 20px;
    color: #1a1a1a;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.nav-logo:hover {
    transform: scale(1.05);
    color: #667eea;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    position: relative;
    z-index: 2;
}

.nav-link {
    color: #6b7280;
    text-decoration: none;
    font-family: var(--font-primary);
    font-weight: var(--font-medium);
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: -0.01em;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #667eea;
}

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

.nav-link.active {
    color: #667eea;
    font-weight: 600;
}

.nav-link.active::after {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 0 10px rgba(102, 126, 234, 0.3);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 100000;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    gap: 3px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.mobile-menu-toggle span {
    width: 18px;
    height: 2.5px;
    background: #1d1d1f;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 2px;
    display: block;
    transform-origin: center;
    position: relative;
}

.mobile-menu-toggle.active {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
    background: #667eea;
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
    background: #667eea;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(15, 15, 35, 0.96);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Prevent body scroll when mobile menu is open */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
    padding: 30px 20px;
    max-width: 360px;
    width: 90%;
    z-index: 10001;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    margin: 0 auto;
}

.mobile-link {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    padding: 14px 20px;
    border-radius: 14px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    z-index: 10002;
    display: flex;
    width: 100%;
    text-align: center;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    font-family: var(--font-primary);
}

.mobile-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.5s ease;
}

.mobile-link:hover::before {
    left: 100%;
}

.mobile-link:hover {
    color: #ffffff;
    background: rgba(102, 126, 234, 0.25);
    transform: translateY(-2px);
    box-shadow: 
        0 8px 32px rgba(102, 126, 234, 0.25),
        0 4px 16px rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.4);
}

.mobile-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    margin-top: 16px;
    z-index: 10002;
    position: relative;
}

.mobile-buttons .btn-secondary,
.mobile-buttons .btn-primary {
    width: 100%;
    padding: 14px 20px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 14px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.mobile-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #1a1a1a;
    z-index: 10003;
    position: relative;
}

.mobile-buttons .btn-secondary:hover {
    background: rgba(102, 126, 234, 0.05);
    color: #667eea;
    transform: translateY(-2px);
    box-shadow: 
        0 8px 32px rgba(102, 126, 234, 0.15),
        0 4px 16px rgba(102, 126, 234, 0.1);
}

.mobile-buttons .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff !important;
    border: none;
    box-shadow: 
        0 8px 32px rgba(102, 126, 234, 0.3),
        0 4px 16px rgba(102, 126, 234, 0.2);
}

.mobile-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 12px 40px rgba(102, 126, 234, 0.4),
        0 6px 20px rgba(102, 126, 234, 0.3);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
    background: 
        radial-gradient(ellipse at top left, rgba(102, 126, 234, 0.08) 0%, transparent 40%),
        radial-gradient(ellipse at bottom right, rgba(118, 75, 162, 0.06) 0%, transparent 40%),
        linear-gradient(180deg, rgba(248, 250, 252, 0.8) 0%, rgba(255, 255, 255, 1) 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(102, 126, 234, 0.15) 1px, transparent 0);
    background-size: 40px 40px;
    opacity: 0.3;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: 
        linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.1) 100%),
        rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    color: #667eea;
    margin-bottom: 32px;
    box-shadow: 
        0 8px 32px rgba(102, 126, 234, 0.1),
        0 4px 16px rgba(102, 126, 234, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.hero-title {
    font-family: var(--font-futuristic);
    font-size: var(--font-size-6xl);
    font-weight: var(--font-black);
    line-height: 0.8;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    text-shadow: 0 4px 20px var(--shadow-text);
}

.hero-title .title-line {
    display: block;
    color: var(--text-primary);
    text-shadow: 0 2px 8px var(--shadow-text);
    margin-bottom: -8px;
    line-height: 0.85;
}

.hero-title .gradient-text {
    background: var(--gradient-text);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: ambientGradient 4s ease infinite;
    font-weight: var(--font-extrabold);
    text-shadow: none;
}

.title-line {
    display: block;
}

.hero-description {
    font-family: var(--font-primary);
    font-size: var(--font-size-xl);
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: var(--leading-relaxed);
    font-weight: var(--font-regular);
    letter-spacing: -0.01em;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    display: block;
}

.stat-label {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 4px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.dashboard-preview {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 32px;
    box-shadow: 
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 20px 60px rgba(0, 0, 0, 0.12),
        0 40px 80px rgba(102, 126, 234, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    overflow: hidden;
    transform: perspective(1200px) rotateY(-5deg) rotateX(5deg);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.dashboard-preview:hover {
    transform: perspective(1200px) rotateY(0deg) rotateX(0deg) scale(1.02);
    box-shadow: 
        0 0 0 1px rgba(255, 255, 255, 0.2),
        0 30px 80px rgba(0, 0, 0, 0.15),
        0 60px 120px rgba(102, 126, 234, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.dashboard-header {
    background: 
        linear-gradient(135deg, rgba(248, 250, 252, 0.9) 0%, rgba(255, 255, 255, 0.95) 100%),
        rgba(248, 250, 252, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.3);
    padding: 20px 28px;
    position: relative;
}

.dashboard-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.05), transparent);
    animation: headerShimmer 4s ease-in-out infinite;
}

@keyframes headerShimmer {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

.dashboard-nav {
    display: flex;
    gap: 24px;
}

.nav-item {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-item.active {
    background: #667eea;
    color: white;
}

.dashboard-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.metric-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: 
        linear-gradient(135deg, rgba(248, 250, 252, 0.8) 0%, rgba(255, 255, 255, 0.9) 100%),
        rgba(248, 250, 252, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.04),
        0 2px 8px rgba(0, 0, 0, 0.02),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.5s ease;
}

.metric-card:hover::before {
    left: 100%;
}

.metric-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 18px;
}

.metric-icon.security {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.metric-icon.monitoring {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.metric-icon.waf {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.metric-info {
    flex: 1;
}

.metric-title {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 4px;
}

.metric-value {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.metric-trend {
    font-size: 12px;
    font-weight: 500;
    margin-top: 4px;
}

.metric-trend.up {
    color: #059669;
}

.metric-trend.down {
    color: #dc2626;
}

.metric-status {
    font-size: 12px;
    color: #6b7280;
    margin-top: 4px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-family: var(--font-futuristic);
    font-size: var(--font-size-4xl);
    font-weight: var(--font-extrabold);
    margin-bottom: 24px;
    color: var(--text-primary);
    text-shadow: 0 4px 20px var(--shadow-text);
    letter-spacing: -0.02em;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
    opacity: 0.8;
}

.section-description {
    font-family: var(--font-primary);
    font-size: var(--font-size-xl);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: var(--leading-relaxed);
    font-weight: var(--font-regular);
    letter-spacing: -0.01em;
}

/* Features Section */
.features {
    padding: 160px 0;
    background: 
        linear-gradient(180deg, rgba(248, 250, 252, 0.6) 0%, rgba(255, 255, 255, 0.95) 100%),
        radial-gradient(ellipse at center, rgba(102, 126, 234, 0.03) 0%, transparent 70%);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    padding: 56px 48px;
    border-radius: 36px;
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.06),
        0 6px 20px rgba(0, 0, 0, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
    will-change: transform, box-shadow;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: scale(1.1);
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

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

.feature-card:hover::after {
    width: 400px;
    height: 400px;
}

.feature-card:hover {
    transform: translateY(-16px) scale(1.03);
    box-shadow: 
        0 40px 80px rgba(0, 0, 0, 0.15),
        0 20px 40px rgba(99, 102, 241, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.feature-card:hover .feature-title {
    color: #000000;
    text-shadow: 0 1px 4px rgba(255, 255, 255, 0.2);
}

.feature-card:hover .feature-description {
    color: #000000;
    text-shadow: 0 1px 4px rgba(255, 255, 255, 0.2);
}

.feature-card:hover .feature-list li {
    color: #000000;
}

.feature-card:hover .feature-list li::before {
    color: #90fdf4;
    text-shadow: 0 0 8px rgba(144, 253, 244, 0.5);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 36px;
    box-shadow: 
        0 12px 32px rgba(99, 102, 241, 0.4),
        0 6px 16px rgba(99, 102, 241, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
    will-change: transform, box-shadow;
}

.feature-icon svg {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-secondary);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: scale(1.2);
}

.feature-title {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-semibold);
    margin-bottom: 16px;
    color: var(--text-primary);
    letter-spacing: var(--tracking-tight);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.feature-description {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: var(--leading-relaxed);
    font-size: var(--font-size-lg);
    font-weight: var(--font-normal);
    letter-spacing: var(--tracking-normal);
}

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

.feature-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    color: #6b7280;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #059669;
    font-weight: 600;
}

/* Integrations Marquee */
.integrations-marquee {
    padding: 100px 0;
    background: 
        linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%),
        radial-gradient(circle at 30% 20%, rgba(102, 126, 234, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(118, 75, 162, 0.08) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
}

.integrations-marquee::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(118, 75, 162, 0.05) 0%, transparent 50%);
    animation: float 15s ease-in-out infinite;
}

.marquee-container {
    position: relative;
    width: 100%;
    height: 100px;
    overflow: hidden;
    margin-top: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 8px 25px rgba(102, 126, 234, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transform: perspective(1000px) rotateX(2deg);
}

.marquee-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.3), transparent);
    z-index: 1;
}

.marquee-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(118, 75, 162, 0.3), transparent);
    z-index: 1;
}

.marquee-track {
    display: flex;
    align-items: center;
    height: 100%;
    animation: marquee 25s linear infinite;
    will-change: transform;
}

.marquee-item {
    flex-shrink: 0;
    padding: 0 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
}

.marquee-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent 0%, rgba(102, 126, 234, 0.2), transparent 100%);
    opacity: 0.6;
}

.marquee-item:last-child::after {
    display: none;
}

.marquee-item:hover {
    transform: translateY(-2px);
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: grayscale(100%) brightness(0.8);
    opacity: 0.6;
    transform: scale(0.9);
    min-width: 200px;
    height: 100px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
}

.logo-icon {
    font-size: 2.5rem;
    filter: grayscale(100%);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.company-name {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    filter: grayscale(100%);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.partner-logo:hover {
    filter: grayscale(0%) brightness(1.1) saturate(1.2);
    opacity: 1;
    transform: scale(1.05);
    filter: drop-shadow(0 8px 20px rgba(102, 126, 234, 0.3));
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(102, 126, 234, 0.3);
}

.partner-logo:hover .logo-icon {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.partner-logo:hover .company-name {
    filter: grayscale(0%);
    color: #667eea;
    transform: scale(1.05);
}

.partner-logo svg {
    transition: all 0.3s ease;
    max-width: 100%;
    height: auto;
}

.partner-logo:hover svg {
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

.partner-logo:hover svg rect {
    fill: rgba(102, 126, 234, 0.1);
    transition: fill 0.3s ease;
}

.partner-logo:hover svg circle,
.partner-logo:hover svg rect[fill] {
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

/* Logo image styling */
.logo-image {
    max-width: 100%;
    height: auto;
    max-height: 60px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    filter: grayscale(100%) brightness(0.8);
    opacity: 0.7;
}

.partner-logo:hover .logo-image {
    filter: grayscale(0%) brightness(1.1) saturate(1.2);
    opacity: 1;
    transform: scale(1.05);
    filter: drop-shadow(0 8px 20px rgba(102, 126, 234, 0.3));
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.marquee-container:hover .marquee-track {
    animation-play-state: paused;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .integrations-marquee {
        padding: 80px 0;
    }
    
    .marquee-container {
        height: 80px;
        margin-top: 30px;
        transform: perspective(1000px) rotateX(1deg);
    }
    
    .marquee-item {
        padding: 0 20px;
        min-width: 120px;
    }
    
    .partner-logo svg {
        width: 100px;
        height: 40px;
    }
    
    .logo-image {
        max-height: 40px;
    }
}

@media (max-width: 480px) {
    .integrations-marquee {
        padding: 60px 0;
    }
    
    .marquee-container {
        height: 70px;
        transform: none;
    }
    
    .marquee-item {
        padding: 0 15px;
        min-width: 100px;
    }
    
    .partner-logo svg {
        width: 80px;
        height: 35px;
    }
    
    .logo-image {
        max-height: 35px;
    }
}

/* Product Demo Section */
.product-demo {
    padding: 120px 0;
}

.demo-container {
    max-width: 1000px;
    margin: 0 auto;
}

.demo-navigation {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
    background: #f1f5f9;
    padding: 8px;
    border-radius: 16px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.demo-tab {
    padding: 12px 24px;
    border: none;
    background: transparent;
    border-radius: 12px;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
}

.demo-tab.active {
    background: white;
    color: #667eea;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.demo-content {
    position: relative;
}

.demo-panel {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    min-height: 400px;
}

.demo-panel.active {
    display: grid;
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.5s ease-out;
}

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

/* Demo Video Section */
.demo-video-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    margin: 60px 0;
    padding: 48px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    text-align: center;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    padding-bottom: 45%; /* 16:9 aspect ratio for max-width */
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.2),
        0 10px 20px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
}

.video-description {
    text-align: center;
    max-width: 600px;
}

.video-description h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    font-family: var(--font-futuristic);
}

.video-description p {
    font-size: 1.2rem;
    color: #ffffff;
    opacity: 0.9;
    line-height: 1.6;
    font-family: var(--font-primary);
}

.screenshot-frame {
    background: #1a1a1a;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.frame-header {
    background: #2a2a2a;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.frame-controls {
    display: flex;
    gap: 8px;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control.red { background: #ff5f57; }
.control.yellow { background: #ffbd2e; }
.control.green { background: #28ca42; }

.frame-title {
    color: #d1d5db;
    font-size: 14px;
    font-weight: 500;
}

.frame-content {
    background: white;
    min-height: 400px;
    padding: 24px;
}

/* Dashboard Mockup */
.dashboard-mockup {
    height: 100%;
}

.mockup-header {
    margin-bottom: 24px;
}

.mockup-header h3 {
    color: #667eea;
    font-size: 24px;
    margin-bottom: 4px;
}

.user-role {
    color: #6b7280;
    font-size: 14px;
}

.mockup-metrics {
    display: grid;
    gap: 16px;
}

.mockup-card {
    background: #f8fafc;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.card-header {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 8px;
}

.card-value {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.card-label {
    font-size: 12px;
    color: #6b7280;
}

/* Threat Mockup */
.threat-mockup {
    height: 100%;
}

.threat-header {
    margin-bottom: 32px;
}

.threat-header h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.threat-header p {
    color: #6b7280;
}

.threat-categories {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.threat-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.threat-label {
    flex: 0 0 140px;
    font-size: 14px;
    color: #6b7280;
}

.threat-bar {
    flex: 1;
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
}

.threat-progress {
    height: 100%;
    background: #3b82f6;
    border-radius: 4px;
    transition: width 0.6s ease;
}

.threat-progress.high {
    background: #ef4444;
}

.threat-progress.medium {
    background: #f59e0b;
}

.threat-value {
    flex: 0 0 60px;
    text-align: right;
    font-weight: 600;
    color: #1a1a1a;
    font-family: var(--font-mono);
    background: rgba(102, 126, 234, 0.1);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 13px;
}

/* Reports Mockup */
.reports-mockup {
    height: 100%;
}

.reports-header {
    margin-bottom: 32px;
}

.reports-header h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.reports-header p {
    color: #6b7280;
}

.reports-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #374151;
}

.select-field {
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: white;
    font-size: 14px;
    color: #1a1a1a;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkbox-group input[type="checkbox"] {
    width: 16px;
    height: 16px;
}

.checkbox-group label {
    font-size: 14px;
    color: #374151;
}

.generate-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    font-size: 14px;
}

.generate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
}

.demo-description {
    text-align: left;
}

.demo-description h3 {
    font-size: 1.75rem;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.demo-description p {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.6;
}

/* Pricing Section */
.pricing {
    padding: 160px 0;
    background: 
        linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 252, 0.8) 100%),
        radial-gradient(ellipse at center, rgba(102, 126, 234, 0.03) 0%, transparent 70%);
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(102, 126, 234, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(118, 75, 162, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 64px;
}

.toggle-label {
    font-weight: 500;
    color: #6b7280;
}

.discount {
    background: #10b981;
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 8px;
}

.toggle-switch {
    position: relative;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-switch label {
    display: block;
    width: 48px;
    height: 24px;
    background: #d1d5db;
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.toggle-switch label::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.toggle-switch input:checked + label {
    background: #667eea;
}

.toggle-switch input:checked + label::after {
    transform: translateX(24px);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 32px;
    padding: 48px;
    box-shadow: 
        0 16px 48px rgba(0, 0, 0, 0.08),
        0 8px 24px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
}

.pricing-card.featured {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(102, 126, 234, 0.3);
    transform: scale(1.05);
    box-shadow: 
        0 24px 64px rgba(102, 126, 234, 0.15),
        0 12px 32px rgba(102, 126, 234, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.pricing-card:hover::before {
    opacity: 1;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
}

.pricing-card:hover {
    transform: translateY(-16px) scale(1.02);
    box-shadow: 
        0 32px 80px rgba(0, 0, 0, 0.12),
        0 16px 40px rgba(102, 126, 234, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.pricing-card:hover .plan-name {
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.pricing-card:hover .plan-description {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.pricing-card:hover .price-amount {
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.pricing-card:hover .price-period {
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.pricing-card:hover .plan-features li {
    color: rgba(255, 255, 255, 0.85);
}

.pricing-card:hover .plan-features li::before {
    color: #90fdf4;
    text-shadow: 0 0 8px rgba(144, 253, 244, 0.5);
}

.pricing-card:hover .toggle-label {
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.pricing-card:hover .discount {
    color: #90fdf4;
    text-shadow: 0 0 8px rgba(144, 253, 244, 0.5);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-20px);
    box-shadow: 
        0 40px 100px rgba(102, 126, 234, 0.2),
        0 20px 50px rgba(102, 126, 234, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
}

.plan-header {
    text-align: center;
    margin-bottom: 32px;
    position: relative;
    z-index: 2;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.plan-description {
    color: #6b7280;
    margin-bottom: 24px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
}

.price-period {
    font-size: 1rem;
    color: #6b7280;
}

.plan-features {
    margin-bottom: 32px;
    position: relative;
    z-index: 2;
}

.plan-features ul {
    list-style: none;
}

.plan-features li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    color: #6b7280;
}

.plan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #059669;
    font-weight: 600;
}

.plan-button {
    width: 100%;
    justify-content: center;
    position: relative;
    z-index: 2;
}

/* CTA Section */
.cta {
    padding: 160px 0;
    background: 
        linear-gradient(135deg, #667eea 0%, #764ba2 100%),
        radial-gradient(ellipse at top right, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at bottom left, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 30%);
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

.cta-title {
    font-size: var(--font-size-5xl);
    font-weight: var(--font-bold);
    margin-bottom: 24px;
    color: var(--text-white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    letter-spacing: var(--tracking-tight);
    position: relative;
    z-index: 2;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.cta-description {
    font-size: var(--font-size-xl);
    opacity: 0.95;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    line-height: var(--leading-relaxed);
    font-weight: var(--font-normal);
    letter-spacing: var(--tracking-normal);
    color: #ffffff;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.cta .btn-primary {
    background: var(--gradient-primary);
    color: white;
}

.cta .btn-primary:hover {
    background: var(--gradient-primary);
    transform: translateY(-4px) scale(1.03);
    box-shadow: 
        0 25px 50px rgba(99, 102, 241, 0.4),
        0 12px 24px rgba(99, 102, 241, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    color: white;
}

.cta .btn-outline {
    border-color: white;
    color: white;
}

.cta .btn-outline:hover {
    background: white;
    color: #667eea;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #d1d5db;
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.footer-logo .logo-text {
    font-size: 20px;
    font-weight: 700;
    color: white;
}

.footer-description {
    color: #9ca3af;
    margin-bottom: 32px;
    line-height: 1.6;
}

.footer-copyright {
    color: #6b7280;
    font-size: 14px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-section h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #667eea;
}

/* Contact section specific styling */
.footer-section li {
    color: #9ca3af;
    line-height: 1.6;
}

.footer-section li strong {
    color: #ffffff;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
        letter-spacing: -0.05em;
        line-height: 0.8;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .demo-panel {
        grid-template-columns: 1fr !important;
        gap: 32px;
    }
    
    .demo-panel.active {
        display: grid !important;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile menu styles */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 16px;
        height: 70px;
    }
    
    /* Demo container mobile styles */
    .demo-panel {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    /* Demo video mobile styles */
    .demo-video-section {
        margin: 40px 0;
        padding: 32px 20px;
        gap: 24px;
    }
    
    .video-container {
        max-width: 100%;
        padding-bottom: 56.25%; /* Standard 16:9 on mobile */
    }
    
    .video-description h3 {
        font-size: 1.8rem;
    }
    
    .video-description p {
        font-size: 1.1rem;
    }
    
    .demo-navigation {
        flex-direction: column;
        gap: 4px;
        width: 100%;
        margin-bottom: 32px;
    }
    
    .demo-tab {
        width: 100%;
        padding: 14px 20px;
        text-align: center;
    }
    
    .nav-logo {
        font-size: 18px;
        gap: 8px;
    }
    
    .logo-icon {
        width: 28px;
        height: 28px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-actions {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
        z-index: 10000;
        position: relative;
        opacity: 1;
        visibility: visible;
    }
    
    .mobile-menu-toggle.active {
        z-index: 999999 !important;
        position: fixed !important;
        top: 20px !important;
        right: 20px !important;
        background: rgba(255, 255, 255, 1) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
        border: 2px solid rgba(0, 0, 0, 0.1) !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: flex !important;
        width: 40px !important;
        height: 40px !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    .mobile-menu-toggle.active span {
        background: #1d1d1f !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Force mobile toggle visibility - fallback */
    .mobile-menu-toggle {
        display: flex !important;
        z-index: 999999 !important;
        position: relative !important;
    }
    
    /* Ensure hamburger is always on top when menu is active */
    body.menu-open .mobile-menu-toggle {
        z-index: 999999 !important;
        position: fixed !important;
        top: 20px !important;
        right: 20px !important;
        background: rgba(255, 255, 255, 1) !important;
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Mobile Menu Close Button */
    .mobile-menu-close {
        position: fixed;
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.9);
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 999999;
        color: #1d1d1f;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    
    .mobile-menu-close:hover {
        background: rgba(255, 255, 255, 1);
        transform: scale(1.1);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }
    
    /* Ensure mobile menu is visible on mobile */
    .mobile-menu {
        z-index: 9999 !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100vh !important;
    }
    
    .mobile-menu.active {
        z-index: 9999 !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        display: flex !important;
        background: rgba(15, 15, 35, 0.96) !important;
    }
    
    .mobile-menu-content {
        z-index: 1 !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: flex !important;
        background: rgba(255, 255, 255, 0.08) !important;
        border: 1px solid rgba(255, 255, 255, 0.15) !important;
        flex-direction: column !important;
        align-items: center !important;
        padding: 30px 20px !important;
        border-radius: 20px !important;
        max-width: 360px !important;
        width: 90% !important;
        margin: 0 auto !important;
    }
    
    .mobile-link {
        z-index: 1 !important;
        opacity: 1 !important;
        visibility: visible !important;
        color: #ffffff !important;
        display: flex !important;
        background: rgba(255, 255, 255, 0.12) !important;
        border: 1px solid rgba(255, 255, 255, 0.25) !important;
        font-weight: 600 !important;
        padding: 14px 20px !important;
        border-radius: 14px !important;
        margin-bottom: 8px !important;
        width: 100% !important;
        text-align: center !important;
        justify-content: center !important;
        align-items: center !important;
        min-height: 48px !important;
        font-size: 1.5rem !important;
        text-decoration: none !important;
    }
    
    .mobile-buttons {
        z-index: 1 !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 16px !important;
        width: 100% !important;
        margin-top: 16px !important;
    }
    
    .mobile-buttons .btn-secondary,
    .mobile-buttons .btn-primary {
        z-index: 1 !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: flex !important;
        font-weight: 600 !important;
        width: 100% !important;
        justify-content: center !important;
        align-items: center !important;
        min-height: 48px !important;
        padding: 14px 20px !important;
        border-radius: 14px !important;
    }
    
    .mobile-buttons .btn-primary {
        color: #ffffff;
    }
    
    /* Mobile actions within the menu */
    .mobile-actions {
        margin-top: 60px;
        display: flex;
        flex-direction: column;
        gap: 16px;
        align-items: center;
        transform: translateY(0);
    }
    
    /* Debug: Force mobile menu visibility when active */
    .mobile-menu.active {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        z-index: 99999 !important;
        background: rgba(15, 15, 35, 0.98) !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .mobile-menu.active .mobile-menu-content {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
        z-index: 1 !important;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .nav-container {
        padding: 0 12px;
        height: 65px;
    }
    
    .nav-logo {
        font-size: 16px;
        gap: 6px;
    }
    
    .logo-icon {
        width: 24px;
        height: 24px;
    }
    
    .mobile-menu-content {
        padding: 25px 15px;
        gap: 18px;
        max-width: 320px;
        width: 95%;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }
    
    .mobile-link {
        font-size: 1.3rem;
        padding: 12px 16px;
        min-height: 44px;
        background: rgba(255, 255, 255, 0.15);
        border: 1px solid rgba(255, 255, 255, 0.3);
        color: #ffffff;
        font-weight: 700;
    }
    
    .mobile-buttons .btn-secondary,
    .mobile-buttons .btn-primary {
        padding: 12px 16px;
        font-size: 0.95rem;
        min-height: 44px;
        opacity: 1;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        padding-top: 32px;
        width: 100%;
        position: relative;
        z-index: 99999;
    }
    
    .mobile-buttons .btn-primary {
        color: #ffffff;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    }

    .mobile-actions .btn-secondary,
    .mobile-actions .btn-primary {
        min-width: 280px;
        justify-content: center;
        font-size: 17px;
        font-weight: 500;
        padding: 18px 32px;
        border-radius: 25px;
        letter-spacing: -0.2px;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: none;
    }

    .mobile-actions .btn-secondary {
        background: #f8f9fa;
        color: #1d1d1f;
        border: 1px solid rgba(0, 0, 0, 0.1);
    }

    .mobile-actions .btn-secondary:hover {
        background: #e9ecef;
        transform: scale(1.02);
        border-color: rgba(0, 0, 0, 0.2);
    }

    .mobile-actions .btn-primary {
        background: #667eea;
        color: white;
        border: none;
        box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
    }

    .mobile-actions .btn-primary:hover {
        background: #5a6fd8;
        transform: scale(1.02);
        box-shadow: 0 6px 25px rgba(102, 126, 234, 0.4);
    }
    
    /* Commented out conflicting nav-menu.active styles - using mobile-menu instead */
    /*
    .nav-menu.active {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #ffffff;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0;
        z-index: 99999;
        padding: 80px 40px 120px;
        opacity: 1;
        visibility: visible;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: none;
        border: none;
        pointer-events: auto;
    }
    

    
    .nav-menu.active .nav-link {
        font-size: 32px;
        font-weight: 300;
        color: #1d1d1f;
        text-decoration: none;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        padding: 20px 0;
        border-radius: 0;
        min-width: auto;
        text-align: center;
        background: transparent;
        border: none;
        box-shadow: none;
        position: relative;
        letter-spacing: -0.5px;
        transform: translateY(0);
        opacity: 1;
        z-index: 99999;
    }
    
    .nav-menu.active .nav-link:hover {
        color: #667eea;
        transform: translateY(30px) scale(1.02);
        background: transparent;
        box-shadow: none;
        border: none;
    }

    .nav-menu.active .nav-link::before {
        content: '';
        position: absolute;
        bottom: 8px;
        left: 50%;
        width: 0;
        height: 2px;
        background: #667eea;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        transform: translateX(-50%);
        border-radius: 1px;
    }

    .nav-menu.active .nav-link:hover::before {
        width: 40px;
    }
    
    .nav-menu.active .nav-link::after {
        display: none;
    }
    */
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 0.8;
        letter-spacing: -0.05em;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .demo-navigation {
        flex-direction: column;
        width: 100%;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}

/* Desktop menu override styles */
@media (min-width: 769px) {
    .nav-menu {
        display: flex !important;
        position: relative !important;
        flex-direction: row !important;
        background: none !important;
        backdrop-filter: none !important;
        padding: 0 !important;
        gap: 32px !important;
        z-index: 2 !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .nav-menu .nav-link {
        font-size: 15px !important;
        font-weight: 500 !important;
        padding: 0 !important;
        background: none !important;
        border: none !important;
        box-shadow: none !important;
        min-width: auto !important;
        border-radius: 0 !important;
        text-align: left !important;
        color: #6b7280 !important;
    }

    .nav-menu.active {
        display: flex !important;
        position: relative !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-start !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        background: none !important;
        backdrop-filter: none !important;
        padding: 0 !important;
        gap: 32px !important;
        z-index: 2 !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000000;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.modal > div {
    background: white;
    padding: 40px;
    border-radius: 20px;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.8);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.modal h3 {
    margin: 0 0 20px 0;
    color: #1d1d1f;
    font-size: 24px;
    font-weight: 600;
}

.modal p {
    margin: 0 0 30px 0;
    color: #6b7280;
    line-height: 1.6;
    font-size: 16px;
}

.modal .btn-primary {
    min-width: 120px;
    margin: 0 auto;
}

/* Schedule Demo Modal Styles */
.schedule-demo-modal {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    animation: modalFadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalFadeIn {
    0% {
        opacity: 0;
        backdrop-filter: blur(0px);
    }
    100% {
        opacity: 1;
        backdrop-filter: blur(20px);
    }
}

.schedule-demo-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 0;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 24px;
    box-shadow: 
        0 32px 80px rgba(0, 0, 0, 0.12),
        0 16px 40px rgba(102, 126, 234, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: modalContentSlideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s both;
}

@keyframes modalContentSlideIn {
    0% {
        transform: scale(0.8) translateY(30px);
        opacity: 0;
    }
    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.modal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 32px 40px 24px;
    border-radius: 24px 24px 0 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: headerGlow 2s ease-in-out infinite alternate;
}

@keyframes headerGlow {
    0% {
        box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.1);
    }
    100% {
        box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.2);
    }
}

.modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: float 8s ease-in-out infinite;
}

.modal-header h3 {
    margin: 0 0 12px 0;
    font-size: 28px;
    font-weight: 700;
    color: white;
    position: relative;
    z-index: 2;
}

.modal-header p {
    margin: 0;
    font-size: 16px;
    opacity: 0.9;
    line-height: 1.5;
    position: relative;
    z-index: 2;
}

.demo-form {
    padding: 40px;
    background: white;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #374151;
    font-size: 14px;
    letter-spacing: 0.025em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #f9fafb;
    color: #1f2937;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    transform: translateY(-1px);
    animation: inputFocusPulse 0.3s ease-out;
}

@keyframes inputFocusPulse {
    0% {
        box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    }
    50% {
        box-shadow: 0 0 0 6px rgba(102, 126, 234, 0.2);
    }
    100% {
        box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    }
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
    font-family: inherit;
}

.checkbox-group {
    margin-bottom: 32px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 6px;
    margin-right: 12px;
    position: relative;
    transition: all 0.3s ease;
    background: white;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #667eea;
    border-color: #667eea;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.form-actions {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
}

.form-actions .btn-secondary {
    background: transparent;
    color: #6b7280;
    border: 2px solid #e5e7eb;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.form-actions .btn-secondary:hover {
    background: #f3f4f6;
    border-color: #d1d5db;
    color: #374151;
}

.form-actions .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.form-actions .btn-primary::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;
}

.form-actions .btn-primary:hover::before {
    left: 100%;
}

.form-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.form-actions .btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Responsive adjustments for demo form */
@media (max-width: 768px) {
    .schedule-demo-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .modal-header {
        padding: 24px 24px 20px;
    }
    
    .modal-header h3 {
        font-size: 24px;
    }
    
    .demo-form {
        padding: 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .form-actions .btn-secondary,
    .form-actions .btn-primary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .schedule-demo-content {
        width: 98%;
        border-radius: 16px;
    }
    
    .modal-header {
        border-radius: 16px 16px 0 0;
        padding: 20px 20px 16px;
    }
    
    .demo-form {
        padding: 20px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 14px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

@media (min-width: 769px) {
    .nav-menu.active .nav-link {
        font-size: 15px !important;
        font-weight: 500 !important;
        color: #6b7280 !important;
        padding: 0 !important;
        background: none !important;
        border: none !important;
        box-shadow: none !important;
        min-width: auto !important;
        text-align: left !important;
        border-radius: 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }
    
    .nav-actions {
        display: flex !important;
    }
    
    .mobile-menu-toggle {
        display: none !important;
    }
    
    .mobile-actions {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 0.8;
        letter-spacing: -0.05em;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
}

/* Animation Classes */
.animate-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.animate-slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.animate-scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Loading States */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    100% {
        left: 100%;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
button:focus,
a:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .navbar,
    .hero-background,
    .cta,
    .footer {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
} 

/* Additional overlay for legendary Apple-like menu background */
.nav-menu.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
    z-index: -1;
}

/* Ensure menu shows over navbar on mobile */
@media (max-width: 768px) {
    .navbar {
        z-index: 9998;
    }
    
    .nav-menu.active {
        z-index: 10000;
    }
}

/* Legal Pages */
.legal-content {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
}

.legal-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    color: white;
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
}

.legal-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 400;
}

.legal-section {
    background: white;
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
}

.legal-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.legal-section h2 {
    color: #1a1a2e;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    border-bottom: 3px solid #667eea;
    padding-bottom: 10px;
}

.legal-section h3 {
    color: #2d3748;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 25px 0 15px;
}

.legal-section p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.legal-section ul {
    margin: 20px 0;
    padding-left: 20px;
}

.legal-section li {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.legal-section strong {
    color: #2d3748;
    font-weight: 600;
}

.legal-section a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.legal-section a:hover {
    color: #5a67d8;
    text-decoration: underline;
}

.contact-info {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid #667eea;
    margin-top: 20px;
}

.contact-info p {
    margin-bottom: 10px;
    color: #2d3748;
}

.contact-info strong {
    color: #1a1a2e;
}

/* Legal page responsive design */
@media (max-width: 768px) {
    .legal-content {
        padding: 100px 0 60px;
    }
    
    .legal-header h1 {
        font-size: 2.5rem;
    }
    
    .legal-section {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .legal-section h2 {
        font-size: 1.6rem;
    }
    
    .legal-section h3 {
        font-size: 1.2rem;
    }
    
    .legal-section p,
    .legal-section li {
        font-size: 1rem;
    }
}

/* Blog Styles */
.blog-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 120px 0 80px;
    color: white;
    text-align: center;
}

.blog-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #ffffff;
}

.blog-search {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 5px;
    backdrop-filter: blur(10px);
}

.search-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 15px 20px;
    color: white;
    font-size: 1rem;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.search-btn {
    background: white;
    border: none;
    border-radius: 50px;
    padding: 15px 20px;
    color: #667eea;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    transform: scale(1.05);
}

.blog-categories {
    background: white;
    padding: 30px 0;
    border-bottom: 1px solid #e2e8f0;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.category-tab {
    background: transparent;
    border: 2px solid #e2e8f0;
    padding: 12px 24px;
    border-radius: 25px;
    color: #4a5568;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-tab:hover,
.category-tab.active {
    background: #667eea;
    border-color: #667eea;
    color: white;
    transform: translateY(-2px);
}

.blog-content {
    padding: 80px 0;
    background: #f8fafc;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blog-card.featured {
    grid-column: span 2;
}

.blog-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.blog-card.featured .blog-image {
    height: 300px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.blog-category {
    color: #667eea;
    font-weight: 600;
}

.blog-date {
    color: #6b7280;
}

.blog-card h2,
.blog-card h3 {
    color: #1a1a2e;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-card.featured h2 {
    font-size: 1.8rem;
}

.blog-card h3 {
    font-size: 1.4rem;
}

.blog-card p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.blog-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    display: block;
    font-weight: 600;
    color: #1a1a2e;
}

.author-title {
    display: block;
    font-size: 0.9rem;
    color: #6b7280;
}

.read-more {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #5a67d8;
    transform: translateX(5px);
}

.load-more-container {
    text-align: center;
}

.load-more-btn {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.newsletter-signup {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 80px 0;
    color: white;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.newsletter-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #ffffff;
}

/* Ensure all newsletter content text is white */
.newsletter-content,
.newsletter-content * {
    color: #ffffff;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto 20px;
    gap: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
}

.newsletter-note {
    font-size: 0.9rem;
    opacity: 0.7;
    color: #ffffff !important;
}

.newsletter-note a {
    color: #667eea;
    text-decoration: none;
}

/* Blog Post Styles */
.blog-post {
    padding: 120px 0 80px;
    background: #f8fafc;
}

.breadcrumb {
    margin-bottom: 40px;
}

.breadcrumb a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.article-header {
    background: white;
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.article-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.article-category {
    color: #667eea;
    font-weight: 600;
}

.article-date,
.article-read-time {
    color: #6b7280;
}

.article-header h1 {
    font-size: 3rem;
    color: #1a1a2e;
    margin-bottom: 20px;
    line-height: 1.3;
}

.article-excerpt {
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 30px;
}

.article-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.article-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.article-image {
    margin-bottom: 40px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.article-image img {
    width: 100%;
    height: auto;
}

.article-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.article-content h2 {
    color: #1a1a2e;
    font-size: 2rem;
    margin: 40px 0 20px;
    border-bottom: 3px solid #667eea;
    padding-bottom: 10px;
}

.article-content h3 {
    color: #2d3748;
    font-size: 1.5rem;
    margin: 30px 0 15px;
}

.article-content p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.article-content ul {
    margin: 20px 0;
    padding-left: 20px;
}

.article-content li {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.case-study,
.feature-highlight {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid #667eea;
    margin: 30px 0;
}

.case-study h4,
.feature-highlight h4 {
    color: #1a1a2e;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    color: white;
    margin: 40px 0;
}

.cta-section h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.cta-section p {
    margin-bottom: 30px;
    opacity: 0.9;
    color: #ffffff;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.article-footer {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.article-tags {
    margin-bottom: 30px;
}

.tag {
    display: inline-block;
    background: #e2e8f0;
    color: #4a5568;
    padding: 8px 16px;
    border-radius: 20px;
    margin: 5px;
    font-size: 0.9rem;
    font-weight: 500;
}

.article-share h4 {
    color: #1a1a2e;
    margin-bottom: 15px;
}

.share-buttons {
    display: flex;
    gap: 15px;
}

.share-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-btn.twitter { background: #1da1f2; }
.share-btn.linkedin { background: #0077b5; }
.share-btn.facebook { background: #1877f2; }
.share-btn.email { background: #667eea; }

.share-btn:hover {
    transform: scale(1.1);
}

.related-articles {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.related-articles h3 {
    color: #1a1a2e;
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.related-card {
    border: 1px solid #e2e8f0;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.related-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.related-content {
    padding: 20px;
}

.related-content h4 {
    color: #1a1a2e;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.related-content p {
    color: #4a5568;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.related-content a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Blog responsive design */
@media (max-width: 768px) {
    .blog-header h1 {
        font-size: 2.5rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .blog-card.featured {
        grid-column: span 1;
    }
    
    .category-tabs {
        gap: 10px;
    }
    
    .category-tab {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .article-header h1 {
        font-size: 2rem;
    }
    
    .article-content {
        padding: 30px 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
}

/* Error Pages */
.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
}

.error-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.error-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(102, 126, 234, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(102, 126, 234, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.error-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(102, 126, 234, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(118, 75, 162, 0.3) 0%, transparent 50%);
}

.error-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.error-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.error-animation {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.error-icon {
    color: #667eea;
    filter: drop-shadow(0 0 20px rgba(102, 126, 234, 0.5));
    animation: iconGlow 3s ease-in-out infinite alternate;
}

@keyframes iconGlow {
    0% { filter: drop-shadow(0 0 20px rgba(102, 126, 234, 0.5)); }
    100% { filter: drop-shadow(0 0 40px rgba(102, 126, 234, 0.8)); }
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.floating-element {
    position: absolute;
    font-size: 2rem;
    opacity: 0.6;
    animation: float 4s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 60%;
    right: 20%;
    animation-delay: 1s;
}

.floating-element:nth-child(3) {
    bottom: 20%;
    left: 30%;
    animation-delay: 2s;
}

.floating-element:nth-child(4) {
    top: 40%;
    right: 30%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

.error-text {
    color: white;
    text-align: left;
}

.error-code {
    font-size: 8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1;
    filter: drop-shadow(0 0 30px rgba(102, 126, 234, 0.5));
}

.error-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.error-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #cbd5e0;
    margin-bottom: 40px;
    max-width: 500px;
}

.error-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.error-actions .btn-primary,
.error-actions .btn-outline {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.error-actions .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.error-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.error-actions .btn-outline {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
    backdrop-filter: blur(10px);
}

.error-actions .btn-outline:hover {
    background: rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.error-help {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
}

.error-help h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.help-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.help-link {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #cbd5e0;
    text-decoration: none;
    padding: 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.help-link:hover {
    background: rgba(102, 126, 234, 0.1);
    color: white;
    transform: translateX(10px);
    border-color: rgba(102, 126, 234, 0.3);
}

.help-link i {
    font-size: 1.2rem;
    color: #667eea;
    width: 20px;
    text-align: center;
}

.help-link span {
    font-weight: 500;
}

/* Error page responsive design */
@media (max-width: 1024px) {
    .error-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .error-text {
        text-align: center;
    }
    
    .error-description {
        max-width: 100%;
    }
    
    .error-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .error-page {
        padding: 40px 20px;
    }
    
    .error-content {
        gap: 40px;
    }
    
    .error-code {
        font-size: 6rem;
    }
    
    .error-title {
        font-size: 2.5rem;
    }
    
    .error-description {
        font-size: 1.1rem;
    }
    
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .error-actions .btn-primary,
    .error-actions .btn-outline {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .help-links {
        gap: 10px;
    }
    
    .help-link {
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .error-code {
        font-size: 4rem;
    }
    
    .error-title {
        font-size: 2rem;
    }
    
    .error-description {
        font-size: 1rem;
    }
    
    .error-help {
        padding: 20px;
    }
    
    .error-help h3 {
        font-size: 1.3rem;
    }
} 

/* Enhanced Apple-Level Animations and Design - ArmorCode Inspired */

/* Sophisticated Color Palette & Typography System */
:root {
    /* Enhanced Primary Colors */
    --primary-purple: #6366f1;
    --primary-purple-dark: #4f46e5;
    --primary-purple-light: #818cf8;
    --secondary-purple: #7c3aed;
    --secondary-purple-dark: #6d28d9;
    --secondary-purple-light: #a855f7;
    --accent-red: #ef4444;
    --accent-red-light: #f87171;
    --accent-teal: #06b6d4;
    --accent-teal-light: #22d3ee;
    --accent-blue: #3b82f6;
    --accent-blue-light: #60a5fa;
    --accent-emerald: #10b981;
    --accent-emerald-light: #34d399;
    --accent-violet: #8b5cf6;
    --accent-violet-light: #a78bfa;
    --accent-orange: #f97316;
    --accent-orange-light: #fb923c;
    --accent-amber: #f59e0b;
    --accent-amber-light: #fbbf24;
    
    /* Sophisticated Text Colors */
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --text-white: #ffffff;
    --text-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    
    /* Background Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --bg-dark: #0f172a;
    
    /* Border Colors */
    --border-light: #e2e8f0;
    --border-medium: #cbd5e1;
    --border-dark: #94a3b8;
    
    /* Shadow System */
    --shadow-light: rgba(102, 126, 234, 0.08);
    --shadow-medium: rgba(102, 126, 234, 0.15);
    --shadow-heavy: rgba(102, 126, 234, 0.25);
    --shadow-text: rgba(15, 23, 42, 0.1);
    
    /* Enhanced Gradient System */
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #7c3aed 50%, #8b5cf6 100%);
    --gradient-secondary: linear-gradient(135deg, #ef4444 0%, #f97316 50%, #f59e0b 100%);
    --gradient-accent: linear-gradient(135deg, #06b6d4 0%, #3b82f6 50%, #8b5cf6 100%);
    --gradient-text: linear-gradient(135deg, #6366f1 0%, #7c3aed 20%, #ef4444 40%, #06b6d4 60%, #10b981 80%, #6366f1 100%);
    --gradient-hero: linear-gradient(135deg, #6366f1 0%, #7c3aed 25%, #8b5cf6 50%, #06b6d4 75%, #10b981 100%);
    --gradient-glow: linear-gradient(135deg, rgba(99, 102, 241, 0.8) 0%, rgba(124, 58, 237, 0.8) 50%, rgba(139, 92, 246, 0.8) 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    
    /* Typography Scale */
    --font-size-xs: 0.75rem;    /* 12px */
    --font-size-sm: 0.875rem;   /* 14px */
    --font-size-base: 1rem;     /* 16px */
    --font-size-lg: 1.125rem;   /* 18px */
    --font-size-xl: 1.25rem;    /* 20px */
    --font-size-2xl: 1.5rem;    /* 24px */
    --font-size-3xl: 1.875rem;  /* 30px */
    --font-size-4xl: 2.25rem;   /* 36px */
    --font-size-5xl: 3rem;      /* 48px */
    --font-size-6xl: 3.75rem;   /* 60px */
    --font-size-7xl: 4.5rem;    /* 72px */
    
    /* Line Heights */
    --leading-tight: 1.25;
    --leading-snug: 1.375;
    --leading-normal: 1.5;
    --leading-relaxed: 1.625;
    --leading-loose: 2;
    
    /* Font Weights */
    --font-light: 300;
    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    --font-extrabold: 800;
    
    /* Letter Spacing */
    --tracking-tighter: -0.05em;
    --tracking-tight: -0.025em;
    --tracking-normal: 0em;
    --tracking-wide: 0.025em;
    --tracking-wider: 0.05em;
    --tracking-widest: 0.1em;
}

/* Professional Typography System */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');

/* Base Typography */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: var(--font-size-base);
    line-height: var(--leading-normal);
    color: var(--text-primary);
    font-weight: var(--font-normal);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    background-color: var(--bg-primary);
}

pre, code {
    font-family: 'JetBrains Mono', 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, monospace;
    font-size: 1em;
    background: #f8fafc;
    color: #3b4252;
    border-radius: 4px;
    padding: 0.1em 0.3em;
}

/* Typography Scale Classes */
.text-xs { font-size: var(--font-size-xs); line-height: var(--leading-tight); }
.text-sm { font-size: var(--font-size-sm); line-height: var(--leading-snug); }
.text-base { font-size: var(--font-size-base); line-height: var(--leading-normal); }
.text-lg { font-size: var(--font-size-lg); line-height: var(--leading-relaxed); }
.text-xl { font-size: var(--font-size-xl); line-height: var(--leading-relaxed); }
.text-2xl { font-size: var(--font-size-2xl); line-height: var(--leading-tight); }
.text-3xl { font-size: var(--font-size-3xl); line-height: var(--leading-tight); }
.text-4xl { font-size: var(--font-size-4xl); line-height: var(--leading-tight); }
.text-5xl { font-size: var(--font-size-5xl); line-height: var(--leading-tight); }
.text-6xl { font-size: var(--font-size-6xl); line-height: var(--leading-tight); }
.text-7xl { font-size: var(--font-size-7xl); line-height: var(--leading-tight); }

/* Font Weight Classes */
.font-light { font-weight: var(--font-light); }
.font-normal { font-weight: var(--font-normal); }
.font-medium { font-weight: var(--font-medium); }
.font-semibold { font-weight: var(--font-semibold); }
.font-bold { font-weight: var(--font-bold); }
.font-extrabold { font-weight: var(--font-extrabold); }

/* Letter Spacing Classes */
.tracking-tighter { letter-spacing: var(--tracking-tighter); }
.tracking-tight { letter-spacing: var(--tracking-tight); }
.tracking-normal { letter-spacing: var(--tracking-normal); }
.tracking-wide { letter-spacing: var(--tracking-wide); }
.tracking-wider { letter-spacing: var(--tracking-wider); }
.tracking-widest { letter-spacing: var(--tracking-widest); }

/* Text Color Classes */
.text-primary { color: var(--text-primary); }
.text-secondary { color: var(--text-secondary); }
.text-muted { color: var(--text-muted); }
.text-light { color: var(--text-light); }
.text-white { color: var(--text-white); }

/* Gradient Text */
.gradient-text {
    background: var(--gradient-text);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: ambientGradient 4s ease infinite;
    position: relative;
    display: inline-block;
}

/* Fallback for browsers that don't support background-clip */
@supports not (-webkit-background-clip: text) {
    .gradient-text {
        background: none;
        -webkit-text-fill-color: initial;
        color: var(--primary-purple);
        text-shadow: 0 2px 8px var(--shadow-text);
    }
}

/* Monospace Font for Code/Technical Content */
.font-mono {
    font-family: 'JetBrains Mono', 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
}

/* Ambient gradient shifts */
@keyframes ambientGradient {
    0%, 100% { 
        background-position: 0% 50%;
        filter: hue-rotate(0deg);
    }
    25% { 
        background-position: 100% 50%;
        filter: hue-rotate(5deg);
    }
    50% { 
        background-position: 50% 100%;
        filter: hue-rotate(-3deg);
    }
    75% { 
        background-position: 50% 0%;
        filter: hue-rotate(2deg);
    }
}

@keyframes flowingData {
    0% { transform: translateX(-100%) translateY(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateX(100%) translateY(-20px); opacity: 0; }
}

@keyframes pulseGlow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 40px rgba(102, 126, 234, 0.6);
        transform: scale(1.02);
    }
}

@keyframes floatingElements {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(1deg); }
    50% { transform: translateY(-5px) rotate(-1deg); }
    75% { transform: translateY(-15px) rotate(0.5deg); }
}

@keyframes energyFlow {
    0% { 
        background-position: 0% 50%;
        opacity: 0.7;
    }
    50% { 
        background-position: 100% 50%;
        opacity: 1;
    }
    100% { 
        background-position: 0% 50%;
        opacity: 0.7;
    }
}

@keyframes morphingShapes {
    0%, 100% { 
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: rotate(0deg);
    }
    25% { 
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
        transform: rotate(90deg);
    }
    50% { 
        border-radius: 50% 60% 30% 60% / 60% 30% 60% 40%;
        transform: rotate(180deg);
    }
    75% { 
        border-radius: 60% 40% 60% 30% / 30% 60% 40% 60%;
        transform: rotate(270deg);
    }
}

/* Enhanced particle animations */
@keyframes ambientFloat {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) scale(1);
        opacity: 0.6;
    }
    25% { 
        transform: translateY(-20px) translateX(10px) scale(1.1);
        opacity: 0.8;
    }
    50% { 
        transform: translateY(-10px) translateX(-15px) scale(0.9);
        opacity: 0.4;
    }
    75% { 
        transform: translateY(-30px) translateX(5px) scale(1.2);
        opacity: 0.7;
    }
}

@keyframes pulseNode {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 25px rgba(99, 102, 241, 0.7);
    }
    50% { 
        transform: scale(1.3);
        box-shadow: 0 0 40px rgba(99, 102, 241, 0.9);
    }
}

@keyframes flowData {
    0% { 
        opacity: 0;
        transform: scaleX(0);
    }
    50% { 
        opacity: 1;
        transform: scaleX(1);
    }
    100% { 
        opacity: 0;
        transform: scaleX(0);
    }
}

@keyframes ripple {
    0% { 
        transform: scale(0);
        opacity: 1;
    }
    100% { 
        transform: scale(4);
        opacity: 0;
    }
}

@keyframes textReveal {
    0% { 
        opacity: 0;
        transform: translateY(20px);
    }
    100% { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced hero section with flowing data visualization */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(102, 126, 234, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(118, 75, 162, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(255, 107, 107, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 60% 40%, rgba(78, 205, 196, 0.05) 0%, transparent 50%);
    background-size: 400% 400%;
    animation: ambientGradient 20s ease infinite;
    pointer-events: none;
    z-index: -1;
}

/* Flowing data dots */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, var(--primary-purple), transparent),
        radial-gradient(2px 2px at 40px 70px, var(--accent-red), transparent),
        radial-gradient(1px 1px at 90px 40px, var(--accent-teal), transparent),
        radial-gradient(1px 1px at 130px 80px, var(--accent-blue), transparent),
        radial-gradient(2px 2px at 160px 30px, var(--accent-green), transparent),
        radial-gradient(1px 1px at 200px 50px, var(--accent-orange), transparent),
        radial-gradient(2px 2px at 240px 80px, var(--accent-yellow), transparent);
    background-repeat: repeat;
    background-size: 300px 150px;
    animation: flowingData 20s linear infinite;
    opacity: 0.4;
    pointer-events: none;
    z-index: -1;
}

/* Enhanced button animations */
.btn-primary {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--gradient-primary);
    background-size: 200% 200%;
    animation: energyFlow 3s ease infinite;
    border: none;
    color: white;
    font-weight: 600;
    letter-spacing: 0.025em;
    text-transform: none;
    border-radius: 12px;
    padding: 12px 24px;
    font-size: 16px;
    line-height: 1.5;
    cursor: pointer;
    box-shadow: 0 4px 12px var(--shadow-light);
}

.btn-primary::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;
}

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

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(102, 126, 234, 0.3),
        0 10px 20px rgba(118, 75, 162, 0.2);
    animation: pulseGlow 2s ease infinite;
}

/* Enhanced feature cards with morphing backgrounds */
.feature-card {
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        rgba(102, 126, 234, 0.1) 0%, 
        rgba(118, 75, 162, 0.1) 25%, 
        rgba(255, 107, 107, 0.1) 50%, 
        rgba(102, 126, 234, 0.1) 75%, 
        rgba(118, 75, 162, 0.1) 100%);
    background-size: 400% 400%;
    animation: ambientGradient 15s ease infinite;
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: -1;
}

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

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(102, 126, 234, 0.15),
        0 15px 30px rgba(118, 75, 162, 0.1);
}

/* Enhanced feature icons with floating animation */
.feature-icon {
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-icon {
    animation: floatingElements 3s ease-in-out infinite;
    transform: scale(1.15) rotate(8deg);
    box-shadow: 
        0 20px 48px rgba(99, 102, 241, 0.6),
        0 10px 24px rgba(99, 102, 241, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    color: #ffffff;
    z-index: 2;
}

.feature-card:hover .feature-icon::before {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.feature-card:hover .feature-icon svg {
    color: #ffffff;
    position: relative;
    z-index: 3;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

/* Enhanced marquee with energy flow and color effects */
.marquee-item {
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.marquee-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.marquee-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 50%, rgba(255, 107, 107, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.marquee-item:hover::before {
    transform: translateX(100%);
}

.marquee-item:hover::after {
    opacity: 1;
}

.marquee-item:hover {
    transform: scale(1.05) translateY(-2px);
    filter: brightness(1.2) contrast(1.1);
    box-shadow: 
        0 10px 30px rgba(102, 126, 234, 0.2),
        0 5px 15px rgba(118, 75, 162, 0.15),
        0 2px 8px rgba(255, 107, 107, 0.1);
}

/* Individual color effects for each marquee item */
.marquee-item:nth-child(1) {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.02) 0%, transparent 100%);
}

.marquee-item:nth-child(1):hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(102, 126, 234, 0.02) 100%);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.marquee-item:nth-child(2) {
    background: linear-gradient(135deg, rgba(118, 75, 162, 0.02) 0%, transparent 100%);
}

.marquee-item:nth-child(2):hover {
    background: linear-gradient(135deg, rgba(118, 75, 162, 0.08) 0%, rgba(118, 75, 162, 0.02) 100%);
    box-shadow: 0 10px 30px rgba(118, 75, 162, 0.3);
}

.marquee-item:nth-child(3) {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.02) 0%, transparent 100%);
}

.marquee-item:nth-child(3):hover {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.08) 0%, rgba(255, 107, 107, 0.02) 100%);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.marquee-item:nth-child(4) {
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.02) 0%, transparent 100%);
}

.marquee-item:nth-child(4):hover {
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.08) 0%, rgba(78, 205, 196, 0.02) 100%);
    box-shadow: 0 10px 30px rgba(78, 205, 196, 0.3);
}

.marquee-item:nth-child(5) {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.02) 0%, transparent 100%);
}

.marquee-item:nth-child(5):hover {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.08) 0%, rgba(255, 193, 7, 0.02) 100%);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.3);
}

.marquee-item:nth-child(6) {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.02) 0%, transparent 100%);
}

.marquee-item:nth-child(6):hover {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.08) 0%, rgba(40, 167, 69, 0.02) 100%);
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.3);
}

.marquee-item:nth-child(7) {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.02) 0%, transparent 100%);
}

.marquee-item:nth-child(7):hover {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.08) 0%, rgba(220, 53, 69, 0.02) 100%);
    box-shadow: 0 10px 30px rgba(220, 53, 69, 0.3);
}

.marquee-item:nth-child(8) {
    background: linear-gradient(135deg, rgba(23, 162, 184, 0.02) 0%, transparent 100%);
}

.marquee-item:nth-child(8):hover {
    background: linear-gradient(135deg, rgba(23, 162, 184, 0.08) 0%, rgba(23, 162, 184, 0.02) 100%);
    box-shadow: 0 10px 30px rgba(23, 162, 184, 0.3);
}

.marquee-item:nth-child(9) {
    background: linear-gradient(135deg, rgba(111, 66, 193, 0.02) 0%, transparent 100%);
}

.marquee-item:nth-child(9):hover {
    background: linear-gradient(135deg, rgba(111, 66, 193, 0.08) 0%, rgba(111, 66, 193, 0.02) 100%);
    box-shadow: 0 10px 30px rgba(111, 66, 193, 0.3);
}

.marquee-item:nth-child(10) {
    background: linear-gradient(135deg, rgba(253, 126, 20, 0.02) 0%, transparent 100%);
}

.marquee-item:nth-child(10):hover {
    background: linear-gradient(135deg, rgba(253, 126, 20, 0.08) 0%, rgba(253, 126, 20, 0.02) 100%);
    box-shadow: 0 10px 30px rgba(253, 126, 20, 0.3);
}

.marquee-item:nth-child(11) {
    background: linear-gradient(135deg, rgba(108, 117, 125, 0.02) 0%, transparent 100%);
}

.marquee-item:nth-child(11):hover {
    background: linear-gradient(135deg, rgba(108, 117, 125, 0.08) 0%, rgba(108, 117, 125, 0.02) 100%);
    box-shadow: 0 10px 30px rgba(108, 117, 125, 0.3);
}

.marquee-item:nth-child(12) {
    background: linear-gradient(135deg, rgba(102, 16, 242, 0.02) 0%, transparent 100%);
}

.marquee-item:nth-child(12):hover {
    background: linear-gradient(135deg, rgba(102, 16, 242, 0.08) 0%, rgba(102, 16, 242, 0.02) 100%);
    box-shadow: 0 10px 30px rgba(102, 16, 242, 0.3);
}

/* Enhanced demo tabs with morphing shapes */
.demo-tab {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.demo-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.demo-tab:hover::before {
    opacity: 0.1;
}

.demo-tab.active::before {
    opacity: 0.2;
}

/* Enhanced pricing cards with ambient glow */
.pricing-card {
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #667eea, #764ba2, #ff6b6b, #4ecdc4);
    background-size: 400% 400%;
    animation: ambientGradient 8s ease infinite;
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: -1;
    border-radius: inherit;
}

.pricing-card:hover::after {
    opacity: 0.3;
}

.pricing-card.featured::after {
    opacity: 0.2;
}

/* Enhanced CTA section with floating elements */
.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(118, 75, 162, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(255, 107, 107, 0.05) 0%, transparent 50%);
    animation: floatingElements 20s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

/* Enhanced navbar with subtle glow */
.navbar {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 
        0 10px 30px rgba(102, 126, 234, 0.1),
        0 5px 15px rgba(118, 75, 162, 0.05);
}

/* Enhanced logo with morphing animation */
.logo-icon {
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-logo:hover .logo-icon {
    animation: morphingShapes 4s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(102, 126, 234, 0.5));
}

/* Enhanced mobile menu with ambient background */
.mobile-menu {
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    background: rgba(255, 255, 255, 0.98);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(102, 126, 234, 0.05) 0%, 
        rgba(118, 75, 162, 0.05) 50%, 
        rgba(255, 107, 107, 0.05) 100%);
    background-size: 200% 200%;
    animation: ambientGradient 10s ease infinite;
    pointer-events: none;
    z-index: -1;
}

/* Enhanced modal with energy flow */
.modal {
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal > div {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal > div::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(102, 126, 234, 0.05) 0%, 
        rgba(118, 75, 162, 0.05) 100%);
    background-size: 200% 200%;
    animation: ambientGradient 8s ease infinite;
    pointer-events: none;
    z-index: -1;
}

/* Enhanced form inputs with flowing focus */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    position: relative;
    overflow: hidden;
}

.form-group input:focus::after,
.form-group select:focus::after,
.form-group textarea:focus::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    animation: energyFlow 2s ease infinite;
}

/* Enhanced scroll indicator with energy flow */
.scroll-indicator {
    position: relative;
    overflow: hidden;
}

.scroll-indicator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.3), transparent);
    transform: translateX(-100%);
    animation: energyFlow 3s ease infinite;
}

/* Enhanced particle system */
.particle {
    position: absolute;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.6) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: floatingElements 8s ease-in-out infinite;
}

/* Enhanced loading animation */
.loading-screen {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-size: 400% 400%;
    animation: ambientGradient 3s ease infinite;
}

/* Enhanced text animations */
.gradient-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #ff6b6b 100%);
    background-size: 200% 200%;
    animation: ambientGradient 4s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Enhanced hover effects for all interactive elements */
.nav-link:hover,
.mobile-link:hover,
.footer-section a:hover {
    position: relative;
    overflow: hidden;
}

.nav-link:hover::before,
.mobile-link:hover::before,
.footer-section a:hover::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: translateX(-100%);
    animation: energyFlow 0.6s ease forwards;
}

/* Enhanced responsive animations */
@media (max-width: 768px) {
    .hero::after {
        background-size: 150px 75px;
        animation-duration: 20s;
    }
    
    .feature-card:hover {
        transform: translateY(-4px) scale(1.01);
    }
    
    .pricing-card:hover {
        transform: translateY(-4px) scale(1.01);
    }
}

/* Enhanced Typography Utilities */
.text-glow {
    text-shadow: 
        0 0 10px currentColor,
        0 0 20px currentColor,
        0 0 30px currentColor;
}

.text-shadow-soft {
    text-shadow: 0 2px 4px var(--shadow-text);
}

.text-shadow-medium {
    text-shadow: 0 4px 8px var(--shadow-text);
}

.text-shadow-heavy {
    text-shadow: 0 8px 16px var(--shadow-text);
}

/* Professional text styling */
.text-uppercase {
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
}

.text-capitalize {
    text-transform: capitalize;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

/* Typography utilities */
.font-display {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: var(--font-bold);
    letter-spacing: var(--tracking-tight);
}

.font-body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: var(--font-normal);
    letter-spacing: var(--tracking-normal);
}

/* Performance optimizations */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
} 