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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Header styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.logo img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

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

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.2s;
}

.nav a:hover {
    color: #007bff;
}

/* Hero section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #ffffff;
    padding: 8rem 2rem 4rem;
    position: relative;
}

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

.hero-logo {
    margin-bottom: 3rem;
    width: 100%;
}

.hero-logo img {
    width: 100%;
    max-width: 800px;
    height: auto;
    transition: transform 0.3s ease;
    margin: 0 auto;
    display: block;
}

.hero-logo img:hover {
    transform: scale(1.05);
}

.hero p {
    font-size: 1.4rem;
    color: #666;
    margin-bottom: 3rem;
    font-weight: 400;
    line-height: 1.8;
}

.cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.2s;
}

.cta-button.primary {
    background-color: #007bff;
    color: white;
}

.cta-button.primary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.cta-button.secondary {
    background-color: transparent;
    color: #007bff;
    border: 2px solid #007bff;
}

.cta-button.secondary:hover {
    background-color: #007bff;
    color: white;
    transform: translateY(-2px);
}

/* Section styles */
section {
    padding: 6rem 2rem;
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

/* Product section */
.product {
    background-color: #f8f9fa;
}

.product-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.product-intro h3 {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

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

.product-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.screenshot-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.screenshot-card:hover {
    transform: translateY(-5px);
}

.screenshot-card img {
    width: 100%;
    height: auto;
    display: block;
}

.screenshot-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.screenshot-card:hover .screenshot-overlay {
    transform: translateY(0);
}

.screenshot-overlay h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.screenshot-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature {
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.feature p {
    color: #666;
}

/* Contact section */
.contact {
    text-align: center;
    background-color: #fff;
}

.contact p {
    margin-bottom: 2rem;
    color: #666;
}

.contact-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #28a745;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.2s;
}

.contact-button:hover {
    background-color: #218838;
}

/* Footer styles */
.footer {
    background-color: #1a1a1a;
    color: white;
    padding: 2rem;
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.social-icons img {
    width: 32px;
    height: 32px;
    transition: transform 0.2s;
}

.social-icons img:hover {
    transform: scale(1.1);
}

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

/* Responsive design */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        padding: 1rem;
    }

    .nav {
        margin-top: 1rem;
        gap: 1rem;
    }

    .hero-logo img {
        max-width: 100%;
        height: auto;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .cta-group {
        flex-direction: column;
    }

    .product-cta {
        flex-direction: column;
    }

    section {
        padding: 4rem 1rem;
    }

    section h2 {
        font-size: 2rem;
    }

    .product-intro h3 {
        font-size: 1.8rem;
    }

    .screenshots-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}
