.hero {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    color: white;
    padding: 100px 0;
}
.feature-icon {
    font-size: 2rem;
    color: #4f46e5;
    margin-bottom: 1rem;
}
.pricing-card {
    border: none;
    transition: transform 0.3s;
}
.pricing-card:hover {
    transform: translateY(-10px);
}
.cta-section {
    background-color: #f8fafc;
}

.phone-frame {
    padding: 20px;
}

.phone-border {
    background: #1a1a1a;
    border-radius: 50px;
    padding: 15px;
    position: relative;
    aspect-ratio: 9/19;
    max-width: 300px;
    margin: 0 auto;
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 35px;
    object-fit: cover;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
        text-align: center;
    }
    
    .video-container {
        margin-top: 40px;
        max-width: 250px;
    }
    
    /* Adjust font sizes for mobile */
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero .lead {
        font-size: 1.1rem;
    }
    
    /* Stack pricing cards vertically */
    .pricing-card {
        margin-bottom: 30px;
    }
}

html {
    scroll-padding-top: 80px; /* Height of your fixed navbar */
}

section {
    scroll-margin-top: 80px;
}