/* 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: #fff;
}

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

/* Navigation */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #000;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.nav-menu {
    display: none;
    list-style: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

.nav-menu.active {
    display: flex;
}

.nav-menu li {
    padding: 0.75rem 20px;
}

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

.nav-menu a:hover {
    color: #FE2C55;
}

/* Hero Section */
.hero {
    padding: 3rem 0 4rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.hero-text {
    text-align: center;
    max-width: 600px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #000;
}

.hero-description {
    font-size: 1.5rem;
    font-weight: 600;
    color: #FE2C55;
    margin-bottom: 0.5rem;
}

.hero-subtext {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

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

.hero-image {
    width: 100%;
    max-width: 300px;
    background: transparent;
}

.phone-mockup {
    width: 100%;
    height: auto;
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    display: block;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    text-align: center;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #FE2C55 0%, #FF4D7A 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(254, 44, 85, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(254, 44, 85, 0.5);
}

.btn-secondary {
    background: #fff;
    color: #FE2C55;
    border: 2px solid #FE2C55;
}

.btn-secondary:hover {
    background: #FE2C55;
    color: #fff;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

/* Features Section */
.features {
    padding: 4rem 0;
    background: #fff;
}

.features h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #1f2937;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.feature-card {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(254, 44, 85, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

.feature-card p {
    color: #6b7280;
    font-size: 1rem;
}

/* Screenshots Section */
.screenshots {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

.screenshots h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #1f2937;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    justify-items: center;
}

.screenshot-item {
    text-align: center;
    max-width: 300px;
    background: transparent;
}

.screenshot-item img {
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
    background: transparent;
    border: none;
    padding: 0;
    margin-left: 0;
    margin-right: 0;
    display: block;
}

.screenshot-item p {
    font-weight: 500;
    color: #6b7280;
    font-size: 1rem;
}

/* CTA Section */
.cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #FE2C55 0%, #FF4D7A 100%);
    text-align: center;
    color: #fff;
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.cta .btn-primary {
    background: #fff;
    color: #FE2C55;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta .btn-primary:hover {
    background: #f9fafb;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Legal Pages */
.legal-page {
    padding: 3rem 0 4rem;
    background: #fff;
}

.legal-page h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.last-updated {
    color: #6b7280;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.contact-intro {
    color: #4b5563;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

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

.legal-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.legal-content p {
    margin-bottom: 1rem;
    color: #4b5563;
    line-height: 1.7;
}

.legal-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
    color: #4b5563;
}

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.legal-content a {
    color: #FE2C55;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    padding: 2rem 0;
    background: #1f2937;
    color: #fff;
    text-align: center;
}

.footer a {
    color: #FE2C55;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.copyright {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #9ca3af;
}

/* Tablet and Desktop Styles */
@media (min-width: 768px) {
    .hamburger {
        display: none;
    }

    .nav-menu {
        display: flex;
        flex-direction: row;
        position: static;
        box-shadow: none;
        padding: 0;
        gap: 2rem;
    }

    .nav-menu li {
        padding: 0;
    }

    .hero-content {
        flex-direction: row;
        align-items: center;
        text-align: left;
    }

    .hero-text {
        text-align: left;
        flex: 1;
    }

    .hero h1 {
        font-size: 4rem;
    }

    .hero-description {
        font-size: 1.75rem;
    }

    .hero-buttons {
        flex-direction: row;
        align-items: flex-start;
    }

    .hero-image {
        flex: 1;
        max-width: 400px;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .screenshots-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hero {
        padding: 5rem 0 6rem;
    }

    .hero h1 {
        font-size: 5rem;
    }

    .screenshots-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .features {
        padding: 6rem 0;
    }

    .screenshots {
        padding: 6rem 0;
    }

    .cta {
        padding: 6rem 0;
    }
}

