/* ==========================
   MOOFMENT WEBSITE STYLES
   Exact ColorFeel UI Design
   ========================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'SF Pro Display', 'SF Pro Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    line-height: 1.47;
    color: #1d1d1f;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    padding-top: 70px;
}

/* === NAVIGATION === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

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

.nav-logo a {
    font-size: 20px;
    font-weight: 600;
    color: #1d1d1f;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.nav-logo a:hover {
    opacity: 0.7;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-menu li a {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -0.01em;
    color: #1d1d1f;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.nav-menu li a:hover {
    opacity: 0.7;
}

.nav-menu li a.nav-cta {
    background: #007aff;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 500;
}

.nav-menu li a.nav-cta:hover {
    opacity: 1;
    background: #0051d5;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: #1d1d1f;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

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

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

/* === HEADER === */
header {
    padding: 60px 0 80px 0;
    text-align: center;
    border-bottom: 1px solid #f5f5f7;
}

.app-icon {
    width: 120px;
    height: 120px;
    border-radius: 27px;
    margin: 0 auto 24px;
    display: block;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

h1 {
    font-size: 48px;
    font-weight: 600;
    letter-spacing: -0.003em;
    color: #1d1d1f;
    margin-bottom: 16px;
}

h1 a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.15s ease-in-out;
}

h1 a:hover {
    opacity: 0.7;
}

.subtitle {
    font-size: 21px;
    font-weight: 400;
    color: #86868b;
    margin-bottom: 32px;
}

.app-store-badge {
    display: inline-block;
    margin: 24px 0 20px;
    transition: opacity 0.2s;
}

.app-store-badge:hover {
    opacity: 0.85;
}

.app-store-badge img {
    height: 50px;
    width: auto;
}

.platform-info {
    font-size: 14px;
    color: #86868b;
    margin-top: 16px;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.platform-info span {
    display: inline-block;
}

/* === SCREENSHOTS SECTION === */
.screenshots-section {
    padding: 80px 0;
    overflow: hidden;
}

.screenshots-container {
    position: relative;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.screenshots-container::-webkit-scrollbar {
    display: none;
}

.screenshots-wrapper {
    display: flex;
    gap: 20px;
    padding: 20px 0;
}

.screenshot {
    height: 600px;
    width: auto;
    flex-shrink: 0;
}

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

/* === MAIN CONTENT === */
main {
    padding: 0 0 80px 0;
}

section {
    padding: 60px 0;
    border-bottom: 1px solid #f5f5f7;
}

section:last-child {
    border-bottom: none;
}

h2 {
    font-size: 32px;
    font-weight: 600;
    letter-spacing: -0.003em;
    margin-bottom: 24px;
    color: #1d1d1f;
}

h3 {
    font-size: 21px;
    font-weight: 600;
    letter-spacing: -0.003em;
    margin-bottom: 12px;
    color: #1d1d1f;
}

p {
    font-size: 17px;
    line-height: 1.6;
    color: #1d1d1f;
    margin-bottom: 16px;
}

/* === FEATURE GRID === */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.feature-card {
    display: flex;
    flex-direction: column;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 16px;
    line-height: 1;
}

.feature-card h3 {
    margin-bottom: 12px;
}

.feature-card p {
    color: #86868b;
    font-size: 17px;
}

/* === STATS SECTION === */
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-top: 40px;
    padding: 40px 0;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #007aff;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 17px;
    color: #86868b;
}

/* === DOWNLOAD SECTION === */
.download-section {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(180deg, #ffffff 0%, #f5f5f7 100%);
    margin: 0 -22px;
    padding-left: 22px;
    padding-right: 22px;
}

.download-section h2 {
    margin-bottom: 16px;
}

.download-section p {
    font-size: 19px;
    color: #86868b;
    margin-bottom: 32px;
}

.download-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #007aff;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 16px rgba(0, 122, 255, 0.3);
}

.download-button:hover {
    background: #0051d5;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 122, 255, 0.4);
}

/* === BIKE COMPATIBILITY === */
.bikes-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.bike-card {
    padding: 32px;
    background: #f5f5f7;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.bike-card:hover {
    transform: translateY(-4px);
    background: #efefef;
}

.bike-brand {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #007aff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.bike-card h3 {
    margin-bottom: 8px;
}

.bike-card p {
    color: #86868b;
    font-size: 15px;
    margin-bottom: 20px;
}

.bike-features {
    list-style: none;
}

.bike-features li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    font-size: 15px;
    color: #1d1d1f;
}

.bike-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #007aff;
    font-weight: 600;
}

/* === FOOTER === */
footer {
    border-top: 1px solid #f5f5f7;
    padding: 40px 0;
    margin-top: 40px;
}

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

.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 14px;
    color: #86868b;
    text-decoration: none;
    transition: color 0.15s;
}

.footer-links a:hover {
    color: #1d1d1f;
}

.footer-text {
    font-size: 13px;
    color: #86868b;
}

/* === SOCIAL LINKS === */
.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 32px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #f5f5f7;
    color: #1d1d1f;
    font-size: 20px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: #007aff;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3);
}

/* === SOCIAL CHANNEL CARDS === */
section a[href*="vanmoofer.com"],
section a[href*="x.com"],
section a[href*="instagram.com"],
section a[href*="medium.com"],
section a[href*="youtube.com"],
section a[href*="tiktok.com"] {
    transition: all 0.3s ease !important;
}

section a[href*="vanmoofer.com"]:hover,
section a[href*="x.com"]:hover,
section a[href*="instagram.com"]:hover,
section a[href*="medium.com"]:hover,
section a[href*="youtube.com"]:hover,
section a[href*="tiktok.com"]:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* === ANDROID INTEREST LINK === */
a[href*="forms.gle"] {
    transition: opacity 0.2s ease;
}

a[href*="forms.gle"]:hover {
    opacity: 0.7;
    text-decoration: underline !important;
}

/* === LEGAL PAGES === */
.legal-page {
    padding: 80px 0;
    max-width: 900px;
    margin: 0 auto;
}

.legal-page header {
    padding: 40px 0;
    text-align: left;
    border-bottom: 1px solid #f5f5f7;
    margin-bottom: 40px;
}

.legal-page h1 {
    margin-bottom: 12px;
    font-size: 40px;
}

.legal-updated {
    font-size: 15px;
    color: #86868b;
    margin-bottom: 48px;
    display: block;
}

.legal-page section {
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid #f5f5f7;
}

.legal-page section:last-of-type {
    border-bottom: none;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 0;
    margin-bottom: 20px;
    color: #1d1d1f;
    font-weight: 600;
}

.legal-page h3 {
    font-size: 21px;
    margin-top: 24px;
    margin-bottom: 16px;
    color: #1d1d1f;
    font-weight: 600;
}

.legal-page h4 {
    font-size: 17px;
    margin-top: 20px;
    margin-bottom: 12px;
    color: #1d1d1f;
    font-weight: 600;
}

.legal-page p {
    font-size: 17px;
    line-height: 1.7;
    color: #1d1d1f;
    margin-bottom: 20px;
}

.legal-page ul,
.legal-page ol {
    margin-left: 24px;
    margin-bottom: 20px;
    padding-left: 0;
}

.legal-page li {
    margin-bottom: 12px;
    line-height: 1.7;
    font-size: 17px;
    color: #1d1d1f;
}

.legal-page li strong {
    color: #1d1d1f;
}

.legal-page a {
    color: #007aff;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.legal-page a:hover {
    opacity: 0.7;
}

.legal-page strong {
    font-weight: 600;
    color: #1d1d1f;
}

/* Language Selector Styling */
.legal-page .language-selector a {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: #f5f5f7;
    border-radius: 12px;
    text-decoration: none;
    color: #1d1d1f;
    transition: all 0.2s ease;
}

.legal-page .language-selector a:hover {
    background: #ececec;
    transform: translateX(8px);
}

.legal-page .language-selector a span:first-child {
    font-size: 32px;
}

.legal-page .language-selector a span:last-child {
    font-size: 19px;
    font-weight: 600;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        padding: 40px 22px;
        transition: left 0.3s ease;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-menu li a {
        display: block;
        padding: 16px 0;
        font-size: 18px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .nav-menu li a.nav-cta {
        margin-top: 16px;
        padding: 16px 32px;
        border-bottom: none;
    }

    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 28px;
    }

    .subtitle {
        font-size: 19px;
    }

    header {
        padding: 40px 0 60px 0;
    }

    .app-icon {
        width: 100px;
        height: 100px;
    }

    .screenshots-section {
        padding: 60px 0;
    }

    .screenshot {
        height: 500px;
    }

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

    .stats-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .bikes-container {
        grid-template-columns: 1fr;
    }

    .platform-info {
        flex-direction: column;
        gap: 8px;
    }

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

    .social-links {
        gap: 16px;
    }

    section {
        padding: 40px 0;
    }
}

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

    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 24px;
    }

    .subtitle {
        font-size: 17px;
    }

    .screenshot {
        height: 400px;
    }

    .stat-number {
        font-size: 36px;
    }

    .download-section {
        margin: 0 -16px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .social-links {
        gap: 12px;
    }

    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}
