/* ==========================
   MOOFMENT HOMEPAGE STYLES
   Shared across all languages
   ========================== */

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

body {
    font-family: 'SF Pro Display', 'SF Pro Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #1d1d1f;
    background-color: #ffffff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 16px 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 500;
    color: #1d1d1f;
    text-decoration: none;
}

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

.nav-menu a {
    color: #1d1d1f;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: opacity 0.2s;
}

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

.nav-cta {
    background: #007aff;
    color: white !important;
    padding: 10px 20px;
    border-radius: 980px;
    font-weight: 500;
}

.nav-cta:hover {
    background: #0056b3;
    opacity: 1 !important;
}

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

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: #1d1d1f;
    transition: all 0.3s;
}

/* Language Dropdown */
.lang-dropdown {
    position: relative;
}

.lang-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 20px;
    background: rgba(0, 122, 255, 0.1);
    transition: all 0.2s;
}

.lang-dropdown-toggle:hover {
    background: rgba(0, 122, 255, 0.15);
}

.lang-dropdown-toggle span {
    font-size: 14px;
    font-weight: 500;
    color: #007aff;
}

.lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
    padding: 8px;
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
}

.lang-dropdown:hover .lang-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    text-decoration: none;
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.15s;
}

.lang-dropdown-menu a:hover {
    background: #f1f5f9;
    color: #1d1d1f;
}

.lang-dropdown-menu a.active {
    background: rgba(0, 122, 255, 0.1);
    color: #007aff;
}

/* Hero Section */
.hero {
    padding: 140px 24px 100px;
    text-align: center;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.hook-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #fef08a 0%, #fde047 100%);
    color: #1a1a1a;
    padding: 10px 20px;
    border-radius: 980px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 32px;
    animation: pulse 2s infinite;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.hero-headline {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1d1d1f;
    letter-spacing: -0.02em;
}

.hero-headline .highlight {
    background: linear-gradient(135deg, #007aff 0%, #00c6ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subheadline {
    font-size: clamp(18px, 2.5vw, 24px);
    color: #64748b;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.5;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

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

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 122, 255, 0.4);
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 122, 255, 0.1);
    color: #007aff;
    padding: 16px 32px;
    border-radius: 980px;
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: rgba(0, 122, 255, 0.15);
}

.trust-badges {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #64748b;
}

.trust-badge i {
    color: #22c55e;
}

/* Problem Section */
.problem-section {
    padding: 100px 24px;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    color: white;
}

.problem-header {
    text-align: center;
    margin-bottom: 60px;
}

.problem-label {
    display: inline-block;
    background: rgba(253, 224, 71, 0.3);
    color: #eab308;
    padding: 8px 16px;
    border-radius: 980px;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.problem-headline {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 500;
    margin-bottom: 16px;
}

.problem-subline {
    font-size: 18px;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.problem-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.problem-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

.problem-icon {
    width: 64px;
    height: 64px;
    background: rgba(248, 113, 113, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #f87171;
    margin: 0 auto 20px;
}

.problem-card h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 12px;
}

.problem-card p {
    font-size: 15px;
    color: #94a3b8;
    line-height: 1.6;
}

/* Solution Section */
.solution-section {
    padding: 100px 24px;
    background: white;
}

.solution-header {
    text-align: center;
    margin-bottom: 60px;
}

.solution-label {
    display: inline-block;
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    padding: 8px 16px;
    border-radius: 980px;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.solution-headline {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 500;
    margin-bottom: 16px;
    color: #1d1d1f;
}

.solution-subline {
    font-size: 18px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Feature Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-card {
    background: #f8fafc;
    border-radius: 24px;
    padding: 40px;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.feature-card.featured {
    background: linear-gradient(135deg, #007aff 0%, #00c6ff 100%);
    color: white;
    grid-column: span 2;
}

.feature-card.featured .feature-description {
    color: rgba(255, 255, 255, 0.9);
}

.feature-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.feature-card:not(.featured) .feature-icon-wrapper {
    background: rgba(0, 122, 255, 0.1);
    color: #007aff;
}

.feature-card.featured .feature-icon-wrapper {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.feature-tag {
    display: inline-block;
    background: rgba(0, 122, 255, 0.1);
    color: #007aff;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.feature-card.featured .feature-tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.feature-title {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 12px;
}

.feature-description {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
}

/* Screenshot Gallery */
.screenshots-section {
    padding: 100px 24px;
    background: white;
}

.screenshots-section h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 500;
    text-align: center;
    margin-bottom: 60px;
}

.screenshot-gallery {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.screenshot-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.screenshot-item img {
    width: 260px;
    height: auto;
    border-radius: 28px;
    transition: all 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 8px 20px rgba(0, 0, 0, 0.1);
}

.screenshot-item:hover img {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2), 0 12px 30px rgba(0, 0, 0, 0.15);
}

.screenshot-item figcaption {
    margin-top: 16px;
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
}

/* Social Proof Section */
.social-proof {
    padding: 100px 24px;
    background: white;
}

.social-proof-header {
    text-align: center;
    margin-bottom: 60px;
}

.social-proof-headline {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 500;
    margin-bottom: 16px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto 60px;
}

.stat-card {
    text-align: center;
    padding: 32px 20px;
    background: #f8fafc;
    border-radius: 20px;
}

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

.stat-label {
    font-size: 15px;
    color: #64748b;
    font-weight: 500;
}

.country-distribution {
    max-width: 600px;
    margin: 0 auto;
}

.country-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.country-flag {
    font-size: 24px;
    width: 40px;
}

.country-name {
    width: 120px;
    font-size: 15px;
    font-weight: 500;
}

.country-bar-track {
    flex: 1;
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
}

.country-bar-fill {
    height: 100%;
    background: #007aff;
    border-radius: 4px;
    transition: width 1s ease;
}

.country-percent {
    width: 50px;
    text-align: right;
    font-size: 15px;
    font-weight: 500;
    color: #64748b;
}

/* Compatibility Section */
.compatibility-section {
    padding: 100px 24px;
    background: #f8fafc;
}

.compatibility-header {
    text-align: center;
    margin-bottom: 60px;
}

.compatibility-headline {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 500;
    margin-bottom: 16px;
}

.bikes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.bike-card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    border: 1px solid #e2e8f0;
}

.bike-brand {
    display: inline-block;
    background: rgba(0, 122, 255, 0.1);
    color: #007aff;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.bike-card h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 16px;
}

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

.bike-list li {
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bike-list li:last-child {
    border-bottom: none;
}

.bike-list li i {
    color: #22c55e;
    font-size: 14px;
}

.bike-list li .coming-soon {
    color: #f59e0b;
}

.bike-list li span.note {
    font-size: 13px;
    color: #94a3b8;
}

/* Feature Comparison Details */
.feature-comparison-details {
    margin-top: 40px;
    background: white;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.feature-comparison-summary {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: #1e293b;
    background: #f8fafc;
    transition: background 0.2s;
}

.feature-comparison-summary:hover {
    background: #f1f5f9;
}

.feature-comparison-summary i {
    transition: transform 0.3s ease;
    color: #64748b;
}

.feature-comparison-details[open] .feature-comparison-summary i {
    transform: rotate(180deg);
}

.feature-comparison-content {
    padding: 24px;
    background: white;
}

.series-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.series-feature-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e2e8f0;
}

.series-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.series-badge.s1-2 { background: rgba(239, 68, 68, 0.1); color: #dc2626; }
.series-badge.s3 { background: rgba(34, 197, 94, 0.1); color: #16a34a; }
.series-badge.s4 { background: rgba(234, 179, 8, 0.1); color: #ca8a04; }
.series-badge.s5 { background: rgba(6, 182, 212, 0.1); color: #0891b2; }

.series-feature-card h4 {
    font-size: 16px;
    font-weight: 500;
    color: #1e293b;
    margin-bottom: 16px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-size: 14px;
    color: #475569;
}

.feature-list li i {
    color: #22c55e;
    font-size: 12px;
}

.feature-note {
    margin-top: 24px;
    padding: 16px 20px;
    background: #f0f9ff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #0369a1;
}

.feature-note i {
    font-size: 16px;
}

/* Privacy Section */
.privacy-section {
    padding: 100px 24px;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    color: white;
    text-align: center;
}

.privacy-icon {
    width: 80px;
    height: 80px;
    background: rgba(34, 197, 94, 0.15);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #22c55e;
    margin: 0 auto 24px;
}

.privacy-headline {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 500;
    margin-bottom: 16px;
}

.privacy-subline {
    font-size: 18px;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto 40px;
}

.privacy-features {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.privacy-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #e2e8f0;
}

.privacy-feature i {
    color: #22c55e;
}

/* Final CTA Section */
.final-cta {
    padding: 120px 24px;
    background: white;
    text-align: center;
}

.final-cta-headline {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 500;
    margin-bottom: 24px;
    line-height: 1.1;
}

.final-cta-subline {
    font-size: 20px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto 40px;
}

.app-store-badge img {
    height: 54px;
}

.android-note {
    margin-top: 24px;
    font-size: 14px;
    color: #94a3b8;
}

.android-note a {
    color: #007aff;
    text-decoration: none;
}

.android-note a:hover {
    text-decoration: underline;
}

/* Business Featured Section */
.business-section {
    padding: 100px 24px;
    background: #f8fafc;
}

.business-header {
    text-align: center;
    margin-bottom: 60px;
}

.business-headline {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 500;
    margin-bottom: 16px;
}

.business-subline {
    font-size: 18px;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 800px;
    margin: 0 auto 40px;
}

.business-card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    border: 1px solid #e2e8f0;
    text-align: center;
}

.business-card h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 12px;
}

.business-card p {
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.business-card a {
    color: #007aff;
    text-decoration: none;
    font-weight: 500;
}

.business-card a:hover {
    text-decoration: underline;
}

.business-note {
    text-align: center;
    color: #94a3b8;
    font-size: 14px;
}

.business-perfect {
    text-align: center;
    color: #64748b;
    font-size: 15px;
    margin-top: 24px;
    font-style: italic;
}

/* Stay Connected Section */
.social-section {
    padding: 100px 24px;
    background: white;
}

.social-header {
    text-align: center;
    margin-bottom: 60px;
}

.social-headline {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 500;
    margin-bottom: 16px;
}

.social-subline {
    font-size: 18px;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.social-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    color: inherit;
}

.social-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.social-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.social-icon.website { background: #007aff; color: white; }
.social-icon.twitter { background: #000000; color: white; }
.social-icon.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: white; }
.social-icon.medium { background: #000; color: white; }
.social-icon.youtube { background: #ff0000; color: white; }
.social-icon.tiktok { background: #000; color: white; }

.social-content h3 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 4px;
}

.social-content p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
}

/* Footer */
footer {
    padding: 60px 24px;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-text {
    font-size: 14px;
    color: #64748b;
}

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

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

.footer-links a:hover {
    color: #007aff;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    padding: 20px;
    cursor: pointer;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 20px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 2001;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 16px;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.6);
    padding: 10px 20px;
    border-radius: 20px;
    white-space: nowrap;
}

/* === FAQ SECTION === */
.faq-section {
    padding: 80px 24px;
    background: #fff;
}

.faq-headline {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: #1d1d1f;
    text-align: center;
    margin-bottom: 48px;
    letter-spacing: -0.02em;
}

.faq-list {
    max-width: 640px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-question {
    padding: 20px 0;
    font-size: 16px;
    font-weight: 600;
    color: #1d1d1f;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    font-size: 20px;
    font-weight: 300;
    color: #86868b;
    transition: transform 0.2s;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item[open] .faq-question::after {
    content: '-';
}

.faq-answer {
    padding-bottom: 20px;
}

.faq-answer p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
}

.faq-answer a {
    color: #007aff;
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* === MOOFLET SECTION === */
.mooflet-section {
    padding: 100px 24px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    text-align: center;
}

.mooflet-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 8px 20px;
    border-radius: 9999px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
}

.mooflet-headline {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.mooflet-subline {
    font-size: 18px;
    color: #86868b;
    max-width: 560px;
    margin: 0 auto 48px;
    line-height: 1.5;
}

.mooflet-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto 48px;
}

.mooflet-feature {
    padding: 32px 20px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.06);
}

.mooflet-feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 20px;
    color: #fff;
}

.mooflet-feature h3 {
    font-size: 17px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 8px;
}

.mooflet-feature p {
    font-size: 14px;
    color: #86868b;
    line-height: 1.5;
}

.mooflet-cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.mooflet-platforms {
    display: flex;
    gap: 16px;
}

.mooflet-platform {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 12px;
    background: #f5f5f7;
    color: #1d1d1f;
    font-size: 15px;
    font-weight: 600;
}

.mooflet-coming {
    font-size: 14px;
    color: #86868b;
}

/* Responsive */
@media (max-width: 768px) {
    .mooflet-features {
        grid-template-columns: repeat(2, 1fr);
    }
    .lightbox-nav { width: 40px; height: 40px; font-size: 16px; }
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
    }

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

    .nav-toggle {
        display: flex;
    }

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

    .feature-card.featured {
        grid-column: span 1;
    }

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

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

    .screenshot-item img {
        width: 200px;
    }

    .trust-badges {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 120px 16px 80px;
    }

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

    .screenshot-item img {
        width: 180px;
    }

    .mooflet-features {
        grid-template-columns: 1fr;
    }
    .mooflet-section {
        padding: 80px 16px;
    }
}
