/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Header */
header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 3rem 0;
}

.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.logo-icon {
    display: flex;
    align-items: center;
}

.logo-icon img {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.logo-text h1 {
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(135deg, #f4b942 0%, #f39c12 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.app-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.badge img {
    height: 60px;
    width: 180px;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.2s ease;
}

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

/* Hero Section */
.hero {
    padding: 4rem 0;
    background: linear-gradient(to bottom, #fff9e6, #fff);
    text-align: center;
}

.hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.hero-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

/* App Section */
.app {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fff9e6 0%, #ffeaa7 100%);
}

.app-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(244, 185, 28, 0.2);
    max-width: 500px;
    margin: 0 auto;
    border: 2px solid #f4b91c;
}

.app-card h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.app-card p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
}

.coming-soon {
    text-align: center;
}

.coming-soon-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #f39c12;
    margin-bottom: 1.5rem;
}

.store-badges-preview {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.badge-placeholder {
    width: 180px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.7;
    transition: all 0.2s ease;
}

.badge-placeholder:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.badge-placeholder.ios {
    background: linear-gradient(135deg, #000 0%, #333 100%);
    color: white;
}

.badge-placeholder.google {
    background: linear-gradient(135deg, #4285f4 0%, #34a853 50%, #fbbc05 75%, #ea4335 100%);
    color: white;
}


/* Footer */
footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #f4b91c;
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-links a:hover {
    color: #f39c12;
    text-shadow: 0 0 8px rgba(244, 185, 28, 0.5);
}

.footer-text {
    color: #bdc3c7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        text-align: center;
    }

    .brand {
        flex-direction: column;
        gap: 1rem;
    }

    .logo-text h1 {
        font-size: 2.5rem;
    }

    .logo-icon img {
        height: 70px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h2 {
        font-size: 2rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .phone-mockup {
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .logo-text h1 {
        font-size: 2rem;
    }

    .logo-icon img {
        height: 60px;
    }

    .hero-text h2 {
        font-size: 1.8rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .store-badges-preview {
        justify-content: center;
    }

    .badge-placeholder {
        width: 160px;
        height: 50px;
        font-size: 0.8rem;
    }
}