* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #111;
    line-height: 1.6;
    overflow-x: hidden;
}

.page {
    max-width: 100%;
    margin: 0 auto;
    background: #fff;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 0;
    position: relative;
    overflow: hidden;
    height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px 20px;
    width: 100%;
    height: 100%;
}

.hero-text {
    color: white;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 12px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.subtitle {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 12px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.desc {
    font-size: clamp(1rem, 2vw, 1.2rem);
    opacity: 0.95;
    margin-bottom: 24px;
    line-height: 1.7;
    max-width: 500px;
}

.hero-logo {
    height: 60px;
    width: auto;
    max-width: 300px;
    margin-bottom: 16px;
    margin-top: 20px;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    object-fit: contain;
}

.hero-logo:hover {
    transform: scale(1.05);
}

.app-download-cta {
    margin-bottom: 0;
}

.download-image-btn {
    display: inline-block;
    transition: all 0.2s ease;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1);
    }
    50% { 
        transform: scale(1.05);
    }
}

.download-image-btn:hover {
    animation-play-state: paused;
    transform: scale(1.08);
}

.download-image-btn:active {
    transform: scale(0.95);
    transition: all 0.1s ease;
}

.download-image-btn img {
    width: 200px;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    transition: all 0.3s ease;
}

.download-image-btn:hover img {
    box-shadow: none;
    opacity: 0.9;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    position: relative;
}

.phone-mockup {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.phone-mockup img {
    width: auto;
    height: 100vh;
    max-height:100vh;
    max-width: 100%;
    object-fit: contain;
    filter: none;
    border-radius: 0;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #f8fafc;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 48px;
    color: #1f2937;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.feature-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid #e5e7eb;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: white;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1f2937;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Coming Soon Section */
.coming-soon {
    padding: 60px 0;
    background: white;
    text-align: center;
}

.coming-soon-content i {
    font-size: 48px;
    color: #667eea;
    margin-bottom: 20px;
}

.coming-soon-content h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: #1f2937;
}

.coming-soon-content p {
    color: #6b7280;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Footer */
footer {
    background: #111827;
    color: white;
    padding: 40px 0;
}

.footer-content {
    text-align: center;
}

.tagline {
    color: #60a5fa;
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.footer-links {
    color: #9ca3af;
    font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero {
        height: 100vh;
        padding: 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 0;
        text-align: center;
        padding: 0 20px 20px 20px;
        height: 100%;
    }
    
    .hero-text {
        height: 45%;
        display: flex;
        flex-direction: column;
        padding: 10px;
    }
    
    .hero-image {
        height: 55%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-logo {
        height: 48px;
        margin-bottom: 16px;
        margin-top: 15px;
        max-width: 280px;
        width: auto;
        object-fit: contain;
    }
    
    .phone-mockup img {
        height: 60vh;
        max-height: 60vh;
    }
    
    .hero-text h1 {
        font-size: clamp(1.8rem, 6vw, 2.2rem);
        line-height: 1.2;
    }
    
    .subtitle {
        font-size: clamp(1rem, 4vw, 1.3rem);
    }
    
    .desc {
        max-width: 100%;
        font-size: clamp(0.9rem, 3vw, 1rem);
    }
    
    .features h2 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .download-image-btn img {
        width: 160px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 100vh;
        padding: 0;
    }
    
    .hero-content {
        gap: 0;
        padding: 0 15px 15px 15px;
        height: 100%;
    }
    
    .hero-text {
        height: 40%;
        padding: 10px;
    }
    
    .hero-image {
        height: 60%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-logo {
        height: 40px;
        margin-bottom: 12px;
        margin-top: 10px;
        max-width: 240px;
        width: auto;
        object-fit: contain;
    }
    
    .hero-text h1 {
        font-size: clamp(1.5rem, 7vw, 2rem);
        margin-bottom: 8px;
        line-height: 1.2;
    }
    
    .subtitle {
        font-size: clamp(0.9rem, 5vw, 1.2rem);
        margin-bottom: 8px;
    }
    
    .desc {
        font-size: clamp(0.8rem, 4vw, 1rem);
        margin-bottom: 16px;
        line-height: 1.5;
    }
    
    .phone-mockup img {
        height: 60vh;
        max-height: 60vh;
    }
    
    .download-image-btn img {
        width: 140px;
    }
    
    .features {
        padding: 60px 0;
    }
    
    .features h2 {
        font-size: 1.75rem;
    }
    
    .feature-card {
        padding: 24px;
    }
}