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

/* Set default cursor for all elements */
* {
    cursor: default;
}

/* Set pointer cursor for interactive elements */
a, button, input[type="button"], input[type="submit"], input[type="reset"], 
select, textarea, [role="button"], [tabindex], .clickable {
    cursor: pointer;
}

/* Set text cursor for text inputs and textareas */
input[type="text"], input[type="email"], input[type="password"], input[type="search"], 
input[type="url"], input[type="tel"], input[type="number"], textarea {
    cursor: text;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: #1e293b;
    background: #fafbfc;
    overflow-x: hidden;
}

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

/* Modern Color Palette */
:root {
    --primary: #170dfd;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --secondary: #ffab00;
    --accent: #ffc947;
    --success: #10b981;
    --warning: #ffab00;
    --error: #ef4444;
    
    --background: #fafbfc;
    --surface: #ffffff;
    --surface-2: #f8fafc;
    --surface-3: #f1f5f9;
    
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    
    --border: #e2e8f0;
    --border-light: #f1f5f9;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 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);
    
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    --gradient-warm: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    
    --radius: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.25rem;
}

/* Navigation - Compact Centered Floating Glass Effect */
.navbar {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    max-width: 1200px;
    min-width: 500px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: var(--shadow-xl);
    border-color: rgba(255, 255, 255, 0.3);
}

.navbar.hidden {
    transform: translateX(-50%) translateY(-120%);
    opacity: 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 1.5rem;
    max-width: none;
    margin: 0;
    width: 100%;
}

.nav-brand h2 {
    color: white;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: -0.025em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.8rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.nav-links a:hover::before {
    transform: scaleX(1);
}

.cta-btn {
    background: var(--gradient-primary);
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 1.5rem;
    font-weight: 600;
    font-size: 0.75rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    box-shadow: var(--shadow);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
}

.cta-btn::before {
    content: none;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white !important;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-secondary);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.language-selector {
    position: relative;
}

.language-select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 0.375rem 0.625rem;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.language-select:hover,
.language-select:focus {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.15);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.language-select option {
    background: #1f2937;
    color: white;
    padding: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    border: none;
}

.language-select option:hover,
.language-select option:checked {
    background: #374151;
    color: white;
}

/* Hero Section with Animated Dots */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: 
      radial-gradient(circle at 25% 25%, rgb(31 57 216 / 21%) 0%, transparent 50%), radial-gradient(circle at 75% 75%, rgb(23 67 197 / 0%) 0%, transparent 50%), radial-gradient(circle at 50% 100%, rgb(19 28 56 / 70%) 0%, transparent 50%), linear-gradient(90deg, #000000 0%, #2f2cd9 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

/* Animated Dots Background */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 60% 80%, rgba(255, 255, 255, 0.15) 1px, transparent 1px),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 3px, transparent 3px),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.12) 1.5px, transparent 1.5px),
        radial-gradient(circle at 90% 70%, rgba(255, 255, 255, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 10% 90%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 70% 10%, rgba(255, 255, 255, 0.15) 2.5px, transparent 2.5px);
    background-size: 200px 200px, 150px 150px, 300px 300px, 100px 100px, 250px 250px, 180px 180px, 220px 220px;
    animation: floatingDots 60s ease-in-out infinite;
    z-index: 1;
}

@keyframes floatingDots {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(-20px, -20px) rotate(90deg);
    }
    50% {
        transform: translate(20px, -10px) rotate(180deg);
    }
    75% {
        transform: translate(-10px, 20px) rotate(270deg);
    }
}



.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
    color: white;
}

.hero-logo {
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    animation: heroFadeIn 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
    perspective: 1000px;
}

.logo-image {
    max-height: 110px;
    width: auto;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.4))
            drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3))
            drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    transform-style: preserve-3d;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-image:hover {
    transform: rotateX(5deg) rotateY(-5deg) translateZ(10px);
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    opacity: 0;
    transform: translateY(40px);
    animation: heroFadeIn 1s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
    text-shadow: 0 12px 24px rgba(0, 0, 0, 0.4),
                 0 8px 16px rgba(0, 0, 0, 0.3),
                 0 4px 8px rgba(0, 0, 0, 0.2),
                 0 2px 4px rgba(0, 0, 0, 0.1);
    transform-style: preserve-3d;
}

.brand-highlight {
    display: block;
    background: linear-gradient(270deg, #d0d8f1 0%, #cad5f9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 8px 16px rgba(0, 0, 0, 0.3),
                 0 4px 8px rgba(0, 0, 0, 0.2),
                 0 2px 4px rgba(0, 0, 0, 0.1);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.subtitle {
    display: block;
    font-size: 1.25rem;
    font-weight: 400;
    margin-top: 0.75rem;
    opacity: 0.9;
    color:#bfb04b;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3),
                 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-description {
    font-size: 1.25rem;
    color: #aaaeb2;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeIn 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-actions {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeIn 1s cubic-bezier(0.4, 0, 0.2, 1) 0.8s forwards;
}

.video-play-btn {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.video-play-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-primary {
    background: var(--gradient-warm);
    color: #1e293b !important;
    padding: 0.65rem 1.4rem;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: 0 4px 15px rgba(255, 171, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: none;
}

.cta-primary:hover {
    background: linear-gradient(135deg, #ff9800 0%, #ffb347 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 171, 0, 0.4);
    color: #1e293b !important;
}

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

/* Modern Section Styling */
section {
    padding: 6rem 0;
    position: relative;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    letter-spacing: -0.025em;
}

.section-subtitle {
    font-size: 1rem;
    text-align: center;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 4rem;
    line-height: 1.6;
}

/* Process Section - Modern Cards */
.process-section {
    background: var(--surface);
    position: relative;
}

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

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.process-step {
    background: var(--surface);
    padding: 3rem 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: 0 8px 25px -3px rgba(0, 0, 0, 0.15),
                0 4px 10px -2px rgba(0, 0, 0, 0.1),
                0 2px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25),
                0 15px 30px -8px rgba(0, 0, 0, 0.15),
                0 8px 16px -4px rgba(0, 0, 0, 0.1),
                0 4px 8px -2px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-light);
}

.process-step:hover::before {
    transform: scaleX(1);
}

.step-icon {
    width: 4rem;
    height: 4rem;
    background: var(--gradient-warm);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: #1e293b;
    font-size: 1.5rem;
    box-shadow: var(--shadow-md);
}

.process-step h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.process-step p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

/* Demo Section */
.demo-section {
    background: 
    radial-gradient(circle at 25% 25%, rgb(59 130 246 / 15%) 0%, transparent 50%), radial-gradient(circle at 75% 25%, rgb(147 51 234 / 10%) 0%, transparent 50%), radial-gradient(circle at 50% 100%, rgb(236 72 153 / 8%) 0%, transparent 50%), linear-gradient(135deg, #181cab 0%, #6d2b84 50%, #84136f 100%);
    position: relative;
    overflow: hidden;
}

.demo-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    width: 200%;
    height: 200%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.25) 1px, rgba(255, 255, 255, 0.05) 2px, transparent 3px),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.22) 0.5px, rgba(255, 255, 255, 0.04) 1.5px, transparent 2.5px),
        radial-gradient(circle at 40% 70%, rgba(255, 255, 255, 0.28) 1.5px, rgba(255, 255, 255, 0.06) 2.5px, transparent 4px),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.24) 1px, rgba(255, 255, 255, 0.05) 2px, transparent 3px),
        radial-gradient(circle at 10% 60%, rgba(255, 255, 255, 0.2) 0.8px, rgba(255, 255, 255, 0.04) 1.8px, transparent 2.5px),
        radial-gradient(circle at 70% 40%, rgba(255, 255, 255, 0.26) 1.2px, rgba(255, 255, 255, 0.05) 2.2px, transparent 3.5px),
        radial-gradient(circle at 30% 10%, rgba(255, 255, 255, 0.21) 0.8px, rgba(255, 255, 255, 0.04) 1.8px, transparent 2.8px),
        radial-gradient(circle at 60% 90%, rgba(255, 255, 255, 0.25) 1.2px, rgba(255, 255, 255, 0.05) 2.2px, transparent 3.2px),
        radial-gradient(circle at 85% 50%, rgba(255, 255, 255, 0.18) 0.6px, rgba(255, 255, 255, 0.03) 1.6px, transparent 2.2px);
    background-size: 220px 220px, 180px 180px, 300px 300px, 200px 200px, 250px 250px, 280px 280px, 160px 160px, 320px 320px, 140px 140px;
    animation: floatingDots 180s ease-in-out infinite;
    z-index: 1;
}

.demo-card-new {
    background: var(--surface);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border);
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.demo-card {
    background: var(--surface);
    border-radius: var(--radius-xl);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

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

.demo-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.demo-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.feature-tag {
    background: #170dfdcf;
    color: var(--background);
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-size: 0.7rem;
}

.demo-btn {
    background: var(--gradient-warm);
    color: #1e293b;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    box-shadow: var(--shadow);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.demo-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: #1e293b;
}

.demo-features-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.demo-features-list li {
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 3rem;
    color: var(--text-primary);
    line-height: 1.5;
    font-weight: 500;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.demo-features-list li:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 1);
}

.demo-features-list li::before {
    content: '✓';
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: #10b981;
    font-weight: bold;
    font-size: 1rem;
    width: 1.5rem;
    height: 1.5rem;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 2px 6px rgba(16, 185, 129, 0.3);
}

.demo-section .section-title {
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.demo-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.demo-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    line-height: 1.2;
}

.demo-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.template-section {
    padding: 1rem;
    height: 100%;
}

.demo-mockup-compact {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 2rem;
}

.demo-mockup-compact:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.template-intro {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.template-conclusion {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.demo-card-new .demo-btn {
    background: var(--gradient-warm);
    color: #1e293b;
    padding: 0.875rem 2rem;
    border-radius: var(--radius);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
}

.demo-card-new .demo-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: #1e293b;
}

.demo-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-mockup {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.demo-mockup:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

/* Module Sections */
.modules-overview-section {
    background: var(--surface);
}

.module-categories .row {
    margin-top: 2rem;
}

.category-card {
    background: var(--surface);
    padding: 3rem 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: 0 8px 25px -3px rgba(0, 0, 0, 0.15),
                0 4px 10px -2px rgba(0, 0, 0, 0.1),
                0 2px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border);
    height: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25),
                0 15px 30px -8px rgba(0, 0, 0, 0.15),
                0 8px 16px -4px rgba(0, 0, 0, 0.1),
                0 4px 8px -2px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-light);
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-icon {
    width: 4rem;
    height: 4rem;
    background: var(--gradient-warm);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: #1e293b;
    font-size: 1.5rem;
}

.category-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.category-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Core Modules */
.core-modules-section {
    background: var(--surface-2);
}

.core-modules .card {
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--surface);
    box-shadow: 0 8px 25px -3px rgba(0, 0, 0, 0.15),
                0 4px 10px -2px rgba(0, 0, 0, 0.1),
                0 2px 6px -1px rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.core-modules .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.core-modules .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25),
                0 15px 30px -8px rgba(0, 0, 0, 0.15),
                0 8px 16px -4px rgba(0, 0, 0, 0.1),
                0 4px 8px -2px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-light);
}

.core-modules .card:hover::before {
    transform: scaleX(1);
}

.core-modules .card-body {
    padding: 2rem 1.5rem;
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 400px;
}

.core-modules .card-content {
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.core-modules .coming-soon-badge-top-left {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    z-index: 10;
}

.core-modules .coming-soon-badge-top-left .badge {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.025em;
    box-shadow: var(--shadow-md);
}

.core-modules .card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.core-modules .card-text {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.core-modules .coming-soon-badge {
    margin-bottom: 1rem;
}

.core-modules .coming-soon-badge .badge {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.025em;
}

.core-modules .card-button {
    margin-top: auto;
    padding-top: 1rem;
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.core-module-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #ffffff;
    font-size: 2rem;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.client-module-icon {
    width: 4rem;
    height: 4rem;
     background: var(--gradient-warm);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: #1e293b;
    font-size: 2rem;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.module-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.module-features span {
    background: var(--surface-3);
    color: var(--text-secondary);
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius);
    font-size: 0.7rem;
    font-weight: 500;
    border: 1px solid var(--border);
}

/* Supporting Modules */
.supporting-modules-section {
    background: var(--surface);
}

.additional-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.additional-card {
    background: var(--surface);
    padding: 1.25rem 1rem 0.75rem 1rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px -3px rgba(0, 0, 0, 0.15),
                0 4px 10px -2px rgba(0, 0, 0, 0.1),
                0 2px 6px -1px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    min-height: 120px;
}

.additional-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25),
                0 15px 30px -8px rgba(0, 0, 0, 0.15),
                0 8px 16px -4px rgba(0, 0, 0, 0.1),
                0 4px 8px -2px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-light);
}

.additional-card .card-content {
    flex-grow: 1;
}

.additional-card .card-button {
    margin-top: auto;
    display: flex;
    justify-content: center;
}

.additional-card .supporting-demo-icon {
    font-size: 2rem;
    color: #4f46e5 !important;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 0;
}

.additional-card .supporting-demo-icon:hover {
    transform: translateY(-2px) scale(1.1);
    color: #3730a3 !important;
}

.additional-card i {
    font-size: 2rem;
    color: var(--primary);
}

.additional-card h5 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.additional-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Web Client Modules */
.web-client-modules-section {
    background: var(--surface-2);
}

.web-client-modules .card {
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--surface);
    box-shadow: 0 8px 25px -3px rgba(0, 0, 0, 0.15),
                0 4px 10px -2px rgba(0, 0, 0, 0.1),
                0 2px 6px -1px rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.web-client-modules .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.web-client-modules .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25),
                0 15px 30px -8px rgba(0, 0, 0, 0.15),
                0 8px 16px -4px rgba(0, 0, 0, 0.1),
                0 4px 8px -2px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-light);
}

.web-client-modules .card:hover::before {
    transform: scaleX(1);
}

.web-client-modules .card-body {
    padding: 2rem 1.5rem;
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 400px;
}

.web-client-modules .card-button {
    margin-top: auto;
    padding-top: 1rem;
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Pricing Section */
.pricing-section {
    background: var(--surface);
}

.pricing-card {
    background: var(--surface);
    border-radius: var(--radius-xl);
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow-xl);
    border: 3px solid var(--primary);
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.pricing-left {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.pricing-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-left: 1rem;
}

.pricing-header {
    text-align: center;
    margin-bottom: 1rem;
}

.pricing-features {
    flex-grow: 1;
    margin-bottom: 1rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #2563eb !important;
    line-height: 1;
}

.period {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-left: 0.25rem;
}

.billing-note {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.price-hint {
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-style: italic;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.pricing-guarantee {
    background: #fef3c7;
    border: 1px solid #f4d03f;
    padding: 0.875rem;
    border-radius: var(--radius);
    margin-bottom: 1rem;
    position: relative;
}

.pricing-guarantee p {
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

.pricing-cta {
    background: var(--gradient-warm);
    color: #1e293b;
    padding: 1rem 2rem;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-md);
    width: 100%;
    justify-content: center;
}

.pricing-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.pricing-features {
    line-height: 1.8rem !important;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.feature i {
    color: var(--warning);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.feature span {
    color: var(--text-primary);
    font-size: 0.7rem;
}

.purchase-process-video {
    margin-top: 0.75rem;
}
.watch-video-btn {
    background: #8f9ff154;
    color: #445fec;
    border: 2px solid #445fec;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.7rem;
    text-decoration: none;
}

.watch-video-btn:hover {
    background: #445fec;
    color: #ffffff;
    transform: translateY(-1px);
}

.watch-video-btn-yellow {
    background: #ffc1076b;
    color: #101112;
    border: 1px solid #101112;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.7rem;
    text-decoration: none;
}

.watch-video-btn-yellow:hover {
    background: var(--gradient-warm);
    transform: translateY(-1px);
}
.video-preview-btn {
    background: #8f9ff154;
    color: #445fec;
    border: 2px solid #445fec;
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius);
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    justify-content: center;
    font-size: 0.9rem;
}

.video-preview-btn:hover {
    background: #445fec;
    color: #ffffff;
    transform: translateY(-1px);
}

/* AI Agent Section */
.ai-agent-section {
    background: radial-gradient(circle at 25% 25%, rgb(31 57 216 / 21%) 0%, transparent 50%), radial-gradient(circle at 75% 75%, rgb(23 67 197 / 0%) 0%, transparent 50%), radial-gradient(circle at 50% 100%, rgb(19 28 56 / 70%) 0%, transparent 50%), linear-gradient(90deg, #0e1e6c 0%, #91277d 100%) !important;
    color:#ccdced !important;
    position: relative;
    overflow: hidden;
}

.ai-agent-section .col-lg-4 {
    position: relative;
}

.ai-network-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.ai-visual {
    text-align: center;
    position: relative;
    z-index: 3;
}

.ai-visual .bi-robot {
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3)) 
            drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2)) 
            drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
}

.ai-visual .bi-robot:hover {
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.4)) 
            drop-shadow(0 6px 12px rgba(0, 0, 0, 0.3)) 
            drop-shadow(0 3px 6px rgba(0, 0, 0, 0.2));
    transform: translateY(-2px);
}

.ai-agent-section h2 {
    color: rgb(255, 255, 255) !important;
}

.ai-agent-section h4 {
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    color: #f6c02b !important;
}

.ai-agent-section .lead {
    font-size: 1rem !important;
    font-weight: 300 !important;
}

.ai-feature-item span {
    font-size: 0.8rem;
}

.coming-soon-badge {
    margin-top: 2rem;
}

.ai-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.ai-visual {
    text-align: center;
    position: relative;
}

.coming-soon-badge {
    margin-top: 2rem;
}

/* Why & Who Sections */
.why-section,
.who-section {
    background: var(--surface-2);
}

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

.why-card,
.who-card {
    background: var(--surface);
    padding: 3rem 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: 0 8px 25px -3px rgba(0, 0, 0, 0.15),
                0 4px 10px -2px rgba(0, 0, 0, 0.1),
                0 2px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.why-card::before,
.who-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-card:hover,
.who-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25),
                0 15px 30px -8px rgba(0, 0, 0, 0.15),
                0 8px 16px -4px rgba(0, 0, 0, 0.1),
                0 4px 8px -2px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-light);
}

.why-card:hover::before,
.who-card:hover::before {
    transform: scaleX(1);
}

.why-icon {
    width: 4rem;
    height: 4rem;
    background: var(--gradient-warm);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: #1e293b;
    font-size: 1.5rem;
}

.who-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 1.5rem;
}

.why-card h3,
.who-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.why-card p,
.who-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

/* Tech Stack Section */
.simple-tech-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.simple-tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 1rem;
    background: var(--surface);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.simple-tech-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.simple-tech-item i {
    font-size: 2rem;
    color: var(--primary);
}

.simple-tech-item span {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 3rem 0 2rem;
    text-align: center;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-social a {
    width: 3rem;
    height: 3rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.25rem;
    cursor: pointer;
}

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

.footer-social a i {
    cursor: pointer;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-modal.show {
    opacity: 1;
}

.video-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 1000px;
    background: var(--surface);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-modal.show .video-modal-content {
    transform: translate(-50%, -50%) scale(1);
}

.video-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    background: rgba(0, 0, 0, 0.5);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-close:hover {
    background: rgba(0, 0, 0, 0.8);
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background-image: url('video-player.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #000;
}

.video-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.video-container.video-loaded::before {
    opacity: 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 2;
}

.video-container iframe.loaded {
    opacity: 1;
}

/* Animations */
.animate-ready {
    transform: translateY(40px);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-in {
    transform: translateY(0);
}

.slide-from-left {
    transform: translateX(-40px);
}

.slide-from-right {
    transform: translateX(40px);
}

.slide-from-left.animate-in,
.slide-from-right.animate-in {
    transform: translateX(0);
}

.slide-up-delay {
    transition-delay: 0.15s;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .additional-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .additional-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar {
        top: 0.5rem;
        left: 50%;
        transform: translateX(-50%);
        width: 95%;
        min-width: 350px;
        max-width: 98vw;
    }
    
    .navbar.hidden {
        transform: translateX(-50%) translateY(-120%);
        opacity: 0;
    }
    
    .navbar .container {
        padding: 0.5rem 0.75rem;
        justify-content: center;
    }
    
    .nav-brand {
        display: none;
    }
    
    .nav-links {
        display: flex;
        gap: 0.5rem;
        width: 100%;
        justify-content: space-evenly;
        align-items: center;
    }
    
    .nav-links a {
        font-size: 0.7rem;
        padding: 0.25rem 0.375rem;
        white-space: nowrap;
    }
    
    .cta-btn {
        display: none;
    }
    
    .language-selector {
        display: block;
        flex-shrink: 0;
    }
    
    .language-select {
        font-size: 0.6rem;
        padding: 0.25rem 0.375rem;
        min-width: 40px;
        max-width: 50px;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .demo-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }

    .logo-image {
        max-height: 90px;
    }

    .additional-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-grid,
    .who-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .simple-tech-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 0.5rem;
    }
    
    .simple-tech-item {
        padding: 0.75rem 0.5rem;
        gap: 0.375rem;
    }
    
    .simple-tech-item i {
        font-size: 1.25rem;
    }
    
    .simple-tech-item span {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.875rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }

    .logo-image {
        max-height: 90px;
    }

    .additional-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .simple-tech-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 0.375rem;
    }
    
    .simple-tech-item {
        padding: 0.5rem 0.25rem;
        gap: 0.25rem;
    }
    
    .simple-tech-item i {
        font-size: 1rem;
    }
    
    .simple-tech-item span {
        font-size: 0.6rem;
        line-height: 1.2;
    }
}

/* Module Features List - Similar to pricing features but with green check icons */
.module-features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin: 1rem 0;
    text-align: left;
    padding-left: 0.7rem;
    padding-right: 0.7rem;
}

.module-features-list .feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.module-features-list .feature i {
    color: var(--success);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.module-features-list .feature span {
    font-weight: 500;
    line-height: 1.3;
}

/* Responsive adjustments for module features */
@media (max-width: 768px) {
    .module-features-list {
        grid-template-columns: 1fr 1fr;
        gap: 0.4rem;
        margin: 0.8rem 0;
    }
    
    .module-features-list .feature {
        font-size: 0.75rem;
        gap: 0.4rem;
    }
    
    .module-features-list .feature i {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .module-features-list {
        grid-template-columns: 1fr 1fr;
        gap: 0.3rem;
        margin: 0.6rem 0;
    }
    
    .module-features-list .feature {
        font-size: 0.7rem;
        gap: 0.3rem;
    }
    
    .module-features-list .feature i {
        font-size: 0.75rem;
    }
}

/* Learn by Example Section */
.learn-example-section {
    background: 
        radial-gradient(circle at 25% 25%, rgb(59 130 246 / 15%) 0%, transparent 50%), 
        radial-gradient(circle at 75% 25%, rgb(147 51 234 / 10%) 0%, transparent 50%), 
        radial-gradient(circle at 50% 100%, rgb(236 72 153 / 8%) 0%, transparent 50%), 
        linear-gradient(135deg, #181cab 0%, #6d2b84 50%, #84136f 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.learn-example-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    width: 200%;
    height: 200%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.25) 1px, rgba(255, 255, 255, 0.05) 2px, transparent 3px),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.22) 0.5px, rgba(255, 255, 255, 0.04) 1.5px, transparent 2.5px),
        radial-gradient(circle at 40% 70%, rgba(255, 255, 255, 0.28) 1.5px, rgba(255, 255, 255, 0.06) 2.5px, transparent 4px),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.24) 1px, rgba(255, 255, 255, 0.05) 2px, transparent 3px),
        radial-gradient(circle at 10% 60%, rgba(255, 255, 255, 0.2) 0.8px, rgba(255, 255, 255, 0.04) 1.8px, transparent 2.5px);
    background-size: 220px 220px, 180px 180px, 300px 300px, 200px 200px, 250px 250px;
    animation: floatingDots 120s ease-in-out infinite;
    z-index: 1;
}

.learn-example-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-xl);
    padding: 3rem 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 8px 16px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
    color: var(--text-primary);
}

.learn-content h2 {
    color: var(--text-primary) !important;
    font-size: 2rem !important;
    font-weight: 700 !important;
}

.learn-content h4 {
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    color: #d97706 !important;
}

.learn-content .lead {
    font-size: 1rem !important;
    font-weight: 300 !important;
    color: var(--text-secondary) !important;
}



.learn-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.learn-animation-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.learn-video-preview {
    position: relative;
    z-index: 3;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #ec4899 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    margin: 0 auto;
}

.learn-video-preview * {
    cursor: pointer;
}

.learn-video-preview:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.5);
}

.video-preview-icon {
    position: relative;
    z-index: 4;
}

.video-preview-icon i {
    font-size: 4rem;
    color: white;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.video-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 5;
}

.video-duration {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    backdrop-filter: blur(10px);
}

.learn-video-btn {
    background: var(--gradient-warm);
    color: #1e293b;
    padding: 1rem 2rem;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(255, 171, 0, 0.3);
    text-decoration: none;
}

.learn-video-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(255, 171, 0, 0.4);
    color: #1e293b;
}

.learn-video-btn i {
    font-size: 1.25rem;
}

.learn-video-note {
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.learn-video-note i {
    color: #d97706;
}

/* Responsive Design for Learn by Example Section */
@media (max-width: 992px) {
    .learn-visual {
        margin-top: 2rem;
    }
    
    .learn-video-preview {
        width: 150px;
        height: 150px;
    }
    
    .video-preview-icon i {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .learn-example-card {
        padding: 2rem 1.5rem;
    }
    
    .learn-content h2 {
        font-size: 1.75rem !important;
    }
    
    .learn-content h4 {
        font-size: 1rem !important;
    }
    
    .learn-content .lead {
        font-size: 0.9rem !important;
    }
    
    .learn-visual {
        margin-top: 2rem;
    }
    
    .learn-video-preview {
        width: 120px;
        height: 120px;
    }
    
    .video-preview-icon i {
        font-size: 2.5rem;
    }
    
    .learn-video-btn {
        font-size: 0.9rem;
        padding: 0.75rem 1.25rem;
    }
}

@media (max-width: 480px) {
    .learn-example-card {
        padding: 1.5rem 1rem;
    }
    
    .learn-content h2 {
        font-size: 1.5rem !important;
    }
    
    .learn-content h4 {
        font-size: 0.9rem !important;
    }
    
    .learn-video-btn {
        font-size: 0.8rem;
        padding: 0.625rem 1rem;
    }
}
