body {
    background-color: #FDFBF7;
    overflow-x: hidden;
}

/* Glassmorphism nav */
.glass-nav {
    background: rgba(253, 251, 247, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* Hero Background with Gradient & Pattern */
.hero-section {
    background: linear-gradient(135deg, #e0f2fe 0%, #d1fae5 50%, #fef9c3 100%);
    position: relative;
    z-index: 1;
}
.hero-bg-overlay {
    position: absolute;
    top:0; left:0; right:0; bottom:0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234B853F' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: -1;
    opacity: 0.6;
}

/* Play Store Button Premium Effect */
.play-store-btn {
    background: #111;
    color: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}
.play-store-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 30px -5px rgba(0, 0, 0, 0.4), 0 10px 15px -5px rgba(0, 0, 0, 0.2);
    background: #222;
}
.btn-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #4285f4, #34a853, #fbbc04, #ea4335);
    border-radius: 1rem;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    filter: blur(8px);
}
.play-store-wrapper:hover .btn-glow {
    opacity: 0.7;
}

/* Feature Cards */
.feature-card {
    background: white;
    border-radius: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    position: relative;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom right, rgba(255,255,255,0.4), rgba(255,255,255,0));
    z-index: 1;
    pointer-events: none;
}
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: rgba(75, 133, 63, 0.2);
}
.icon-wrapper {
    transition: transform 0.3s ease;
}
.feature-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(-5deg);
}

/* Screenshot Slider Styling */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}
.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.phone-frame {
    background: #fff;
    padding: 8px;
    border-radius: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15), inset 0 0 0 1px rgba(0,0,0,0.05);
    position: relative;
}
.phone-frame::after {
    content: '';
    position: absolute;
    top: 15px; left: 50%;
    transform: translateX(-50%);
    width: 40px; height: 6px;
    background: #e5e5e5;
    border-radius: 10px;
}
