/* Support Page Styles */
.support-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
}

.support-header {
    text-align: center;
    margin-bottom: 4rem;
}

.support-header h1 {
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.support-header p {
    font-size: 1.2rem;
    color: #666;
}

/* Quick Help Section */
.quick-help {
    margin-bottom: 6rem;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.help-card {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.help-card:hover {
    border-color: #3498db;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.15);
}

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

.help-card h3 {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.help-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.help-link {
    color: #3498db;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.help-link:hover {
    color: #2980b9;
}

/* Help Sections */
.help-section {
    margin-bottom: 6rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
}

/* Steps Container */
.steps-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
}

.step-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: start;
    background: #f8f9fa;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid #e0e0e0;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content {
    min-width: 0;
}

.step-content h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.step-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.premium-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.feature-tag {
    background: #e8f4fd;
    color: #1e40af;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.step-visual {
    width: 200px;
    flex-shrink: 0;
}

.visual-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.visual-card.success {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    border-color: #22c55e;
}

.license-key-example {
    font-size: 0.9rem;
    color: #666;
}

.license-key-example code {
    background: #f0f0f0;
    padding: 0.5rem;
    border-radius: 4px;
    display: block;
    margin-top: 0.5rem;
    font-weight: bold;
    color: #2c2c2c;
}

.download-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.os-option {
    padding: 0.5rem;
    background: #f0f0f0;
    border-radius: 6px;
    font-size: 0.9rem;
}

.app-mockup {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.mockup-header {
    background: #e0e0e0;
    padding: 0.5rem;
    font-size: 0.8rem;
    font-weight: bold;
    color: #666;
}

.mockup-input {
    padding: 1rem;
    border-bottom: 1px solid #e0e0e0;
    background: white;
    font-size: 0.9rem;
    color: #999;
}

.mockup-button {
    padding: 0.75rem;
    background: #3498db;
    color: white;
    font-weight: bold;
    font-size: 0.9rem;
}

.success-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 2rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question.active {
    background: #f0f8ff;
    border-bottom: 1px solid #e0e0e0;
}

.faq-arrow {
    font-size: 0.8rem;
    color: #666;
    transition: transform 0.3s ease;
}

.faq-question.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 2rem 2rem;
    color: #666;
    line-height: 1.6;
}

.faq-answer.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.faq-answer ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}

.faq-actions {
    margin-top: 1.5rem;
}

.tier-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 1.5rem 0;
}

.tier-column {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
}

.tier-column h4 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.tier-column ul {
    list-style: none;
    padding: 0;
}

.tier-column li {
    color: #666;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.tier-column li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: bold;
}

/* Contact Section */
.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: #3498db;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.15);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.contact-card h3 {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.contact-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-details {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.contact-details strong {
    display: block;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.contact-details small {
    color: #666;
    font-size: 0.875rem;
}

/* Download Section */
.download-section {
    background: linear-gradient(135deg, #f8f9fa, #f0f0f0);
    border-radius: 20px;
    padding: 3rem 2rem;
    margin-top: 4rem;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.download-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.download-card:hover {
    border-color: #3498db;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.15);
}

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

.download-card h3 {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.download-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.download-card button {
    width: 100%;
    margin-bottom: 1rem;
}

.download-card small {
    color: #888;
    font-size: 0.8rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .support-container {
        padding: 6rem 1rem 3rem;
    }
    
    .support-header h1 {
        font-size: 2rem;
    }
    
    .help-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .step-item {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .step-visual {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .tier-comparison {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-options {
        grid-template-columns: 1fr;
    }
    
    .download-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-question {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 1rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .step-content h3 {
        font-size: 1.3rem;
    }
    
    .step-actions {
        justify-content: center;
    }
    
    .premium-features {
        justify-content: center;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}