* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --secondary: #10b981;
    --dark: #111827;
    --light: #f9fafb;
    --text: #374151;
    --border: #e5e7eb;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text);
    line-height: 1.6;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

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

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

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

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

.nav-links a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s;
}

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

.btn-primary {
    background: var(--primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff20" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,133.3C960,128,1056,96,1152,90.7C1248,85,1344,107,1392,117.3L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

/* Floating badges container */
.floating-badges {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Individual badge styling */
.floating-badges .badge {
    position: absolute;
    padding: 0.4rem 0.8rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    animation: floatBadge 20s ease-in-out infinite;
    white-space: nowrap;
    transition: all 0.3s ease;
}

/* Subtle hover effect for nearby interaction */
.floating-badges .badge:hover {
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transform: scale(1.05);
}

/* Floating animation */
@keyframes floatBadge {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-15px) translateX(10px);
    }
    50% {
        transform: translateY(10px) translateX(-5px);
    }
    75% {
        transform: translateY(-10px) translateX(15px);
    }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #ffffff, #e0e0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.demo-video {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Animation Container Styles */
.animation-container {
    background: #0a0a0a;
    border-radius: 12px;
    height: 500px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Animation area badges */
.animation-badges {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.animation-badges .badge {
    position: absolute;
    padding: 0.35rem 0.7rem;
    background: rgba(102, 126, 234, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 16px;
    color: rgba(102, 126, 234, 0.6);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.1);
    animation: floatBadge 15s ease-in-out infinite;
    white-space: nowrap;
}

.workflow-container {
    position: relative;
    width: 100%;
    height: 100%;
    perspective: 1200px;
    z-index: 10;
}

/* Slide Title */
.slide-title {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.95);
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 30;
    width: 100%;
    max-width: 400px;
    padding: 0 20px;
}

.slide-title.active {
    opacity: 1;
}

.slide-subtitle {
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 6px;
}

/* Central Video Node */
.video-core {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 0 40px rgba(102, 126, 234, 0.4);
    animation: centralPulse 3s ease-in-out infinite;
    transition: all 0.6s ease;
}

.video-icon {
    font-size: 28px;
    margin-bottom: 2px;
}

.video-label {
    color: rgba(255, 255, 255, 0.95);
    font-size: 10px;
    font-weight: 600;
}

/* Agent Nodes */
.agent-node {
    position: absolute;
    width: 60px;
    height: 60px;
    opacity: 0;
    transform: scale(0) rotate(-180deg);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.agent-node.active {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.agent-node.processing {
    animation: gentlePulse 2s ease-in-out infinite;
}

.agent-core {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.agent-icon {
    font-size: 18px;
    margin-bottom: 2px;
    z-index: 2;
}

.agent-label {
    font-size: 7px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    z-index: 2;
}

/* Connection Lines */
.connection-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.8), transparent);
    transform-origin: left center;
    pointer-events: none;
    z-index: 5;
    opacity: 0;
}

.connection-line.active {
    animation: connectionFlow 2s ease-in-out;
}

@keyframes connectionFlow {
    0% {
        opacity: 0;
        background: linear-gradient(90deg, transparent 0%, transparent 100%);
    }
    50% {
        opacity: 1;
        background: linear-gradient(90deg, transparent 0%, rgba(102, 126, 234, 0.8) 50%, transparent 100%);
    }
    100% {
        opacity: 0;
        background: linear-gradient(90deg, transparent 0%, transparent 100%);
    }
}

/* Market Cards */
.market-card {
    position: absolute;
    width: 110px;
    background: rgba(15, 15, 25, 0.95);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 12px;
    padding: 8px;
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    backdrop-filter: blur(20px);
    transition: all 0.5s ease;
}

.market-card.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.market-header {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 4px;
    padding-bottom: 3px;
    border-bottom: 1px solid rgba(102, 126, 234, 0.2);
}

.market-flag {
    font-size: 14px;
}

.market-title {
    color: rgba(255, 255, 255, 0.95);
    font-size: 9px;
    font-weight: 600;
}

.market-checks {
    font-size: 7px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.2;
}

.check-item {
    margin: 2px 0;
    opacity: 0;
    animation: slideIn 0.3s ease-out forwards;
}

/* Slide Layouts */
.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
}

.slide.active {
    opacity: 1;
    pointer-events: all;
}

/* Progress Bar */
.progress-bar {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    width: 0;
    transition: width 0.3s ease;
}

/* Animations */
@keyframes centralPulse {
    0%, 100% {
        box-shadow: 0 0 40px rgba(102, 126, 234, 0.4);
    }
    50% {
        box-shadow: 0 0 60px rgba(102, 126, 234, 0.6);
    }
}

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

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Grid Background */
.grid-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(102, 126, 234, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(102, 126, 234, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    animation: gridMove 30s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(30px, 30px); }
}

/* Central Chat Interface */
.central-chat {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 200px;
    background: rgba(15, 15, 25, 0.95);
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 16px;
    padding: 16px;
    backdrop-filter: blur(20px);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 20;
}

.central-chat.active {
    opacity: 1;
}

.central-chat .chat-header {
    color: #667eea;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(102, 126, 234, 0.2);
    text-align: center;
}

.central-chat .chat-messages {
    height: 140px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.central-chat .chat-message {
    background: rgba(102, 126, 234, 0.1);
    border-radius: 8px;
    padding: 6px 10px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
    opacity: 0;
    animation: slideInRight 0.4s ease-out forwards;
}

.central-chat .chat-message.user {
    background: rgba(102, 126, 234, 0.3);
    margin-left: 20px;
}

.central-chat .chat-message.ai {
    margin-right: 20px;
}

/* Content Library Grid */
.content-library {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: grid;
    grid-template-columns: repeat(4, 70px);
    grid-template-rows: repeat(3, 80px);
    gap: 12px;
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 10;
}

.content-library.active {
    opacity: 1;
}

.video-thumbnail {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
    border: 1px solid rgba(102, 126, 234, 0.4);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0);
    animation: popIn 0.4s ease-out forwards;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    padding: 4px;
}

.video-thumbnail.scanning {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.6) 0%, rgba(118, 75, 162, 0.6) 100%);
    box-shadow: 0 0 15px rgba(102, 126, 234, 0.8);
    transform: scale(1.05);
}

.thumbnail-preview {
    font-size: 20px;
    margin-bottom: 2px;
}

.video-title {
    font-size: 8px;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-bottom: 2px;
    line-height: 1.1;
}

.compliance-status {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    font-weight: bold;
}

.compliance-status.good {
    background: rgba(34, 197, 94, 0.8);
    color: white;
}

.compliance-status.warning {
    background: rgba(245, 158, 11, 0.8);
    color: white;
}

.compliance-status.error {
    background: rgba(239, 68, 68, 0.8);
    color: white;
}

/* Compliance Report */
.compliance-report {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    background: rgba(15, 15, 25, 0.95);
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 16px;
    padding: 16px;
    backdrop-filter: blur(20px);
    opacity: 0;
    transition: all 0.6s ease;
    z-index: 15;
}

.compliance-report.active {
    opacity: 1;
}

.report-header {
    text-align: center;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(102, 126, 234, 0.2);
}

.report-title {
    color: #667eea;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.report-status {
    color: rgba(255, 255, 255, 0.7);
    font-size: 10px;
}

.report-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    color: #667eea;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 2px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 9px;
    text-transform: uppercase;
}

.report-actions {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.action-btn {
    background: rgba(102, 126, 234, 0.2);
    border: 1px solid rgba(102, 126, 234, 0.4);
    border-radius: 8px;
    padding: 6px 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 9px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: rgba(102, 126, 234, 0.4);
    border-color: rgba(102, 126, 234, 0.8);
}

@keyframes popIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Chat Interface */
.chat-interface {
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    width: 280px;
    height: 350px;
    background: rgba(15, 15, 25, 0.95);
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 16px;
    padding: 16px;
    opacity: 0;
    backdrop-filter: blur(20px);
    transition: all 0.6s ease;
}

.chat-interface.active {
    opacity: 1;
}

.chat-header {
    color: #667eea;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(102, 126, 234, 0.2);
}

.chat-message {
    background: rgba(102, 126, 234, 0.1);
    border-radius: 12px;
    padding: 8px 12px;
    margin: 8px 0;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
    opacity: 0;
    animation: slideInRight 0.4s ease-out forwards;
}

.chat-message.user {
    background: rgba(102, 126, 234, 0.3);
    margin-left: 20px;
}

.chat-message.ai {
    margin-right: 20px;
}

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

/* Distribution Cards */
.dist-card {
    position: absolute;
    padding: 10px;
    background: rgba(20, 20, 30, 0.95);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 12px;
    backdrop-filter: blur(20px);
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.5s ease;
}

.dist-card.active {
    opacity: 1;
    transform: scale(1);
}

.dist-card.processing {
    border-color: rgba(102, 126, 234, 0.8);
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.4);
}

.dist-title {
    color: rgba(255, 255, 255, 0.9);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.dist-items {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.dist-item {
    background: rgba(102, 126, 234, 0.2);
    border: 1px solid rgba(102, 126, 234, 0.4);
    border-radius: 8px;
    padding: 4px 8px;
    font-size: 9px;
    color: rgba(255, 255, 255, 0.8);
}

.dist-item.active {
    background: rgba(102, 126, 234, 0.4);
    border-color: rgba(102, 126, 234, 0.8);
}

/* Agent specific colors */
.agent-stt .agent-core { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
.agent-vision .agent-core { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }
.agent-audio .agent-core { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.agent-ocr .agent-core { background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%); }
.agent-scene .agent-core { background: linear-gradient(135deg, #667eea 0%, #764ba2 60%); }
.agent-emotion .agent-core { background: linear-gradient(135deg, #FF6B6B 0%, #4ECDC4 100%); }
.agent-object .agent-core { background: linear-gradient(135deg, #A8E6CF 0%, #FFD3B6 100%); }
.agent-brand .agent-core { background: linear-gradient(135deg, #FD6585 0%, #FFD16A 100%); }
.agent-compliance .agent-core { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.agent-safety .agent-core { background: linear-gradient(135deg, #f83600 0%, #f9d423 100%); }
.agent-legal .agent-core { background: linear-gradient(135deg, #0ba360 0%, #3cba92 100%); }
.agent-cultural .agent-core { background: linear-gradient(135deg, #ee0979 0%, #ff6a00 100%); }
.agent-privacy .agent-core { background: linear-gradient(135deg, #4158D0 0%, #C850C0 100%); }
.agent-chat .agent-core { background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%); }
.agent-context .agent-core { background: linear-gradient(135deg, #30cfd0 0%, #330867 100%); }
.agent-library .agent-core { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
.agent-analysis .agent-core { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }
.agent-platform .agent-core { background: linear-gradient(135deg, #FA709A 0%, #FEE140 100%); }
.agent-audience .agent-core { background: linear-gradient(135deg, #A8E6CF 0%, #FFD3B6 100%); }
.agent-region .agent-core { background: linear-gradient(135deg, #FF6B6B 0%, #4ECDC4 100%); }

/* Features Section */
.features {
    padding: 4rem 2rem;
    background: var(--light);
}

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

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

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

.feature-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.feature-card h3 {
    color: var(--dark);
    margin-bottom: 1rem;
}

/* AI Chat Demo */
.ai-demo {
    padding: 5rem 2rem;
    background: white;
}

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

.ai-demo-text h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.ai-demo-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.chat-demo {
    background: var(--light);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.chat-message {
    margin-bottom: 1rem;
    padding: 0.75rem;
    border-radius: 8px;
}

.user-message {
    background: var(--primary);
    color: white;
    margin-left: 20%;
}

.ai-message {
    background: white;
    border: 1px solid var(--border);
    margin-right: 20%;
}

.timestamp-link {
    color: var(--primary);
    text-decoration: underline;
    cursor: pointer;
}

/* Compliance Frameworks */
.frameworks {
    padding: 5rem 2rem;
    background: var(--light);
}

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

.framework-badge {
    background: white;
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s;
}

.framework-badge:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.2);
}

.framework-badge h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.framework-badge p {
    font-size: 0.9rem;
    color: var(--text);
}

/* How it Works */
.how-it-works {
    padding: 5rem 2rem;
    background: white;
}

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

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

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.step h3 {
    color: var(--dark);
    margin-bottom: 1rem;
}

/* Pricing */
.pricing {
    padding: 5rem 2rem;
    background: var(--light);
}

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

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: transform 0.3s;
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

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

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.price {
    font-size: 3rem;
    color: var(--primary);
    margin: 1rem 0;
}

.price span {
    font-size: 1rem;
    color: var(--text);
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
}

/* CTA Section */
.cta {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.footer-section a {
    color: #9ca3af;
    text-decoration: none;
    display: block;
    padding: 0.25rem 0;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    color: #9ca3af;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: all 0.3s ease;
    display: block;
}

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

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

/* Mobile Navigation - Hidden by default */
.mobile-nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    height: calc(100vh - 80px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 999;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-100%);
    transition: all 0.3s ease;
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
}

.mobile-nav a {
    color: var(--text);
    text-decoration: none;
    font-size: 1.25rem;
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    transition: all 0.3s;
}

.mobile-nav a:hover {
    color: var(--primary);
    padding-left: 1.5rem;
}

.mobile-nav .btn-primary {
    background: var(--primary);
    color: white;
    text-align: center;
    border-bottom: none;
    margin-top: 1rem;
}

/* Responsive - Mobile First */
@media (max-width: 768px) {
    /* Typography - Optimized for mobile readability */
    .hero h1 {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
        margin-bottom: 1rem !important;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
        line-height: 1.5 !important;
        margin-bottom: 1.5rem !important;
    }
    
    .section-header h2 {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
    }
    
    .section-header p {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
    }
    
    /* Body text */
    p {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
    }
    
    /* Feature card text */
    .feature-card h3 {
        font-size: 1.15rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0.75rem !important;
    }
    
    .feature-card p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }
    
    /* Reduce padding across sections */
    .hero {
        padding: 2rem 0.75rem !important;
    }
    
    .features, .how-it-works, .pricing, .cta {
        padding: 2.5rem 0.75rem !important;
    }
    
    .container {
        padding: 0 0.75rem;
    }
    
    .section-header {
        margin-bottom: 2rem !important;
    }
    
    /* Navigation */
    .nav-container {
        padding: 0.5rem 1rem;
    }
    
    .nav-links {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: none !important;
    }
    
    .mobile-nav {
        display: none !important;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .logo-icon-img {
        width: 48px !important;
        height: 48px !important;
    }
    
    /* Hero Section - Simplify and shrink floating badges by 3x */
    .floating-badges .badge:nth-child(n+8) {
        display: none;
    }
    
    .floating-badges .badge {
        font-size: 0.25rem !important;
        padding: 0.1rem 0.2rem !important;
        border-radius: 6px !important;
        opacity: 0.4 !important;
        letter-spacing: 0.2px !important;
    }
    
    /* Animation Container - Full width edge-to-edge on mobile */
    .hero {
        padding: 2rem 0 !important;
    }
    
    .hero-content {
        padding: 0 0.75rem !important;
    }
    
    .hero h1, .hero-subtitle {
        padding: 0 0.75rem !important;
    }
    
    .demo-video {
        padding: 0 !important;
        margin: 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
        border: none !important;
    }
    
    .animation-container {
        height: 180px !important;
        border-radius: 0 !important;
        width: 100vw !important;
        margin-left: calc(-50vw + 50%) !important;
    }
    
    /* Badges INSIDE animation area - reduce by 3x */
    .animation-badges .badge {
        font-size: 0.23rem !important;
        padding: 0.12rem 0.23rem !important;
        border-radius: 5px !important;
        opacity: 0.4 !important;
    }
    
    /* Animation elements - increased by 2x from previous */
    .video-core {
        width: 29px !important;
        height: 23px !important;
    }
    
    .video-icon {
        font-size: 10px !important;
    }
    
    .video-label {
        font-size: 5px !important;
    }
    
    .slide-title {
        font-size: 8px !important;
        max-width: 180px;
        top: 3px;
    }
    
    .slide-subtitle {
        font-size: 6px !important;
    }
    
    /* Agent nodes - 2x larger */
    .agent-node {
        width: 18px !important;
        height: 18px !important;
    }
    
    .agent-icon {
        font-size: 7px !important;
    }
    
    .agent-label {
        font-size: 3px !important;
    }
    
    /* Market cards - 2x larger */
    .market-card {
        width: 46px !important;
        padding: 3px !important;
    }
    
    .market-flag {
        font-size: 6px !important;
    }
    
    .market-title {
        font-size: 5px !important;
    }
    
    .market-checks {
        font-size: 4px !important;
    }
    
    .check-item {
        margin: 0.5px 0 !important;
    }
    
    /* Distribution cards - 2x larger */
    .dist-card {
        padding: 4px !important;
        width: auto !important;
    }
    
    .dist-title {
        font-size: 5px !important;
        margin-bottom: 4px !important;
    }
    
    .dist-item {
        font-size: 5px !important;
        padding: 2px 3px !important;
        gap: 4px !important;
    }
    
    /* Slide 0 - Layer decomposition elements - 2x larger */
    #slide0 .shot-grid {
        grid-template-columns: repeat(2, 36px) !important;
        gap: 4px !important;
        font-size: 0.5rem !important;
    }
    
    #slide0 .shot-frame {
        padding: 0.2rem !important;
        font-size: 0.4rem !important;
    }
    
    #slide0 .layer-stack {
        transform: scale(0.4) !important;
    }
    
    #slide0 .layer {
        width: 58px !important;
        height: 34px !important;
        font-size: 0.5rem !important;
    }
    
    #slide0 .vfx-agents {
        transform: scale(0.4) !important;
    }
    
    #slide0 .vfx-agent {
        font-size: 0.36rem !important;
    }
    
    #slide0 .final-master {
        transform: translateX(-50%) scale(0.46) !important;
    }
    
    #slide0 .final-master div {
        font-size: 0.46rem !important;
    }
    
    /* Progress bar - 2x larger */
    .progress-bar {
        width: 86px !important;
        bottom: 4px !important;
        height: 2px !important;
    }
    
    /* Editorial Carousel - Mobile optimized with ZERO padding */
    section.features[style*="background: var(--dark)"] {
        padding: 2rem 0 !important;
    }
    
    section.features[style*="background: var(--dark)"] .container {
        padding: 0 !important;
        max-width: 100% !important;
    }
    
    section.features[style*="background: var(--dark)"] .section-header {
        padding: 0 1rem !important;
        margin-bottom: 2rem !important;
    }
    
    section.features[style*="background: var(--dark)"] .section-header h2 {
        font-size: 1.5rem !important;
    }
    
    section.features[style*="background: var(--dark)"] .section-header p {
        font-size: 0.95rem !important;
    }
    
    /* Bottom text - add padding */
    section.features[style*="background: var(--dark)"] > div > div:last-child {
        padding: 0 1rem !important;
    }
    
    .editorial-slide {
        border: none !important;
        border-radius: 0 !important;
        background: transparent !important;
    }
    
    .editorial-slide > div {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
        padding: 0 !important;
    }
    
    /* Video container - True full width edge-to-edge on mobile */
    .editorial-slide > div > div:first-child {
        padding-bottom: 56.25% !important;
        border-radius: 0 !important;
        margin: 0 !important;
    }
    
    .editorial-slide video {
        border-radius: 0 !important;
    }
    
    /* Text content with padding */
    .editorial-slide > div > div:last-child {
        padding: 1.5rem 1rem !important;
    }
    
    /* Hide VFX tags on mobile */
    .editorial-slide > div > div:last-child > div:last-child {
        display: none !important;
    }
    
    .editorial-slide h3 {
        font-size: 1.4rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    .editorial-slide p {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
    }
    
    /* Navigation buttons for carousel */
    section button[onclick*="changeEditorialSlide"] {
        display: none !important;
    }
    
    /* Problem Statement Section */
    section[style*="background: white"] {
        padding: 2.5rem 0.75rem !important;
    }
    
    section[style*="background: white"] .container {
        padding: 0 !important;
    }
    
    .features h2 {
        font-size: 1.75rem !important;
    }
    
    .features p {
        font-size: 1rem !important;
    }
    
    .features h3 {
        font-size: 1.25rem !important;
    }
    
    /* Reduce margin on stat boxes */
    section .container > div[style*="margin-bottom: 2rem"] {
        margin-bottom: 1.5rem !important;
        padding: 1.5rem 0.75rem !important;
    }
    
    section .container > div[style*="padding: 2rem"] {
        padding: 1.5rem 0.75rem !important;
    }
    
    /* Feature cards - Stack properly */
    .features-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    /* How It Works Section */
    .how-it-works > div > div:not(.section-header) {
        padding: 1.5rem 1rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .how-it-works h3 {
        font-size: 1.3rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0.75rem !important;
    }
    
    .how-it-works p {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
    }
    
    .how-it-works > div > div > div {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    /* Step numbers */
    .step-number {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.3rem !important;
    }
    
    .step h3 {
        font-size: 1.2rem !important;
        line-height: 1.3 !important;
    }
    
    .step p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }
    
    /* Results section - stat cards */
    .features > div > div[style*="grid-template-columns"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }
    
    .features > div > div[style*="grid-template-columns"] > div {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
    }
    
    .features > div > div[style*="grid-template-columns"] > div > div:first-child {
        font-size: 2rem !important;
        line-height: 1.2 !important;
        margin-bottom: 0.25rem !important;
    }
    
    /* Testimonial quote */
    .features > div > div[style*="background: white"] p {
        font-size: 1rem !important;
        line-height: 1.6 !important;
    }
    
    /* Author attribution */
    .features > div > div[style*="background: white"] p[style*="font-weight: bold"] {
        font-size: 0.9rem !important;
    }
    
    /* Built for Scale section */
    .features > div > div[style*="minmax(300px"] {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    
    .features > div > div[style*="minmax(300px"] h3 {
        font-size: 1.2rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0.75rem !important;
    }
    
    .features > div > div[style*="minmax(300px"] p {
        font-size: 1rem !important;
        line-height: 1.4 !important;
    }
    
    .features > div > div[style*="minmax(300px"] ul li {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }
    
    /* Problem Statement Section */
    section[style*="background: white"] h2 {
        font-size: 1.4rem !important;
        line-height: 1.3 !important;
    }
    
    section[style*="background: white"] h3 {
        font-size: 1.1rem !important;
        line-height: 1.3 !important;
    }
    
    section[style*="background: white"] div[style*="font-size: 2rem"] {
        font-size: 1.5rem !important;
        line-height: 1.2 !important;
    }
    
    section[style*="background: white"] div[style*="color: #7f1d1d"] {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
    }
    
    /* CTA Section - Mobile optimized */
    .cta {
        padding: 2.5rem 0.75rem !important;
    }
    
    .cta h2 {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
        margin-bottom: 1rem !important;
    }
    
    .cta p {
        font-size: 0.95rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .cta > div > div {
        padding: 1.5rem 1rem !important;
        margin: 0 !important;
        max-width: 100% !important;
    }
    
    .cta h3 {
        font-size: 1.2rem !important;
        margin-bottom: 1rem !important;
    }
    
    /* Make button full-width and touch-friendly on mobile */
    .cta .btn-secondary {
        font-size: 1.1rem !important;
        padding: 1rem 1.5rem !important;
        width: 100% !important;
        min-height: 48px !important;
        display: block !important;
        text-align: center !important;
        font-weight: 600 !important;
    }
    
    /* Simplify contact text */
    .cta p[style*="font-size: 0.9rem"] {
        font-size: 0.85rem !important;
        margin-top: 0.75rem !important;
    }
    
    /* Footer */
    footer {
        padding: 2rem 1rem 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    
    footer h4 {
        font-size: 1rem !important;
        line-height: 1.4 !important;
    }
    
    footer a, footer p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }
    
    .footer-bottom {
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
    }
    
    /* Small print / disclaimers */
    section p[style*="font-size: 0.9rem"],
    section p[style*="font-size: 0.85rem"],
    section em {
        font-size: 0.8rem !important;
        line-height: 1.5 !important;
    }
    
    /* AI Demo */
    .ai-demo-content {
        grid-template-columns: 1fr;
    }
    
    /* Pricing cards */
    .pricing-cards {
        grid-template-columns: 1fr !important;
    }
    
    .pricing-card.featured {
        transform: scale(1) !important;
    }
    
    /* Steps */
    .steps {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
    
    /* Re-enable connection lines on mobile */
    .connection-line {
        display: block !important;
        height: 1px !important;
    }
    
    /* Simplify floating animations */
    .floating-badges .badge {
        animation-duration: 25s !important;
    }
    
    .grid-bg {
        animation: none;
        opacity: 0.3;
    }
    
    /* Touch-friendly buttons */
    .btn-primary, .btn-secondary {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Editorial dots */
    .editorial-dot {
        width: 10px !important;
        height: 10px !important;
    }
    
    /* Carousel dots container */
    section.features[style*="background: var(--dark)"] > div > div > div[style*="display: flex"][style*="justify-content: center"] {
        padding: 0 1rem !important;
        margin-top: 1rem !important;
    }
    
    /* "How It Works" - Hide visual elements on mobile */
    
    /* Section 1: Hide agent analysis code block */
    .how-it-works div[style*="font-family: monospace"] {
        display: none !important;
    }
    
    /* Section 2: Hide edit plan boxes */
    .how-it-works div[style*="display: grid"][style*="gap: 0.75rem"] > div[style*="display: flex"][style*="justify-content: space-between"] {
        display: none !important;
    }
    
    .how-it-works h4[style*="color: var(--primary)"] {
        display: none !important;
    }
    
    /* Section 3: Hide output file boxes */
    .how-it-works div[style*="display: grid"][style*="grid-template-columns: repeat(2"] {
        display: none !important;
    }
    
    /* Hide all emoji icons in How It Works section on mobile */
    .how-it-works div[style*="font-size: 2rem"] {
        display: none !important;
    }
}

/* Scroll Animations - Fade in on scroll like Delve.co */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Apply to sections */
.animate-on-scroll {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.animate-fade {
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
}

.animate-scale {
    opacity: 0;
    animation: scaleIn 0.6s ease-out forwards;
}

/* Stagger animation delays */
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
.animate-delay-5 { animation-delay: 0.5s; }
.animate-delay-6 { animation-delay: 0.6s; }

/* Modern card hover effects */
.modern-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.modern-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(102, 126, 234, 0.2);
}

/* Gradient text effect */
.gradient-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Modern button hover effects */
.modern-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

/* Floating badge animation */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

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

/* Professional icon container */
.icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.icon-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.icon-wrapper:hover::before {
    opacity: 1;
}

/* Smooth pulse animation for icons */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

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

/* Platform logo container */
.platform-logo-container {
    background: white;
    padding: 1.25rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.platform-logo-container:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    border-color: rgba(102, 126, 234, 0.2);
}

/* Subtle gradient backgrounds */
.gradient-bg-1 {
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

.gradient-bg-2 {
    background: linear-gradient(135deg, #ffffff 0%, #f0f4ff 100%);
}

/* Number counter animation */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.stat-number {
    animation: countUp 0.6s ease-out forwards;
}