.typewriter {
    animation: typewriter 2s steps(20) 1s forwards, blink 1s infinite;
    white-space: nowrap;
    overflow: hidden;
    border-right: 2px solid transparent;
}
.fade-in-delayed {
    animation: fadeInUp 1s ease-out 3s forwards;
    opacity: 0;
    transform: translateY(20px);
}
.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}
.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}
@keyframes typewriter {
    0% { width: 0; border-right-color: #14b8a6; }
    99% { border-right-color: #14b8a6; }
    100% { width: 100%; border-right-color: transparent; }
}
@keyframes blink {
    0%, 50% { border-right-color: transparent; }
    51%, 100% { border-right-color: #14b8a6; }
}
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}
.pulse-ring {
    animation: pulse-ring 2s infinite;
}
.gradient-text {
    background: linear-gradient(to right, #ffffff, #14b8a6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Premium Features Section Styles */
.section-header {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(219, 39, 119, 0.1) 100%);
    border: 1px solid rgba(139, 92, 246, 0.3);
    backdrop-filter: blur(10px);
}
.feature-card {
    background: rgba(30, 41, 59, 0.8) !important;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(139, 92, 246, 0.5) !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.7);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}

/* Partners Section Styles */
.partner-card {
    background: rgba(30, 41, 59, 0.8) !important;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(71, 85, 105, 0.5) !important;
    transition: all 0.5s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.partner-card:hover {
    transform: translateY(-5px);
    border-color: rgba(85, 181, 166, 0.7) !important;
    box-shadow: 0 20px 40px rgba(85, 181, 166, 0.2);
}

.partner-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(85, 181, 166, 0.1) 0%, rgba(20, 184, 166, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
}

.partner-card:hover::before {
    opacity: 1;
}

.partner-logo {
    filter: drop-shadow(0 4px 8px rgba(85, 181, 166, 0.3));
    transition: all 0.3s ease;
}

.partner-card:hover .partner-logo {
    filter: drop-shadow(0 6px 12px rgba(85, 181, 166, 0.5));
    transform: scale(1.05);
}

.partner-text {
    color: #55b5a6;
    text-shadow: 0 2px 4px rgba(85, 181, 166, 0.2);
    transition: all 0.3s ease;
}

.partner-card:hover .partner-text {
    text-shadow: 0 4px 8px rgba(85, 181, 166, 0.4);
}

/* Staggered animation delays for premium features */
.scroll-animate:nth-child(1) { transition-delay: 0.1s; }
.scroll-animate:nth-child(2) { transition-delay: 0.2s; }
.scroll-animate:nth-child(3) { transition-delay: 0.3s; }
.scroll-animate:nth-child(4) { transition-delay: 0.4s; }
.scroll-animate:nth-child(5) { transition-delay: 0.5s; }
.scroll-animate:nth-child(6) { transition-delay: 0.6s; }