:root {
    --primary-color: #ff4d4d;
    --secondary-color: #ff6b6b;
    --accent-color: #ff3333;
    --dark-bg: #0f0f0f;
    --card-bg: #1a1a1a;
    --text-light: #ffffff;
    --gradient-1: linear-gradient(45deg, #ff4d4d, #ff6b6b);
    --gradient-2: linear-gradient(45deg, #ff3333, #ff4d4d);
    --gradient-3: linear-gradient(45deg, #ff1a1a, #ff3333);
    --glow: 0 0 20px rgba(255, 77, 77, 0.3);
}

body {
    background-color: var(--dark-bg);
    color: var(--text-light);
    font-family: 'Poppins', sans-serif;
}

.ct-mg {
    height: 70rem;
}

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 200px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, var(--dark-bg), transparent);
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 77, 77, 0.2) 0%, transparent 70%);
    pointer-events: none;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    100% {
        opacity: 0.5;
        transform: scale(1);
    }
}

.feature-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: var(--glow);
}

.pricing-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 30px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--glow);
    border-color: var(--primary-color);
}

.pricing-card.popular {
    border-color: var(--primary-color);
    background: linear-gradient(45deg, var(--card-bg), rgba(255, 77, 77, 0.1));
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(255, 77, 77, 0.15);
}

.pricing-card.popular::before {
    content: 'Beliebt';
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--gradient-1);
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(255, 77, 77, 0.3);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.pricing-card .price {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(255, 77, 77, 0.2);
}

.pricing-card .features-list {
    margin: 20px 0;
}

.pricing-card .features-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.pricing-card .features-list li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.1rem;
    text-shadow: 0 0 10px rgba(255, 77, 77, 0.3);
}

.pricing-card:hover .features-list li {
    transform: translateX(5px);
}

.btn-primary {
    background: var(--gradient-1);
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(255, 77, 77, 0.2);
    animation-delay: 0.9s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow);
}

.btn-primary i {
    margin-right: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover i {
    transform: translateX(3px);
}

.stats-section {
    background: var(--card-bg);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 77, 77, 0.1) 0%, transparent 70%);
    pointer-events: none;
    animation: pulse 4s ease-in-out infinite;
}

.stat-card {
    text-align: center;
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--glow);
    border-color: var(--primary-color);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    position: relative;
    text-shadow: 0 0 20px rgba(255, 77, 77, 0.2);
}

.stat-number::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 40px;
    height: 2px;
    background: var(--gradient-1);
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(255, 77, 77, 0.3);
}

.nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    padding: 10px 20px !important;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(255, 77, 77, 0.3);
}

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

.nav-link:hover {
    color: var(--primary-color) !important;
    text-shadow: 0 0 10px rgba(255, 77, 77, 0.3);
}

.navbar {
    padding: 20px 0;
    background: transparent !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.navbar.scrolled {
    background: rgba(15, 15, 15, 0.95) !important;
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.section-title {
    position: relative;
    margin-bottom: 50px;
    font-size: 2.8rem;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(255, 77, 77, 0.2);
    animation-delay: 0.7s;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    width: 60px;
    height: 3px;
    background: var(--gradient-1);
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(255, 77, 77, 0.3);
}

.feature-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 77, 77, 0.1);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(255, 77, 77, 0.2);
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-icon i {
    font-size: 36px;
    color: var(--primary-color);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 10px rgba(255, 77, 77, 0.3);
}

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

.feature-card:hover .feature-icon i {
    color: white;
    transform: scale(1.2) rotate(360deg);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    padding: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-item:hover {
    background: rgba(255, 77, 77, 0.08);
    transform: translateX(5px);
    border-color: rgba(255, 77, 77, 0.2);
    box-shadow: 0 5px 15px rgba(255, 77, 77, 0.1);
}

.feature-item i {
    margin-right: 15px;
    margin-top: 3px;
    color: var(--primary-color);
    transition: all 0.3s ease;
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(255, 77, 77, 0.3);
}

.feature-item:hover i {
    transform: scale(1.2);
    color: var(--accent-color);
}

.feature-item strong {
    display: block;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.feature-item small {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    25% {
        transform: translateY(-5px);
    }
    50% {
        transform: translateY(0px);
    }
    75% {
        transform: translateY(5px);
    }
    100% {
        transform: translateY(0px);
    }
}

.glass-effect {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.text-gradient {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    animation-delay: 0.5s;
}

.hero-badge:hover {
    background: rgba(255, 77, 77, 0.15);
    transform: translateY(-2px);
    box-shadow: var(--glow);
}

.hero-badge i {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(255, 77, 77, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.05);
    animation-delay: 1.1s;
}

.btn-outline-light:hover {
    background: rgba(255, 77, 77, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--glow);
}

.btn-outline-light i {
    transition: all 0.3s ease;
}

.btn-outline-light:hover i {
    transform: translateX(3px);
    color: var(--primary-color);
}

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

.feature-card:nth-child(1) {
    animation-delay: 0s;
}

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

.feature-card:nth-child(3) {
    animation-delay: 1s;
}

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

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

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

.stat-card:nth-child(1) {
    animation-delay: 0.4s;
}

.stat-card:nth-child(2) {
    animation-delay: 0.9s;
}

.stat-card:nth-child(3) {
    animation-delay: 1.4s;
}

.stat-card:nth-child(4) {
    animation-delay: 1.9s;
}

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

.feature-item:nth-child(2) {
    animation-delay: 0.6s;
}

.feature-item:nth-child(3) {
    animation-delay: 1.1s;
}

.feature-item:nth-child(4) {
    animation-delay: 1.6s;
}

.pricing-card .features-list li:nth-child(1) {
    animation-delay: 0.3s;
}

.pricing-card .features-list li:nth-child(2) {
    animation-delay: 0.8s;
}

.pricing-card .features-list li:nth-child(3) {
    animation-delay: 1.3s;
}

.pricing-card .features-list li:nth-child(4) {
    animation-delay: 1.8s;
}

.stat-number:nth-child(1) {
    animation-delay: 0.2s;
}

.stat-number:nth-child(2) {
    animation-delay: 0.7s;
}

.stat-number:nth-child(3) {
    animation-delay: 1.2s;
}

.stat-number:nth-child(4) {
    animation-delay: 1.7s;
}

.feature-icon:nth-child(1) {
    animation-delay: 0.3s;
}

.feature-icon:nth-child(2) {
    animation-delay: 0.8s;
}

.feature-icon:nth-child(3) {
    animation-delay: 1.3s;
}

.feature-icon:nth-child(4) {
    animation-delay: 1.8s;
}

.hero-badge:hover {
    border-color: var(--primary-color);
}

.btn-outline-light:hover {
    border-color: var(--primary-color);
}

.section-title i {
    color: var(--primary-color) !important;
}

.section-title:hover i {
    color: var(--accent-color) !important;
}

.feature-icon i {
    color: var(--primary-color) !important;
}

.feature-card:hover .feature-icon i {
    color: white !important;
}

.stat-number i {
    color: var(--primary-color) !important;
}

.stat-card:hover .stat-number::after {
    background: var(--gradient-2);
}

.btn-primary i {
    color: white !important;
}

.btn-primary:hover i {
    color: white !important;
}

.pricing-card.popular::before {
    background: var(--gradient-1);
    color: white !important;
}

.pricing-card.popular:hover::before {
    background: var(--gradient-2);
}

.feature-card::before {
    background: var(--gradient-1);
}

.feature-card:hover::before {
    background: var(--gradient-2);
}

.pricing-card::before {
    background: var(--gradient-1);
}

.pricing-card:hover::before {
    background: var(--gradient-2);
}

.stat-card::before {
    background: var(--gradient-1);
}

.stat-card:hover::before {
    background: var(--gradient-2);
}

.btn-primary {
    background: var(--gradient-1);
}

.btn-primary:hover {
    background: var(--gradient-2);
}

.btn-outline-light:hover {
    background: var(--gradient-1);
}

.nav-link::after {
    background: var(--gradient-1);
}

.nav-link:hover::after {
    background: var(--gradient-2);
}

.section-title::after {
    background: var(--gradient-1);
}

.section-title:hover::after {
    background: var(--gradient-2);
}

.stat-number::after {
    background: var(--gradient-1);
}

.stat-card:hover .stat-number::after {
    background: var(--gradient-2);
}

.feature-icon::before {
    background: var(--gradient-1);
}

.feature-card:hover .feature-icon::before {
    background: var(--gradient-2);
}

.pricing-card.popular {
    background: linear-gradient(45deg, var(--card-bg), rgba(255, 77, 77, 0.1));
}

.pricing-card.popular:hover {
    background: linear-gradient(45deg, var(--card-bg), rgba(255, 77, 77, 0.2));
}

.feature-item {
    background: rgba(255, 255, 255, 0.02);
}

.feature-item:hover {
    background: rgba(255, 77, 77, 0.08);
}

.pricing-card .features-list li {
    background: rgba(255, 255, 255, 0.02);
}

.pricing-card:hover .features-list li {
    background: rgba(255, 77, 77, 0.08);
}

.stat-card {
    background: rgba(255, 255, 255, 0.02);
}

.stat-card:hover {
    background: rgba(255, 77, 77, 0.08);
}

.hero-badge {
    background: rgba(255, 255, 255, 0.1);
}

.hero-badge:hover {
    background: rgba(255, 77, 77, 0.15);
}

.btn-outline-light {
    background: rgba(255, 255, 255, 0.05);
}

.btn-outline-light:hover {
    background: rgba(255, 77, 77, 0.1);
}

.navbar {
    background: transparent !important;
}

.navbar.scrolled {
    background: rgba(15, 15, 15, 0.95) !important;
}

.hero-section::after {
    background: radial-gradient(circle at center, rgba(255, 77, 77, 0.2) 0%, transparent 70%);
}

.stats-section::before {
    background: radial-gradient(circle at center, rgba(255, 77, 77, 0.1) 0%, transparent 70%);
}

.feature-card:hover {
    border-color: var(--primary-color);
}

.pricing-card:hover {
    border-color: var(--primary-color);
}

.stat-card:hover {
    border-color: var(--primary-color);
}

.feature-item:hover {
    border-color: rgba(255, 77, 77, 0.2);
}

.pricing-card .features-list li:hover {
    border-color: rgba(255, 77, 77, 0.2);
}

.hero-badge:hover {
    border-color: var(--primary-color);
}

.btn-outline-light:hover {
    border-color: var(--primary-color);
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-primary:hover {
    color: var(--accent-color) !important;
}

.feature-item i {
    color: var(--primary-color) !important;
}

.feature-item:hover i {
    color: var(--accent-color) !important;
}

.pricing-card .features-list li i {
    color: var(--primary-color) !important;
}

.pricing-card:hover .features-list li i {
    color: var(--accent-color) !important;
}

.btn-outline-light i {
    color: var(--primary-color) !important;
}

.btn-outline-light:hover i {
    color: var(--accent-color) !important;
}

.nav-link i {
    color: var(--primary-color) !important;
}

.nav-link:hover i {
    color: var(--accent-color) !important;
}

.hero-badge i {
    color: var(--primary-color) !important;
}

.hero-badge:hover i {
    color: var(--accent-color) !important;
}

.section-title i {
    color: var(--primary-color) !important;
}

.section-title:hover i {
    color: var(--accent-color) !important;
}

.feature-icon i {
    color: var(--primary-color) !important;
}

.feature-card:hover .feature-icon i {
    color: white !important;
}

.stat-number i {
    color: var(--primary-color) !important;
}

.stat-card:hover .stat-number::after {
    background: var(--gradient-2);
}

.btn-primary i {
    color: white !important;
}

.btn-primary:hover i {
    color: white !important;
}

.pricing-card.popular::before {
    background: var(--gradient-1);
    color: white !important;
}

.pricing-card.popular:hover::before {
    background: var(--gradient-2);
}

.feature-card::before {
    background: var(--gradient-1);
}

.feature-card:hover::before {
    background: var(--gradient-2);
}

.pricing-card::before {
    background: var(--gradient-1);
}

.pricing-card:hover::before {
    background: var(--gradient-2);
}

.stat-card::before {
    background: var(--gradient-1);
}

.stat-card:hover::before {
    background: var(--gradient-2);
}

.btn-primary {
    background: var(--gradient-1);
}

.btn-primary:hover {
    background: var(--gradient-2);
}

.btn-outline-light:hover {
    background: var(--gradient-1);
}

.nav-link::after {
    background: var(--gradient-1);
}

.nav-link:hover::after {
    background: var(--gradient-2);
}

.section-title::after {
    background: var(--gradient-1);
}

.section-title:hover::after {
    background: var(--gradient-2);
}

.stat-number::after {
    background: var(--gradient-1);
}

.stat-card:hover .stat-number::after {
    background: var(--gradient-2);
}

.feature-icon::before {
    background: var(--gradient-1);
}

.feature-card:hover .feature-icon::before {
    background: var(--gradient-2);
}

.pricing-card.popular {
    background: linear-gradient(45deg, var(--card-bg), rgba(255, 77, 77, 0.1));
}

.pricing-card.popular:hover {
    background: linear-gradient(45deg, var(--card-bg), rgba(255, 77, 77, 0.2));
}

.feature-item {
    background: rgba(255, 255, 255, 0.02);
}

.feature-item:hover {
    background: rgba(255, 77, 77, 0.08);
}

.pricing-card .features-list li {
    background: rgba(255, 255, 255, 0.02);
}

.pricing-card:hover .features-list li {
    background: rgba(255, 77, 77, 0.08);
}

.stat-card {
    background: rgba(255, 255, 255, 0.02);
}

.stat-card:hover {
    background: rgba(255, 77, 77, 0.08);
}

.hero-badge {
    background: rgba(255, 255, 255, 0.1);
}

.hero-badge:hover {
    background: rgba(255, 77, 77, 0.15);
}

.btn-outline-light {
    background: rgba(255, 255, 255, 0.05);
}

.btn-outline-light:hover {
    background: rgba(255, 77, 77, 0.1);
}

.navbar {
    background: transparent !important;
}

.navbar.scrolled {
    background: rgba(15, 15, 15, 0.95) !important;
}

.hero-section::after {
    background: radial-gradient(circle at center, rgba(255, 77, 77, 0.2) 0%, transparent 70%);
}

.stats-section::before {
    background: radial-gradient(circle at center, rgba(255, 77, 77, 0.1) 0%, transparent 70%);
}

.feature-card:hover {
    border-color: var(--primary-color);
}

.pricing-card:hover {
    border-color: var(--primary-color);
}

.stat-card:hover {
    border-color: var(--primary-color);
}

.feature-item:hover {
    border-color: rgba(255, 77, 77, 0.2);
}

.pricing-card .features-list li:hover {
    border-color: rgba(255, 77, 77, 0.2);
}

.hero-badge:hover {
    border-color: var(--primary-color);
}

.btn-outline-light:hover {
    border-color: var(--primary-color);
}

@keyframes swipeIn {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateX(0);
}

.hero-section>* {
    opacity: 0;
    animation: swipeIn 0.8s ease-out forwards;
}

.hero-badge {
    animation-delay: 0.2s;
}

.hero-title {
    animation-delay: 0.4s;
}

.hero-subtitle {
    animation-delay: 0.6s;
}

.hero-actions {
    animation-delay: 0.8s;
}

.feature-card:nth-child(1) {
    animation-delay: 0.2s, 0s;
}

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

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

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

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

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

.stat-card:nth-child(1) {
    animation-delay: 0.2s, 0.4s;
}

.stat-card:nth-child(2) {
    animation-delay: 0.4s, 0.9s;
}

.stat-card:nth-child(3) {
    animation-delay: 0.6s, 1.4s;
}

.stat-card:nth-child(4) {
    animation-delay: 0.8s, 1.9s;
}

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

.feature-item:nth-child(2) {
    animation-delay: 0.4s, 0.6s;
}

.feature-item:nth-child(3) {
    animation-delay: 0.6s, 1.1s;
}

.feature-item:nth-child(4) {
    animation-delay: 0.8s, 1.6s;
}

.nav-link:nth-child(1) {
    animation-delay: 0.1s, 0.2s;
}

.nav-link:nth-child(2) {
    animation-delay: 0.2s, 0.4s;
}

.nav-link:nth-child(3) {
    animation-delay: 0.3s, 0.6s;
}

.nav-link:nth-child(4) {
    animation-delay: 0.4s, 0.8s;
}

.nav-link:nth-child(5) {
    animation-delay: 0.5s, 1s;
}

.btn-primary {
    animation-delay: 0.6s, 0.9s;
}

.btn-outline-light {
    animation-delay: 0.7s, 1.1s;
}

.feature-icon:nth-child(1) {
    animation-delay: 0.2s, 0.3s;
}

.feature-icon:nth-child(2) {
    animation-delay: 0.4s, 0.8s;
}

.feature-icon:nth-child(3) {
    animation-delay: 0.6s, 1.3s;
}

.feature-icon:nth-child(4) {
    animation-delay: 0.8s, 1.8s;
}

.stat-number:nth-child(1) {
    animation-delay: 0.2s, 0.2s;
}

.stat-number:nth-child(2) {
    animation-delay: 0.4s, 0.7s;
}

.stat-number:nth-child(3) {
    animation-delay: 0.6s, 1.2s;
}

.stat-number:nth-child(4) {
    animation-delay: 0.8s, 1.7s;
}

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

.fade-in {
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-delay-1 {
    transition-delay: 0.1s;
}

.fade-in-delay-2 {
    transition-delay: 0.2s;
}

.fade-in-delay-3 {
    transition-delay: 0.3s;
}

.fade-in-delay-4 {
    transition-delay: 0.4s;
}

.feature-card:nth-child(1) {
    animation-delay: 0s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.2s;
}

.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;
}

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

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

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

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

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

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

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

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

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

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

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

.pricing-card .features-list li:nth-child(4) {
    animation-delay: 0.4s;
}

.stat-number:nth-child(1) {
    animation-delay: 0.1s;
}

.stat-number:nth-child(2) {
    animation-delay: 0.2s;
}

.stat-number:nth-child(3) {
    animation-delay: 0.3s;
}

.stat-number:nth-child(4) {
    animation-delay: 0.4s;
}

.feature-icon:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-icon:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-icon:nth-child(3) {
    animation-delay: 0.3s;
}

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

.nav-link:nth-child(1) {
    animation-delay: 0.1s;
}

.nav-link:nth-child(2) {
    animation-delay: 0.2s;
}

.nav-link:nth-child(3) {
    animation-delay: 0.3s;
}

.nav-link:nth-child(4) {
    animation-delay: 0.4s;
}

.nav-link:nth-child(5) {
    animation-delay: 0.5s;
}

.btn-primary {
    animation-delay: 0.1s;
}

.btn-outline-light {
    animation-delay: 0.2s;
}

.hero-badge {
    animation-delay: 0.1s;
}

.hero-title {
    animation-delay: 0.2s;
}

.hero-subtitle {
    animation-delay: 0.3s;
}

.hero-actions {
    animation-delay: 0.4s;
}