/* Professional Landing Page Styles */
.landing-wrapper {
    min-height: 100vh;
    background: var(--bg-primary);
}

/* Pricing Cards Grid */
.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    max-width: 100%;
    overflow: hidden;
}

@media (max-width: 768px) {
    .pricing-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured {
    border: 2px solid var(--accent-blue);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .pricing-card .price {
        font-size: 2rem;
    }
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-blue);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-blue);
    margin-bottom: 0.5rem;
}

.pricing-card .price span {
    font-size: 1rem;
    color: var(--text-secondary);
}

.pricing-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

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

.features-list li {
    color: var(--text-secondary);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    padding-left: 1.8rem;
    line-height: 1.5;
}

.features-list li::before {
    content: "✓";
    position: absolute;
    left: 0.3rem;
    top: 0.5rem;
    color: var(--accent-blue);
    font-weight: bold;
}

.btn-platinum {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    border: none;
    color: white;
}

.btn-platinum:hover {
    background: linear-gradient(135deg, #7c3aed, #9333ea);
    color: white;
}

/* Header */
.landing-header {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-logo {
    width: 32px;
    height: 32px;
}

.app-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.header-actions .btn {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.5;
}

.hero-cta {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cta-primary {
    background: linear-gradient(135deg, var(--coral-red), #ff6b6b);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 0.75rem;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 92, 92, 0.3);
    font-family: inherit;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 92, 92, 0.5);
    color: white;
}

.cta-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-tertiary);
}

/* Social Proof */
.social-proof {
    padding: 3rem 0;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.proof-header {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-width: 500px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.75rem;
    padding: 1.25rem 1rem;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.stat-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent-blue);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Features Section */
.features {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 3rem;
}

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

.feature-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--accent-blue), #60a5fa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Quiz CTA */
.quiz-cta {
    padding: 3rem 0;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.quiz-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.quiz-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Questionnaire */
.questionnaire-section {
    padding: 3rem 0;
}

/* Theme Section */
.theme-section {
    padding: 2rem 0;
    text-align: center;
}

.theme-selector-landing {
    display: inline-block;
    position: relative;
    margin: 0 auto;
}

.theme-toggle-landing {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 200px;
    justify-content: space-between;
}

.theme-toggle-landing:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.theme-dropdown-landing {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(30, 41, 59, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    margin-top: 0.5rem;
    padding: 0.8rem;
    display: none;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    min-width: 450px;
}

.theme-dropdown-landing.active {
    display: block;
}

.theme-grid-landing {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.6rem;
}

.theme-option-landing {
    padding: 0.75rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.theme-option-landing:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.theme-option-landing.active {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-blue);
}

.theme-preview-landing {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin: 0 auto 0.5rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.theme-option-landing span {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: block;
}

/* Theme Previews */
.peace-calm-preview {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.ocean-breeze-preview {
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
}

.sunset-glow-preview {
    background: linear-gradient(135deg, #f59e0b, #f97316);
}

.forest-zen-preview {
    background: linear-gradient(135deg, #10b981, #059669);
}

.midnight-focus-preview {
    background: linear-gradient(135deg, #374151, #1f2937);
}

.sakura-dreams-preview {
    background: linear-gradient(135deg, #ec4899, #f472b6);
}

@media (max-width: 1024px) {
    .theme-grid-landing {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    
    .theme-dropdown-landing {
        min-width: 380px;
    }
}

@media (max-width: 768px) {
    .theme-grid-landing {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.3rem;
    }
    
    .theme-dropdown-landing {
        min-width: 280px;
        padding: 0.5rem;
    }
    
    .theme-option-landing {
        padding: 0.4rem;
        font-size: 0.7rem;
    }
    
    .theme-preview-landing {
        width: 32px;
        height: 32px;
        margin-bottom: 0.3rem;
    }
    
    .theme-toggle-landing {
        min-width: 180px;
    }
}

@media (max-width: 480px) {
    .theme-grid-landing {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.25rem;
    }
    
    .theme-dropdown-landing {
        min-width: 260px;
        padding: 0.4rem;
    }
    
    .theme-option-landing {
        padding: 0.3rem;
        font-size: 0.65rem;
    }
    
    .theme-preview-landing {
        width: 28px;
        height: 28px;
        margin-bottom: 0.25rem;
    }
}

/* Terms disclaimer styling */
.terms-disclaimer {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    margin-top: 0.75rem;
    font-style: italic;
    display: block;
    width: 100%;
    clear: both;
}

/* Final CTA */
.final-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(255, 92, 92, 0.1), rgba(139, 92, 246, 0.1));
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .stats-grid {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

/* Container improvements */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Button improvements */
.btn {
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    font-family: inherit;
}

.btn-outline-primary {
    border-color: var(--accent-blue);
    color: var(--accent-blue);
}

.btn-outline-primary:hover {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
    color: white;
}

.btn-outline-secondary {
    border-color: var(--text-tertiary);
    color: var(--text-tertiary);
}

.btn-outline-secondary:hover {
    background: var(--text-tertiary);
    border-color: var(--text-tertiary);
    color: var(--bg-primary);
}