.hiw-container-f4d8a0e4 {
    --w1-accent: #8b5cf6;
    --w2-accent: #14b8a6;
    font-family: inherit;
    padding: 20px 0;
}

.hiw-heading {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2em;
    font-weight: 700;
}

.hiw-toggle-wrap {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    background: #f1f5f9;
    padding: 6px;
    border-radius: 50px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.hiw-toggle-btn {
    border: none;
    background: transparent;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #64748b;
}

.hiw-toggle-btn.active[data-target="workflow-1"] {
    background: #fff;
    color: var(--w1-accent);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.hiw-toggle-btn.active[data-target="workflow-2"] {
    background: #fff;
    color: var(--w2-accent);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.hiw-workflows-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.hiw-workflow {
    display: none;
    position: relative;
    padding-left: 40px;
}

.hiw-workflow.active {
    display: block;
    animation: fadeIn 0.4s ease forwards;
}

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

.hiw-steps-line {
    position: absolute;
    left: 20px;
    top: 20px;
    bottom: 40px;
    width: 2px;
    background: #e2e8f0;
    z-index: 1;
}

.hiw-step-item {
    position: relative;
    margin-bottom: 30px;
    z-index: 2;
}

.hiw-step-number {
    position: absolute;
    left: -40px;
    top: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    transform: translateX(-50%);
    box-shadow: 0 0 0 6px #fff;
}

.hiw-w1-item .hiw-step-number { background: var(--w1-accent); }
.hiw-w2-item .hiw-step-number { background: var(--w2-accent); }

.hiw-step-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 25px;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hiw-step-card:hover {
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.05);
    transform: translateY(-2px);
}

.hiw-step-highlight {
    border: 2px solid var(--w2-accent);
    box-shadow: 0 10px 25px -5px rgba(20,184,166,0.15);
}

.hiw-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--w2-accent);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 12px;
    letter-spacing: 0.5px;
}

.hiw-step-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.hiw-step-icon {
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hiw-step-icon svg {
    width: 24px;
    height: 24px;
}

.hiw-w1-item .hiw-step-icon { color: var(--w1-accent); fill: var(--w1-accent); }
.hiw-w2-item .hiw-step-icon { color: var(--w2-accent); fill: var(--w2-accent); }

.hiw-step-title {
    margin: 0;
    font-size: 1.25em;
    font-weight: 700;
    color: #1e293b;
}

.hiw-step-desc {
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 767px) {
    .hiw-toggle-wrap {
        flex-direction: column;
        width: 100%;
        border-radius: 12px;
    }
    .hiw-toggle-btn {
        width: 100%;
        border-radius: 8px;
    }
}