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

/* Accessibility - Skip to main content */
.skip-to-main {
    position: absolute;
    left: -9999px;
    z-index: 9999;
    padding: 1em;
    background: #832DCB;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: left 0.3s;
}

.skip-to-main:focus {
    left: 10px;
    top: 10px;
    outline: 3px solid #fff;
    outline-offset: 2px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #0a0e1a;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation - Premium Corporate Design */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    background: linear-gradient(
        180deg,
        rgba(10, 14, 26, 0.95) 0%,
        rgba(10, 14, 26, 0.92) 100%
    );
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.05),
        inset 0 -1px 0 rgba(255, 255, 255, 0.03);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 !important;
    margin: 0 !important;
}

/* Navbar on scroll effect */
.navbar.scrolled {
    background: linear-gradient(
        180deg, 
        rgba(10, 14, 26, 0.98) 0%, 
        rgba(10, 14, 26, 0.96) 100%
    );
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.15),
        0 2px 8px rgba(0, 0, 0, 0.1),
        inset 0 -1px 0 rgba(131, 45, 203, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.375rem 2.5rem;
    max-width: 1520px;
    margin: 0 auto;
    gap: 2rem;
    position: relative;
}

/* Logo Styling */
.nav-logo {
    flex-shrink: 0;
    z-index: 10;
}

.logo-link {
    display: block;
    text-decoration: none;
}

.logo-container {
    display: flex;
    align-items: center;
    background: transparent;
    padding: 2px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.logo-container::after {
    content: '';
    position: absolute;
    inset: -4px;
    background: linear-gradient(135deg, rgba(131, 45, 203, 0.15), rgba(153, 176, 255, 0.1));
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.logo-link:hover .logo-container::after {
    opacity: 1;
}

.logo-container:hover {
    transform: translateY(-1px);
}

.logo-image {
    height: 37px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(131, 45, 203, 0.2));
    transition: filter 0.3s ease;
    display: block;
}

.logo-link:hover .logo-image {
    filter: drop-shadow(0 4px 12px rgba(131, 45, 203, 0.35));
}

.avatar-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

/* Navigation Links */
.nav-links {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-link {
    color: #cbd5e1;
    text-decoration: none;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 500;
    font-size: 0.9375rem;
    letter-spacing: -0.01em;
    line-height: 1.3;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.375rem 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    white-space: nowrap;
}

.nav-link-text {
    transition: all 0.3s ease;
    font-family: inherit;
    font-weight: inherit;
    font-size: inherit;
    letter-spacing: inherit;
}

.nav-link:hover .nav-link-text {
    color: #f8fafc;
}

/* Advanced underline indicator */
.nav-link-indicator {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #832DCB 20%,
        #99B0FF 50%,
        #832DCB 80%, 
        transparent 100%
    );
    border-radius: 2px;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.5);
}

.nav-link:hover .nav-link-indicator,
.nav-link.active .nav-link-indicator {
    transform: translateX(-50%) scaleX(1);
}

/* Glow effect on hover */
.nav-link::before {
    content: '';
    position: absolute;
    inset: -8px;
    background: radial-gradient(circle, rgba(131, 45, 203, 0.12) 0%, transparent 70%);
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-link:hover::before {
    opacity: 1;
}

/* Nav Item with Dropdown */
.nav-item {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.nav-item.has-dropdown {
    position: relative;
}

/* Dropdown Trigger Button */
.nav-dropdown-trigger {
    background: transparent;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 500;
    font-size: 0.9375rem;
    letter-spacing: -0.01em;
    line-height: 1.3;
    padding: 0.375rem 0.875rem;
    white-space: nowrap;
}

.dropdown-arrow {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #94a3b8;
    margin-left: -0.125rem;
}

.nav-item.has-dropdown:hover .dropdown-arrow,
.nav-item.has-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
    color: #832DCB;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 1rem);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.nav-item.has-dropdown:hover .dropdown-menu,
.nav-item.has-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

.dropdown-content {
    background: linear-gradient(
        135deg,
        rgba(15, 23, 42, 0.98) 0%,
        rgba(10, 14, 26, 0.98) 100%
    );
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 0.75rem;
    min-width: 280px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 8px 20px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Dropdown Items */
.dropdown-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.875rem 1rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(59, 130, 246, 0.08) 0%,
        rgba(139, 92, 246, 0.05) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dropdown-item:hover {
    background: rgba(131, 45, 203, 0.08);
    transform: translateX(4px);
}

.dropdown-item:hover::before {
    opacity: 1;
}

.dropdown-item-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(131, 45, 203, 0.1), rgba(153, 176, 255, 0.1));
    border-radius: 10px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.dropdown-item:hover .dropdown-item-icon {
    background: linear-gradient(135deg, rgba(131, 45, 203, 0.2), rgba(153, 176, 255, 0.15));
    transform: scale(1.1) rotate(5deg);
}

.dropdown-item-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.dropdown-item-title {
    color: #f8fafc;
    font-weight: 600;
    font-size: 0.9375rem;
    letter-spacing: -0.01em;
    transition: color 0.2s ease;
}

.dropdown-item:hover .dropdown-item-title {
    color: #99B0FF;
}

.dropdown-item-desc {
    color: #94a3b8;
    font-size: 0.8125rem;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

/* Separator in dropdown */
.dropdown-separator {
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 100%
    );
    margin: 0.5rem 0;
}

/* Nav Actions Container */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

/* CTA Button - Premium Style */
.nav-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #832DCB 0%, #99B0FF 100%);
    padding: 0.375rem 1.125rem;
    border-radius: 8px;
    color: white;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    line-height: 1.3;
    text-decoration: none;
    box-shadow:
        0 2px 8px rgba(131, 45, 203, 0.25),
        0 1px 3px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: -0.01em;
    white-space: nowrap;
}

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

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

.nav-cta-btn:hover {
    background: linear-gradient(135deg, #6B2AB8 0%, #832DCB 100%);
    transform: translateY(-2px);
    box-shadow: 
        0 6px 20px rgba(131, 45, 203, 0.4),
        0 4px 8px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.nav-cta-btn:active {
    transform: translateY(0);
    box-shadow: 
        0 2px 8px rgba(131, 45, 203, 0.3),
        0 1px 3px rgba(0, 0, 0, 0.1);
}

.cta-text {
    font-family: inherit;
    font-weight: inherit;
    font-size: inherit;
    line-height: inherit;
    letter-spacing: inherit;
}

.cta-arrow {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-cta-btn:hover .cta-arrow {
    transform: translateX(3px);
}

/* Language Switcher - Premium Design */
.language-switcher {
    display: flex;
    gap: 0;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0.02) 100%
    );
    border-radius: 8px;
    padding: 3px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.lang-btn {
    background: transparent;
    border: none;
    color: #94a3b8;
    padding: 4px 10px;
    border-radius: 6px;
    cursor: pointer;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 0.8125rem;
    letter-spacing: 0.02em;
    line-height: 1.3;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.lang-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.1) 0%, 
        rgba(139, 92, 246, 0.05) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lang-btn:hover {
    color: #cbd5e1;
    background: rgba(255, 255, 255, 0.08);
}

.lang-btn:hover::before {
    opacity: 1;
}

.lang-btn.active {
    background: linear-gradient(135deg, #832DCB 0%, #99B0FF 100%);
    color: white;
    box-shadow: 
        0 2px 8px rgba(59, 130, 246, 0.4),
        0 1px 3px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.lang-btn.active::before {
    opacity: 0;
}

/* Mobile Menu Toggle - Premium Design */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.menu-line {
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #cbd5e1 0%, #94a3b8 100%);
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.mobile-menu-toggle:hover .menu-line {
    background: linear-gradient(90deg, #f8fafc 0%, #cbd5e1 100%);
    box-shadow: 0 2px 4px rgba(131, 45, 203, 0.2);
}

.mobile-menu-toggle.active .menu-line:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
    background: linear-gradient(90deg, #3b82f6 0%, #60a5fa 100%);
}

.mobile-menu-toggle.active .menu-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-menu-toggle.active .menu-line:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
    background: linear-gradient(90deg, #3b82f6 0%, #60a5fa 100%);
}

/* Progress Bar */
.nav-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        #3b82f6 0%, 
        #60a5fa 50%, 
        #3b82f6 100%
    );
    background-size: 200% 100%;
    width: 0%;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 0 10px rgba(131, 45, 203, 0.5),
        0 0 20px rgba(131, 45, 203, 0.3);
    animation: progressGlow 3s ease-in-out infinite;
}

@keyframes progressGlow {
    0%, 100% {
        box-shadow: 
            0 0 10px rgba(59, 130, 246, 0.5),
            0 0 20px rgba(59, 130, 246, 0.3);
    }
    50% {
        box-shadow: 
            0 0 15px rgba(131, 45, 203, 0.7),
            0 0 30px rgba(131, 45, 203, 0.5);
    }
}

/* Hero Section - Modern 2025 Design */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #0a0f1e 0%, #1a1f35 100%);
    overflow: hidden;
    padding: 180px 0 80px;
    margin-top: 0;
}

/* Animated gradient orbs */
.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(131, 45, 203, 0.15) 0%, transparent 70%);
    filter: blur(100px);
    animation: heroFloat 20s ease-in-out infinite;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, transparent 70%);
    filter: blur(80px);
    animation: heroFloat 15s ease-in-out infinite reverse;
    pointer-events: none;
}

@keyframes heroFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, -30px) scale(1.1); }
}

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

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.75rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: #f8fafc;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, #832DCB 0%, #99B0FF 50%, #A8BBFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-description {
    font-size: 1.25rem;
    color: #94a3b8;
    margin-bottom: 2.5rem;
    line-height: 1.75;
    max-width: 540px;
    letter-spacing: -0.01em;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.stat {
    text-align: left;
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #832DCB;
    margin-bottom: 0.5rem;
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    position: relative;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    letter-spacing: -0.01em;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, #832DCB, #99B0FF);
    color: white;
    box-shadow: 0 1px 3px rgba(131, 45, 203, 0.2), 0 1px 2px rgba(131, 45, 203, 0.1);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #6B2AB8, #832DCB);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.35), 0 2px 4px rgba(59, 130, 246, 0.2);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #cbd5e1;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #f8fafc;
    transform: translateY(-2px);
}

.btn-ripple {
    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: width 0.6s, height 0.6s;
}

.btn-primary:active .btn-ripple {
    width: 300px;
    height: 300px;
}

/* Digital Workers Showcase - Modern & Clean */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-visual::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(131, 45, 203, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
}

.digital-workers-showcase {
    position: relative;
    width: 100%;
    max-width: 480px;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.worker-node {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(131, 45, 203, 0.3);
    animation: float 3s ease-in-out infinite;
    color: white;
}

.worker-node::before {
    content: attr(data-label);
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    color: #a0a9b8;
    white-space: nowrap;
}

.worker-node.primary {
    background: linear-gradient(135deg, #832DCB, #99B0FF);
    z-index: 10;
    animation-delay: 0s;
}

.worker-node.secondary {
    background: linear-gradient(135deg, #44a3ff, #1e3a8a);
    width: 60px;
    height: 60px;
}

.worker-node.secondary:nth-child(2) {
    top: 20%;
    right: 20%;
    animation-delay: 0.5s;
}

.worker-node.secondary:nth-child(3) {
    bottom: 20%;
    right: 20%;
    animation-delay: 1s;
}

.worker-node.secondary:nth-child(4) {
    bottom: 20%;
    left: 20%;
    animation-delay: 1.5s;
}

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

.worker-node:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(131, 45, 203, 0.5);
}

/* Interactive Discovery/Chat Section - Modern Mesh Gradient */
.chat-demo {
    padding: 6rem 0;
    background: linear-gradient(180deg, #0f172a 0%, #1a1f35 100%);
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Mesh gradient effect */
.chat-demo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(131, 45, 203, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(139, 92, 246, 0.06) 0%, transparent 60%);
    filter: blur(60px);
    pointer-events: none;
    animation: meshPulse 10s ease-in-out infinite;
}

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

.discovery-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.discovery-simple {
    text-align: center;
    max-width: 500px;
    padding: 3rem 2rem;
}

.discovery-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.axgents-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(131, 45, 203, 0.2), rgba(153, 176, 255, 0.2));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(131, 45, 203, 0.3);
    color: #832DCB;
    box-shadow: 0 10px 30px rgba(131, 45, 203, 0.2);
}

.discovery-simple h2 {
    font-size: 1.8rem;
    color: #e1e5e9;
    margin-bottom: 2rem;
    font-weight: 500;
    line-height: 1.3;
}

.start-chat-btn {
    background: linear-gradient(135deg, #832DCB, #99B0FF);
    border: 1px solid rgba(131, 45, 203, 0.3);
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px rgba(131, 45, 203, 0.3);
}

.start-chat-btn:hover {
    background: linear-gradient(135deg, #6B2AB8, #832DCB);
    border-color: rgba(131, 45, 203, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(131, 45, 203, 0.4);
}

/* OpenAI-style Chat Elements - Corporate Design */
.chat-elements-container {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.chat-window-title {
    color: #f8fafc;
    font-size: 1.875rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-align: center;
}

.chat-window-subtitle {
    color: #94a3b8;
    font-size: 1.125rem;
    font-weight: 400;
    margin: 0.75rem 0 0 0;
    line-height: 1.6;
    text-align: center;
    max-width: 600px;
}

.chat-window-input {
    width: 100%;
    max-width: 720px;
    cursor: pointer;
}

.suggestion-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    width: 100%;
    max-width: 720px;
}

.suggestion-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 56px;
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

/* Shine effect */
.suggestion-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.suggestion-card:hover {
    background: linear-gradient(135deg, rgba(131, 45, 203, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    border-color: rgba(131, 45, 203, 0.4);
    box-shadow: 0 8px 20px rgba(131, 45, 203, 0.2), 0 4px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px) scale(1.02);
}

.suggestion-card:hover::after {
    left: 100%;
}

.suggestion-text {
    color: #e2e8f0;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
    letter-spacing: -0.01em;
}


.input-field {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    min-height: 60px;
    backdrop-filter: blur(12px);
    cursor: pointer;
    width: 100%;
    box-sizing: border-box;
    gap: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.input-field:hover {
    border-color: rgba(131, 45, 203, 0.4);
    box-shadow: 0 4px 12px rgba(131, 45, 203, 0.15), 0 2px 4px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

.input-field:active {
    transform: scale(0.99);
}

.input-placeholder {
    color: #94a3b8;
    font-size: 1rem;
    font-weight: 400;
    flex: 1;
    user-select: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    letter-spacing: -0.01em;
}

.input-icon {
    color: #64748b;
    flex-shrink: 0;
    transition: color 0.2s ease;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.input-field:hover .input-icon {
    color: #832DCB;
}

/* Responsive Design for Chat Elements */
@media (max-width: 768px) {
    .chat-elements-container {
        margin: 0 16px;
        max-width: calc(100% - 32px);
        gap: 20px;
    }
    
    .chat-window-title {
        font-size: 1.1rem;
    }
    
    .suggestion-cards {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-bottom: 0;
    }
    
    .suggestion-card {
        padding: 12px 16px;
        min-height: 40px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .suggestion-card:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.2);
    }
    
    .suggestion-text {
        font-size: 12px;
        color: #e2e8f0;
    }
    
    .input-field {
        padding: 24px 16px;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.15);
        border: 1.5px solid rgba(255, 255, 255, 0.25);
        min-height: 32px;
    }
    
    .input-field:hover {
        background: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.4);
    }
    
    .input-placeholder {
        font-size: 13px;
        color: #a0aec0;
    }
}

@media (max-width: 480px) {
    .chat-elements-container {
        margin: 0 12px;
        max-width: calc(100% - 24px);
        gap: 16px;
    }
    
    .chat-window-title {
        font-size: 1rem;
    }
    
    .suggestion-card {
        padding: 10px 14px;
        min-height: 36px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .suggestion-card:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.2);
    }
    
    .suggestion-text {
        font-size: 11px;
        color: #e2e8f0;
    }
    
    .input-field {
        padding: 20px 14px;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.15);
        border: 1.5px solid rgba(255, 255, 255, 0.25);
        min-height: 28px;
    }
    
    .input-field:hover {
        background: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.4);
    }
    
    .input-placeholder {
        font-size: 12px;
        color: #a0aec0;
    }
}

/* ChatGPT-style Interface - Corporate Design */
.chatgpt-interface {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.96);
    backdrop-filter: blur(12px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeIn {
    from { 
        opacity: 0;
        transform: scale(0.98);
    }
    to { 
        opacity: 1;
        transform: scale(1);
    }
}

.chatgpt-interface .chat-container {
    width: 90%;
    max-width: 900px;
    height: 88vh;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(24px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(131, 45, 203, 0.1);
}

/* Chat Header - Corporate Style */
.chatgpt-interface .chat-header {
    padding: 1.25rem 1.75rem;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(12px);
}

.chat-title {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    color: #f8fafc;
    font-weight: 600;
    font-size: 1.0625rem;
    letter-spacing: -0.01em;
}

.chat-avatar {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, #832DCB, #99B0FF);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.25);
}

.connection-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 1rem;
    font-size: 0.8rem;
    color: #a0a9b8;
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.status-indicator.connected {
    background-color: #4caf50;
    box-shadow: 0 0 6px rgba(76, 175, 80, 0.5);
}

.chat-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.control-btn, .minimize-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    padding: 0.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-btn:hover, .minimize-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    color: #cbd5e1;
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Chat Body */
.chat-body {
    flex: 1;
    overflow: hidden;
}

.chatgpt-interface .chat-messages {
    height: 100%;
    overflow-y: auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.chatgpt-interface .chat-messages::-webkit-scrollbar {
    width: 4px;
}

.chatgpt-interface .chat-messages::-webkit-scrollbar-track {
    background: transparent;
}

.chatgpt-interface .chat-messages::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
}

/* Message Groups */
.message-group {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.message-group.user {
    flex-direction: row-reverse;
}

.message-avatar {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.message-group.assistant .message-avatar {
    background: transparent;
    border-radius: 8px;
    border: none;
    padding: 4px;
}

.message-group.user .message-avatar {
    background: linear-gradient(135deg, #832DCB, #99B0FF);
    border-radius: 50%;
}

.avatar-icon {
    color: #832DCB;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.message-content {
    flex: 1;
    max-width: calc(100% - 48px);
}

.message-text {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    color: #e2e8f0;
    line-height: 1.6;
    font-size: 0.9375rem;
    letter-spacing: -0.01em;
}

.message-group.user .message-text {
    background: rgba(131, 45, 203, 0.12);
    border-color: rgba(131, 45, 203, 0.25);
    margin-left: auto;
    max-width: 85%;
}

.message-group.assistant .message-text {
    background: transparent;
    border: none;
    padding: 0;
    max-width: 100%;
}

/* Chat Footer - Corporate Style */
.chat-footer {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
}

.input-container {
    position: relative;
}

.input-wrapper {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.875rem 3.5rem 0.875rem 1.25rem;
    display: flex;
    align-items: flex-end;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.input-wrapper:focus-within {
    border-color: rgba(131, 45, 203, 0.4);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 4px 12px rgba(131, 45, 203, 0.15), 0 2px 4px rgba(0, 0, 0, 0.1);
}

.chat-textarea {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    resize: none;
    color: #e1e5e9;
    font-size: 0.95rem;
    font-family: inherit;
    line-height: 1.5;
    min-height: 20px;
    max-height: 120px;
    overflow-y: auto;
}

.chat-textarea::placeholder {
    color: #a0a9b8;
}

.send-btn {
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #832DCB, #99B0FF);
    border: none;
    border-radius: 8px;
    color: white;
    box-shadow: 0 2px 8px rgba(131, 45, 203, 0.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: scale(0.9);
}

.send-btn:not(:disabled) {
    opacity: 1;
    transform: scale(1);
}

.send-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #6B2AB8, #832DCB);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(131, 45, 203, 0.4);
}

.send-btn:disabled {
    background: rgba(255, 255, 255, 0.08);
    color: #475569;
    cursor: not-allowed;
    box-shadow: none;
}

.input-footer {
    margin-top: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.status-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #a0a9b8;
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #832DCB;
    animation: statusPulse 2s infinite;
}

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

/* Features Section */
.features {
    padding: 6rem 0;
    background: #0f172a;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Global Section Styles - Corporate */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 2.75rem;
    color: #f8fafc;
    margin-bottom: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #94a3b8;
    max-width: 700px;
    margin: 0 auto;
    letter-spacing: -0.01em;
    line-height: 1.6;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: left;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(131, 45, 203, 0.3);
    box-shadow: 0 20px 50px rgba(0, 132, 255, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #832DCB, #99B0FF);
    border-radius: 20px;
    position: relative;
}

.icon-data, .icon-customer, .icon-content {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1f2e;
}

.feature-card h3 {
    font-size: 1.3rem;
    color: #e1e5e9;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: #a0a9b8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.feature-benefits li {
    color: #e1e5e9;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
}

.feature-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #832DCB;
    font-weight: bold;
}

/* Web Agents Section */
.web-agents {
    padding: 6rem 0;
    background: #1a1f2e;
}

.agents-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.agents-text h2 {
    font-size: 2.2rem;
    color: #e1e5e9;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.agents-text p {
    font-size: 1.1rem;
    color: #a0a9b8;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.agents-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.agents-features li {
    color: #e1e5e9;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.agents-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #832DCB;
    font-weight: bold;
}

.browser-mockup {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.browser-header {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.browser-controls {
    display: flex;
    gap: 0.5rem;
}

.browser-controls span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ff5f56;
}

.browser-controls span:nth-child(2) {
    background: #ffbd2e;
}

.browser-controls span:nth-child(3) {
    background: #27ca3f;
}

.browser-url {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    color: #a0a9b8;
    font-size: 0.9rem;
    flex: 1;
}

.browser-content {
    padding: 3rem;
    text-align: center;
}

.agent-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: #e1e5e9;
    font-weight: 500;
}

.action-indicator {
    position: relative;
}

.indicator-pulse {
    width: 12px;
    height: 12px;
    background: #832DCB;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 132, 255, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 132, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 132, 255, 0);
    }
}

/* Industries Section */
.industries {
    padding: 6rem 0;
    background: #0f1419;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.industry-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.industry-card:hover {
    transform: translateY(-5px);
    border-color: rgba(131, 45, 203, 0.3);
    box-shadow: 0 15px 30px rgba(131, 45, 203, 0.1);
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.industry-card h3 {
    font-size: 1.2rem;
    color: #e1e5e9;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.industry-card p {
    color: #a0a9b8;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* CTA Section */
.cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a0e1a 0%, #1a1f2e 50%, #0a0e1a 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: #e1e5e9;
    margin-bottom: 1rem;
    font-weight: 600;
}

.cta-content p {
    font-size: 1.2rem;
    color: #a0a9b8;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.btn-primary.large, .btn-secondary.large {
    font-size: 1.1rem;
    padding: 1.2rem 3rem;
}

/* Footer - Modern Depth Design */
.footer {
    background: #0a0f1e;
    padding: 4rem 0 2rem;
    border-top: 2px solid rgba(59, 130, 246, 0.2);
    position: relative;
}

/* Top gradient glow */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.08) 0%, transparent 100%);
    pointer-events: none;
}

/* Corner accent */
.footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at bottom left, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 4rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}

.footer-logo p {
    color: #94a3b8;
    margin-top: 1rem;
    font-size: 0.9375rem;
    letter-spacing: -0.01em;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.footer-column h4 {
    color: #f8fafc;
    margin-bottom: 1.25rem;
    font-weight: 600;
    font-size: 1.0625rem;
    letter-spacing: -0.01em;
}

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

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

.footer-column ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.9375rem;
    letter-spacing: -0.01em;
}

.footer-column ul li a:hover {
    color: #99B0FF;
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    color: #64748b;
    font-size: 0.875rem;
    letter-spacing: -0.01em;
}

/* Video Demo Section - Premium Purple Design */
.video-demo {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1a1635 50%, #0f172a 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(131, 45, 203, 0.15);
}

/* Purple radial glow */
.video-demo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1200px;
    height: 1200px;
    background: radial-gradient(ellipse at center, rgba(131, 45, 203, 0.18) 0%, rgba(99, 102, 241, 0.12) 30%, transparent 70%);
    filter: blur(120px);
    animation: glowPulse 8s ease-in-out infinite;
    pointer-events: none;
}

/* Accent gradient orb */
.video-demo::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
    animation: orbFloat 12s ease-in-out infinite alternate;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.08);
    }
}

@keyframes orbFloat {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-30px, -20px); }
}

.video-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.video-player-container {
    position: relative;
    order: 2;
}

.video-thumbnail {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(26, 22, 53, 0.95));
    box-shadow:
        0 25px 70px rgba(131, 45, 203, 0.25),
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(131, 45, 203, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(131, 45, 203, 0.15);
}

/* Glow effect on hover */
.video-thumbnail::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, rgba(131, 45, 203, 0.6), rgba(99, 102, 241, 0.4));
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
    filter: blur(20px);
}

.video-thumbnail:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow:
        0 35px 90px rgba(131, 45, 203, 0.4),
        0 15px 40px rgba(0, 0, 0, 0.3),
        0 0 0 2px rgba(131, 45, 203, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: rgba(131, 45, 203, 0.4);
}

.video-thumbnail:hover::before {
    opacity: 1;
}

.thumbnail-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.9) contrast(1.1);
}

.video-thumbnail:hover .thumbnail-image {
    transform: scale(1.08);
    filter: brightness(1) contrast(1.15);
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(131, 45, 203, 0.25) 0%,
        rgba(99, 102, 241, 0.15) 40%,
        rgba(0, 0, 0, 0.35) 100%
    );
    transition: opacity 0.5s ease;
}

.video-thumbnail:hover .gradient-overlay {
    opacity: 0.8;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.25);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-thumbnail:hover .video-overlay {
    background: rgba(0, 0, 0, 0.15);
}

.play-button {
    position: relative;
    z-index: 3;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: playPulse 2.5s ease-in-out infinite;
    cursor: pointer;
}

.play-button::before {
    content: '';
    position: absolute;
    inset: -8px;
    background: radial-gradient(circle, rgba(131, 45, 203, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.video-thumbnail:hover .play-button {
    transform: scale(1.15);
    animation: none;
}

.video-thumbnail:hover .play-button::before {
    opacity: 1;
}

.play-icon {
    filter: drop-shadow(0 10px 20px rgba(131, 45, 203, 0.4));
    transition: all 0.4s ease;
}

.play-icon circle {
    transition: all 0.3s ease;
}

.play-button:hover .play-icon circle {
    fill: rgba(131, 45, 203, 1);
    stroke: rgba(153, 176, 255, 0.8);
    stroke-width: 3;
}

@keyframes playPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.95;
    }
    50% {
        transform: scale(1.08);
        opacity: 1;
    }
}

.video-duration {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(131, 45, 203, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.8125rem;
    font-weight: 600;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 12px rgba(131, 45, 203, 0.4);
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
}

.video-thumbnail:hover .video-duration {
    background: rgba(131, 45, 203, 1);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(131, 45, 203, 0.5);
}

.video-info {
    padding: 2rem 0;
    order: 1;
}

.video-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(131, 45, 203, 0.15), rgba(99, 102, 241, 0.12));
    border: 1px solid rgba(131, 45, 203, 0.3);
    padding: 0.625rem 1.25rem;
    border-radius: 10px;
    color: #c4b5fd;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.75rem;
    backdrop-filter: blur(12px);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(131, 45, 203, 0.15);
    transition: all 0.3s ease;
}

.video-badge:hover {
    background: linear-gradient(135deg, rgba(131, 45, 203, 0.2), rgba(99, 102, 241, 0.15));
    border-color: rgba(131, 45, 203, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(131, 45, 203, 0.25);
}

.badge-icon {
    font-size: 1.125rem;
    filter: drop-shadow(0 0 4px rgba(131, 45, 203, 0.5));
}

.video-title {
    font-size: 2.75rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.25rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.video-subtitle {
    font-size: 1.1875rem;
    color: #94a3b8;
    margin-bottom: 2.75rem;
    line-height: 1.7;
    letter-spacing: -0.01em;
    max-width: 90%;
}

.video-features {
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #e2e8f0;
    font-size: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: -0.01em;
}

.feature-item:hover {
    background: rgba(131, 45, 203, 0.08);
    border-color: rgba(131, 45, 203, 0.25);
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(131, 45, 203, 0.15);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #832DCB, #99B0FF);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(131, 45, 203, 0.3);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 16px rgba(131, 45, 203, 0.4);
}

.btn-watch-full {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #832DCB 0%, #99B0FF 100%);
    color: white;
    padding: 1.125rem 2.5rem;
    border: none;
    border-radius: 12px;
    font-size: 1.0625rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    box-shadow:
        0 10px 30px rgba(131, 45, 203, 0.35),
        0 4px 12px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    letter-spacing: -0.01em;
    position: relative;
    overflow: hidden;
}

/* Shine effect */
.btn-watch-full::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.6s ease;
}

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

.btn-watch-full:hover {
    transform: translateY(-4px);
    box-shadow:
        0 20px 50px rgba(131, 45, 203, 0.5),
        0 8px 20px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, #6B2AB8 0%, #832DCB 100%);
}

.btn-watch-full svg {
    transition: transform 0.3s ease;
}

.btn-watch-full:hover svg {
    transform: translateX(3px);
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.video-modal.active {
    display: flex;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    z-index: 10001;
}

.video-close-btn {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10002;
}

.video-close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.video-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.video-container iframe {
    border-radius: 12px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-container {
        padding: 1rem 2rem;
        gap: 2rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .nav-link {
        font-size: 0.875rem;
        padding: 0.625rem 0.375rem;
    }

    .nav-cta-btn {
        padding: 0.625rem 1.5rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 1rem 1.5rem;
        gap: 1rem;
    }

    .logo-image {
        height: 26px;
    }

    /* Hide desktop nav items */
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, 
            rgba(10, 14, 26, 0.98) 0%, 
            rgba(15, 23, 42, 0.98) 100%
        );
        backdrop-filter: blur(24px);
        flex-direction: column;
        justify-content: center;
        gap: 0;
        padding: 2rem;
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links.active {
        transform: translateX(0);
    }

    /* Mobile Nav Items */
    .nav-item {
        width: 100%;
        margin-bottom: 0.75rem;
    }

    .nav-item.has-dropdown {
        display: flex;
        flex-direction: column;
    }

    .nav-link {
        width: 100%;
        padding: 1.25rem 1.5rem;
        font-size: 1.125rem;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.05);
        transition: all 0.3s ease;
        justify-content: space-between;
    }

    .nav-dropdown-trigger {
        width: 100%;
        justify-content: space-between;
        padding: 1.25rem 1.5rem;
        font-size: 1.125rem;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-link:hover,
    .nav-dropdown-trigger:hover {
        background: rgba(131, 45, 203, 0.12);
        border-color: rgba(131, 45, 203, 0.3);
        transform: translateX(8px);
    }

    .nav-link-indicator {
        display: none;
    }

    /* Mobile Dropdown */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        pointer-events: all;
    }

    .nav-item.has-dropdown.active .dropdown-menu {
        max-height: 800px;
        margin-top: 0.75rem;
    }

    .dropdown-content {
        border-radius: 12px;
        min-width: 100%;
        box-shadow:
            0 4px 12px rgba(0, 0, 0, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.05);
    }

    .dropdown-item {
        padding: 1rem 1.25rem;
    }

    .dropdown-item:hover {
        transform: translateX(4px);
    }

    .dropdown-arrow {
        transition: transform 0.3s ease;
    }

    .nav-item.has-dropdown.active .dropdown-arrow {
        transform: rotate(180deg);
    }

    .nav-actions {
        position: fixed;
        bottom: 2rem;
        left: 2rem;
        right: 2rem;
        flex-direction: column-reverse;
        gap: 1rem;
        z-index: 1000;
        pointer-events: none;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-links.active ~ .mobile-menu-toggle ~ .nav-container .nav-actions,
    .nav-actions.mobile-active {
        opacity: 1;
        transform: translateY(0);
        pointer-events: all;
    }

    .nav-cta-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .language-switcher {
        width: 100%;
        justify-content: center;
        background: rgba(10, 14, 26, 0.95);
        backdrop-filter: blur(15px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        padding: 6px;
    }

    .lang-btn {
        flex: 1;
        padding: 10px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(4px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
        z-index: 998;
    }

    .mobile-nav-overlay.active {
        opacity: 1;
        pointer-events: all;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .agents-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    /* Video Demo Responsive */
    .video-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .video-thumbnail {
        margin: 0 auto;
        max-width: 500px;
    }
    
    .thumbnail-image {
        height: 250px;
    }
    
    .video-title {
        font-size: 2rem;
    }
    
    .video-subtitle {
        font-size: 1.1rem;
    }
    
    .video-features {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .feature-item {
        justify-content: center;
    }
    
    .btn-watch-full {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .video-modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .video-close-btn {
        top: -40px;
        right: 10px;
        width: 35px;
        height: 35px;
    }
}