/* Custom animations */
@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.5;
    }
}

.animate-pulse {
    animation: pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.delay-1000 {
    animation-delay: 1s;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom gradient text */
.bg-clip-text {
    -webkit-background-clip: text;
    background-clip: text;
}

/* Ensure images are responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Mobile menu animation */
#mobile-menu {
    transition: all 0.3s ease-in-out;
}

/* Pricing tabs - hide on desktop */
@media (min-width: 768px) {
    .pricing-tab {
        display: none;
    }
    
    .pricing-panel {
        display: block !important;
    }
}

/* Phone mockup frame */
.phone-mockup {
    position: relative;
    display: inline-block;
}

.phone-mockup .phone {
    position: relative;
    border: 12px solid #111;
    border-radius: 36px;
    overflow: hidden;
    background: #111;
    padding: 0;
    box-sizing: border-box;
    display: block;
}

.phone-mockup .phone img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 24px;
    margin: 0;
    padding: 0;
    object-fit: cover;
}

.phone-mockup .notch-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 10;
    pointer-events: none;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 0;
}

.phone-mockup .notch {
    width: 160px;
    height: 34px;
    background-color: #111;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    margin-top: 0;
}

@media (max-width: 640px) {
    .phone-mockup .phone {
        border-width: 8px;
        border-radius: 24px;
    }
    
    .phone-mockup .phone img {
        border-radius: 16px;
    }
    
    .phone-mockup .notch-container {
        height: 60px;
    }
    
    .phone-mockup .notch {
        width: 120px;
        height: 26px;
        border-bottom-left-radius: 14px;
        border-bottom-right-radius: 14px;
    }
}

