.gradient-text {
    background: linear-gradient(90deg, #3B82F6, #8B5CF6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-bg {
    background: linear-gradient(90deg, #3B82F6, #8B5CF6);
}

.feature-card {
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.testimonial-card {
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Beta badge */
.beta-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(90deg, #FF6B6B, #FF9E9E);
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 1;
}

/* Form success message */
.form-success {
    display: none;
    background-color: #10B981;
    color: white;
    text-align: center;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 16px;
}

/* Form error message */
.form-error {
    display: none;
    background-color: #EF4444;
    color: white;
    text-align: center;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 16px;
}

/* Mobile Menu */
.mobile-menu {
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
}

.mobile-menu.active {
    transform: translateY(0);
}


input, select, textarea {
    color: #1F2937; /* Make sure text is dark in form inputs */
}

/* Form placeholder color */
::placeholder {
    color: #9CA3AF;
    opacity: 1;
}
