.gradient-bg {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.hero-image {
    animation: float 6s ease-in-out infinite;
}
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}
.testimonial-card {
    transition: all 0.3s ease;
}
.testimonial-card:hover {
    transform: scale(1.03);
}
.beta-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #10b981;
    color: white;
    font-size: 14px;
    font-weight: bold;
    padding: 5px 15px;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 10;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}
.disabled-plan {
    opacity: 0.6;
    pointer-events: none;
}
.os-icon {
    background-color: #d1fae5;
    color: #065f46;
    border-radius: 12px;
    padding: 15px;
    font-size: 24px;
}
.illustration {
    max-width: 100%;
    height: auto;
}