.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }
.service-card { transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.service-card:hover { transform: translateY(-10px); }
.float-animation { animation: float 3s ease-in-out infinite; }
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}
.phone-mockup {
    width: 300px;
    height: 600px;
    border: 12px solid #1A1A1A;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 50px 100px -20px rgba(0,0,0,0.25);
}
.phone-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background: #1A1A1A;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    z-index: 10;
}
.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 28px;
    overflow: hidden;
}
.faq-toggle i {
    transition: transform 0.3s ease;
}
.faq-item.active .faq-toggle i {
    transform: rotate(45deg);
}
.faq-item.active .faq-content {
    max-height: 500px;
}
.pricing-card {
    transition: all 0.3s ease;
}
.pricing-card:hover {
    transform: translateY(-5px);
    border-color: #1A1A1A;
}
.step-card {
    transition: all 0.3s ease;
}
.step-card:hover {
    transform: scale(1.05);
}
@media (max-width: 1024px) {
    .phone-mockup {
        display: none;
    }
}
@media (max-width: 768px) {
    #iletisim > div {
        width: 100% !important;
        border-radius: 2.5rem !important;
    }
}
