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

:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --secondary-color: #8b5cf6;
    --accent-color: #06b6d4;
    --accent-pink: #ec4899;
    --accent-orange: #f97316;
    --accent-yellow: #eab308;
    --accent-green: #10b981;
    --accent-purple: #a855f7;
    --accent-blue: #3b82f6;
    --accent-teal: #14b8a6;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-dark: #111827;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #06b6d4 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-sunset: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-ocean: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    --gradient-fire: linear-gradient(135deg, #ff6b6b 0%, #feca57 100%);
    --gradient-forest: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --gradient-sky: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    --gradient-lavender: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
    --gradient-coral: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    --gradient-teal: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem;
	 color: #FFFFFF	}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
    animation: pulse 2s infinite;
}

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

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

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.3);
    animation: none;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
    z-index: -1;
}

.btn-secondary:hover::before {
    width: 100%;
}

.btn-secondary:hover {
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 30px rgba(99, 102, 241, 0.2);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-logo i {
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-buttons {
    display: flex;
    gap: 1rem;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 90px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.03) 0%, rgba(139, 92, 246, 0.03) 50%, rgba(6, 182, 212, 0.03) 100%);
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: slideInLeft 1s ease-out;
}

.gradient-text {
    background: var(--gradient-primary);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
    animation: slideInLeft 1s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: slideInLeft 1s ease-out 0.4s both;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    animation: slideInLeft 1s ease-out 0.6s both;
}

.stat {
    text-align: center;
    position: relative;
}

.stat::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: var(--gradient-primary);
    border-radius: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.stat:hover::before {
    opacity: 0.1;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: countUp 2s ease-out;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

/* Chat Interface */
.chat-interface {
    background: white;
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid var(--border-color);
    max-width: 400px;
    margin: 0 auto;
}

.chat-header {
    background: var(--gradient-primary);
    color: white;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-info h4 {
    margin: 0;
    font-size: 1rem;
}

.status {
    font-size: 0.875rem;
    opacity: 0.8;
}

.chat-messages {
    padding: 1rem;
    max-height: 300px;
    overflow-y: auto;
}

.message {
    margin-bottom: 1rem;
}

.user-message {
    text-align: right;
}

.user-message .message-content {
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 1rem 1rem 0.25rem 1rem;
    display: inline-block;
    max-width: 80%;
    font-weight: 500;
}

.user-message .message-content p {
    color: white;
    margin: 0;
    font-weight: 500;
}

.ai-message .message-content {
    background: var(--bg-secondary);
    padding: 0.75rem 1rem;
    border-radius: 1rem 1rem 1rem 0.25rem;
    max-width: 80%;
}

.ai-message .message-content p {
    color: var(--text-primary);
    margin: 0;
    font-weight: 500;
    line-height: 1.5;
}

.message-actions {
    margin-top: 0.5rem;
}

.action-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.chat-input {
    padding: 1rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 0.5rem;
}

.chat-input input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    outline: none;
}

.send-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem;
    border-radius: 0.5rem;
    cursor: pointer;
}

/* Hero Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: var(--gradient-primary);
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 200px;
    height: 200px;
    background: var(--gradient-secondary);
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.orb-3 {
    width: 150px;
    height: 150px;
    background: var(--gradient-accent);
    top: 60%;
    right: 20%;
    animation-delay: 4s;
}

/* Floating Particles */
.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
    animation: particleFloat 20s ease-in-out infinite;
}

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

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0.02;
    animation: gradientShift 8s ease-in-out infinite;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.feature-card:nth-child(1) .feature-icon {
    background: var(--gradient-primary);
    animation: bounce 2s infinite;
}

.feature-card:nth-child(2) .feature-icon {
    background: var(--gradient-sky);
    animation: bounce 2s infinite 0.2s;
}

.feature-card:nth-child(3) .feature-icon {
    background: var(--gradient-forest);
    animation: bounce 2s infinite 0.4s;
}

.feature-card:nth-child(4) .feature-icon {
    background: var(--gradient-coral);
    animation: bounce 2s infinite 0.6s;
}

.feature-card:nth-child(5) .feature-icon {
    background: var(--gradient-lavender);
    animation: bounce 2s infinite 0.8s;
}

.feature-card:nth-child(6) .feature-icon {
    background: var(--gradient-teal);
    animation: bounce 2s infinite 1s;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.feature-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: transform 0.6s;
}

.feature-card:hover .feature-icon::after {
    transform: rotate(45deg) translate(50%, 50%);
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
    z-index: 1;
    position: relative;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

/* Multimodal Section */
.multimodal {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.multimodal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-ocean);
    opacity: 0.02;
    animation: gradientShift 10s ease-in-out infinite reverse;
}

.multimodal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.multimodal-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--border-color);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.multimodal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.multimodal-card:hover::before {
    opacity: 0.05;
}

.multimodal-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.multimodal-card:nth-child(1) .multimodal-icon {
    background: var(--gradient-primary);
    animation: rotate 4s linear infinite;
}

.multimodal-card:nth-child(2) .multimodal-icon {
    background: var(--gradient-sky);
    animation: pulse 2s ease-in-out infinite;
}

.multimodal-card:nth-child(3) .multimodal-icon {
    background: var(--gradient-forest);
    animation: bounce 2s ease-in-out infinite;
}

.multimodal-card:nth-child(4) .multimodal-icon {
    background: var(--gradient-coral);
    animation: shake 3s ease-in-out infinite;
}

.multimodal-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    overflow: hidden;
}

.multimodal-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: rotate(45deg);
    transition: transform 0.8s;
}

.multimodal-card:hover .multimodal-icon::after {
    transform: rotate(45deg) translate(50%, 50%);
}

.multimodal-icon i {
    font-size: 2rem;
    color: white;
    z-index: 1;
    position: relative;
}

.multimodal-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.multimodal-demo {
    margin-top: 1.5rem;
}

.demo-image, .demo-file, .demo-audio, .demo-video {
    background: var(--bg-secondary);
    border: 2px dashed var(--border-color);
    border-radius: 0.5rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.demo-image:hover::before, .demo-file:hover::before, .demo-audio:hover::before, .demo-video:hover::before {
    left: 100%;
}

.demo-image:hover, .demo-file:hover, .demo-audio:hover, .demo-video:hover {
    border-color: var(--primary-color);
    background: rgba(99, 102, 241, 0.05);
    transform: scale(1.05);
}

.demo-image i, .demo-file i, .demo-audio i, .demo-video i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.demo-image:hover i, .demo-file:hover i, .demo-audio:hover i, .demo-video:hover i {
    transform: scale(1.2);
    color: var(--accent-color);
}

/* Use Cases Section */
.use-cases {
    padding: 6rem 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.use-cases::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-ocean);
    opacity: 0.02;
    animation: gradientShift 10s ease-in-out infinite;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.use-case-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.use-case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.use-case-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.use-case-card:nth-child(1) .use-case-icon {
    background: var(--gradient-primary);
    animation: bounce 2s infinite;
}

.use-case-card:nth-child(2) .use-case-icon {
    background: var(--gradient-sky);
    animation: bounce 2s infinite 0.2s;
}

.use-case-card:nth-child(3) .use-case-icon {
    background: var(--gradient-forest);
    animation: bounce 2s infinite 0.4s;
}

.use-case-card:nth-child(4) .use-case-icon {
    background: var(--gradient-coral);
    animation: bounce 2s infinite 0.6s;
}

.use-case-card:nth-child(5) .use-case-icon {
    background: var(--gradient-lavender);
    animation: bounce 2s infinite 0.8s;
}

.use-case-card:nth-child(6) .use-case-icon {
    background: var(--gradient-teal);
    animation: bounce 2s infinite 1s;
}

.use-case-icon {
    width: 60px;
    height: 60px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.use-case-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: transform 0.6s;
}

.use-case-card:hover .use-case-icon::after {
    transform: rotate(45deg) translate(50%, 50%);
}

.use-case-icon i {
    font-size: 1.5rem;
    color: white;
    z-index: 1;
    position: relative;
}

.use-case-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.use-case-card ul {
    list-style: none;
}

.use-case-card li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.use-case-card li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Pricing Section */
.pricing {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-sunset);
    opacity: 0.02;
    animation: gradientShift 12s ease-in-out infinite;
}

.beta-banner {
    background: var(--gradient-primary);
    background-size: 200% 200%;
    color: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-lg);
    animation: gradientShift 4s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.beta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 2s ease-in-out infinite;
}

.beta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.beta-content i {
    font-size: 2rem;
}

.beta-content h3 {
    font-size: 1.5rem;
    margin: 0;
    color: white;
    font-weight: 700;
}

.beta-content p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    font-weight: 500;
    line-height: 1.5;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

.pricing-card {
    background: white;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    overflow: visible;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 600px;
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
    animation: featuredPulse 3s ease-in-out infinite;
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-primary);
    background-size: 200% 200%;
    border-radius: 1rem;
    z-index: -1;
    animation: gradientShift 3s ease-in-out infinite;
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.beta-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 2;
}

.pricing-header {
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    z-index: 1;
}

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

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

.currency {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.period {
    font-size: 1rem;
    color: var(--text-secondary);
}

.pricing-header p {
    color: var(--text-secondary);
    margin: 0;
    font-weight: 500;
}

.pricing-features {
    padding: 2rem;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.pricing-features ul {
    list-style: none;
}

.pricing-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
    font-weight: 500;
}

.pricing-features i {
    color: var(--primary-color);
    font-size: 1.125rem;
}

.pricing-card button {
    margin: 0 2rem 2rem;
    align-self: center;
    min-width: 200px;
    white-space: nowrap;
    overflow: visible;
    position: relative;
    z-index: 1;
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

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

.faq-item {
    background: white;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-secondary);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.125rem;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

/* Contact Section */
.contact {
    padding: 6rem 0;
}

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

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

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

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.contact-form h3 {
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary-color);
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo i {
    color: var(--primary-color);
}

.footer-section p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    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 ease;
}

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

.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

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

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hamburger {
        display: flex !important;
        flex-direction: column;
        cursor: pointer;
        z-index: 2001;
    }

    .nav-menu {
        display: none;
    }

    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        left: 0;
        top: 70px;
        width: 100vw;
        background: white;
        z-index: 2000;
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        padding: 2rem 0;
    }

    .nav-buttons {
        display: none;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex !important;
        flex-direction: column;
        cursor: pointer;
        z-index: 2001;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        z-index: 2000;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-buttons {
        display: none;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .features-grid,
    .multimodal-grid,
    .use-cases-grid,
    .chatgpt-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .contact-stats {
        justify-content: center;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: none;
    }

    /* Small screen image adjustments */
    .hero-demo-img {
        max-width: 90%;
    }

    .feature-img,
    .multimodal-img,
    .use-case-img {
        max-width: 100px;
    }

    .chatgpt-feature-img {
        max-width: 80px;
    }

    .feature-image,
    .multimodal-image,
    .use-case-image,
    .chatgpt-feature-image {
        margin: 0.5rem 0;
        padding: 0.5rem;
        min-height: 90px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .contact-stats {
        flex-direction: column;
        gap: 1rem;
    }

    /* Small screen image adjustments */
    .hero-demo-img {
        max-width: 85%;
    }

    .feature-img,
    .multimodal-img,
    .use-case-img {
        max-width: 60px;
    }

    .chatgpt-feature-img {
        max-width: 50px;
    }

    .feature-image,
    .multimodal-image,
    .use-case-image,
    .chatgpt-feature-image {
        margin: 0.75rem 0;
        padding: 0.5rem;
        min-height: 70px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Adjust card padding for smaller screens */
    .feature-card,
    .multimodal-card,
    .use-case-card,
    .chatgpt-feature-card {
        padding: 1.5rem;
    }

    /* Adjust grid gaps for smaller screens */
    .features-grid,
    .multimodal-grid,
    .use-cases-grid,
    .chatgpt-features-grid {
        gap: 1rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

.hero-content {
    animation: fadeInLeft 1s ease-out;
}

.hero-visual {
    animation: fadeInRight 1s ease-out;
}

.feature-card,
.multimodal-card,
.use-case-card,
.pricing-card {
    animation: fadeInUp 0.6s ease-out;
}

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

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

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

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

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

@keyframes featuredPulse {
    0%, 100% {
        box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
    }
    50% {
        box-shadow: 0 20px 40px rgba(99, 102, 241, 0.4);
    }
}

@keyframes shimmer {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(100%);
    }
}

@keyframes particleFloat {
    from {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(10px, 10px);
    }
    100% {
        transform: translate(0, 0);
    }
}

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

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

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

@keyframes pulse {
    from {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes shake {
    from {
        transform: translateX(0);
    }
    10% {
        transform: translateX(-5px);
    }
    20% {
        transform: translateX(5px);
    }
    30% {
        transform: translateX(-5px);
    }
    40% {
        transform: translateX(5px);
    }
    50% {
        transform: translateX(0);
    }
}

.pricing-card.featured .pricing-header h3 {
    color: white;
    font-weight: 700;
}

.pricing-card.featured .pricing-header p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 500;
}

.pricing-card.featured .currency {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-card.featured .amount {
    color: white;
}

.pricing-card.featured .period {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-card.featured .pricing-features li {
    color: white;
    font-weight: 500;
}

.pricing-card.featured .pricing-features i {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
}

/* ChatGPT Features Section */
.chatgpt-features {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.02) 0%, rgba(139, 92, 246, 0.02) 50%, rgba(6, 182, 212, 0.02) 100%);
    position: relative;
    overflow: hidden;
}

.chatgpt-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0.01;
    animation: gradientShift 15s ease-in-out infinite;
}

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

.chatgpt-feature-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.chatgpt-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.chatgpt-feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Different colored icons for each feature card */
.chatgpt-feature-card:nth-child(1) .chatgpt-feature-icon {
    background: var(--gradient-primary);
    animation: bounce 2s infinite;
}

.chatgpt-feature-card:nth-child(2) .chatgpt-feature-icon {
    background: var(--gradient-sky);
    animation: bounce 2s infinite 0.2s;
}

.chatgpt-feature-card:nth-child(3) .chatgpt-feature-icon {
    background: var(--gradient-forest);
    animation: bounce 2s infinite 0.4s;
}

.chatgpt-feature-card:nth-child(4) .chatgpt-feature-icon {
    background: var(--gradient-coral);
    animation: bounce 2s infinite 0.6s;
}

.chatgpt-feature-card:nth-child(5) .chatgpt-feature-icon {
    background: var(--gradient-lavender);
    animation: bounce 2s infinite 0.8s;
}

.chatgpt-feature-card:nth-child(6) .chatgpt-feature-icon {
    background: var(--gradient-teal);
    animation: bounce 2s infinite 1s;
}

.chatgpt-feature-card:nth-child(7) .chatgpt-feature-icon {
    background: var(--gradient-fire);
    animation: bounce 2s infinite 1.2s;
}

.chatgpt-feature-card:nth-child(8) .chatgpt-feature-icon {
    background: var(--gradient-sunset);
    animation: bounce 2s infinite 1.4s;
}

.chatgpt-feature-card:nth-child(9) .chatgpt-feature-icon {
    background: var(--gradient-ocean);
    animation: bounce 2s infinite 1.6s;
}

.chatgpt-feature-card:nth-child(10) .chatgpt-feature-icon {
    background: var(--gradient-secondary);
    animation: bounce 2s infinite 1.8s;
}

.chatgpt-feature-card:nth-child(11) .chatgpt-feature-icon {
    background: var(--gradient-accent);
    animation: bounce 2s infinite 2s;
}

.chatgpt-feature-card:nth-child(12) .chatgpt-feature-icon {
    background: linear-gradient(135deg, var(--accent-green), var(--accent-blue));
    animation: bounce 2s infinite 2.2s;
}

.chatgpt-feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.chatgpt-feature-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: transform 0.6s;
}

.chatgpt-feature-card:hover .chatgpt-feature-icon::after {
    transform: rotate(45deg) translate(50%, 50%);
}

.chatgpt-feature-icon i {
    font-size: 1.5rem;
    color: white;
    z-index: 1;
    position: relative;
}

.chatgpt-feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 700;
}

.chatgpt-feature-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.chatgpt-feature-card li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.chatgpt-feature-card li::before {
    content: "✓";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1rem;
}

.chatgpt-feature-card:hover li {
    color: var(--text-primary);
    transition: color 0.3s ease;
}

/* Hero Image */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    transition: all 0.3s ease;
}

.hero-demo-img {
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
    filter: drop-shadow(0 10px 30px rgba(99, 102, 241, 0.3));
    transition: all 0.3s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-demo-img:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 15px 40px rgba(99, 102, 241, 0.4));
}

/* Feature Image Styles */
.feature-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0.5rem 0;
    padding: 0.5rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.feature-img {
    max-width: 180px;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(99, 102, 241, 0.2));
    transition: all 0.3s ease;
    border-radius: 0.5rem;
}

.feature-card:hover .feature-image {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    transform: scale(1.05);
}

.feature-card:hover .feature-img {
    filter: drop-shadow(0 10px 25px rgba(99, 102, 241, 0.4));
    transform: scale(1.1);
}

/* Multimodal Image Styles */
.multimodal-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0.5rem 0;
    padding: 0.5rem;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.05) 0%, rgba(20, 184, 166, 0.05) 100%);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.multimodal-img {
    max-width: 160px;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(6, 182, 212, 0.2));
    transition: all 0.3s ease;
    border-radius: 0.5rem;
}

.multimodal-card:hover .multimodal-image {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(20, 184, 166, 0.1) 100%);
    transform: scale(1.05);
}

.multimodal-card:hover .multimodal-img {
    filter: drop-shadow(0 10px 25px rgba(6, 182, 212, 0.4));
    transform: scale(1.1);
}

/* Use Case Image Styles */
.use-case-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0.5rem 0;
    padding: 0.5rem;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.05) 0%, rgba(168, 85, 247, 0.05) 100%);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.use-case-img {
    max-width: 160px;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(236, 72, 153, 0.2));
    transition: all 0.3s ease;
    border-radius: 0.5rem;
}

.use-case-card:hover .use-case-image {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
    transform: scale(1.05);
}

.use-case-card:hover .use-case-img {
    filter: drop-shadow(0 10px 25px rgba(236, 72, 153, 0.4));
    transform: scale(1.1);
}

/* Privacy Visual */
.privacy-visual {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
}

.shield-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shield-container i {
    font-size: 3rem;
    color: #4CAF50;
    z-index: 2;
}

.security-layers {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.layer {
    position: absolute;
    border: 2px solid rgba(76, 175, 80, 0.3);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.layer:nth-child(1) {
    width: 60px;
    height: 60px;
    animation-delay: 0s;
}

.layer:nth-child(2) {
    width: 80px;
    height: 80px;
    animation-delay: 0.5s;
}

.layer:nth-child(3) {
    width: 100px;
    height: 100px;
    animation-delay: 1s;
}

/* Video Demo */
.video-demo {
    position: relative;
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
}

.video-frame {
    width: 100%;
    height: 150px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.video-frame i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.analysis-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-demo:hover .analysis-overlay {
    opacity: 1;
}

.scene-detection {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
}

.scene-detection span {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* ChatGPT Feature Image Styles */
.chatgpt-feature-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0.5rem 0;
    padding: 0.5rem;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.chatgpt-feature-img {
    max-width: 140px;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(168, 85, 247, 0.2));
    transition: all 0.3s ease;
    border-radius: 0.5rem;
}

.chatgpt-feature-card:hover .chatgpt-feature-image {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    transform: scale(1.05);
}

.chatgpt-feature-card:hover .chatgpt-feature-img {
    filter: drop-shadow(0 10px 25px rgba(168, 85, 247, 0.4));
    transform: scale(1.1);
}