* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-weight: 300;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3F51B5 0%, #764ba2 100%);
    color: white;
    padding: 40px 20px;
    min-height: calc(100vh - 90px);
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    width: 100%;
}

.hero-text {
    flex: 1;
    text-align: left;
    max-width: 500px;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    margin-bottom: 1rem;
}

.tagline {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    margin-bottom: 1rem;
    opacity: 0.95;
}

.disclaimer {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    font-style: italic;
}

.app-store-badge {
    display: inline-block;
    transition: transform 0.2s ease;
}

.app-store-badge:hover {
    transform: translateY(-2px);
}

.app-store-badge img {
    height: 60px;
    width: auto;
}

.hero-screens {
    flex: 1;
    display: flex;
    align-items: center;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
    max-width: 60%;
    max-height: calc(100vh - 200px);
}

.hero-screens::-webkit-scrollbar {
    height: 8px;
}

.hero-screens::-webkit-scrollbar-track {
    background: transparent;
}

.hero-screens::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.hero-screens::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

.screen-carousel {
    display: flex;
    gap: 20px;
    padding: 30px;
}

.screen {
    flex-shrink: 0;
    width: auto;
    min-width: 140px;
    max-width: 200px;
    min-height: 310px;
    max-height: calc(100vh - 260px);
    height: auto;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

footer {
    background: #1a1a1a;
    color: white;
    padding: 25px 20px;
    text-align: center;
    flex-shrink: 0;
}

.privacy-link {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: opacity 0.2s ease;
}

.privacy-link:hover {
    opacity: 0.8;
}

@media (max-width: 968px) {
    .hero-screens {
        display: none;
    }
    
    .hero-content {
        justify-content: center;
    }
    
    .hero-text {
        text-align: center;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .app-store-badge img {
        height: 50px;
    }
}
