﻿/* Inter as primary font */
body {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Subtle shadows */
.shadow-apple {
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.05);
}

.shadow-apple-lg {
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.05), 0 4px 6px -4px rgb(0 0 0 / 0.05);
}

/* Gradient background animation */
@keyframes gradient-animation {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.animated-gradient {
    background: linear-gradient(-45deg, #f0f9ff, #e0f2fe, #f0f9ff, #dbeafe);
    background-size: 400% 400%;
    animation: gradient-animation 15s ease infinite;
}

/* Soft pulse for the CTA */
@keyframes pulse-animation {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(59,130,246,0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(59,130,246,0);
    }
}

.animate-pulse-slow {
    animation: pulse-animation 2.5s infinite;
}

/* Fade-in on scroll */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s ease-out, transform .6s ease-out;
}

    .fade-in-up.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

/* Accordion */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .5s ease-in-out;
}
