.hover-float {
    transition: transform 0.3s ease;
}

.hover-float:hover {
    transform: translateY(-10px);
}

.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

.features-item {
    transition: all 0.3s ease;
}

.features-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.features-item .icon-box {
    transition: all 0.4s ease;
}

.features-item:hover .icon-box {
    transform: scale(1.1) rotate(5deg);
}

.tier {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.tier:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.tier:hover .btn {
    transform: scale(1.05);
}

.team .panel img {
    transition: all 0.5s ease;
}

.team .panel:hover img {
    transform: scale(1.08);
}

.dashboard-image {
    position: relative;
    transition: all 0.5s ease;
}

.dashboard-image:hover {
    transform: perspective(1000px) rotateY(-5deg);
}

/* Müşteri yorumları için animasyonlar */
.swiper-slide {
    transition: all 0.3s ease;
}

.swiper-slide:hover {
    transform: translateY(-5px) scale(1.02);
}

#cta .btn {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

#cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 14px rgba(0,0,0,0.1);
}

#cta .btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

#cta .btn:hover::after {
    width: 300px;
    height: 300px;
}

.features-items .features-item-more {
    transition: all 0.4s ease;
}

.features-items .features-item-more:hover {
    transform: rotate(10deg) scale(1.1);
}

.scroll-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.scroll-animate.active {
    opacity: 1;
    transform: translateY(0);
}
.features-item {
    position: relative;
    overflow: visible;
}

.features-item::before {
    content: "";
    position: absolute;
    inset: -2px;
    border: 2px solid #2a09ae;
    border-radius: inherit;
    animation: borderRotate 6s linear infinite;
}

@keyframes borderRotate {
    from {
        clip-path: polygon(0 0, 2% 0, 2% 100%, 0 100%);
    }
    25% {
        clip-path: polygon(0 0, 100% 0, 100% 2%, 0 2%);
    }
    50% {
        clip-path: polygon(98% 0, 100% 0, 100% 100%, 98% 100%);
    }
    75% {
        clip-path: polygon(0 98%, 100% 98%, 100% 100%, 0 100%);
    }
    to {
        clip-path: polygon(0 0, 2% 0, 2% 100%, 0 100%);
    }
}

.features-item:hover::before {
    border-color: #4318e2;
    animation-duration: 2s; 
}

.features-item > * {
    position: relative;
    z-index: 2;
}


.features-item::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(90deg, #2a09ae, #4318e2, #2a09ae);
    background-size: 200% 100%;
    border-radius: inherit;
    z-index: 1;
    animation: shine 6s linear infinite;
    mask: 
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: xor;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.counter-number {
    animation: countUp 2s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.features-item .icon-box {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.features-item:hover .icon-box {
    animation: flip 0.6s ease-out;
}

@keyframes flip {
    0% { transform: rotateY(0); }
    100% { transform: rotateY(360deg); }
}


const hero = document.querySelector('#overview');
window.addEventListener('scroll', () => {
    const scroll = window.scrollY;
    if (hero) {
        hero.style.backgroundPositionY = `${scroll * 0.5}px`;
    }
});


.faq .uc-accordion-content {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.faq .uc-accordion-content::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #2a09ae;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.faq .uc-accordion-title[aria-expanded="true"] + .uc-accordion-content::after {
    transform: scaleX(1);
}

.dashboard-wrapper {
    perspective: 2000px;
    transform-style: preserve-3d;
    position: relative;
    width: 100%;
    padding: 20px;
}

.dashboard-image {
    position: relative;
    transform-style: preserve-3d;
    transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.dashboard-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(42, 9, 174, 0.15);
}

.dashboard-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        45deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dashboard-image::after {
    content: '';
    position: absolute;
    inset: 0;
    transform: translateZ(-50px);
    background: #2a09ae;
    filter: blur(50px);
    opacity: 0.2;
    transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.dashboard-image:hover::before {
    opacity: 1;
}

.dashboard-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(90deg, #2a09ae, #4318e2);
    border-radius: 14px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dashboard-image:hover .dashboard-glow {
    opacity: 0.5;
}

.dashboard-detail {
    position: absolute;
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 3;
}

.detail-1 {
    top: 10%;
    left: -50px;
    transform: translateZ(50px);
}

.detail-2 {
    bottom: 10%;
    right: -50px;
    transform: translateZ(30px);
}