/* ============================================
   WIZARD WELCOME DASHBOARD STYLES
   ============================================ */

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

/* Hero Section */
.wizard-hero {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInUp 0.6s ease;
}

.wizard-hero-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.wizard-hero-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
}

.wizard-hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin: 0;
}

/* Actions Grid */
.wizard-actions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

/* Action Card */
.wizard-action-card {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    animation: fadeInUp 0.6s ease;
    animation-fill-mode: both;
}

.wizard-action-card:nth-child(1) {
    animation-delay: 0.1s;
}

.wizard-action-card:nth-child(2) {
    animation-delay: 0.2s;
}

.wizard-action-card:nth-child(3) {
    animation-delay: 0.3s;
}

.wizard-action-card:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wizard-action-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.wizard-action-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--brand-primary);
}

.wizard-action-card:hover::before {
    opacity: 1;
}

/* Card Header */
.wizard-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.wizard-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.wizard-card-badge {
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: #e0e7ff;
    color: #4f46e5;
}

.wizard-card-badge.premium {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #7c2d12;
}

/* Card Content */
.wizard-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.75rem 0;
    position: relative;
    z-index: 1;
}

.wizard-card-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0 0 1.25rem 0;
    position: relative;
    z-index: 1;
}

.wizard-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    position: relative;
    z-index: 1;
}

.wizard-card-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.wizard-card-features li i {
    color: #10b981;
    font-size: 0.85rem;
}

/* Card Footer */
.wizard-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-color);
    position: relative;
    z-index: 1;
}

.wizard-card-time {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.wizard-card-arrow {
    font-size: 1.25rem;
    color: var(--brand-primary);
    transition: transform 0.3s ease;
}

.wizard-action-card:hover .wizard-card-arrow {
    transform: translateX(6px);
}

/* Help Section */
.wizard-help-section {
    margin-bottom: 3rem;
    animation: fadeInUp 0.6s ease 0.5s both;
}

.wizard-help-card {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid #bae6fd;
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.wizard-help-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    flex-shrink: 0;
}

.wizard-help-content {
    flex: 1;
}

.wizard-help-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0c4a6e;
    margin: 0 0 0.5rem 0;
}

.wizard-help-content p {
    font-size: 1rem;
    color: #0369a1;
    margin: 0;
    line-height: 1.5;
}

/* Stats Footer */
.wizard-stats-footer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    animation: fadeInUp 0.6s ease 0.6s both;
}

.wizard-stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.wizard-stat-item i {
    font-size: 2rem;
    color: var(--brand-primary);
    opacity: 0.8;
}

.wizard-stat-content {
    display: flex;
    flex-direction: column;
}

.wizard-stat-content strong {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.wizard-stat-content span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 768px) {
    .wizard-hero-title {
        font-size: 2rem;
    }

    .wizard-hero-subtitle {
        font-size: 1.25rem;
    }

    .wizard-actions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .wizard-help-card {
        flex-direction: column;
        text-align: center;
    }

    .wizard-stats-footer {
        grid-template-columns: 1fr;
    }

    .wizard-stat-item {
        justify-content: center;
    }
}