/* =========================================
   INDEX.CSS (Landing Page Specifics)
   ========================================= */

.hero { 
    padding: 130px 24px 100px; 
    max-width: var(--max-width); 
    margin: 0 auto; 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    gap: 60px; 
}

.hero-content { flex: 1; max-width: 600px; }

.badge { 
    display: inline-flex; align-items: center; gap: 8px; 
    padding: 8px 16px; background: rgba(255,255,255,0.8); 
    border: 1px solid var(--border-light); border-radius: var(--radius-full); 
    font-size: 13px; font-weight: 700; color: var(--text-main); 
    margin-bottom: 24px; box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.hero h1 { font-size: 64px; margin-bottom: 24px; }
.hero p { font-size: 18px; color: var(--text-muted); margin-bottom: 40px; }
.hero-actions { display: flex; gap: 16px; }

.hero-visual { 
    flex: 1; position: relative; height: 500px; 
    display: flex; align-items: center; justify-content: center; 
}

/* Background blob for the glass effect to interact with */
.visual-circle { 
    width: 400px; height: 400px; border-radius: 50%; 
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(6, 182, 212, 0.1)); 
    position: absolute; filter: blur(30px);
}

.visual-card { 
    position: relative; background: rgba(255, 255, 255, 0.9); 
    backdrop-filter: blur(10px); padding: 32px; border-radius: var(--radius-lg); 
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.1); border: 1px solid var(--border-light); 
    z-index: 2; width: 320px; transform: translateY(20px); 
}

.metrics { background: var(--bg-surface); padding: 100px 24px; margin-top: 40px; border-top: 1px solid var(--border-light); }
.metrics-grid { max-width: var(--max-width); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; text-align: center; }
.metric-item h3 { font-size: 56px; color: var(--accent-primary); margin-bottom: 8px; letter-spacing: -0.04em; }
.metric-item p { color: var(--text-main); font-weight: 700; font-size: 18px; }

/* --- LIVE DOT ANIMATION --- */
.live-dot {
    display: inline-block; 
    width: 8px; 
    height: 8px;
    background: var(--accent-primary); 
    border-radius: 50%;
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(37, 99, 235, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
}

/* --- NEW SECTIONS --- */
.section-title { text-align: center; margin-bottom: 48px; }
.section-title h2 { font-size: 40px; margin-bottom: 16px; }
.section-title p { color: var(--text-muted); font-size: 16px; max-width: 600px; margin: 0 auto; line-height: 1.6; }

/* How It Works Section */
.how-it-works { padding: 120px 24px; max-width: var(--max-width); margin: 0 auto; }
.step-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.step-card { text-align: center; padding: 40px 32px; background: rgba(255,255,255,0.6); backdrop-filter: blur(10px); border-radius: var(--radius-lg); border: 1px solid var(--border-light); transition: transform 0.3s; box-shadow: 0 10px 30px -10px rgba(0,0,0,0.05); }
.step-card:hover { transform: translateY(-5px); }
.step-icon { width: 72px; height: 72px; background: var(--accent-glow); color: var(--accent-primary); border-radius: 20px; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }
.step-icon i { width: 36px; height: 36px; }
.step-card h4 { font-size: 20px; margin-bottom: 12px; }
.step-card p { color: var(--text-muted); font-size: 15px; }

/* Image Gallery Section */
.gallery-section { padding: 120px 24px; background: var(--bg-surface); border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); }
.gallery-grid { max-width: var(--max-width); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.gallery-card { border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 15px 35px -10px rgba(0,0,0,0.1); background: white; border: 1px solid var(--border-light); }
.img-wrapper { width: 100%; height: 260px; overflow: hidden; }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.gallery-card:hover img { transform: scale(1.08); }
.gallery-info { padding: 24px; }
.gallery-info h4 { font-size: 20px; margin-bottom: 6px; }
.gallery-info p { color: var(--text-muted); font-size: 14px; }

/* Update the mobile media query at the bottom of index.css */
@media (max-width: 900px) {
    .hero { flex-direction: column; text-align: center; padding-top: 130px; }
    .hero-content { margin: 0 auto; }
    
    /* Neatly stack the buttons on mobile */
    .hero-actions { 
        justify-content: center; 
        flex-direction: column; 
        width: 100%; 
        max-width: 320px; 
        margin: 0 auto; 
    }
    
    .hero h1 { font-size: 48px; }
    
    /* Make the Visual Card visible on mobile! */
    .hero-visual { 
        display: flex; 
        margin-top: 40px; 
        height: auto; 
        padding: 20px 0; 
        width: 100%; 
    }
    
    .visual-circle { width: 300px; height: 300px; } /* Scale down background blob */
    .visual-card { width: 100%; max-width: 340px; margin: 0 auto; }
    
    .metrics-grid { grid-template-columns: 1fr; gap: 60px; }

    .step-grid, .gallery-grid { grid-template-columns: 1fr; gap: 24px; }

}