/* Hero Section Styles */
.hero {
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 60px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 50%;
}

.hero-visual {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    height: 80vh;
    z-index: 1;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.stat {
    text-align: left;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* App Mockup */
.app-mockup {
    position: relative;
    width: 350px;
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-phone-mockup {
    width: 300px;
    height: 600px;
    position: relative;
    background: linear-gradient(145deg, #f0f0f0, #ffffff);
    border-radius: 40px;
    padding: 20px;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.05);
}

.hero-phone-frame {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 30px;
    padding: 8px;
    position: relative;
    overflow: hidden;
}

.hero-phone-screen {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 22px;
    position: relative;
    overflow: hidden;
}

.hero-app-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.8s ease-in-out;
    transform: scale(0.95);
}

.hero-app-screen.active {
    opacity: 1;
    transform: scale(1);
}

.hero-app-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 22px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 4rem 0;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-visual {
        position: static;
        width: 100%;
        height: auto;
        transform: none;
        margin-top: 3rem;
        display: flex;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
}
