html {
    scroll-behavior: smooth;
}

#pricing {
    background: url('https://239114911.e.cdneverest.net/cdnazota/azt-assets/core-mod-assets/assets-landing-page/images/pricing_bg.jpg');
    background-size: 800% 200%;
    background-repeat: no-repeat;
    background-blend-mode: multiply;
    background-position: center;
}

/* Enhanced button animations */
button[data-scroll],
.plan-tab {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

button[data-scroll]:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

button[data-scroll]:active {
    transform: translateY(0);
    transition: all 0.1s;
}

/* Section highlight animation */
#comparison {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Smooth scroll padding adjustment */
section {
    scroll-margin-top: 20px;
}

@media (max-width: 768px) {
    section {
        scroll-margin-top: 10px;
    }
}