/* FocusBar specific styles */

.focusbar-hero {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
}

.app-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.compatibility {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.nav-logo a {
    text-decoration: none;
    color: inherit;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: white;
}

.features h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #1a202c;
    font-weight: 600;
}

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

.feature-card {
    background: #f7fafc;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: #4f46e5;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.1);
}

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

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1a202c;
    font-weight: 600;
}

.feature-card p {
    color: #4a5568;
    line-height: 1.6;
}

/* App Preview Section */
.app-preview {
    padding: 6rem 0;
    background: #f7fafc;
}

.app-preview h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #1a202c;
    font-weight: 600;
}

.preview-content {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.menubar-mockup {
    position: relative;
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.menubar {
    background: #1a1a1a;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 1rem;
    margin-bottom: 1rem;
}

.menubar-items {
    display: flex;
    gap: 1rem;
}

.menu-item {
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
}

.dropdown-mockup {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    min-width: 280px;
}

.session-controls h4 {
    margin-bottom: 1rem;
    color: #1a202c;
    font-weight: 600;
}

.session-btn {
    width: 100%;
    padding: 0.75rem;
    background: #4f46e5;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    margin-bottom: 1.5rem;
    transition: background 0.2s ease;
}

.session-btn:hover {
    background: #4338ca;
}

.stats {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stat-label {
    color: #4a5568;
    font-size: 0.875rem;
}

.stat-value {
    font-weight: 600;
    color: #1a202c;
}

.stat-positive {
    color: #059669;
}

/* Pricing Section */
.pricing {
    padding: 6rem 0;
    background: #f7fafc;
}

.pricing h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #1a202c;
    font-weight: 600;
}

.pricing-subtitle {
    font-size: 1.125rem;
    text-align: center;
    color: #4a5568;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-single {
    display: flex;
    justify-content: center;
    margin: 0 auto 3rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.pricing-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    border: 2px solid #e2e8f0;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: #4f46e5;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.1);
}

.pricing-featured {
    border-color: #4f46e5;
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.1);
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #4f46e5;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a202c;
    font-weight: 600;
}

.price {
    margin-bottom: 2rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: #1a202c;
}

.price-period {
    font-size: 1rem;
    color: #6b7280;
    margin-left: 0.5rem;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    text-align: left;
}

.features-list li {
    padding: 0.5rem 0;
    color: #4a5568;
    font-size: 0.95rem;
}

.btn-pricing {
    width: 100%;
    padding: 1rem;
    border: 2px solid #4f46e5;
    background: transparent;
    color: #4f46e5;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-pricing:hover {
    background: #4f46e5;
    color: white;
}

.btn-featured {
    background: #4f46e5;
    color: white;
}

.btn-featured:hover {
    background: #4338ca;
    border-color: #4338ca;
}

.pricing-notes {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-notes p {
    margin: 0.75rem 0;
    color: #4a5568;
    font-size: 0.95rem;
}

/* Download Section */
.download {
    padding: 6rem 0;
    background: white;
    text-align: center;
}

.download h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a202c;
    font-weight: 600;
}

.download-subtitle {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn-large {
    font-size: 1.125rem;
    padding: 1.25rem 3rem;
}

.download-note {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Footer updates */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .preview-content {
        padding: 0 1rem;
    }
    
    .menubar-mockup {
        padding: 1.5rem;
    }
    
    .dropdown-mockup {
        min-width: 240px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-featured {
        transform: none;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        order: -1;
    }
}

@media (max-width: 480px) {
    .app-icon {
        font-size: 3rem;
    }
    
    .features h2,
    .app-preview h2,
    .download h2 {
        font-size: 2rem;
    }
    
    .feature-icon {
        font-size: 2rem;
    }
}