/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

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

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
}

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

.nav-link {
    text-decoration: none;
    color: #666;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #333;
}

.maker-gully-logo {
    height: 24px;
    width: auto;
    margin-left: 0.5rem;
    opacity: 0.8;
    transition: opacity 0.2s ease;
    border-radius: 6px;
}

.maker-gully-logo:hover {
    opacity: 1;
}

.maker-gully-toplink {
    color: #999;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.maker-gully-toplink:hover {
    color: #666;
}

.maker-gully-toplink img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: none;
    transition: transform 0.2s;
}

.maker-gully-toplink img:hover, .maker-gully-toplink img:focus {
    transform: scale(1.07);
}

/* Hero Section */
.hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    text-align: center;
    padding: 120px 0 80px;
}

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

.app-icon {
    margin-bottom: 2rem;
}

.logo-image {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.hero-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.hero-actions {
    display: flex;
    justify-content: center;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #333;
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background: #555;
    transform: translateY(-2px);
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.how-it-works h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: #333;
}

.steps {
    display: flex;
    justify-content: center;
    gap: 4rem;
    max-width: 600px;
    margin: 0 auto;
}

.step {
    text-align: center;
    flex: 1;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #333;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 auto 1rem;
}

.step p {
    color: #666;
    font-size: 0.9rem;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.features h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: #333;
}

.features-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
    max-width: 600px;
    margin: 0 auto;
}

.feature {
    text-align: center;
    flex: 1;
}

.feature i {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.feature p {
    color: #666;
    font-size: 0.9rem;
}

/* Download Section */
.download {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.download h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.download p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #f8f9fa;
    padding: 2rem 0;
    border-top: 1px solid #e0e0e0;
}

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

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

.footer-link {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #333;
}

.footer-copyright {
    color: #999;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    html {
        scroll-padding-top: 120px;
    }
    
    .nav-container {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        padding: 1rem;
    }
    
    .nav-links {
        gap: 0.7rem;
        flex-wrap: wrap;
        font-size: 0.97rem;
        padding-top: 0.5rem;
        justify-content: center;
    }
    
    .nav-link {
        font-size: 0.97rem;
        padding: 0 0.1em;
    }
    
    .maker-gully-toplink {
        margin-left: 0;
        margin-top: 0.5rem;
    }
    
    .hero {
        min-height: 50vh;
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .logo-image {
        width: 80px;
        height: 80px;
    }
    
    .app-icon {
        margin-bottom: 1.5rem;
    }
    
    .steps {
        flex-direction: column;
        gap: 2rem;
    }
    
    .features-grid {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .footer-copyright {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .footer-copyright p {
        margin: 0;
    }
    
    .maker-gully-footer-link img {
        width: 28px;
        height: 28px;
    }
    
    .maker-gully-toplink img {
        width: 28px;
        height: 28px;
        border-radius: 6px;
    }
}