/* Custom Styles for Mazion Landing Page */

.hero-title {
    background: linear-gradient(to right, #60a5fa, #67e8f9);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.btn-primary {
    background-color: #2563eb !;
    color: white;
    padding: 12px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #1d4ed8;
}

.btn-secondary {
    border: 2px solid #60a5fa;
    color: #60a5fa;
    background: transparent;
    padding: 10px 32px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #60a5fa;
    color: white;
}

.feature-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

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

.feature-icon {
    width: 32px;
    height: 32px;
    margin-right: 12px;
}

.icon-blue { color: #3b82f6; }
.icon-green { color: #10b981; }
.icon-purple { color: #8b5cf6; }
.icon-orange { color: #f97316; }
.icon-red { color: #ef4444; }
.icon-cyan { color: #06b6d4; }

.gradient-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.cta-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

#confirmationModal {
    backdrop-filter: blur(3px);
}

    #confirmationModal .animate-fadeIn {
        animation: fadeIn 0.3s ease-out;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

