/* ShareLit Design System - Apple-like Aesthetic */
/* Note: CSS Variables are now in theme.css for dark mode support */

/* Legacy Variable Mappings (for compatibility) */
:root {
    --color-surface: var(--color-bg-secondary);
    --color-surface-alt: var(--color-bg-tertiary);
}

/* Reset & Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family-text);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.5;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-family);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--color-text);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

.text-gradient {
    background: linear-gradient(135deg, var(--color-text) 0%, #434343 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Glassmorphism */
.glass {
    background: var(--color-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--color-glass-border);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    /* Increased height */
    padding-top: 20px;
    /* Added gap from top */
    z-index: 1000;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    height: 60px;
    /* Shrink on scroll */
    padding-top: 0;
    /* Remove gap on scroll */
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 20px;
    letter-spacing: -0.03em;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 14px;
    color: var(--color-text);
    opacity: 0.8;
    transition: opacity 0.2s;
}

.nav-links a:hover {
    opacity: 1;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    border: none;
    outline: none;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-primary-text);
}

.btn-primary:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background-color: var(--color-surface-alt);
    color: var(--color-text);
}

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

.btn-lg {
    padding: 14px 32px;
    font-size: 17px;
}

/* Button with Icon */
.btn-icon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-icon svg {
    flex-shrink: 0;
}

/* Hero Section */
.hero {
    padding-top: 140px;
    padding-bottom: 100px;
    text-align: center;
    overflow: hidden;
}

.hero h1 {
    font-size: 64px;
    line-height: 1.05;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out;
}

.hero p {
    font-size: 24px;
    color: var(--color-text-secondary);
    max-width: 700px;
    margin: 0 auto 40px;
    font-weight: 400;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

/* Features (Bento Grid) */
.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 48px;
    margin-bottom: 16px;
}

.section-title p {
    font-size: 20px;
    color: var(--color-text-secondary);
}

.section-note {
    font-size: 14px;
    color: var(--color-text-secondary);
    opacity: 0.7;
    margin-top: 8px;
    font-style: italic;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.bento-card {
    background: var(--color-surface);
    border-radius: var(--radius-xl);
    padding: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    position: relative;
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background: white;
}

.bento-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.bento-card p {
    color: var(--color-text-secondary);
    font-size: 16px;
    line-height: 1.6;
}

.bento-icon {
    font-size: 40px;
    margin-bottom: 24px;
    display: inline-block;
}

.bento-card.large {
    grid-column: span 2;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 20px;
}

.service-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-3px);
}

.service-item img {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
    border-radius: 12px;
    object-fit: cover;
}

.service-item span {
    font-size: 14px;
    font-weight: 500;
}

/* Pricing */
.pricing-container {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.pricing-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 40px;
    width: 350px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card.featured {
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.price {
    font-size: 48px;
    font-weight: 700;
    margin: 24px 0;
    letter-spacing: -0.03em;
}

.price span {
    font-size: 18px;
    font-weight: 500;
    color: var(--color-text-secondary);
}

.pricing-features {
    margin: 32px 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--color-text-secondary);
}

.pricing-features li::before {
    content: "✓";
    color: var(--color-primary);
    font-weight: bold;
    margin-right: 10px;
}

/* Footer */
footer {
    background: var(--color-surface);
    padding: 80px 0 40px;
    margin-top: 100px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand h4 {
    font-size: 20px;
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--color-text-secondary);
    max-width: 300px;
}

.footer-col h5 {
    font-size: 14px;
    margin-bottom: 20px;
    color: var(--color-text);
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--color-text-secondary);
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding-top: 40px;
    text-align: center;
    color: var(--color-text-secondary);
    font-size: 13px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 40px;
    }

    .hero p {
        font-size: 18px;
    }

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

    .bento-card.large {
        grid-column: auto;
    }

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

    .pricing-card.featured {
        transform: none;
    }

    .nav-links {
        display: none;
    }

    /* Simplified for now, would need mobile menu JS */
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .service-item img {
        width: 40px;
        height: 40px;
        margin-bottom: 8px;
    }

    .service-item span {
        font-size: 12px;
    }

    /* FAQ Grid Mobile */
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 20px;
    border-bottom: 1px solid var(--color-border);
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 16px;
    opacity: 0;
    pointer-events: none;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.mobile-menu a {
    font-size: 18px;
    font-weight: 500;
    color: var(--color-text);
    padding: 12px;
    border-radius: 12px;
    transition: background 0.2s;
}

.mobile-menu a:hover {
    background: var(--color-surface);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--color-text);
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-surface);
    padding: 24px 32px;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: var(--color-bg-card);
}

/* FAQ Accordion Styles */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    text-align: left;
    gap: 16px;
}

.faq-question h3 {
    font-size: 18px;
    margin-bottom: 0;
    color: var(--color-text);
    flex: 1;
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: var(--color-text-secondary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
    color: var(--color-text-secondary);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-top: 16px;
}

/* Pricing Toggle */
.pricing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}

.toggle-label {
    font-weight: 500;
    color: var(--color-text);
    cursor: pointer;
}

.toggle-label.active {
    color: var(--color-primary);
}

.toggle-switch {
    position: relative;
    width: 50px;
    height: 28px;
    background: var(--color-surface-alt);
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.3s;
}

.toggle-switch::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.toggle-switch.active {
    background: var(--color-primary);
}

.toggle-switch.active::after {
    transform: translateX(22px);
}

/* Pricing Controls (New) */
.pricing-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
}

.pricing-toggle-container {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--color-surface);
    padding: 8px 16px;
    border-radius: 99px;
    border: 1px solid var(--color-border);
}

.toggle-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-secondary);
    transition: color 0.2s;
    cursor: pointer;
}

.toggle-label.active {
    color: var(--color-text);
    font-weight: 600;
}

.switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

input:checked+.slider {
    background-color: var(--color-primary);
}

input:focus+.slider {
    box-shadow: 0 0 1px var(--color-primary);
}

input:checked+.slider:before {
    transform: translateX(20px);
}

/* Duration Tabs */
.duration-tabs {
    display: flex;
    background: var(--color-surface);
    padding: 4px;
    border-radius: 12px;
    border: 1px solid var(--color-border);
}

.duration-tab {
    padding: 8px 16px;
    border-radius: 8px;
    border: none;
    background: transparent;
    color: var(--color-text-secondary);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.duration-tab.active {
    background: white;
    color: var(--color-text);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    font-weight: 600;
}

.duration-tab:hover:not(.active) {
    color: var(--color-text);
}

/* Updated Pricing Card Styles */
.original-price {
    text-decoration: line-through;
    color: var(--color-text-secondary);
    font-size: 16px;
    margin-right: 8px;
    display: block;
    margin-bottom: 4px;
}

.discount-badge {
    display: inline-block;
    background: var(--color-success-bg);
    color: var(--color-success-text);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    margin-top: 8px;
}

.pricing-card.selected {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px var(--color-primary), var(--shadow-lg);
    transform: scale(1.02);
}

/* ==========================================================================
   New Landing Page Components
   ========================================================================== */

/* Header Actions */
.header-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.auth-link {
    color: var(--color-text-secondary);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s;
}

.auth-link:hover {
    color: var(--color-text);
}

/* Desktop Only */
.desktop-only {
    display: flex;
    gap: 16px;
    align-items: center;
}

/* Nav Links True Center */
nav {
    position: relative;
}

/* Desktop Navigation - 桌面端始终显示 */
.desktop-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 32px;
}

.desktop-nav a {
    font-size: 14px;
    color: var(--color-text);
    opacity: 0.8;
    transition: opacity 0.2s;
}

.desktop-nav a:hover {
    opacity: 1;
}

.nav-links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 32px;
}

/* Hide Mobile Menu Header by default */
.mobile-menu-header {
    display: none;
}

/* Mobile Menu - 桌面端隐藏 */
.mobile-menu {
    display: none;
}

/* Mobile Auth Hidden by default */
.mobile-auth {
    display: none;
}

/* 3D Hero Stage */
.hero-stage {
    min-height: 100vh;
    display: flex;
    align-items: center;
    perspective: 1000px;
    padding-top: var(--header-height);
    overflow: hidden;
    gap: 60px;
}

.hero-content {
    flex: 1;
    z-index: 2;
}

.hero-content h1 {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 0;
    letter-spacing: -0.02em;
}

.hero-description {
    color: var(--color-text-secondary);
    font-size: 20px;
    max-width: 500px;
    margin: 32px 0 48px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn-text {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text);
    text-decoration: none;
    padding: 0 20px;
    font-weight: 500;
    transition: color 0.3s;
}

.btn-text:hover {
    color: var(--color-primary-neon);
}

.hero-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    transform-style: preserve-3d;
}

/* Floating Card Effect */
.floating-card-container {
    transform-style: preserve-3d;
    transform: rotateY(-15deg) rotateX(10deg);
    animation: float 6s ease-in-out infinite;
    transition: transform 0.1s ease-out;
}

.glass-panel {
    width: 400px;
    height: 550px;
    background: var(--color-bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--color-border-glass);
    border-radius: 20px;
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
    padding: 0;
}

[data-theme="dark"] .glass-panel {
    border-color: var(--color-border-neon);
    box-shadow:
        0 0 50px rgba(0, 240, 255, 0.1),
        inset 0 0 20px rgba(0, 240, 255, 0.05);
}

/* Hologram Beam */
.hologram-beam {
    position: absolute;
    bottom: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.05) 0%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
    z-index: -1;
}

[data-theme="dark"] .hologram-beam {
    background: linear-gradient(to top, rgba(0, 240, 255, 0.1), transparent 70%);
}

@keyframes float {
    0%, 100% {
        transform: rotateY(-15deg) rotateX(10deg) translateY(0);
    }
    50% {
        transform: rotateY(-10deg) rotateX(5deg) translateY(-20px);
    }
}

/* Bento Card Glow Effect */
.card-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--color-primary-glow), transparent 70%);
    top: -150px;
    right: -150px;
    opacity: 0.1;
    filter: blur(40px);
    pointer-events: none;
}

.bento-card {
    position: relative;
    overflow: hidden;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.step-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    padding: 40px 24px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}

.step-card:hover {
    border-color: var(--color-primary-neon);
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    color: var(--color-primary-neon);
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-card);
}

[data-theme="dark"] .step-number {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-border-neon);
    box-shadow: 0 0 10px var(--color-primary-glow);
}

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

.step-card p {
    color: var(--color-text-secondary);
    font-size: 15px;
}

/* Footer Grid */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    font-size: 24px;
    text-decoration: none;
    color: var(--color-text);
    display: block;
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--color-text-secondary);
    line-height: 1.6;
    font-size: 14px;
    max-width: 300px;
}

footer .footer-col h5 {
    color: var(--color-text);
    font-size: 16px;
    margin-bottom: 24px;
    font-weight: 600;
}

footer .footer-col ul {
    list-style: none;
    padding: 0;
}

footer .footer-col ul li {
    margin-bottom: 12px;
}

footer .footer-col ul li a {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

footer .footer-col ul li a:hover {
    color: var(--color-text);
}

/* Pricing Badge Styles */
.pricing-badge {
    padding: 4px 12px;
    border-radius: 99px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 12px;
}

.pricing-badge.popular {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent-blue-dark));
    color: white;
}

.pricing-badge.coming-soon {
    background: var(--color-bg-secondary);
    color: var(--color-text-secondary);
}

/* Button Outline */
.btn-outline {
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-text);
    opacity: 0.5;
    cursor: not-allowed;
}

/* ==========================================================================
   Mobile Responsive - New Landing Page
   ========================================================================== */

@media (max-width: 900px) {
    /* Hero Stage Mobile */
    .hero-stage {
        flex-direction: column;
        text-align: center;
        min-height: auto;
        padding-bottom: 100px;
        padding-top: 120px;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-description {
        margin: 24px auto 40px;
    }

    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .floating-card-container {
        transform: none;
        margin-top: 60px;
    }

    .glass-panel {
        width: 300px;
        height: auto;
        aspect-ratio: 3/4;
    }

    /* Steps Grid Mobile */
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* Footer Grid Mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* 隐藏桌面导航 */
    .desktop-nav {
        display: none;
    }

    /* Mobile Menu - 全屏覆盖 */
    .mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 15, 0.95);
        backdrop-filter: blur(50px);
        -webkit-backdrop-filter: blur(50px);
        flex-direction: column;
        padding: 0;
        border-bottom: none;
        align-items: center;
        justify-content: center;
        gap: 32px;
        z-index: 1000;
        display: none;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }

    .mobile-menu.active {
        display: flex;
        opacity: 1;
        pointer-events: all;
    }

    .mobile-menu a {
        margin: 0;
        font-size: 18px;
        color: white;
    }

    /* Show Mobile Menu Header inside menu */
    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        box-sizing: border-box;
        margin-bottom: 40px;
        padding: 0 24px;
        position: absolute;
        top: 24px;
        left: 0;
    }

    .close-menu-btn {
        background: none;
        border: none;
        color: white;
        font-size: 28px;
        cursor: pointer;
        padding: 5px;
        line-height: 1;
    }

    /* Force Mobile Logo to be White */
    .mobile-menu-header .logo {
        color: white !important;
    }

    .mobile-menu-btn {
        display: block;
        background: none;
        border: none;
        font-size: 24px;
        color: var(--color-text);
        cursor: pointer;
    }

    .mobile-auth {
        display: flex;
        flex-direction: column;
        gap: 16px;
        width: 100%;
        align-items: center;
        margin-top: 20px;
    }

    .mobile-auth-link {
        color: var(--color-text-secondary);
        font-size: 16px;
        text-decoration: none;
    }

    .mobile-auth .btn {
        width: auto;
        min-width: 140px;
        padding: 10px 24px;
        text-align: center;
        font-size: 16px;
    }

    .desktop-only {
        display: none !important;
    }

    /* Pricing Cards Mobile */
    .pricing-container {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card {
        width: 100%;
        max-width: 400px;
    }
}