/* Pricing Page Styles */

.pricing-hero {
    padding: 140px 24px 60px;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 100%);
}

.pricing-plans {
    padding: 60px 24px;
    background: var(--bg-card);
}

.pricing-consult-center {
    text-align: center;
    margin-top: 48px;
}

.pricing-features-section {
    padding: 100px 24px;
    background: var(--bg-dark);
}

.features-comparison {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: transform 0.3s ease;
}

.feature-row:hover {
    transform: translateX(8px);
}

.feature-icon-large {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon-large svg {
    width: 28px;
    height: 28px;
    color: white;
}

.feature-text h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.feature-text p {
    color: var(--text-secondary);
    font-size: 14px;
}

.pricing-faq {
    padding: 100px 24px;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 100%);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-item {
    padding: 28px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
}

.faq-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

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

/* Download Page Styles */

.download-hero {
    padding: 140px 24px 60px;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 100%);
}

.download-options {
    padding: 60px 24px;
    background: var(--bg-card);
}

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

.download-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.download-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.download-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
}

.download-card p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 24px;
}

.setup-guide {
    padding: 100px 24px;
    background: var(--bg-dark);
}

.guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.guide-step {
    text-align: center;
    padding: 32px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    position: relative;
}

.guide-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -32px;
    width: 32px;
    height: 2px;
    background: var(--border-color);
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 16px;
}

.guide-step h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

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

.system-requirements {
    padding: 100px 24px;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 100%);
}

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

.requirement-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px;
}

.requirement-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.requirement-card ul {
    list-style: none;
}

.requirement-card li {
    color: var(--text-secondary);
    font-size: 14px;
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.requirement-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
    .pricing-hero,
    .download-hero {
        padding: 120px 20px 40px;
    }
    
    .feature-row {
        flex-direction: column;
        text-align: center;
    }
    
    .guide-step:not(:last-child)::after {
        display: none;
    }
    
    .guide-steps {
        grid-template-columns: 1fr;
    }
}
