/* Mobirise AI Style - Modern Design System */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Enhanced Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse-glow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 40px rgba(99, 102, 241, 0.6);
        transform: scale(1.05);
    }
}

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

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes text-glow {
    0%, 100% { text-shadow: 0 0 5px rgba(99, 102, 241, 0.5); }
    50% { text-shadow: 0 0 20px rgba(99, 102, 241, 0.8), 0 0 30px rgba(99, 102, 241, 0.6); }
}

:root {
    /* Mobirise Color Palette */
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary-color: #f59e0b;
    --accent-color: #10b981;
    --accent-light: #34d399;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-dark: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    
    /* Text Colors */
    --text-primary: #1a202c;
    --text-secondary: #4a5568;
    --text-light: #718096;
    --text-white: #ffffff;
    
    /* Background Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f7fafc;
    --bg-dark: #1a202c;
    --bg-card: #ffffff;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    
    /* Typography */
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-secondary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xs);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.nav-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.2), transparent);
    transition: left 0.5s;
}

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

.nav-logo:hover {
    transform: scale(1.05);
    color: var(--primary-color);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.logo-icon::before {
    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.3s ease;
}

.logo-icon:hover::before {
    width: 100%;
    height: 100%;
}

.logo-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.logo-text {
    font-weight: 800;
}

.logo-accent {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-lg);
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 16px;
    border-radius: 8px;
}

.nav-link:hover {
    color: var(--primary-color);
    background: rgba(99, 102, 241, 0.1);
}

.nav-cta {
    display: flex;
    align-items: center;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: var(--radius-full);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

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

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at center, rgba(99, 102, 241, 0.4) 2px, transparent 2px);
    background-size: 60px 60px;
    background-attachment: fixed;
    animation: wave-flow 12s linear infinite;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(168, 85, 247, 0.1) 50%, rgba(236, 72, 153, 0.1) 100%);
    animation: gradientShift 15s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.2; }
}

@keyframes wave-flow {
    0% { 
        background-position: 0 0;
        filter: hue-rotate(0deg);
    }
    16.66% { 
        background-position: 10px 10px;
        filter: hue-rotate(60deg);
    }
    33.33% { 
        background-position: 20px 20px;
        filter: hue-rotate(120deg);
    }
    50% { 
        background-position: 30px 30px;
        filter: hue-rotate(180deg);
    }
    66.66% { 
        background-position: 20px 40px;
        filter: hue-rotate(240deg);
    }
    83.33% { 
        background-position: 10px 50px;
        filter: hue-rotate(300deg);
    }
    100% { 
        background-position: 0 60px;
        filter: hue-rotate(360deg);
    }
}



.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-color);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--space-lg);
    border: 1px solid rgba(99, 102, 241, 0.2);
    white-space: nowrap;
    min-width: fit-content;
}

.hero-badge i {
    font-size: 1rem;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    color: var(--text-primary);
    animation: slideInUp 1s ease-out;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite, text-glow 2s ease infinite;
}

.gradient-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    animation: underline 2s ease-in-out infinite;
}

@keyframes underline {
    0%, 100% { width: 0; }
    50% { width: 100%; }
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    line-height: 1.7;
    font-weight: 400;
    animation: slideInUp 1s ease-out 0.2s both;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
    animation: slideInUp 1s ease-out 0.6s both;
}

.stat {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

.stat:hover::before {
    left: 100%;
}

.stat:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(99, 102, 241, 0.3);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.25rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
}

.stat:hover .stat-icon {
    transform: scale(1.1);
    animation: pulse-glow 1.5s ease infinite;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
    hyphens: none;
    word-wrap: normal;
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    animation: slideInUp 1s ease-out 0.4s both;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    border: none;
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn::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:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-white);
    box-shadow: var(--shadow-md);
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.4);
    animation: pulse-glow 2s ease infinite;
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.btn-secondary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(99, 102, 241, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
}

.btn-secondary:hover::after {
    opacity: 1;
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.2);
}

.btn-secondary:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-sm {
    padding: var(--space-sm) var(--space-md);
    font-size: 0.875rem;
}

.btn-lg {
    padding: var(--space-lg) var(--space-2xl);
    font-size: 1.125rem;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.dashboard-mockup {
    width: 450px;
    height: 350px;
    background: var(--bg-card);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    animation: float 6s ease-in-out infinite, slideInRight 1s ease-out 0.8s both;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dashboard-mockup:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    border-color: rgba(99, 102, 241, 0.3);
}

.mockup-header {
    background: var(--bg-secondary);
    padding: var(--space-md) var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    border-bottom: 1px solid var(--border-color);
}

.mockup-dots {
    display: flex;
    gap: var(--space-sm);
}

.mockup-dots span {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
    background: var(--text-light);
}

.mockup-dots span:nth-child(1) {
    background: #ff5f57;
}

.mockup-dots span:nth-child(2) {
    background: #ffbd2e;
}

.mockup-dots span:nth-child(3) {
    background: #28ca42;
}

.mockup-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.mockup-content {
    display: flex;
    height: calc(100% - 60px);
}

.mockup-sidebar {
    width: 140px;
    background: var(--bg-secondary);
    padding: var(--space-lg) var(--space-md);
    border-right: 1px solid var(--border-color);
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-xs);
    font-size: 0.875rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.sidebar-item:hover {
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-color);
}

.sidebar-item.active {
    background: var(--gradient-primary);
    color: var(--text-white);
}

.sidebar-item i {
    font-size: 1rem;
}

.mockup-main {
    flex: 1;
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.chart-container {
    display: flex;
    align-items: end;
    gap: var(--space-sm);
    height: 100px;
    padding: var(--space-md);
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
}

.chart-bar {
    flex: 1;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    min-height: 20px;
    animation: growUp 2s ease-out;
}

@keyframes growUp {
    from { height: 0; }
    to { height: var(--height, 50%); }
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.stat-card {
    background: var(--bg-secondary);
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    text-align: center;
}

.stat-card .stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.stat-card .stat-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: var(--space-xs);
    hyphens: none;
    word-wrap: normal;
}

.floating-card {
    position: absolute;
    background: var(--bg-card);
    padding: var(--space-lg);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    animation: float 6s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.floating-card:hover {
    transform: scale(1.1) translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(99, 102, 241, 0.3);
    animation: pulse-glow 2s ease infinite;
}

.floating-card i {
    font-size: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-card:hover i {
    transform: scale(1.2);
    animation: pulse-glow 1.5s ease infinite;
}

.floating-card span {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.875rem;
}

.card-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
    animation: float 6s ease-in-out infinite, slideInLeft 1s ease-out 1s both;
}

.card-2 {
    top: 5%;
    right: 10%;
    animation-delay: 1.5s;
    animation: float 6s ease-in-out infinite, slideInRight 1s ease-out 1.2s both;
}

.card-3 {
    bottom: 20%;
    left: 10%;
    animation: float 6s ease-in-out infinite, slideInLeft 1s ease-out 1.4s both;
    animation-delay: 3s;
}

.card-4 {
    bottom: 15%;
    right: 5%;
    animation-delay: 4.5s;
    animation: float 6s ease-in-out infinite, slideInRight 1s ease-out 1.6s both;
}

/* Section Styles */
section {
    padding: var(--space-lg) 0;
    animation: slideInUp 1s ease-out;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-lg);
    animation: slideInUp 1s ease-out 0.2s both;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: var(--space-lg);
    color: var(--text-primary);
    line-height: 1.2;
    word-spacing: -0.1em;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    animation: slideInUp 1s ease-out 0.4s both;
}

/* Features Section - Modern Grid Layout */
.features {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

/* Features Section Specific Styles */
.features .section-header h2 {
    color: var(--text-primary);
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features .section-header p {
    color: var(--text-secondary);
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(245, 158, 11, 0.06) 0%, transparent 50%);
    animation: backgroundShift 20s ease-in-out infinite;
}

.features::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 48%, rgba(99, 102, 241, 0.02) 50%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(16, 185, 129, 0.02) 50%, transparent 52%);
    background-size: 60px 60px;
    pointer-events: none;
}

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

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-color);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--space-lg);
    border: 1px solid rgba(99, 102, 241, 0.2);
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: fit-content;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.section-badge:hover {
    background: rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.3);
}

.section-badge i {
    font-size: 1rem;
}

/* Modern Grid Layout */
.features-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: var(--space-xs);
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    animation: slideInUp 1s ease-out 0.6s both;
}

/* Card Sizes */
.feature-card-large {
    grid-column: span 6;
    grid-row: span 1;
    min-height: 450px;
}

.feature-card-medium {
    grid-column: span 3;
    grid-row: span 1;
    min-height: 400px;
}

/* Modern Card Design */
.feature-card {
    background: #ffffff;
    backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 200px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.03) 0%, rgba(16, 185, 129, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Card Background Pattern */
.card-background {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    right: var(--space-md);
    bottom: var(--space-md);
    opacity: 0.05;
    z-index: 0;
    border-radius: 16px;
}

.card-pattern {
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, transparent 40%, rgba(99, 102, 241, 0.1) 50%, transparent 60%),
        linear-gradient(-45deg, transparent 40%, rgba(16, 185, 129, 0.1) 50%, transparent 60%);
    background-size: 20px 20px;
    animation: patternMove 20s linear infinite;
}

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

.card-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: var(--space-md);
    justify-content: center;
    gap: var(--space-xs);
}

/* Icon Design */
.feature-icon {
    margin-bottom: var(--space-xs);
}

.icon-wrapper {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #10b981 0%, #6366f1 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.feature-card:hover .icon-wrapper {
    transform: scale(1.05);
}

.icon-wrapper::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: var(--radius-xl);
    z-index: -1;
    opacity: 0.3;
    animation: iconGlow 3s ease-in-out infinite;
}

@keyframes iconGlow {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.1; }
}

.icon-wrapper i {
    font-size: 1.5rem;
    color: var(--text-white);
}

/* Typography */
.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 var(--space-sm) 0;
    line-height: 1.2;
}

.feature-card p {
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Feature Stats */
.feature-stats {
    display: flex;
    gap: var(--space-sm);
    margin: 0;
    justify-content: space-between;
    max-width: 100%;
    padding: 0;
    flex-shrink: 0;
}

.feature-stats .stat {
    text-align: center;
    flex: 1;
    min-width: 120px;
    padding: var(--space-xs);
    background: rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-stats .stat:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

.feature-stats .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.feature-stats .stat-label {
    font-size: 0.7rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.2px;
    line-height: 1.2;
    word-wrap: normal;
    hyphens: none;
    white-space: normal;
    display: block;
    max-width: 100%;
    text-align: center;
    font-weight: 600;
}

/* Feature Tags */
.feature-tags {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    margin-top: auto;
}

.tag {
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-color);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

/* Progress Bar */
.feature-progress {
    margin-top: auto;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: var(--space-sm);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: var(--radius-full);
    transition: width 2s ease-out;
    animation: progressFill 2s ease-out;
}

@keyframes progressFill {
    from { width: 0; }
}

.progress-text {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* Feature Badges */
.feature-badges {
    display: flex;
    gap: var(--space-sm);
    margin-top: auto;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}

.badge {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent-color);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(16, 185, 129, 0.2);
    white-space: nowrap;
    min-width: fit-content;
    flex-shrink: 0;
}

.badge i {
    font-size: 0.75rem;
}

/* Feature List */
.feature-list {
    margin-top: auto;
}

.list-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.list-item i {
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Feature Chart */
.feature-chart {
    margin-top: auto;
}

.chart-mini {
    display: flex;
    align-items: end;
    gap: 4px;
    height: 40px;
}

.chart-mini .chart-bar {
    flex: 1;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px 2px 0 0;
    min-height: 8px;
    animation: chartGrow 2s ease-out;
}

@keyframes chartGrow {
    from { height: 0; }
}

/* Architecture Section - Interactive Flow */
.architecture {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.architecture::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.architecture .section-header {
    color: white;
    text-align: center;
}

.architecture .section-header h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: var(--space-lg);
    line-height: 1.2;
    word-spacing: -0.1em;
}

.architecture .section-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.architecture .section-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.architecture .section-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
}

.architecture-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.architecture-flow {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    align-items: center;
    animation: slideInUp 1s ease-out 0.6s both;
}

.flow-step {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-2xl);
    padding: var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    width: 100%;
    max-width: 800px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

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

.flow-step:hover::before {
    left: 100%;
}

.flow-step:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    border-color: rgba(99, 102, 241, 0.2);
}

.step-visual {
    position: relative;
    flex-shrink: 0;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background-size: 200% 200%;
    animation: gradient-shift 4s ease infinite;
}

.flow-step:hover .step-icon {
    transform: scale(1.1);
    animation: pulse-glow 2s ease infinite;
    z-index: 2;
}

.step-pulse {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: var(--radius-xl);
    opacity: 0.3;
    animation: pulse 2s ease-in-out infinite;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.step-content p {
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.step-details {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.detail-tag {
    background: rgba(102, 126, 234, 0.1);
    color: var(--primary-color);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.processing-levels {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.level {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.level-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    min-width: 50px;
}

.level-bar {
    flex: 1;
    height: 8px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.level-fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: var(--radius-full);
    transition: width 2s ease-out;
    animation: levelFill 2s ease-out;
}

@keyframes levelFill {
    from { width: 0; }
}

.db-stats {
    display: flex;
    gap: var(--space-lg);
}

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

.db-stat .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.db-stat .stat-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: var(--space-xs);
    hyphens: none;
    word-wrap: normal;
}

.management-features,
.store-features {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.feature-item,
.store-feature {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    background: rgba(102, 126, 234, 0.1);
    color: var(--primary-color);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.feature-item i,
.store-feature i {
    font-size: 0.75rem;
}

/* Flow connectors removed */

/* Benefits Section - Elegant Design */
.benefits {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.08) 0%, transparent 50%);
}

.benefits-elegant {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--space-lg);
    position: relative;
    z-index: 1;
    animation: slideInUp 1s ease-out 0.8s both;
    max-width: 1400px;
    margin: 0 auto;
}

/* Elegant Benefit Cards */
.benefit-elegant {
    background: #ffffff;
    backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 200px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.benefit-elegant::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.03) 0%, rgba(16, 185, 129, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-elegant:hover::before {
    opacity: 1;
}

.benefit-elegant:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Elegant Header */
.benefit-header-elegant {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    position: relative;
    z-index: 1;
}

.benefit-icon-elegant {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #10b981 0%, #6366f1 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.benefit-elegant:hover .benefit-icon-elegant {
    transform: scale(1.05);
}

.benefit-title-elegant {
    flex: 1;
    min-width: 0;
}

.benefit-title-elegant h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 var(--space-sm) 0;
    line-height: 1.2;
}

.benefit-tag {
    display: inline-block;
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent-color);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(16, 185, 129, 0.2);
    white-space: nowrap;
}

.benefit-stat-elegant {
    text-align: right;
    flex-shrink: 0;
}

.stat-number-elegant {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label-elegant {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: lowercase;
    font-weight: 500;
    white-space: nowrap;
}

/* Elegant Features */
.benefit-features-elegant {
    position: relative;
    z-index: 1;
}

.feature-elegant {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
    padding: var(--space-sm) 0;
    transition: all 0.2s ease;
}

.feature-elegant:last-child {
    margin-bottom: 0;
}

.feature-elegant:hover {
    transform: translateX(4px);
}

.feature-elegant i {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1rem;
    flex-shrink: 0;
}

.feature-elegant span {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.4;
    font-weight: 500;
}

/* Feature description after stats */
.feature-card .card-content p {
    margin-top: var(--space-lg);
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    text-align: center;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-2xl);
    padding: var(--space-lg);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(99, 102, 241, 0.08) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.benefit-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
    transition: left 0.6s ease;
}

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

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

.benefit-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    border-color: rgba(99, 102, 241, 0.3);
}

.benefit-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    position: relative;
    z-index: 1;
    padding-bottom: var(--space-md);
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981 0%, #6366f1 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background-size: 200% 200%;
    animation: gradient-shift 4s ease infinite;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
    animation: pulse-glow 2s ease infinite;
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.5);
}

.benefit-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
}

.benefit-badge {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(99, 102, 241, 0.15) 100%);
    color: var(--accent-color);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(16, 185, 129, 0.3);
    margin-left: auto;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
    white-space: nowrap;
    min-width: fit-content;
    flex-shrink: 0;
}

.benefit-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);
    transition: left 0.5s ease;
}

.benefit-badge:hover::before {
    left: 100%;
}

.benefit-badge:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    border-color: rgba(16, 185, 129, 0.5);
}

.benefit-content {
    margin-bottom: var(--space-lg);
    position: relative;
    z-index: 1;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
    padding: var(--space-sm);
    border-radius: var(--radius-lg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.05), transparent);
    transition: left 0.5s ease;
}

.benefit-item:hover::before {
    left: 100%;
}

.benefit-item:hover {
    background: rgba(99, 102, 241, 0.05);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.1);
}

.benefit-item:last-child {
    margin-bottom: 0;
}

.item-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(16, 185, 129, 0.15) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1rem;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.1);
}

.benefit-item:hover .item-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(16, 185, 129, 0.2) 100%);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.2);
}

.item-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 var(--space-xs) 0;
    transition: all 0.3s ease;
}

.benefit-item:hover .item-content h4 {
    color: var(--primary-color);
    transform: translateX(2px);
}

.item-content p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
    transition: all 0.3s ease;
}

.benefit-item:hover .item-content p {
    color: var(--text-primary);
    transform: translateX(2px);
}

.benefit-stats {
    position: relative;
    z-index: 1;
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(99, 102, 241, 0.1);
}

.benefit-stats .stat {
    text-align: center;
    padding: var(--space-lg);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(16, 185, 129, 0.08) 100%);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(99, 102, 241, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.benefit-stats .stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
    transition: left 0.5s ease;
}

.benefit-stats .stat:hover::before {
    left: 100%;
}

.benefit-stats .stat:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.3);
}

.benefit-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.benefit-stats .stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    transition: all 0.3s ease;
    hyphens: none;
    word-wrap: normal;
}

.benefit-stats .stat:hover .stat-label {
    color: var(--primary-color);
}

/* Technology Stack - Modern Design */
.tech-stack {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    position: relative;
}

.tech-stack::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
}

.tech-stack .section-header {
    color: white;
    text-align: center;
}

.tech-stack .section-header h2 {
    color: white;
    line-height: 1.2;
    word-spacing: -0.1em;
}

.tech-stack .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.tech-stack .section-badge {
    background: rgba(99, 102, 241, 0.2);
    color: white;
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.tech-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-lg);
    position: relative;
    z-index: 1;
    animation: slideInUp 1s ease-out 0.6s both;
}

.tech-category {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-2xl);
    padding: var(--space-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

.tech-category:hover::before {
    left: 100%;
}

.tech-category:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.tech-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.tech-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6366f1 0%, #10b981 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    color: white;
    font-size: 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background-size: 200% 200%;
    animation: gradient-shift 4s ease infinite;
}

.tech-category:hover .tech-icon {
    transform: scale(1.1);
    animation: pulse-glow 2s ease infinite;
}

.tech-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: white;
}

.tech-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.tech-items {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.tech-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

.tech-item:hover::before {
    left: 100%;
}

.tech-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.tech-logo {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tech-item:hover .tech-logo {
    transform: scale(1.1);
    background: rgba(99, 102, 241, 0.2);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.tech-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.tech-name {
    font-size: 1rem;
    font-weight: 600;
    color: white;
}

.tech-desc {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Contact Section - Beautiful Form */
.contact {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
}

.contact-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
    animation: slideInUp 1s ease-out 0.6s both;
}

.contact-card {
    background: #ffffff;
    backdrop-filter: blur(20px);
    border-radius: var(--radius-2xl);
    padding: var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

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

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

.contact-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background: #ffffff;
    border-color: rgba(99, 102, 241, 0.2);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6366f1 0%, #10b981 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
    animation: pulse-glow 2s ease infinite;
}

.contact-details h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 var(--space-xs) 0;
    line-height: 1.3;
    white-space: nowrap;
}

.contact-details p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0 0 var(--space-xs) 0;
    line-height: 1.4;
}

.contact-label {
    font-size: 0.75rem;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-2xl);
    padding: var(--space-lg);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
    animation: slideInUp 1s ease-out 0.8s both;
}

.form-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.form-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 var(--space-sm) 0;
}

.form-header p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.form-group {
    position: relative;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: var(--space-md) var(--space-lg) var(--space-md) 3rem;
    border: 2px solid rgba(99, 102, 241, 0.1);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    position: relative;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1), 0 8px 25px rgba(99, 102, 241, 0.15);
    transform: translateY(-2px);
}

.form-group input:hover,
.form-group textarea:hover {
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-secondary);
    opacity: 0.7;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    padding-top: var(--space-md);
}

.input-icon {
    position: absolute;
    left: var(--space-md);
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 1rem;
    pointer-events: none;
    z-index: 1;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group input:focus + .input-icon,
.form-group textarea:focus + .input-icon {
    color: var(--primary-dark);
    transform: translateY(-50%) scale(1.1);
    animation: bounce 0.6s ease;
}

.form-group textarea + .input-icon {
    top: 2.5rem;
    transform: none;
}

.form-actions {
    text-align: center;
    margin-top: var(--space-lg);
}

.form-actions .btn {
    margin-bottom: var(--space-md);
}

.form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

.form-note i {
    color: var(--accent-color);
    font-size: 1rem;
}

/* Footer - Modern Design */
.footer {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: var(--space-lg);
    padding: var(--space-lg) 0;
    position: relative;
    z-index: 1;
    animation: slideInUp 1s ease-out 0.6s both;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

/* Company Info Section */
.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.footer-logo .logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6366f1 0%, #10b981 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background-size: 200% 200%;
    animation: gradient-shift 4s ease infinite;
}

.footer-logo:hover .logo-icon {
    transform: scale(1.1);
    animation: pulse-glow 2s ease infinite;
}

.footer-logo .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.footer-logo .logo-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
}

.footer-logo .logo-accent {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-contact .contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.footer-contact .contact-item i {
    color: var(--primary-color);
    width: 16px;
    text-align: center;
}

/* Footer Titles */
.footer-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin: 0 0 var(--space-md) 0;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #6366f1 0%, #10b981 100%);
    border-radius: 1px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links li {
    margin: 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: var(--space-sm);
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    padding-left: var(--space-md);
}

.footer-links a:hover::before {
    opacity: 1;
}

/* Social Links */
.footer-social {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1.25rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(99, 102, 241, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.social-link:hover::before {
    width: 100%;
    height: 100%;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    color: white;
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

/* Newsletter */
.newsletter {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter h4 {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin: 0 0 var(--space-sm) 0;
}

.newsletter p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin: 0 0 var(--space-md) 0;
    line-height: 1.4;
}

.newsletter-form {
    display: flex;
    gap: var(--space-sm);
}

.newsletter-form input {
    flex: 1;
    padding: var(--space-sm) var(--space-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-form button {
    padding: var(--space-sm) var(--space-md);
    background: linear-gradient(135deg, #6366f1 0%, #10b981 100%);
    border: none;
    border-radius: var(--radius-md);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-form button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--space-xl) 0;
    position: relative;
    z-index: 1;
    animation: slideInUp 1s ease-out 0.8s both;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-lg);
}

.footer-legal {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-legal p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

.legal-links {
    display: flex;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: var(--primary-color);
}

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

.footer-company p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    margin: 0;
}

/* Legal Pages Styles */
.legal-page {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    min-height: 100vh;
}

.legal-header {
    text-align: center;
    margin-bottom: 60px;
}

.legal-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #6366f1, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-date {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    font-weight: 400;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: slideInUp 1s ease-out 0.6s both;
}

.legal-section {
    margin-bottom: 40px;
    animation: slideInUp 1s ease-out 0.8s both;
}

.legal-section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(99, 102, 241, 0.3);
    animation: slideInLeft 1s ease-out 1s both;
}

.legal-section h3 {
    font-size: 1.4rem;
    font-weight: 500;
    color: #10b981;
    margin: 25px 0 15px;
    animation: slideInRight 1s ease-out 1.2s both;
}

.legal-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 1.1rem;
    animation: slideInUp 1s ease-out 1.4s both;
}

.legal-section ul {
    margin: 15px 0;
    padding-left: 20px;
    animation: slideInUp 1s ease-out 1.6s both;
}

.legal-section li {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 8px;
    font-size: 1.05rem;
    animation: slideInLeft 1s ease-out 1.8s both;
}

.legal-section li::marker {
    color: #6366f1;
    animation: pulse-glow 2s ease infinite;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: var(--space-xs);
    }
    
    .feature-card-large {
        grid-column: span 3;
        min-height: 400px;
    }
    
    .feature-card-medium {
        grid-column: span 3;
        min-height: 350px;
    }
}

@media (max-width: 1024px) {
    /* Tablet adjustments */
    .hero-badge,
    .section-badge {
        font-size: 0.85rem;
        padding: var(--space-sm) var(--space-md);
    }
    
    .benefit-badge {
        font-size: 0.75rem;
        padding: var(--space-xs) var(--space-sm);
    }
    
    .badge {
        font-size: 0.7rem;
        padding: var(--space-xs) var(--space-sm);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        width: 100%;
        height: calc(100vh - 80px);
        text-align: center;
        transition: 0.3s ease-in-out;
        box-shadow: var(--shadow-lg);
        padding: var(--space-xl) 0;
        backdrop-filter: blur(20px);
        z-index: 1000;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        display: block;
        padding: var(--space-lg) var(--space-xl);
        margin: var(--space-sm) var(--space-lg);
        border-radius: var(--radius-lg);
        font-size: 1.1rem;
        font-weight: 500;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover {
        background: rgba(99, 102, 241, 0.1);
        transform: translateX(5px);
    }
    
    /* Ensure proper centering */
    .container {
        padding: 0 var(--space-md);
        text-align: center;
    }
    
    /* Reduce icon sizes for mobile */
    .feature-icon .icon-wrapper {
        width: 40px;
        height: 40px;
    }
    
    .feature-icon .icon-wrapper i {
        font-size: 1.2rem;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
    }
    
    .step-icon i {
        font-size: 1.5rem;
    }
    
    .tech-icon {
        width: 60px;
        height: 60px;
    }
    
    .tech-icon i {
        font-size: 1.5rem;
    }
    
    .benefit-icon-elegant {
        width: 50px;
        height: 50px;
    }
    
    .benefit-icon-elegant i {
        font-size: 1.3rem;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-icon i {
        font-size: 1.3rem;
    }
    
    .nav-container {
        padding: 0 var(--space-md);
    }
    
    /* Mobile Badges */
    .hero-badge,
    .section-badge {
        font-size: 0.8rem;
        padding: var(--space-xs) var(--space-md);
        margin-bottom: var(--space-md);
    }
    
    .benefit-badge {
        font-size: 0.75rem;
        padding: var(--space-xs) var(--space-sm);
        margin-left: 0;
        margin-top: var(--space-sm);
    }
    
    .badge {
        font-size: 0.7rem;
        padding: var(--space-xs) var(--space-xs);
    }
    
    .feature-badges {
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--space-xs);
    }
    
    .nav-cta {
        display: none;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-lg);
        padding: 0 var(--space-md);
    }
    
    .hero-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .hero-description {
        text-align: center;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: var(--space-md);
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
        align-items: center;
    }
    
    .hero-badge {
        margin: 0 auto;
        text-align: center;
    }
    
    .dashboard-mockup {
        width: 350px;
        height: 280px;
    }
    
    /* Mobile Features Grid */
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xs);
    }
    
    .feature-card-large,
    .feature-card-medium {
        grid-column: span 1;
        min-height: 350px;
    }
    
    .feature-card {
        padding: var(--space-lg);
        min-height: 180px;
    }
    
    .feature-stats {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .feature-stats .stat {
        padding: var(--space-xs);
        min-width: 100px;
    }
    
    .icon-wrapper {
        width: 48px;
        height: 48px;
    }
    
    .feature-stats .stat-number {
        font-size: 1.2rem;
    }
    
    .feature-stats .stat-label {
        font-size: 0.8rem;
        line-height: 1.4;
        white-space: normal;
        hyphens: none;
        word-wrap: normal;
    }
    
    .feature-tags {
        justify-content: center;
    }
    
    .feature-badges {
        justify-content: center;
    }
    
    .floating-card {
        display: none;
    }
    
    /* Mobile Architecture */
    .architecture-flow {
        gap: var(--space-lg);
    }
    
    .flow-step {
        flex-direction: column;
        text-align: center;
        padding: var(--space-lg);
    }
    
    .step-visual {
        margin-bottom: var(--space-md);
    }
    
    /* Flow connectors removed */
    
    /* Mobile Benefits */
    .benefits-elegant {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .benefit-elegant {
        padding: var(--space-xl);
        min-height: 180px;
    }
    
    .benefit-header-elegant {
        flex-direction: column;
        text-align: center;
        gap: var(--space-sm);
    }
    
    .benefit-stat-elegant {
        text-align: center;
        margin-top: var(--space-sm);
    }
    
    .benefit-title-elegant h3 {
        font-size: 1.1rem;
    }
    
    .benefit-tag {
        font-size: 0.7rem;
        padding: var(--space-xs) var(--space-sm);
    }
    
    .stat-number-elegant {
        font-size: 1.8rem;
    }
    
    .stat-label-elegant {
        font-size: 0.7rem;
    }
    
    .feature-elegant span {
        font-size: 0.85rem;
    }
    
    .feature-elegant i {
        width: 20px;
        height: 20px;
        font-size: 0.9rem;
    }
    
    /* Mobile Tech Stack */
    .tech-container {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .tech-category {
        padding: var(--space-lg);
    }
    
    /* Mobile Contact Form */
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
        margin-bottom: var(--space-xl);
    }
    
    .contact-card {
        padding: var(--space-xl);
        flex-direction: column;
        text-align: center;
        gap: var(--space-md);
    }
    
    .contact-details h3 {
        white-space: normal;
        font-size: 1.1rem;
    }
    
    .contact-form-container {
        padding: var(--space-lg);
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .form-header h3 {
        font-size: 1.5rem;
    }
    
    /* Mobile Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        padding: var(--space-xl) 0;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: var(--space-md);
    }
    
    .footer-company {
        text-align: center;
    }
    
    .legal-links {
        justify-content: center;
    }
    
    /* Legal pages responsive */
    .legal-page {
        padding: 100px 0 40px;
    }
    
    .legal-header h1 {
        font-size: 2.2rem;
    }
    
    .legal-content {
        padding: 30px 20px;
        margin: 0 20px;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
    
    .legal-section h3 {
        font-size: 1.2rem;
    }
    
    .legal-section p,
    .legal-section li {
        font-size: 1rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form button {
        width: 100%;
    }
    
    /* Reduce animations on mobile for performance */
    .liquid-morph,
    .holographic,
    .neural-dots::before,
    .neural-dots::after,
    .cyber-grid::before,
    .particles::before,
    .morph-gradient,
    .liquid-button,
    .float-random,
    .neon-glow {
        animation-duration: 2s;
    }
    
    /* Simplify effects on mobile */
    .glass-effect,
    .glass-effect-dark {
        backdrop-filter: blur(5px);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-sm);
        text-align: center;
    }
    
    /* Even smaller icons for very small screens */
    .feature-icon .icon-wrapper {
        width: 35px;
        height: 35px;
    }
    
    .feature-icon .icon-wrapper i {
        font-size: 1rem;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
    }
    
    .step-icon i {
        font-size: 1.2rem;
    }
    
    .tech-icon {
        width: 50px;
        height: 50px;
    }
    
    .tech-icon i {
        font-size: 1.2rem;
    }
    
    .benefit-icon-elegant {
        width: 40px;
        height: 40px;
    }
    
    .benefit-icon-elegant i {
        font-size: 1.1rem;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
    }
    
    .contact-icon i {
        font-size: 1.1rem;
    }
    
    /* Improve mobile menu for small screens */
    .nav-menu {
        height: calc(100vh - 70px);
        top: 70px;
    }
    
    .nav-link {
        padding: var(--space-md) var(--space-lg);
        font-size: 1rem;
    }
    
    .nav-container {
        padding: 0 var(--space-sm);
    }
    
    .hero-container {
        padding: 0 var(--space-sm);
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .hero-description {
        font-size: 1rem;
        text-align: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
        text-align: center;
    }
    
    .feature-card {
        padding: var(--space-lg);
        min-height: 160px;
        text-align: center;
    }
    
    /* Center buttons on mobile */
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: var(--space-sm);
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: var(--space-sm) var(--space-lg);
        font-size: 0.9rem;
    }
    
    /* Extra Small Mobile Badges */
    .hero-badge,
    .section-badge {
        font-size: 0.75rem;
        padding: var(--space-xs) var(--space-sm);
        margin-bottom: var(--space-sm);
    }
    
    .benefit-badge {
        font-size: 0.7rem;
        padding: var(--space-xs) var(--space-xs);
        margin-left: 0;
        margin-top: var(--space-xs);
    }
    
    .badge {
        font-size: 0.65rem;
        padding: 2px var(--space-xs);
    }
    
    .feature-badges {
        gap: 4px;
    }
    
    /* Mobile Text Adjustments */
    .section-header p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .benefit-header h3 {
        font-size: 1.1rem;
    }
    
    /* Extra Small Mobile Benefits */
    .benefit-elegant {
        padding: var(--space-lg);
        min-height: 160px;
    }
    
    .benefit-icon-elegant {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }
    
    .benefit-title-elegant h3 {
        font-size: 1rem;
    }
    
    .benefit-tag {
        font-size: 0.65rem;
        padding: var(--space-xs) var(--space-sm);
    }
    
    .stat-number-elegant {
        font-size: 1.6rem;
    }
    
    .stat-label-elegant {
        font-size: 0.65rem;
    }
    
    .feature-elegant {
        margin-bottom: var(--space-sm);
    }
    
    .feature-elegant i {
        width: 20px;
        height: 20px;
        font-size: 0.8rem;
    }
    
    .feature-elegant span {
        font-size: 0.8rem;
    }
    
    /* Extra Small Contact Cards */
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }
    
    .contact-card {
        padding: var(--space-lg);
    }
    
    .contact-details h3 {
        font-size: 1rem;
    }
    
    /* Extra Small Feature Stats */
    .feature-stats .stat {
        padding: var(--space-xs);
        min-width: 90px;
    }
    
    .icon-wrapper {
        width: 44px;
        height: 44px;
    }
    
    .feature-stats .stat-number {
        font-size: 1.1rem;
    }
    
    .feature-stats .stat-label {
        font-size: 0.75rem;
    }
    
    /* Further reduce animations on small screens */
    .liquid-morph,
    .holographic,
    .morph-gradient,
    .liquid-button,
    .float-random,
    .neon-glow {
        animation-duration: 1.5s;
    }
    
    /* Simplify effects on small screens */
    .glass-effect,
    .glass-effect-dark {
        backdrop-filter: blur(3px);
    }
    
    /* Reduce particle complexity */
    .particles::before {
        background-size: 80px 60px;
    }
    
    /* Optimize hover states */
    .magnetic:hover,
    .interactive-hover:hover {
        transform: translateY(-1px) scale(1.005);
    }
    
    /* Reduce shadow complexity */
    .card-shadow-modern:hover {
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
}

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

/* ===== MODERN INNOVATIVE EFFECTS ===== */

/* Glassmorphism Effects */
.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.glass-effect-dark {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Liquid Morphing */
@keyframes liquid-morph {
    0%, 100% { 
        border-radius: 50% 40% 60% 30%;
        transform: scale(1);
    }
    25% { 
        border-radius: 40% 60% 30% 50%;
        transform: scale(1.05);
    }
    50% { 
        border-radius: 60% 30% 50% 40%;
        transform: scale(1.1);
    }
    75% { 
        border-radius: 30% 50% 40% 60%;
        transform: scale(1.05);
    }
}

.liquid-morph {
    animation: liquid-morph 8s ease-in-out infinite;
}

/* Holographic Effect */
@keyframes holographic {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.holographic {
    background: linear-gradient(45deg, 
        #ff006e, #8338ec, #3a86ff, #06ffa5, #ffbe0b, #fb5607);
    background-size: 300% 300%;
    animation: holographic 3s ease infinite;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Neural Network Animation */
@keyframes neural-pulse {
    0%, 100% { 
        opacity: 0.3;
        transform: scale(1);
    }
    50% { 
        opacity: 1;
        transform: scale(1.2);
    }
}

.neural-dots {
    position: relative;
}

.neural-dots::before,
.neural-dots::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: neural-pulse 2s ease-in-out infinite;
}

.neural-dots::before {
    top: -10px;
    left: -10px;
    animation-delay: 0s;
}

.neural-dots::after {
    bottom: -10px;
    right: -10px;
    animation-delay: 1s;
}

/* Cyber Grid Background */
@keyframes cyber-grid {
    0% { transform: translate(0, 0); }
    100% { transform: translate(20px, 20px); }
}

.cyber-grid {
    position: relative;
    overflow: hidden;
}

.cyber-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(99, 102, 241, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    animation: cyber-grid 20s linear infinite;
    pointer-events: none;
}

/* Magnetic Hover Effect */
.magnetic {
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.320, 1);
}

.magnetic:hover {
    transform: translate3d(var(--mouse-x, 0), var(--mouse-y, 0), 0) scale(1.05);
}

/* Particle System */
@keyframes particle-float {
    0%, 100% { 
        transform: translateY(0);
        opacity: 0.7;
    }
    50% { 
        transform: translateY(-20px);
        opacity: 1;
    }
}

.particles {
    position: relative;
}

.particles::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(99, 102, 241, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(168, 85, 247, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(236, 72, 153, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(34, 197, 94, 0.3), transparent);
    background-repeat: repeat;
    background-size: 150px 100px;
    animation: particle-float 6s ease-in-out infinite;
    pointer-events: none;
}

/* Glitch Effect */
@keyframes glitch {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}

.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    animation: glitch 0.3s infinite;
    color: #ff006e;
    z-index: -1;
}

.glitch::after {
    animation: glitch 0.3s infinite reverse;
    color: #00ff88;
    z-index: -2;
}

/* Morphing Gradient */
@keyframes morph-gradient {
    0% { 
        background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
    }
    25% { 
        background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    }
    50% { 
        background: linear-gradient(225deg, #4facfe 0%, #00f2fe 100%);
    }
    75% { 
        background: linear-gradient(315deg, #43e97b 0%, #38f9d7 100%);
    }
    100% { 
        background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
    }
}

.morph-gradient {
    animation: morph-gradient 8s ease infinite;
    background-size: 400% 400%;
}

/* Liquid Button */
@keyframes liquid-button {
    0% { border-radius: 50px; }
    25% { border-radius: 60px 40px 60px 40px; }
    50% { border-radius: 40px 60px 40px 60px; }
    75% { border-radius: 60px 40px 60px 40px; }
    100% { border-radius: 50px; }
}

.liquid-button {
    position: relative;
    overflow: hidden;
    animation: liquid-button 4s ease-in-out infinite;
}

.liquid-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 2s infinite;
}

/* Floating Elements */
@keyframes float-random {
    0%, 100% { transform: translateY(0px); }
    33% { transform: translateY(-15px); }
    66% { transform: translateY(-5px); }
}

.float-random {
    animation: float-random 6s ease-in-out infinite;
}

/* Hover Glow Enhancement */
@keyframes hover-glow {
    0% { 
        box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
        filter: brightness(1);
    }
    50% { 
        box-shadow: 0 0 40px rgba(99, 102, 241, 0.6);
        filter: brightness(1.1);
    }
    100% { 
        box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
        filter: brightness(1);
    }
}

.hover-glow:hover {
    animation: hover-glow 2s ease-in-out infinite;
}

/* Text Reveal Animation */
@keyframes text-reveal {
    0% { 
        clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
    }
    100% { 
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    }
}

.text-reveal {
    animation: text-reveal 1s ease-out forwards;
}

/* Matrix Rain Effect */
@keyframes matrix-rain {
    0% { transform: translateY(-100vh); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(100vh); opacity: 0; }
}

.matrix-rain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.matrix-rain::before {
    content: '01010101 10101010 01010101 10101010';
    position: absolute;
    top: -100vh;
    left: 0;
    width: 100%;
    height: 200vh;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    color: rgba(0, 255, 0, 0.1);
    line-height: 1.2;
    animation: matrix-rain 20s linear infinite;
}

/* 3D Flip Card */
.flip-card {
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: scale(1.05);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
}

.flip-card-back {
    transform: scale(1);
}

/* Interactive Cursor Trail */
.cursor-trail {
    position: fixed;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.8) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
}

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    z-index: 1000;
    transition: width 0.1s ease;
}

/* Parallax Layers */
.parallax-layer-1 { transform: translateZ(0px); }
.parallax-layer-2 { transform: translateZ(-1px); }
.parallax-layer-3 { transform: translateZ(-2px); }
.parallax-layer-4 { transform: translateZ(-3px); }

/* Neon Glow Text */
@keyframes neon-flicker {
    0%, 100% { 
        text-shadow: 
            0 0 5px #fff,
            0 0 10px #fff,
            0 0 15px #667eea,
            0 0 20px #667eea,
            0 0 35px #667eea,
            0 0 40px #667eea;
    }
    50% { 
        text-shadow: 
            0 0 2px #fff,
            0 0 5px #fff,
            0 0 8px #667eea,
            0 0 12px #667eea,
            0 0 18px #667eea,
            0 0 22px #667eea;
    }
}

.neon-glow {
    animation: neon-flicker 2s ease-in-out infinite alternate;
}

/* Loading Skeleton */
@keyframes skeleton-loading {
    0% { background-position: -200px 0; }
    100% { background-position: calc(200px + 100%) 0; }
}

.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200px 100%;
    animation: skeleton-loading 1.5s infinite;
}

/* Interactive Hover States */
.interactive-hover {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.interactive-hover:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Modern Card Shadows */
.card-shadow-modern {
    box-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.12),
        0 1px 2px rgba(0, 0, 0, 0.24);
    transition: box-shadow 0.3s ease;
}

.card-shadow-modern:hover {
    box-shadow: 
        0 14px 28px rgba(0, 0, 0, 0.25),
        0 10px 10px rgba(0, 0, 0, 0.22);
}

/* Gradient Border Animation */
@keyframes gradient-border {
    0% { border-color: #667eea; }
    25% { border-color: #f093fb; }
    50% { border-color: #4facfe; }
    75% { border-color: #43e97b; }
    100% { border-color: #667eea; }
}

.gradient-border {
    border: 2px solid;
    animation: gradient-border 3s linear infinite;
}

/* ===== MOBILE OPTIMIZATIONS ===== */



/* ===== ACCESSIBILITY ===== */

@media (prefers-reduced-motion: reduce) {
    /* Disable all animations for users who prefer reduced motion */
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ===== PERFORMANCE OPTIMIZATIONS ===== */

/* GPU acceleration for smooth animations */
.gpu-accelerated {
    transform: translateZ(0);
    will-change: transform;
}

/* Optimize repaints */
.will-change-transform {
    will-change: transform;
}

.will-change-opacity {
    will-change: opacity;
}

/* ===== MODERN UTILITIES ===== */

/* Aspect ratio utilities */
.aspect-16-9 { aspect-ratio: 16 / 9; }
.aspect-4-3 { aspect-ratio: 4 / 3; }
.aspect-1-1 { aspect-ratio: 1 / 1; }
.aspect-3-2 { aspect-ratio: 3 / 2; }

/* Container queries support */
@container (min-width: 300px) {
    .container-responsive {
        font-size: 1.1rem;
    }
}

/* Modern focus styles */
.focus-visible:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .auto-dark {
        background: #1a1a1a;
        color: #ffffff;
    }
}

/* Prevent word hyphenation globally */
* {
    hyphens: none;
    word-wrap: normal;
}

/* Loading animations */
.loading {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
    animation: slideInUp 1s ease-out;
}

/* Enhanced Loading States */
.loading-shimmer {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

.loading-pulse {
    animation: pulse-glow 2s ease infinite;
}

.loading-bounce {
    animation: bounce 1s ease infinite;
}

.loading-rotate {
    animation: rotate 2s linear infinite;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
}

/* Enhanced scrollbar for dark sections */
.dark-section ::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

.dark-section ::-webkit-scrollbar-thumb {
    background: rgba(99, 102, 241, 0.8);
}

.dark-section ::-webkit-scrollbar-thumb:hover {
    background: rgba(99, 102, 241, 1);
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.8);
}

/* Enhanced text selection */
::selection {
    background: rgba(99, 102, 241, 0.3);
    color: var(--text-primary);
}

::-moz-selection {
    background: rgba(99, 102, 241, 0.3);
    color: var(--text-primary);
}

/* Enhanced focus states */
*:focus {
    outline: 2px solid rgba(99, 102, 241, 0.5);
    outline-offset: 2px;
}

/* Enhanced hover states for interactive elements */
.interactive:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced active states */
.interactive:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Enhanced disabled states */
.interactive:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Enhanced parallax effects */
.parallax {
    transform: translateZ(0);
    will-change: transform;
}

.parallax-slow {
    transform: translateY(var(--parallax-offset, 0));
    transition: transform 0.1s ease-out;
}

.parallax-fast {
    transform: translateY(calc(var(--parallax-offset, 0) * 0.5));
    transition: transform 0.1s ease-out;
}

/* Enhanced 3D transforms */
.transform-3d {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.transform-3d:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* Enhanced glassmorphism */
.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.glass:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Enhanced neumorphism */
.neumorphism {
    background: var(--bg-primary);
    box-shadow: 
        20px 20px 60px #d1d9e6,
        -20px -20px 60px #ffffff;
    border-radius: var(--radius-xl);
}

.neumorphism:hover {
    box-shadow: 
        25px 25px 70px #d1d9e6,
        -25px -25px 70px #ffffff;
    transform: translateY(-2px);
}

/* Enhanced morphing */
.morphing {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.morphing:hover {
    border-radius: var(--radius-2xl);
    transform: scale(1.02);
}

/* Enhanced glow effects */
.glow {
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
    transition: box-shadow 0.3s ease;
}

.glow:hover {
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.6);
}

/* Enhanced ripple effect */
.ripple {
    position: relative;
    overflow: hidden;
}

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

.ripple:active::before {
    width: 300px;
    height: 300px;
}

/* Enhanced reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

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

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

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

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

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

.reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

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

.reveal-rotate.revealed {
    opacity: 1;
    transform: scale(1);
}

/* Enhanced stagger animations */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }
.stagger-6 { animation-delay: 0.6s; }
.stagger-7 { animation-delay: 0.7s; }
.stagger-8 { animation-delay: 0.8s; }
.stagger-9 { animation-delay: 0.9s; }
.stagger-10 { animation-delay: 1.0s; }

/* Enhanced typing animation */
.typing {
    overflow: hidden;
    border-right: 2px solid var(--primary-color);
    white-space: nowrap;
    animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: var(--primary-color); }
}

/* Enhanced pulse animation */
.pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

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

/* Enhanced bounce animation */
.bounce {
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transform: translate3d(0,0,0);
    }
    40%, 43% {
        animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        transform: translate3d(0, -30px, 0);
    }
    70% {
        animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        transform: translate3d(0, -15px, 0);
    }
    90% {
        transform: translate3d(0,-4px,0);
    }
}

/* Enhanced shake animation */
.shake {
    animation: shake 0.82s cubic-bezier(.36,.07,.19,.97) both;
}

@keyframes shake {
    10%, 90% { transform: translate3d(-1px, 0, 0); }
    20%, 80% { transform: translate3d(2px, 0, 0); }
    30%, 50%, 70% { transform: translate3d(-4px, 0, 0); }
    40%, 60% { transform: translate3d(4px, 0, 0); }
}

/* Enhanced wobble animation */
.wobble {
    animation: wobble 1s ease-in-out;
}

@keyframes wobble {
    0% { transform: translateX(0%); }
    15% { transform: translateX(-25%); }
    30% { transform: translateX(20%); }
    45% { transform: translateX(-15%); }
    60% { transform: translateX(10%); }
    75% { transform: translateX(-5%); }
    100% { transform: translateX(0%); }
}

/* Enhanced flip animations */
.flip {
    animation: flip 0.6s ease-in-out;
}

@keyframes flip {
    0% { transform: perspective(400px) scale(1); }
    40% { transform: perspective(400px) scale(0.8); }
    60% { transform: perspective(400px) scale(0.8); }
    100% { transform: perspective(400px) scale(1); }
}

/* Enhanced zoom animations */
.zoom-in {
    animation: zoomIn 0.6s ease-out;
}

@keyframes zoomIn {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

.zoom-out {
    animation: zoomOut 0.6s ease-out;
}

@keyframes zoomOut {
    0% { transform: scale(1); }
    100% { transform: scale(0); }
}

/* Enhanced slide animations */
.slide-in-up {
    animation: slideInUp 0.6s ease-out;
}

.slide-in-down {
    animation: slideInDown 0.6s ease-out;
}

@keyframes slideInDown {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(0); }
}

.slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.6s ease-out;
}

/* Enhanced fade animations */
.fade-in {
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.fade-out {
    animation: fadeOut 0.6s ease-out;
}

@keyframes fadeOut {
    0% { opacity: 1; }
    100% { opacity: 0; }
}

/* Enhanced scale animations */
.scale-in {
    animation: scaleIn 0.6s ease-out;
}

@keyframes scaleIn {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

.scale-out {
    animation: scaleOut 0.6s ease-out;
}

@keyframes scaleOut {
    0% { transform: scale(1); }
    100% { transform: scale(0); }
}

/* Enhanced rotate animations */
.rotate-in {
    animation: rotateIn 0.6s ease-out;
}

@keyframes rotateIn {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

.rotate-out {
    animation: rotateOut 0.6s ease-out;
}

@keyframes rotateOut {
    0% { transform: scale(1); }
    100% { transform: scale(0); }
}

/* Enhanced elastic animations */
.elastic-in {
    animation: elasticIn 0.6s ease-out;
}

@keyframes elasticIn {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.elastic-out {
    animation: elasticOut 0.6s ease-out;
}

@keyframes elasticOut {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(0); }
}

/* Enhanced back animations */
.back-in-up {
    animation: backInUp 0.6s ease-out;
}

@keyframes backInUp {
    0% { transform: translateY(100%) scale(0.8); }
    100% { transform: translateY(0) scale(1); }
}

.back-in-down {
    animation: backInDown 0.6s ease-out;
}

@keyframes backInDown {
    0% { transform: translateY(-100%) scale(0.8); }
    100% { transform: translateY(0) scale(1); }
}

.back-in-left {
    animation: backInLeft 0.6s ease-out;
}

@keyframes backInLeft {
    0% { transform: translateX(-100%) scale(0.8); }
    100% { transform: translateX(0) scale(1); }
}

.back-in-right {
    animation: backInRight 0.6s ease-out;
}

@keyframes backInRight {
    0% { transform: translateX(100%) scale(0.8); }
    100% { transform: translateX(0) scale(1); }
}

/* Enhanced attention animations */
.attention {
    animation: attention 0.6s ease-out;
}

@keyframes attention {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.attention-bounce {
    animation: attentionBounce 0.6s ease-out;
}

@keyframes attentionBounce {
    0% { transform: scale(1); }
    25% { transform: scale(1.1); }
    50% { transform: scale(0.9); }
    75% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.attention-pulse {
    animation: attentionPulse 0.6s ease-out;
}

@keyframes attentionPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.attention-shake {
    animation: attentionShake 0.6s ease-out;
}

@keyframes attentionShake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    50% { transform: translateX(5px); }
    75% { transform: translateX(-3px); }
    100% { transform: translateX(0); }
}

.attention-wobble {
    animation: attentionWobble 0.6s ease-out;
}

@keyframes attentionWobble {
    0% { transform: scale(1); }
    25% { transform: scale(0.95); }
    50% { transform: scale(1.05); }
    75% { transform: scale(0.97); }
    100% { transform: scale(1); }
}

/* Enhanced special effects */
.rainbow {
    background: linear-gradient(45deg, #ff0000, #ff7f00, #ffff00, #00ff00, #0000ff, #4b0082, #9400d3);
    background-size: 400% 400%;
    animation: rainbow 3s ease infinite;
}

@keyframes rainbow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.neon {
    text-shadow: 
        0 0 5px var(--primary-color),
        0 0 10px var(--primary-color),
        0 0 15px var(--primary-color),
        0 0 20px var(--primary-color);
    animation: neon 2s ease-in-out infinite alternate;
}

@keyframes neon {
    from { text-shadow: 0 0 5px var(--primary-color), 0 0 10px var(--primary-color), 0 0 15px var(--primary-color), 0 0 20px var(--primary-color); }
    to { text-shadow: 0 0 2px var(--primary-color), 0 0 5px var(--primary-color), 0 0 8px var(--primary-color), 0 0 12px var(--primary-color); }
}

.glow-text {
    text-shadow: 0 0 10px var(--primary-color);
    animation: glowText 2s ease-in-out infinite alternate;
}

@keyframes glowText {
    from { text-shadow: 0 0 10px var(--primary-color); }
    to { text-shadow: 0 0 20px var(--primary-color), 0 0 30px var(--primary-color); }
}

.shadow-text {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: shadowText 2s ease-in-out infinite alternate;
}

@keyframes shadowText {
    from { text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); }
    to { text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.8); }
}

.emboss {
    text-shadow: 
        1px 1px 0px #ffffff,
        2px 2px 0px #cccccc,
        3px 3px 0px #999999;
    animation: emboss 2s ease-in-out infinite alternate;
}

@keyframes emboss {
    from { text-shadow: 1px 1px 0px #ffffff, 2px 2px 0px #cccccc, 3px 3px 0px #999999; }
    to { text-shadow: 2px 2px 0px #ffffff, 4px 4px 0px #cccccc, 6px 6px 0px #999999; }
}

.inset {
    text-shadow: 
        inset 1px 1px 0px #ffffff,
        inset 2px 2px 0px #cccccc,
        inset 3px 3px 0px #999999;
    animation: inset 2s ease-in-out infinite alternate;
}

@keyframes inset {
    from { text-shadow: inset 1px 1px 0px #ffffff, inset 2px 2px 0px #cccccc, inset 3px 3px 0px #999999; }
    to { text-shadow: inset 2px 2px 0px #ffffff, inset 4px 4px 0px #cccccc, inset 6px 6px 0px #999999; }
}

/* Enhanced particle effects */

.particles::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(99, 102, 241, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(16, 185, 129, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(99, 102, 241, 0.2), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(16, 185, 129, 0.2), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(99, 102, 241, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: particles 20s linear infinite;
    pointer-events: none;
}

@keyframes particles {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100px); }
}

/* Enhanced floating elements */
.floating {
    animation: float 6s ease-in-out infinite;
}




.floating-slow {
    animation: floatingSlow 8s ease-in-out infinite;
}

@keyframes floatingSlow {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.floating-fast {
    animation: floatingFast 4s ease-in-out infinite;
}

@keyframes floatingFast {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-25px); }
}

/* Enhanced hover effects */
.hover-lift {
    transition: transform 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
}

.hover-scale {
    transition: transform 0.3s ease;
}

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

.hover-rotate {
    transition: transform 0.3s ease;
}

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

.hover-skew {
    transition: transform 0.3s ease;
}

.hover-skew:hover {
    transform: skew(5deg, 5deg);
}

.hover-flip {
    transition: transform 0.3s ease;
}

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


.hover-blur {
    transition: filter 0.3s ease;
}

.hover-blur:hover {
    filter: blur(2px);
}

.hover-brightness {
    transition: filter 0.3s ease;
}

.hover-brightness:hover {
    filter: brightness(1.2);
}

.hover-contrast {
    transition: filter 0.3s ease;
}

.hover-contrast:hover {
    filter: contrast(1.2);
}

.hover-saturate {
    transition: filter 0.3s ease;
}

.hover-saturate:hover {
    filter: saturate(1.2);
}

.hover-hue {
    transition: filter 0.3s ease;
}

.hover-hue:hover {
    filter: hue-rotate(90deg);
}

.hover-invert {
    transition: filter 0.3s ease;
}

.hover-invert:hover {
    filter: invert(1);
}

.hover-sepia {
    transition: filter 0.3s ease;
}

.hover-sepia:hover {
    filter: sepia(1);
}

.hover-grayscale {
    transition: filter 0.3s ease;
}

.hover-grayscale:hover {
    filter: grayscale(1);
}

/* Enhanced performance optimizations */

.will-change-scroll {
    will-change: scroll-position;
}

.will-change-contents {
    will-change: contents;
}

.will-change-auto {
    will-change: auto;
}

/* Enhanced GPU acceleration */

/* Enhanced smooth scrolling */
.smooth-scroll {
    scroll-behavior: smooth;
}

/* Enhanced reduced motion */

/* Enhanced high contrast mode */
@media (prefers-contrast: high) {
    .high-contrast {
        filter: contrast(2);
    }
}

/* Enhanced dark mode */
@media (prefers-color-scheme: dark) {
    .dark-mode {
        background: var(--bg-dark);
        color: var(--text-white);
    }
}

/* Enhanced print styles */
@media print {
    .no-print {
        display: none !important;
    }
    
    .print-only {
        display: block !important;
    }
    
    * {
        background: transparent !important;
        color: black !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }
}

/* Enhanced accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.focus-visible:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Enhanced loading states */
.loading-skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-dots {
    display: inline-block;
}

.loading-dots::after {
    content: '';
    animation: dots 1.5s steps(5, end) infinite;
}

@keyframes dots {
    0%, 20% { content: ''; }
    40% { content: '.'; }
    60% { content: '..'; }
    80%, 100% { content: '...'; }
}

/* Enhanced error states */
.error-shake {
    animation: shake 0.5s ease-in-out;
}

.error-pulse {
    animation: pulse 0.5s ease-in-out;
}

.error-glow {
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.5);
}

/* Enhanced success states */
.success-bounce {
    animation: bounce 0.5s ease-in-out;
}

.success-pulse {
    animation: pulse 0.5s ease-in-out;
}

.success-glow {
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.5);
}

/* Enhanced warning states */
.warning-shake {
    animation: shake 0.5s ease-in-out;
}

.warning-pulse {
    animation: pulse 0.5s ease-in-out;
}

.warning-glow {
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.5);
}

/* Enhanced info states */
.info-bounce {
    animation: bounce 0.5s ease-in-out;
}

.info-pulse {
    animation: pulse 0.5s ease-in-out;
}

.info-glow {
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}