/* Base styles and CSS reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #232b38;
    --text-color: #1A1A1A;
    --light-bg: #F7F9FA;
    --white: #FFFFFF;
}

body {
    font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-bg);
}

/* Navigation */
nav {
    position: fixed;
    width: 100%;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.nav-links {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 1.05rem;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--light-bg), #EDF2F7);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    z-index: 0;
}

.hero-content {
    letter-spacing: 1.5px;
    max-width: 1200px;
    text-align: center;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    position: relative;
    z-index: 1;
}


.hero-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 1rem;
}

.hero-text h2 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.hero-text p {
    font-size: 1.25rem;
    color: #000000;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.features {
    padding: 6rem 2rem;
    background: var(--white);
}

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

.feature-card {
    padding: 2.5rem;
    border-radius: 24px;
    background: var(--light-bg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.feature-card i {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.feature-card p {
    color: #4A5568;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Screenshots Section */
.screenshots {
    padding: 8rem 2rem;
    background: var(--light-bg);
}

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

.screenshots-grid img {
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.screenshots-grid img:hover {
    transform: scale(1.02);
}

.testimonial {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    opacity: 0;
    transition: opacity 0.8s ease;
    padding: 2rem;
}

.testimonial.active {
    opacity: 1;
}

.testimonial p {
    font-size: 1.5rem;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.testimonial cite {
    color: var(--primary-color);
    font-style: normal;
    font-size: 1.1rem;
    font-weight: 500;
}

footer {
    padding: 3rem 2rem;
    background: var(--light-bg);
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 1rem 0;
}

.social-links a {
    color: var(--text-color);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
}

footer p {
    color: #4A5568;
}

footer a {
    /* text-decoration: none; */
    transition: color 0.3s ease;
}

.legal-links {
    margin-top: 1rem;
}

.legal-links a {
    font-size: 0.95rem;
    color: #4A5568;
    text-decoration: underline;
}

.legal-links a:hover {
    color: var(--primary-color);
}

/* Buttons */
.button {
    display: inline-block;
    padding: 1.2rem 2.4rem;
    border-radius: 100px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(96, 184, 197, 0.3);
    background-color: #110e56;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.download-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--light-bg), #EDF2F7);
    text-align: center;
}

.download-content {
    max-width: 800px;
    margin: 0 auto;
}

.download-content h2 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.download-content p {
    font-size: 1.25rem;
    color: #4A5568;
    margin-bottom: 2.5rem;
}

.store-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.store-button {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.store-button:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.store-button img {
    height: 48px;
    width: auto;
}

/* Privacy Policy Page */
.privacy-content {
    padding: 8rem 2rem;
    min-height: 80vh;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.content-wrapper h1 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.privacy-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4A5568;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-text {
        padding-right: 0;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

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

    .nav-links {
        justify-content: center;
    }

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

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

    .testimonial p {
        font-size: 1.25rem;
    }

    .store-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .download-content h2 {
        font-size: 2rem;
    }
}