@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

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

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

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

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.stat-dot {
    animation: pulse 2s infinite;
}

.feature-card,
.product-card,
.scene-card {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.feature-card:nth-child(1),
.product-card:nth-child(1),
.scene-card:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(2),
.product-card:nth-child(2),
.scene-card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3),
.product-card:nth-child(3),
.scene-card:nth-child(3) {
    animation-delay: 0.3s;
}

.feature-card:nth-child(4),
.scene-card:nth-child(4) {
    animation-delay: 0.4s;
}

.feature-card:nth-child(5) {
    animation-delay: 0.5s;
}

.feature-card:nth-child(6) {
    animation-delay: 0.6s;
}

.feature-card:nth-child(7) {
    animation-delay: 0.7s;
}

.feature-card:nth-child(8) {
    animation-delay: 0.8s;
}

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

.hero-badge {
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-title {
    animation: fadeInUp 0.6s ease 0.4s both;
}

.hero-subtitle {
    animation: fadeInUp 0.6s ease 0.6s both;
}

.hero-actions {
    animation: fadeInUp 0.6s ease 0.8s both;
}

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

.stat-value.visible {
    animation: fadeIn 0.6s ease;
}

.workflow-step {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.workflow-step:nth-child(1) {
    animation-delay: 0.1s;
}

.workflow-step:nth-child(2) {
    animation-delay: 0.3s;
}

.workflow-step:nth-child(3) {
    animation-delay: 0.5s;
}

.workflow-step:nth-child(4) {
    animation-delay: 0.7s;
}

.pricing-card {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.pricing-card:nth-child(1) {
    animation-delay: 0.1s;
}

.pricing-card:nth-child(2) {
    animation-delay: 0.2s;
}

.pricing-card:nth-child(3) {
    animation-delay: 0.3s;
}

.timeline-item {
    opacity: 0;
    animation: slideInLeft 0.6s ease forwards;
}

.timeline-item:nth-child(1) {
    animation-delay: 0.1s;
}

.timeline-item:nth-child(2) {
    animation-delay: 0.2s;
}

.timeline-item:nth-child(3) {
    animation-delay: 0.3s;
}

.timeline-item:nth-child(4) {
    animation-delay: 0.4s;
}

.value-card {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.value-card:nth-child(1) {
    animation-delay: 0.1s;
}

.value-card:nth-child(2) {
    animation-delay: 0.2s;
}

.value-card:nth-child(3) {
    animation-delay: 0.3s;
}

.value-card:nth-child(4) {
    animation-delay: 0.4s;
}

.platform-card {
    opacity: 0;
    animation: fadeIn 0.4s ease forwards;
}

.platform-card:nth-child(1) {
    animation-delay: 0.1s;
}

.platform-card:nth-child(2) {
    animation-delay: 0.2s;
}

.platform-card:nth-child(3) {
    animation-delay: 0.3s;
}

.platform-card:nth-child(4) {
    animation-delay: 0.4s;
}

.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
