body {
    font-family: 'Inter', sans-serif;
    color: #333;
    background-color: #f9fafb;
}
.gradient-bg {
    background: linear-gradient(135deg, #3182ce 0%, #5a67d8 100%);
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.testimonial-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.cta-button {
    background: linear-gradient(135deg, #3182ce 0%, #5a67d8 100%);
    transition: all 0.3s ease;
}
.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(90, 103, 216, 0.4);
}
.integration-icon {
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}
.integration-icon:hover {
    filter: grayscale(0%);
    opacity: 1;
}
html {
    scroll-behavior: smooth;
}
.screenshot-shadow {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
}
.screenshot-shadow:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}
.gradient-border {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}
.gradient-border:before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #3182ce, #5a67d8, #4299e1, #3182ce);
    z-index: -1;
    border-radius: 12px;
    background-size: 400% 400%;
    animation: gradient 3s ease infinite;
}
@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
.floating {
    animation: floating 3s ease-in-out infinite;
}
@keyframes floating {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}
.form-input:focus {
    border-color: #3182ce;
    box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.2);
}