.mobile-cta-hero {
    display: none;
    margin: 1.5rem 0;
}

.mobile-primary {
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% {
    }
    50% {
    }
}

.mobile-proof {
    text-align: center;
    font-size: 0.85rem;
    color: #DDD6FE;
    opacity: 0.95;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

@media (min-width: 769px) {
    .content-grid {
        grid-template-columns: 1fr 400px;
        gap: 3rem;
        align-items: start;
    }
    
    .right-column {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        position: sticky;
        top: 2rem;
    }
}

.left-content {
    width: 100%;
}

.upload-form {
    /* background: rgba(45, 27, 78, 0.6); */
    /* backdrop-filter: blur(10px); */
    padding: 2rem;
    border-radius: 12px;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-title {
    color: #F5F5F5;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
}

.form-subtitle {
    color: #C4B5FD;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.support-text {
    text-align: center;
    font-size: 0.9rem;
    color: #C4B5FD;
    /* margin: 1rem auto 0; */
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.social-proof-section {
    text-align: center;
    margin: 1rem 0 0.5rem;
}

.desktop-social-proof {
    margin-top: 0;
    background: rgba(45, 27, 78, 0.6);
    /* backdrop-filter: blur(10px); */
    padding: 1rem;
    border-radius: 12px;
    width: 100%;
    position: sticky;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.proof-text {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 600;
    color: white;
    margin: 0;
}

.desktop-social-proof .proof-text {
    color: #DDD6FE;
    font-size: 0.85rem;
}

.demo-section-hero {
    background: rgba(45, 27, 78, 0.6);
    border-radius: 12px;
    padding: 2rem;
    margin: 0 0 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.demo-title {
    color: #F5F5F5;
    font-size: 1.5rem;
    font-weight: 700;
    /* margin-bottom: 1rem; */
    text-align: center;
}

.demo-caption {
    text-align: center;
    color: #C4B5FD;
    font-size: 0.9rem;
    /* margin-top: 1rem; */
}

.features-heading {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin: 3rem 0 1.5rem;
}

.feature-card-simple {
    background: rgba(45, 27, 78, 0.6);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-icon-simple {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.feature-card-simple h4 {
    color: #F5F5F5;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature-card-simple p {
    color: #DDD6FE;
    font-size: 0.9rem;
    line-height: 1.4;
}

.primary-cta {
    background: linear-gradient(135deg, #A855F7, #7C3AED) !important;
    color: white !important;
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    padding: 1rem 2rem !important;
    border-radius: 8px !important;
    border: none !important;
    cursor: pointer !important;
    width: 100% !important;
    transition: all 0.3s ease !important;
}

.primary-cta:hover {
    background: linear-gradient(135deg, #7C3AED, #6B21A8) !important;
    transform: translateY(-2px) !important;
}

.quick-actions-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 0 0 2rem;
}

.quick-action-card {
    background: rgba(45, 27, 78, 0.6);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.action-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.quick-action-card h3 {
    color: #F5F5F5;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.quick-action-card p {
    color: #DDD6FE;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.action-btn {
    background: #6d6b8f;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: #4a4563;
    transform: translateY(-2px);
}

.logout-link {
    background: transparent;
    border: none;
    color: #C4B5FD;
    cursor: pointer;
    font-size: 0.9rem;
    text-decoration: underline;
    display: block;
    width: 100%;
    margin-top: 1rem;
}

.logout-link:hover {
    color: #F5F5F5;
}

@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .quick-actions-section {
        grid-template-columns: 1fr;
    }
    
    .main-headline {
        font-size: 1.75rem;
        line-height: 1.1;
        margin-bottom: 0.75rem;
    }
    
    .sub-headline {
        font-size: 0.95rem;
        line-height: 1.4;
        margin-bottom: 1rem;
    }
    
    .mobile-cta-hero {
        display: block;
        margin-top: 1.5rem;
    }
    
    .mobile-primary {
        font-size: 1.1rem !important;
        padding: 0.9rem 1.75rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    .desktop-only {
        display: none !important;
    }
    
    .mobile-only {
        display: block !important;
    }
    
    .upload-form {
        order: -1;
        /* margin-bottom: 2rem; */
    }
    
    .header-landing {
        padding-bottom: 0;
    }
    
    .demo-section-hero {
        padding: 1.25rem;
        margin: 1.25rem 0;
    }
    
    .demo-title {
        font-size: 1.2rem;
    }
    
    .features-heading {
        font-size: 1.4rem;
        margin: 2rem 0 1rem;
    }
    
    .feature-card-simple {
        padding: 1.25rem;
    }
    
    .feature-icon-simple {
        font-size: 2rem;
    }
    
    .feature-card-simple h4 {
        font-size: 1rem;
    }
    
    .feature-card-simple p {
        font-size: 0.85rem;
        color: #C4B5FD;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (min-width: 769px) {
    .mobile-cta-hero {
        display: none;
    }
    
    .mobile-only {
        display: none !important;
    }
    
    .desktop-only {
        display: block !important;
    }
    
    .main-headline {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .sub-headline {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 0;
    }
}

/* Mobile logout button */
.mobile-logout {
    text-align: center;
    margin-top: 2rem;
    padding-bottom: 2rem;
}

.mobile-logout .logout-link {
    display: inline-block;
    width: auto;
    padding: 0.75rem 2rem;
}
