/* Loading Screen */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #030712;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-content {
    text-align: center;
}

.loading-logo {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 2px solid #3b82f6;
    border-radius: 50%;
    animation: pulse 2s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
}

.pulse-ring:nth-child(2) {
    animation-delay: 0.5s;
}

.pulse-ring:nth-child(3) {
    animation-delay: 1s;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

.loading-text {
    font-size: 1.2rem;
    color: #3b82f6;
    margin-bottom: 2rem;
    animation: fadeInOut 2s ease-in-out infinite;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.loading-bar {
    width: 200px;
    height: 4px;
    background: var(--gray-800);
    border-radius: 2px;
    margin: 0 auto;
    overflow: hidden;
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    width: 0%;
    animation: loadProgress 3s ease-in-out;
}

@keyframes loadProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* Modern Design System */
:root {
    /* Color System */
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --gray-950: #030712;

    /* Brand Colors - Modern Palette */
    --primary-500: #6366f1;
    --primary-600: #4f46e5;
    --primary-700: #4338ca;
    --secondary-500: #a855f7;
    --accent-500: #06b6d4;
    --success-500: #10b981;
    --warning-500: #f59e0b;
    --pink-500: #ec4899;
    --purple-500: #a855f7;
    --indigo-500: #6366f1;
    --emerald-500: #10b981;
    --orange-500: #f97316;
    --cyan-500: #06b6d4;
    --violet-500: #8b5cf6;
    --rose-500: #f43f5e;
    --teal-500: #14b8a6;

    /* Modern 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-success: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    --gradient-warning: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);

    /* Enhanced Background System */
    --bg-primary: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    --bg-secondary: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    --bg-tertiary: rgba(22, 33, 62, 0.8);
    --bg-card: rgba(15, 23, 42, 0.8);
    --bg-glass: rgba(255, 255, 255, 0.08);
    --bg-overlay: rgba(0, 0, 0, 0.4);

    /* Text Colors */
    --text-primary: var(--gray-50);
    --text-secondary: var(--gray-300);
    --text-muted: var(--gray-400);

    /* Enhanced Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.15);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.2);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.25);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.3);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.4);
    --shadow-glow: 0 0 20px rgba(99, 102, 241, 0.3);
    --shadow-glow-secondary: 0 0 20px rgba(168, 85, 247, 0.3);
    --shadow-neon: 0 0 5px currentColor, 0 0 10px currentColor, 0 0 15px currentColor;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;

    /* Typography */
    --font-family: 'Inter', system-ui, -apple-system, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    --font-size-6xl: 3.75rem;

    /* Animation */
    --duration-150: 150ms;
    --duration-200: 200ms;
    --duration-300: 300ms;
    --duration-500: 500ms;
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
    --ease-in: cubic-bezier(0.4, 0, 1, 1);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--duration-300) cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    background: rgba(15, 23, 42, 0.95);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(30px);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: var(--space-4) var(--space-6);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-weight: 700;
    font-size: var(--font-size-xl);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-img {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 0 10px rgba(99, 102, 241, 0.3));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-8);
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all var(--duration-300) cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-lg);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-500);
    background: rgba(99, 102, 241, 0.1);
    transform: translateY(-1px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: all var(--duration-300) cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    border-radius: 1px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 var(--space-6);
}

.hero-title {
    font-size: clamp(var(--font-size-4xl), 8vw, var(--font-size-6xl));
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-6);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(102, 126, 234, 0.5);
    animation: textGlow 3s ease-in-out infinite alternate;
}

@keyframes textGlow {
    from { filter: brightness(1); }
    to { filter: brightness(1.2); }
}

.hero-subtitle {
    font-size: var(--font-size-xl);
    color: var(--text-secondary);
    margin-bottom: var(--space-8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
    margin-bottom: var(--space-10);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--primary-500);
    margin-bottom: var(--space-1);
}

.stat-label {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
}

.hero-buttons {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

/* Modern Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-8);
    border-radius: var(--radius-xl);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--duration-300) cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-size: var(--font-size-base);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.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 var(--duration-500) ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-xl), 0 0 30px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
    background: var(--bg-glass);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, 0.1);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-500);
    border: 1px solid var(--primary-500);
}

.btn-secondary:hover {
    background: var(--primary-500);
    color: white;
}

/* Section Styling */
section {
    padding: var(--space-20) 0;
    position: relative;
    width: 100%;
    min-height: auto;
    overflow: visible;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-16);
    position: relative;
}

.section-header::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    opacity: 0.8;
}

.section-title {
    font-size: clamp(var(--font-size-3xl), 5vw, var(--font-size-5xl));
    font-weight: 700;
    margin-bottom: var(--space-4);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(99, 102, 241, 0.3);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    animation: titleUnderline 2s ease-out 1s forwards;
}

@keyframes titleUnderline {
    from { width: 0; }
    to { width: 80px; }
}

.section-subtitle {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Section */
.about {
    background: var(--bg-secondary);
    position: relative;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text {
    margin-bottom: var(--space-12);
}

.about-heading {
    font-size: var(--font-size-2xl);
    font-weight: 600;
    margin-bottom: var(--space-4);
    color: var(--primary-500);
}

.about-text p {
    margin-bottom: var(--space-4);
    color: var(--text-secondary);
    line-height: 1.7;
}

.tech-stack {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--space-4);
    margin-bottom: var(--space-12);
}

.tech-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4);
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(75, 85, 99, 0.2);
    border-radius: var(--radius-lg);
    transition: all var(--duration-300) var(--ease-out);
    position: relative;
    overflow: hidden;
}

.tech-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-500), var(--secondary-500));
}

.tech-item:nth-child(1)::before { background: linear-gradient(180deg, var(--emerald-500), var(--cyan-500)); }
.tech-item:nth-child(2)::before { background: linear-gradient(180deg, var(--orange-500), var(--warning-500)); }
.tech-item:nth-child(3)::before { background: linear-gradient(180deg, var(--indigo-500), var(--primary-500)); }
.tech-item:nth-child(4)::before { background: linear-gradient(180deg, var(--pink-500), var(--purple-500)); }

.tech-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-500);
}

.tech-item i {
    font-size: var(--font-size-xl);
    color: var(--primary-500);
}

.tech-item:nth-child(1) i { color: var(--emerald-500); }
.tech-item:nth-child(2) i { color: var(--orange-500); }
.tech-item:nth-child(3) i { color: var(--indigo-500); }
.tech-item:nth-child(4) i { color: var(--pink-500); }

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-6);
}

.feature {
    text-align: center;
    padding: var(--space-8);
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(75, 85, 99, 0.2);
    border-radius: var(--radius-xl);
    transition: all var(--duration-300) var(--ease-out);
}

.feature:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.feature i {
    font-size: var(--font-size-4xl);
    margin-bottom: var(--space-4);
}

.feature:nth-child(1) i { color: var(--emerald-500); }
.feature:nth-child(2) i { color: var(--orange-500); }
.feature:nth-child(3) i { color: var(--indigo-500); }

.feature h4 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: var(--space-3);
}

.feature p {
    color: var(--text-secondary);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-8);
}

.service-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    transition: all var(--duration-500) cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    transform: rotate(45deg);
    transition: all var(--duration-700) ease;
    opacity: 0;
}

.service-card:hover::after {
    opacity: 1;
    animation: shimmer 1.5s ease-in-out;
}

.service-card:hover {
    transform: translateY(-16px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(99, 102, 241, 0.2);
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-6);
    box-shadow: var(--shadow-lg);
}

.service-card:nth-child(1) .service-icon { background: linear-gradient(135deg, var(--emerald-500), var(--cyan-500)); }
.service-card:nth-child(2) .service-icon { background: linear-gradient(135deg, var(--orange-500), var(--warning-500)); }
.service-card:nth-child(3) .service-icon { background: linear-gradient(135deg, var(--indigo-500), var(--primary-500)); }
.service-card:nth-child(4) .service-icon { background: linear-gradient(135deg, var(--pink-500), var(--purple-500)); }

.service-icon i {
    font-size: var(--font-size-2xl);
    color: white;
}

.service-title {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: var(--space-4);
}

.service-description {
    color: var(--text-secondary);
    margin-bottom: var(--space-6);
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: var(--space-6);
}

.service-features li {
    padding: var(--space-2) 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: var(--space-6);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-500);
    font-weight: bold;
}

.service-tech {
    display: flex;
    gap: var(--space-2);
    flex-wrap: wrap;
}

.tech-badge {
    background: var(--bg-tertiary);
    color: var(--primary-500);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-md);
    font-size: var(--font-size-xs);
    font-weight: 500;
    border: 1px solid rgba(75, 85, 99, 0.3);
}

/* Products Section */
.products {
    background: var(--bg-primary);
    padding: var(--space-20) 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--space-8);
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    transition: all var(--duration-500) cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    clip-path: polygon(0 0, 100% 0, 100% 95%, 95% 100%, 0 100%);
    perspective: 1000px;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
    animation: borderGlow 3s ease-in-out infinite alternate;
}

@keyframes borderGlow {
    0% { box-shadow: 0 0 10px rgba(99, 102, 241, 0.5); }
    100% { box-shadow: 0 0 20px rgba(99, 102, 241, 0.8), 0 0 30px rgba(99, 102, 241, 0.4); }
}

.product-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    transform: rotate(45deg);
    transition: all var(--duration-700) ease;
    opacity: 0;
}

.product-card:hover::after {
    opacity: 1;
    animation: shimmer 1.5s ease-in-out;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.product-card.featured {
    border: 2px solid transparent;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(30, 41, 59, 0.8)) padding-box,
                var(--gradient-primary) border-box;
    box-shadow: var(--shadow-glow), 0 0 40px rgba(99, 102, 241, 0.2);
    animation: featuredGlow 2s ease-in-out infinite alternate, float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes featuredGlow {
    from { box-shadow: var(--shadow-glow), 0 0 40px rgba(99, 102, 241, 0.2); }
    to { box-shadow: var(--shadow-glow), 0 0 50px rgba(99, 102, 241, 0.4); }
}

.product-card:hover {
    transform: translateY(-20px) rotateX(5deg) rotateY(5deg) scale(1.03);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(99, 102, 241, 0.3);
    cursor: default;
    clip-path: polygon(0 0, 100% 0, 100% 92%, 92% 100%, 0 100%);
}

.product-card * {
    pointer-events: auto;
}

.product-badge {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    background: var(--gradient-warning);
    color: white;
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-lg);
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.product-header {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.product-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-xl);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    animation: iconRotate 20s linear infinite;
    flex-shrink: 0;
}

@keyframes iconRotate {
    0% { background: var(--gradient-primary); }
    25% { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
    50% { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
    75% { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
    100% { background: var(--gradient-primary); }
}

.product-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: iconShine 3s ease-in-out infinite;
}

@keyframes iconShine {
    0%, 100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.product-icon i {
    font-size: var(--font-size-3xl);
    color: white;
    position: relative;
    z-index: 1;
}

.product-title {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.product-description {
    color: var(--text-primary);
    margin-bottom: var(--space-6);
    line-height: 1.7;
    font-size: var(--font-size-base);
    font-weight: 400;
    text-align: justify;
    background: rgba(255, 255, 255, 0.05);
    padding: var(--space-4);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-500);
}

.product-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.feature-category {
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    padding: var(--space-5);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all var(--duration-300) ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.feature-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left var(--duration-500) ease;
}

.feature-category:hover::before {
    left: 100%;
}

.feature-category:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.25);
}

.category-title {
    font-size: var(--font-size-base);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-4);
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding-bottom: var(--space-2);
    border-bottom: 2px solid var(--primary-500);
}

.category-title i {
    color: var(--primary-500);
    font-size: var(--font-size-lg);
    background: rgba(99, 102, 241, 0.1);
    padding: 8px;
    border-radius: var(--radius-md);
}

.category-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    color: var(--text-primary);
    font-size: var(--font-size-sm);
    line-height: 1.5;
    transition: all var(--duration-300) ease;
    opacity: 0;
    transform: translateX(-10px);
    animation: slideIn 0.6s ease forwards;
    padding: var(--space-2);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    cursor: default;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-item:nth-child(1) { animation-delay: 0.1s; }
.feature-item:nth-child(2) { animation-delay: 0.2s; }
.feature-item:nth-child(3) { animation-delay: 0.3s; }
.feature-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.feature-item i {
    color: var(--success-500);
    font-size: var(--font-size-sm);
    flex-shrink: 0;
    margin-top: 2px;
    background: rgba(34, 197, 94, 0.1);
    padding: 4px;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-item span {
    font-weight: 500;
    color: var(--text-primary);
}

.feature-subtitle {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
    margin-top: 2px;
    margin-left: 28px;
    line-height: 1.4;
}

.feature-item.coming-soon {
    opacity: 0.8;
    background: rgba(245, 158, 11, 0.05);
    border-color: rgba(245, 158, 11, 0.2);
}

.feature-item.coming-soon i {
    color: var(--warning-500);
    background: rgba(245, 158, 11, 0.1);
}

.feature-item.coming-soon span {
    color: var(--text-secondary);
    font-style: italic;
}

.product-trial {
    text-align: center;
    margin-bottom: var(--space-6);
}

.trial-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: linear-gradient(135deg, var(--success-500), var(--emerald-500));
    color: white;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: var(--font-size-sm);
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 20px rgba(34, 197, 94, 0.3); }
    50% { transform: scale(1.05); box-shadow: 0 0 30px rgba(34, 197, 94, 0.5); }
}

.product-actions {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
}

.product-actions .btn {
    position: relative;
    z-index: 11;
    pointer-events: auto !important;
    cursor: pointer !important;
}

/* Portfolio Section */
.portfolio {
    background: var(--bg-secondary);
    position: relative;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-8);
}

.portfolio-card {
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(75, 85, 99, 0.2);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    transition: all var(--duration-300) var(--ease-out);
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.portfolio-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.portfolio-card:nth-child(1) .portfolio-image {
    background: linear-gradient(135deg, var(--emerald-500) 0%, var(--cyan-500) 100%);
}

.portfolio-card:nth-child(2) .portfolio-image {
    background: linear-gradient(135deg, var(--orange-500) 0%, var(--warning-500) 100%);
}

.portfolio-card:nth-child(3) .portfolio-image {
    background: linear-gradient(135deg, var(--indigo-500) 0%, var(--primary-500) 100%);
}

.portfolio-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.portfolio-image i {
    font-size: var(--font-size-4xl);
    color: white;
    z-index: 1;
}

.portfolio-content {
    padding: var(--space-6);
}

.portfolio-title {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: var(--space-3);
}

.portfolio-description {
    color: var(--text-secondary);
    margin-bottom: var(--space-4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-primary);
        flex-direction: column;
        padding: var(--space-6);
        gap: var(--space-4);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--duration-300) var(--ease-out);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 4px;
        cursor: pointer;
    }

    .bar {
        width: 24px;
        height: 3px;
        background: var(--primary-500);
        border-radius: 2px;
        transition: all var(--duration-200) var(--ease-out);
    }

    .hamburger.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .tech-stack {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }

    .product-card {
        padding: var(--space-6);
        clip-path: polygon(0 0, 100% 0, 100% 97%, 97% 100%, 0 100%);
    }

    .product-card:hover {
        clip-path: polygon(0 0, 100% 0, 100% 94%, 94% 100%, 0 100%);
    }

    .product-header {
        flex-direction: column;
        text-align: center;
        gap: var(--space-3);
    }

    .product-icon {
        width: 70px;
        height: 70px;
    }

    .product-title {
        font-size: var(--font-size-xl);
    }

    .product-features-grid {
        gap: var(--space-4);
    }

    .feature-category {
        padding: var(--space-4);
    }

    .category-features {
        gap: var(--space-3);
    }

    .feature-item {
        padding: var(--space-3);
        font-size: var(--font-size-base);
    }

    .category-title {
        font-size: var(--font-size-sm);
        gap: var(--space-2);
    }

    .category-title i {
        font-size: var(--font-size-base);
        padding: 6px;
    }

    .product-actions {
        flex-direction: column;
    }

    .product-actions .btn {
        width: 100%;
        text-align: center;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
}

/* Tablet Styles */
@media (max-width: 1024px) and (min-width: 769px) {
    .contact-content {
        gap: var(--space-10);
        max-width: 700px;
    }

    .contact-info {
        text-align: center;
        padding: var(--space-6);
        width: 100%;
    }

    .contact-form {
        padding: var(--space-6);
        width: 100%;
    }

    .contact-details {
        justify-content: center;
    }

    .contact-item {
        justify-content: center;
        text-align: center;
    }

    .hero-content {
        text-align: center;
        padding: var(--space-8) var(--space-4);
    }

    .hero-title {
        font-size: var(--font-size-3xl);
    }

    .hero-subtitle {
        font-size: var(--font-size-lg);
    }

    .section-title {
        font-size: var(--font-size-2xl);
    }

    .wb-container {
        padding: var(--space-6);
        margin: var(--space-4) 0;
    }

    .wb-container h1 {
        font-size: var(--font-size-xl);
    }

    .plans {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }

    /* Footer Tablet Styles */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-6);
    }

    .footer-section {
        padding: var(--space-5);
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: var(--space-4);
    }

    .footer-bottom-links {
        gap: var(--space-5);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0;
    }

    .hero-content {
        padding: var(--space-6) var(--space-2);
    }

    .hero-title {
        font-size: var(--font-size-2xl);
    }

    .hero-subtitle {
        font-size: var(--font-size-base);
    }

    .hero-stats {
        gap: var(--space-2);
    }

    .stat-item {
        padding: var(--space-3);
    }

    .stat-number {
        font-size: var(--font-size-lg);
    }

    .stat-label {
        font-size: var(--font-size-xs);
    }

    .section-header {
        padding: 0 var(--space-2);
    }

    .section-title {
        font-size: var(--font-size-xl);
    }

    .section-subtitle {
        font-size: var(--font-size-sm);
    }

    .about-content {
        padding: var(--space-4);
    }

    .about-heading {
        font-size: var(--font-size-lg);
    }

    .tech-stack {
        grid-template-columns: 1fr;
        gap: var(--space-3);
    }

    .tech-item {
        padding: var(--space-2) var(--space-4);
    }

    .service-card, .product-card {
        padding: var(--space-4);
    }

    .service-title, .product-title {
        font-size: var(--font-size-lg);
    }

    .product-header {
        gap: var(--space-3);
    }

    .product-icon {
        width: 60px;
        height: 60px;
    }

    .service-description, .product-description {
        font-size: var(--font-size-sm);
    }

    .service-features, .product-features {
        margin-bottom: var(--space-4);
    }

    .product-features-grid {
        gap: var(--space-3);
    }

    .feature-category {
        padding: var(--space-3);
    }

    .category-features {
        gap: var(--space-2);
    }

    .feature-item {
        padding: var(--space-2);
        font-size: var(--font-size-xs);
    }

    .category-title {
        font-size: var(--font-size-xs);
    }

    .feature-item {
        font-size: var(--font-size-xs);
    }

    .feature-card {
        padding: var(--space-4);
    }

    .feature-title {
        font-size: var(--font-size-lg);
    }

    .feature-description {
        font-size: var(--font-size-sm);
    }

    .contact-info {
        padding: var(--space-4);
    }

    .contact-heading {
        font-size: var(--font-size-xl);
    }

    .contact-item {
        padding: var(--space-2);
        gap: var(--space-3);
    }

    .contact-item i {
        width: 40px;
        height: 40px;
        font-size: var(--font-size-base);
    }

    .contact-form {
        padding: var(--space-4);
    }

    .wb-container {
        padding: var(--space-4);
        margin: var(--space-2) 0;
    }

    .wb-container h1 {
        font-size: var(--font-size-lg);
    }

    .plan {
        padding: var(--space-4);
    }

    .plan h2 {
        font-size: var(--font-size-lg);
    }

    .price {
        font-size: var(--font-size-xl);
    }

    .clients-section h2 {
        font-size: var(--font-size-xl);
    }

    .slide-track {
        width: calc(200px * 14);
    }

    .slide {
        width: 200px;
    }

    .slide img {
        max-width: 150px;
    }

    /* Footer Mobile Styles */
    .footer {
        padding: var(--space-8) 0 var(--space-4);
    }

    .footer .container {
        padding: 0;
    }

    .footer-content {
        padding: 0;
        margin-bottom: var(--space-6);
    }

    .footer-grid {
        display: block;
        padding: 0;
    }

    .footer-section {
        padding: var(--space-4);
        margin-bottom: var(--space-6);
    }

    .footer-section {
        padding: var(--space-5);
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
        text-align: center;
    }

    .footer-description {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--space-3);
    }

    .footer-links li {
        margin-bottom: 0;
    }

    .footer-links a {
        font-size: var(--font-size-sm);
        padding: var(--space-2) var(--space-3);
        border-radius: var(--radius-md);
        transition: all var(--duration-200) ease;
    }

    .footer-links a:hover {
        background: rgba(99, 102, 241, 0.1);
        transform: translateY(-1px);
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: var(--space-3);
    }

    .footer-bottom-links {
        gap: var(--space-4);
    }
}

/* Hide hamburger on desktop */
.hamburger {
    display: none;
}

/* Why Choose Us Section */
.why-choose-us {
    background: var(--bg-primary);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-8);
}

.feature-card {
    text-align: center;
    padding: var(--space-8);
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(75, 85, 99, 0.2);
    border-radius: var(--radius-2xl);
    transition: all var(--duration-300) var(--ease-out);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
}

.feature-card:nth-child(1)::before { background: linear-gradient(135deg, var(--emerald-500), var(--cyan-500)); }
.feature-card:nth-child(2)::before { background: linear-gradient(135deg, var(--orange-500), var(--warning-500)); }
.feature-card:nth-child(3)::before { background: linear-gradient(135deg, var(--indigo-500), var(--primary-500)); }
.feature-card:nth-child(4)::before { background: linear-gradient(135deg, var(--pink-500), var(--purple-500)); }

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
    border-color: rgba(59, 130, 246, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-6);
    box-shadow: var(--shadow-lg);
}

.feature-card:nth-child(1) .feature-icon { background: linear-gradient(135deg, var(--emerald-500), var(--cyan-500)); }
.feature-card:nth-child(2) .feature-icon { background: linear-gradient(135deg, var(--orange-500), var(--warning-500)); }
.feature-card:nth-child(3) .feature-icon { background: linear-gradient(135deg, var(--indigo-500), var(--primary-500)); }
.feature-card:nth-child(4) .feature-icon { background: linear-gradient(135deg, var(--pink-500), var(--purple-500)); }

.feature-icon i {
    font-size: var(--font-size-2xl);
    color: white;
}

.feature-title {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: var(--space-3);
    color: var(--text-primary);
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Contact Section */
.contact {
    background: var(--bg-secondary);
    position: relative;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-12);
    max-width: 800px;
    margin: 0 auto;
    align-items: center;
}

.contact-info {
    padding: var(--space-8);
}

.contact-heading {
    font-size: var(--font-size-2xl);
    font-weight: 600;
    margin-bottom: var(--space-4);
    color: var(--primary-500);
}

.contact-info p {
    color: var(--text-secondary);
    margin-bottom: var(--space-6);
    line-height: 1.7;
}

.contact-details {
    margin-bottom: var(--space-6);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
    padding: var(--space-3);
    background: var(--bg-glass);
    border-radius: var(--radius-lg);
    transition: all var(--duration-200) var(--ease-out);
}

.contact-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.contact-item i {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: var(--font-size-lg);
}

.contact-item:nth-child(1) i { background: linear-gradient(135deg, var(--emerald-500), var(--cyan-500)); }
.contact-item:nth-child(2) i { background: linear-gradient(135deg, var(--orange-500), var(--warning-500)); }
.contact-item:nth-child(3) i { background: linear-gradient(135deg, var(--indigo-500), var(--primary-500)); }

.contact-item-content h4 {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-1);
}

.contact-item-content p {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    margin: 0;
}

.contact-form {
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(75, 85, 99, 0.2);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-lg);
}

.form-group {
    position: relative;
    margin-bottom: var(--space-6);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: var(--space-4);
    background: var(--bg-card);
    border: 1px solid rgba(75, 85, 99, 0.3);
    border-radius: var(--radius-lg);
    color: var(--text-primary);
    font-size: var(--font-size-base);
    transition: all var(--duration-200) var(--ease-out);
    font-family: var(--font-family);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-500);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group label {
    position: absolute;
    left: var(--space-4);
    top: var(--space-4);
    color: var(--text-muted);
    transition: all var(--duration-200) var(--ease-out);
    pointer-events: none;
    background: var(--bg-card);
    padding: 0 var(--space-2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--bg-primary);
    border-top: 1px solid rgba(75, 85, 99, 0.2);
    padding: var(--space-16) 0 var(--space-8);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-500), transparent);
}

.footer-content {
    margin-bottom: var(--space-8);
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-8);
    margin-bottom: var(--space-8);
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section {
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(75, 85, 99, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    transition: all var(--duration-300) ease;
}

.footer-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
}

.footer-logo .logo-img {
    width: 60px;
    height: 60px;
}

.footer-logo .logo-text {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--primary-500);
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-6);
    font-size: var(--font-size-sm);
}

.footer-social {
    display: flex;
    gap: var(--space-3);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    color: var(--text-secondary);
    transition: all var(--duration-300) ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--primary-500);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.footer-title {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-4);
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-500);
    border-radius: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: var(--space-2);
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: var(--font-size-sm);
    transition: all var(--duration-200) ease;
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
}

.footer-links a:hover {
    color: var(--primary-500);
    transform: translateX(4px);
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    color: var(--text-secondary);
}

.contact-item i {
    color: var(--primary-500);
    font-size: var(--font-size-lg);
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-item div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-item span:first-child {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.contact-item a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: var(--font-size-sm);
    transition: color var(--duration-200) ease;
}

.contact-item a:hover {
    color: var(--primary-500);
}

.footer-bottom {
    text-align: center;
    padding: var(--space-6);
    border-top: 1px solid rgba(75, 85, 99, 0.2);
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    max-width: 1280px;
    margin: 0 auto;
    margin-bottom: var(--space-6);
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    align-items: center;
}

.footer-bottom p {
    color: var(--text-muted);
    margin: 0;
    font-size: var(--font-size-sm);
}

.footer-bottom-links {
    display: flex;
    gap: var(--space-6);
    flex-wrap: wrap;
    justify-content: center;
}

.footer-bottom-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: var(--font-size-xs);
    transition: color var(--duration-200) ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-500);
}

body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #0b0f19;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    flex-direction: column;
  }
  
  .wb-container {
    text-align: center;
    max-width: 1000px;
    width: 100%;
  }
  
  header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.25em;
  }
  
  .subtitle {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 2em;
  }
  
  .plans {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
  }
  
  .plan {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    width: 280px;
    border: 2px solid transparent;
    transition: transform 0.3s ease;
  }
  
  .plan:hover {
    transform: scale(1.05);
  }
  
  .silver {
    border-color: #00bfff;
    box-shadow: 0 0 15px rgba(0, 191, 255, 0.3);
  }
  
  .gold {
    border-color: #ffd700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
  }
  
  .platinum {
    border-color: #00ffff;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
  }
  
  .plan h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5em;
  }
  
  .price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #0ff;
    margin: 0.5em 0;
  }
  
  .validity {
    display: inline-block;
    margin-top: 1em;
    padding: 0.4em 1em;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #0f0;
    font-weight: bold;
  }
  
  footer {
    margin-top: 3em;
    font-size: 0.95rem;
    color: #aaa;
  }
  
  footer p {
    margin: 0.5em 0;
  }

  .clients-section {
    padding: 40px 20px;
    background: #fff;
    text-align: center;
  }

  .clients-section h2 {
    font-size: 2em;
    margin-bottom: 30px;
    color: #333;
  }

  .slider {
    overflow: hidden;
    position: relative;
  }

  .slide-track {
    display: flex;
    width: calc(250px * 14);
    animation: scroll 20s linear infinite;
  }

  .slide {
    height: 100px;
    width: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
  }

  .slide:hover {
    filter: grayscale(0%);
  }

  .slide img {
    max-height: 80px;
    max-width: 200px;
  }

  @keyframes scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
