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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #000000;
    background: #FFFFFF;
    overflow-x: hidden;
    /* Performance optimizations */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeSpeed;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Focus styles for accessibility */
*:focus {
    outline: 2px solid #8B5CF6;
    outline-offset: 2px;
}

*:focus:not(:focus-visible) {
    outline: none;
}

*:focus-visible {
    outline: 2px solid #8B5CF6;
    outline-offset: 2px;
}

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

/* Skip to content link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #8B5CF6;
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 10000;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 6px;
}

/* Text Selection Style */
::selection {
    background: #8B5CF6;
    color: white;
    text-shadow: none;
}

::-moz-selection {
    background: #8B5CF6;
    color: white;
    text-shadow: none;
}

/* Background Elements */
.bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top, #f8f7ff 0%, #ffffff 50%),
                radial-gradient(ellipse at bottom right, #f3e8ff 0%, transparent 50%),
                radial-gradient(ellipse at bottom left, #faf5ff 0%, transparent 50%);
    z-index: -2;
    animation: gradientShift 20s ease-in-out infinite;
    /* Performance optimizations */
    will-change: auto;
    contain: layout style paint;
}

@keyframes gradientShift {
    0%, 100% {
        background: radial-gradient(ellipse at top, #f8f7ff 0%, #ffffff 50%),
                    radial-gradient(ellipse at bottom right, #f3e8ff 0%, transparent 50%),
                    radial-gradient(ellipse at bottom left, #faf5ff 0%, transparent 50%);
    }
    50% {
        background: radial-gradient(ellipse at top left, #f3e8ff 0%, #ffffff 50%),
                    radial-gradient(ellipse at bottom right, #faf5ff 0%, transparent 50%),
                    radial-gradient(ellipse at bottom left, #f3e8ff 0%, transparent 50%);
    }
}

.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.shape {
    position: absolute;
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
    border-radius: 50%;
    opacity: 0.05;
    animation: float 15s ease-in-out infinite;
    filter: blur(1px);
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -150px;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: -100px;
    animation-delay: -5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 80%;
    left: 20%;
    animation-delay: -10s;
}

.shape-4 {
    width: 250px;
    height: 250px;
    top: 30%;
    right: 10%;
    animation-delay: -7s;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) rotate(0deg); 
    }
    33% { 
        transform: translateY(-30px) translateX(20px) rotate(120deg); 
    }
    66% { 
        transform: translateY(20px) translateX(-20px) rotate(240deg); 
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(30px);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% { filter: drop-shadow(0 0 5px rgba(139, 92, 246, 0.3)); }
    50% { filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.6)); }
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-link {
    color: rgba(0, 0, 0, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #8B5CF6;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
    transition: width 0.3s ease;
}

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

/* Language Dropdown */
.language-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 8px 12px;
    color: #000000;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dropdown-toggle:hover {
    background: rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.15);
}

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

.dropdown-toggle.open .dropdown-arrow {
    transform: rotate(180deg);
}

.flag-icon {
    font-size: 1rem;
    line-height: 1;
}

.lang-text {
    font-weight: 500;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 4px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 8px;
    min-width: 140px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    background: transparent;
    border: none;
    color: rgba(0, 0, 0, 0.8);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.dropdown-item:hover {
    background: rgba(139, 92, 246, 0.1);
    color: #000000;
}

.dropdown-item.active {
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
    color: white !important;
}

.dropdown-item.active:hover {
    background: linear-gradient(135deg, #9333ea, #a855f7);
    color: white !important;
}

.cta-button-small {
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
    color: white !important;
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.cta-button-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.6);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 30px;
    position: relative;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    animation: fadeInUp 1s ease-out;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { 
        box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.4);
    }
    50% { 
        box-shadow: 0 0 0 10px rgba(139, 92, 246, 0);
    }
}

.badge-icon {
    animation: bounce 2s ease-in-out infinite;
}

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

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.2s both;
    color: #000000;
}

.gradient-text {
    background: linear-gradient(135deg, #7C3AED, #9333EA, #A855F7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientMove 3s ease-in-out infinite;
    background-size: 200% 200%;
    filter: brightness(1.2) saturate(1.3);
}

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

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(0, 0, 0, 0.85);
    margin-bottom: 3rem;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.4s both;
    font-weight: 500;
}

.hero-cta {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.waitlist-form, .waitlist-form-final {
    margin-bottom: 1rem;
}

.input-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.email-input {
    flex: 1;
    min-width: 250px;
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    color: #000000;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.email-input:focus {
    outline: none;
    border-color: #8B5CF6;
    background: rgba(139, 92, 246, 0.05);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
    transform: translateY(-2px);
}

.email-input::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.cta-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
    color: white !important;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
    position: relative;
    overflow: hidden;
}

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

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

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(139, 92, 246, 0.6);
}

.cta-button:active {
    transform: translateY(-1px);
}

.waitlist-info {
    color: rgba(0, 0, 0, 0.6);
    font-size: 0.875rem;
}

.counter {
    color: #8B5CF6;
    font-weight: 600;
    animation: countUp 2s ease-out;
}

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

/* Hero Visual */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    animation: fadeInRight 1s ease-out 0.8s both;
    position: relative;
    margin-top: 50px;
}

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

.mockup-container {
    position: relative;
    max-width: 500px;
    animation: floatUpGentle 6s ease-in-out infinite;
    z-index: 10;
}

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

.mockup-window {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.window-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

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

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

.window-title {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.8);
}

.window-content {
    display: flex;
    height: 300px;
}

.sidebar {
    width: 200px;
    background: rgba(0, 0, 0, 0.02);
    padding: 16px;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 4px;
    color: rgba(0, 0, 0, 0.7);
}

.sidebar-item:hover {
    background: rgba(139, 92, 246, 0.08);
}

.sidebar-item.active {
    background: rgba(139, 92, 246, 0.2);
    color: #8B5CF6;
}

.main-content {
    flex: 1;
    padding: 16px;
}

.interview-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 16px;
}

.interview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.candidate-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
}

.candidate-name {
    font-weight: 600;
    font-size: 0.875rem;
    color: #000000;
}

.interview-type {
    font-size: 0.75rem;
    color: rgba(0, 0, 0, 0.6);
}

.status-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.status-badge.live {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    animation: livePulse 2s ease-in-out infinite;
}

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

.ai-insights {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.insight-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.insight-label {
    font-size: 0.75rem;
    color: rgba(0, 0, 0, 0.6);
    min-width: 60px;
}

.progress-bar {
    flex: 1;
    height: 6px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
    border-radius: 3px;
    animation: progressFill 2s ease-out;
}

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

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 5;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    animation: floatCardGentle 4s ease-in-out infinite;
}

.card-1 {
    top: 60px;
    right: -200px;
    animation-delay: 0s;
}

.card-2 {
    top: 70%;
    left: -230px;
    animation-delay: 1s;
}

.card-3 {
    bottom: 20px;
    right: -160px;
    animation-delay: 2s;
}

@keyframes floatCardGentle {
    0%, 100% { 
        transform: translateY(0px);
        opacity: 0.8;
    }
    50% { 
        transform: translateY(-8px);
        opacity: 1;
    }
}

.card-icon {
    font-size: 1.5rem;
}

.card-content {
    font-size: 0.75rem;
}

.card-title {
    font-weight: 600;
    margin-bottom: 2px;
    color: #000000;
}

.card-subtitle {
    color: rgba(0, 0, 0, 0.6);
}

/* Benefits Section */
.benefits {
    padding: 120px 0;
    background: rgba(0, 0, 0, 0.01);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.benefits-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    animation: fadeInUp 1s ease-out;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.benefits-card:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.15);
}

.benefits-card:hover .benefits-icon {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.25), rgba(168, 85, 247, 0.25));
    border-color: rgba(139, 92, 246, 0.4);
}

.benefits-card:hover .benefits-icon svg {
    color: #8B5CF6;
    transform: scale(1.1);
}

.benefits-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.benefits-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(168, 85, 247, 0.15));
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    flex-shrink: 0;
}

.benefits-icon svg {
    color: #A855F7;
    transition: all 0.3s ease;
}

.benefits-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    margin: 0;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem 0;
    color: rgba(0, 0, 0, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 500;
}

.benefit-check {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.benefit-check svg {
    color: #22c55e;
    width: 12px;
    height: 12px;
}

/* About Section */
.about {
    padding: 120px 0;
    background: rgba(0, 0, 0, 0.01);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-text {
    animation: fadeInUp 1s ease-out;
}

.about-description {
    color: rgba(0, 0, 0, 0.85);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-weight: 500;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.about-stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.about-stat:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.1);
}

.about-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.about-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.about-card:hover {
    transform: translateY(-10px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.1);
}

.about-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.about-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000000;
}

.about-card p {
    color: rgba(0, 0, 0, 0.85);
    line-height: 1.6;
    font-weight: 500;
}

/* FAQ Section */
.faq {
    padding: 120px 0;
    background: rgba(0, 0, 0, 0.01);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.1);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    color: #000000;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #8B5CF6;
}

.faq-icon {
    color: #8B5CF6;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: rgba(0, 0, 0, 0.02);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 1rem 2rem 2rem;
}

.faq-answer p {
    color: rgba(0, 0, 0, 0.85);
    line-height: 1.7;
    margin: 0;
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: rgba(0, 0, 0, 0.005);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info {
    animation: fadeInUp 1s ease-out;
}

.contact-description {
    color: rgba(0, 0, 0, 0.85);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    font-weight: 500;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white !important;
    flex-shrink: 0;
}

.contact-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: rgba(0, 0, 0, 0.85);
    margin: 0;
    font-weight: 500;
}

.contact-link {
    color: #8B5CF6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #A855F7;
}

.contact-form-container {
    animation: fadeInUp 1s ease-out 0.2s both;
}

.contact-form {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    color: #000000;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    color: #000000;
    font-size: 1rem;
    transition: all 0.3s ease;
    resize: vertical;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #8B5CF6;
    background: rgba(139, 92, 246, 0.05);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.form-submit {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
    color: white !important;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
    width: 100%;
    justify-content: center;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(139, 92, 246, 0.6);
}

/* Features Section */
.features {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    animation: fadeInUp 1s ease-out;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000000;
}

.section-subtitle {
    font-size: 1.25rem;
    color: rgba(0, 0, 0, 0.85);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 500;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #8B5CF6, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: white !important;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.4);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #000000;
}

.feature-description {
    color: rgba(0, 0, 0, 0.85);
    line-height: 1.6;
    font-weight: 500;
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.02);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 32px;
    text-align: center;
}

.stat-item {
    animation: fadeInUp 1s ease-out;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    animation: countUp 2s ease-out;
    word-break: keep-all;
    white-space: nowrap;
}

.stat-label {
    color: rgba(0, 0, 0, 0.7);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
}

/* Final CTA Section */
.final-cta {
    padding: 120px 0;
    text-align: center;
    position: relative;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

.cta-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #000000;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: rgba(0, 0, 0, 0.85);
    margin-bottom: 3rem;
    font-weight: 500;
}

.waitlist-form-final {
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.6);
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(0, 0, 0, 0.02);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-left {
    flex: 1;
    max-width: 400px;
}

.footer-description {
    color: rgba(0, 0, 0, 0.6);
    margin-top: 16px;
    line-height: 1.6;
}

.footer-right {
    flex: 0 0 auto;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-link {
    color: rgba(0, 0, 0, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #8B5CF6;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    color: rgba(0, 0, 0, 0.5);
    font-size: 0.875rem;
}

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

.modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    transform: scale(0.8);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.modal.show .modal-content {
    transform: scale(1);
}

.modal-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: bounce 1s ease-in-out;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #000000;
}

.modal-text {
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 32px;
    line-height: 1.6;
}

.modal-button {
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
    color: white !important;
    padding: 12px 32px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        padding: 1rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .nav-link {
        display: none;
    }
    
    .language-dropdown {
        display: none;
    }
    
    .window-content {
        flex-direction: column;
        height: auto;
    }
    
    .sidebar {
        width: 100%;
        height: auto;
        padding: 12px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .main-content {
        width: 100%;
        padding: 12px;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .input-group {
        flex-direction: column;
    }
    
    .email-input {
        min-width: auto;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .feature-card {
        padding: 24px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        margin: 32px 0;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .footer-left {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .footer-right {
        text-align: center;
    }
    
    .floating-card {
        display: none;
    }
    
    .shape {
        display: none;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .contact-details {
        align-items: center;
    }
    
    .contact-item {
        justify-content: center;
        text-align: left;
    }
    
    .faq-question {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 1rem 1.5rem 1.5rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    body {
        overflow-x: hidden;
    }
    
    .container {
        padding: 0 16px;
        max-width: 100%;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin: 24px 0;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-submit {
        padding: 0.875rem 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .benefits-card {
        padding: 2rem;
    }
    
    .benefits-title {
        font-size: 1.25rem;
    }
    
    .benefit-item {
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 20px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    /* Ensure no horizontal overflow */
    * {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Fix any potential overflow from mockup */
    .mockup-container, .mockup-window, .window-content {
        max-width: 100%;
        overflow: hidden;
    }
    
    .hero-visual {
        max-width: 100%;
        padding: 0 10px;
    }
    
    .about-visual {
        max-width: 100%;
        padding: 0 10px;
    }
}


/* Success Message Styles */
.success-message {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 12px;
    color: white;
    animation: fadeInUp 0.6s ease-out;
}

.success-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.success-text h3 {
    margin: 0 0 4px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #22c55e !important;
}

.success-text p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.7);
}

.form-success {
    justify-content: center;
}

/* Form Error Styles */
.form-error {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    margin-bottom: 20px;
    color: white;
    animation: shake 0.5s ease-in-out, fadeInUp 0.3s ease-out;
}

.error-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.error-text {
    font-size: 0.9rem;
    color: #fca5a5 !important;
    font-weight: 500;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

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

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

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

/* Hover effects for interactive elements */
.interactive:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* Mouse Trail Effect */
.mouse-trail {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: screen;
}

.trail-star {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, #8B5CF6 0%, #A855F7 50%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    animation: starTrail 0.6s ease-out forwards;
    box-shadow: 0 0 6px #8B5CF6;
}

@keyframes starTrail {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0.2);
    }
}

.shooting-star {
    position: absolute;
    width: 2px;
    height: 20px;
    background: linear-gradient(to bottom, #8B5CF6, transparent);
    border-radius: 50%;
    opacity: 0;
    animation: shootingStar 0.8s ease-out forwards;
    transform-origin: top center;
}

@keyframes shootingStar {
    0% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
    100% {
        opacity: 0;
        transform: scale(0.3) rotate(45deg);
    }
}

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

::-webkit-scrollbar-track {
    background: #FFFFFF;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #A855F7, #EC4899);
}

/* Demo CTA Styles */
.demo-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
}

.demo-button, .demo-button-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: white !important;
    transition: all 0.3s ease;
}

.demo-button:hover, .demo-button-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.demo-features {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.demo-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(0, 0, 0, 0.85);
    font-size: 0.9rem;
    font-weight: 500;
}

.demo-icon {
    font-size: 1.1rem;
}

.demo-info {
    color: rgba(0, 0, 0, 0.7);
    font-size: 1rem;
    text-align: center;
}

.demo-info .counter {
    color: #8B5CF6;
    font-weight: 700;
}

/* Final CTA Demo Styles */
.demo-cta-final {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.cta-benefits {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-benefit {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(0, 0, 0, 0.85);
    font-size: 0.95rem;
    font-weight: 500;
}

.benefit-icon {
    font-size: 1.2rem;
}

/* Responsive Demo Styles */
@media (max-width: 768px) {
    .demo-features {
        gap: 1rem;
    }
    
    .demo-feature {
        font-size: 0.85rem;
    }
    
    .cta-benefits {
        gap: 1rem;
    }
    
    .cta-benefit {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .demo-features {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .cta-benefits {
        flex-direction: column;
        gap: 0.8rem;
    }
}