* {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.btn-cta {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-cta:hover::before {
    left: 100%;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px -10px rgba(5, 150, 105, 0.5);
}

.header-sticky {
    transition: all 0.3s ease;
}

.header-sticky.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.feature-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.12);
}

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

.pricing-card:hover {
    transform: translateY(-8px);
}

.pricing-card.featured {
    border: 2px solid #059669;
    box-shadow: 0 25px 50px -12px rgba(5, 150, 105, 0.25);
}

.step-line {
    position: absolute;
    left: 28px;
    top: 56px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #059669, #d1fae5);
}

.counter-animate {
    transition: all 0.6s ease-out;
}

.stat-glow {
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 20px rgba(5, 150, 105, 0.1); }
    to { box-shadow: 0 0 40px rgba(5, 150, 105, 0.3); }
}

.badge-pro {
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(245, 158, 11, 0); }
}

.made-by {
    display: inline-block;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    margin-top: 1rem;
}

.made-by:hover {
    opacity: 1;
}

.made-by img {
    height: 22px;
    width: auto;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.open {
    max-height: 500px;
}

@media (max-width: 768px) {
    footer .grid > div {
        text-align: center;
    }
    footer .mb-6 {
        display: flex;
        justify-content: center;
    }
    footer ul.space-y-3 li {
        justify-content: center;
    }
}
