/**
 * Support Wizard Styles
 * Echolikes Tools v2.1
 */

.sw-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 30px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Steps */
.sw-step {
    display: none;
}

.sw-step.sw-active {
    display: block;
    animation: sw-fadeIn 0.3s ease;
}

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

/* Header */
.sw-header {
    text-align: center;
    margin-bottom: 30px;
}

.sw-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 10px;
}

.sw-subtitle {
    font-size: 16px;
    color: #666;
    margin: 0;
}

/* Problem buttons */
.sw-problems {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

@media (max-width: 500px) {
    .sw-problems {
        grid-template-columns: 1fr;
    }
}

.sw-problem-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
}

.sw-problem-btn:hover {
    border-color: #6366f1;
    background: #f5f5ff;
    transform: translateY(-2px);
}

.sw-problem-btn .sw-icon {
    font-size: 24px;
}

.sw-problem-btn .sw-text {
    font-size: 15px;
    font-weight: 500;
    color: #333;
}

/* Back button */
.sw-back-btn {
    background: none;
    border: none;
    color: #6366f1;
    font-size: 14px;
    cursor: pointer;
    padding: 8px 0;
    margin-bottom: 20px;
    transition: color 0.2s;
}

.sw-back-btn:hover {
    color: #4f46e5;
}

/* Checklist */
.sw-checklist {
    display: none;
    background: #f9fafb;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
}

.sw-checklist.sw-active {
    display: block;
}

.sw-checklist h3 {
    font-size: 18px;
    color: #1a1a2e;
    margin: 0 0 20px;
}

.sw-check-items {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.sw-check-items li {
    margin-bottom: 12px;
}

.sw-check-items label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.sw-check-items input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: #6366f1;
}

.sw-check-items span {
    font-size: 15px;
    color: #444;
    line-height: 1.5;
}

/* Info box */
.sw-info-box {
    background: #e0e7ff;
    border-radius: 8px;
    padding: 15px;
    font-size: 14px;
    color: #3730a3;
}

.sw-info-box.sw-info-warning {
    background: #fef3c7;
    color: #92400e;
}

.sw-info-box strong {
    display: block;
    margin-bottom: 5px;
}

/* Next button */
.sw-next-btn {
    display: block;
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.sw-next-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

/* FAQ */
.sw-faq {
    margin-bottom: 25px;
}

.sw-faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
}

.sw-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 18px 20px;
    background: #fff;
    border: none;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s;
}

.sw-faq-question:hover {
    background: #f9fafb;
}

.sw-faq-icon {
    font-size: 20px;
    color: #6366f1;
    transition: transform 0.3s;
}

.sw-faq-item.sw-open .sw-faq-icon {
    transform: rotate(45deg);
}

.sw-faq-answer {
    display: none;
    padding: 0 20px 18px;
    background: #f9fafb;
}

.sw-faq-item.sw-open .sw-faq-answer {
    display: block;
}

.sw-faq-answer p {
    margin: 0;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* Contact */
.sw-contact {
    text-align: center;
}

.sw-contact-info {
    background: #f9fafb;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 20px;
}

.sw-contact-info h3 {
    font-size: 16px;
    color: #666;
    margin: 0 0 15px;
    font-weight: 400;
}

.sw-email-link {
    display: inline-block;
    font-size: 24px;
    font-weight: 700;
    color: #6366f1;
    text-decoration: none;
    margin-bottom: 25px;
}

.sw-email-link:hover {
    text-decoration: underline;
}

.sw-contact-tips {
    text-align: left;
    background: #fff;
    border-radius: 8px;
    padding: 20px;
}

.sw-contact-tips h4 {
    font-size: 14px;
    color: #333;
    margin: 0 0 12px;
}

.sw-contact-tips ul {
    margin: 0;
    padding-left: 20px;
}

.sw-contact-tips li {
    font-size: 14px;
    color: #555;
    margin-bottom: 6px;
}

.sw-response-time {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #ecfdf5;
    border-radius: 50px;
    font-size: 14px;
    color: #059669;
}

.sw-clock {
    font-size: 18px;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .sw-container {
        color: #e5e7eb;
    }

    .sw-title {
        color: #f3f4f6;
    }

    .sw-problem-btn {
        background: #1f2937;
        border-color: #374151;
    }

    .sw-problem-btn:hover {
        background: #2d3748;
        border-color: #6366f1;
    }

    .sw-problem-btn .sw-text {
        color: #e5e7eb;
    }

    .sw-checklist {
        background: #1f2937;
    }

    .sw-checklist h3 {
        color: #f3f4f6;
    }

    .sw-faq-question {
        background: #1f2937;
        color: #e5e7eb;
    }

    .sw-faq-question:hover {
        background: #2d3748;
    }

    .sw-faq-answer {
        background: #111827;
    }

    .sw-faq-answer p {
        color: #9ca3af;
    }

    .sw-contact-info {
        background: #1f2937;
    }

    .sw-contact-tips {
        background: #111827;
    }

    .sw-contact-tips h4 {
        color: #e5e7eb;
    }

    .sw-contact-tips li {
        color: #9ca3af;
    }
}
