/**
 * Subtle Tier Logo Animations for Pricing Page
 * Clean, professional animations inspired by modern design
 */

/* Tier logo container with subtle hover effects */
.tier-logo {
    width: 100%;
    height: 150px;
    object-fit: contain;
    border-radius: 8px;
    margin: 1rem 0;
    padding: 1rem;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: gentleFloat 6s ease-in-out infinite;
}

/* Unique animation delays for each tier */
.tier-logo-free {
    animation-delay: 0s;
}

.tier-logo-premium {
    animation-delay: 2s;
}

.tier-logo-advanced {
    animation-delay: 4s;
}

/* Gentle floating animation */
@keyframes gentleFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Hover effect - subtle scale and glow */
.tier-logo:hover {
    transform: scale(1.05) translateY(-4px);
    filter: drop-shadow(0 8px 16px rgba(255, 92, 0, 0.3));
}

/* Premium tier gets orange glow on hover */
.tier-logo-premium:hover {
    filter: drop-shadow(0 8px 20px rgba(255, 92, 0, 0.5));
}

/* Advanced tier gets purple glow on hover */
.tier-logo-advanced:hover {
    filter: drop-shadow(0 8px 20px rgba(124, 58, 237, 0.5));
}

/* Free tier gets subtle white glow on hover */
.tier-logo-free:hover {
    filter: drop-shadow(0 8px 16px rgba(255, 255, 255, 0.2));
}

/* Subtle pulse animation on page load */
@keyframes subtlePulse {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }
    50% {
        opacity: 1;
        transform: scale(1.02);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Apply pulse on initial load */
.tier-logo {
    animation: gentleFloat 6s ease-in-out infinite, subtlePulse 1.2s ease-out;
}

/* Stagger the entrance animations */
.tier-logo-free {
    animation-delay: 0s, 0s;
}

.tier-logo-premium {
    animation-delay: 2s, 0.2s;
}

.tier-logo-advanced {
    animation-delay: 4s, 0.4s;
}

/* Smooth transition for pricing cards when hovering near logo */
.pricing-card:hover .tier-logo {
    transform: translateY(-4px);
}

/* Mobile optimization - reduce animations */
@media (max-width: 768px) {
    .tier-logo {
        width: 120px;
        height: 120px;
    }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .tier-logo {
        animation: none;
        transition: none;
    }
    
    .tier-logo:hover {
        transform: none;
        filter: none;
    }
}

 * Subtle Tier Logo Animations for Pricing Page
 * Clean, professional animations inspired by modern design
 */

/* Tier logo container with subtle hover effects */
.tier-logo {
    width: 100%;
    height: 150px;
    object-fit: contain;
    border-radius: 8px;
    margin: 1rem 0;
    padding: 1rem;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: gentleFloat 6s ease-in-out infinite;
}

/* Unique animation delays for each tier */
.tier-logo-free {
    animation-delay: 0s;
}

.tier-logo-premium {
    animation-delay: 2s;
}

.tier-logo-advanced {
    animation-delay: 4s;
}

/* Gentle floating animation */
@keyframes gentleFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Hover effect - subtle scale and glow */
.tier-logo:hover {
    transform: scale(1.05) translateY(-4px);
    filter: drop-shadow(0 8px 16px rgba(255, 92, 0, 0.3));
}

/* Premium tier gets orange glow on hover */
.tier-logo-premium:hover {
    filter: drop-shadow(0 8px 20px rgba(255, 92, 0, 0.5));
}

/* Advanced tier gets purple glow on hover */
.tier-logo-advanced:hover {
    filter: drop-shadow(0 8px 20px rgba(124, 58, 237, 0.5));
}

/* Free tier gets subtle white glow on hover */
.tier-logo-free:hover {
    filter: drop-shadow(0 8px 16px rgba(255, 255, 255, 0.2));
}

/* Subtle pulse animation on page load */
@keyframes subtlePulse {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }
    50% {
        opacity: 1;
        transform: scale(1.02);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Apply pulse on initial load */
.tier-logo {
    animation: gentleFloat 6s ease-in-out infinite, subtlePulse 1.2s ease-out;
}

/* Stagger the entrance animations */
.tier-logo-free {
    animation-delay: 0s, 0s;
}

.tier-logo-premium {
    animation-delay: 2s, 0.2s;
}

.tier-logo-advanced {
    animation-delay: 4s, 0.4s;
}

/* Smooth transition for pricing cards when hovering near logo */
.pricing-card:hover .tier-logo {
    transform: translateY(-4px);
}

/* Mobile optimization - reduce animations */
@media (max-width: 768px) {
    .tier-logo {
        animation: subtlePulse 1.2s ease-out;
    }
    
    .tier-logo:hover {
        transform: scale(1.02);
    }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .tier-logo {
        animation: none;
        transition: none;
    }
    
    .tier-logo:hover {
        transform: none;
        filter: none;
    }
}

 * Subtle Tier Logo Animations for Pricing Page
 * Clean, professional animations inspired by modern design
 */

/* Tier logo container with subtle hover effects */
.tier-logo {
    width: 100%;
    height: 150px;
    object-fit: contain;
    border-radius: 8px;
    margin: 1rem 0;
    padding: 1rem;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: gentleFloat 6s ease-in-out infinite;
}

/* Unique animation delays for each tier */
.tier-logo-free {
    animation-delay: 0s;
}

.tier-logo-premium {
    animation-delay: 2s;
}

.tier-logo-advanced {
    animation-delay: 4s;
}

/* Gentle floating animation */
@keyframes gentleFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Hover effect - subtle scale and glow */
.tier-logo:hover {
    transform: scale(1.05) translateY(-4px);
    filter: drop-shadow(0 8px 16px rgba(255, 92, 0, 0.3));
}

/* Premium tier gets orange glow on hover */
.tier-logo-premium:hover {
    filter: drop-shadow(0 8px 20px rgba(255, 92, 0, 0.5));
}

/* Advanced tier gets purple glow on hover */
.tier-logo-advanced:hover {
    filter: drop-shadow(0 8px 20px rgba(124, 58, 237, 0.5));
}

/* Free tier gets subtle white glow on hover */
.tier-logo-free:hover {
    filter: drop-shadow(0 8px 16px rgba(255, 255, 255, 0.2));
}

/* Subtle pulse animation on page load */
@keyframes subtlePulse {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }
    50% {
        opacity: 1;
        transform: scale(1.02);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Apply pulse on initial load */
.tier-logo {
    animation: gentleFloat 6s ease-in-out infinite, subtlePulse 1.2s ease-out;
}

/* Stagger the entrance animations */
.tier-logo-free {
    animation-delay: 0s, 0s;
}

.tier-logo-premium {
    animation-delay: 2s, 0.2s;
}

.tier-logo-advanced {
    animation-delay: 4s, 0.4s;
}

/* Smooth transition for pricing cards when hovering near logo */
.pricing-card:hover .tier-logo {
    transform: translateY(-4px);
}

/* Mobile optimization - reduce animations */
@media (max-width: 768px) {
    .tier-logo {
        animation: subtlePulse 1.2s ease-out;
    }
    
    .tier-logo:hover {
        transform: scale(1.02);
    }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .tier-logo {
        animation: none;
        transition: none;
    }
    
    .tier-logo:hover {
        transform: none;
        filter: none;
    }
}

